diff --git a/pkgs/applications/audio/aeolus/default.nix b/pkgs/applications/audio/aeolus/default.nix index 00dc302718051..958fed5b073ea 100644 --- a/pkgs/applications/audio/aeolus/default.nix +++ b/pkgs/applications/audio/aeolus/default.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { echo -n "${cfg}" > $out/etc/aeolus.conf ''; - meta = with lib; { + meta = { description = "Synthetized (not sampled) pipe organ emulator"; 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 orivej ]; diff --git a/pkgs/applications/audio/aeolus/stops.nix b/pkgs/applications/audio/aeolus/stops.nix index c4ba2f3412311..ede644cb99ef1 100644 --- a/pkgs/applications/audio/aeolus/stops.nix +++ b/pkgs/applications/audio/aeolus/stops.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 orivej ]; diff --git a/pkgs/applications/audio/airwave/default.nix b/pkgs/applications/audio/airwave/default.nix index c7422a2baac82..2a3daaa8aebb1 100644 --- a/pkgs/applications/audio/airwave/default.nix +++ b/pkgs/applications/audio/airwave/default.nix @@ -94,7 +94,7 @@ multiStdenv.mkDerivation { wrapProgram $out/libexec/airwave-host-64.exe --set WINELOADER ${wine-xembed}/bin/wine64 ''; - meta = with lib; { + meta = { description = "WINE-based VST bridge for Linux VST hosts"; longDescription = '' Airwave is a wine based VST bridge, that allows for the use of @@ -105,9 +105,9 @@ multiStdenv.mkDerivation { window. ''; homepage = "https://github.com/phantom-code/airwave"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ michalrus ]; + maintainers = with lib.maintainers; [ michalrus ]; hydraPlatforms = [ ]; }; } diff --git a/pkgs/applications/audio/amarok/default.nix b/pkgs/applications/audio/amarok/default.nix index 1160c05b6101e..72841a967f455 100644 --- a/pkgs/applications/audio/amarok/default.nix +++ b/pkgs/applications/audio/amarok/default.nix @@ -102,10 +102,10 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://amarok.kde.org"; description = "Powerful music player with an intuitive interface"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ peterhoeg ]; }; }) diff --git a/pkgs/applications/audio/bambootracker/default.nix b/pkgs/applications/audio/bambootracker/default.nix index 5bf7445d26820..5c75befe05235 100644 --- a/pkgs/applications/audio/bambootracker/default.nix +++ b/pkgs/applications/audio/bambootracker/default.nix @@ -84,12 +84,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Tracker for YM2608 (OPNA) which was used in NEC PC-8801/9801 series computers"; mainProgram = "BambooTracker"; homepage = "https://bambootracker.github.io/BambooTracker/"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ OPNA2608 ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ OPNA2608 ]; }; }) diff --git a/pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix b/pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix index 7c6c916154657..44e44b561903e 100644 --- a/pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix +++ b/pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix @@ -92,7 +92,7 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Digital audio workstation"; longDescription = '' Bitwig Studio is a multi-platform music-creation system for @@ -100,9 +100,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/bitwig-studio/bitwig-studio4.nix b/pkgs/applications/audio/bitwig-studio/bitwig-studio4.nix index fcfcd3b09b11a..04f7ac20e9695 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/bitwig-studio/bitwig-studio5.nix b/pkgs/applications/audio/bitwig-studio/bitwig-studio5.nix index 9b34f00791486..45478ea71263a 100644 --- a/pkgs/applications/audio/bitwig-studio/bitwig-studio5.nix +++ b/pkgs/applications/audio/bitwig-studio/bitwig-studio5.nix @@ -123,7 +123,7 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Digital audio workstation"; longDescription = '' Bitwig Studio is a multi-platform music-creation system for @@ -131,9 +131,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/bucklespring/default.nix b/pkgs/applications/audio/bucklespring/default.nix index a126c227f3467..fff2ded57245e 100644 --- a/pkgs/applications/audio/bucklespring/default.nix +++ b/pkgs/applications/audio/bucklespring/default.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Nostalgia bucklespring keyboard sound"; mainProgram = "buckle"; longDescription = '' @@ -68,8 +68,8 @@ stdenv.mkDerivation rec { users.users.alice.extraGroups = [ "input" ]; ''; homepage = "https://github.com/zevv/bucklespring"; - license = licenses.gpl2Only; - platforms = platforms.unix; - maintainers = [ maintainers.evils ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.evils ]; }; } diff --git a/pkgs/applications/audio/cdparanoia/default.nix b/pkgs/applications/audio/cdparanoia/default.nix index e3760c9e20127..264dfe28332e2 100644 --- a/pkgs/applications/audio/cdparanoia/default.nix +++ b/pkgs/applications/audio/cdparanoia/default.nix @@ -78,14 +78,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/applications/audio/chuck/default.nix b/pkgs/applications/audio/chuck/default.nix index 54fe244158407..52971388ba7c9 100644 --- a/pkgs/applications/audio/chuck/default.nix +++ b/pkgs/applications/audio/chuck/default.nix @@ -59,12 +59,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 c055c72c4eafa..283af0e2a9873 100644 --- a/pkgs/applications/audio/codecserver/default.nix +++ b/pkgs/applications/audio/codecserver/default.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { --replace '=''${exec_prefix}//' '=/' ''; - meta = with lib; { + meta = { homepage = "https://github.com/jketterl/codecserver"; description = "Modular audio codec server"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = teams.c3d2.members; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = lib.teams.c3d2.members; mainProgram = "codecserver"; }; } diff --git a/pkgs/applications/audio/csound/csound-qt/default.nix b/pkgs/applications/audio/csound/csound-qt/default.nix index 9ff6bb2de902c..51803b5667a08 100644 --- a/pkgs/applications/audio/csound/csound-qt/default.nix +++ b/pkgs/applications/audio/csound/csound-qt/default.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { "PYTHON_VERSION=3.${python3.sourceVersion.minor}" ]; - meta = with lib; { + meta = { description = "CsoundQt is a frontend for Csound with editor, integrated help, widgets and other features"; homepage = "https://csoundqt.github.io/"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ hlolli ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ hlolli ]; }; } diff --git a/pkgs/applications/audio/csound/default.nix b/pkgs/applications/audio/csound/default.nix index 207f1201a6710..7e36fa04554e8 100644 --- a/pkgs/applications/audio/csound/default.nix +++ b/pkgs/applications/audio/csound/default.nix @@ -87,11 +87,11 @@ stdenv.mkDerivation rec { ln -s $out/lib/CsoundLib64.framework $out/Library/Frameworks ''; - meta = with lib; { + meta = { description = "Sound design, audio synthesis, and signal processing system, providing facilities for music composition and performance on all major operating systems and platforms"; homepage = "https://csound.com/"; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.marcweber ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.marcweber ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/audio/deadbeef/default.nix b/pkgs/applications/audio/deadbeef/default.nix index 537ed98806659..78a8df5d59b73 100644 --- a/pkgs/applications/audio/deadbeef/default.nix +++ b/pkgs/applications/audio/deadbeef/default.nix @@ -183,16 +183,16 @@ clangStdenv.mkDerivation { substituteInPlace plugins/adplug/Makefile.am --replace 'adplug_la_CXXFLAGS = ' 'adplug_la_CXXFLAGS = -std=c++11 ' ''; - meta = with lib; { + meta = { description = "Ultimate Music Player for GNU/Linux"; mainProgram = "deadbeef"; homepage = "http://deadbeef.sourceforge.net/"; downloadPage = "https://github.com/DeaDBeeF-Player/deadbeef"; - license = licenses.gpl2; + license = lib.licenses.gpl2; platforms = [ "x86_64-linux" "i686-linux" ]; - maintainers = [ maintainers.abbradar ]; + maintainers = [ lib.maintainers.abbradar ]; }; } diff --git a/pkgs/applications/audio/deadbeef/plugins/headerbar-gtk3.nix b/pkgs/applications/audio/deadbeef/plugins/headerbar-gtk3.nix index 784195b23d737..7444e5106cb81 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 3a6a705de5cb5..d4fe2da83b12b 100644 --- a/pkgs/applications/audio/deadbeef/plugins/lyricbar.nix +++ b/pkgs/applications/audio/deadbeef/plugins/lyricbar.nix @@ -28,11 +28,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 bb41a6f0f5f47..f709a5862d67a 100644 --- a/pkgs/applications/audio/deadbeef/plugins/mpris2.nix +++ b/pkgs/applications/audio/deadbeef/plugins/mpris2.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation { 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; - maintainers = [ maintainers.abbradar ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.abbradar ]; }; } diff --git a/pkgs/applications/audio/deadbeef/plugins/musical-spectrum.nix b/pkgs/applications/audio/deadbeef/plugins/musical-spectrum.nix index f60351ad11fac..545e69083d826 100644 --- a/pkgs/applications/audio/deadbeef/plugins/musical-spectrum.nix +++ b/pkgs/applications/audio/deadbeef/plugins/musical-spectrum.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { 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 f6113cb9e904f..23e5d09955e68 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 c6a1a08d59542..4cd945cc3c4e1 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 d5a443095bf18..9be7f4fa486e1 100644 --- a/pkgs/applications/audio/espeak/default.nix +++ b/pkgs/applications/audio/espeak/default.nix @@ -36,11 +36,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 a4b5536e6f997..b6dc34940a77a 100644 --- a/pkgs/applications/audio/espeak/edit.nix +++ b/pkgs/applications/audio/espeak/edit.nix @@ -70,11 +70,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/faust/faustlive.nix b/pkgs/applications/audio/faust/faustlive.nix index d7830565fcc80..a3df048ca27cb 100644 --- a/pkgs/applications/audio/faust/faustlive.nix +++ b/pkgs/applications/audio/faust/faustlive.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/applications/audio/flacon/default.nix b/pkgs/applications/audio/flacon/default.nix index ef460e7737dda..569bc6731b886 100644 --- a/pkgs/applications/audio/flacon/default.nix +++ b/pkgs/applications/audio/flacon/default.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { --prefix PATH : "$bin_path"; ''; - meta = with lib; { + meta = { description = "Extracts audio tracks from an audio CD image to separate tracks"; mainProgram = "flacon"; homepage = "https://flacon.github.io/"; - license = licenses.lgpl21; - platforms = platforms.linux; - maintainers = with maintainers; [ snglth ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ snglth ]; }; } diff --git a/pkgs/applications/audio/fmit/default.nix b/pkgs/applications/audio/fmit/default.nix index 9455874ded687..c2fab0492eeea 100644 --- a/pkgs/applications/audio/fmit/default.nix +++ b/pkgs/applications/audio/fmit/default.nix @@ -64,15 +64,15 @@ mkDerivation rec { "CONFIG+=acs_portaudio" ]; - meta = with lib; { + meta = { description = "Free Musical Instrument Tuner"; longDescription = '' FMIT is a graphical utility for tuning musical instruments, with error and volume history, and advanced features. ''; homepage = "http://gillesdegottex.github.io/fmit/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/freqtweak/default.nix b/pkgs/applications/audio/freqtweak/default.nix index 0f51fac4e9fed..c5cdf5f910458 100644 --- a/pkgs/applications/audio/freqtweak/default.nix +++ b/pkgs/applications/audio/freqtweak/default.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { 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/greg/default.nix b/pkgs/applications/audio/greg/default.nix index dc9fb72f44258..5862ac4f65dc3 100644 --- a/pkgs/applications/audio/greg/default.nix +++ b/pkgs/applications/audio/greg/default.nix @@ -23,11 +23,11 @@ buildPythonApplication rec { feedparser ]; - meta = with lib; { + meta = { homepage = "https://github.com/manolomartinez/greg"; description = "Command-line podcast aggregator"; mainProgram = "greg"; - license = licenses.gpl3; - maintainers = with maintainers; [ edwtjo ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ edwtjo ]; }; } diff --git a/pkgs/applications/audio/hushboard/default.nix b/pkgs/applications/audio/hushboard/default.nix index e5953a922e8e0..cc6c0592f7c12 100644 --- a/pkgs/applications/audio/hushboard/default.nix +++ b/pkgs/applications/audio/hushboard/default.nix @@ -64,12 +64,12 @@ buildPythonApplication { # There are no tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://kryogenix.org/code/hushboard/"; - license = licenses.mit; + license = lib.licenses.mit; description = "Mute your microphone while typing"; mainProgram = "hushboard"; - platforms = platforms.linux; - maintainers = with maintainers; [ sersorrel ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ sersorrel ]; }; } diff --git a/pkgs/applications/audio/iannix/default.nix b/pkgs/applications/audio/iannix/default.nix index 753a58d0c42a0..711cebe28114a 100644 --- a/pkgs/applications/audio/iannix/default.nix +++ b/pkgs/applications/audio/iannix/default.nix @@ -34,12 +34,12 @@ mkDerivation rec { installFlags = [ "INSTALL_ROOT=$(out)" ]; - meta = with lib; { + meta = { description = "Graphical open-source sequencer"; mainProgram = "iannix"; homepage = "https://www.iannix.org/"; - license = licenses.lgpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ freezeboy ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; }; } diff --git a/pkgs/applications/audio/in-formant/default.nix b/pkgs/applications/audio/in-formant/default.nix index 7266470cc9e91..deabe3ccabf09 100644 --- a/pkgs/applications/audio/in-formant/default.nix +++ b/pkgs/applications/audio/in-formant/default.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { install -Dm444 $src/dist-res/in-formant.png -t $out/share/icons/hicolor/512x512/apps ''; - meta = with lib; { + meta = { description = "Real-time pitch and formant tracking software"; mainProgram = "in-formant"; homepage = "https://github.com/in-formant/in-formant"; - license = licenses.asl20; + license = lib.licenses.asl20; # currently broken on i686-linux and aarch64-linux due to other nixpkgs dependencies platforms = [ "x86_64-linux" ]; maintainers = [ ]; diff --git a/pkgs/applications/audio/ir.lv2/default.nix b/pkgs/applications/audio/ir.lv2/default.nix index 9414019d956cc..036125f601356 100644 --- a/pkgs/applications/audio/ir.lv2/default.nix +++ b/pkgs/applications/audio/ir.lv2/default.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { install -Dm755 convert4chan "$out/bin/convert4chan" ''; - meta = with lib; { + meta = { homepage = "http://factorial.hu/plugins/lv2/ir"; description = "Zero-latency, realtime, high performance signal convolver especially for creating reverb effects"; - license = licenses.gpl2; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; mainProgram = "convert4chan"; }; } diff --git a/pkgs/applications/audio/jack-autoconnect/default.nix b/pkgs/applications/audio/jack-autoconnect/default.nix index 51600ed031f45..676c9bcb1811b 100644 --- a/pkgs/applications/audio/jack-autoconnect/default.nix +++ b/pkgs/applications/audio/jack-autoconnect/default.nix @@ -34,12 +34,12 @@ mkDerivation rec { cp -- jack_autoconnect "$out/bin" ''; - meta = with lib; { + meta = { homepage = "https://github.com/kripton/jack_autoconnect"; description = "Tiny application that reacts on port registrations by clients and connects them"; mainProgram = "jack_autoconnect"; - maintainers = with maintainers; [ unclechu ]; - license = licenses.gpl2Only; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ unclechu ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/jackmix/default.nix b/pkgs/applications/audio/jackmix/default.nix index d4a0bf6064a44..deee6d699dc6e 100644 --- a/pkgs/applications/audio/jackmix/default.nix +++ b/pkgs/applications/audio/jackmix/default.nix @@ -47,12 +47,12 @@ mkDerivation rec { 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; - maintainers = with maintainers; [ kampfschlaefer ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ kampfschlaefer ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/kmetronome/default.nix b/pkgs/applications/audio/kmetronome/default.nix index bcb5914bebf32..3ad4f1b0d01ef 100644 --- a/pkgs/applications/audio/kmetronome/default.nix +++ b/pkgs/applications/audio/kmetronome/default.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { homepage = "https://kmetronome.sourceforge.io/"; description = "ALSA MIDI metronome with Qt interface"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; mainProgram = "kmetronome"; }; } diff --git a/pkgs/applications/audio/ladspa-plugins/default.nix b/pkgs/applications/audio/ladspa-plugins/default.nix index 1f89edf62e9aa..1e3fa60267252 100644 --- a/pkgs/applications/audio/ladspa-plugins/default.nix +++ b/pkgs/applications/audio/ladspa-plugins/default.nix @@ -48,11 +48,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/linvstmanager/default.nix b/pkgs/applications/audio/linvstmanager/default.nix index 1da68ebb45d1d..79eb49f965cb2 100644 --- a/pkgs/applications/audio/linvstmanager/default.nix +++ b/pkgs/applications/audio/linvstmanager/default.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { qtbase ]; - meta = with lib; { + meta = { description = "Graphical companion application for various bridges like LinVst, etc"; mainProgram = "linvstmanager"; homepage = "https://github.com/Goli4thus/linvstmanager"; - license = with licenses; [ gpl3 ]; - platforms = platforms.linux; - maintainers = [ maintainers.GabrielDougherty ]; + license = with lib.licenses; [ gpl3 ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.GabrielDougherty ]; }; } diff --git a/pkgs/applications/audio/lmms/default.nix b/pkgs/applications/audio/lmms/default.nix index d4c45a283603c..64ca3a36277a2 100644 --- a/pkgs/applications/audio/lmms/default.nix +++ b/pkgs/applications/audio/lmms/default.nix @@ -72,11 +72,11 @@ mkDerivation rec { cmakeFlags = [ "-DWANT_QT5=ON" ]; - meta = with lib; { + meta = { description = "DAW similar to FL Studio (music production software)"; mainProgram = "lmms"; homepage = "https://lmms.io"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/applications/audio/lpd8editor/default.nix b/pkgs/applications/audio/lpd8editor/default.nix index 6592f68fa98aa..f8951fae527c6 100644 --- a/pkgs/applications/audio/lpd8editor/default.nix +++ b/pkgs/applications/audio/lpd8editor/default.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { qt5.wrapQtAppsHook ]; - meta = with lib; { + meta = { description = "Linux editor for the Akai LPD8"; homepage = "https://github.com/charlesfleche/lpd8editor"; - license = licenses.mit; - maintainers = with maintainers; [ pinpox ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pinpox ]; mainProgram = "lpd8editor"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/audio/lv2lint/default.nix b/pkgs/applications/audio/lv2lint/default.nix index c35e277675375..dd4979a587ccb 100644 --- a/pkgs/applications/audio/lv2lint/default.nix +++ b/pkgs/applications/audio/lv2lint/default.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation (finalAttrs: { (lib.mesonEnable "x11-tests" true) ]; - meta = with lib; { + meta = { description = "Check whether a given LV2 plugin is up to the specification"; homepage = "https://git.open-music-kontrollers.ch/~hp/lv2lint"; - license = licenses.artistic2; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.artistic2; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; mainProgram = "lv2lint"; }; }) diff --git a/pkgs/applications/audio/master_me/default.nix b/pkgs/applications/audio/master_me/default.nix index 3c766b701cf9b..8234066c95bad 100644 --- a/pkgs/applications/audio/master_me/default.nix +++ b/pkgs/applications/audio/master_me/default.nix @@ -43,13 +43,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/applications/audio/melmatcheq.lv2/default.nix b/pkgs/applications/audio/melmatcheq.lv2/default.nix index ef49dc783d2e2..736817b596a15 100644 --- a/pkgs/applications/audio/melmatcheq.lv2/default.nix +++ b/pkgs/applications/audio/melmatcheq.lv2/default.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { installFlags = [ "INSTALL_DIR=$(out)/lib/lv2" ]; - meta = with lib; { + meta = { homepage = "https://github.com/brummer10/MelMatchEQ.lv2"; description = "Profiling EQ using a 26 step Mel Frequency Band"; - maintainers = with maintainers; [ magnetophon ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ magnetophon ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/midivisualizer/default.nix b/pkgs/applications/audio/midivisualizer/default.nix index eb409930a3b21..cc8cf690cd2a2 100644 --- a/pkgs/applications/audio/midivisualizer/default.nix +++ b/pkgs/applications/audio/midivisualizer/default.nix @@ -76,12 +76,12 @@ 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; - maintainers = [ maintainers.ericdallo ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.ericdallo ]; }; }) diff --git a/pkgs/applications/audio/mmlgui/default.nix b/pkgs/applications/audio/mmlgui/default.nix index d5ea07d6d3626..fb2f58519a788 100644 --- a/pkgs/applications/audio/mmlgui/default.nix +++ b/pkgs/applications/audio/mmlgui/default.nix @@ -93,12 +93,12 @@ stdenv.mkDerivation rec { 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/moc/default.nix b/pkgs/applications/audio/moc/default.nix index 581ace1d3c3c0..5f0707cc1a3c1 100644 --- a/pkgs/applications/audio/moc/default.nix +++ b/pkgs/applications/audio/moc/default.nix @@ -154,16 +154,16 @@ 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 jagajaga ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "mocp"; }; } diff --git a/pkgs/applications/audio/mopidy/bandcamp.nix b/pkgs/applications/audio/mopidy/bandcamp.nix index 3d3d074aaf826..581999341672d 100644 --- a/pkgs/applications/audio/mopidy/bandcamp.nix +++ b/pkgs/applications/audio/mopidy/bandcamp.nix @@ -18,10 +18,10 @@ python3Packages.buildPythonApplication rec { pykka ]; - 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 d07b294528320..5ff64e347bd53 100644 --- a/pkgs/applications/audio/mopidy/iris.nix +++ b/pkgs/applications/audio/mopidy/iris.nix @@ -27,10 +27,10 @@ python3Packages.buildPythonApplication rec { # no tests implemented doCheck = false; - 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 9a2e7fe34c7b2..dd10a9a297856 100644 --- a/pkgs/applications/audio/mopidy/jellyfin.nix +++ b/pkgs/applications/audio/mopidy/jellyfin.nix @@ -25,10 +25,10 @@ python3Packages.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 b76a3abbbb197..aaa06eb1b3e52 100644 --- a/pkgs/applications/audio/mopidy/local.nix +++ b/pkgs/applications/audio/mopidy/local.nix @@ -33,10 +33,10 @@ python3Packages.buildPythonApplication rec { python3Packages.pytestCheckHook ]; - 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 edb94a5a02c98..269acf571216f 100644 --- a/pkgs/applications/audio/mopidy/moped.nix +++ b/pkgs/applications/audio/mopidy/moped.nix @@ -22,10 +22,10 @@ pythonPackages.buildPythonApplication rec { # no tests implemented doCheck = false; - 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/mopidy.nix b/pkgs/applications/audio/mopidy/mopidy.nix index 4771ade230c97..ca0164ee91454 100644 --- a/pkgs/applications/audio/mopidy/mopidy.nix +++ b/pkgs/applications/audio/mopidy/mopidy.nix @@ -58,12 +58,12 @@ pythonPackages.buildPythonApplication rec { inherit (nixosTests) mopidy; }; - meta = with lib; { + meta = { homepage = "https://www.mopidy.com/"; description = "Extensible music server that plays music from local disk, Spotify, SoundCloud, and more"; mainProgram = "mopidy"; - license = licenses.asl20; - maintainers = [ maintainers.fpletz ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.fpletz ]; hydraPlatforms = [ ]; }; } diff --git a/pkgs/applications/audio/mopidy/mopify.nix b/pkgs/applications/audio/mopidy/mopify.nix index ca27c0f717062..438c04aea39d1 100644 --- a/pkgs/applications/audio/mopidy/mopify.nix +++ b/pkgs/applications/audio/mopidy/mopify.nix @@ -22,10 +22,10 @@ pythonPackages.buildPythonApplication rec { # no tests implemented doCheck = false; - 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 ac4073979e79e..b0b33e7028523 100644 --- a/pkgs/applications/audio/mopidy/mpd.nix +++ b/pkgs/applications/audio/mopidy/mpd.nix @@ -20,10 +20,10 @@ python3Packages.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 5b0e09432a2e4..00f5211be27e8 100644 --- a/pkgs/applications/audio/mopidy/mpris.nix +++ b/pkgs/applications/audio/mopidy/mpris.nix @@ -22,10 +22,10 @@ python3Packages.buildPythonApplication rec { doCheck = false; - 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 c70a874593e0a..dc94f312f98b9 100644 --- a/pkgs/applications/audio/mopidy/muse.nix +++ b/pkgs/applications/audio/mopidy/muse.nix @@ -25,10 +25,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 8967dcaf0ae78..3ff38eaaf20cc 100644 --- a/pkgs/applications/audio/mopidy/notify.nix +++ b/pkgs/applications/audio/mopidy/notify.nix @@ -25,10 +25,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/scrobbler.nix b/pkgs/applications/audio/mopidy/scrobbler.nix index 8a4d33619d143..877e112ce9408 100644 --- a/pkgs/applications/audio/mopidy/scrobbler.nix +++ b/pkgs/applications/audio/mopidy/scrobbler.nix @@ -23,10 +23,10 @@ python3Packages.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 ee7f63d7a24a9..dbaf57ca1ec4c 100644 --- a/pkgs/applications/audio/mopidy/somafm.nix +++ b/pkgs/applications/audio/mopidy/somafm.nix @@ -19,10 +19,10 @@ python3Packages.buildPythonApplication rec { doCheck = false; - 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 a601cc2196a62..f4eaa03faba68 100644 --- a/pkgs/applications/audio/mopidy/soundcloud.nix +++ b/pkgs/applications/audio/mopidy/soundcloud.nix @@ -23,9 +23,9 @@ pythonPackages.buildPythonApplication rec { doCheck = false; - 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 0891d19f8a8f4..d61d5da993bb5 100644 --- a/pkgs/applications/audio/mopidy/subidy.nix +++ b/pkgs/applications/audio/mopidy/subidy.nix @@ -23,10 +23,10 @@ pythonPackages.buildPythonApplication rec { nativeCheckInputs = with pythonPackages; [ pytestCheckHook ]; - 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/tidal.nix b/pkgs/applications/audio/mopidy/tidal.nix index 5548130665cb9..64777d5f69c05 100644 --- a/pkgs/applications/audio/mopidy/tidal.nix +++ b/pkgs/applications/audio/mopidy/tidal.nix @@ -26,10 +26,10 @@ python3Packages.buildPythonApplication rec { pytestFlagsArray = [ "tests/" ]; - meta = with lib; { + meta = { description = "Mopidy extension for playing music from Tidal"; homepage = "https://github.com/tehkillerbee/mopidy-tidal"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/applications/audio/mopidy/tunein.nix b/pkgs/applications/audio/mopidy/tunein.nix index e536d81ddece8..cc095c16c7741 100644 --- a/pkgs/applications/audio/mopidy/tunein.nix +++ b/pkgs/applications/audio/mopidy/tunein.nix @@ -21,10 +21,10 @@ python3Packages.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 cd57667b427c0..90a33488e4e86 100644 --- a/pkgs/applications/audio/mopidy/youtube.nix +++ b/pkgs/applications/audio/mopidy/youtube.nix @@ -63,10 +63,10 @@ python3.pkgs.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/mpg123/default.nix b/pkgs/applications/audio/mpg123/default.nix index d89c9c65838ec..a18da38944091 100644 --- a/pkgs/applications/audio/mpg123/default.nix +++ b/pkgs/applications/audio/mpg123/default.nix @@ -95,11 +95,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/munt/libmt32emu.nix b/pkgs/applications/audio/munt/libmt32emu.nix index 31db8595ca103..361afb3a9be59 100644 --- a/pkgs/applications/audio/munt/libmt32emu.nix +++ b/pkgs/applications/audio/munt/libmt32emu.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { --replace "$dev/$dev/" "$dev/" ''; - meta = with lib; { + meta = { homepage = "https://munt.sourceforge.net/"; description = "Library to emulate Roland MT-32, CM-32L, CM-64 and LAPC-I devices"; - license = with licenses; [ lgpl21Plus ]; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.unix; # Not tested on ReactOS yet :) + license = with lib.licenses; [ lgpl21Plus ]; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.unix; # Not tested on ReactOS yet :) }; } diff --git a/pkgs/applications/audio/munt/mt32emu-qt.nix b/pkgs/applications/audio/munt/mt32emu-qt.nix index 0a75f0620383c..9281ddef55bf5 100644 --- a/pkgs/applications/audio/munt/mt32emu-qt.nix +++ b/pkgs/applications/audio/munt/mt32emu-qt.nix @@ -65,7 +65,7 @@ mkDerivation rec { ln -s $out/{Applications/${pname}.app/Contents/MacOS,bin}/${pname} ''; - meta = with lib; { + meta = { homepage = "https://munt.sourceforge.net/"; description = "Synthesizer application built on Qt and libmt32emu"; mainProgram = "mt32emu-qt"; @@ -74,8 +74,8 @@ mkDerivation rec { synthesis and conversion of pre-recorded SMF files to WAVE making use of the mt32emu library and the Qt framework. ''; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.all; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/audio/munt/mt32emu-smf2wav.nix b/pkgs/applications/audio/munt/mt32emu-smf2wav.nix index 0b1010be1893f..f053a1f1d0554 100644 --- a/pkgs/applications/audio/munt/mt32emu-smf2wav.nix +++ b/pkgs/applications/audio/munt/mt32emu-smf2wav.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { "-Dmunt_WITH_MT32EMU_SMF2WAV=ON" ]; - meta = with lib; { + meta = { homepage = "https://munt.sourceforge.net/"; description = "Produces a WAVE file from a Standard MIDI file (SMF)"; mainProgram = "mt32emu-smf2wav"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.all; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/audio/mup/default.nix b/pkgs/applications/audio/mup/default.nix index b879b7c14c0cb..2a8ac992dfe54 100644 --- a/pkgs/applications/audio/mup/default.nix +++ b/pkgs/applications/audio/mup/default.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { 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; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/musescore/default.nix b/pkgs/applications/audio/musescore/default.nix index 04253607aadb1..2b4290b264646 100644 --- a/pkgs/applications/audio/musescore/default.nix +++ b/pkgs/applications/audio/musescore/default.nix @@ -168,16 +168,16 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests = nixosTests.musescore; - meta = with lib; { + meta = { description = "Music notation and composition software"; homepage = "https://musescore.org/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ vandenoever doronbehar orivej ]; mainProgram = "mscore"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/applications/audio/muso/default.nix b/pkgs/applications/audio/muso/default.nix index 0623754cfa184..a95fe0e8ce845 100644 --- a/pkgs/applications/audio/muso/default.nix +++ b/pkgs/applications/audio/muso/default.nix @@ -37,12 +37,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-+UVUejKCfjC6zdW315wmu7f3A5GmnoQ3rIk8SK6LIRI="; - 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/applications/audio/nootka/default.nix b/pkgs/applications/audio/nootka/default.nix index 88a5ed0c43015..10cd8cbf6fb33 100644 --- a/pkgs/applications/audio/nootka/default.nix +++ b/pkgs/applications/audio/nootka/default.nix @@ -50,15 +50,15 @@ stdenv.mkDerivation rec { "-DENABLE_PULSEAUDIO=ON" ]; - meta = with lib; { + meta = { description = "Application for practicing playing musical scores and ear training"; mainProgram = "nootka"; homepage = "https://nootka.sourceforge.io/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mmlb orivej ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/open-music-kontrollers/mephisto.nix b/pkgs/applications/audio/open-music-kontrollers/mephisto.nix index f64577d53e75c..2658a3ca217b1 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/padthv1/default.nix b/pkgs/applications/audio/padthv1/default.nix index 4254b53bbd919..7e0d2c6076886 100644 --- a/pkgs/applications/audio/padthv1/default.nix +++ b/pkgs/applications/audio/padthv1/default.nix @@ -34,12 +34,12 @@ mkDerivation rec { nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "polyphonic additive synthesizer"; mainProgram = "padthv1_jack"; homepage = "http://padthv1.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.magnetophon ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.magnetophon ]; }; } diff --git a/pkgs/applications/audio/patchance/default.nix b/pkgs/applications/audio/patchance/default.nix index c527bc7037c2b..a18a137426f80 100644 --- a/pkgs/applications/audio/patchance/default.nix +++ b/pkgs/applications/audio/patchance/default.nix @@ -54,12 +54,12 @@ buildPythonApplication rec { done ''; - meta = with lib; { + meta = { homepage = "https://github.com/Houston4444/Patchance"; description = "JACK Patchbay GUI"; mainProgram = "patchance"; - license = licenses.gpl2; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/petrifoo/default.nix b/pkgs/applications/audio/petrifoo/default.nix index de8d4dc7920f2..c5045bc5a1a2b 100644 --- a/pkgs/applications/audio/petrifoo/default.nix +++ b/pkgs/applications/audio/petrifoo/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { openssl ]; - meta = with lib; { + meta = { description = "MIDI controllable audio sampler"; longDescription = "a fork of Specimen"; homepage = "https://petri-foo.sourceforge.net"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "petri-foo"; }; diff --git a/pkgs/applications/audio/pianobooster/default.nix b/pkgs/applications/audio/pianobooster/default.nix index 3ec19cf487dc5..255aa92339178 100644 --- a/pkgs/applications/audio/pianobooster/default.nix +++ b/pkgs/applications/audio/pianobooster/default.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { description = "MIDI file player that teaches you how to play the piano"; mainProgram = "pianobooster"; homepage = "https://github.com/pianobooster/PianoBooster"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/applications/audio/pipecontrol/default.nix b/pkgs/applications/audio/pipecontrol/default.nix index 63b8160868f8a..2790beddd797f 100644 --- a/pkgs/applications/audio/pipecontrol/default.nix +++ b/pkgs/applications/audio/pipecontrol/default.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { qtquickcontrols2 ]; - meta = with lib; { + meta = { description = "Pipewire control GUI program in Qt (Kirigami2)"; mainProgram = "pipecontrol"; homepage = "https://github.com/portaloffreedom/pipecontrol"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ tilcreator ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ tilcreator ]; }; } diff --git a/pkgs/applications/audio/pithos/default.nix b/pkgs/applications/audio/pithos/default.nix index c0d130b421ca3..c44740e9ca87b 100644 --- a/pkgs/applications/audio/pithos/default.nix +++ b/pkgs/applications/audio/pithos/default.nix @@ -66,12 +66,12 @@ pythonPackages.buildPythonApplication rec { pylast ]); - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Pandora Internet Radio player for GNOME"; mainProgram = "pithos"; homepage = "https://pithos.github.io/"; - license = licenses.gpl3; - maintainers = with maintainers; [ obadz ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ obadz ]; }; } diff --git a/pkgs/applications/audio/playbar2/default.nix b/pkgs/applications/audio/playbar2/default.nix index f698a39440a6f..75c0961725b28 100644 --- a/pkgs/applications/audio/playbar2/default.nix +++ b/pkgs/applications/audio/playbar2/default.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Mpris2 Client for Plasma5"; homepage = "https://github.com/audoban/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/plexamp/default.nix b/pkgs/applications/audio/plexamp/default.nix index 874936c250427..f2fe916fe777b 100644 --- a/pkgs/applications/audio/plexamp/default.nix +++ b/pkgs/applications/audio/plexamp/default.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/77"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ killercup redhawk synthetica diff --git a/pkgs/applications/audio/polyphone/default.nix b/pkgs/applications/audio/polyphone/default.nix index 436a690ffd62e..a41549e68b12d 100644 --- a/pkgs/applications/audio/polyphone/default.nix +++ b/pkgs/applications/audio/polyphone/default.nix @@ -59,16 +59,16 @@ stdenv.mkDerivation rec { "DEFINES+=USE_LOCAL_STK" ]; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "Soundfont editor for creating musical instruments"; mainProgram = "polyphone"; homepage = "https://www.polyphone-soundfonts.com/"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ maxdamantus orivej ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/puddletag/default.nix b/pkgs/applications/audio/puddletag/default.nix index 4daeee6d4cb3d..5ece5fd22ebcc 100644 --- a/pkgs/applications/audio/puddletag/default.nix +++ b/pkgs/applications/audio/puddletag/default.nix @@ -73,15 +73,15 @@ python3.pkgs.buildPythonApplication rec { dontStrip = true; # we are not generating any binaries - meta = with lib; { + meta = { description = "Audio tag editor similar to the Windows program, Mp3tag"; mainProgram = "puddletag"; homepage = "https://docs.puddletag.net"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ peterhoeg dschrempf ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/qmidinet/default.nix b/pkgs/applications/audio/qmidinet/default.nix index 782ddc6132608..3ee38eff39bba 100644 --- a/pkgs/applications/audio/qmidinet/default.nix +++ b/pkgs/applications/audio/qmidinet/default.nix @@ -29,12 +29,12 @@ mkDerivation rec { nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "MIDI network gateway application that sends and receives MIDI data (ALSA Sequencer and/or JACK MIDI) over the network"; mainProgram = "qmidinet"; homepage = "http://qmidinet.sourceforge.net/"; - 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/applications/audio/qmmp/default.nix b/pkgs/applications/audio/qmmp/default.nix index 407d44c785da2..7e7a81e9a47b0 100644 --- a/pkgs/applications/audio/qmmp/default.nix +++ b/pkgs/applications/audio/qmmp/default.nix @@ -110,12 +110,12 @@ stdenv.mkDerivation rec { libsamplerate ]; - meta = with lib; { + meta = { description = "Qt-based audio player that looks like Winamp"; mainProgram = "qmmp"; homepage = "https://qmmp.ylsoftware.com/"; - 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/applications/audio/qpwgraph/default.nix b/pkgs/applications/audio/qpwgraph/default.nix index 76261c239ba93..ead1b20b51fcb 100644 --- a/pkgs/applications/audio/qpwgraph/default.nix +++ b/pkgs/applications/audio/qpwgraph/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = [ "-DCONFIG_WAYLAND=ON" ]; - meta = with lib; { + meta = { description = "Qt graph manager for PipeWire, similar to QjackCtl"; longDescription = '' qpwgraph is a graph manager dedicated for PipeWire, @@ -48,9 +48,9 @@ stdenv.mkDerivation (finalAttrs: { the same of QjackCtl. ''; homepage = "https://gitlab.freedesktop.org/rncbc/qpwgraph"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ kanashimia exi Scrumplex diff --git a/pkgs/applications/audio/qsampler/default.nix b/pkgs/applications/audio/qsampler/default.nix index 46e7a5c7fea31..ad2e59342f975 100644 --- a/pkgs/applications/audio/qsampler/default.nix +++ b/pkgs/applications/audio/qsampler/default.nix @@ -38,12 +38,12 @@ mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "http://www.linuxsampler.org"; description = "Graphical frontend to LinuxSampler"; mainProgram = "qsampler"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/qsynth/default.nix b/pkgs/applications/audio/qsynth/default.nix index 5c7ae53e0bdec..f97069c337dd7 100644 --- a/pkgs/applications/audio/qsynth/default.nix +++ b/pkgs/applications/audio/qsynth/default.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { qtx11extras ]; - meta = with lib; { + meta = { description = "Fluidsynth GUI"; mainProgram = "qsynth"; homepage = "https://sourceforge.net/projects/qsynth"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/quodlibet/default.nix b/pkgs/applications/audio/quodlibet/default.nix index ee2b4f8a842bd..b0ec72bb1c4a3 100644 --- a/pkgs/applications/audio/quodlibet/default.nix +++ b/pkgs/applications/audio/quodlibet/default.nix @@ -170,7 +170,7 @@ python3.pkgs.buildPythonApplication { gappsWrapperArgs+=(--prefix PATH : ${kakasi}/bin) ''; - meta = with lib; { + meta = { description = "GTK-based audio player written in Python, using the Mutagen tagging library"; longDescription = '' Quod Libet is a GTK-based audio player written in Python, using @@ -186,8 +186,8 @@ python3.pkgs.buildPythonApplication { & internet radio, and all major audio formats. ''; homepage = "https://quodlibet.readthedocs.io/en/latest"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ coroa pbogdan ]; diff --git a/pkgs/applications/audio/raysession/default.nix b/pkgs/applications/audio/raysession/default.nix index cc7c0e0d5a741..625e0da7fa83b 100644 --- a/pkgs/applications/audio/raysession/default.nix +++ b/pkgs/applications/audio/raysession/default.nix @@ -61,11 +61,11 @@ buildPythonApplication rec { done ''; - meta = with lib; { + meta = { homepage = "https://github.com/Houston4444/RaySession"; description = "Session manager for Linux musical programs"; - license = licenses.gpl2; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/samplv1/default.nix b/pkgs/applications/audio/samplv1/default.nix index cc46296342e44..89e46e2ac8fc4 100644 --- a/pkgs/applications/audio/samplv1/default.nix +++ b/pkgs/applications/audio/samplv1/default.nix @@ -37,12 +37,12 @@ mkDerivation rec { rubberband ]; - meta = with lib; { + meta = { description = "Old-school all-digital polyphonic sampler synthesizer with stereo fx"; mainProgram = "samplv1_jack"; homepage = "http://samplv1.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/audio/sayonara/default.nix b/pkgs/applications/audio/sayonara/default.nix index 8426cc20e2e1b..8978f895dbcc0 100644 --- a/pkgs/applications/audio/sayonara/default.nix +++ b/pkgs/applications/audio/sayonara/default.nix @@ -81,11 +81,11 @@ mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Sayonara music player"; homepage = "https://sayonara-player.com/"; - license = licenses.gpl3; - maintainers = with maintainers; [ deepfire ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ deepfire ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/audio/schismtracker/default.nix b/pkgs/applications/audio/schismtracker/default.nix index faa298c06f63f..e66bd9dc56ae6 100644 --- a/pkgs/applications/audio/schismtracker/default.nix +++ b/pkgs/applications/audio/schismtracker/default.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { --replace '-lSDL2main' '-lSDL2' ''; - meta = with lib; { + meta = { description = "Music tracker application, free reimplementation of Impulse Tracker"; homepage = "https://schismtracker.org/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ ftrvxmtrx ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ftrvxmtrx ]; mainProgram = "schismtracker"; }; } diff --git a/pkgs/applications/audio/sfxr-qt/default.nix b/pkgs/applications/audio/sfxr-qt/default.nix index e1caae7c8024f..d7662d7e07fd6 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/sisco.lv2/default.nix b/pkgs/applications/audio/sisco.lv2/default.nix index 2163ea5db514b..201bce5b39151 100644 --- a/pkgs/applications/audio/sisco.lv2/default.nix +++ b/pkgs/applications/audio/sisco.lv2/default.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { sisco_VERSION = version; preConfigure = "makeFlagsArray=(PREFIX=$out)"; - meta = with lib; { + meta = { description = "Simple audio oscilloscope with variable time scale, triggering, cursors and numeric readout in LV2 plugin format"; homepage = "http://x42.github.io/sisco.lv2/"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/sonic-lineup/default.nix b/pkgs/applications/audio/sonic-lineup/default.nix index e464c4a00f46d..28a31bcb1fcc3 100644 --- a/pkgs/applications/audio/sonic-lineup/default.nix +++ b/pkgs/applications/audio/sonic-lineup/default.nix @@ -83,12 +83,12 @@ stdenv.mkDerivation rec { sed -i 's/sub_test_svcore_/#sub_test_svcore_/' sonic-lineup.pro ''; - meta = with lib; { + meta = { description = "Comparative visualisation of related audio recordings"; mainProgram = "sonic-lineup"; homepage = "https://www.sonicvisualiser.org/sonic-lineup/"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.vandenoever ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.vandenoever ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/sonic-pi/default.nix b/pkgs/applications/audio/sonic-pi/default.nix index 9a45ba77ca6a4..be63022e7c134 100644 --- a/pkgs/applications/audio/sonic-pi/default.nix +++ b/pkgs/applications/audio/sonic-pi/default.nix @@ -245,16 +245,16 @@ stdenv.mkDerivation rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { homepage = "https://sonic-pi.net/"; description = "Free live coding synth for everyone originally designed to support computing and music lessons within schools"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Phlogistique kamilchm c0deaddict sohalt ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/sonic-visualiser/default.nix b/pkgs/applications/audio/sonic-visualiser/default.nix index 8f6a6e6f4cc7f..ff76f9494d090 100644 --- a/pkgs/applications/audio/sonic-visualiser/default.nix +++ b/pkgs/applications/audio/sonic-visualiser/default.nix @@ -86,11 +86,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "View and analyse contents of music audio files"; homepage = "https://www.sonicvisualiser.org/"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.marcweber ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.marcweber ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/spek/default.nix b/pkgs/applications/audio/spek/default.nix index ad1c2ff5b7e2a..e5fcf3bbacc88 100644 --- a/pkgs/applications/audio/spek/default.nix +++ b/pkgs/applications/audio/spek/default.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { gtk3 ]; - meta = with lib; { + meta = { description = "Analyse your audio files by showing their spectrogram"; mainProgram = "spek"; homepage = "http://spek.cc/"; - license = licenses.gpl3; - maintainers = with maintainers; [ bjornfor ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ bjornfor ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/audio/spotify-qt/default.nix b/pkgs/applications/audio/spotify-qt/default.nix index abb40e9ed468b..d1c50d30732b6 100644 --- a/pkgs/applications/audio/spotify-qt/default.nix +++ b/pkgs/applications/audio/spotify-qt/default.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation (finalAttrs: { ln $out/Applications/spotify-qt.app/Contents/MacOS/spotify-qt $out/bin/spotify-qt ''; - meta = with lib; { + meta = { description = "Lightweight unofficial Spotify client using Qt"; mainProgram = "spotify-qt"; homepage = "https://github.com/kraxarn/spotify-qt"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ iivusly ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ iivusly ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/applications/audio/surge/default.nix b/pkgs/applications/audio/surge/default.nix index 5f65fab87578f..52e519189b7ec 100644 --- a/pkgs/applications/audio/surge/default.nix +++ b/pkgs/applications/audio/surge/default.nix @@ -92,15 +92,15 @@ stdenv.mkDerivation rec { build/surge-headless ''; - meta = with lib; { + meta = { description = '' LV2 & VST3 synthesizer plug-in (previously released as Vember Audio Surge) ''; homepage = "https://surge-synthesizer.github.io"; - license = licenses.gpl3; + license = lib.licenses.gpl3; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ magnetophon orivej ]; diff --git a/pkgs/applications/audio/synthv1/default.nix b/pkgs/applications/audio/synthv1/default.nix index 4f6582a875cc7..10b0adfd7d365 100644 --- a/pkgs/applications/audio/synthv1/default.nix +++ b/pkgs/applications/audio/synthv1/default.nix @@ -31,12 +31,12 @@ mkDerivation rec { nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Old-school 4-oscillator subtractive polyphonic synthesizer with stereo fx"; mainProgram = "synthv1_jack"; homepage = "https://synthv1.sourceforge.io/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/audio/tageditor/default.nix b/pkgs/applications/audio/tageditor/default.nix index 4c21e137aed1f..034aa1ab5704d 100644 --- a/pkgs/applications/audio/tageditor/default.nix +++ b/pkgs/applications/audio/tageditor/default.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { tagparser ]; - meta = with lib; { + meta = { homepage = "https://github.com/Martchus/tageditor"; description = "Tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska"; - license = licenses.gpl2; - maintainers = [ maintainers.matthiasbeyer ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.matthiasbeyer ]; + platforms = lib.platforms.linux; mainProgram = "tageditor"; }; } diff --git a/pkgs/applications/audio/tony/default.nix b/pkgs/applications/audio/tony/default.nix index 643228bfad913..67588cfe45b94 100644 --- a/pkgs/applications/audio/tony/default.nix +++ b/pkgs/applications/audio/tony/default.nix @@ -93,12 +93,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Pitch and note annotation of unaccompanied melody"; mainProgram = "tony"; homepage = "https://www.sonicvisualiser.org/tony/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/traverso/default.nix b/pkgs/applications/audio/traverso/default.nix index d58ccbf940f0a..2143af6b07451 100644 --- a/pkgs/applications/audio/traverso/default.nix +++ b/pkgs/applications/audio/traverso/default.nix @@ -56,15 +56,15 @@ mkDerivation { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "Cross-platform multitrack audio recording and audio editing suite"; mainProgram = "traverso"; homepage = "https://traverso-daw.org/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus ]; - platforms = platforms.all; - maintainers = with maintainers; [ coconnor ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ coconnor ]; }; } diff --git a/pkgs/applications/audio/tunefish/default.nix b/pkgs/applications/audio/tunefish/default.nix index a953f59601228..ec2e9f1d9cea8 100644 --- a/pkgs/applications/audio/tunefish/default.nix +++ b/pkgs/applications/audio/tunefish/default.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://tunefish-synth.com/"; description = "Virtual analog synthesizer LV2 plugin"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ orivej ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/applications/audio/vmpk/default.nix b/pkgs/applications/audio/vmpk/default.nix index 7201030bac352..c4640e405b1b8 100644 --- a/pkgs/applications/audio/vmpk/default.nix +++ b/pkgs/applications/audio/vmpk/default.nix @@ -36,12 +36,12 @@ mkDerivation rec { ln -s ${drumstick}/share/drumstick $out/share/ ''; - meta = with lib; { + meta = { description = "Virtual MIDI Piano Keyboard"; mainProgram = "vmpk"; homepage = "http://vmpk.sourceforge.net/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/audio/xmp/default.nix b/pkgs/applications/audio/xmp/default.nix index dace69315ac13..a9db98fca739f 100644 --- a/pkgs/applications/audio/xmp/default.nix +++ b/pkgs/applications/audio/xmp/default.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { CoreAudio ]; - 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/applications/audio/youtube-music/default.nix b/pkgs/applications/audio/youtube-music/default.nix index c63a87b060c35..1869d5ad34cb3 100644 --- a/pkgs/applications/audio/youtube-music/default.nix +++ b/pkgs/applications/audio/youtube-music/default.nix @@ -94,14 +94,14 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = with lib; { + meta = { description = "Electron wrapper around YouTube Music"; homepage = "https://th-ch.github.io/youtube-music/"; changelog = "https://github.com/th-ch/youtube-music/blob/master/changelog.md#${ lib.replaceStrings [ "." ] [ "" ] finalAttrs.src.rev }"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aacebedo SuperSandro2000 ]; diff --git a/pkgs/applications/audio/zynaddsubfx/mruby-zest/default.nix b/pkgs/applications/audio/zynaddsubfx/mruby-zest/default.nix index d7b9ad3133537..e7b674d851921 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/backup/restique/default.nix b/pkgs/applications/backup/restique/default.nix index d2e1a78361ee5..58bdb480a1cf0 100644 --- a/pkgs/applications/backup/restique/default.nix +++ b/pkgs/applications/backup/restique/default.nix @@ -38,15 +38,15 @@ mkDerivation rec { (lib.makeBinPath [ restic ]) ]; - meta = with lib; { + meta = { description = "Restic GUI for Desktop/Laptop Backups"; homepage = "https://git.srcbox.net/stefan/restique"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus cc-by-sa-40 cc0 ]; - maintainers = with maintainers; [ dotlambda ]; + maintainers = with lib.maintainers; [ dotlambda ]; mainProgram = "restique"; }; } diff --git a/pkgs/applications/backup/timeshift/unwrapped.nix b/pkgs/applications/backup/timeshift/unwrapped.nix index a318e07793c44..8dc5265043d4e 100644 --- a/pkgs/applications/backup/timeshift/unwrapped.nix +++ b/pkgs/applications/backup/timeshift/unwrapped.nix @@ -61,16 +61,16 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration"; }; - meta = with lib; { + meta = { description = "System restore tool for Linux"; longDescription = '' TimeShift creates filesystem snapshots using rsync+hardlinks or BTRFS snapshots. Snapshots can be restored using TimeShift installed on the system or from Live CD or USB. ''; homepage = "https://github.com/linuxmint/timeshift"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ShamrockLee bobby285271 ]; diff --git a/pkgs/applications/blockchains/digibyte/default.nix b/pkgs/applications/blockchains/digibyte/default.nix index bb254dc0c32f6..3c127dc2f1ae4 100644 --- a/pkgs/applications/blockchains/digibyte/default.nix +++ b/pkgs/applications/blockchains/digibyte/default.nix @@ -65,11 +65,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/electrs/default.nix b/pkgs/applications/blockchains/electrs/default.nix index 440b59b5bd63c..b0cbb7ff772a0 100644 --- a/pkgs/applications/blockchains/electrs/default.nix +++ b/pkgs/applications/blockchains/electrs/default.nix @@ -34,11 +34,11 @@ rustPlatform.buildRustPackage rec { 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/applications/blockchains/fulcrum/default.nix b/pkgs/applications/blockchains/fulcrum/default.nix index b52c720267e5a..463c566dd81b8 100644 --- a/pkgs/applications/blockchains/fulcrum/default.nix +++ b/pkgs/applications/blockchains/fulcrum/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { zeromq ]; - meta = with lib; { + meta = { description = "Fast & nimble SPV server for Bitcoin Cash & Bitcoin BTC"; homepage = "https://github.com/cculianu/Fulcrum"; - maintainers = with maintainers; [ prusnak ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ prusnak ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/blockchains/gridcoin-research/default.nix b/pkgs/applications/blockchains/gridcoin-research/default.nix index 136800a4eb11d..0621d7773503c 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 d0de5fa729b32..170583c2b5f91 100644 --- a/pkgs/applications/blockchains/groestlcoin/default.nix +++ b/pkgs/applications/blockchains/groestlcoin/default.nix @@ -115,7 +115,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 @@ -125,8 +125,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/haven-cli/default.nix b/pkgs/applications/blockchains/haven-cli/default.nix index 55024aa83e440..bf6c8b34c06c4 100644 --- a/pkgs/applications/blockchains/haven-cli/default.nix +++ b/pkgs/applications/blockchains/haven-cli/default.nix @@ -97,13 +97,13 @@ stdenv.mkDerivation rec { "source" ]; - meta = with lib; { + meta = { description = "Haven Protocol is the world's only network of private stable asset"; homepage = "https://havenprotocol.org/"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; badPlatforms = [ "x86_64-darwin" ]; - maintainers = with maintainers; [ kim0 ]; + maintainers = with lib.maintainers; [ kim0 ]; mainProgram = "haven-wallet-cli"; }; } diff --git a/pkgs/applications/blockchains/optimism/default.nix b/pkgs/applications/blockchains/optimism/default.nix index d4b915d8cd82b..d60a6b12509fe 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 e88ce594cd8d5..9254dbb0e611b 100644 --- a/pkgs/applications/blockchains/optimism/geth.nix +++ b/pkgs/applications/blockchains/optimism/geth.nix @@ -47,10 +47,10 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { 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/snarkos/default.nix b/pkgs/applications/blockchains/snarkos/default.nix index e54e24c5a7b6d..e0b1c9b801808 100644 --- a/pkgs/applications/blockchains/snarkos/default.nix +++ b/pkgs/applications/blockchains/snarkos/default.nix @@ -54,12 +54,12 @@ rustPlatform.buildRustPackage rec { # "--skip=helpers::block_requests::tests::test_block_requests_case_2ca" # ]; - meta = with lib; { + meta = { 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/applications/blockchains/sparrow/openimajgrabber.nix b/pkgs/applications/blockchains/sparrow/openimajgrabber.nix index 7282aa8c305c1..480e3fc703cdc 100644 --- a/pkgs/applications/blockchains/sparrow/openimajgrabber.nix +++ b/pkgs/applications/blockchains/sparrow/openimajgrabber.nix @@ -31,14 +31,14 @@ stdenv.mkDerivation rec { cp hardware/core-video-capture/src-native/linux/OpenIMAJGrabber.so $out/lib ''; - meta = with lib; { + meta = { description = "Collection of libraries and tools for multimedia (images, text, video, audio, etc.) content analysis and content generation. This package only builds the OpenIMAJGrabber for Linux"; homepage = "http://www.openimaj.org"; - license = licenses.bsd0; - maintainers = with maintainers; [ + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ emmanuelrosa _1000101 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/blockchains/vertcoin/default.nix b/pkgs/applications/blockchains/vertcoin/default.nix index 056bad01dfc64..7e3b0ee74b369 100644 --- a/pkgs/applications/blockchains/vertcoin/default.nix +++ b/pkgs/applications/blockchains/vertcoin/default.nix @@ -82,11 +82,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/display-managers/greetd/default.nix b/pkgs/applications/display-managers/greetd/default.nix index 37db111efe0ad..1d8abfd362288 100644 --- a/pkgs/applications/display-managers/greetd/default.nix +++ b/pkgs/applications/display-managers/greetd/default.nix @@ -37,7 +37,7 @@ rustPlatform.buildRustPackage rec { installManPage man/* ''; - meta = with lib; { + meta = { description = "Minimal and flexible login manager daemon"; longDescription = '' greetd is a minimal and flexible login manager daemon @@ -45,8 +45,8 @@ rustPlatform.buildRustPackage rec { Comes with agreety, a simple, text-based greeter. ''; homepage = "https://sr.ht/~kennylevinsen/greetd/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/display-managers/greetd/gtkgreet.nix b/pkgs/applications/display-managers/greetd/gtkgreet.nix index 425e4c1790b3d..14709ba453cb8 100644 --- a/pkgs/applications/display-managers/greetd/gtkgreet.nix +++ b/pkgs/applications/display-managers/greetd/gtkgreet.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { # G_APPLICATION_FLAGS_NONE is deprecated in GLib 2.73.3+. env.NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations"; - meta = with lib; { + meta = { description = "GTK based greeter for greetd, to be run under cage or similar"; homepage = "https://git.sr.ht/~kennylevinsen/gtkgreet"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.linux; mainProgram = "gtkgreet"; }; } diff --git a/pkgs/applications/display-managers/greetd/regreet.nix b/pkgs/applications/display-managers/greetd/regreet.nix index b1eeeb6f5bf35..62f382f7813a7 100644 --- a/pkgs/applications/display-managers/greetd/regreet.nix +++ b/pkgs/applications/display-managers/greetd/regreet.nix @@ -36,12 +36,12 @@ rustPlatform.buildRustPackage rec { librsvg ]; - meta = with lib; { + meta = { description = "Clean and customizable greeter for greetd"; homepage = "https://github.com/rharish101/ReGreet"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fufexan ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fufexan ]; + platforms = lib.platforms.linux; mainProgram = "regreet"; }; } diff --git a/pkgs/applications/display-managers/greetd/wlgreet.nix b/pkgs/applications/display-managers/greetd/wlgreet.nix index aa4cd8e2f94bb..b716ddd083ec2 100644 --- a/pkgs/applications/display-managers/greetd/wlgreet.nix +++ b/pkgs/applications/display-managers/greetd/wlgreet.nix @@ -30,12 +30,12 @@ rustPlatform.buildRustPackage rec { libxkbcommon ]; - meta = with lib; { + meta = { description = "Raw wayland greeter for greetd, to be run under sway or similar"; mainProgram = "wlgreet"; homepage = "https://git.sr.ht/~kennylevinsen/wlgreet"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/editors/bluefish/default.nix b/pkgs/applications/editors/bluefish/default.nix index 04f5a97a51ae4..3d4410728339a 100644 --- a/pkgs/applications/editors/bluefish/default.nix +++ b/pkgs/applications/editors/bluefish/default.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { python3 ]; - meta = with lib; { + meta = { description = "Powerful editor targeted towards programmers and webdevelopers"; homepage = "https://bluefish.openoffice.nl/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ vbgl ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ vbgl ]; + platforms = lib.platforms.all; mainProgram = "bluefish"; }; } diff --git a/pkgs/applications/editors/code-browser/default.nix b/pkgs/applications/editors/code-browser/default.nix index 093b5fe3309e4..3fde22d748195 100644 --- a/pkgs/applications/editors/code-browser/default.nix +++ b/pkgs/applications/editors/code-browser/default.nix @@ -73,10 +73,10 @@ mkDerivation rec { ++ lib.optionals withGtk2 [ "UI=gtk2" ] ++ lib.optionals withGtk3 [ "UI=gtk" ]; - meta = with lib; { + meta = { description = "Folding text editor, designed to hierarchically structure any kind of text file and especially source code"; homepage = "https://tibleiz.net/code-browser/"; - license = licenses.gpl2; - platforms = platforms.x86_64; + license = lib.licenses.gpl2; + platforms = lib.platforms.x86_64; }; } diff --git a/pkgs/applications/editors/cpeditor/default.nix b/pkgs/applications/editors/cpeditor/default.nix index b869ec3b6d155..8258c0a3acde1 100644 --- a/pkgs/applications/editors/cpeditor/default.nix +++ b/pkgs/applications/editors/cpeditor/default.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { substituteInPlace dist/linux/cpeditor.desktop --replace-fail 'Exec=/usr/bin/cpeditor' "Exec=cpeditor" ''; - meta = with lib; { + meta = { description = "IDE specially designed for competitive programming"; homepage = "https://cpeditor.org"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ rewine ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rewine ]; mainProgram = "cpeditor"; }; } diff --git a/pkgs/applications/editors/featherpad/default.nix b/pkgs/applications/editors/featherpad/default.nix index 72fd7d1dac875..c41001ab8446d 100644 --- a/pkgs/applications/editors/featherpad/default.nix +++ b/pkgs/applications/editors/featherpad/default.nix @@ -34,11 +34,11 @@ mkDerivation rec { qtx11extras ]; - meta = with lib; { + meta = { description = "Lightweight Qt5 Plain-Text Editor for Linux"; homepage = "https://github.com/tsujan/FeatherPad"; - platforms = platforms.linux; - maintainers = [ maintainers.flosse ]; - license = licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.flosse ]; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/applications/editors/focuswriter/default.nix b/pkgs/applications/editors/focuswriter/default.nix index 1319120a1991d..9358ebe215f48 100644 --- a/pkgs/applications/editors/focuswriter/default.nix +++ b/pkgs/applications/editors/focuswriter/default.nix @@ -40,14 +40,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/geany/default.nix b/pkgs/applications/editors/geany/default.nix index 4c98f18c4346d..3c4844ce329a7 100644 --- a/pkgs/applications/editors/geany/default.nix +++ b/pkgs/applications/editors/geany/default.nix @@ -59,7 +59,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. @@ -81,9 +81,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/coq/kernel.nix b/pkgs/applications/editors/jupyter-kernels/coq/kernel.nix index 1fd032e465f07..76c20b1aea61e 100644 --- a/pkgs/applications/editors/jupyter-kernels/coq/kernel.nix +++ b/pkgs/applications/editors/jupyter-kernels/coq/kernel.nix @@ -27,10 +27,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/applications/editors/jupyter-kernels/wolfram/kernel.nix b/pkgs/applications/editors/jupyter-kernels/wolfram/kernel.nix index eab4626a663c5..a06afcf42f751 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 7b20a0d668d3d..92fd4dec45c2d 100644 --- a/pkgs/applications/editors/kakoune/default.nix +++ b/pkgs/applications/editors/kakoune/default.nix @@ -38,12 +38,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/molsketch/default.nix b/pkgs/applications/editors/molsketch/default.nix index ca8c048fa1822..7c08ea25f5dee 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/nano/default.nix b/pkgs/applications/editors/nano/default.nix index 30c8e49a454d0..046b2eb63d65f 100644 --- a/pkgs/applications/editors/nano/default.nix +++ b/pkgs/applications/editors/nano/default.nix @@ -91,16 +91,16 @@ 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 nequissimus sigmasquadron ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "nano"; }; } diff --git a/pkgs/applications/editors/neovim/gnvim/default.nix b/pkgs/applications/editors/neovim/gnvim/default.nix index ea2f543b5ef10..fb4fc93a051c3 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 019887ee324bb..6f3d1917ef07b 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 d0f9dfc4b6fd9..4dca7f238d83e 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/retext/default.nix b/pkgs/applications/editors/retext/default.nix index 480be18986c82..28506688836be 100644 --- a/pkgs/applications/editors/retext/default.nix +++ b/pkgs/applications/editors/retext/default.nix @@ -88,12 +88,12 @@ python3.pkgs.buildPythonApplication rec { "ReText" ]; - meta = with lib; { + meta = { description = "Editor for Markdown and reStructuredText"; homepage = "https://github.com/retext-project/retext/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ klntsky ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ klntsky ]; + platforms = lib.platforms.unix; mainProgram = "retext"; }; } diff --git a/pkgs/applications/editors/sigil/default.nix b/pkgs/applications/editors/sigil/default.nix index 4bba56f46e329..494817c8d7c9c 100644 --- a/pkgs/applications/editors/sigil/default.nix +++ b/pkgs/applications/editors/sigil/default.nix @@ -55,12 +55,12 @@ mkDerivation rec { ''${qtWrapperArgs[@]} ''; - meta = with lib; { + meta = { description = "Free, open source, multi-platform ebook (ePub) editor"; homepage = "https://github.com/Sigil-Ebook/Sigil/"; - license = licenses.gpl3; + license = lib.licenses.gpl3; # currently unmaintained - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "sigil"; }; } diff --git a/pkgs/applications/editors/texmaker/default.nix b/pkgs/applications/editors/texmaker/default.nix index fada79bc0f8d9..ca8b8faca5707 100644 --- a/pkgs/applications/editors/texmaker/default.nix +++ b/pkgs/applications/editors/texmaker/default.nix @@ -42,7 +42,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 @@ -50,9 +50,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/textadept/default.nix b/pkgs/applications/editors/textadept/default.nix index da5ffb192a3fc..f1ffcf8611646 100644 --- a/pkgs/applications/editors/textadept/default.nix +++ b/pkgs/applications/editors/textadept/default.nix @@ -44,16 +44,16 @@ stdenv.mkDerivation rec { ) (import ./deps.nix) ); - meta = with lib; { + meta = { description = "Extensible text editor based on Scintilla with Lua scripting"; homepage = "http://foicica.com/textadept"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raskin mirrexagon arcuru ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "textadept"; }; } diff --git a/pkgs/applications/editors/tiled/default.nix b/pkgs/applications/editors/tiled/default.nix index ea5cba92460d9..563f2f9951f43 100644 --- a/pkgs/applications/editors/tiled/default.nix +++ b/pkgs/applications/editors/tiled/default.nix @@ -82,17 +82,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 d6a8185048bbb..365d347bf26a4 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 = "http://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 3d401f553f35d..cb5f76305bc30 100644 --- a/pkgs/applications/editors/vim/macvim.nix +++ b/pkgs/applications/editors/vim/macvim.nix @@ -209,12 +209,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; + license = lib.licenses.vim; maintainers = [ ]; - platforms = platforms.darwin; + 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/vimacs.nix b/pkgs/applications/editors/vim/vimacs.nix index 09f092be322dd..fbd53bf5791d9 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/equinusocio.vsc-material-theme/default.nix b/pkgs/applications/editors/vscode/extensions/equinusocio.vsc-material-theme/default.nix index 79d080cb13e88..8b90a9c6830e3 100644 --- a/pkgs/applications/editors/vscode/extensions/equinusocio.vsc-material-theme/default.nix +++ b/pkgs/applications/editors/vscode/extensions/equinusocio.vsc-material-theme/default.nix @@ -8,12 +8,12 @@ vscode-utils.buildVscodeMarketplaceExtension { hash = "sha256-6YMr64MTtJrmMMMPW/s6hMh/IilDqLMrspKRPT4uSpM="; }; - meta = with lib; { + meta = { changelog = "https://marketplace.visualstudio.com/items/Equinusocio.vsc-material-theme/changelog"; description = "Most epic theme now for Visual Studio Code"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-material-theme"; homepage = "https://www.material-theme.dev/"; - license = licenses.unfree; - maintainers = with maintainers; [ stunkymonkey ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ stunkymonkey ]; }; } diff --git a/pkgs/applications/editors/zee/default.nix b/pkgs/applications/editors/zee/default.nix index 4aec2af12cda9..61acf6d59657d 100644 --- a/pkgs/applications/editors/zee/default.nix +++ b/pkgs/applications/editors/zee/default.nix @@ -35,11 +35,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-fBBjtjM7AnyAL6EOFstL4h6yS+UoLgxck6Mc0tJcXaI="; - meta = with lib; { + meta = { description = "Modern text editor for the terminal written in Rust"; homepage = "https://github.com/zee-editor/zee"; - license = licenses.mit; - maintainers = with maintainers; [ booklearner ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ booklearner ]; mainProgram = "zee"; }; } diff --git a/pkgs/applications/emulators/cdemu/vhba.nix b/pkgs/applications/emulators/cdemu/vhba.nix index 4ab79810dc2ac..798b72a1a597d 100644 --- a/pkgs/applications/emulators/cdemu/vhba.nix +++ b/pkgs/applications/emulators/cdemu/vhba.nix @@ -20,11 +20,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/dolphin-emu/primehack.nix b/pkgs/applications/emulators/dolphin-emu/primehack.nix index 66200efda7202..a54f3a29c8810 100644 --- a/pkgs/applications/emulators/dolphin-emu/primehack.nix +++ b/pkgs/applications/emulators/dolphin-emu/primehack.nix @@ -151,12 +151,12 @@ stdenv.mkDerivation rec { install -D $src/Data/51-usb-device.rules $out/etc/udev/rules.d/51-usb-device.rules ''; - meta = with lib; { + meta = { homepage = "https://github.com/shiiion/dolphin"; description = "Gamecube/Wii/Triforce emulator for x86_64 and ARMv8"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ Madouura ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ Madouura ]; broken = stdenv.hostPlatform.isDarwin; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/emulators/dosbox/default.nix b/pkgs/applications/emulators/dosbox/default.nix index f27d3e06adb59..be9f5e36e2b11 100644 --- a/pkgs/applications/emulators/dosbox/default.nix +++ b/pkgs/applications/emulators/dosbox/default.nix @@ -87,7 +87,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"; @@ -98,9 +98,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; - maintainers = with maintainers; [ matthewbauer ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ matthewbauer ]; + platforms = lib.platforms.unix; mainProgram = "dosbox"; }; } diff --git a/pkgs/applications/emulators/gens-gs/default.nix b/pkgs/applications/emulators/gens-gs/default.nix index c2b4751b5adb9..596a8422b9779 100644 --- a/pkgs/applications/emulators/gens-gs/default.nix +++ b/pkgs/applications/emulators/gens-gs/default.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { # See http://ubuntuforums.org/showthread.php?p=10535837 env.NIX_CFLAGS_COMPILE = "-UGTK_DISABLE_DEPRECATED -UGSEAL_ENABLE"; - meta = with lib; { + meta = { homepage = "https://segaretro.org/Gens/GS"; description = "Genesis/Mega Drive emulator"; platforms = [ "i686-linux" ]; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/applications/emulators/goldberg-emu/default.nix b/pkgs/applications/emulators/goldberg-emu/default.nix index e3100d497681c..b8805406a1958 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/ripes/default.nix b/pkgs/applications/emulators/ripes/default.nix index 61cc99cbc46c4..b98414668a44e 100644 --- a/pkgs/applications/emulators/ripes/default.nix +++ b/pkgs/applications/emulators/ripes/default.nix @@ -57,12 +57,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; [ rewine ]; + maintainers = with lib.maintainers; [ rewine ]; }; } diff --git a/pkgs/applications/emulators/wibo/default.nix b/pkgs/applications/emulators/wibo/default.nix index 1909e6b0fb8dd..f0d0c6035a643 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 1016d00fbaae5..d62d3137affa2 100644 --- a/pkgs/applications/emulators/yabause/default.nix +++ b/pkgs/applications/emulators/yabause/default.nix @@ -49,12 +49,12 @@ mkDerivation rec { "-DYAB_PORTS=qt" ]; - meta = with lib; { + meta = { description = "Open-source Sega Saturn emulator"; mainProgram = "yabause"; homepage = "https://yabause.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/file-managers/krusader/default.nix b/pkgs/applications/file-managers/krusader/default.nix index e11d3f71af893..8082090ce25b6 100644 --- a/pkgs/applications/file-managers/krusader/default.nix +++ b/pkgs/applications/file-managers/krusader/default.nix @@ -44,11 +44,11 @@ mkDerivation rec { kwindowsystem ]; - meta = with lib; { + meta = { homepage = "http://www.krusader.org"; description = "Norton/Total Commander clone for KDE"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ sander ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ sander ]; mainProgram = "krusader"; }; } diff --git a/pkgs/applications/file-managers/lf/ctpv.nix b/pkgs/applications/file-managers/lf/ctpv.nix index 257fd9cc666e8..ad2f315c98543 100644 --- a/pkgs/applications/file-managers/lf/ctpv.nix +++ b/pkgs/applications/file-managers/lf/ctpv.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { }"; ''; - 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/applications/file-managers/mc/default.nix b/pkgs/applications/file-managers/mc/default.nix index 80e929eb71600..5c09945753a8f 100644 --- a/pkgs/applications/file-managers/mc/default.nix +++ b/pkgs/applications/file-managers/mc/default.nix @@ -98,13 +98,13 @@ 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://www.midnight-commander.org/downloads/"; homepage = "https://www.midnight-commander.org"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ sander ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ sander ]; + platforms = with lib.platforms; linux ++ darwin; mainProgram = "mc"; }; } diff --git a/pkgs/applications/file-managers/xfe/default.nix b/pkgs/applications/file-managers/xfe/default.nix index 383ed13c9498c..674640e212caf 100644 --- a/pkgs/applications/file-managers/xfe/default.nix +++ b/pkgs/applications/file-managers/xfe/default.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/applications/gis/zombietrackergps/default.nix b/pkgs/applications/gis/zombietrackergps/default.nix index 2cd1c823521fc..dec7745d8da4b 100644 --- a/pkgs/applications/gis/zombietrackergps/default.nix +++ b/pkgs/applications/gis/zombietrackergps/default.nix @@ -50,12 +50,12 @@ mkDerivation rec { rev-prefix = "v_"; }; - meta = with lib; { + meta = { description = "GPS track manager for Qt using KDE Marble maps"; homepage = "https://www.zombietrackergps.net/ztgps/"; changelog = "https://www.zombietrackergps.net/ztgps/history.html"; - 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/applications/graphics/antimony/default.nix b/pkgs/applications/graphics/antimony/default.nix index 4078f09d24eec..eebdbdffdb4c1 100644 --- a/pkgs/applications/graphics/antimony/default.nix +++ b/pkgs/applications/graphics/antimony/default.nix @@ -90,12 +90,12 @@ stdenv.mkDerivation { "-DGITBRANCH=${gitBranch}" ]; - meta = with lib; { + meta = { description = "Computer-aided design (CAD) tool from a parallel universe"; mainProgram = "antimony"; homepage = "https://github.com/mkeeter/antimony"; - license = licenses.mit; - maintainers = with maintainers; [ rnhmjoj ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rnhmjoj ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/graphics/apitrace/default.nix b/pkgs/applications/graphics/apitrace/default.nix index 0aa3f79b001dd..7ed05ad263f57 100644 --- a/pkgs/applications/graphics/apitrace/default.nix +++ b/pkgs/applications/graphics/apitrace/default.nix @@ -86,10 +86,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/applications/graphics/apngasm/2.nix b/pkgs/applications/graphics/apngasm/2.nix index 7a7084cc17ce8..a7de5d34b1b53 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; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/graphics/apngasm/default.nix b/pkgs/applications/graphics/apngasm/default.nix index f915d88d3f2a1..f8a760a0616de 100644 --- a/pkgs/applications/graphics/apngasm/default.nix +++ b/pkgs/applications/graphics/apngasm/default.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { description = "Create an APNG from multiple PNG files"; homepage = "https://github.com/apngasm/apngasm"; - license = licenses.zlib; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; mainProgram = "apngasm"; }; diff --git a/pkgs/applications/graphics/c3d/default.nix b/pkgs/applications/graphics/c3d/default.nix index dac235b9995e3..1ae939d701165 100644 --- a/pkgs/applications/graphics/c3d/default.nix +++ b/pkgs/applications/graphics/c3d/default.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { 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/applications/graphics/cloudcompare/default.nix b/pkgs/applications/graphics/cloudcompare/default.nix index 39ca9122d13ad..ba5cfa6649793 100644 --- a/pkgs/applications/graphics/cloudcompare/default.nix +++ b/pkgs/applications/graphics/cloudcompare/default.nix @@ -150,12 +150,12 @@ 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/applications/graphics/drawio/headless.nix b/pkgs/applications/graphics/drawio/headless.nix index b7880e791fa61..c731fb9bb1cf1 100644 --- a/pkgs/applications/graphics/drawio/headless.nix +++ b/pkgs/applications/graphics/drawio/headless.nix @@ -30,14 +30,14 @@ writeTextFile { XDG_CONFIG_HOME="$tmpdir" ${xvfb-run}/bin/xvfb-run --auto-display ${drawio}/bin/drawio $@ ''; - meta = with lib; { + meta = { description = "xvfb wrapper around drawio"; longDescription = '' A wrapper around drawio for running in headless environments. Runs drawio under xvfb-run, with configuration going to a temporary directory. ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ qyliss tfc ]; diff --git a/pkgs/applications/graphics/emulsion/default.nix b/pkgs/applications/graphics/emulsion/default.nix index 03032dd6074bf..cb33e4998d12b 100644 --- a/pkgs/applications/graphics/emulsion/default.nix +++ b/pkgs/applications/graphics/emulsion/default.nix @@ -72,12 +72,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/applications/graphics/evilpixie/default.nix b/pkgs/applications/graphics/evilpixie/default.nix index 0c7bb0023cbf1..8cf39d2d7dc8a 100644 --- a/pkgs/applications/graphics/evilpixie/default.nix +++ b/pkgs/applications/graphics/evilpixie/default.nix @@ -39,14 +39,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/applications/graphics/feh/default.nix b/pkgs/applications/graphics/feh/default.nix index fcc62660dc0f4..846db9a9b84b7 100644 --- a/pkgs/applications/graphics/feh/default.nix +++ b/pkgs/applications/graphics/feh/default.nix @@ -66,18 +66,18 @@ 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 globin willibutz ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "feh"; }; }) diff --git a/pkgs/applications/graphics/fontmatrix/default.nix b/pkgs/applications/graphics/fontmatrix/default.nix index 04f0ff9bf3588..65965a07368ab 100644 --- a/pkgs/applications/graphics/fontmatrix/default.nix +++ b/pkgs/applications/graphics/fontmatrix/default.nix @@ -25,10 +25,10 @@ mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Fontmatrix is a 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/applications/graphics/foxotron/default.nix b/pkgs/applications/graphics/foxotron/default.nix index f25c1064a7acc..002e2364d20ae 100644 --- a/pkgs/applications/graphics/foxotron/default.nix +++ b/pkgs/applications/graphics/foxotron/default.nix @@ -110,16 +110,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/applications/graphics/gimp/default.nix b/pkgs/applications/graphics/gimp/default.nix index e5e552f299f98..ae4279acd8eda 100644 --- a/pkgs/applications/graphics/gimp/default.nix +++ b/pkgs/applications/graphics/gimp/default.nix @@ -215,12 +215,12 @@ stdenv.mkDerivation (finalAttrs: { python2Support = withPython; }; - meta = with lib; { + meta = { description = "GNU Image Manipulation Program"; homepage = "https://www.gimp.org/"; - maintainers = with maintainers; [ jtojnar ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ jtojnar ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; mainProgram = "gimp"; }; }) diff --git a/pkgs/applications/graphics/glabels-qt/default.nix b/pkgs/applications/graphics/glabels-qt/default.nix index 6865060f2fc24..19980acc8cd1f 100644 --- a/pkgs/applications/graphics/glabels-qt/default.nix +++ b/pkgs/applications/graphics/glabels-qt/default.nix @@ -22,11 +22,11 @@ mkDerivation { 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/applications/graphics/gnome-obfuscate/default.nix b/pkgs/applications/graphics/gnome-obfuscate/default.nix index 5c8a61a5d25cb..b13628bfcb5f4 100644 --- a/pkgs/applications/graphics/gnome-obfuscate/default.nix +++ b/pkgs/applications/graphics/gnome-obfuscate/default.nix @@ -75,12 +75,12 @@ 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 ] ++ lib.teams.gnome-circle.members; + maintainers = with lib.maintainers; [ fgaz ] ++ lib.teams.gnome-circle.members; }; }) diff --git a/pkgs/applications/graphics/hdrmerge/default.nix b/pkgs/applications/graphics/hdrmerge/default.nix index 1c8eb72562685..3c806bdf0667a 100644 --- a/pkgs/applications/graphics/hdrmerge/default.nix +++ b/pkgs/applications/graphics/hdrmerge/default.nix @@ -70,12 +70,12 @@ 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/applications/graphics/image_optim/default.nix b/pkgs/applications/graphics/image_optim/default.nix index cf3f813906c61..8dc2c6ff19919 100644 --- a/pkgs/applications/graphics/image_optim/default.nix +++ b/pkgs/applications/graphics/image_optim/default.nix @@ -75,7 +75,7 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "image_optim"; - meta = with lib; { + meta = { description = "Optimize images using multiple utilities"; longDescription = '' Command line tool and ruby interface to optimize (lossless compress, @@ -84,12 +84,12 @@ bundlerApp { jpegtran, optipng, oxipng, pngcrush, pngout, pngquant, svgo) ''; homepage = "https://github.com/toy/image_optim"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ srghma nicknovitski ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "image_optim"; }; } diff --git a/pkgs/applications/graphics/imgp/default.nix b/pkgs/applications/graphics/imgp/default.nix index 3855d3e16ba5f..7806aeec3beb7 100644 --- a/pkgs/applications/graphics/imgp/default.nix +++ b/pkgs/applications/graphics/imgp/default.nix @@ -35,12 +35,12 @@ 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/applications/graphics/imlibsetroot/default.nix b/pkgs/applications/graphics/imlibsetroot/default.nix index 81976a3160c94..d8612f8669640 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/applytransforms/default.nix b/pkgs/applications/graphics/inkscape/extensions/applytransforms/default.nix index 0405b961605ce..85a45e1826bad 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 084edb23f2db4..0ca4e948bd83d 100644 --- a/pkgs/applications/graphics/inkscape/extensions/silhouette/default.nix +++ b/pkgs/applications/graphics/inkscape/extensions/silhouette/default.nix @@ -82,11 +82,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 669ae89edd432..df138e5e0359a 100644 --- a/pkgs/applications/graphics/inkscape/extensions/textext/default.nix +++ b/pkgs/applications/graphics/inkscape/extensions/textext/default.nix @@ -116,11 +116,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/kgraphviewer/default.nix b/pkgs/applications/graphics/kgraphviewer/default.nix index b387a1a8d918c..54bba9e051124 100644 --- a/pkgs/applications/graphics/kgraphviewer/default.nix +++ b/pkgs/applications/graphics/kgraphviewer/default.nix @@ -50,11 +50,11 @@ 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/applications/graphics/krita/generic.nix b/pkgs/applications/graphics/krita/generic.nix index 1a1ba8e115fd5..5403629ad8ac8 100644 --- a/pkgs/applications/graphics/krita/generic.nix +++ b/pkgs/applications/graphics/krita/generic.nix @@ -166,16 +166,16 @@ mkDerivation rec { "-DBUILD_KRITA_QT_DESIGNER_PLUGINS=ON" ]; - meta = with lib; { + meta = { description = "Free and open source painting application"; homepage = "https://krita.org/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ abbradar sifmelcara nek0 ]; mainProgram = "krita"; - platforms = platforms.linux; - license = licenses.gpl3Only; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Only; }; } diff --git a/pkgs/applications/graphics/ktikz/default.nix b/pkgs/applications/graphics/ktikz/default.nix index c267b563d974a..7cb699e1d1389 100644 --- a/pkgs/applications/graphics/ktikz/default.nix +++ b/pkgs/applications/graphics/ktikz/default.nix @@ -20,13 +20,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/applications/graphics/leocad/default.nix b/pkgs/applications/graphics/leocad/default.nix index 5df01fd9052b9..0ad0c257302f9 100644 --- a/pkgs/applications/graphics/leocad/default.nix +++ b/pkgs/applications/graphics/leocad/default.nix @@ -57,12 +57,12 @@ mkDerivation rec { "--set-default LEOCAD_LIB ${parts}" ]; - meta = with lib; { + meta = { description = "CAD program for creating virtual LEGO models"; mainProgram = "leocad"; homepage = "https://www.leocad.org/"; - 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/applications/graphics/luminance-hdr/default.nix b/pkgs/applications/graphics/luminance-hdr/default.nix index e12bca0374615..33858c91add01 100644 --- a/pkgs/applications/graphics/luminance-hdr/default.nix +++ b/pkgs/applications/graphics/luminance-hdr/default.nix @@ -64,11 +64,11 @@ 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; - maintainers = [ maintainers.hrdinka ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.hrdinka ]; }; } diff --git a/pkgs/applications/graphics/nufraw/default.nix b/pkgs/applications/graphics/nufraw/default.nix index 58624aa5199d6..5dcb497f630b2 100644 --- a/pkgs/applications/graphics/nufraw/default.nix +++ b/pkgs/applications/graphics/nufraw/default.nix @@ -81,7 +81,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 = '' @@ -90,8 +90,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/openboard/default.nix b/pkgs/applications/graphics/openboard/default.nix index b07a13beb2b4a..5dadadb410b13 100644 --- a/pkgs/applications/graphics/openboard/default.nix +++ b/pkgs/applications/graphics/openboard/default.nix @@ -148,15 +148,15 @@ stdenv.mkDerivation (finalAttrs: { "''${qtWrapperArgs[@]}" ''; - 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/applications/graphics/photoflare/default.nix b/pkgs/applications/graphics/photoflare/default.nix index 75645349377b3..5fbc39ae2e298 100644 --- a/pkgs/applications/graphics/photoflare/default.nix +++ b/pkgs/applications/graphics/photoflare/default.nix @@ -32,12 +32,12 @@ 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/applications/graphics/phototonic/default.nix b/pkgs/applications/graphics/phototonic/default.nix index fca4490d34489..d30065dfe8b5a 100644 --- a/pkgs/applications/graphics/phototonic/default.nix +++ b/pkgs/applications/graphics/phototonic/default.nix @@ -41,12 +41,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/applications/graphics/processing/default.nix b/pkgs/applications/graphics/processing/default.nix index 2bf10171d8017..37f6c2259a2c2 100644 --- a/pkgs/applications/graphics/processing/default.nix +++ b/pkgs/applications/graphics/processing/default.nix @@ -136,14 +136,14 @@ stdenv.mkDerivation rec { runHook postInstall ''; - 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/applications/graphics/qimgv/default.nix b/pkgs/applications/graphics/qimgv/default.nix index 6bd3fabee5e13..4222705fae4da 100644 --- a/pkgs/applications/graphics/qimgv/default.nix +++ b/pkgs/applications/graphics/qimgv/default.nix @@ -54,12 +54,12 @@ mkDerivation rec { "--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/applications/graphics/qiv/default.nix b/pkgs/applications/graphics/qiv/default.nix index 311ed40220f37..b0c0b9fbede29 100644 --- a/pkgs/applications/graphics/qiv/default.nix +++ b/pkgs/applications/graphics/qiv/default.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation (rec { substituteInPlace Makefile --replace /share/share/ /share/ ''; - meta = with lib; { + meta = { description = "Quick image viewer"; homepage = "http://spiegl.de/qiv/"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; mainProgram = "qiv"; }; }) diff --git a/pkgs/applications/graphics/qosmic/default.nix b/pkgs/applications/graphics/qosmic/default.nix index 3643a9e7af4f0..950e3162b641b 100644 --- a/pkgs/applications/graphics/qosmic/default.nix +++ b/pkgs/applications/graphics/qosmic/default.nix @@ -75,12 +75,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/applications/graphics/qscreenshot/default.nix b/pkgs/applications/graphics/qscreenshot/default.nix index 3120503b07391..de69f0585b63f 100644 --- a/pkgs/applications/graphics/qscreenshot/default.nix +++ b/pkgs/applications/graphics/qscreenshot/default.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { qtbase qtx11extras ]; - 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 ]; }; } diff --git a/pkgs/applications/graphics/qvge/default.nix b/pkgs/applications/graphics/qvge/default.nix index 688f2f0716d66..e86dc8247f848 100644 --- a/pkgs/applications/graphics/qvge/default.nix +++ b/pkgs/applications/graphics/qvge/default.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { buildInputs = if stdenv.hostPlatform.isDarwin then [ qtsvg ] else [ qtx11extras ]; - meta = with lib; { + meta = { description = "Qt Visual Graph Editor"; mainProgram = "qvgeapp"; homepage = "https://github.com/ArsMasiuk/qvge"; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/graphics/qview/default.nix b/pkgs/applications/graphics/qview/default.nix index eb2f81c939845..84426d71a7f94 100644 --- a/pkgs/applications/graphics/qview/default.nix +++ b/pkgs/applications/graphics/qview/default.nix @@ -33,12 +33,12 @@ mkDerivation rec { qtsvg ] ++ lib.optionals x11Support [ qtx11extras ]; - meta = with lib; { + meta = { description = "Practical and minimal image viewer"; mainProgram = "qview"; homepage = "https://interversehq.com/qview/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ acowley ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ acowley ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/graphics/rapid-photo-downloader/default.nix b/pkgs/applications/graphics/rapid-photo-downloader/default.nix index f7a2685169ca8..d5fee7aab9a98 100644 --- a/pkgs/applications/graphics/rapid-photo-downloader/default.nix +++ b/pkgs/applications/graphics/rapid-photo-downloader/default.nix @@ -118,12 +118,12 @@ mkDerivationWith python3Packages.buildPythonApplication rec { ) ''; - meta = with lib; { + meta = { description = "Photo and video importer for cameras, phones, and memory cards"; mainProgram = "rapid-photo-downloader"; homepage = "https://www.damonlynch.net/rapid/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/graphics/sane/frontends.nix b/pkgs/applications/graphics/sane/frontends.nix index 280b0b8463684..68c5971460c53 100644 --- a/pkgs/applications/graphics/sane/frontends.nix +++ b/pkgs/applications/graphics/sane/frontends.nix @@ -70,10 +70,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/sane/xsane.nix b/pkgs/applications/graphics/sane/xsane.nix index ab07837bc678e..c2dd3f1a56e4c 100644 --- a/pkgs/applications/graphics/sane/xsane.nix +++ b/pkgs/applications/graphics/sane/xsane.nix @@ -127,12 +127,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/applications/graphics/scantailor/advanced.nix b/pkgs/applications/graphics/scantailor/advanced.nix index 954ddb4f407c2..f2499d2bde1b5 100644 --- a/pkgs/applications/graphics/scantailor/advanced.nix +++ b/pkgs/applications/graphics/scantailor/advanced.nix @@ -34,12 +34,12 @@ mkDerivation rec { 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 b7bdc609f61c8..3043cfec630ba 100644 --- a/pkgs/applications/graphics/scantailor/universal.nix +++ b/pkgs/applications/graphics/scantailor/universal.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { 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/smartdeblur/default.nix b/pkgs/applications/graphics/smartdeblur/default.nix index a1c7dee5f8428..b9d4879d11f6c 100644 --- a/pkgs/applications/graphics/smartdeblur/default.nix +++ b/pkgs/applications/graphics/smartdeblur/default.nix @@ -38,12 +38,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/applications/graphics/sxiv/default.nix b/pkgs/applications/graphics/sxiv/default.nix index e40a1e0b5805c..35db70969a93e 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/veusz/default.nix b/pkgs/applications/graphics/veusz/default.nix index 4622f87d9312c..4efdc43249944 100644 --- a/pkgs/applications/graphics/veusz/default.nix +++ b/pkgs/applications/graphics/veusz/default.nix @@ -61,12 +61,12 @@ python3Packages.buildPythonApplication rec { QT_QPA_PLATFORM=minimal tests/runselftest.py ''; - meta = with lib; { + meta = { description = "Scientific plotting and graphing program with a GUI"; mainProgram = "veusz"; homepage = "https://veusz.github.io/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ laikq ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ laikq ]; }; } diff --git a/pkgs/applications/graphics/weylus/default.nix b/pkgs/applications/graphics/weylus/default.nix index 3aa61ec06d308..ad0d934379c44 100644 --- a/pkgs/applications/graphics/weylus/default.nix +++ b/pkgs/applications/graphics/weylus/default.nix @@ -110,12 +110,12 @@ rustPlatform.buildRustPackage rec { ]; }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; 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 ]; - maintainers = with maintainers; [ lom ]; + license = with lib.licenses; [ agpl3Only ]; + maintainers = with lib.maintainers; [ lom ]; }; } diff --git a/pkgs/applications/graphics/zgv/default.nix b/pkgs/applications/graphics/zgv/default.nix index 457d233176b9f..6f7bd9e125885 100644 --- a/pkgs/applications/graphics/zgv/default.nix +++ b/pkgs/applications/graphics/zgv/default.nix @@ -49,12 +49,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/kde/alligator.nix b/pkgs/applications/kde/alligator.nix index 305f39bd712f7..a48ee1e0818bd 100644 --- a/pkgs/applications/kde/alligator.nix +++ b/pkgs/applications/kde/alligator.nix @@ -32,13 +32,13 @@ mkDerivation rec { syndication ]; - meta = with lib; { + meta = { description = "RSS reader made with kirigami"; mainProgram = "alligator"; homepage = "https://invent.kde.org/plasma-mobile/alligator"; # https://invent.kde.org/plasma-mobile/alligator/-/commit/db30f159c4700244532b17a260deb95551045b7a # * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL - license = with licenses; [ + license = with lib.licenses; [ gpl2Only gpl3Only ]; diff --git a/pkgs/applications/kde/analitza.nix b/pkgs/applications/kde/analitza.nix index 74d1b4f816f01..0e7f80f628ed0 100644 --- a/pkgs/applications/kde/analitza.nix +++ b/pkgs/applications/kde/analitza.nix @@ -26,14 +26,14 @@ mkDerivation { qtsvg ]; - meta = with lib; { + meta = { description = "Front end to powerful mathematics and statistics packages"; homepage = "https://cantor.kde.org/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Only lgpl2Only fdl12Only ]; - maintainers = with maintainers; [ hqurve ]; + maintainers = with lib.maintainers; [ hqurve ]; }; } diff --git a/pkgs/applications/kde/angelfish.nix b/pkgs/applications/kde/angelfish.nix index 22b24f112ce98..fc1a92db0ab64 100644 --- a/pkgs/applications/kde/angelfish.nix +++ b/pkgs/applications/kde/angelfish.nix @@ -74,10 +74,10 @@ mkDerivation rec { qtwebengine ]; - meta = with lib; { + meta = { description = "Web browser for Plasma Mobile"; homepage = "https://invent.kde.org/plasma-mobile/angelfish"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/applications/kde/arianna.nix b/pkgs/applications/kde/arianna.nix index 79cb3670895fb..56a3bdf4d392e 100644 --- a/pkgs/applications/kde/arianna.nix +++ b/pkgs/applications/kde/arianna.nix @@ -52,12 +52,12 @@ mkDerivation { qqc2-desktop-style ]; - meta = with lib; { + meta = { description = "Epub Reader for Plasma and Plasma Mobile"; mainProgram = "arianna"; homepage = "https://invent.kde.org/graphics/arianna"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ Thra11 ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ Thra11 ]; }; } diff --git a/pkgs/applications/kde/audiotube.nix b/pkgs/applications/kde/audiotube.nix index 9bd199d99296b..4e5f05bada580 100644 --- a/pkgs/applications/kde/audiotube.nix +++ b/pkgs/applications/kde/audiotube.nix @@ -64,12 +64,12 @@ mkDerivation rec { ''; dontWrapGApps = true; - meta = with lib; { + meta = { description = "Client for YouTube Music"; mainProgram = "audiotube"; homepage = "https://invent.kde.org/plasma-mobile/audiotube"; # https://invent.kde.org/plasma-mobile/audiotube/-/tree/c503d0607a3386112beaa9cf990ab85fe33ef115/LICENSES - license = with licenses; [ + license = with lib.licenses; [ bsd2 cc0 gpl2Only diff --git a/pkgs/applications/kde/bovo.nix b/pkgs/applications/kde/bovo.nix index b441234d65fe9..919e3239399e8 100644 --- a/pkgs/applications/kde/bovo.nix +++ b/pkgs/applications/kde/bovo.nix @@ -9,7 +9,7 @@ mkDerivation { pname = "bovo"; - meta = with lib; { + meta = { homepage = "https://apps.kde.org/bovo/"; description = "Five in a row application"; mainProgram = "bovo"; @@ -18,9 +18,9 @@ mkDerivation { where the opponents alternate in placing their respective pictogram on the game board. (Also known as: Connect Five, Five in a row, X and O, Naughts and Crosses) ''; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/calindori.nix b/pkgs/applications/kde/calindori.nix index 76bf9a806f19a..23ae6e6519709 100644 --- a/pkgs/applications/kde/calindori.nix +++ b/pkgs/applications/kde/calindori.nix @@ -38,10 +38,10 @@ mkDerivation rec { qtquickcontrols2 ]; - meta = with lib; { + meta = { description = "Calendar for Plasma Mobile"; homepage = "https://invent.kde.org/plasma-mobile/calindori"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/applications/kde/colord-kde.nix b/pkgs/applications/kde/colord-kde.nix index 02fe456061d77..53ac41c8ad48f 100644 --- a/pkgs/applications/kde/colord-kde.nix +++ b/pkgs/applications/kde/colord-kde.nix @@ -48,9 +48,9 @@ mkDerivation { qtx11extras ]; - meta = with lib; { + meta = { homepage = "https://projects.kde.org/projects/playground/graphics/colord-kde"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ ttuegel ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ttuegel ]; }; } diff --git a/pkgs/applications/kde/elisa.nix b/pkgs/applications/kde/elisa.nix index f920f4811ae41..e3f0ce71e52cc 100644 --- a/pkgs/applications/kde/elisa.nix +++ b/pkgs/applications/kde/elisa.nix @@ -46,11 +46,11 @@ mkDerivation { qtwebsockets ]; - meta = with lib; { + meta = { homepage = "https://apps.kde.org/elisa/"; description = "Simple media player for KDE"; mainProgram = "elisa"; - license = licenses.gpl3; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/applications/kde/falkon.nix b/pkgs/applications/kde/falkon.nix index 0a630f0cfe64c..de2755d5a387f 100644 --- a/pkgs/applications/kde/falkon.nix +++ b/pkgs/applications/kde/falkon.nix @@ -52,12 +52,12 @@ mkDerivation rec { wrapQtAppsHook ]; - meta = with lib; { + meta = { description = "QtWebEngine based cross-platform web browser"; mainProgram = "falkon"; homepage = "https://www.falkon.org"; - license = licenses.gpl3; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/kde/ghostwriter.nix b/pkgs/applications/kde/ghostwriter.nix index 3541de3df6c41..27f4171417592 100644 --- a/pkgs/applications/kde/ghostwriter.nix +++ b/pkgs/applications/kde/ghostwriter.nix @@ -42,13 +42,13 @@ mkDerivation { ]) ]; - meta = with lib; { + meta = { description = "Cross-platform, aesthetic, distraction-free Markdown editor"; mainProgram = "ghostwriter"; homepage = "https://ghostwriter.kde.org/"; changelog = "https://invent.kde.org/office/ghostwriter/-/blob/master/CHANGELOG.md"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dotlambda erictapen ]; diff --git a/pkgs/applications/kde/granatier.nix b/pkgs/applications/kde/granatier.nix index 35683214a721b..b363336ed5752 100644 --- a/pkgs/applications/kde/granatier.nix +++ b/pkgs/applications/kde/granatier.nix @@ -9,13 +9,13 @@ mkDerivation { pname = "granatier"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.granatier"; description = "Clone of the classic Bomberman game"; mainProgram = "granatier"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/juk.nix b/pkgs/applications/kde/juk.nix index 4e887562b0703..adb989788249b 100644 --- a/pkgs/applications/kde/juk.nix +++ b/pkgs/applications/kde/juk.nix @@ -28,12 +28,12 @@ mkDerivation { taglib ]; - meta = with lib; { + meta = { homepage = "https://invent.kde.org/multimedia/juk"; description = "Audio jukebox app, supporting collections of MP3, Ogg Vorbis and FLAC audio files"; mainProgram = "juk"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ zendo ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ zendo ]; }; } diff --git a/pkgs/applications/kde/kaccounts-integration.nix b/pkgs/applications/kde/kaccounts-integration.nix index ef9b3deb2d193..76c07decbca7a 100644 --- a/pkgs/applications/kde/kaccounts-integration.nix +++ b/pkgs/applications/kde/kaccounts-integration.nix @@ -13,12 +13,12 @@ mkDerivation { pname = "kaccounts-integration"; - meta = with lib; { + meta = { homepage = "https://community.kde.org/KTp/Setting_up_KAccounts"; description = "Online accounts integration"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kaccounts-providers.nix b/pkgs/applications/kde/kaccounts-providers.nix index 3e265c3767783..669e66bd1a853 100644 --- a/pkgs/applications/kde/kaccounts-providers.nix +++ b/pkgs/applications/kde/kaccounts-providers.nix @@ -18,12 +18,12 @@ mkDerivation { pname = "kaccounts-providers"; - meta = with lib; { + meta = { homepage = "https://community.kde.org/KTp/Setting_up_KAccounts"; description = "Online account providers"; - maintainers = with maintainers; [ kennyballou ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ kennyballou ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kalk.nix b/pkgs/applications/kde/kalk.nix index 688c3de271128..08aad6eb47ffe 100644 --- a/pkgs/applications/kde/kalk.nix +++ b/pkgs/applications/kde/kalk.nix @@ -42,11 +42,11 @@ mkDerivation rec { qtquickcontrols2 ]; - meta = with lib; { + meta = { description = "Calculator built with kirigami"; mainProgram = "kalk"; homepage = "https://invent.kde.org/plasma-mobile/kalk"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/applications/kde/kalzium.nix b/pkgs/applications/kde/kalzium.nix index 8565fc6d8d722..48012fed26ca6 100644 --- a/pkgs/applications/kde/kalzium.nix +++ b/pkgs/applications/kde/kalzium.nix @@ -14,13 +14,13 @@ mkDerivation { pname = "kalzium"; - meta = with lib; { + meta = { homepage = "https://edu.kde.org/kalzium/"; description = "Program that shows you the Periodic Table of Elements"; mainProgram = "kalzium"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kapman.nix b/pkgs/applications/kde/kapman.nix index 2d736f974cdc0..9d50d620725b5 100644 --- a/pkgs/applications/kde/kapman.nix +++ b/pkgs/applications/kde/kapman.nix @@ -10,13 +10,13 @@ mkDerivation { pname = "kapman"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.kapman"; description = "Clone of the well known game Pac-Man"; mainProgram = "kapman"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kapptemplate.nix b/pkgs/applications/kde/kapptemplate.nix index 278e14a244279..cd9356e282718 100644 --- a/pkgs/applications/kde/kapptemplate.nix +++ b/pkgs/applications/kde/kapptemplate.nix @@ -20,12 +20,12 @@ mkDerivation { qtbase ]; - meta = with lib; { + meta = { description = "KDE App Code Template Generator"; mainProgram = "kapptemplate"; - license = licenses.gpl2; + license = lib.licenses.gpl2; homepage = "https://kde.org/applications/en/development/org.kde.kapptemplate"; - maintainers = [ maintainers.shamilton ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.shamilton ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/kde/kasts.nix b/pkgs/applications/kde/kasts.nix index 7ac724c761c01..ce04565e33896 100644 --- a/pkgs/applications/kde/kasts.nix +++ b/pkgs/applications/kde/kasts.nix @@ -63,12 +63,12 @@ mkDerivation rec { ''; dontWrapGApps = true; - meta = with lib; { + meta = { description = "Mobile podcast application"; mainProgram = "kasts"; homepage = "https://apps.kde.org/kasts/"; # https://invent.kde.org/plasma-mobile/kasts/-/tree/master/LICENSES - license = with licenses; [ + license = with lib.licenses; [ bsd2 cc-by-sa-40 cc0 diff --git a/pkgs/applications/kde/katomic.nix b/pkgs/applications/kde/katomic.nix index b6b39e04365c5..ae09f58210375 100644 --- a/pkgs/applications/kde/katomic.nix +++ b/pkgs/applications/kde/katomic.nix @@ -11,13 +11,13 @@ mkDerivation { pname = "katomic"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.katomic"; description = "Fun educational game built around molecular geometry"; mainProgram = "katomic"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kblackbox.nix b/pkgs/applications/kde/kblackbox.nix index 167a2d833011f..c1fca48a8e49c 100644 --- a/pkgs/applications/kde/kblackbox.nix +++ b/pkgs/applications/kde/kblackbox.nix @@ -10,13 +10,13 @@ mkDerivation { pname = "kblackbox"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.kblackbox"; description = "Game of hide and seek played on a grid of boxes"; mainProgram = "kblackbox"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kblocks.nix b/pkgs/applications/kde/kblocks.nix index 80107c310a395..642d2a1d09590 100644 --- a/pkgs/applications/kde/kblocks.nix +++ b/pkgs/applications/kde/kblocks.nix @@ -10,13 +10,13 @@ mkDerivation { pname = "kblocks"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.kblocks"; description = "Classic falling blocks game"; mainProgram = "kblocks"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kbounce.nix b/pkgs/applications/kde/kbounce.nix index 531f703489f90..c5e7afbff6013 100644 --- a/pkgs/applications/kde/kbounce.nix +++ b/pkgs/applications/kde/kbounce.nix @@ -11,13 +11,13 @@ mkDerivation { pname = "kbounce"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.kbounce"; description = "Single player arcade game with the elements of puzzle"; mainProgram = "kbounce"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kclock.nix b/pkgs/applications/kde/kclock.nix index 2f135727ba646..9523a8b6b103d 100644 --- a/pkgs/applications/kde/kclock.nix +++ b/pkgs/applications/kde/kclock.nix @@ -38,10 +38,10 @@ mkDerivation rec { qtquickcontrols2 ]; - meta = with lib; { + meta = { description = "Clock app for plasma mobile"; homepage = "https://invent.kde.org/plasma-mobile/kclock"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/applications/kde/kdeconnect-kde.nix b/pkgs/applications/kde/kdeconnect-kde.nix index 736a25ec58fd5..b75480e11b833 100644 --- a/pkgs/applications/kde/kdeconnect-kde.nix +++ b/pkgs/applications/kde/kdeconnect-kde.nix @@ -78,10 +78,10 @@ mkDerivation { "--prefix PATH : ${lib.makeBinPath [ sshfs ]}" ]; - meta = with lib; { + meta = { description = "KDE Connect provides several features to integrate your phone and your computer"; homepage = "https://community.kde.org/KDEConnect"; - license = with licenses; [ gpl2 ]; + license = with lib.licenses; [ gpl2 ]; mainProgram = "kdeconnect-app"; }; } diff --git a/pkgs/applications/kde/kdevelop/kdev-php.nix b/pkgs/applications/kde/kdevelop/kdev-php.nix index 5edb607cb40ee..a5c5e992e00d6 100644 --- a/pkgs/applications/kde/kdevelop/kdev-php.nix +++ b/pkgs/applications/kde/kdevelop/kdev-php.nix @@ -25,11 +25,11 @@ mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { - maintainers = [ maintainers.aanderse ]; - platforms = platforms.linux; + meta = { + maintainers = [ lib.maintainers.aanderse ]; + platforms = lib.platforms.linux; description = "PHP support for KDevelop"; homepage = "https://www.kdevelop.org"; - license = [ licenses.gpl2 ]; + license = [ lib.licenses.gpl2 ]; }; } diff --git a/pkgs/applications/kde/kdevelop/kdev-python.nix b/pkgs/applications/kde/kdevelop/kdev-python.nix index 9c033837b0a81..ea8337c4cb265 100644 --- a/pkgs/applications/kde/kdevelop/kdev-python.nix +++ b/pkgs/applications/kde/kdevelop/kdev-python.nix @@ -32,11 +32,11 @@ mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { - maintainers = [ maintainers.aanderse ]; - platforms = platforms.linux; + meta = { + maintainers = [ lib.maintainers.aanderse ]; + platforms = lib.platforms.linux; description = "Python support for KDevelop"; homepage = "https://www.kdevelop.org"; - license = [ licenses.gpl2 ]; + license = [ lib.licenses.gpl2 ]; }; } diff --git a/pkgs/applications/kde/kdevelop/kdevelop-pg-qt.nix b/pkgs/applications/kde/kdevelop/kdevelop-pg-qt.nix index f164e3f2e96f1..66ac86234f12e 100644 --- a/pkgs/applications/kde/kdevelop/kdevelop-pg-qt.nix +++ b/pkgs/applications/kde/kdevelop/kdevelop-pg-qt.nix @@ -27,9 +27,9 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { - maintainers = [ maintainers.ambrop72 ]; - platforms = platforms.linux; + meta = { + maintainers = [ lib.maintainers.ambrop72 ]; + platforms = lib.platforms.linux; description = "Parser-generator from KDevplatform"; mainProgram = "kdev-pg-qt"; longDescription = '' diff --git a/pkgs/applications/kde/kdevelop/kdevelop.nix b/pkgs/applications/kde/kdevelop/kdevelop.nix index 7c99e4e23c300..e95f22c9346a9 100644 --- a/pkgs/applications/kde/kdevelop/kdevelop.nix +++ b/pkgs/applications/kde/kdevelop/kdevelop.nix @@ -125,9 +125,9 @@ mkDerivation rec { sed -E -i "$kdev_fixup_sed" "$out/bin/.kdevelop!-wrapped" ''; - meta = with lib; { - maintainers = [ maintainers.ambrop72 ]; - platforms = platforms.linux; + meta = { + maintainers = [ lib.maintainers.ambrop72 ]; + platforms = lib.platforms.linux; description = "KDE official IDE"; longDescription = '' A free, opensource IDE (Integrated Development Environment) @@ -137,7 +137,7 @@ mkDerivation rec { libraries and is under development since 1998. ''; homepage = "https://www.kdevelop.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus ]; diff --git a/pkgs/applications/kde/kdiamond.nix b/pkgs/applications/kde/kdiamond.nix index 8415deb26180f..842f53f78fa12 100644 --- a/pkgs/applications/kde/kdiamond.nix +++ b/pkgs/applications/kde/kdiamond.nix @@ -12,13 +12,13 @@ mkDerivation { pname = "kdiamond"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.kdiamond"; description = "Single player puzzle game"; mainProgram = "kdiamond"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/keditbookmarks.nix b/pkgs/applications/kde/keditbookmarks.nix index f5fa35591c80b..b3c0b3fc8e230 100644 --- a/pkgs/applications/kde/keditbookmarks.nix +++ b/pkgs/applications/kde/keditbookmarks.nix @@ -19,15 +19,15 @@ mkDerivation { kparts kwindowsystem ]; - meta = with lib; { + meta = { homepage = "http://www.kde.org"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus bsd3 ]; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/kde/keysmith.nix b/pkgs/applications/kde/keysmith.nix index 427d708f99224..7d1101afc9e1a 100644 --- a/pkgs/applications/kde/keysmith.nix +++ b/pkgs/applications/kde/keysmith.nix @@ -32,12 +32,12 @@ mkDerivation rec { qtquickcontrols2 ]; - meta = with lib; { + meta = { description = "OTP client for Plasma Mobile and Desktop"; mainProgram = "keysmith"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://github.com/KDE/keysmith"; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/kde/kget.nix b/pkgs/applications/kde/kget.nix index d086b193cf80e..3451c53f55b05 100644 --- a/pkgs/applications/kde/kget.nix +++ b/pkgs/applications/kde/kget.nix @@ -44,11 +44,11 @@ mkDerivation { kxmlgui ]; - meta = with lib; { + meta = { homepage = "https://apps.kde.org/kget/"; description = "Download manager"; mainProgram = "kget"; - license = with licenses; [ gpl2 ]; - maintainers = with maintainers; [ peterhoeg ]; + license = with lib.licenses; [ gpl2 ]; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/applications/kde/khelpcenter.nix b/pkgs/applications/kde/khelpcenter.nix index 838705a3812ee..0227ab6c2e23a 100644 --- a/pkgs/applications/kde/khelpcenter.nix +++ b/pkgs/applications/kde/khelpcenter.nix @@ -40,10 +40,10 @@ mkDerivation { ) ''; - meta = with lib; { + meta = { homepage = "https://apps.kde.org/help/"; description = "Help center"; mainProgram = "khelpcenter"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/applications/kde/kigo.nix b/pkgs/applications/kde/kigo.nix index d6780752c5462..df0398946733f 100644 --- a/pkgs/applications/kde/kigo.nix +++ b/pkgs/applications/kde/kigo.nix @@ -11,13 +11,13 @@ mkDerivation { pname = "kigo"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.kigo"; description = "Open-source implementation of the popular Go game"; mainProgram = "kigo"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/killbots.nix b/pkgs/applications/kde/killbots.nix index dd3500be7ffaa..dadbf1740e985 100644 --- a/pkgs/applications/kde/killbots.nix +++ b/pkgs/applications/kde/killbots.nix @@ -10,13 +10,13 @@ mkDerivation { pname = "killbots"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.killbots"; description = "Game where you avoid robots"; mainProgram = "killbots"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kio-admin.nix b/pkgs/applications/kde/kio-admin.nix index 824ef5edb66ea..5299c09d7f987 100644 --- a/pkgs/applications/kde/kio-admin.nix +++ b/pkgs/applications/kde/kio-admin.nix @@ -19,11 +19,11 @@ mkDerivation { polkit-qt ]; - meta = with lib; { + meta = { description = "Manage files as administrator using the admin:// KIO protocol"; homepage = "https://invent.kde.org/system/kio-admin"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ k900 ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ k900 ]; }; } diff --git a/pkgs/applications/kde/kio-gdrive.nix b/pkgs/applications/kde/kio-gdrive.nix index 13076e58987cd..f7d5431e95cbf 100644 --- a/pkgs/applications/kde/kio-gdrive.nix +++ b/pkgs/applications/kde/kio-gdrive.nix @@ -14,12 +14,12 @@ mkDerivation { pname = "kio-gdrive"; - meta = with lib; { + meta = { homepage = "https://github.com/KDE/kio-gdrive"; description = "KIO slave for Google APIs"; - maintainers = with maintainers; [ kennyballou ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ kennyballou ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kirigami-gallery.nix b/pkgs/applications/kde/kirigami-gallery.nix index 34ce15ffc6d12..dfc5999db105e 100644 --- a/pkgs/applications/kde/kirigami-gallery.nix +++ b/pkgs/applications/kde/kirigami-gallery.nix @@ -24,11 +24,11 @@ mkDerivation { kitemmodels ]; - meta = with lib; { + meta = { homepage = "https://apps.kde.org/kirigami2.gallery/"; description = "View examples of Kirigami components"; mainProgram = "kirigami2gallery"; - license = licenses.lgpl2; - maintainers = with maintainers; [ shadowrz ]; + license = lib.licenses.lgpl2; + maintainers = with lib.maintainers; [ shadowrz ]; }; } diff --git a/pkgs/applications/kde/klettres.nix b/pkgs/applications/kde/klettres.nix index 6e87d56519850..29ef75a7c6066 100644 --- a/pkgs/applications/kde/klettres.nix +++ b/pkgs/applications/kde/klettres.nix @@ -11,13 +11,13 @@ mkDerivation { pname = "klettres"; - meta = with lib; { + meta = { homepage = "https://invent.kde.org/education/klettres"; description = "Application specially designed to help the user to learn an alphabet"; mainProgram = "klettres"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/klines.nix b/pkgs/applications/kde/klines.nix index 36d76211c81d2..b431adc718776 100644 --- a/pkgs/applications/kde/klines.nix +++ b/pkgs/applications/kde/klines.nix @@ -10,13 +10,13 @@ mkDerivation { pname = "klines"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.klines"; description = "Simple but highly addictive one player game"; mainProgram = "klines"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kmag.nix b/pkgs/applications/kde/kmag.nix index b12e36917623e..bc0397b8e62e7 100644 --- a/pkgs/applications/kde/kmag.nix +++ b/pkgs/applications/kde/kmag.nix @@ -9,13 +9,13 @@ mkDerivation { pname = "kmag"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/utilities/org.kde.kmag"; description = "Small Linux utility to magnify a part of the screen"; mainProgram = "kmag"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kmines.nix b/pkgs/applications/kde/kmines.nix index d527f9f0aff2b..a35ffdd9a1c58 100644 --- a/pkgs/applications/kde/kmines.nix +++ b/pkgs/applications/kde/kmines.nix @@ -12,13 +12,13 @@ mkDerivation { pname = "kmines"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.kmines"; description = "Classic Minesweeper game"; mainProgram = "kmines"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/knavalbattle.nix b/pkgs/applications/kde/knavalbattle.nix index dce8ac5f0515d..95ce277af08da 100644 --- a/pkgs/applications/kde/knavalbattle.nix +++ b/pkgs/applications/kde/knavalbattle.nix @@ -11,13 +11,13 @@ mkDerivation { pname = "knavalbattle"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.knavalbattle"; description = "Naval Battle is a ship sinking game"; mainProgram = "knavalbattle"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/knetwalk.nix b/pkgs/applications/kde/knetwalk.nix index 14c301c065218..5db2dc1e66891 100644 --- a/pkgs/applications/kde/knetwalk.nix +++ b/pkgs/applications/kde/knetwalk.nix @@ -10,13 +10,13 @@ mkDerivation { pname = "knetwalk"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.knetwalk"; description = "Single player logic game"; mainProgram = "knetwalk"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/knights.nix b/pkgs/applications/kde/knights.nix index a96486d62dbfc..f652e8dad987b 100644 --- a/pkgs/applications/kde/knights.nix +++ b/pkgs/applications/kde/knights.nix @@ -12,13 +12,13 @@ mkDerivation { pname = "knights"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.knights"; description = "Chess game"; mainProgram = "knights"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/knotes.nix b/pkgs/applications/kde/knotes.nix index cf8bf1658bb7d..210b743fe9ef7 100644 --- a/pkgs/applications/kde/knotes.nix +++ b/pkgs/applications/kde/knotes.nix @@ -77,9 +77,9 @@ mkDerivation { akonadi-search kcalendarcore ]; - meta = with lib; { + meta = { homepage = "https://apps.kde.org/knotes/"; description = "Popup notes"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/applications/kde/kollision.nix b/pkgs/applications/kde/kollision.nix index eced7728016e0..897c8bc7abc50 100644 --- a/pkgs/applications/kde/kollision.nix +++ b/pkgs/applications/kde/kollision.nix @@ -10,13 +10,13 @@ mkDerivation { pname = "kollision"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.kollision"; description = "Casual game"; mainProgram = "kollision"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kpmcore/default.nix b/pkgs/applications/kde/kpmcore/default.nix index c76603b174732..f959cdf4da7f4 100644 --- a/pkgs/applications/kde/kpmcore/default.nix +++ b/pkgs/applications/kde/kpmcore/default.nix @@ -36,16 +36,16 @@ mkDerivation rec { --replace /usr/share/polkit-1/actions/org.kde.kpmcore.externalcommand.policy $out/share/polkit-1/actions/org.kde.kpmcore.externalcommand.policy ''; - meta = with lib; { + meta = { description = "KDE Partition Manager core library"; homepage = "https://invent.kde.org/system/kpmcore"; - license = with licenses; [ + license = with lib.licenses; [ cc-by-40 cc0 gpl3Plus mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ peterhoeg oxalica ]; diff --git a/pkgs/applications/kde/kpublictransport.nix b/pkgs/applications/kde/kpublictransport.nix index 87cc7e65bc889..c34099a61a28f 100644 --- a/pkgs/applications/kde/kpublictransport.nix +++ b/pkgs/applications/kde/kpublictransport.nix @@ -9,8 +9,8 @@ mkDerivation { pname = "kpublictransport"; - meta = with lib; { - license = [ licenses.cc0 ]; + meta = { + license = [ lib.licenses.cc0 ]; maintainers = [ ]; }; nativeBuildInputs = [ extra-cmake-modules ]; diff --git a/pkgs/applications/kde/krdc.nix b/pkgs/applications/kde/krdc.nix index 2c6f4106ec53f..611d853a541a5 100644 --- a/pkgs/applications/kde/krdc.nix +++ b/pkgs/applications/kde/krdc.nix @@ -39,17 +39,17 @@ mkDerivation { wrapProgram $out/bin/krdc \ --prefix PATH : ${lib.makeBinPath [ freerdp ]} ''; - meta = with lib; { + meta = { homepage = "http://www.kde.org"; description = "Remote desktop client"; mainProgram = "krdc"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus bsd3 ]; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/kde/krecorder.nix b/pkgs/applications/kde/krecorder.nix index baae8e36eefd1..22d8e39aa476e 100644 --- a/pkgs/applications/kde/krecorder.nix +++ b/pkgs/applications/kde/krecorder.nix @@ -34,11 +34,11 @@ mkDerivation rec { qtquickcontrols2 ]; - meta = with lib; { + meta = { description = "Audio recorder for Plasma Mobile"; mainProgram = "krecorder"; homepage = "https://invent.kde.org/plasma-mobile/krecorder"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/applications/kde/kreversi.nix b/pkgs/applications/kde/kreversi.nix index 0afc0a8eef870..b5c76420897c0 100644 --- a/pkgs/applications/kde/kreversi.nix +++ b/pkgs/applications/kde/kreversi.nix @@ -8,13 +8,13 @@ mkDerivation { pname = "kreversi"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.kreversi"; description = "Simple one player strategy game played against the computer"; mainProgram = "kreversi"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/ksanecore.nix b/pkgs/applications/kde/ksanecore.nix index ae9ec9dfebcdd..c5e44dde30467 100644 --- a/pkgs/applications/kde/ksanecore.nix +++ b/pkgs/applications/kde/ksanecore.nix @@ -15,8 +15,8 @@ mkDerivation { ki18n sane-backends ]; - meta = with lib; { - license = licenses.gpl2; - maintainers = with maintainers; [ andrevmatos ]; + meta = { + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ andrevmatos ]; }; } diff --git a/pkgs/applications/kde/kshisen.nix b/pkgs/applications/kde/kshisen.nix index 3ec0dc535025b..8faac9afd2c03 100644 --- a/pkgs/applications/kde/kshisen.nix +++ b/pkgs/applications/kde/kshisen.nix @@ -11,13 +11,13 @@ mkDerivation { pname = "kshisen"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.kshisen"; description = "Solitaire-like game played using the standard set of Mahjong tiles"; mainProgram = "kshisen"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/ksquares.nix b/pkgs/applications/kde/ksquares.nix index cdd2ce84afad8..a623be6dda252 100644 --- a/pkgs/applications/kde/ksquares.nix +++ b/pkgs/applications/kde/ksquares.nix @@ -11,13 +11,13 @@ mkDerivation { pname = "ksquares"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/games/org.kde.ksquares"; description = "Game of Dots and Boxes"; mainProgram = "ksquares"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/ksystemlog.nix b/pkgs/applications/kde/ksystemlog.nix index f3e88e6e03523..1440c93e4f31a 100644 --- a/pkgs/applications/kde/ksystemlog.nix +++ b/pkgs/applications/kde/ksystemlog.nix @@ -23,11 +23,11 @@ mkDerivation { kio ]; - meta = with lib; { + meta = { homepage = "https://apps.kde.org/ksystemlog/"; description = "System log viewer"; mainProgram = "ksystemlog"; - license = with licenses; [ gpl2 ]; - maintainers = with maintainers; [ peterhoeg ]; + license = with lib.licenses; [ gpl2 ]; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/applications/kde/kteatime.nix b/pkgs/applications/kde/kteatime.nix index 0f48b6c8b45a0..5913d94df94f9 100644 --- a/pkgs/applications/kde/kteatime.nix +++ b/pkgs/applications/kde/kteatime.nix @@ -12,13 +12,13 @@ mkDerivation { pname = "kteatime"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/utilities/org.kde.kteatime"; description = "Handy timer for steeping tea"; mainProgram = "kteatime"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/ktimer.nix b/pkgs/applications/kde/ktimer.nix index a4034b83f4748..f2c82c4eb81b5 100644 --- a/pkgs/applications/kde/ktimer.nix +++ b/pkgs/applications/kde/ktimer.nix @@ -9,13 +9,13 @@ mkDerivation { pname = "ktimer"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/utilities/org.kde.ktimer"; description = "Little tool to execute programs after some time"; mainProgram = "ktimer"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/ktorrent.nix b/pkgs/applications/kde/ktorrent.nix index b2e5118bee8e2..d628ce04797a1 100644 --- a/pkgs/applications/kde/ktorrent.nix +++ b/pkgs/applications/kde/ktorrent.nix @@ -19,10 +19,10 @@ mkDerivation { pname = "ktorrent"; - meta = with lib; { + meta = { description = "KDE integrated BtTorrent client"; homepage = "https://apps.kde.org/ktorrent/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; diff --git a/pkgs/applications/kde/ktrip.nix b/pkgs/applications/kde/ktrip.nix index 9d14b319a1b97..5263c82f12878 100644 --- a/pkgs/applications/kde/ktrip.nix +++ b/pkgs/applications/kde/ktrip.nix @@ -38,12 +38,12 @@ mkDerivation rec { qtquickcontrols2 ]; - meta = with lib; { + meta = { description = "Public transport trip planner"; mainProgram = "ktrip"; homepage = "https://apps.kde.org/ktrip/"; # GPL-2.0-or-later - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/applications/kde/kturtle.nix b/pkgs/applications/kde/kturtle.nix index af0b867ae9881..9578a4cbd7e05 100644 --- a/pkgs/applications/kde/kturtle.nix +++ b/pkgs/applications/kde/kturtle.nix @@ -10,13 +10,13 @@ mkDerivation { pname = "kturtle"; - meta = with lib; { + meta = { homepage = "https://invent.kde.org/education/kturtle"; description = "Educational programming environment for learning how to program"; mainProgram = "kturtle"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kwave.nix b/pkgs/applications/kde/kwave.nix index 899b0177da98c..20cb4a1c8275e 100644 --- a/pkgs/applications/kde/kwave.nix +++ b/pkgs/applications/kde/kwave.nix @@ -26,13 +26,13 @@ mkDerivation { pname = "kwave"; - meta = with lib; { + meta = { homepage = "https://kde.org/applications/en/multimedia/org.kde.kwave"; description = "Simple media player"; mainProgram = "kwave"; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kweather.nix b/pkgs/applications/kde/kweather.nix index 7bf505d27ca4e..98ae60f3efdf5 100644 --- a/pkgs/applications/kde/kweather.nix +++ b/pkgs/applications/kde/kweather.nix @@ -40,11 +40,11 @@ mkDerivation rec { qtquickcontrols2 ]; - meta = with lib; { + meta = { description = "Weather application for Plasma Mobile"; mainProgram = "kweather"; homepage = "https://invent.kde.org/plasma-mobile/kweather"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus cc-by-40 ]; diff --git a/pkgs/applications/kde/libkcddb.nix b/pkgs/applications/kde/libkcddb.nix index 1a634fd44532f..77d172f0c02f6 100644 --- a/pkgs/applications/kde/libkcddb.nix +++ b/pkgs/applications/kde/libkcddb.nix @@ -14,13 +14,13 @@ mkDerivation { pname = "libkcddb"; - meta = with lib; { - license = with licenses; [ + meta = { + license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; - maintainers = with maintainers; [ peterhoeg ]; + maintainers = with lib.maintainers; [ peterhoeg ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/libksane.nix b/pkgs/applications/kde/libksane.nix index 241a9e284b86e..ead88dcd1e6a2 100644 --- a/pkgs/applications/kde/libksane.nix +++ b/pkgs/applications/kde/libksane.nix @@ -13,9 +13,9 @@ mkDerivation { pname = "libksane"; - meta = with lib; { - license = licenses.gpl2; - maintainers = with maintainers; [ polendri ]; + meta = { + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ polendri ]; }; nativeBuildInputs = [ extra-cmake-modules ]; buildInputs = [ diff --git a/pkgs/applications/kde/merkuro.nix b/pkgs/applications/kde/merkuro.nix index 89220319be138..54a91918a9de1 100644 --- a/pkgs/applications/kde/merkuro.nix +++ b/pkgs/applications/kde/merkuro.nix @@ -104,11 +104,11 @@ mkDerivation { }"'' ]; - meta = with lib; { + meta = { description = "Calendar application using Akonadi to sync with external services (Nextcloud, GMail, ...)"; homepage = "https://invent.kde.org/pim/merkuro"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ Thra11 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ Thra11 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/kde/minuet.nix b/pkgs/applications/kde/minuet.nix index c3000bdec25dd..e7e5d6ad223cb 100644 --- a/pkgs/applications/kde/minuet.nix +++ b/pkgs/applications/kde/minuet.nix @@ -17,15 +17,15 @@ mkDerivation { pname = "minuet"; - meta = with lib; { + meta = { homepage = "https://apps.kde.org/minuet/"; description = "Music Education Software"; mainProgram = "minuet"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21 gpl3 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ peterhoeg HaoZeke ]; diff --git a/pkgs/applications/kde/neochat.nix b/pkgs/applications/kde/neochat.nix index 8f2601930d7f4..6d060d8ab1744 100644 --- a/pkgs/applications/kde/neochat.nix +++ b/pkgs/applications/kde/neochat.nix @@ -66,12 +66,12 @@ mkDerivation { sonnet ]; - meta = with lib; { + meta = { description = "Client for matrix, the decentralized communication protocol"; mainProgram = "neochat"; homepage = "https://apps.kde.org/en/neochat"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ peterhoeg ]; - platforms = with platforms; linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/applications/kde/okular.nix b/pkgs/applications/kde/okular.nix index d604b800d7ba1..e6d9ea42b9f0d 100644 --- a/pkgs/applications/kde/okular.nix +++ b/pkgs/applications/kde/okular.nix @@ -96,17 +96,17 @@ mkDerivation { cmakeFlags = lib.optional (!withSpeech) "-DFORCE_NOT_REQUIRED_DEPENDENCIES=Qt5TextToSpeech"; - meta = with lib; { + meta = { homepage = "http://www.kde.org"; description = "KDE document viewer"; mainProgram = "okular"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus bsd3 ]; - maintainers = with maintainers; [ ttuegel ]; + maintainers = with lib.maintainers; [ ttuegel ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/kde/picmi.nix b/pkgs/applications/kde/picmi.nix index 7261f1f392567..7b290c0f13135 100644 --- a/pkgs/applications/kde/picmi.nix +++ b/pkgs/applications/kde/picmi.nix @@ -9,7 +9,7 @@ mkDerivation { pname = "picmi"; - meta = with lib; { + meta = { homepage = "https://apps.kde.org/picmi/"; description = "Nonogram game"; mainProgram = "picmi"; @@ -17,9 +17,9 @@ mkDerivation { The goal is to reveal the hidden pattern in the board by coloring or leaving blank the cells in a grid according to numbers given at the side of the grid. ''; - maintainers = with maintainers; [ freezeboy ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; nativeBuildInputs = [ diff --git a/pkgs/applications/kde/qmlkonsole.nix b/pkgs/applications/kde/qmlkonsole.nix index 5cf001eb1ed19..d674313059992 100644 --- a/pkgs/applications/kde/qmlkonsole.nix +++ b/pkgs/applications/kde/qmlkonsole.nix @@ -34,15 +34,15 @@ mkDerivation { qmltermwidget ]; - meta = with lib; { + meta = { description = "Terminal app for Plasma Mobile"; mainProgram = "qmlkonsole"; homepage = "https://invent.kde.org/plasma-mobile/qmlkonsole"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus gpl3Plus cc0 ]; - maintainers = with maintainers; [ balsoft ]; + maintainers = with lib.maintainers; [ balsoft ]; }; } diff --git a/pkgs/applications/kde/rocs.nix b/pkgs/applications/kde/rocs.nix index 6742ad2182c79..a1aac9d88fc48 100644 --- a/pkgs/applications/kde/rocs.nix +++ b/pkgs/applications/kde/rocs.nix @@ -20,17 +20,17 @@ mkDerivation { pname = "rocs"; - meta = with lib; { + meta = { homepage = "https://edu.kde.org/rocs/"; description = "Graph theory IDE"; mainProgram = "rocs"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ]; platforms = lib.platforms.linux; - maintainers = with maintainers; [ knairda ]; + maintainers = with lib.maintainers; [ knairda ]; }; nativeBuildInputs = [ diff --git a/pkgs/applications/kde/skanlite.nix b/pkgs/applications/kde/skanlite.nix index 6dcba10e0897f..208e56d2a2494 100644 --- a/pkgs/applications/kde/skanlite.nix +++ b/pkgs/applications/kde/skanlite.nix @@ -10,12 +10,12 @@ mkDerivation { pname = "skanlite"; - meta = with lib; { + meta = { description = "KDE simple image scanning application"; mainProgram = "skanlite"; homepage = "https://apps.kde.org/skanlite"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ polendri ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ polendri ]; }; nativeBuildInputs = [ diff --git a/pkgs/applications/kde/skanpage.nix b/pkgs/applications/kde/skanpage.nix index 8f4a636f5cb12..c701de93ee3ac 100644 --- a/pkgs/applications/kde/skanpage.nix +++ b/pkgs/applications/kde/skanpage.nix @@ -24,11 +24,11 @@ mkDerivation { kquickimageedit ]; - meta = with lib; { + meta = { description = "KDE utility to scan images and multi-page documents"; mainProgram = "skanpage"; homepage = "https://apps.kde.org/skanpage"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/kde/spectacle.nix b/pkgs/applications/kde/spectacle.nix index 657af4cbc26ba..9bd9546aa54a0 100644 --- a/pkgs/applications/kde/spectacle.nix +++ b/pkgs/applications/kde/spectacle.nix @@ -83,10 +83,10 @@ mkDerivation { kipi-plugins libkipi ]; - meta = with lib; { + meta = { homepage = "https://apps.kde.org/spectacle/"; description = "Screenshot capture utility"; mainProgram = "spectacle"; - maintainers = with maintainers; [ ttuegel ]; + maintainers = with lib.maintainers; [ ttuegel ]; }; } diff --git a/pkgs/applications/kde/tokodon.nix b/pkgs/applications/kde/tokodon.nix index 5771ce5c60e51..5b6a34d0bca65 100644 --- a/pkgs/applications/kde/tokodon.nix +++ b/pkgs/applications/kde/tokodon.nix @@ -52,12 +52,12 @@ mkDerivation { mpv ]; - meta = with lib; { + meta = { description = "Mastodon client for Plasma and Plasma Mobile"; mainProgram = "tokodon"; homepage = "https://invent.kde.org/network/tokodon"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/applications/kde/zanshin.nix b/pkgs/applications/kde/zanshin.nix index 137f7fc02c557..05612f228abce 100644 --- a/pkgs/applications/kde/zanshin.nix +++ b/pkgs/applications/kde/zanshin.nix @@ -10,11 +10,11 @@ mkDerivation { pname = "zanshin"; - meta = with lib; { + meta = { description = "Powerful yet simple application to manage your day to day actions, getting your mind like water"; homepage = "https://zanshin.kde.org/"; - maintainers = with maintainers; [ zraexy ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ zraexy ]; + license = lib.licenses.gpl2Plus; }; nativeBuildInputs = [ extra-cmake-modules ]; diff --git a/pkgs/applications/logging/sosreport/default.nix b/pkgs/applications/logging/sosreport/default.nix index 8ca365c8e10a8..5ef452a7f0ed1 100644 --- a/pkgs/applications/logging/sosreport/default.nix +++ b/pkgs/applications/logging/sosreport/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sos" ]; - meta = with lib; { + meta = { description = "Unified tool for collecting system logs and other debug information"; homepage = "https://github.com/sosreport/sos"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; }; } diff --git a/pkgs/applications/maui/booth.nix b/pkgs/applications/maui/booth.nix index adf9a1b68cdfb..1e3f077110d31 100644 --- a/pkgs/applications/maui/booth.nix +++ b/pkgs/applications/maui/booth.nix @@ -48,11 +48,11 @@ mkDerivation { ) ''; - meta = with lib; { + meta = { description = "Camera application"; mainProgram = "booth"; homepage = "https://invent.kde.org/maui/booth"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/applications/maui/buho.nix b/pkgs/applications/maui/buho.nix index d207955ad4b91..9d335ee7c8705 100644 --- a/pkgs/applications/maui/buho.nix +++ b/pkgs/applications/maui/buho.nix @@ -40,11 +40,11 @@ mkDerivation { qtquickcontrols2 ]; - meta = with lib; { + meta = { description = "Task and Note Keeper"; mainProgram = "buho"; homepage = "https://invent.kde.org/maui/buho"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/applications/maui/clip.nix b/pkgs/applications/maui/clip.nix index 901a798252b7f..f0ec2cd3f538e 100644 --- a/pkgs/applications/maui/clip.nix +++ b/pkgs/applications/maui/clip.nix @@ -40,11 +40,11 @@ mkDerivation { ffmpeg ]; - meta = with lib; { + meta = { description = "Video player and video collection manager"; mainProgram = "clip"; homepage = "https://invent.kde.org/maui/clip"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/applications/maui/communicator.nix b/pkgs/applications/maui/communicator.nix index c239a1c84296d..388fd744d5b19 100644 --- a/pkgs/applications/maui/communicator.nix +++ b/pkgs/applications/maui/communicator.nix @@ -49,11 +49,11 @@ mkDerivation { kcontacts ]; - meta = with lib; { + meta = { description = "Contacts and dialer application"; mainProgram = "communicator"; homepage = "https://invent.kde.org/maui/communicator"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/applications/maui/index.nix b/pkgs/applications/maui/index.nix index c16603490d18d..e31d9296fde5e 100644 --- a/pkgs/applications/maui/index.nix +++ b/pkgs/applications/maui/index.nix @@ -39,11 +39,11 @@ mkDerivation { qtquickcontrols2 ]; - meta = with lib; { + meta = { description = "Multi-platform file manager"; mainProgram = "index"; homepage = "https://invent.kde.org/maui/index-fm"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/applications/maui/mauikit-accounts.nix b/pkgs/applications/maui/mauikit-accounts.nix index e04ab551f0870..70d3ba586e8ba 100644 --- a/pkgs/applications/maui/mauikit-accounts.nix +++ b/pkgs/applications/maui/mauikit-accounts.nix @@ -22,10 +22,10 @@ mkDerivation { mauikit ]; - meta = with lib; { + meta = { homepage = "https://invent.kde.org/maui/mauikit-accounts"; description = "MauiKit utilities to handle User Accounts"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/applications/maui/mauikit-calendar/default.nix b/pkgs/applications/maui/mauikit-calendar/default.nix index 42aaff0f386c7..c62154d605a0a 100644 --- a/pkgs/applications/maui/mauikit-calendar/default.nix +++ b/pkgs/applications/maui/mauikit-calendar/default.nix @@ -30,10 +30,10 @@ mkDerivation { qtquickcontrols2 ]; - meta = with lib; { + meta = { homepage = "https://invent.kde.org/maui/mauikit-calendar"; description = "Calendar support components for Maui applications"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/applications/maui/mauikit-filebrowsing.nix b/pkgs/applications/maui/mauikit-filebrowsing.nix index 13a98b37e03b9..13d6e242f3168 100644 --- a/pkgs/applications/maui/mauikit-filebrowsing.nix +++ b/pkgs/applications/maui/mauikit-filebrowsing.nix @@ -22,10 +22,10 @@ mkDerivation { mauikit ]; - meta = with lib; { + meta = { homepage = "https://invent.kde.org/maui/mauikit-filebrowsing"; description = "MauiKit File Browsing utilities and controls"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/applications/maui/mauikit-imagetools.nix b/pkgs/applications/maui/mauikit-imagetools.nix index 8b96c55002fc0..d83a9410fe74c 100644 --- a/pkgs/applications/maui/mauikit-imagetools.nix +++ b/pkgs/applications/maui/mauikit-imagetools.nix @@ -34,10 +34,10 @@ mkDerivation { tesseract ]; - meta = with lib; { + meta = { homepage = "https://invent.kde.org/maui/mauikit-imagetools"; description = "MauiKit Image Tools Components"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/applications/maui/mauikit-terminal.nix b/pkgs/applications/maui/mauikit-terminal.nix index 905132a9d7a58..074c4211f269f 100644 --- a/pkgs/applications/maui/mauikit-terminal.nix +++ b/pkgs/applications/maui/mauikit-terminal.nix @@ -24,10 +24,10 @@ mkDerivation { mauikit ]; - meta = with lib; { + meta = { homepage = "https://invent.kde.org/maui/mauikit-terminal"; description = "Terminal support components for Maui applications"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/applications/maui/mauikit-texteditor.nix b/pkgs/applications/maui/mauikit-texteditor.nix index c38ba401d060f..8f24bb3bf33bf 100644 --- a/pkgs/applications/maui/mauikit-texteditor.nix +++ b/pkgs/applications/maui/mauikit-texteditor.nix @@ -24,10 +24,10 @@ mkDerivation { syntax-highlighting ]; - meta = with lib; { + meta = { homepage = "https://invent.kde.org/maui/mauikit-texteditor"; description = "MauiKit Text Editor components"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/applications/maui/mauikit.nix b/pkgs/applications/maui/mauikit.nix index 60b795604c830..bebc10106bcc7 100644 --- a/pkgs/applications/maui/mauikit.nix +++ b/pkgs/applications/maui/mauikit.nix @@ -30,10 +30,10 @@ mkDerivation { qtx11extras ]; - meta = with lib; { + meta = { homepage = "https://mauikit.org/"; description = "Free and modular front-end framework for developing fast and compelling user experiences"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/applications/maui/mauiman.nix b/pkgs/applications/maui/mauiman.nix index c90a02055450e..602462e357b9f 100644 --- a/pkgs/applications/maui/mauiman.nix +++ b/pkgs/applications/maui/mauiman.nix @@ -18,10 +18,10 @@ mkDerivation { qtsystems ]; - meta = with lib; { + meta = { homepage = "https://invent.kde.org/maui/mauiman"; description = "Maui Manager Library. Server and public library API"; mainProgram = "MauiManServer3"; - maintainers = with maintainers; [ dotlambda ]; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/applications/maui/nota.nix b/pkgs/applications/maui/nota.nix index 0c72106795fea..ad5e1c389a51d 100644 --- a/pkgs/applications/maui/nota.nix +++ b/pkgs/applications/maui/nota.nix @@ -38,11 +38,11 @@ mkDerivation { qtquickcontrols2 ]; - meta = with lib; { + meta = { description = "Multi-platform text editor"; mainProgram = "nota"; homepage = "https://invent.kde.org/maui/nota"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/applications/maui/shelf.nix b/pkgs/applications/maui/shelf.nix index e82c8afb6fe01..753881dea4c6e 100644 --- a/pkgs/applications/maui/shelf.nix +++ b/pkgs/applications/maui/shelf.nix @@ -42,11 +42,11 @@ mkDerivation { poppler ]; - meta = with lib; { + meta = { description = "Document and EBook collection manager"; mainProgram = "shelf"; homepage = "https://invent.kde.org/maui/shelf"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/applications/maui/station.nix b/pkgs/applications/maui/station.nix index 6389576a125cf..8d8afdbd0832b 100644 --- a/pkgs/applications/maui/station.nix +++ b/pkgs/applications/maui/station.nix @@ -34,11 +34,11 @@ mkDerivation { qtmultimedia ]; - meta = with lib; { + meta = { description = "Convergent terminal emulator"; mainProgram = "station"; homepage = "https://invent.kde.org/maui/station"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/applications/maui/vvave.nix b/pkgs/applications/maui/vvave.nix index d30a747a87e5b..9b3813c49322b 100644 --- a/pkgs/applications/maui/vvave.nix +++ b/pkgs/applications/maui/vvave.nix @@ -40,11 +40,11 @@ mkDerivation { taglib ]; - meta = with lib; { + meta = { description = "Multi-platform media player"; mainProgram = "vvave"; homepage = "https://invent.kde.org/maui/vvave"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/applications/misc/ArchiSteamFarm/web-ui/default.nix b/pkgs/applications/misc/ArchiSteamFarm/web-ui/default.nix index 28e4be38989c4..7b23bee910e03 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/aitrack/default.nix b/pkgs/applications/misc/aitrack/default.nix index 7fa8e8e9d6107..2b48c0b00438b 100644 --- a/pkgs/applications/misc/aitrack/default.nix +++ b/pkgs/applications/misc/aitrack/default.nix @@ -44,11 +44,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/applications/misc/anup/default.nix b/pkgs/applications/misc/anup/default.nix index ef343f3461464..8acf4f0229bd5 100644 --- a/pkgs/applications/misc/anup/default.nix +++ b/pkgs/applications/misc/anup/default.nix @@ -35,11 +35,11 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/Acizza/anup"; description = "Anime tracker for AniList featuring a TUI"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ natto1784 ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ natto1784 ]; mainProgram = "anup"; }; } diff --git a/pkgs/applications/misc/ape/clex.nix b/pkgs/applications/misc/ape/clex.nix index 5403e4d5e95bd..ee58ea809ab96 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/avell-unofficial-control-center/default.nix b/pkgs/applications/misc/avell-unofficial-control-center/default.nix index 94b091a2b2ca5..b66f9606c0078 100644 --- a/pkgs/applications/misc/avell-unofficial-control-center/default.nix +++ b/pkgs/applications/misc/avell-unofficial-control-center/default.nix @@ -24,11 +24,11 @@ python3Packages.buildPythonApplication rec { 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/applications/misc/binocle/default.nix b/pkgs/applications/misc/binocle/default.nix index d80678848b942..d418c13a71648 100644 --- a/pkgs/applications/misc/binocle/default.nix +++ b/pkgs/applications/misc/binocle/default.nix @@ -58,14 +58,14 @@ 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/applications/misc/birdtray/default.nix b/pkgs/applications/misc/birdtray/default.nix index 4282495495098..8209846265852 100644 --- a/pkgs/applications/misc/birdtray/default.nix +++ b/pkgs/applications/misc/birdtray/default.nix @@ -35,12 +35,12 @@ mkDerivation rec { # https://github.com/gyunaev/birdtray/issues/113#issuecomment-621742315 qtWrapperArgs = [ "--set QT_QPA_PLATFORM xcb" ]; - meta = with lib; { + meta = { description = "Mail system tray notification icon for Thunderbird"; mainProgram = "birdtray"; homepage = "https://github.com/gyunaev/birdtray"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ Flakebi ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ Flakebi ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/blucontrol/wrapper.nix b/pkgs/applications/misc/blucontrol/wrapper.nix index 20b19c45bb8b9..6e5090358b851 100644 --- a/pkgs/applications/misc/blucontrol/wrapper.nix +++ b/pkgs/applications/misc/blucontrol/wrapper.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation { preferLocalBuild = true; allowSubstitues = 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 0eff5be2206fd..bb78a4bb86552 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/brewtarget/default.nix b/pkgs/applications/misc/brewtarget/default.nix index 72e7df62486a0..c927a0606d5aa 100644 --- a/pkgs/applications/misc/brewtarget/default.nix +++ b/pkgs/applications/misc/brewtarget/default.nix @@ -42,11 +42,11 @@ mkDerivation rec { substituteInPlace configure --replace /bin/bash "${bash}/bin/bash" ''; - meta = with lib; { + meta = { description = "Open source beer recipe creation tool"; mainProgram = "brewtarget"; homepage = "http://www.brewtarget.org/"; - license = licenses.gpl3; - maintainers = [ maintainers.mmahut ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.mmahut ]; }; } diff --git a/pkgs/applications/misc/cambrinary/default.nix b/pkgs/applications/misc/cambrinary/default.nix index c55007b6205ff..ad041b2604ade 100644 --- a/pkgs/applications/misc/cambrinary/default.nix +++ b/pkgs/applications/misc/cambrinary/default.nix @@ -30,12 +30,12 @@ buildPythonApplication rec { 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; - maintainers = with maintainers; [ azahi ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ azahi ]; }; } diff --git a/pkgs/applications/misc/candle/default.nix b/pkgs/applications/misc/candle/default.nix index 32c0b872d1ae1..185703ffb29cf 100644 --- a/pkgs/applications/misc/candle/default.nix +++ b/pkgs/applications/misc/candle/default.nix @@ -33,11 +33,11 @@ mkDerivation rec { qtserialport ]; - meta = with lib; { + meta = { description = "GRBL controller application with G-Code visualizer written in Qt"; mainProgram = "candle"; homepage = "https://github.com/Denvi/Candle"; - license = licenses.gpl3; - maintainers = with maintainers; [ matti-kariluoma ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ matti-kariluoma ]; }; } diff --git a/pkgs/applications/misc/cardpeek/default.nix b/pkgs/applications/misc/cardpeek/default.nix index cc953ba23ec83..f9a3eb56c5dee 100644 --- a/pkgs/applications/misc/cardpeek/default.nix +++ b/pkgs/applications/misc/cardpeek/default.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/L1L1/cardpeek"; description = "Tool to read the contents of ISO7816 smart cards"; - license = licenses.gpl3Plus; - platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ embr ]; + license = lib.licenses.gpl3Plus; + platforms = with lib.platforms; linux ++ darwin; + maintainers = with lib.maintainers; [ embr ]; mainProgram = "cardpeek"; }; } diff --git a/pkgs/applications/misc/cask-server/default.nix b/pkgs/applications/misc/cask-server/default.nix index ece410684697c..78140dbeeed1a 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/cataract/build.nix b/pkgs/applications/misc/cataract/build.nix index a6ee2a4a36c99..756f846ba6a14 100644 --- a/pkgs/applications/misc/cataract/build.nix +++ b/pkgs/applications/misc/cataract/build.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation { cp src/cgg{,-dirgen} $out/bin/ ''; - meta = with lib; { + meta = { homepage = "http://cgg.bzatek.net/"; description = "Simple static web photo gallery, designed to be clean and easily usable"; - license = licenses.gpl2; - maintainers = [ maintainers.matthiasbeyer ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.matthiasbeyer ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/applications/misc/chewing-editor/default.nix b/pkgs/applications/misc/chewing-editor/default.nix index 9f2e10fce8743..b4119cde52802 100644 --- a/pkgs/applications/misc/chewing-editor/default.nix +++ b/pkgs/applications/misc/chewing-editor/default.nix @@ -32,15 +32,15 @@ mkDerivation rec { qttools ]; - meta = with lib; { + meta = { description = "Cross platform chewing user phrase editor"; mainProgram = "chewing-editor"; longDescription = '' chewing-editor is a cross platform chewing user phrase editor. It provides a easy way to manage user phrase. With it, user can customize their user phrase to increase input performance. ''; homepage = "https://github.com/chewing/chewing-editor"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.ShamrockLee ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.ShamrockLee ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/misc/clight/clight-gui.nix b/pkgs/applications/misc/clight/clight-gui.nix index 495ebc5024cd1..fd29e0872995e 100644 --- a/pkgs/applications/misc/clight/clight-gui.nix +++ b/pkgs/applications/misc/clight/clight-gui.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { sourceRoot = "${src.name}/src"; - meta = with lib; { + meta = { description = "Qt GUI for clight"; homepage = "https://github.com/nullobsi/clight-gui"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nickhu ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nickhu ]; mainProgram = "clight-gui"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/clight/clightd.nix b/pkgs/applications/misc/clight/clightd.nix index cb9bdea22067a..6fe85b33152fa 100644 --- a/pkgs/applications/misc/clight/clightd.nix +++ b/pkgs/applications/misc/clight/clightd.nix @@ -100,13 +100,13 @@ stdenv.mkDerivation rec { ln -svT $out/libexec/clightd $out/bin/clightd ''; - meta = with lib; { + meta = { description = "Linux bus interface that changes screen brightness/temperature"; mainProgram = "clightd"; homepage = "https://github.com/FedeDP/Clightd"; - 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/applications/misc/cobalt/default.nix b/pkgs/applications/misc/cobalt/default.nix index 53cff166991e4..a138af86c54a5 100644 --- a/pkgs/applications/misc/cobalt/default.nix +++ b/pkgs/applications/misc/cobalt/default.nix @@ -21,12 +21,12 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ]; - meta = with lib; { + meta = { description = "Static site generator written in Rust"; homepage = "https://github.com/cobalt-org/cobalt.rs/"; - license = licenses.mit; - maintainers = with maintainers; [ ethancedwards8 ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ethancedwards8 ]; + platforms = lib.platforms.unix; mainProgram = "cobalt"; }; } diff --git a/pkgs/applications/misc/collision/default.nix b/pkgs/applications/misc/collision/default.nix index fb693b1ff66fe..57181c94c3118 100644 --- a/pkgs/applications/misc/collision/default.nix +++ b/pkgs/applications/misc/collision/default.nix @@ -103,11 +103,11 @@ 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 ] ++ lib.teams.gnome-circle.members; + maintainers = with lib.maintainers; [ sund3RRR ] ++ lib.teams.gnome-circle.members; }; } diff --git a/pkgs/applications/misc/coolreader/default.nix b/pkgs/applications/misc/coolreader/default.nix index 6433e00799237..caf4aa7b6bd4c 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 - maintainers = with maintainers; [ gebner ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; # see https://github.com/buggins/coolreader/issues/80 + maintainers = with lib.maintainers; [ gebner ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/misc/copyq/default.nix b/pkgs/applications/misc/copyq/default.nix index bb395236a66c3..c557e2f6a10a9 100644 --- a/pkgs/applications/misc/copyq/default.nix +++ b/pkgs/applications/misc/copyq/default.nix @@ -55,13 +55,13 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DWITH_QT6=ON" ]; - meta = with lib; { + meta = { homepage = "https://hluk.github.io/CopyQ"; description = "Clipboard Manager with Advanced Features"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ artturin ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ artturin ]; # NOTE: CopyQ supports windows and osx, but I cannot test these. - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "copyq"; }; } diff --git a/pkgs/applications/misc/cubocore-packages/coreaction/default.nix b/pkgs/applications/misc/cubocore-packages/coreaction/default.nix index 944dc109c0e9f..79917057daf03 100644 --- a/pkgs/applications/misc/cubocore-packages/coreaction/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreaction/default.nix @@ -33,12 +33,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "Side bar for showing widgets from the C Suite"; mainProgram = "coreaction"; homepage = "https://gitlab.com/cubocore/coreapps/coreaction"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/corearchiver/default.nix b/pkgs/applications/misc/cubocore-packages/corearchiver/default.nix index d06bea646dc7e..443e5ead71635 100644 --- a/pkgs/applications/misc/cubocore-packages/corearchiver/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corearchiver/default.nix @@ -35,12 +35,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "Archiver from the C Suite to create and extract archives"; mainProgram = "corearchiver"; homepage = "https://gitlab.com/cubocore/coreapps/corearchiver"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/corefm/default.nix b/pkgs/applications/misc/cubocore-packages/corefm/default.nix index 1bdf0f104dee6..04a081d2c049c 100644 --- a/pkgs/applications/misc/cubocore-packages/corefm/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corefm/default.nix @@ -31,12 +31,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "Lightwight filemanager from the C Suite"; mainProgram = "corefm"; homepage = "https://gitlab.com/cubocore/coreapps/corefm"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/coregarage/default.nix b/pkgs/applications/misc/cubocore-packages/coregarage/default.nix index 32ab1063a04b6..3a46a3442c7f4 100644 --- a/pkgs/applications/misc/cubocore-packages/coregarage/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coregarage/default.nix @@ -35,12 +35,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "Settings manager for the C Suite"; mainProgram = "coregarage"; homepage = "https://gitlab.com/cubocore/coreapps/coregarage"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/corehunt/default.nix b/pkgs/applications/misc/cubocore-packages/corehunt/default.nix index 61d585e347fe9..f72ff8f8d8dce 100644 --- a/pkgs/applications/misc/cubocore-packages/corehunt/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corehunt/default.nix @@ -31,12 +31,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "File finder utility from the C Suite"; mainProgram = "corehunt"; homepage = "https://gitlab.com/cubocore/coreapps/corehunt"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/coreimage/default.nix b/pkgs/applications/misc/cubocore-packages/coreimage/default.nix index d0c01f95c0d26..5b6258c3478bf 100644 --- a/pkgs/applications/misc/cubocore-packages/coreimage/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreimage/default.nix @@ -31,12 +31,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "Image viewer from the C Suite"; mainProgram = "coreimage"; homepage = "https://gitlab.com/cubocore/coreapps/coreimage"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/coreinfo/default.nix b/pkgs/applications/misc/cubocore-packages/coreinfo/default.nix index 7d788eea2286a..9c60ad751c58b 100644 --- a/pkgs/applications/misc/cubocore-packages/coreinfo/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreinfo/default.nix @@ -37,12 +37,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "File information tool from the C Suite"; mainProgram = "coreinfo"; homepage = "https://gitlab.com/cubocore/coreapps/coreinfo"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/corekeyboard/default.nix b/pkgs/applications/misc/cubocore-packages/corekeyboard/default.nix index d5df2a0bf8300..5d1777e7f6195 100644 --- a/pkgs/applications/misc/cubocore-packages/corekeyboard/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corekeyboard/default.nix @@ -36,12 +36,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "Virtual keyboard for X11 from the C Suite"; mainProgram = "corekeyboard"; homepage = "https://gitlab.com/cubocore/coreapps/corekeyboard"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/corepad/default.nix b/pkgs/applications/misc/cubocore-packages/corepad/default.nix index e3ff6fdf2b367..6490dd482a22d 100644 --- a/pkgs/applications/misc/cubocore-packages/corepad/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corepad/default.nix @@ -31,12 +31,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "Document editor from the C Suite"; mainProgram = "corepad"; homepage = "https://gitlab.com/cubocore/coreapps/corepad"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/corepaint/default.nix b/pkgs/applications/misc/cubocore-packages/corepaint/default.nix index 2f4e15543a2f3..3b0ee8f471cad 100644 --- a/pkgs/applications/misc/cubocore-packages/corepaint/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corepaint/default.nix @@ -31,12 +31,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "Paint app from the C Suite"; mainProgram = "corepaint"; homepage = "https://gitlab.com/cubocore/coreapps/corepaint"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/corepdf/default.nix b/pkgs/applications/misc/cubocore-packages/corepdf/default.nix index b45330fef2cea..44951c2419e45 100644 --- a/pkgs/applications/misc/cubocore-packages/corepdf/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corepdf/default.nix @@ -35,12 +35,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "PDF viewer from the C Suite"; mainProgram = "corepdf"; homepage = "https://gitlab.com/cubocore/coreapps/corepdf"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/corepins/default.nix b/pkgs/applications/misc/cubocore-packages/corepins/default.nix index 19e34bfbfea1d..c3b296e4ee7d4 100644 --- a/pkgs/applications/misc/cubocore-packages/corepins/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corepins/default.nix @@ -31,12 +31,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "Bookmarking app from the C Suite"; mainProgram = "corepins"; homepage = "https://gitlab.com/cubocore/coreapps/corepins"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/corerenamer/default.nix b/pkgs/applications/misc/cubocore-packages/corerenamer/default.nix index c500ab6fa6a81..371bf5220e29b 100644 --- a/pkgs/applications/misc/cubocore-packages/corerenamer/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corerenamer/default.nix @@ -31,12 +31,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "Batch file renamer from the C Suite"; mainProgram = "corerenamer"; homepage = "https://gitlab.com/cubocore/coreapps/corerenamer"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/coreshot/default.nix b/pkgs/applications/misc/cubocore-packages/coreshot/default.nix index b283e49237aae..9912ce87c1250 100644 --- a/pkgs/applications/misc/cubocore-packages/coreshot/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreshot/default.nix @@ -33,12 +33,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "Screen capture utility from the C Suite"; mainProgram = "coreshot"; homepage = "https://gitlab.com/cubocore/coreapps/coreshot"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/corestats/default.nix b/pkgs/applications/misc/cubocore-packages/corestats/default.nix index f557f48740f8b..ebd07819ba8cd 100644 --- a/pkgs/applications/misc/cubocore-packages/corestats/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corestats/default.nix @@ -33,12 +33,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "System resource viewer from the C Suite"; mainProgram = "corestats"; homepage = "https://gitlab.com/cubocore/coreapps/corestats"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/corestuff/default.nix b/pkgs/applications/misc/cubocore-packages/corestuff/default.nix index 8ec6080a4c32a..5ba36f4ce1d5f 100644 --- a/pkgs/applications/misc/cubocore-packages/corestuff/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corestuff/default.nix @@ -42,12 +42,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "Activity viewer from the C Suite"; mainProgram = "corestuff"; homepage = "https://gitlab.com/cubocore/coreapps/corestuff"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/coreterminal/default.nix b/pkgs/applications/misc/cubocore-packages/coreterminal/default.nix index f2671ab3eff25..671c130ecfe0b 100644 --- a/pkgs/applications/misc/cubocore-packages/coreterminal/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreterminal/default.nix @@ -35,12 +35,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "Terminal emulator from the C Suite"; mainProgram = "coreterminal"; homepage = "https://gitlab.com/cubocore/coreapps/coreterminal"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/coretime/default.nix b/pkgs/applications/misc/cubocore-packages/coretime/default.nix index b210b0ca766c2..edbe2025a50c1 100644 --- a/pkgs/applications/misc/cubocore-packages/coretime/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coretime/default.nix @@ -33,12 +33,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "Time related task manager from the C Suite"; mainProgram = "coretime"; homepage = "https://gitlab.com/cubocore/coreapps/coretime"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/coretoppings/default.nix b/pkgs/applications/misc/cubocore-packages/coretoppings/default.nix index ed5d5fc49fa94..4ee876399aa93 100644 --- a/pkgs/applications/misc/cubocore-packages/coretoppings/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coretoppings/default.nix @@ -78,12 +78,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "Additional features,plugins etc for CuboCore Application Suite"; mainProgram = "shareIT"; homepage = "https://gitlab.com/cubocore/coreapps/coretoppings"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/coreuniverse/default.nix b/pkgs/applications/misc/cubocore-packages/coreuniverse/default.nix index dfe9e4f1ea893..80a819f775c01 100644 --- a/pkgs/applications/misc/cubocore-packages/coreuniverse/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreuniverse/default.nix @@ -31,12 +31,12 @@ mkDerivation rec { libcsys ]; - meta = with lib; { + meta = { description = "Shows information about apps from the C Suite"; mainProgram = "coreuniverse"; homepage = "https://gitlab.com/cubocore/coreapps/coreuniverse"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/libcprime/default.nix b/pkgs/applications/misc/cubocore-packages/libcprime/default.nix index 353128b091af6..ea53a4e65dad6 100644 --- a/pkgs/applications/misc/cubocore-packages/libcprime/default.nix +++ b/pkgs/applications/misc/cubocore-packages/libcprime/default.nix @@ -35,11 +35,11 @@ mkDerivation rec { libnotify ]; - meta = with lib; { + meta = { description = "Library for bookmarking, saving recent activites, managing settings of C-Suite"; homepage = "https://gitlab.com/cubocore/coreapps/libcprime"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cubocore-packages/libcsys/default.nix b/pkgs/applications/misc/cubocore-packages/libcsys/default.nix index ba9162ed33c8c..b08acca8bacb9 100644 --- a/pkgs/applications/misc/cubocore-packages/libcsys/default.nix +++ b/pkgs/applications/misc/cubocore-packages/libcsys/default.nix @@ -29,11 +29,11 @@ mkDerivation rec { udisks2 ]; - meta = with lib; { + meta = { description = "Library for managing drive and getting system resource information in real time"; homepage = "https://gitlab.com/cubocore/libcsys"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/cura/default.nix b/pkgs/applications/misc/cura/default.nix index 1c512fec699f8..2d686e5889b2f 100644 --- a/pkgs/applications/misc/cura/default.nix +++ b/pkgs/applications/misc/cura/default.nix @@ -83,13 +83,13 @@ 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; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar gebner ]; diff --git a/pkgs/applications/misc/curaengine/default.nix b/pkgs/applications/misc/curaengine/default.nix index 428865935e2da..1a39fa61b1de1 100644 --- a/pkgs/applications/misc/curaengine/default.nix +++ b/pkgs/applications/misc/curaengine/default.nix @@ -38,12 +38,12 @@ 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; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar gebner ]; diff --git a/pkgs/applications/misc/curaengine/stable.nix b/pkgs/applications/misc/curaengine/stable.nix index 103f081fe1501..4eb072cace89c 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 f4095b1782c08..b3f7224239a1c 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/devilspie2/default.nix b/pkgs/applications/misc/devilspie2/default.nix index 89af855c78625..472879936955d 100644 --- a/pkgs/applications/misc/devilspie2/default.nix +++ b/pkgs/applications/misc/devilspie2/default.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/applications/misc/diff-pdf/default.nix b/pkgs/applications/misc/diff-pdf/default.nix index 4302d6cde399f..d5f460b8b5a7d 100644 --- a/pkgs/applications/misc/diff-pdf/default.nix +++ b/pkgs/applications/misc/diff-pdf/default.nix @@ -35,12 +35,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 a80f3061241c4..728293c004a27 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/dmensamenu/default.nix b/pkgs/applications/misc/dmensamenu/default.nix index 447cb0d377940..a35f7d5b7daf3 100644 --- a/pkgs/applications/misc/dmensamenu/default.nix +++ b/pkgs/applications/misc/dmensamenu/default.nix @@ -31,11 +31,11 @@ buildPythonApplication rec { # No tests implemented doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/dotlambda/dmensamenu"; description = "Print German canteen menus using dmenu and OpenMensa"; mainProgram = "dmensamenu"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/applications/misc/dmenu/default.nix b/pkgs/applications/misc/dmenu/default.nix index 8479bf15d382b..38b39a5af38a4 100644 --- a/pkgs/applications/misc/dmenu/default.nix +++ b/pkgs/applications/misc/dmenu/default.nix @@ -58,17 +58,17 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { url = "git://git.suckless.org/dmenu"; }; - meta = with lib; { + meta = { description = "Generic, highly customizable, and efficient menu for the X Window System"; homepage = "https://tools.suckless.org/dmenu"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pSub globin qusic _0david0mp ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "dmenu"; }; } diff --git a/pkgs/applications/misc/dmenu/wayland.nix b/pkgs/applications/misc/dmenu/wayland.nix index 996aef30464dc..ae5981d67e513 100644 --- a/pkgs/applications/misc/dmenu/wayland.nix +++ b/pkgs/applications/misc/dmenu/wayland.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation rec { --prefix PATH : $out/bin ''; - meta = with lib; { - license = licenses.mit; - platforms = platforms.linux; + meta = { + license = lib.licenses.mit; + platforms = lib.platforms.linux; description = "Efficient dynamic menu for wayland (wlroots)"; homepage = "https://github.com/nyyManni/dmenu-wayland"; - maintainers = with maintainers; [ rewine ]; + maintainers = with lib.maintainers; [ rewine ]; mainProgram = "dmenu-wl"; }; } diff --git a/pkgs/applications/misc/dupeguru/default.nix b/pkgs/applications/misc/dupeguru/default.nix index bab21335b1e8e..cf411d97bd202 100644 --- a/pkgs/applications/misc/dupeguru/default.nix +++ b/pkgs/applications/misc/dupeguru/default.nix @@ -66,13 +66,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 219046157cf8f..f75296d5a535e 100644 --- a/pkgs/applications/misc/electrum/default.nix +++ b/pkgs/applications/misc/electrum/default.nix @@ -132,7 +132,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 @@ -143,9 +143,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/ltc.nix b/pkgs/applications/misc/electrum/ltc.nix index 8e2ad76b2655c..7988fb1391d74 100644 --- a/pkgs/applications/misc/electrum/ltc.nix +++ b/pkgs/applications/misc/electrum/ltc.nix @@ -173,7 +173,7 @@ python3.pkgs.buildPythonApplication { $out/bin/electrum-ltc help >/dev/null ''; - meta = with lib; { + meta = { description = "Lightweight Litecoin Client"; mainProgram = "electrum-ltc"; longDescription = '' @@ -183,8 +183,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 205defcfb693b..5001625d430ee 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; [ ehmry philiptaron ]; diff --git a/pkgs/applications/misc/evtest-qt/default.nix b/pkgs/applications/misc/evtest-qt/default.nix index 43a3d683b6746..4d68eae37356d 100644 --- a/pkgs/applications/misc/evtest-qt/default.nix +++ b/pkgs/applications/misc/evtest-qt/default.nix @@ -36,12 +36,12 @@ mkDerivation rec { 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/far2l/default.nix b/pkgs/applications/misc/far2l/default.nix index e9de83749987f..2272e98af6811 100644 --- a/pkgs/applications/misc/far2l/default.nix +++ b/pkgs/applications/misc/far2l/default.nix @@ -141,11 +141,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/applications/misc/fetchmail/v7.nix b/pkgs/applications/misc/fetchmail/v7.nix index d9680b164b5d8..440820db83307 100644 --- a/pkgs/applications/misc/fetchmail/v7.nix +++ b/pkgs/applications/misc/fetchmail/v7.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation { 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 = '' @@ -43,7 +43,7 @@ stdenv.mkDerivation { 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/applications/misc/ganttproject-bin/default.nix b/pkgs/applications/misc/ganttproject-bin/default.nix index a5e04f86b28ee..0e4c728398815 100644 --- a/pkgs/applications/misc/ganttproject-bin/default.nix +++ b/pkgs/applications/misc/ganttproject-bin/default.nix @@ -52,15 +52,15 @@ 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; - maintainers = [ maintainers.vidbina ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.vidbina ]; mainProgram = "ganttproject"; }; } diff --git a/pkgs/applications/misc/goldendict-ng/default.nix b/pkgs/applications/misc/goldendict-ng/default.nix index a0afd9824511f..10ae3872414c9 100644 --- a/pkgs/applications/misc/goldendict-ng/default.nix +++ b/pkgs/applications/misc/goldendict-ng/default.nix @@ -85,15 +85,15 @@ stdenv.mkDerivation (finalAttrs: { "-DUSE_SYSTEM_TOML=ON" ]; - meta = with lib; { + meta = { homepage = "https://xiaoyifang.github.io/goldendict-ng/"; description = "Advanced multi-dictionary lookup program"; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "goldendict"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ slbtty michojel ]; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; }) diff --git a/pkgs/applications/misc/goldendict/default.nix b/pkgs/applications/misc/goldendict/default.nix index f8383b4d0d009..a6ecce11d241b 100644 --- a/pkgs/applications/misc/goldendict/default.nix +++ b/pkgs/applications/misc/goldendict/default.nix @@ -104,16 +104,16 @@ 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; [ gebner astsmtl sikmir ]; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/applications/misc/gphoto2/gphotofs.nix b/pkgs/applications/misc/gphoto2/gphotofs.nix index c34a0370140ee..9232705e06d37 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/gremlin-console/default.nix b/pkgs/applications/misc/gremlin-console/default.nix index 2494d30d9ee28..32f6318c776e6 100644 --- a/pkgs/applications/misc/gremlin-console/default.nix +++ b/pkgs/applications/misc/gremlin-console/default.nix @@ -27,12 +27,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/applications/misc/gremlin-server/default.nix b/pkgs/applications/misc/gremlin-server/default.nix index 9bf2199291510..a78211d3a870d 100644 --- a/pkgs/applications/misc/gremlin-server/default.nix +++ b/pkgs/applications/misc/gremlin-server/default.nix @@ -29,12 +29,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/applications/misc/gxneur/default.nix b/pkgs/applications/misc/gxneur/default.nix index 4fecff22e3c74..f757b4dcf0b86 100644 --- a/pkgs/applications/misc/gxneur/default.nix +++ b/pkgs/applications/misc/gxneur/default.nix @@ -44,10 +44,10 @@ stdenv.mkDerivation rec { libappindicator-gtk2 ]; - meta = with lib; { + meta = { description = "GUI for XNEUR keyboard layout switcher"; - platforms = platforms.linux; - license = with licenses; [ + platforms = lib.platforms.linux; + license = with lib.licenses; [ gpl2 gpl3 ]; diff --git a/pkgs/applications/misc/hovercraft/default.nix b/pkgs/applications/misc/hovercraft/default.nix index a6c478051703a..cce21e42c3304 100644 --- a/pkgs/applications/misc/hovercraft/default.nix +++ b/pkgs/applications/misc/hovercraft/default.nix @@ -42,11 +42,11 @@ buildPythonApplication rec { }) ]; - meta = with lib; { + meta = { description = "Makes impress.js presentations from reStructuredText"; mainProgram = "hovercraft"; homepage = "https://github.com/regebro/hovercraft"; - license = licenses.mit; - maintainers = with maintainers; [ makefu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ makefu ]; }; } diff --git a/pkgs/applications/misc/hue-plus/default.nix b/pkgs/applications/misc/hue-plus/default.nix index 637f37d504bea..8a78cc122482e 100644 --- a/pkgs/applications/misc/hue-plus/default.nix +++ b/pkgs/applications/misc/hue-plus/default.nix @@ -36,13 +36,13 @@ python3Packages.buildPythonApplication rec { "\${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 5fc2aabfb3906..59d375ed1cf9f 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 ef866eb7b5414..f4832f85b3b7f 100644 --- a/pkgs/applications/misc/ikiwiki/default.nix +++ b/pkgs/applications/misc/ikiwiki/default.nix @@ -136,11 +136,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/inherd-quake/default.nix b/pkgs/applications/misc/inherd-quake/default.nix index 5cd38ca8cc08f..2014f0b130c16 100644 --- a/pkgs/applications/misc/inherd-quake/default.nix +++ b/pkgs/applications/misc/inherd-quake/default.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage rec { Security ]; - 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/applications/misc/inkcut/default.nix b/pkgs/applications/misc/inkcut/default.nix index cf0a61e62fbc5..2c082ea987e2b 100644 --- a/pkgs/applications/misc/inkcut/default.nix +++ b/pkgs/applications/misc/inkcut/default.nix @@ -91,11 +91,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/applications/misc/k4dirstat/default.nix b/pkgs/applications/misc/k4dirstat/default.nix index 0894b4b08b692..60431178c66f4 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/kapow/default.nix b/pkgs/applications/misc/kapow/default.nix index d2eef8279c3aa..63a206adb11b9 100644 --- a/pkgs/applications/misc/kapow/default.nix +++ b/pkgs/applications/misc/kapow/default.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { buildInputs = [ qtbase ]; - meta = with lib; { + meta = { description = "Punch clock to track time spent on projects"; mainProgram = "kapow"; homepage = "https://gottcode.org/kapow/"; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/applications/misc/kchmviewer/default.nix b/pkgs/applications/misc/kchmviewer/default.nix index f3ecbdf87e376..c3a7f9a3dd265 100644 --- a/pkgs/applications/misc/kchmviewer/default.nix +++ b/pkgs/applications/misc/kchmviewer/default.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { install -Dm644 packages/kchmviewer.desktop -t $out/share/applications ''; - meta = with lib; { + meta = { description = "CHM (Winhelp) files viewer"; mainProgram = "kchmviewer"; homepage = "http://www.ulduzsoft.com/linux/kchmviewer/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/kiwix/default.nix b/pkgs/applications/misc/kiwix/default.nix index 2c9eafb16c11f..4e4960e8648b0 100644 --- a/pkgs/applications/misc/kiwix/default.nix +++ b/pkgs/applications/misc/kiwix/default.nix @@ -40,12 +40,12 @@ mkDerivation { "--prefix PATH : ${lib.makeBinPath [ aria2 ]}" ]; - meta = with lib; { + meta = { description = "Offline reader for Web content"; mainProgram = "kiwix-desktop"; homepage = "https://kiwix.org"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/applications/misc/kjv/default.nix b/pkgs/applications/misc/kjv/default.nix index 0bd8f52d0a3b0..16876f9b7b069 100644 --- a/pkgs/applications/misc/kjv/default.nix +++ b/pkgs/applications/misc/kjv/default.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/applications/misc/kjv/lukesmithxyz-kjv.nix b/pkgs/applications/misc/kjv/lukesmithxyz-kjv.nix index 8e08295a58e37..7a063229bf140 100644 --- a/pkgs/applications/misc/kjv/lukesmithxyz-kjv.nix +++ b/pkgs/applications/misc/kjv/lukesmithxyz-kjv.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { 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/applications/misc/ksmoothdock/default.nix b/pkgs/applications/misc/ksmoothdock/default.nix index 526ee7eafd96e..e5665632ed041 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 2ee5e5e7aaa65..db3e168c7f19e 100644 --- a/pkgs/applications/misc/kup/default.nix +++ b/pkgs/applications/misc/kup/default.nix @@ -52,10 +52,10 @@ stdenv.mkDerivation rec { libgit2 ]; - 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/latte-dock/default.nix b/pkgs/applications/misc/latte-dock/default.nix index 4337fb4c85bb0..8d8e9bc9da6cd 100644 --- a/pkgs/applications/misc/latte-dock/default.nix +++ b/pkgs/applications/misc/latte-dock/default.nix @@ -63,13 +63,13 @@ mkDerivation rec { cp $out/share/applications/org.kde.latte-dock.desktop $out/etc/xdg/autostart ''; - meta = with lib; { + meta = { description = "Dock-style app launcher based on Plasma frameworks"; mainProgram = "latte-dock"; homepage = "https://invent.kde.org/plasma/latte-dock"; - license = licenses.gpl2; - platforms = platforms.unix; - maintainers = [ maintainers.ysndr ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.ysndr ]; }; } diff --git a/pkgs/applications/misc/lutris/default.nix b/pkgs/applications/misc/lutris/default.nix index ecd4d2c1c6a0c..e099cacd4b5f2 100644 --- a/pkgs/applications/misc/lutris/default.nix +++ b/pkgs/applications/misc/lutris/default.nix @@ -150,15 +150,15 @@ 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; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ Madouura rapiteanu ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "lutris"; }; } diff --git a/pkgs/applications/misc/lyx/default.nix b/pkgs/applications/misc/lyx/default.nix index 0a6d4549498f5..395e6f41c3562 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 = "http://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 8d14bf2bdf0ef..0f8b750524a50 100644 --- a/pkgs/applications/misc/maliit-framework/default.nix +++ b/pkgs/applications/misc/maliit-framework/default.nix @@ -73,11 +73,11 @@ mkDerivation rec { "-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 dd7d60049c466..6ccc4fcc676a7 100644 --- a/pkgs/applications/misc/maliit-keyboard/default.nix +++ b/pkgs/applications/misc/maliit-keyboard/default.nix @@ -65,11 +65,11 @@ mkDerivation rec { 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/mdzk/default.nix b/pkgs/applications/misc/mdzk/default.nix index a613fe5492a14..415306f5733a9 100644 --- a/pkgs/applications/misc/mdzk/default.nix +++ b/pkgs/applications/misc/mdzk/default.nix @@ -26,12 +26,12 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ]; - 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; [ bryanasdev000 ratsclub ]; diff --git a/pkgs/applications/misc/mediaelch/default.nix b/pkgs/applications/misc/mediaelch/default.nix index d815c354f8e6d..e845674b309c6 100644 --- a/pkgs/applications/misc/mediaelch/default.nix +++ b/pkgs/applications/misc/mediaelch/default.nix @@ -68,12 +68,12 @@ stdenv.mkDerivation rec { "--prefix LD_LIBRARY_PATH : ${libmediainfo}/lib" ]; - meta = with lib; { + meta = { homepage = "https://mediaelch.de/mediaelch/"; description = "Media Manager for Kodi"; mainProgram = "MediaElch"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ stunkymonkey ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ stunkymonkey ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/meerk40t/camera.nix b/pkgs/applications/misc/meerk40t/camera.nix index 6e33c8077c668..5a5043546ff1d 100644 --- a/pkgs/applications/misc/meerk40t/camera.nix +++ b/pkgs/applications/misc/meerk40t/camera.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "MeerK40t camera plugin"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/meerk40t/meerk40t-camera"; - maintainers = with maintainers; [ hexa ]; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/applications/misc/megasync/default.nix b/pkgs/applications/misc/megasync/default.nix index 8ac1a9099e370..33ed7cda3b509 100644 --- a/pkgs/applications/misc/megasync/default.nix +++ b/pkgs/applications/misc/megasync/default.nix @@ -126,10 +126,10 @@ mkDerivation rec { qtWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ xorg.xrdb ]}) ''; - meta = with lib; { + meta = { description = "Easy automated syncing between your computers and your MEGA Cloud Drive"; homepage = "https://mega.nz/"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/applications/misc/michabo/default.nix b/pkgs/applications/misc/michabo/default.nix index b44b5300749b0..b4469a072f54d 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/moolticute/default.nix b/pkgs/applications/misc/moolticute/default.nix index b8023272f60f1..1c48adc631a2b 100644 --- a/pkgs/applications/misc/moolticute/default.nix +++ b/pkgs/applications/misc/moolticute/default.nix @@ -46,18 +46,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/mu-repo/default.nix b/pkgs/applications/misc/mu-repo/default.nix index c2acd018b78ef..61fef3c1c3c67 100644 --- a/pkgs/applications/misc/mu-repo/default.nix +++ b/pkgs/applications/misc/mu-repo/default.nix @@ -30,12 +30,12 @@ buildPythonApplication rec { package = mu-repo; }; - meta = with lib; { + meta = { description = "Tool to help in dealing with multiple git repositories"; homepage = "http://fabioz.github.io/mu-repo/"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sikmir ]; mainProgram = "mu"; }; } diff --git a/pkgs/applications/misc/mwic/default.nix b/pkgs/applications/misc/mwic/default.nix index 045c8cdfeab30..e8531c161b711 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/nimbo/default.nix b/pkgs/applications/misc/nimbo/default.nix index 151393c804b40..1738da7d1be2a 100644 --- a/pkgs/applications/misc/nimbo/default.nix +++ b/pkgs/applications/misc/nimbo/default.nix @@ -57,10 +57,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/applications/misc/nixnote2/default.nix b/pkgs/applications/misc/nixnote2/default.nix index 9014f2f32344c..b9f92e3f3634b 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 e8642f86ded21..989fa833ea772 100644 --- a/pkgs/applications/misc/ola/default.nix +++ b/pkgs/applications/misc/ola/default.nix @@ -55,15 +55,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 9f80b8ee31682..7684df22aa294 100644 --- a/pkgs/applications/misc/openambit/default.nix +++ b/pkgs/applications/misc/openambit/default.nix @@ -59,11 +59,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 465a3749df6d6..d55359b66401b 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 bfac320abe8a4..742a4a35d9c00 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 = with lib.maintainers; [ abbradar ]; - 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 cf253fa3bc52c..3e90eda56551f 100644 --- a/pkgs/applications/misc/opencpn/default.nix +++ b/pkgs/applications/misc/opencpn/default.nix @@ -153,14 +153,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/openrgb-plugins/effects/default.nix b/pkgs/applications/misc/openrgb-plugins/effects/default.nix index 5723bab1d1c80..aae1f7b4ab390 100644 --- a/pkgs/applications/misc/openrgb-plugins/effects/default.nix +++ b/pkgs/applications/misc/openrgb-plugins/effects/default.nix @@ -41,11 +41,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/applications/misc/openrgb-plugins/hardwaresync/default.nix b/pkgs/applications/misc/openrgb-plugins/hardwaresync/default.nix index 497da16c10a60..5d1690a87b9c3 100644 --- a/pkgs/applications/misc/openrgb-plugins/hardwaresync/default.nix +++ b/pkgs/applications/misc/openrgb-plugins/hardwaresync/default.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation (finalAttrs: { 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/applications/misc/opentrack/aruco.nix b/pkgs/applications/misc/opentrack/aruco.nix index 291ff7ad24f94..271df93ad2bfe 100644 --- a/pkgs/applications/misc/opentrack/aruco.nix +++ b/pkgs/applications/misc/opentrack/aruco.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation { cp $src/src/*.h $out/include/aruco ''; - meta = with lib; { + meta = { homepage = "https://github.com/opentrack/aruco"; description = "C++ library for detection of AR markers based on OpenCV"; - license = licenses.isc; - maintainers = with maintainers; [ zaninime ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ zaninime ]; }; } diff --git a/pkgs/applications/misc/osmscout-server/default.nix b/pkgs/applications/misc/osmscout-server/default.nix index a06269390b4e7..36b19c4c2604d 100644 --- a/pkgs/applications/misc/osmscout-server/default.nix +++ b/pkgs/applications/misc/osmscout-server/default.nix @@ -68,11 +68,11 @@ mkDerivation rec { "CONFIG+=disable_mapnik" # Disable the optional mapnik backend ]; - meta = with lib; { + meta = { description = "Maps server providing tiles, geocoder, and router"; homepage = "https://github.com/rinigus/osmscout-server"; - 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/parsec/bin.nix b/pkgs/applications/misc/parsec/bin.nix index a1aa2bf422ed0..9c6ce23a7e54c 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 661117bcaacee..18c1b60b9bf69 100644 --- a/pkgs/applications/misc/pdfpc/default.nix +++ b/pkgs/applications/misc/pdfpc/default.nix @@ -75,13 +75,13 @@ stdenv.mkDerivation rec { cmakeFlags = lib.optional stdenv.hostPlatform.isDarwin (lib.cmakeBool "MOVIES" false); - 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 7b495ed4dc30f..dd0da865452bf 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/pgmodeler/default.nix b/pkgs/applications/misc/pgmodeler/default.nix index c134f00b2f886..70db11db90240 100644 --- a/pkgs/applications/misc/pgmodeler/default.nix +++ b/pkgs/applications/misc/pgmodeler/default.nix @@ -83,11 +83,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/applications/misc/plasma-applet-volumewin7mixer/default.nix b/pkgs/applications/misc/plasma-applet-volumewin7mixer/default.nix index cba463516a688..bd220a5017d3b 100644 --- a/pkgs/applications/misc/plasma-applet-volumewin7mixer/default.nix +++ b/pkgs/applications/misc/plasma-applet-volumewin7mixer/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Fork of the default volume plasmoid with a Windows 7 theme (vertical sliders)"; homepage = "https://github.com/Zren/plasma-applet-volumewin7mixer"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ mdevlamynck ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mdevlamynck ]; }; } diff --git a/pkgs/applications/misc/plasma-theme-switcher/default.nix b/pkgs/applications/misc/plasma-theme-switcher/default.nix index 324cca93099f1..4bdc4668b602c 100644 --- a/pkgs/applications/misc/plasma-theme-switcher/default.nix +++ b/pkgs/applications/misc/plasma-theme-switcher/default.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/maldoinc/plasma-theme-switcher/"; description = "KDE Plasma theme switcher"; - license = with licenses; [ gpl2Only ]; - maintainers = with maintainers; [ kevink ]; + license = with lib.licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ kevink ]; mainProgram = "plasma-theme"; }; } diff --git a/pkgs/applications/misc/plater/default.nix b/pkgs/applications/misc/plater/default.nix index 80cd745f8b9af..5fe2e715e2752 100644 --- a/pkgs/applications/misc/plater/default.nix +++ b/pkgs/applications/misc/plater/default.nix @@ -47,11 +47,11 @@ mkDerivation rec { cp $src/gui/img/plater.png $out/share/pixmaps/${pname}.png ''; - meta = with lib; { + meta = { description = "3D-printer parts placer and plate generator"; homepage = "https://github.com/Rhoban/Plater"; - maintainers = with maintainers; [ lovesegfault ]; - platforms = platforms.linux; - license = licenses.cc-by-nc-30; + maintainers = with lib.maintainers; [ lovesegfault ]; + platforms = lib.platforms.linux; + license = lib.licenses.cc-by-nc-30; }; } diff --git a/pkgs/applications/misc/pomodoro/default.nix b/pkgs/applications/misc/pomodoro/default.nix index b0afdcf23538d..440f03ae50623 100644 --- a/pkgs/applications/misc/pomodoro/default.nix +++ b/pkgs/applications/misc/pomodoro/default.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-6ZhWStZebXSwrej36DXifrsrmR1SWW3PwGUX0hqPwE4="; buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Foundation ]; - 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/applications/misc/q4wine/default.nix b/pkgs/applications/misc/q4wine/default.nix index b3cbb95729234..d75e7ac9ae4ed 100644 --- a/pkgs/applications/misc/q4wine/default.nix +++ b/pkgs/applications/misc/q4wine/default.nix @@ -53,11 +53,11 @@ 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 069e5ae7b48a6..bc901cf6e4ac0 100644 --- a/pkgs/applications/misc/qMasterPassword/default.nix +++ b/pkgs/applications/misc/qMasterPassword/default.nix @@ -77,7 +77,7 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Stateless Master Password Manager"; mainProgram = "qMasterPassword"; longDescription = '' @@ -89,8 +89,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 e61fbe2864e50..49dffd3ee0358 100644 --- a/pkgs/applications/misc/qlcplus/default.nix +++ b/pkgs/applications/misc/qlcplus/default.nix @@ -64,11 +64,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/qolibri/default.nix b/pkgs/applications/misc/qolibri/default.nix index bd4dfaf58a85c..a6246b4073115 100644 --- a/pkgs/applications/misc/qolibri/default.nix +++ b/pkgs/applications/misc/qolibri/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "EPWING reader for viewing Japanese dictionaries"; homepage = "https://github.com/mvf/qolibri"; - license = licenses.gpl2; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ azahi ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64; # Looks like a libcxx version mismatch problem. mainProgram = "qolibri"; }; diff --git a/pkgs/applications/misc/qsudo/default.nix b/pkgs/applications/misc/qsudo/default.nix index d379b95eb2bb8..7d8fd6893d3fd 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/qt-box-editor/default.nix b/pkgs/applications/misc/qt-box-editor/default.nix index 7d584f78645dd..03777a0373f0d 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/qt-video-wlr/default.nix b/pkgs/applications/misc/qt-video-wlr/default.nix index 7b3fe39b6d1ae..110d0ef7aca92 100644 --- a/pkgs/applications/misc/qt-video-wlr/default.nix +++ b/pkgs/applications/misc/qt-video-wlr/default.nix @@ -55,15 +55,15 @@ stdenv.mkDerivation rec { "--prefix GST_PLUGIN_PATH : ${gstreamerPath}" ]; - meta = with lib; { + meta = { description = "Qt pip-mode-like video player for wlroots-based wayland compositors"; mainProgram = "qt-video-wlr"; homepage = "https://github.com/xdavidwu/qt-video-wlr"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fionera rewine ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/applications/misc/qtbitcointrader/default.nix b/pkgs/applications/misc/qtbitcointrader/default.nix index 89ed268ff5ced..5322f362eab98 100644 --- a/pkgs/applications/misc/qtbitcointrader/default.nix +++ b/pkgs/applications/misc/qtbitcointrader/default.nix @@ -34,11 +34,11 @@ mkDerivation rec { runHook postConfigure ''; - meta = with lib; { + meta = { description = "Bitcoin trading client"; mainProgram = "QtBitcoinTrader"; homepage = "https://centrabit.com/"; - license = licenses.gpl3; + license = lib.licenses.gpl3; platforms = qt5.qtbase.meta.platforms; }; } diff --git a/pkgs/applications/misc/qtpass/default.nix b/pkgs/applications/misc/qtpass/default.nix index 56a43e10e360a..589662bb1ef7f 100644 --- a/pkgs/applications/misc/qtpass/default.nix +++ b/pkgs/applications/misc/qtpass/default.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { install -D qtpass.1 -t $out/share/man/man1 ''; - meta = with lib; { + meta = { description = "Multi-platform GUI for pass, the standard unix password manager"; mainProgram = "qtpass"; homepage = "https://qtpass.org"; - license = licenses.gpl3; - maintainers = [ maintainers.hrdinka ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.hrdinka ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/misc/razergenie/default.nix b/pkgs/applications/misc/razergenie/default.nix index ca5ac7f4a42ea..82c84fd5b720d 100644 --- a/pkgs/applications/misc/razergenie/default.nix +++ b/pkgs/applications/misc/razergenie/default.nix @@ -44,15 +44,15 @@ stdenv.mkDerivation { "-Dinclude_matrix_discovery=${lib.boolToString includeMatrixDiscovery}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/z3ntu/RazerGenie"; description = "Qt application for configuring your Razer devices under GNU/Linux"; mainProgram = "razergenie"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ f4814n Mogria ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/reddsaver/default.nix b/pkgs/applications/misc/reddsaver/default.nix index 46e684d0d36e4..8ce623c600cbe 100644 --- a/pkgs/applications/misc/reddsaver/default.nix +++ b/pkgs/applications/misc/reddsaver/default.nix @@ -27,14 +27,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/applications/misc/redshift-plasma-applet/default.nix b/pkgs/applications/misc/redshift-plasma-applet/default.nix index 8a198a702eaab..05179f4d14034 100644 --- a/pkgs/applications/misc/redshift-plasma-applet/default.nix +++ b/pkgs/applications/misc/redshift-plasma-applet/default.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "KDE Plasma 5 widget for controlling Redshift"; homepage = "https://github.com/kotelnik/plasma-applet-redshift-control"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ benley zraexy ]; diff --git a/pkgs/applications/misc/remarkable/remarkable-mouse/default.nix b/pkgs/applications/misc/remarkable/remarkable-mouse/default.nix index 5a85f5ab4867d..7324b21f0ae66 100644 --- a/pkgs/applications/misc/remarkable/remarkable-mouse/default.nix +++ b/pkgs/applications/misc/remarkable/remarkable-mouse/default.nix @@ -25,10 +25,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/remarkable/rmview/default.nix b/pkgs/applications/misc/remarkable/rmview/default.nix index 780ac1b91bcfc..197b840e5ae9d 100644 --- a/pkgs/applications/misc/remarkable/rmview/default.nix +++ b/pkgs/applications/misc/remarkable/rmview/default.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/applications/misc/resp-app/default.nix b/pkgs/applications/misc/resp-app/default.nix index 25f80e3e2a83c..a0b5c9139d84c 100644 --- a/pkgs/applications/misc/resp-app/default.nix +++ b/pkgs/applications/misc/resp-app/default.nix @@ -93,12 +93,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/rofi-emoji/default.nix b/pkgs/applications/misc/rofi-emoji/default.nix index a8a83fcfe8631..e9cbae0f9232c 100644 --- a/pkgs/applications/misc/rofi-emoji/default.nix +++ b/pkgs/applications/misc/rofi-emoji/default.nix @@ -80,15 +80,15 @@ import ./versions.nix ( ] ++ lib.optionals x11Support [ xclip ]; - meta = with lib; { + meta = { description = "Emoji selector plugin for Rofi (built against ${rofi-unwrapped.pname})"; homepage = "https://github.com/Mange/rofi-emoji"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cole-h Mange ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } ) diff --git a/pkgs/applications/misc/rofi-rbw/default.nix b/pkgs/applications/misc/rofi-rbw/default.nix index 4e69d743cd052..5c735fd670411 100644 --- a/pkgs/applications/misc/rofi-rbw/default.nix +++ b/pkgs/applications/misc/rofi-rbw/default.nix @@ -71,15 +71,15 @@ buildPythonApplication rec { makeWrapperArgs+=(--prefix PATH : ${lib.makeBinPath wrapper_paths} --add-flags "${wrapper_flags}") ''; - meta = with lib; { + meta = { description = "Rofi frontend for Bitwarden"; homepage = "https://github.com/fdw/rofi-rbw"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ equirosa dit7ya ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "rofi-rbw"; }; } diff --git a/pkgs/applications/misc/rofi/default.nix b/pkgs/applications/misc/rofi/default.nix index 77ba72aa871cd..9f3033b7aff08 100644 --- a/pkgs/applications/misc/rofi/default.nix +++ b/pkgs/applications/misc/rofi/default.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation rec { doCheck = false; - meta = with lib; { + meta = { description = "Window switcher, run dialog and dmenu replacement"; homepage = "https://github.com/davatorium/rofi"; - license = licenses.mit; - maintainers = with maintainers; [ bew ]; - platforms = with platforms; linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bew ]; + platforms = with lib.platforms; linux; mainProgram = "rofi"; }; } diff --git a/pkgs/applications/misc/rofi/wayland.nix b/pkgs/applications/misc/rofi/wayland.nix index c79ec6debc8fb..b25f4903280f5 100644 --- a/pkgs/applications/misc/rofi/wayland.nix +++ b/pkgs/applications/misc/rofi/wayland.nix @@ -30,12 +30,12 @@ rofi-unwrapped.overrideAttrs (oldAttrs: rec { wayland-protocols ]; - meta = with lib; { + meta = { description = "Window switcher, run dialog and dmenu replacement for Wayland"; homepage = "https://github.com/lbonn/rofi"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "rofi"; - maintainers = with maintainers; [ bew ]; - platforms = with platforms; linux; + maintainers = with lib.maintainers; [ bew ]; + platforms = with lib.platforms; linux; }; }) diff --git a/pkgs/applications/misc/rsibreak/default.nix b/pkgs/applications/misc/rsibreak/default.nix index e680ee956ef52..a001a100a75b4 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/selectdefaultapplication/default.nix b/pkgs/applications/misc/selectdefaultapplication/default.nix index 46868edc6fe63..0979d46269d1a 100644 --- a/pkgs/applications/misc/selectdefaultapplication/default.nix +++ b/pkgs/applications/misc/selectdefaultapplication/default.nix @@ -36,12 +36,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/applications/misc/serial-studio/default.nix b/pkgs/applications/misc/serial-studio/default.nix index 081cff81337b8..d341906a0980a 100644 --- a/pkgs/applications/misc/serial-studio/default.nix +++ b/pkgs/applications/misc/serial-studio/default.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { qtsvg ]; - meta = with lib; { + meta = { description = "Multi-purpose serial data visualization & processing program"; mainProgram = "serial-studio"; homepage = "https://serial-studio.github.io/"; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/sl1-to-photon/default.nix b/pkgs/applications/misc/sl1-to-photon/default.nix index f9bd5c9d0c1fb..7e756c1166e39 100644 --- a/pkgs/applications/misc/sl1-to-photon/default.nix +++ b/pkgs/applications/misc/sl1-to-photon/default.nix @@ -37,9 +37,9 @@ 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/applications/misc/slstatus/default.nix b/pkgs/applications/misc/slstatus/default.nix index 090c0454def11..27b6fa0cf92c3 100644 --- a/pkgs/applications/misc/slstatus/default.nix +++ b/pkgs/applications/misc/slstatus/default.nix @@ -46,15 +46,15 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://tools.suckless.org/slstatus/"; description = "status monitor for window managers that use WM_NAME like dwm"; - license = licenses.isc; - maintainers = with maintainers; [ + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ oxzi qusic ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "slstatus"; }; } diff --git a/pkgs/applications/misc/stag/default.nix b/pkgs/applications/misc/stag/default.nix index 2efe5eaa4dbf7..3443179133b0f 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 e002893538423..049634e1ef11a 100644 --- a/pkgs/applications/misc/stog/default.nix +++ b/pkgs/applications/misc/stog/default.nix @@ -54,10 +54,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/stork/default.nix b/pkgs/applications/misc/stork/default.nix index 5c020e923765f..4ec3fd1c0f237 100644 --- a/pkgs/applications/misc/stork/default.nix +++ b/pkgs/applications/misc/stork/default.nix @@ -30,11 +30,11 @@ rustPlatform.buildRustPackage rec { buildInputs = [ openssl ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ Security ]; - meta = with lib; { + meta = { description = "Impossibly fast web search, made for static sites"; homepage = "https://github.com/jameslittle230/stork"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ chuahou ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ chuahou ]; mainProgram = "stork"; }; } diff --git a/pkgs/applications/misc/swappy/default.nix b/pkgs/applications/misc/swappy/default.nix index 848e73ff2df3a..819ae069a9cbd 100644 --- a/pkgs/applications/misc/swappy/default.nix +++ b/pkgs/applications/misc/swappy/default.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/applications/misc/tellico/default.nix b/pkgs/applications/misc/tellico/default.nix index baf3f2faa4958..44a01cefa0ae7 100644 --- a/pkgs/applications/misc/tellico/default.nix +++ b/pkgs/applications/misc/tellico/default.nix @@ -63,16 +63,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/termdown/default.nix b/pkgs/applications/misc/termdown/default.nix index aa20f51e3ae0a..cf1a390e7805b 100644 --- a/pkgs/applications/misc/termdown/default.nix +++ b/pkgs/applications/misc/termdown/default.nix @@ -26,11 +26,11 @@ buildPythonApplication rec { setuptools ]; - meta = with lib; { + meta = { description = "Starts a countdown to or from TIMESPEC"; mainProgram = "termdown"; longDescription = "Countdown timer and stopwatch in your terminal"; homepage = "https://github.com/trehn/termdown"; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/applications/misc/termpdf.py/default.nix b/pkgs/applications/misc/termpdf.py/default.nix index 9997f53ca3fb3..572d119e3312d 100644 --- a/pkgs/applications/misc/termpdf.py/default.nix +++ b/pkgs/applications/misc/termpdf.py/default.nix @@ -39,14 +39,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 42f02f2ab223a..9058eb1475684 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 e3b42c54a1988..b1e7548de8882 100644 --- a/pkgs/applications/misc/twitch-chat-downloader/default.nix +++ b/pkgs/applications/misc/twitch-chat-downloader/default.nix @@ -38,11 +38,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 013d31b9d57fd..2cb89b59c2964 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/xpdf/default.nix b/pkgs/applications/misc/xpdf/default.nix index 172da584bd0eb..f6ac5c81812db 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" "CVE-2024-2971" diff --git a/pkgs/applications/misc/xpdf/libxpdf.nix b/pkgs/applications/misc/xpdf/libxpdf.nix index 6f7ccfb897408..42e93c79eb479 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 a1cfab39320c0..d0b00ddade135 100644 --- a/pkgs/applications/misc/xygrib/default.nix +++ b/pkgs/applications/misc/xygrib/default.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { --replace 'Exec=XyGrib' 'Exec=xygrib' ''; - meta = with lib; { + meta = { homepage = "https://opengribs.org"; description = "Weather Forecast Visualization"; mainProgram = "xygrib"; @@ -71,8 +71,8 @@ stdenv.mkDerivation rec { 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; - maintainers = with maintainers; [ j03 ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ j03 ]; }; } diff --git a/pkgs/applications/misc/yokadi/default.nix b/pkgs/applications/misc/yokadi/default.nix index 84030033ffe0a..ff4b7e98f71d2 100644 --- a/pkgs/applications/misc/yokadi/default.nix +++ b/pkgs/applications/misc/yokadi/default.nix @@ -27,10 +27,10 @@ buildPythonApplication rec { # Yokadi doesn't have any tests doCheck = false; - meta = with lib; { + meta = { description = "Command line oriented, sqlite powered, todo-list"; homepage = "https://yokadi.github.io/index.html"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.nkpvk ]; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.nkpvk ]; }; } diff --git a/pkgs/applications/networking/browsers/asuka/default.nix b/pkgs/applications/networking/browsers/asuka/default.nix index c2f6a0936771f..788aa82ab07d6 100644 --- a/pkgs/applications/networking/browsers/asuka/default.nix +++ b/pkgs/applications/networking/browsers/asuka/default.nix @@ -29,12 +29,12 @@ rustPlatform.buildRustPackage rec { openssl ] ++ lib.optional stdenv.hostPlatform.isDarwin Security; - meta = with lib; { + meta = { description = "Gemini Project client written in Rust with NCurses"; mainProgram = "asuka"; homepage = "https://git.sr.ht/~julienxx/asuka"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/applications/networking/browsers/elinks/default.nix b/pkgs/applications/networking/browsers/elinks/default.nix index 4e8e7fc9b4722..a5d6bc864ea5e 100644 --- a/pkgs/applications/networking/browsers/elinks/default.nix +++ b/pkgs/applications/networking/browsers/elinks/default.nix @@ -88,13 +88,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 gebner ]; diff --git a/pkgs/applications/networking/browsers/nyxt/default.nix b/pkgs/applications/networking/browsers/nyxt/default.nix index 1f05ff540cee5..4bd42422b3747 100644 --- a/pkgs/applications/networking/browsers/nyxt/default.nix +++ b/pkgs/applications/networking/browsers/nyxt/default.nix @@ -104,15 +104,15 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - 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/qtchan/default.nix b/pkgs/applications/networking/browsers/qtchan/default.nix index 3e266f5f8712f..f5b191bb9a767 100644 --- a/pkgs/applications/networking/browsers/qtchan/default.nix +++ b/pkgs/applications/networking/browsers/qtchan/default.nix @@ -26,12 +26,12 @@ mkDerivation rec { cp qtchan $out/bin ''; - meta = with lib; { + meta = { description = "4chan browser in qt5"; mainProgram = "qtchan"; homepage = "https://github.com/siavash119/qtchan"; - license = licenses.mit; - maintainers = with maintainers; [ Madouura ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Madouura ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/networking/cluster/cni/default.nix b/pkgs/applications/networking/cluster/cni/default.nix index be96dfdbe5628..f40f5801f3e76 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/docker-machine/hyperkit.nix b/pkgs/applications/networking/cluster/docker-machine/hyperkit.nix index a0ebcefe31ed8..54bc3ec5234a8 100644 --- a/pkgs/applications/networking/cluster/docker-machine/hyperkit.nix +++ b/pkgs/applications/networking/cluster/docker-machine/hyperkit.nix @@ -24,11 +24,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 803f7033bc23e..28103daafb4c2 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/helm/default.nix b/pkgs/applications/networking/cluster/helm/default.nix index c3785327d0267..22d000f06a3ab 100644 --- a/pkgs/applications/networking/cluster/helm/default.nix +++ b/pkgs/applications/networking/cluster/helm/default.nix @@ -70,12 +70,12 @@ buildGoModule rec { version = "v${version}"; }; - meta = with lib; { + meta = { homepage = "https://github.com/kubernetes/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-diff.nix b/pkgs/applications/networking/cluster/helm/plugins/helm-diff.nix index 934d18d01228e..4bc202f0e1285 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 12724709f993f..0dff1cb8230a0 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 78d58b0c0b47d..9c9b438e5f21a 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/${pname} 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 cd063d17d6b72..567f94e00cae7 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/krane/default.nix b/pkgs/applications/networking/cluster/krane/default.nix index 93d3836492fd1..7b08e8a590835 100644 --- a/pkgs/applications/networking/cluster/krane/default.nix +++ b/pkgs/applications/networking/cluster/krane/default.nix @@ -11,11 +11,11 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "krane"; - meta = with lib; { + meta = { description = "Command-line tool that helps you ship changes to a Kubernetes namespace and understand the result"; homepage = "https://github.com/Shopify/krane"; changelog = "https://github.com/Shopify/krane/blob/main/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ kira-bruneau ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kira-bruneau ]; }; } diff --git a/pkgs/applications/networking/cluster/kubectl-evict-pod/default.nix b/pkgs/applications/networking/cluster/kubectl-evict-pod/default.nix index 83f3e752a0217..3ba2aa676d125 100644 --- a/pkgs/applications/networking/cluster/kubectl-evict-pod/default.nix +++ b/pkgs/applications/networking/cluster/kubectl-evict-pod/default.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/applications/networking/cluster/kubectl-view-allocations/default.nix b/pkgs/applications/networking/cluster/kubectl-view-allocations/default.nix index 71b0f9d9ed656..9a212ef8868b7 100644 --- a/pkgs/applications/networking/cluster/kubectl-view-allocations/default.nix +++ b/pkgs/applications/networking/cluster/kubectl-view-allocations/default.nix @@ -27,11 +27,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security ]; - meta = with lib; { + meta = { description = "kubectl plugin to list allocations (cpu, memory, gpu,... X utilization, requested, limit, allocatable,...)"; homepage = "https://github.com/davidB/kubectl-view-allocations"; - license = licenses.cc0; - maintainers = [ maintainers.mrene ]; - platforms = platforms.unix; + license = lib.licenses.cc0; + maintainers = [ lib.maintainers.mrene ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/networking/cluster/kubeval/default.nix b/pkgs/applications/networking/cluster/kubeval/default.nix index f9209c858ebc9..a27d056d10a93 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 bb604d74aed93..ada560d4e9cfa 100644 --- a/pkgs/applications/networking/cluster/linkerd/generic.nix +++ b/pkgs/applications/networking/cluster/linkerd/generic.nix @@ -64,13 +64,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; [ bryanasdev000 Gonzih ]; diff --git a/pkgs/applications/networking/cluster/minikube/default.nix b/pkgs/applications/networking/cluster/minikube/default.nix index 438fb2cfde490..fa9b880cef3a2 100644 --- a/pkgs/applications/networking/cluster/minikube/default.nix +++ b/pkgs/applications/networking/cluster/minikube/default.nix @@ -73,12 +73,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 copumpkin vdemeester diff --git a/pkgs/applications/networking/cluster/nixops/plugins/nixops-digitalocean.nix b/pkgs/applications/networking/cluster/nixops/plugins/nixops-digitalocean.nix index 55aec60b9e309..31db29b02116d 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 5a7e261e8661e..a0f8e1cce56ce 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 5ac5cb6a53f06..df75e44cd666f 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 ee071316d28d1..01f37cf585e1c 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 fc6f06460decd..c66fe0e31adf6 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 4527ed9121e01..1064006c3835c 100644 --- a/pkgs/applications/networking/cluster/nixops/unwrapped.nix +++ b/pkgs/applications/networking/cluster/nixops/unwrapped.nix @@ -59,10 +59,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/terraform-landscape/default.nix b/pkgs/applications/networking/cluster/terraform-landscape/default.nix index 637a5d5262305..87313745ff824 100644 --- a/pkgs/applications/networking/cluster/terraform-landscape/default.nix +++ b/pkgs/applications/networking/cluster/terraform-landscape/default.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/applications/networking/cluster/terraspace/default.nix b/pkgs/applications/networking/cluster/terraspace/default.nix index b849f4b106654..f5fd008ae94b5 100644 --- a/pkgs/applications/networking/cluster/terraspace/default.nix +++ b/pkgs/applications/networking/cluster/terraspace/default.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/applications/networking/davmail/default.nix b/pkgs/applications/networking/davmail/default.nix index 6f971f0c849f3..7ebd638cd3b33 100644 --- a/pkgs/applications/networking/davmail/default.nix +++ b/pkgs/applications/networking/davmail/default.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - 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/applications/networking/droopy/default.nix b/pkgs/applications/networking/droopy/default.nix index 0cbcdbe568d49..be41553ecfe74 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/feedreaders/rss2email/default.nix b/pkgs/applications/networking/feedreaders/rss2email/default.nix index 7dba7e9684b9f..e0f5363a4eedd 100644 --- a/pkgs/applications/networking/feedreaders/rss2email/default.nix +++ b/pkgs/applications/networking/feedreaders/rss2email/default.nix @@ -59,11 +59,11 @@ buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Tool that converts RSS/Atom newsfeeds to email"; homepage = "https://pypi.python.org/pypi/rss2email"; - license = licenses.gpl2; - maintainers = with maintainers; [ ekleog ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ ekleog ]; mainProgram = "r2e"; }; passthru.tests = { diff --git a/pkgs/applications/networking/feedreaders/tuifeed/default.nix b/pkgs/applications/networking/feedreaders/tuifeed/default.nix index b4262c7aa4249..d044b3d5db44a 100644 --- a/pkgs/applications/networking/feedreaders/tuifeed/default.nix +++ b/pkgs/applications/networking/feedreaders/tuifeed/default.nix @@ -21,11 +21,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/applications/networking/firehol/default.nix b/pkgs/applications/networking/firehol/default.nix index d5af0443de123..83ba6b9aba100 100644 --- a/pkgs/applications/networking/firehol/default.nix +++ b/pkgs/applications/networking/firehol/default.nix @@ -75,15 +75,15 @@ stdenv.mkDerivation rec { "--disable-update-ipsets" ] ++ 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 63157c65aa333..57992ed91b187 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/ftp/gftp/default.nix b/pkgs/applications/networking/ftp/gftp/default.nix index 94299b5fc0a13..fccf2e9c60917 100644 --- a/pkgs/applications/networking/ftp/gftp/default.nix +++ b/pkgs/applications/networking/ftp/gftp/default.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { homepage = "https://github.com/masneyb/gftp"; description = "GTK-based multithreaded FTP client for *nix-based machines"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.unix; }; } # TODO: report the hardeningDisable to upstream diff --git a/pkgs/applications/networking/icemon/default.nix b/pkgs/applications/networking/icemon/default.nix index 43e9c2b8ebbad..20cce23839383 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/ids/zeek/broker/default.nix b/pkgs/applications/networking/ids/zeek/broker/default.nix index bd25910195820..5a30a81923ece 100644 --- a/pkgs/applications/networking/ids/zeek/broker/default.nix +++ b/pkgs/applications/networking/ids/zeek/broker/default.nix @@ -86,12 +86,12 @@ stdenv.mkDerivation rec { "-DPY_MOD_INSTALL_DIR=${placeholder "py"}/${python3.sitePackages}/" ]; - 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/applications/networking/instant-messengers/ferdium/default.nix b/pkgs/applications/networking/instant-messengers/ferdium/default.nix index 606732baf5808..3322cee2da4dd 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/gurk-rs/default.nix b/pkgs/applications/networking/instant-messengers/gurk-rs/default.nix index ef466182c9bde..000d8f716050a 100644 --- a/pkgs/applications/networking/instant-messengers/gurk-rs/default.nix +++ b/pkgs/applications/networking/instant-messengers/gurk-rs/default.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/applications/networking/instant-messengers/jackline/default.nix b/pkgs/applications/networking/instant-messengers/jackline/default.nix index c81355666be4d..2f1c9bfa16017 100644 --- a/pkgs/applications/networking/instant-messengers/jackline/default.nix +++ b/pkgs/applications/networking/instant-messengers/jackline/default.nix @@ -48,11 +48,11 @@ buildDunePackage rec { 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/kdeltachat/default.nix b/pkgs/applications/networking/instant-messengers/kdeltachat/default.nix index a0150fd677805..7b13efb37a013 100644 --- a/pkgs/applications/networking/instant-messengers/kdeltachat/default.nix +++ b/pkgs/applications/networking/instant-messengers/kdeltachat/default.nix @@ -45,12 +45,12 @@ mkDerivation rec { 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/applications/networking/instant-messengers/linphone/default.nix b/pkgs/applications/networking/instant-messengers/linphone/default.nix index 84bc3da601e6b..9e66effa0d837 100644 --- a/pkgs/applications/networking/instant-messengers/linphone/default.nix +++ b/pkgs/applications/networking/instant-messengers/linphone/default.nix @@ -133,12 +133,12 @@ mkDerivation rec { --set MEDIASTREAMER_PLUGINS_DIR $out/lib/mediastreamer/plugins ''; - meta = with lib; { + meta = { homepage = "https://www.linphone.org/"; description = "Open source SIP phone for voice/video calls and instant messaging"; mainProgram = "linphone"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/matrix-commander/default.nix b/pkgs/applications/networking/instant-messengers/matrix-commander/default.nix index 2ed07af8eeb37..1f1ca6300aecf 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 35e438c6a61f7..c0adc40ea0644 100644 --- a/pkgs/applications/networking/instant-messengers/pantalaimon/default.nix +++ b/pkgs/applications/networking/instant-messengers/pantalaimon/default.nix @@ -88,10 +88,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 6333693e946d3..75ec27f6e5fce 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 912afcc18e158..76e5f0a3ba866 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; }; } 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 35002f0b57733..1d83c22fce387 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 bdf455ea9ee9b..e5c305e8b2c6b 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-opensteamworks/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-opensteamworks/default.nix index 3e2231c887d3d..2b126e5bbd56c 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-opensteamworks/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-opensteamworks/default.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { libsecret ]; - meta = with lib; { + meta = { homepage = "https://github.com/EionRobb/pidgin-opensteamworks"; description = "Plugin for Pidgin 2.x which implements Steam Friends/Steam IM compatibility"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ arobyn ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ arobyn ]; }; } 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 bc3d98542a722..c7b83346aa2a3 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-skypeweb/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-skypeweb/default.nix index 6c14b86281a11..29b2c83a44db4 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-skypeweb/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-skypeweb/default.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { 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/skype4pidgin"; description = "SkypeWeb plugin for Pidgin"; - 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/pidgin-xmpp-receipts/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-xmpp-receipts/default.nix index bae5df8c63339..2c83a5b9c528b 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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ orivej ]; }; } 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 bda6c8455ad82..2e0202a2cc7ba 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-facebook/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-facebook/default.nix index 2a7a5238ec41c..ace96de530f3f 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-facebook/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-facebook/default.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation rec { json-glib ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Facebook protocol plugin for libpurple"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ davorb ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ davorb ]; }; } 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 66d5d1605e24b..274cc6dafcc26 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-hangouts/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-hangouts/default.nix index 03efdd49513fd..0fdf78ff6a7fd 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-hangouts/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-hangouts/default.nix @@ -30,11 +30,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://bitbucket.org/EionRobb/purple-hangouts"; description = "Native Hangouts support for pidgin"; - 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-lurch/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-lurch/default.nix index 4f29ebdf3bb69..ac045726a1105 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-matrix/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-matrix/default.nix index 1c34b3381708e..c1ec1e3336c3c 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-matrix/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-matrix/default.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { buildFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ]; # fix build on darwin - meta = with lib; { + meta = { homepage = "https://github.com/matrix-org/purple-matrix"; description = "Matrix support for Pidgin / libpurple"; - license = licenses.gpl2; - platforms = platforms.unix; - maintainers = with maintainers; [ symphorien ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ symphorien ]; }; } 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 b002d1f08eeca..aead342de83d0 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 47c01b8538344..2da4421771bc1 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 rec { 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-signald/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-signald/default.nix index ed295055c2bec..785edfb207b24 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-signald/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-signald/default.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { PKG_CONFIG_PURPLE_DATADIR = "${placeholder "out"}/share"; PKG_CONFIG_PIDGIN_DATADIR = "${placeholder "out"}/share"; - meta = with lib; { + meta = { homepage = "https://github.com/hoehermann/libpurple-signald"; description = "Signal support for Pidgin / libpurple"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ hufman ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ hufman ]; }; } 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 567b957c8aaab..89716495a1358 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 8e70c8f6d2c4a..228e0d3cd5372 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 37e69759286f8..bfea05658777c 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 @@ -49,10 +49,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/window-merge/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/window-merge/default.nix index 387ebbd9f3ce6..aa28e7be082e5 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 5ea2ed6bc1b3a..7bb2d918b5ea0 100644 --- a/pkgs/applications/networking/instant-messengers/profanity/default.nix +++ b/pkgs/applications/networking/instant-messengers/profanity/default.nix @@ -114,7 +114,7 @@ stdenv.mkDerivation rec { LC_ALL = "en_US.utf8"; - meta = with lib; { + meta = { homepage = "http://www.profanity.im/"; description = "Console based XMPP client"; mainProgram = "profanity"; @@ -122,8 +122,8 @@ stdenv.mkDerivation rec { 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-plus/default.nix b/pkgs/applications/networking/instant-messengers/psi-plus/default.nix index 8baa784990175..c962880e04ff5 100644 --- a/pkgs/applications/networking/instant-messengers/psi-plus/default.nix +++ b/pkgs/applications/networking/instant-messengers/psi-plus/default.nix @@ -103,15 +103,15 @@ mkDerivation rec { ) ''; - meta = with lib; { + meta = { homepage = "https://psi-plus.com"; description = "XMPP (Jabber) client based on Qt5"; mainProgram = "psi-plus"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ orivej unclechu ]; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/networking/instant-messengers/psi/default.nix b/pkgs/applications/networking/instant-messengers/psi/default.nix index 0f386c884cc84..e18931fb6eaec 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/teamspeak/client5.nix b/pkgs/applications/networking/instant-messengers/teamspeak/client5.nix index 12ca1e63b9989..a346b8140b437 100644 --- a/pkgs/applications/networking/instant-messengers/teamspeak/client5.nix +++ b/pkgs/applications/networking/instant-messengers/teamspeak/client5.nix @@ -101,7 +101,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "TeamSpeak voice communication tool (beta version)"; homepage = "https://teamspeak.com/"; license = { @@ -109,7 +109,7 @@ stdenv.mkDerivation rec { url = "https://www.teamspeak.com/en/privacy-and-terms/"; free = false; }; - maintainers = with maintainers; [ jojosch ]; + maintainers = with lib.maintainers; [ jojosch ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/telegram/tg/default.nix b/pkgs/applications/networking/instant-messengers/telegram/tg/default.nix index efa7dffdae711..509317d06aeac 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/tg/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/tg/default.nix @@ -39,11 +39,11 @@ buildPythonApplication rec { doCheck = false; # No tests - meta = with lib; { + meta = { description = "Terminal client for telegram"; mainProgram = "tg"; homepage = "https://github.com/paul-nameless/tg"; - license = licenses.unlicense; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/applications/networking/instant-messengers/vacuum/default.nix b/pkgs/applications/networking/instant-messengers/vacuum/default.nix index b390d62ea9756..b4b9f4873d83d 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 2d631994512bc..767eeda400b13 100644 --- a/pkgs/applications/networking/irc/communi/default.nix +++ b/pkgs/applications/networking/irc/communi/default.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation rec { 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; - maintainers = with maintainers; [ hrdinka ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ hrdinka ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/networking/irc/irssi/default.nix b/pkgs/applications/networking/irc/irssi/default.nix index 4c4a1ccb04df2..4d0843641f1e9 100644 --- a/pkgs/applications/networking/irc/irssi/default.nix +++ b/pkgs/applications/networking/irc/irssi/default.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/applications/networking/irc/kvirc/default.nix b/pkgs/applications/networking/irc/kvirc/default.nix index c68b84fac1cb0..97cfaf285af8a 100644 --- a/pkgs/applications/networking/irc/kvirc/default.nix +++ b/pkgs/applications/networking/irc/kvirc/default.nix @@ -35,11 +35,11 @@ mkDerivation rec { 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/weechat/scripts/autosort/default.nix b/pkgs/applications/networking/irc/weechat/scripts/autosort/default.nix index 5758822dbdae5..38773bfb9cb83 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 7def5ecf90af7..f3273c00cde5e 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 = "buffer_autoset.py is a 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 7cdb408c2f674..af6c76a3c2920 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 b89971bc06865..983f635010fbd 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 5238eb27b17a9..a5e426192e14a 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 = "highmon.pl is a 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 94d40da39e7dc..14e16ab8d5d38 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 b72c4c0963313..733825cba3d62 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 = "url_hint.py is a 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 0bc1513982aa1..f3aa9fb6970d8 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/wee-slack/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/wee-slack/default.nix @@ -46,10 +46,10 @@ 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; - maintainers = with maintainers; [ willibutz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ willibutz ]; 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 c26792dbc0a2f..1968d2956699c 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 rec { 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 e4bbde3915585..b70839645f464 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 = "go.py is a 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 de1b34576a0b1..78f8c7423c928 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 rec { 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/default.nix b/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix/default.nix index 0a9765549b633..65155aecce72d 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 5aebaf7c82cf8..580d1e8a9e3ba 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 e38f415558988..3069b71a77752 100644 --- a/pkgs/applications/networking/irc/weechat/scripts/weechat-otr/default.nix +++ b/pkgs/applications/networking/irc/weechat/scripts/weechat-otr/default.nix @@ -78,10 +78,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 71bd89d3ec152..890c82dd4b563 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/ktailctl/default.nix b/pkgs/applications/networking/ktailctl/default.nix index 821fe67fee87b..6ccc3ec90108f 100644 --- a/pkgs/applications/networking/ktailctl/default.nix +++ b/pkgs/applications/networking/ktailctl/default.nix @@ -87,12 +87,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/applications/networking/linssid/default.nix b/pkgs/applications/networking/linssid/default.nix index 132b68764952e..b120ed78b5493 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/astroid/default.nix b/pkgs/applications/networking/mailreaders/astroid/default.nix index e0a09434a9d91..1bf35e2c813d5 100644 --- a/pkgs/applications/networking/mailreaders/astroid/default.nix +++ b/pkgs/applications/networking/mailreaders/astroid/default.nix @@ -86,15 +86,15 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { homepage = "https://astroidmail.github.io/"; description = "GTK frontend to the notmuch mail system"; mainProgram = "astroid"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ bdimcheff SuprDewd ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/networking/mailreaders/evolution/evolution-ews/default.nix b/pkgs/applications/networking/mailreaders/evolution/evolution-ews/default.nix index 7bfb6d45ef0d1..5640abbf89ae2 100644 --- a/pkgs/applications/networking/mailreaders/evolution/evolution-ews/default.nix +++ b/pkgs/applications/networking/mailreaders/evolution/evolution-ews/default.nix @@ -87,11 +87,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/applications/networking/mailreaders/evolution/evolution/default.nix b/pkgs/applications/networking/mailreaders/evolution/evolution/default.nix index d531362bb9666..6f39e3a6cfcf4 100644 --- a/pkgs/applications/networking/mailreaders/evolution/evolution/default.nix +++ b/pkgs/applications/networking/mailreaders/evolution/evolution/default.nix @@ -127,12 +127,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"; - maintainers = teams.gnome.members; - license = licenses.lgpl2Plus; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/networking/mailreaders/lumail/default.nix b/pkgs/applications/networking/mailreaders/lumail/default.nix index 6bdd543025172..dd47d7a3bbc2f 100644 --- a/pkgs/applications/networking/mailreaders/lumail/default.nix +++ b/pkgs/applications/networking/mailreaders/lumail/default.nix @@ -98,12 +98,12 @@ stdenv.mkDerivation { "LUMAIL_LIBS=$(out)/etc/lumail2" ]; - meta = with lib; { + meta = { description = "Console-based email client"; mainProgram = "lumail2"; homepage = "https://lumail.org/"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/applications/networking/mailreaders/mailnag/default.nix b/pkgs/applications/networking/mailreaders/mailnag/default.nix index 25904e5b44b0f..8bd27462e453b 100644 --- a/pkgs/applications/networking/mailreaders/mailnag/default.nix +++ b/pkgs/applications/networking/mailreaders/mailnag/default.nix @@ -98,12 +98,12 @@ python3Packages.buildPythonApplication rec { done ''; - meta = with lib; { + meta = { description = "Extensible mail notification daemon"; homepage = "https://github.com/pulb/mailnag"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ doronbehar ]; broken = true; # at 2022-09-23 }; } diff --git a/pkgs/applications/networking/mailreaders/mailnag/goa-plugin.nix b/pkgs/applications/networking/mailreaders/mailnag/goa-plugin.nix index 3b32debe0f14e..367db15c206d8 100644 --- a/pkgs/applications/networking/mailreaders/mailnag/goa-plugin.nix +++ b/pkgs/applications/networking/mailreaders/mailnag/goa-plugin.nix @@ -25,11 +25,11 @@ python3Packages.buildPythonPackage rec { gnome-online-accounts ]; - meta = with lib; { + meta = { description = "Mailnag GNOME Online Accounts plugin"; homepage = "https://github.com/pulb/mailnag-goa-plugin"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/applications/networking/mailreaders/notmuch/mutt.nix b/pkgs/applications/networking/mailreaders/notmuch/mutt.nix index 370dc7ebf8fe2..b1c3c950e857d 100644 --- a/pkgs/applications/networking/mailreaders/notmuch/mutt.nix +++ b/pkgs/applications/networking/mailreaders/notmuch/mutt.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { --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/mailreaders/trojita/default.nix b/pkgs/applications/networking/mailreaders/trojita/default.nix index 685d78b0f50b8..742b746ca87a5 100644 --- a/pkgs/applications/networking/mailreaders/trojita/default.nix +++ b/pkgs/applications/networking/mailreaders/trojita/default.nix @@ -69,15 +69,15 @@ mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Qt IMAP e-mail client"; homepage = "http://trojita.flaska.net/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2 gpl3 ]; - maintainers = with maintainers; [ ehmry ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ ehmry ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/networking/mhost/default.nix b/pkgs/applications/networking/mhost/default.nix index 145a68bbfc767..9d9ae3e1f1320 100644 --- a/pkgs/applications/networking/mhost/default.nix +++ b/pkgs/applications/networking/mhost/default.nix @@ -29,14 +29,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/applications/networking/mkchromecast/default.nix b/pkgs/applications/networking/mkchromecast/default.nix index e431ad81b6af4..88cbf2eac0fd3 100644 --- a/pkgs/applications/networking/mkchromecast/default.nix +++ b/pkgs/applications/networking/mkchromecast/default.nix @@ -88,11 +88,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/mpop/default.nix b/pkgs/applications/networking/mpop/default.nix index c0fab98d6102e..9119272f2f648 100644 --- a/pkgs/applications/networking/mpop/default.nix +++ b/pkgs/applications/networking/mpop/default.nix @@ -46,10 +46,10 @@ stdenv.mkDerivation rec { "--with-tls=${sslLibrary}" ] ++ 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/applications/networking/mujmap/default.nix b/pkgs/applications/networking/mujmap/default.nix index b522e29370e5f..fbcb7f1469952 100644 --- a/pkgs/applications/networking/mujmap/default.nix +++ b/pkgs/applications/networking/mujmap/default.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { notmuch ] ++ lib.optional stdenv.hostPlatform.isDarwin Security; - 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/applications/networking/mullvad/libwg.nix b/pkgs/applications/networking/mullvad/libwg.nix index 527ef008c2e71..af5fb0cd962f8 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/ostinato/default.nix b/pkgs/applications/networking/ostinato/default.nix index 5ae05c37776e4..d5a3a05d4da37 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/eiskaltdcpp/default.nix b/pkgs/applications/networking/p2p/eiskaltdcpp/default.nix index 5b122cc3fe558..93b34ab0c73a7 100644 --- a/pkgs/applications/networking/p2p/eiskaltdcpp/default.nix +++ b/pkgs/applications/networking/p2p/eiskaltdcpp/default.nix @@ -87,10 +87,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/jesec-rtorrent/libtorrent.nix b/pkgs/applications/networking/p2p/jesec-rtorrent/libtorrent.nix index 50d250e7efe30..fd71dd187c9ea 100644 --- a/pkgs/applications/networking/p2p/jesec-rtorrent/libtorrent.nix +++ b/pkgs/applications/networking/p2p/jesec-rtorrent/libtorrent.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { gtest ]; - meta = with lib; { + meta = { homepage = "https://github.com/jesec/libtorrent"; description = "BitTorrent library written in C++ for *nix, with focus on high performance and good code (jesec's fork)"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ winter ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ winter ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/networking/p2p/libutp/3.4.nix b/pkgs/applications/networking/p2p/libutp/3.4.nix index ae575bc8c396f..f663548fd2ecb 100644 --- a/pkgs/applications/networking/p2p/libutp/3.4.nix +++ b/pkgs/applications/networking/p2p/libutp/3.4.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { }; }; - 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/applications/networking/p2p/libutp/default.nix b/pkgs/applications/networking/p2p/libutp/default.nix index a9ba52e1b497d..ecc724adbf841 100644 --- a/pkgs/applications/networking/p2p/libutp/default.nix +++ b/pkgs/applications/networking/p2p/libutp/default.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { 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/applications/networking/p2p/retroshare/default.nix b/pkgs/applications/networking/p2p/retroshare/default.nix index 1bc2b7db19c70..48e29311b7a98 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/synapse-bt/default.nix b/pkgs/applications/networking/p2p/synapse-bt/default.nix index ba0200066918d..0c54104ffc829 100644 --- a/pkgs/applications/networking/p2p/synapse-bt/default.nix +++ b/pkgs/applications/networking/p2p/synapse-bt/default.nix @@ -32,10 +32,10 @@ rustPlatform.buildRustPackage rec { 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/applications/networking/p2p/tremotesf/default.nix b/pkgs/applications/networking/p2p/tremotesf/default.nix index 2f2eab6ada89e..93c9184ea4953 100644 --- a/pkgs/applications/networking/p2p/tremotesf/default.nix +++ b/pkgs/applications/networking/p2p/tremotesf/default.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation (finalAttrs: { propagatedBuildInputs = [ wrapQtAppsHook ]; - meta = with lib; { + meta = { description = "Remote GUI for transmission-daemon"; mainProgram = "tremotesf"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://github.com/equeim/tremotesf2"; - maintainers = with maintainers; [ sochotnicky ]; + maintainers = with lib.maintainers; [ sochotnicky ]; }; }) diff --git a/pkgs/applications/networking/protonvpn-cli/2.nix b/pkgs/applications/networking/protonvpn-cli/2.nix index a707832771a69..0cfa8aa13b76f 100644 --- a/pkgs/applications/networking/protonvpn-cli/2.nix +++ b/pkgs/applications/networking/protonvpn-cli/2.nix @@ -42,16 +42,16 @@ buildPythonApplication rec { # No tests doCheck = false; - meta = with lib; { + meta = { description = "Linux command-line client for ProtonVPN using Openvpn"; homepage = "https://github.com/Rafficer/linux-cli-community"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jtcoolen jefflabonte shamilton ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "protonvpn"; }; } diff --git a/pkgs/applications/networking/protonvpn-cli/default.nix b/pkgs/applications/networking/protonvpn-cli/default.nix index a06d76503eb0b..ae77e2099c5aa 100644 --- a/pkgs/applications/networking/protonvpn-cli/default.nix +++ b/pkgs/applications/networking/protonvpn-cli/default.nix @@ -31,12 +31,12 @@ buildPythonApplication rec { # Project has a dummy test doCheck = false; - meta = with lib; { + meta = { description = "Linux command-line client for ProtonVPN"; homepage = "https://github.com/protonvpn/linux-cli"; maintainers = [ ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "protonvpn-cli"; }; } diff --git a/pkgs/applications/networking/qv2ray/default.nix b/pkgs/applications/networking/qv2ray/default.nix index 2e570937f2d7e..8e89b87315b94 100644 --- a/pkgs/applications/networking/qv2ray/default.nix +++ b/pkgs/applications/networking/qv2ray/default.nix @@ -74,15 +74,15 @@ mkDerivation rec { curl ]; - meta = with lib; { + meta = { description = "GUI frontend to v2ray"; homepage = "https://github.com/Qv2ray/Qv2ray"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ poscat rewine ]; - platforms = platforms.all; + platforms = lib.platforms.all; # never built on aarch64-darwin, x86_64-darwin since update to unstable-2022-09-25 broken = stdenv.hostPlatform.isDarwin; mainProgram = "qv2ray"; diff --git a/pkgs/applications/networking/remote/freerdp/3.nix b/pkgs/applications/networking/remote/freerdp/3.nix index a7e7b8574d1e9..1a506d3750fec 100644 --- a/pkgs/applications/networking/remote/freerdp/3.nix +++ b/pkgs/applications/networking/remote/freerdp/3.nix @@ -213,15 +213,15 @@ stdenv.mkDerivation (finalAttrs: { inherit (gnome) gnome-remote-desktop; }; - meta = with lib; { + meta = { description = "Remote Desktop Protocol Client"; longDescription = '' FreeRDP is a client-side implementation of the Remote Desktop Protocol (RDP) following the Microsoft Open Specifications. ''; homepage = "https://www.freerdp.com/"; - license = licenses.asl20; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/applications/networking/remote/x2goclient/default.nix b/pkgs/applications/networking/remote/x2goclient/default.nix index 6500d65151c9e..3128abd739c52 100644 --- a/pkgs/applications/networking/remote/x2goclient/default.nix +++ b/pkgs/applications/networking/remote/x2goclient/default.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation rec { "--set QT_QPA_PLATFORM xcb" ]; - meta = with lib; { + meta = { description = "Graphical NoMachine NX3 remote desktop client"; mainProgram = "x2goclient"; homepage = "http://x2go.org/"; maintainers = [ ]; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/networking/remote/xrdp/default.nix b/pkgs/applications/networking/remote/xrdp/default.nix index 69e8592aa7dd8..4a1760203b186 100644 --- a/pkgs/applications/networking/remote/xrdp/default.nix +++ b/pkgs/applications/networking/remote/xrdp/default.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/applications/networking/sync/acd_cli/default.nix b/pkgs/applications/networking/sync/acd_cli/default.nix index f782cc9937b4f..037fdbc79d37b 100644 --- a/pkgs/applications/networking/sync/acd_cli/default.nix +++ b/pkgs/applications/networking/sync/acd_cli/default.nix @@ -49,10 +49,10 @@ buildPythonApplication rec { lnOverBin acd_cli.py acdcli ''; - meta = with lib; { + meta = { description = "Command line interface and FUSE filesystem for Amazon Cloud Drive"; homepage = "https://github.com/yadayada/acd_cli"; - license = licenses.gpl2; - maintainers = with maintainers; [ edwtjo ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ edwtjo ]; }; } diff --git a/pkgs/applications/networking/sync/casync/default.nix b/pkgs/applications/networking/sync/casync/default.nix index 3e8fa37f5d4b3..62b48d0cc6929 100644 --- a/pkgs/applications/networking/sync/casync/default.nix +++ b/pkgs/applications/networking/sync/casync/default.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation { export LC_ALL="en_US.utf-8" ''; - 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/applications/networking/sync/lsyncd/default.nix b/pkgs/applications/networking/sync/lsyncd/default.nix index c11e062e33e0e..41b163661cab5 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/openrsync/default.nix b/pkgs/applications/networking/sync/openrsync/default.nix index 639ffeec28abd..47170da1da2d4 100644 --- a/pkgs/applications/networking/sync/openrsync/default.nix +++ b/pkgs/applications/networking/sync/openrsync/default.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/applications/networking/sync/rclone/browser.nix b/pkgs/applications/networking/sync/rclone/browser.nix index 272445a047530..87f6af385a494 100644 --- a/pkgs/applications/networking/sync/rclone/browser.nix +++ b/pkgs/applications/networking/sync/rclone/browser.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { buildInputs = [ qtbase ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Graphical Frontend to Rclone written in Qt"; mainProgram = "rclone-browser"; - license = licenses.unlicense; - platforms = platforms.linux; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.unlicense; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/applications/networking/wayback_machine_downloader/default.nix b/pkgs/applications/networking/wayback_machine_downloader/default.nix index d2f0e3a5e30e8..31b8c481e41f4 100644 --- a/pkgs/applications/networking/wayback_machine_downloader/default.nix +++ b/pkgs/applications/networking/wayback_machine_downloader/default.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/applications/office/PageEdit/default.nix b/pkgs/applications/office/PageEdit/default.nix index fc2d43bb2fb2e..6e9ea809b2209 100644 --- a/pkgs/applications/office/PageEdit/default.nix +++ b/pkgs/applications/office/PageEdit/default.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { else null; - meta = with lib; { + meta = { description = "ePub XHTML Visual Editor"; mainProgram = "pageedit"; homepage = "https://sigil-ebook.com/pageedit/"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.pasqui23 ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.pasqui23 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/office/activitywatch/wrapper.nix b/pkgs/applications/office/activitywatch/wrapper.nix index 5ae59a16df3e3..2c598b45739d7 100644 --- a/pkgs/applications/office/activitywatch/wrapper.nix +++ b/pkgs/applications/office/activitywatch/wrapper.nix @@ -19,14 +19,14 @@ symlinkJoin { aw-watcher-window.out ] ++ (lib.forEach extraWatchers (p: p.out)); - meta = with lib; { + meta = { description = "The 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 887ded4779183..f615974aa9cf2 100644 --- a/pkgs/applications/office/beamerpresenter/default.nix +++ b/pkgs/applications/office/beamerpresenter/default.nix @@ -89,15 +89,15 @@ stdenv.mkDerivation rec { qtWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Modular multi screen pdf presentation viewer"; homepage = "https://github.com/stiglers-eponym/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 84e9053537401..5c722dd3549b7 100644 --- a/pkgs/applications/office/beancount/beancount-ing-diba.nix +++ b/pkgs/applications/office/beancount/beancount-ing-diba.nix @@ -30,10 +30,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 f9732bfc5f50e..e823df1ccd874 100644 --- a/pkgs/applications/office/beancount/beancount_share.nix +++ b/pkgs/applications/office/beancount/beancount_share.nix @@ -21,11 +21,11 @@ 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 ]; broken = true; # At 2024-06-29, missing unpacked dependency # https://hydra.nixos.org/build/262800507/nixlog/1 diff --git a/pkgs/applications/office/beebeep/default.nix b/pkgs/applications/office/beebeep/default.nix index 970680b8251a4..e2f2f65f5ab6a 100644 --- a/pkgs/applications/office/beebeep/default.nix +++ b/pkgs/applications/office/beebeep/default.nix @@ -34,12 +34,12 @@ mkDerivation rec { cp * $out/bin ''; - meta = with lib; { + meta = { homepage = "https://www.beebeep.net/"; description = "BeeBEEP is the free office messenger that is indispensable in all those places where privacy and security are an essential requirement"; mainProgram = "beebeep"; - platforms = platforms.linux; - license = licenses.gpl2Only; - maintainers = with maintainers; [ mglolenstine ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ mglolenstine ]; }; } diff --git a/pkgs/applications/office/cb2bib/default.nix b/pkgs/applications/office/cb2bib/default.nix index 96e2ae202815a..ea3e5d9556cd5 100644 --- a/pkgs/applications/office/cb2bib/default.nix +++ b/pkgs/applications/office/cb2bib/default.nix @@ -36,11 +36,11 @@ 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"; - maintainers = with maintainers; [ edwtjo ]; - license = licenses.gpl3; + maintainers = with lib.maintainers; [ edwtjo ]; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/applications/office/kexi/default.nix b/pkgs/applications/office/kexi/default.nix index d081796bddb6b..ac54b75a8da8d 100644 --- a/pkgs/applications/office/kexi/default.nix +++ b/pkgs/applications/office/kexi/default.nix @@ -91,7 +91,7 @@ mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Open source visual database applications creator, a long-awaited competitor for programs like MS Access or Filemaker"; longDescription = '' Kexi is a visual database applications creator. @@ -102,9 +102,9 @@ mkDerivation rec { making it easy to share data and design. ''; homepage = "https://kexi-project.org/"; - maintainers = with maintainers; [ zraexy ]; - platforms = platforms.linux; - license = with licenses; [ + maintainers = with lib.maintainers; [ zraexy ]; + platforms = lib.platforms.linux; + license = with lib.licenses; [ gpl2 lgpl2 ]; diff --git a/pkgs/applications/office/ktimetracker/default.nix b/pkgs/applications/office/ktimetracker/default.nix index 50cd0de5142eb..9881a2f3cd9b9 100644 --- a/pkgs/applications/office/ktimetracker/default.nix +++ b/pkgs/applications/office/ktimetracker/default.nix @@ -51,10 +51,10 @@ mkDerivation rec { kcalendarcore ]; - meta = with lib; { + meta = { description = "Todo management and time tracking application"; mainProgram = "ktimetracker"; - license = licenses.gpl2; + license = lib.licenses.gpl2; homepage = "https://userbase.kde.org/KTimeTracker"; maintainers = [ ]; }; diff --git a/pkgs/applications/office/ledger-web/default.nix b/pkgs/applications/office/ledger-web/default.nix index 5662713bc6a0b..c572255ae83a5 100644 --- a/pkgs/applications/office/ledger-web/default.nix +++ b/pkgs/applications/office/ledger-web/default.nix @@ -17,16 +17,16 @@ 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; [ peterhoeg manveru nicknovitski ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "ledger_web"; }; } diff --git a/pkgs/applications/office/mytetra/default.nix b/pkgs/applications/office/mytetra/default.nix index 53e3fcad15c8c..73a775cd1fdf7 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 da40d64aff0cb..32b3c466e4585 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/pdfmixtool/default.nix b/pkgs/applications/office/pdfmixtool/default.nix index 61443dddcde05..15feb2b215b35 100644 --- a/pkgs/applications/office/pdfmixtool/default.nix +++ b/pkgs/applications/office/pdfmixtool/default.nix @@ -50,11 +50,11 @@ mkDerivation rec { }) ]; - 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/applications/office/qpdfview/default.nix b/pkgs/applications/office/qpdfview/default.nix index ccac3a6e385a8..1b79408c475ed 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/scribus/default.nix b/pkgs/applications/office/scribus/default.nix index c8e6d116bc9a2..6412221aa4671 100644 --- a/pkgs/applications/office/scribus/default.nix +++ b/pkgs/applications/office/scribus/default.nix @@ -67,8 +67,8 @@ stdenv.mkDerivation (finalAttrs: { qt5.qttools ]; - meta = with lib; { - maintainers = with maintainers; [ + meta = { + maintainers = with lib.maintainers; [ arthsmn ]; description = "Desktop Publishing (DTP) and Layout program"; @@ -76,7 +76,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://www.scribus.net"; # There are a lot of licenses... # https://github.com/scribusproject/scribus/blob/20508d69ca4fc7030477db8dee79fd1e012b52d2/COPYING#L15-L19 - license = with licenses; [ + license = with lib.licenses; [ bsd3 gpl2Plus mit diff --git a/pkgs/applications/office/semantik/default.nix b/pkgs/applications/office/semantik/default.nix index 568a5e0ad1424..5c805344b1152 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/skrooge/default.nix b/pkgs/applications/office/skrooge/default.nix index 48caac5889eb9..b4ae3712b0384 100644 --- a/pkgs/applications/office/skrooge/default.nix +++ b/pkgs/applications/office/skrooge/default.nix @@ -79,10 +79,10 @@ 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/applications/office/tagainijisho/default.nix b/pkgs/applications/office/tagainijisho/default.nix index 6915ded792e58..74cc6d1a034a8 100644 --- a/pkgs/applications/office/tagainijisho/default.nix +++ b/pkgs/applications/office/tagainijisho/default.nix @@ -32,17 +32,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/office/timetrap/default.nix b/pkgs/applications/office/timetrap/default.nix index cfb1c0a62fc93..8b5d8db03a44b 100644 --- a/pkgs/applications/office/timetrap/default.nix +++ b/pkgs/applications/office/timetrap/default.nix @@ -48,15 +48,15 @@ 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; }; } diff --git a/pkgs/applications/plasma-mobile/plasma-dialer.nix b/pkgs/applications/plasma-mobile/plasma-dialer.nix index e741de2974f60..3ee926a707fc0 100644 --- a/pkgs/applications/plasma-mobile/plasma-dialer.nix +++ b/pkgs/applications/plasma-mobile/plasma-dialer.nix @@ -78,11 +78,11 @@ mkDerivation rec { "-DDIALER_BUILD_SHELL_OVERLAY=OFF" ]; - meta = with lib; { + meta = { description = "Dialer for Plasma Mobile"; mainProgram = "plasmaphonedialer"; homepage = "https://invent.kde.org/plasma-mobile/plasma-dialer"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/applications/plasma-mobile/plasma-phonebook.nix b/pkgs/applications/plasma-mobile/plasma-phonebook.nix index 00bf96db6ec16..902feaa36a72a 100644 --- a/pkgs/applications/plasma-mobile/plasma-phonebook.nix +++ b/pkgs/applications/plasma-mobile/plasma-phonebook.nix @@ -32,12 +32,12 @@ mkDerivation rec { qtquickcontrols2 ]; - meta = with lib; { + meta = { description = "Phone book for Plasma Mobile"; mainProgram = "plasma-phonebook"; homepage = "https://invent.kde.org/plasma-mobile/plasma-phonebook"; # https://invent.kde.org/plasma-mobile/plasma-phonebook/-/commit/3ac27760417e51c051c5dd44155c3f42dd000e4f - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/applications/plasma-mobile/plasma-settings.nix b/pkgs/applications/plasma-mobile/plasma-settings.nix index 39465ab00ec68..0b69717434aac 100644 --- a/pkgs/applications/plasma-mobile/plasma-settings.nix +++ b/pkgs/applications/plasma-mobile/plasma-settings.nix @@ -48,12 +48,12 @@ mkDerivation rec { util-linux ]; - meta = with lib; { + meta = { description = "Settings application for Plasma Mobile"; mainProgram = "plasma-settings"; homepage = "https://invent.kde.org/plasma-mobile/plasma-settings"; # https://invent.kde.org/plasma-mobile/plasma-settings/-/commit/a59007f383308503e59498b3036e1483bca26e35 - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/applications/plasma-mobile/spacebar.nix b/pkgs/applications/plasma-mobile/spacebar.nix index 2b8b065d63b33..55a2b9b077bcb 100644 --- a/pkgs/applications/plasma-mobile/spacebar.nix +++ b/pkgs/applications/plasma-mobile/spacebar.nix @@ -48,11 +48,11 @@ mkDerivation { qtquickcontrols2 ]; - meta = with lib; { + meta = { description = "SMS application for Plasma Mobile"; mainProgram = "spacebar"; homepage = "https://invent.kde.org/plasma-mobile/spacebar"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/applications/radio/btlejack/default.nix b/pkgs/applications/radio/btlejack/default.nix index b4e6e30961bbc..f33eca274dbb0 100644 --- a/pkgs/applications/radio/btlejack/default.nix +++ b/pkgs/applications/radio/btlejack/default.nix @@ -26,11 +26,11 @@ buildPythonApplication rec { halo ]; - meta = with lib; { + meta = { homepage = "https://github.com/virtualabs/btlejack"; description = "Bluetooth Low Energy Swiss-army knife"; mainProgram = "btlejack"; - license = licenses.mit; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/applications/radio/cqrlog/default.nix b/pkgs/applications/radio/cqrlog/default.nix index 935585761d701..68f90e7b527f1 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/cubicsdr/default.nix b/pkgs/applications/radio/cubicsdr/default.nix index 2fe9dffa6f8b1..5f5fb1c806f5f 100644 --- a/pkgs/applications/radio/cubicsdr/default.nix +++ b/pkgs/applications/radio/cubicsdr/default.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DUSE_HAMLIB=ON" ] ++ lib.optional enableDigitalLab "-DENABLE_DIGITAL_LAB=ON"; - 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/applications/radio/direwolf/default.nix b/pkgs/applications/radio/direwolf/default.nix index f35f66ecc2a4a..5ed7898684d99 100644 --- a/pkgs/applications/radio/direwolf/default.nix +++ b/pkgs/applications/radio/direwolf/default.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation rec { --replace espeak ${espeak}/bin/espeak ''; - meta = with lib; { + meta = { description = "Soundcard Packet TNC, APRS Digipeater, IGate, APRStt gateway"; homepage = "https://github.com/wb2osz/direwolf/"; - license = licenses.gpl2; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ lasandell sarcasticadmin ]; diff --git a/pkgs/applications/radio/fldigi/default.nix b/pkgs/applications/radio/fldigi/default.nix index c759b83b546bd..9c16dca6bcac0 100644 --- a/pkgs/applications/radio/fldigi/default.nix +++ b/pkgs/applications/radio/fldigi/default.nix @@ -50,14 +50,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/gqrx/default.nix b/pkgs/applications/radio/gqrx/default.nix index a74aead0f80f8..ced04d0f8446e 100644 --- a/pkgs/applications/radio/gqrx/default.nix +++ b/pkgs/applications/radio/gqrx/default.nix @@ -87,7 +87,7 @@ gnuradioMinimal.pkgs.mkDerivation rec { qtWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Software defined radio (SDR) receiver"; mainProgram = "gqrx"; longDescription = '' @@ -99,9 +99,9 @@ gnuradioMinimal.pkgs.mkDerivation rec { homepage = "https://gqrx.dk/"; # Some of the code comes from the Cutesdr project, with a BSD license, but # it's currently unknown which version of the BSD license that is. - license = licenses.gpl3Plus; - platforms = platforms.linux; # should work on Darwin / macOS too - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; # should work on Darwin / macOS too + maintainers = with lib.maintainers; [ bjornfor fpletz ]; diff --git a/pkgs/applications/radio/guglielmo/default.nix b/pkgs/applications/radio/guglielmo/default.nix index 9836d03ee8511..83bf69f234683 100644 --- a/pkgs/applications/radio/guglielmo/default.nix +++ b/pkgs/applications/radio/guglielmo/default.nix @@ -53,12 +53,12 @@ mkDerivation rec { patchelf --add-rpath "${airspy}/lib:${rtl-sdr}/lib" $out/bin/.guglielmo-wrapped ''; - meta = with lib; { + meta = { description = "Qt based FM / Dab tuner"; mainProgram = "guglielmo"; homepage = "https://github.com/marcogrecopriolo/guglielmo"; - license = licenses.gpl2Only; - maintainers = [ maintainers.markuskowa ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.markuskowa ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/radio/js8call/default.nix b/pkgs/applications/radio/js8call/default.nix index 3b4e247e36098..4c1dc50ae7d6c 100644 --- a/pkgs/applications/radio/js8call/default.nix +++ b/pkgs/applications/radio/js8call/default.nix @@ -52,15 +52,15 @@ stdenv.mkDerivation rec { patches = [ ./cmake.patch ]; - 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; [ melling ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ melling ]; }; } diff --git a/pkgs/applications/radio/klog/default.nix b/pkgs/applications/radio/klog/default.nix index 9ac067a418970..3625d4a191e4a 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/pothos/default.nix b/pkgs/applications/radio/pothos/default.nix index 641df521c7fd8..d00af83a56622 100644 --- a/pkgs/applications/radio/pothos/default.nix +++ b/pkgs/applications/radio/pothos/default.nix @@ -86,11 +86,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/qlog/default.nix b/pkgs/applications/radio/qlog/default.nix index 40720def672c3..39fa584a39624 100644 --- a/pkgs/applications/radio/qlog/default.nix +++ b/pkgs/applications/radio/qlog/default.nix @@ -49,15 +49,15 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "Amateur radio logbook software"; mainProgram = "qlog"; - license = with licenses; [ gpl3Only ]; + license = with lib.licenses; [ gpl3Only ]; homepage = "https://github.com/foldynl/QLog"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ oliver-koss mkg20001 ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/applications/radio/qsstv/default.nix b/pkgs/applications/radio/qsstv/default.nix index ba49faf73e39a..f5485d03598e8 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 = "http://users.telenet.be/on4qz/"; - platforms = platforms.linux; + platforms = lib.platforms.linux; license = lib.licenses.gpl3; maintainers = with lib.maintainers; [ hax404 ]; }; diff --git a/pkgs/applications/radio/sdr-j-fm/default.nix b/pkgs/applications/radio/sdr-j-fm/default.nix index 23be0ff1ac701..1dd1015975814 100644 --- a/pkgs/applications/radio/sdr-j-fm/default.nix +++ b/pkgs/applications/radio/sdr-j-fm/default.nix @@ -65,13 +65,13 @@ stdenv.mkDerivation (finalAttrs: { mv $out/linux-bin $out/bin ''; - meta = with lib; { + meta = { description = "SDR based FM radio receiver software"; homepage = "https://github.com/JvanKatwijk/sdr-j-fm"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ doronbehar ]; # Upstream doesn't find libusb1 on Darwin. Upstream probably doesn't # support it officially. - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/radio/sdrpp/default.nix b/pkgs/applications/radio/sdrpp/default.nix index 6e140c25bffd1..c88ea9c4595be 100644 --- a/pkgs/applications/radio/sdrpp/default.nix +++ b/pkgs/applications/radio/sdrpp/default.nix @@ -174,12 +174,12 @@ stdenv.mkDerivation rec { 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; - platforms = platforms.unix; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sikmir ]; mainProgram = "sdrpp"; }; } diff --git a/pkgs/applications/radio/sigdigger/default.nix b/pkgs/applications/radio/sigdigger/default.nix index 6e344c84d625f..36c8c2f82a759 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/soapyairspy/default.nix b/pkgs/applications/radio/soapyairspy/default.nix index 975a7dc1c261a..2976e8bfa122b 100644 --- a/pkgs/applications/radio/soapyairspy/default.nix +++ b/pkgs/applications/radio/soapyairspy/default.nix @@ -35,11 +35,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/applications/radio/soapyaudio/default.nix b/pkgs/applications/radio/soapyaudio/default.nix index 003561495c1b1..0be2214315df1 100644 --- a/pkgs/applications/radio/soapyaudio/default.nix +++ b/pkgs/applications/radio/soapyaudio/default.nix @@ -52,11 +52,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/applications/radio/soapybladerf/default.nix b/pkgs/applications/radio/soapybladerf/default.nix index 1def3e822fe10..d53fe0c966e79 100644 --- a/pkgs/applications/radio/soapybladerf/default.nix +++ b/pkgs/applications/radio/soapybladerf/default.nix @@ -43,11 +43,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/applications/radio/soapyhackrf/default.nix b/pkgs/applications/radio/soapyhackrf/default.nix index 949e5b5bff9da..079aea7df2c2e 100644 --- a/pkgs/applications/radio/soapyhackrf/default.nix +++ b/pkgs/applications/radio/soapyhackrf/default.nix @@ -43,11 +43,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/applications/radio/soapyrtlsdr/default.nix b/pkgs/applications/radio/soapyrtlsdr/default.nix index 16dd80a12cbc0..aa4d1bb578f1a 100644 --- a/pkgs/applications/radio/soapyrtlsdr/default.nix +++ b/pkgs/applications/radio/soapyrtlsdr/default.nix @@ -39,14 +39,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/applications/radio/soapysdr/default.nix b/pkgs/applications/radio/soapysdr/default.nix index de3420fb7c79c..e06374bc23404 100644 --- a/pkgs/applications/radio/soapysdr/default.nix +++ b/pkgs/applications/radio/soapysdr/default.nix @@ -69,16 +69,16 @@ stdenv.mkDerivation (finalAttrs: { searchPath = "lib/SoapySDR/modules${lib.versions.majorMinor finalAttrs.version}"; }; - 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/soapyuhd/default.nix b/pkgs/applications/radio/soapyuhd/default.nix index 062a5c17bf031..579c2b9e96a23 100644 --- a/pkgs/applications/radio/soapyuhd/default.nix +++ b/pkgs/applications/radio/soapyuhd/default.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { 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/applications/radio/suwidgets/default.nix b/pkgs/applications/radio/suwidgets/default.nix index 84fa92ef53527..5c20091cd3d0f 100644 --- a/pkgs/applications/radio/suwidgets/default.nix +++ b/pkgs/applications/radio/suwidgets/default.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { "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/svxlink/default.nix b/pkgs/applications/radio/svxlink/default.nix index 156ba47147629..2916a2d8bfc59 100644 --- a/pkgs/applications/radio/svxlink/default.nix +++ b/pkgs/applications/radio/svxlink/default.nix @@ -87,15 +87,15 @@ stdenv.mkDerivation rec { wrapQtApp $out/bin/qtel ''; - meta = with lib; { + meta = { description = "Advanced repeater controller and EchoLink software"; longDescription = '' Advanced repeater controller and EchoLink software for Linux including a GUI, Qtel - The Qt EchoLink client ''; homepage = "http://www.svxlink.org/"; - license = with licenses; [ gpl2 ]; - maintainers = with maintainers; [ zaninime ]; - platforms = platforms.linux; + license = with lib.licenses; [ gpl2 ]; + maintainers = with lib.maintainers; [ zaninime ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/radio/wsjtx/default.nix b/pkgs/applications/radio/wsjtx/default.nix index ef3eb6b003f6c..1cbda83d0cf76 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 659462ffebf8e..4edffb48efbb9 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/astronomy/kstars/default.nix b/pkgs/applications/science/astronomy/kstars/default.nix index 205981c1b0050..cd096cccf4e60 100644 --- a/pkgs/applications/science/astronomy/kstars/default.nix +++ b/pkgs/applications/science/astronomy/kstars/default.nix @@ -87,7 +87,7 @@ stdenv.mkDerivation (finalAttrs: { "-DXPLANET_PREFIX=${xplanet}" ]; - 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 hjones2199 ]; diff --git a/pkgs/applications/science/biology/cd-hit/default.nix b/pkgs/applications/science/biology/cd-hit/default.nix index 8a0faae9e63ed..0e3e4cd407506 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 51f12d9ae6eac..3dc111d2e402f 100644 --- a/pkgs/applications/science/biology/hh-suite/default.nix +++ b/pkgs/applications/science/biology/hh-suite/default.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { buildInputs = lib.optional stdenv.cc.isClang openmp ++ lib.optional enableMpi mpi; - 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/biology/iv/default.nix b/pkgs/applications/science/biology/iv/default.nix index 32a32488c7345..69aad4c8d531d 100644 --- a/pkgs/applications/science/biology/iv/default.nix +++ b/pkgs/applications/science/biology/iv/default.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { patchelf --add-needed ${libX11}/lib/libX11.so $out/lib/libIVhines.so ''; - meta = with lib; { + meta = { description = "InterViews graphical library for Neuron"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "http://www.neuron.yale.edu/neuron"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/science/biology/kallisto/default.nix b/pkgs/applications/science/biology/kallisto/default.nix index 9ba81327710df..1ca4489a450a0 100644 --- a/pkgs/applications/science/biology/kallisto/default.nix +++ b/pkgs/applications/science/biology/kallisto/default.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Program for quantifying abundances of transcripts from RNA-Seq data"; mainProgram = "kallisto"; homepage = "https://pachterlab.github.io/kallisto"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = with maintainers; [ arcadio ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ arcadio ]; }; } diff --git a/pkgs/applications/science/biology/minc-tools/default.nix b/pkgs/applications/science/biology/minc-tools/default.nix index d4b98fce87197..ab970a3779c91 100644 --- a/pkgs/applications/science/biology/minc-tools/default.nix +++ b/pkgs/applications/science/biology/minc-tools/default.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://github.com/BIC-MNI/minc-tools"; description = "Command-line utilities for working with MINC files"; - 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/applications/science/biology/mrtrix/default.nix b/pkgs/applications/science/biology/mrtrix/default.nix index ba268b46faada..dede0e567f594 100644 --- a/pkgs/applications/science/biology/mrtrix/default.nix +++ b/pkgs/applications/science/biology/mrtrix/default.nix @@ -107,12 +107,12 @@ stdenv.mkDerivation rec { 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/applications/science/biology/obitools/obitools3.nix b/pkgs/applications/science/biology/obitools/obitools3.nix index 8470b37699de0..11b2303667dc4 100644 --- a/pkgs/applications/science/biology/obitools/obitools3.nix +++ b/pkgs/applications/science/biology/obitools/obitools3.nix @@ -35,12 +35,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/applications/science/biology/samtools/default.nix b/pkgs/applications/science/biology/samtools/default.nix index f7426dd112709..dd0864ce9a661 100644 --- a/pkgs/applications/science/biology/samtools/default.nix +++ b/pkgs/applications/science/biology/samtools/default.nix @@ -46,12 +46,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/applications/science/biology/samtools/samtools_0_1_19.nix b/pkgs/applications/science/biology/samtools/samtools_0_1_19.nix index dddf33a536b3f..a88b307ccb894 100644 --- a/pkgs/applications/science/biology/samtools/samtools_0_1_19.nix +++ b/pkgs/applications/science/biology/samtools/samtools_0_1_19.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { cp samtools.1 $out/share/man ''; - meta = with lib; { + meta = { description = "Tools for manipulating SAM/BAM/CRAM format"; mainProgram = "samtools"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://samtools.sourceforge.net/"; - platforms = platforms.unix; - maintainers = [ maintainers.unode ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.unode ]; }; } diff --git a/pkgs/applications/science/biology/sumatools/default.nix b/pkgs/applications/science/biology/sumatools/default.nix index fc07cd661c564..6af586d34ffd0 100644 --- a/pkgs/applications/science/biology/sumatools/default.nix +++ b/pkgs/applications/science/biology/sumatools/default.nix @@ -7,11 +7,11 @@ let stdenv = gccStdenv; - meta = with lib; { + meta = { description = "Fast and exact comparison and clustering of sequences"; homepage = "https://metabarcoding.org/sumatra"; - maintainers = [ maintainers.bzizou ]; - platforms = platforms.unix; + maintainers = [ lib.maintainers.bzizou ]; + platforms = lib.platforms.unix; }; in diff --git a/pkgs/applications/science/chemistry/avogadro2/default.nix b/pkgs/applications/science/chemistry/avogadro2/default.nix index a7b3e656b77cd..bfce21ae285a8 100644 --- a/pkgs/applications/science/chemistry/avogadro2/default.nix +++ b/pkgs/applications/science/chemistry/avogadro2/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { 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/marvin/default.nix b/pkgs/applications/science/chemistry/marvin/default.nix index dc1822bfa59da..215888e9e1439 100644 --- a/pkgs/applications/science/chemistry/marvin/default.nix +++ b/pkgs/applications/science/chemistry/marvin/default.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/applications/science/chemistry/siesta/default.nix b/pkgs/applications/science/chemistry/siesta/default.nix index 2d662a407dc89..aada3f9b15cfb 100644 --- a/pkgs/applications/science/chemistry/siesta/default.nix +++ b/pkgs/applications/science/chemistry/siesta/default.nix @@ -81,7 +81,7 @@ stdenv.mkDerivation rec { cp -a siesta $out/bin ''; - meta = with lib; { + meta = { description = "First-principles materials simulation code using DFT"; mainProgram = "siesta"; longDescription = '' @@ -98,8 +98,8 @@ stdenv.mkDerivation rec { and all-electron methods. ''; homepage = "https://siesta-project.org/siesta/"; - license = licenses.gpl2; + license = lib.licenses.gpl2; platforms = [ "x86_64-linux" ]; - maintainers = [ maintainers.costrouc ]; + maintainers = [ lib.maintainers.costrouc ]; }; } diff --git a/pkgs/applications/science/computer-architecture/timeloop/default.nix b/pkgs/applications/science/computer-architecture/timeloop/default.nix index 627773ef7b9a8..2fb0472b79b8b 100644 --- a/pkgs/applications/science/computer-architecture/timeloop/default.nix +++ b/pkgs/applications/science/computer-architecture/timeloop/default.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/applications/science/electronics/appcsxcad/default.nix b/pkgs/applications/science/electronics/appcsxcad/default.nix index 36b029b5f0dc9..bd484304c865c 100644 --- a/pkgs/applications/science/electronics/appcsxcad/default.nix +++ b/pkgs/applications/science/electronics/appcsxcad/default.nix @@ -45,12 +45,12 @@ mkDerivation { rm $out/bin/AppCSXCAD.sh ''; - meta = with lib; { + meta = { description = "Minimal Application using the QCSXCAD library"; mainProgram = "AppCSXCAD"; homepage = "https://github.com/thliebig/AppCSXCAD"; - 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/applications/science/electronics/degate/default.nix b/pkgs/applications/science/electronics/degate/default.nix index 5e328890d48d2..49b721ee445c5 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/dsview/default.nix b/pkgs/applications/science/electronics/dsview/default.nix index 0141bd2ebadc4..a6ba67618fc5e 100644 --- a/pkgs/applications/science/electronics/dsview/default.nix +++ b/pkgs/applications/science/electronics/dsview/default.nix @@ -49,13 +49,13 @@ stdenv.mkDerivation rec { python3 ] ++ lib.optional stdenv.hostPlatform.isLinux qtwayland; - meta = with lib; { + meta = { description = "GUI program for supporting various instruments from DreamSourceLab, including logic analyzer, oscilloscope, etc"; mainProgram = "DSView"; homepage = "https://www.dreamsourcelab.com/"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bachp carlossless ]; diff --git a/pkgs/applications/science/electronics/flatcam/default.nix b/pkgs/applications/science/electronics/flatcam/default.nix index 0cefff6dc47e6..6c13b6bd1413c 100644 --- a/pkgs/applications/science/electronics/flatcam/default.nix +++ b/pkgs/applications/science/electronics/flatcam/default.nix @@ -98,10 +98,10 @@ buildPythonApplication rec { mv $out/bin/flatcam{-beta,} ''; - meta = with lib; { + meta = { description = "2-D post processing for PCB fabrication on CNC routers"; homepage = "https://bitbucket.org/jpcgt/flatcam"; - license = licenses.mit; - maintainers = with maintainers; [ trepetti ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ trepetti ]; }; } diff --git a/pkgs/applications/science/electronics/geda/default.nix b/pkgs/applications/science/electronics/geda/default.nix index 8efcbd3bae83f..b7d68cb99b38f 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/hal-hardware-analyzer/default.nix b/pkgs/applications/science/electronics/hal-hardware-analyzer/default.nix index 1f42d5ae2a624..6b674a2c6ba58 100644 --- a/pkgs/applications/science/electronics/hal-hardware-analyzer/default.nix +++ b/pkgs/applications/science/electronics/hal-hardware-analyzer/default.nix @@ -116,13 +116,13 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { 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/applications/science/electronics/librepcb/default.nix b/pkgs/applications/science/electronics/librepcb/default.nix index ef645d36b079d..e9a7e6bd9a034 100644 --- a/pkgs/applications/science/electronics/librepcb/default.nix +++ b/pkgs/applications/science/electronics/librepcb/default.nix @@ -35,14 +35,14 @@ stdenv.mkDerivation rec { ]; buildInputs = [ qtbase ]; - 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 e121c6c005f09..f5732554d9d71 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/openroad/default.nix b/pkgs/applications/science/electronics/openroad/default.nix index e6278d57f1601..f9a557c22c96a 100644 --- a/pkgs/applications/science/electronics/openroad/default.nix +++ b/pkgs/applications/science/electronics/openroad/default.nix @@ -131,14 +131,14 @@ mkDerivation rec { $out/bin/sta -version ''; - meta = with lib; { + meta = { description = "OpenROAD's unified application implementing an RTL-to-GDS flow"; homepage = "https://theopenroadproject.org"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ trepetti hzeller ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/science/electronics/pulseview/default.nix b/pkgs/applications/science/electronics/pulseview/default.nix index 2e59358072c71..dc6d651850c01 100644 --- a/pkgs/applications/science/electronics/pulseview/default.nix +++ b/pkgs/applications/science/electronics/pulseview/default.nix @@ -54,15 +54,15 @@ stdenv.mkDerivation rec { qtsvg ] ++ 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/electronics/xyce/default.nix b/pkgs/applications/science/electronics/xyce/default.nix index 6ad07b3f35cb6..964cb628f1f79 100644 --- a/pkgs/applications/science/electronics/xyce/default.nix +++ b/pkgs/applications/science/electronics/xyce/default.nix @@ -195,7 +195,7 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) || stdenv.hostPlatform.isDarwin; description = "High-performance analog circuit simulator"; @@ -205,8 +205,8 @@ stdenv.mkDerivation rec { large-scale parallel computing platforms. ''; homepage = "https://xyce.sandia.gov"; - license = licenses.gpl3; - maintainers = with maintainers; [ fbeffa ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ fbeffa ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/science/logic/cubicle/default.nix b/pkgs/applications/science/logic/cubicle/default.nix index 1aef01858dbc5..3ae32c35811b3 100644 --- a/pkgs/applications/science/logic/cubicle/default.nix +++ b/pkgs/applications/science/logic/cubicle/default.nix @@ -38,12 +38,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 6c0f500816cda..8c5f6b146d1b7 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 d4daf57961f45..f515e5c9f3af3 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/eprover/default.nix b/pkgs/applications/science/logic/eprover/default.nix index ffae8cc79e0f3..f2c0d69a525a9 100644 --- a/pkgs/applications/science/logic/eprover/default.nix +++ b/pkgs/applications/science/logic/eprover/default.nix @@ -29,14 +29,14 @@ stdenv.mkDerivation rec { "--enable-ho" ]; - meta = with lib; { + meta = { description = "Automated theorem prover for full first-order logic with equality"; homepage = "http://www.eprover.org/"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ raskin gebner ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/science/logic/hol_light/default.nix b/pkgs/applications/science/logic/hol_light/default.nix index 92c6456b39185..c5acda6fcd97d 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 maggesi vbgl diff --git a/pkgs/applications/science/logic/klee/klee-uclibc.nix b/pkgs/applications/science/logic/klee/klee-uclibc.nix index 695ff369d96c1..31ffc0d18aa36 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 d26b2f06a97b8..7d478ad0b5276 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/spass/default.nix b/pkgs/applications/science/logic/spass/default.nix index fff6a6b0858be..b70f3f081e952 100644 --- a/pkgs/applications/science/logic/spass/default.nix +++ b/pkgs/applications/science/logic/spass/default.nix @@ -39,13 +39,13 @@ stdenv.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/applications/science/logic/vampire/default.nix b/pkgs/applications/science/logic/vampire/default.nix index 65ec0b8d97211..061ae389d70d6 100644 --- a/pkgs/applications/science/logic/vampire/default.nix +++ b/pkgs/applications/science/logic/vampire/default.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { install -m0755 -D vampire_z3_rel* $out/bin/vampire ''; - meta = with lib; { + meta = { homepage = "https://vprover.github.io/"; description = "Vampire Theorem Prover"; mainProgram = "vampire"; - platforms = platforms.unix; - license = licenses.bsd3; - maintainers = with maintainers; [ gebner ]; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ gebner ]; }; } diff --git a/pkgs/applications/science/logic/verit/default.nix b/pkgs/applications/science/logic/verit/default.nix index fa4cfef4e53e5..05d32072b7c85 100644 --- a/pkgs/applications/science/logic/verit/default.nix +++ b/pkgs/applications/science/logic/verit/default.nix @@ -33,11 +33,11 @@ stdenv.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; - maintainers = [ maintainers.gebner ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.gebner ]; }; } diff --git a/pkgs/applications/science/logic/why3/default.nix b/pkgs/applications/science/logic/why3/default.nix index 8c1cedc9ef7d1..64a7a40b3264f 100644 --- a/pkgs/applications/science/logic/why3/default.nix +++ b/pkgs/applications/science/logic/why3/default.nix @@ -103,12 +103,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/logic/yices/default.nix b/pkgs/applications/science/logic/yices/default.nix index 937643c4abdea..53623220812f6 100644 --- a/pkgs/applications/science/logic/yices/default.nix +++ b/pkgs/applications/science/logic/yices/default.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; doCheck = true; - meta = with lib; { + meta = { description = "High-performance theorem prover and SMT solver"; homepage = "https://yices.csl.sri.com"; - license = licenses.gpl3; - platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.gpl3; + platforms = with lib.platforms; linux ++ darwin; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/applications/science/machine-learning/finalfrontier/default.nix b/pkgs/applications/science/machine-learning/finalfrontier/default.nix index c388a55cb5eb8..ee1308f10668b 100644 --- a/pkgs/applications/science/machine-learning/finalfrontier/default.nix +++ b/pkgs/applications/science/machine-learning/finalfrontier/default.nix @@ -45,11 +45,11 @@ rustPlatform.buildRustPackage rec { 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 = [ ]; }; } diff --git a/pkgs/applications/science/machine-learning/finalfusion-utils/default.nix b/pkgs/applications/science/machine-learning/finalfusion-utils/default.nix index 4357b8ca2e550..4ff106ec180ce 100644 --- a/pkgs/applications/science/machine-learning/finalfusion-utils/default.nix +++ b/pkgs/applications/science/machine-learning/finalfusion-utils/default.nix @@ -48,10 +48,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/applications/science/math/engauge-digitizer/default.nix b/pkgs/applications/science/math/engauge-digitizer/default.nix index f2f87a42ab8a4..12685b9c788cb 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 7b1a54e46666b..b1ebd381d42ec 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 = "LabPlot is a 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 63722349629da..cf063a25ff606 100644 --- a/pkgs/applications/science/math/lp_solve/default.nix +++ b/pkgs/applications/science/math/lp_solve/default.nix @@ -62,12 +62,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/pari/gp2c.nix b/pkgs/applications/science/math/pari/gp2c.nix index 935a52934a9a4..7ca4ac6b11e55 100644 --- a/pkgs/applications/science/math/pari/gp2c.nix +++ b/pkgs/applications/science/math/pari/gp2c.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { "--with-perl=${perl}/bin/perl" ]; - meta = with lib; { + meta = { homepage = "http://pari.math.u-bordeaux.fr/"; description = "Compiler to translate GP scripts to PARI programs"; downloadPage = "http://pari.math.u-bordeaux.fr/download.html"; diff --git a/pkgs/applications/science/math/wxmaxima/default.nix b/pkgs/applications/science/math/wxmaxima/default.nix index bb363c9f537af..e94d9c6bf0861 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/boinc/default.nix b/pkgs/applications/science/misc/boinc/default.nix index 6ac7ef85e0752..91fa0fa95187b 100644 --- a/pkgs/applications/science/misc/boinc/default.nix +++ b/pkgs/applications/science/misc/boinc/default.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/applications/science/misc/gplates/default.nix b/pkgs/applications/science/misc/gplates/default.nix index 2c49536d993d8..435ed3f28a446 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/megam/default.nix b/pkgs/applications/science/misc/megam/default.nix index 1199a7b71ca9c..bd179c0409e39 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 = "non-commercial"; - maintainers = with maintainers; [ leixb ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ leixb ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/science/misc/nextinspace/default.nix b/pkgs/applications/science/misc/nextinspace/default.nix index b6e27482ee596..d5e597b028358 100644 --- a/pkgs/applications/science/misc/nextinspace/default.nix +++ b/pkgs/applications/science/misc/nextinspace/default.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; - maintainers = with maintainers; [ penguwin ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ penguwin ]; }; } diff --git a/pkgs/applications/science/misc/openmodelica/combined/default.nix b/pkgs/applications/science/misc/openmodelica/combined/default.nix index e7649374cc67e..c47c24e36d6ce 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 3d08916482673..a1effe34cdad4 100644 --- a/pkgs/applications/science/misc/openmodelica/omcompiler/default.nix +++ b/pkgs/applications/science/misc/openmodelica/omcompiler/default.nix @@ -67,15 +67,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 d06b4a40d13b0..977c41f90c408 100644 --- a/pkgs/applications/science/misc/openmodelica/omedit/default.nix +++ b/pkgs/applications/science/misc/openmodelica/omedit/default.nix @@ -46,14 +46,14 @@ mkOpenModelicaDerivation rec { 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/omplot/default.nix b/pkgs/applications/science/misc/openmodelica/omplot/default.nix index 1469022626ee1..1e37648241001 100644 --- a/pkgs/applications/science/misc/openmodelica/omplot/default.nix +++ b/pkgs/applications/science/misc/openmodelica/omplot/default.nix @@ -30,14 +30,14 @@ mkOpenModelicaDerivation rec { 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 cbbf445246870..299ca30fc04bb 100644 --- a/pkgs/applications/science/misc/openmodelica/omshell/default.nix +++ b/pkgs/applications/science/misc/openmodelica/omshell/default.nix @@ -45,14 +45,14 @@ mkOpenModelicaDerivation rec { 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 e344bf2494e32..b19e85350738d 100644 --- a/pkgs/applications/science/misc/openmodelica/omsimulator/default.nix +++ b/pkgs/applications/science/misc/openmodelica/omsimulator/default.nix @@ -35,14 +35,14 @@ mkOpenModelicaDerivation rec { "-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/misc/rink/default.nix b/pkgs/applications/science/misc/rink/default.nix index 1a20a122f39bb..2fa6946b559ca 100644 --- a/pkgs/applications/science/misc/rink/default.nix +++ b/pkgs/applications/science/misc/rink/default.nix @@ -55,15 +55,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 Br1ght0ne ]; diff --git a/pkgs/applications/science/molecular-dynamics/raspa/data.nix b/pkgs/applications/science/molecular-dynamics/raspa/data.nix index 642548fca205d..2b43881fce8ed 100644 --- a/pkgs/applications/science/molecular-dynamics/raspa/data.nix +++ b/pkgs/applications/science/molecular-dynamics/raspa/data.nix @@ -25,7 +25,7 @@ stdenvNoCC.mkDerivation rec { # Keep the shebangs of the examples from being patched dontPatchShebangs = true; - meta = with lib; { + meta = { inherit (raspa.meta) homepage license maintainers; description = "Example packs and documentation of RASPA"; outputsToInstall = [ diff --git a/pkgs/applications/science/molecular-dynamics/raspa/default.nix b/pkgs/applications/science/molecular-dynamics/raspa/default.nix index 3830e3e72e06c..29c4c6065508e 100644 --- a/pkgs/applications/science/molecular-dynamics/raspa/default.nix +++ b/pkgs/applications/science/molecular-dynamics/raspa/default.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/applications/science/physics/MCFM/default.nix b/pkgs/applications/science/physics/MCFM/default.nix index dc508d6eefcf2..98b028c4da75c 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/xflr5/default.nix b/pkgs/applications/science/physics/xflr5/default.nix index 853dc377c5181..a795bb08e3f21 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 ff3cee1e5f59d..d84a1979eda0f 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 32f442fc688a9..701fe8c39d21a 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/applications/system/qjournalctl/default.nix b/pkgs/applications/system/qjournalctl/default.nix index 972f688d95962..4dff8fcf8281b 100644 --- a/pkgs/applications/system/qjournalctl/default.nix +++ b/pkgs/applications/system/qjournalctl/default.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { 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/applications/system/systemdgenie/default.nix b/pkgs/applications/system/systemdgenie/default.nix index 0131be7ebc71f..50c940e34b27a 100644 --- a/pkgs/applications/system/systemdgenie/default.nix +++ b/pkgs/applications/system/systemdgenie/default.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { kdelibs4support ]; - meta = with lib; { + meta = { description = "Systemd management utility"; mainProgram = "systemdgenie"; homepage = "https://kde.org"; - license = licenses.gpl2; - maintainers = [ maintainers.pasqui23 ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.pasqui23 ]; + platforms = lib.platforms.linux; }; } 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 192b98d32a49d..df3444d31e7d4 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 ec2d08862ecd3..8090f17eb1b84 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,10 +27,10 @@ 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; }; } 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 9a32da5427e75..ce599232e49ed 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 0fb6958f6dda8..b4b44ade5ec9d 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 1055f7ba19c84..03bd436535483 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; - maintainers = with maintainers; [ abbradar ]; - platforms = with platforms; unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ abbradar ]; + 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 8b71ccae90854..61758fefcb25a 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 0c9eec816abb6..3227f114f5cd8 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,10 +20,10 @@ 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 = with maintainers; [ abbradar ]; - platforms = with platforms; unix; + maintainers = with lib.maintainers; [ abbradar ]; + platforms = with lib.platforms; unix; }; } 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 c356ee687e79d..2af9067603d86 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 rec { 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 = "CCBYNC"; 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 0bdddaa88cb23..408d275c8a2d5 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/st/default.nix b/pkgs/applications/terminal-emulators/st/default.nix index 7657895061d7a..7b81fc3ecc48a 100644 --- a/pkgs/applications/terminal-emulators/st/default.nix +++ b/pkgs/applications/terminal-emulators/st/default.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://st.suckless.org/"; description = "Simple Terminal for X from Suckless.org Community"; - license = licenses.mit; - maintainers = with maintainers; [ qusic ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ qusic ]; + platforms = lib.platforms.unix; mainProgram = "st"; }; }) diff --git a/pkgs/applications/terminal-emulators/st/mcaimi-st.nix b/pkgs/applications/terminal-emulators/st/mcaimi-st.nix index 57085230621a2..4fe73659a0c0d 100644 --- a/pkgs/applications/terminal-emulators/st/mcaimi-st.nix +++ b/pkgs/applications/terminal-emulators/st/mcaimi-st.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/gnotclub/xst"; description = "Suckless Terminal fork"; mainProgram = "st"; - license = licenses.mit; - maintainers = with maintainers; [ ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/terminal-emulators/st/xst.nix b/pkgs/applications/terminal-emulators/st/xst.nix index 904f939c6b8e6..125e972698fd6 100644 --- a/pkgs/applications/terminal-emulators/st/xst.nix +++ b/pkgs/applications/terminal-emulators/st/xst.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/gnotclub/xst"; description = "Simple terminal fork that can load config from Xresources"; mainProgram = "xst"; - license = licenses.mit; - maintainers = [ maintainers.vyp ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.vyp ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/terminal-emulators/stupidterm/default.nix b/pkgs/applications/terminal-emulators/stupidterm/default.nix index 379bd1d942783..40c43898e53d4 100644 --- a/pkgs/applications/terminal-emulators/stupidterm/default.nix +++ b/pkgs/applications/terminal-emulators/stupidterm/default.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; - maintainers = [ maintainers.etu ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + maintainers = [ lib.maintainers.etu ]; + platforms = lib.platforms.linux; mainProgram = "stupidterm"; }; } diff --git a/pkgs/applications/terminal-emulators/termite/default.nix b/pkgs/applications/terminal-emulators/termite/default.nix index 9e03345a63a93..171190e2da1ef 100644 --- a/pkgs/applications/terminal-emulators/termite/default.nix +++ b/pkgs/applications/terminal-emulators/termite/default.nix @@ -100,12 +100,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/bitbucket-server-cli/default.nix b/pkgs/applications/version-management/bitbucket-server-cli/default.nix index ae722fd47f4e2..4d82b94609fc6 100644 --- a/pkgs/applications/version-management/bitbucket-server-cli/default.nix +++ b/pkgs/applications/version-management/bitbucket-server-cli/default.nix @@ -16,15 +16,15 @@ bundlerEnv rec { passthru.updateScript = bundlerUpdateScript "bitbucket-server-cli"; - meta = with lib; { + meta = { description = "Command line interface to interact with BitBucket Server (formerly Atlassian Stash)"; homepage = "https://bitbucket.org/atlassian/bitbucket-server-cli"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jgertm nicknovitski ]; mainProgram = "stash"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/version-management/blackbox/default.nix b/pkgs/applications/version-management/blackbox/default.nix index 70c0bd6e3597d..f18afea0a0fe6 100644 --- a/pkgs/applications/version-management/blackbox/default.nix +++ b/pkgs/applications/version-management/blackbox/default.nix @@ -55,10 +55,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Safely store secrets in a VCS repo"; - maintainers = with maintainers; [ ericsagnes ]; - license = licenses.mit; - platforms = platforms.all; + maintainers = with lib.maintainers; [ ericsagnes ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/version-management/danger-gitlab/default.nix b/pkgs/applications/version-management/danger-gitlab/default.nix index 8ee557bd295a3..054547890627e 100644 --- a/pkgs/applications/version-management/danger-gitlab/default.nix +++ b/pkgs/applications/version-management/danger-gitlab/default.nix @@ -5,11 +5,11 @@ bundlerApp { gemdir = ./.; exes = [ "danger" ]; - meta = with lib; { + meta = { description = "Gem that exists to ensure all dependencies are set up for Danger with GitLab"; homepage = "https://github.com/danger/danger-gitlab-gem"; - license = licenses.mit; - maintainers = teams.serokell.members; + license = lib.licenses.mit; + maintainers = lib.teams.serokell.members; mainProgram = "danger"; }; } diff --git a/pkgs/applications/version-management/gfold/default.nix b/pkgs/applications/version-management/gfold/default.nix index 7f764283d0329..32c9088053f44 100644 --- a/pkgs/applications/version-management/gfold/default.nix +++ b/pkgs/applications/version-management/gfold/default.nix @@ -28,12 +28,12 @@ rustPlatform.buildRustPackage { inherit version; }; - meta = with lib; { + meta = { description = "CLI tool to help keep track of your Git repositories, written in Rust"; homepage = "https://github.com/nickgerace/gfold"; - license = licenses.asl20; - maintainers = [ maintainers.sigmanificient ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.sigmanificient ]; + platforms = lib.platforms.unix; mainProgram = "gfold"; }; } diff --git a/pkgs/applications/version-management/git-absorb/default.nix b/pkgs/applications/version-management/git-absorb/default.nix index ae477caec042b..f16281d6a0c1b 100644 --- a/pkgs/applications/version-management/git-absorb/default.nix +++ b/pkgs/applications/version-management/git-absorb/default.nix @@ -32,11 +32,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; [ tomfitzhenry matthiasbeyer ]; 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 08f8e17eae1fc..436575cb1c540 100644 --- a/pkgs/applications/version-management/git-annex-metadata-gui/default.nix +++ b/pkgs/applications/version-management/git-annex-metadata-gui/default.nix @@ -33,15 +33,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 c969087e39be2..0673e8065078a 100644 --- a/pkgs/applications/version-management/git-annex-remote-dbx/default.nix +++ b/pkgs/applications/version-management/git-annex-remote-dbx/default.nix @@ -22,11 +22,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-annex-remote-googledrive/default.nix b/pkgs/applications/version-management/git-annex-remote-googledrive/default.nix index 0802769513e31..6e4bcf4a4d8ee 100644 --- a/pkgs/applications/version-management/git-annex-remote-googledrive/default.nix +++ b/pkgs/applications/version-management/git-annex-remote-googledrive/default.nix @@ -40,11 +40,11 @@ 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/applications/version-management/git-archive-all/default.nix b/pkgs/applications/version-management/git-archive-all/default.nix index d43c2359e377c..ec9841d29c48d 100644 --- a/pkgs/applications/version-management/git-archive-all/default.nix +++ b/pkgs/applications/version-management/git-archive-all/default.nix @@ -51,15 +51,15 @@ buildPythonApplication rec { export HOME="$(mktemp -d)" ''; - meta = with lib; { + meta = { description = "Archive a repository with all its submodules"; longDescription = '' A python script wrapper for git-archive that archives a git superproject and its submodules, if it has any. Takes into account .gitattributes ''; homepage = "https://github.com/Kentzo/git-archive-all"; - license = licenses.mit; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz ]; mainProgram = "git-archive-all"; }; } diff --git a/pkgs/applications/version-management/git-branchless/default.nix b/pkgs/applications/version-management/git-branchless/default.nix index b4997b85575b2..bc199f5ce6580 100644 --- a/pkgs/applications/version-management/git-branchless/default.nix +++ b/pkgs/applications/version-management/git-branchless/default.nix @@ -53,12 +53,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/applications/version-management/git-credential-keepassxc/default.nix b/pkgs/applications/version-management/git-credential-keepassxc/default.nix index e1c658e2324d9..50cd72a3db4b5 100644 --- a/pkgs/applications/version-management/git-credential-keepassxc/default.nix +++ b/pkgs/applications/version-management/git-credential-keepassxc/default.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/applications/version-management/git-fame/default.nix b/pkgs/applications/version-management/git-fame/default.nix index 92ce90465b831..aa7a7997dac19 100644 --- a/pkgs/applications/version-management/git-fame/default.nix +++ b/pkgs/applications/version-management/git-fame/default.nix @@ -14,17 +14,17 @@ bundlerEnv { passthru.updateScript = bundlerUpdateScript "git-fame"; - meta = with lib; { + meta = { description = '' A 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/applications/version-management/git-imerge/default.nix b/pkgs/applications/version-management/git-imerge/default.nix index 95e971f3cdca1..d910965724ba5 100644 --- a/pkgs/applications/version-management/git-imerge/default.nix +++ b/pkgs/applications/version-management/git-imerge/default.nix @@ -20,10 +20,10 @@ buildPythonApplication rec { installShellCompletion --bash completions/git-imerge ''; - meta = with lib; { + meta = { homepage = "https://github.com/mhagger/git-imerge"; description = "Perform a merge between two branches incrementally"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; mainProgram = "git-imerge"; }; diff --git a/pkgs/applications/version-management/git-quickfix/default.nix b/pkgs/applications/version-management/git-quickfix/default.nix index f30c06c7bf6c3..a1821c7477934 100644 --- a/pkgs/applications/version-management/git-quickfix/default.nix +++ b/pkgs/applications/version-management/git-quickfix/default.nix @@ -34,12 +34,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-eTAEf2nRrJ7i2Dw5BBZlLLu8mK2G/wUk40ivtfxk1pI="; - meta = with lib; { + meta = { description = "Quickfix allows you to 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/applications/version-management/git-recent/default.nix b/pkgs/applications/version-management/git-recent/default.nix index 91b664b7a748a..bd67ced49638e 100644 --- a/pkgs/applications/version-management/git-recent/default.nix +++ b/pkgs/applications/version-management/git-recent/default.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { }" ''; - meta = with lib; { + meta = { homepage = "https://github.com/paulirish/git-recent"; description = "See your latest local git branches, formatted real fancy"; - license = licenses.mit; - platforms = platforms.all; - maintainers = [ maintainers.jlesquembre ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.jlesquembre ]; mainProgram = "git-recent"; }; } diff --git a/pkgs/applications/version-management/git-repo-updater/default.nix b/pkgs/applications/version-management/git-repo-updater/default.nix index 8fda8e8b7a1cb..31ff19d0a6d73 100644 --- a/pkgs/applications/version-management/git-repo-updater/default.nix +++ b/pkgs/applications/version-management/git-repo-updater/default.nix @@ -23,11 +23,11 @@ buildPythonApplication rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Easily update multiple Git repositories at once"; homepage = "https://github.com/earwig/git-repo-updater"; - license = licenses.mit; - maintainers = with maintainers; [ bdesham ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bdesham ]; mainProgram = "gitup"; }; } diff --git a/pkgs/applications/version-management/git-review/default.nix b/pkgs/applications/version-management/git-review/default.nix index ac6d7879e2bfc..6f2d7301b056a 100644 --- a/pkgs/applications/version-management/git-review/default.nix +++ b/pkgs/applications/version-management/git-review/default.nix @@ -47,11 +47,11 @@ buildPythonApplication rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Tool to submit code to Gerrit"; homepage = "https://opendev.org/opendev/git-review"; - license = licenses.asl20; - maintainers = with maintainers; [ kira-bruneau ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kira-bruneau ]; mainProgram = "git-review"; }; } diff --git a/pkgs/applications/version-management/git-trim/default.nix b/pkgs/applications/version-management/git-trim/default.nix index 1f0171acc6744..714d747af4e29 100644 --- a/pkgs/applications/version-management/git-trim/default.nix +++ b/pkgs/applications/version-management/git-trim/default.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/applications/version-management/git-up/default.nix b/pkgs/applications/version-management/git-up/default.nix index 6c96b5f9b79cf..0d4e9c2172197 100644 --- a/pkgs/applications/version-management/git-up/default.nix +++ b/pkgs/applications/version-management/git-up/default.nix @@ -49,12 +49,12 @@ pythonPackages.buildPythonApplication rec { rm -r $out/${pythonPackages.python.sitePackages}/PyGitUp/tests ''; - meta = with lib; { + meta = { homepage = "https://github.com/msiemens/PyGitUp"; description = "Git pull replacement that rebases all local branches when pulling"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.all; mainProgram = "git-up"; }; } diff --git a/pkgs/applications/version-management/gita/default.nix b/pkgs/applications/version-management/gita/default.nix index 433ebcb1a3845..426aeb39b4adb 100644 --- a/pkgs/applications/version-management/gita/default.nix +++ b/pkgs/applications/version-management/gita/default.nix @@ -33,11 +33,11 @@ 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/applications/version-management/gitlab-triage/default.nix b/pkgs/applications/version-management/gitlab-triage/default.nix index 4dbf52f83fba3..f3b754348f9f5 100644 --- a/pkgs/applications/version-management/gitlab-triage/default.nix +++ b/pkgs/applications/version-management/gitlab-triage/default.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/gitlab-triage"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "gitlab-triage"; }; diff --git a/pkgs/applications/version-management/gitmux/default.nix b/pkgs/applications/version-management/gitmux/default.nix index b3c1189fe3d1a..971ee223d8923 100644 --- a/pkgs/applications/version-management/gitmux/default.nix +++ b/pkgs/applications/version-management/gitmux/default.nix @@ -32,11 +32,11 @@ buildGoModule rec { 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/applications/version-management/gitqlient/default.nix b/pkgs/applications/version-management/gitqlient/default.nix index f396dfeed1775..2c647d6ec84a9 100644 --- a/pkgs/applications/version-management/gitqlient/default.nix +++ b/pkgs/applications/version-management/gitqlient/default.nix @@ -35,12 +35,12 @@ mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { homepage = "https://github.com/francescmm/GitQlient"; description = "Multi-platform Git client written with Qt"; - license = licenses.lgpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ romildo ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ romildo ]; mainProgram = "gitqlient"; }; } diff --git a/pkgs/applications/version-management/gittyup/default.nix b/pkgs/applications/version-management/gittyup/default.nix index cfe26c2de044d..b846444c3d5a5 100644 --- a/pkgs/applications/version-management/gittyup/default.nix +++ b/pkgs/applications/version-management/gittyup/default.nix @@ -84,15 +84,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/applications/version-management/lucky-commit/default.nix b/pkgs/applications/version-management/lucky-commit/default.nix index db35bcc0ec2bd..25e1f2485f4a9 100644 --- a/pkgs/applications/version-management/lucky-commit/default.nix +++ b/pkgs/applications/version-management/lucky-commit/default.nix @@ -28,11 +28,11 @@ 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "lucky_commit"; }; } diff --git a/pkgs/applications/version-management/merge-fmt/default.nix b/pkgs/applications/version-management/merge-fmt/default.nix index 81f2ecfce4c83..409c355c28c1d 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/default.nix b/pkgs/applications/version-management/monotone/default.nix index 216175b8ee889..fd61fda8be8b4 100644 --- a/pkgs/applications/version-management/monotone/default.nix +++ b/pkgs/applications/version-management/monotone/default.nix @@ -106,10 +106,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/p4/default.nix b/pkgs/applications/version-management/p4/default.nix index 3dd91492e9046..d07ef1acc51e0 100644 --- a/pkgs/applications/version-management/p4/default.nix +++ b/pkgs/applications/version-management/p4/default.nix @@ -135,13 +135,13 @@ stdenv.mkDerivation (finalAttrs: rec { 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/applications/version-management/pass-git-helper/default.nix b/pkgs/applications/version-management/pass-git-helper/default.nix index 9d4ab973c19da..8db4c9d592399 100644 --- a/pkgs/applications/version-management/pass-git-helper/default.nix +++ b/pkgs/applications/version-management/pass-git-helper/default.nix @@ -35,11 +35,11 @@ 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 vanzef ]; diff --git a/pkgs/applications/version-management/sapling/default.nix b/pkgs/applications/version-management/sapling/default.nix index 535abf7926798..ca7c3a332b09e 100644 --- a/pkgs/applications/version-management/sapling/default.nix +++ b/pkgs/applications/version-management/sapling/default.nix @@ -196,15 +196,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/applications/version-management/silver-platter/default.nix b/pkgs/applications/version-management/silver-platter/default.nix index cf449383a9ac8..00d0355421cf2 100644 --- a/pkgs/applications/version-management/silver-platter/default.nix +++ b/pkgs/applications/version-management/silver-platter/default.nix @@ -56,11 +56,11 @@ 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/applications/version-management/sourcehut/builds.nix b/pkgs/applications/version-management/sourcehut/builds.nix index e4ef91162b11f..3f878c57989d7 100644 --- a/pkgs/applications/version-management/sourcehut/builds.nix +++ b/pkgs/applications/version-management/sourcehut/builds.nix @@ -95,11 +95,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "buildsrht" ]; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/builds.sr.ht"; description = "Continuous integration service for the sr.ht network"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ eadwu christoph-heiss ]; diff --git a/pkgs/applications/version-management/sourcehut/core.nix b/pkgs/applications/version-management/sourcehut/core.nix index 5fa4c086482ba..e3753d32d5c16 100644 --- a/pkgs/applications/version-management/sourcehut/core.nix +++ b/pkgs/applications/version-management/sourcehut/core.nix @@ -86,11 +86,11 @@ buildPythonPackage rec { dontUseSetuptoolsCheck = true; pythonImportsCheck = [ "srht" ]; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/srht"; description = "Core modules for sr.ht"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ eadwu christoph-heiss ]; diff --git a/pkgs/applications/version-management/sourcehut/git.nix b/pkgs/applications/version-management/sourcehut/git.nix index 887dac1a70706..42d9763d2764f 100644 --- a/pkgs/applications/version-management/sourcehut/git.nix +++ b/pkgs/applications/version-management/sourcehut/git.nix @@ -137,11 +137,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gitsrht" ]; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/git.sr.ht"; description = "Git repository hosting service for the sr.ht network"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ eadwu christoph-heiss ]; diff --git a/pkgs/applications/version-management/sourcehut/hg.nix b/pkgs/applications/version-management/sourcehut/hg.nix index 23e99349d24d6..04e8ec201388b 100644 --- a/pkgs/applications/version-management/sourcehut/hg.nix +++ b/pkgs/applications/version-management/sourcehut/hg.nix @@ -91,11 +91,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "hgsrht" ]; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/hg.sr.ht"; description = "Mercurial repository hosting service for the sr.ht network"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ eadwu christoph-heiss ]; diff --git a/pkgs/applications/version-management/sourcehut/hub.nix b/pkgs/applications/version-management/sourcehut/hub.nix index 5a800275e4ca8..98ef114204294 100644 --- a/pkgs/applications/version-management/sourcehut/hub.nix +++ b/pkgs/applications/version-management/sourcehut/hub.nix @@ -73,11 +73,11 @@ buildPythonPackage rec { "hubsrht" ]; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/hub.sr.ht"; description = "Project hub service for the sr.ht network"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ eadwu christoph-heiss ]; diff --git a/pkgs/applications/version-management/sourcehut/lists.nix b/pkgs/applications/version-management/sourcehut/lists.nix index 8115410b8e333..e5b18a3d302d4 100644 --- a/pkgs/applications/version-management/sourcehut/lists.nix +++ b/pkgs/applications/version-management/sourcehut/lists.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "listssrht" ]; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/lists.sr.ht"; description = "Mailing list service for the sr.ht network"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ eadwu christoph-heiss ]; diff --git a/pkgs/applications/version-management/sourcehut/man.nix b/pkgs/applications/version-management/sourcehut/man.nix index a9c2cc8a2c55e..1b8c119044cbc 100644 --- a/pkgs/applications/version-management/sourcehut/man.nix +++ b/pkgs/applications/version-management/sourcehut/man.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mansrht" ]; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/man.sr.ht"; description = "Wiki service for the sr.ht network"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ eadwu christoph-heiss ]; diff --git a/pkgs/applications/version-management/sourcehut/meta.nix b/pkgs/applications/version-management/sourcehut/meta.nix index ec1893968c132..85ca42602c424 100644 --- a/pkgs/applications/version-management/sourcehut/meta.nix +++ b/pkgs/applications/version-management/sourcehut/meta.nix @@ -83,11 +83,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "metasrht" ]; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/meta.sr.ht"; description = "Account management service for the sr.ht network"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ eadwu christoph-heiss ]; diff --git a/pkgs/applications/version-management/sourcehut/pages.nix b/pkgs/applications/version-management/sourcehut/pages.nix index 03c6ed31fee2f..b950c3853169d 100644 --- a/pkgs/applications/version-management/sourcehut/pages.nix +++ b/pkgs/applications/version-management/sourcehut/pages.nix @@ -33,12 +33,12 @@ buildGoModule ( cp -r -t $out/share/sql/ schema.sql migrations ''; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/pages.sr.ht"; description = "Web hosting service for the sr.ht network"; mainProgram = "pages.sr.ht"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ eadwu christoph-heiss ]; diff --git a/pkgs/applications/version-management/sourcehut/paste.nix b/pkgs/applications/version-management/sourcehut/paste.nix index 3e0800f6b0149..0e3480e8fa092 100644 --- a/pkgs/applications/version-management/sourcehut/paste.nix +++ b/pkgs/applications/version-management/sourcehut/paste.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pastesrht" ]; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/paste.sr.ht"; description = "Ad-hoc text file hosting service for the sr.ht network"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ eadwu nessdoor christoph-heiss diff --git a/pkgs/applications/version-management/sourcehut/scm.nix b/pkgs/applications/version-management/sourcehut/scm.nix index ea7ba30aa656f..0753b0241b2da 100644 --- a/pkgs/applications/version-management/sourcehut/scm.nix +++ b/pkgs/applications/version-management/sourcehut/scm.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "scmsrht" ]; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/scm.sr.ht"; description = "Shared support code for sr.ht source control services"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ eadwu christoph-heiss ]; diff --git a/pkgs/applications/version-management/sourcehut/todo.nix b/pkgs/applications/version-management/sourcehut/todo.nix index e920333c31158..48ecfdce341d2 100644 --- a/pkgs/applications/version-management/sourcehut/todo.nix +++ b/pkgs/applications/version-management/sourcehut/todo.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { dontUseSetuptoolsCheck = true; pythonImportsCheck = [ "todosrht" ]; - meta = with lib; { + meta = { homepage = "https://todo.sr.ht/~sircmpwn/todo.sr.ht"; description = "Ticket tracking service for the sr.ht network"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ eadwu christoph-heiss ]; 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 6b2628f3a4f10..cdcc3737ea621 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/version-management/vcprompt/default.nix b/pkgs/applications/version-management/vcprompt/default.nix index e78c6d5bcaa05..3f2e35e34285f 100644 --- a/pkgs/applications/version-management/vcprompt/default.nix +++ b/pkgs/applications/version-management/vcprompt/default.nix @@ -29,15 +29,15 @@ stdenv.mkDerivation rec { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = '' A little C program that prints a short string with barebones information about the current working directory for various version control systems ''; homepage = "http://hg.gerg.ca/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/applications/video/animdl/default.nix b/pkgs/applications/video/animdl/default.nix index 3c0fe37dd0628..ee4d493c98e4a 100644 --- a/pkgs/applications/video/animdl/default.nix +++ b/pkgs/applications/video/animdl/default.nix @@ -67,12 +67,12 @@ buildPythonApplication { doCheck = true; - meta = with lib; { + meta = { description = "Highly efficient, powerful and fast anime scraper"; homepage = "https://github.com/justfoolingaround/animdl"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "animdl"; - maintainers = with maintainers; [ passivelemon ]; + maintainers = with lib.maintainers; [ passivelemon ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/applications/video/anime-downloader/default.nix b/pkgs/applications/video/anime-downloader/default.nix index 4d8c2f9326253..385aa7cdedf55 100644 --- a/pkgs/applications/video/anime-downloader/default.nix +++ b/pkgs/applications/video/anime-downloader/default.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/applications/video/avidemux/default.nix b/pkgs/applications/video/avidemux/default.nix index 4c1dfaa7a8fa6..2ae4e7f916344 100644 --- a/pkgs/applications/video/avidemux/default.nix +++ b/pkgs/applications/video/avidemux/default.nix @@ -155,15 +155,15 @@ 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 = with maintainers; [ abbradar ]; + maintainers = with lib.maintainers; [ abbradar ]; # "CPU not supported" errors on AArch64 platforms = [ "i686-linux" "x86_64-linux" ]; - license = licenses.gpl2; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/applications/video/clipgrab/default.nix b/pkgs/applications/video/clipgrab/default.nix index 0ac6cae8d5693..7fa963d9756a7 100644 --- a/pkgs/applications/video/clipgrab/default.nix +++ b/pkgs/applications/video/clipgrab/default.nix @@ -80,7 +80,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, @@ -88,8 +88,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/glaxnimate/default.nix b/pkgs/applications/video/glaxnimate/default.nix index 128e83bd979fa..1b1d4d5ddc65f 100644 --- a/pkgs/applications/video/glaxnimate/default.nix +++ b/pkgs/applications/video/glaxnimate/default.nix @@ -92,11 +92,11 @@ stdenv.mkDerivation rec { } ); - meta = with lib; { + meta = { homepage = "https://gitlab.com/mattbas/glaxnimate"; description = "Simple vector animation program"; - license = licenses.gpl3; - maintainers = with maintainers; [ tobiasBora ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ tobiasBora ]; mainProgram = "glaxnimate"; }; } diff --git a/pkgs/applications/video/haruna/default.nix b/pkgs/applications/video/haruna/default.nix index 1c0e4e9782b9b..6500637ffea1b 100644 --- a/pkgs/applications/video/haruna/default.nix +++ b/pkgs/applications/video/haruna/default.nix @@ -68,10 +68,10 @@ stdenv.mkDerivation rec { wrapQtAppsHook ]; - meta = with lib; { + meta = { homepage = "https://invent.kde.org/multimedia/haruna"; description = "Open source video player built with Qt/QML and libmpv"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 cc-by-40 cc-by-sa-40 @@ -80,7 +80,7 @@ stdenv.mkDerivation rec { gpl3Plus wtfpl ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jojosch kashw2 ]; diff --git a/pkgs/applications/video/kmplayer/default.nix b/pkgs/applications/video/kmplayer/default.nix index 0c3d3d74e8df2..2dd0e9f606ad4 100644 --- a/pkgs/applications/video/kmplayer/default.nix +++ b/pkgs/applications/video/kmplayer/default.nix @@ -65,15 +65,15 @@ mkDerivation rec { wrapProgram $out/bin/kmplayer --suffix PATH : ${mplayer}/bin ''; - meta = with lib; { + meta = { description = "MPlayer front-end for KDE"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus fdl12Plus ]; homepage = "https://kmplayer.kde.org/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ sander zraexy ]; diff --git a/pkgs/applications/video/kodi/addons/a4ksubtitles/default.nix b/pkgs/applications/video/kodi/addons/a4ksubtitles/default.nix index a9936818c4ffb..0e7156ce8fe37 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; - maintainers = teams.kodi.members; + license = lib.licenses.mit; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/archive_tool/default.nix b/pkgs/applications/video/kodi/addons/archive_tool/default.nix index 0b90ee1cd5a3a..5320087f1acc2 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/arrow/default.nix b/pkgs/applications/video/kodi/addons/arrow/default.nix index 16c736aab009f..a283d8560b859 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; - maintainers = teams.kodi.members; + license = lib.licenses.asl20; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/arteplussept/default.nix b/pkgs/applications/video/kodi/addons/arteplussept/default.nix index 056b5bb6a817b..086004d6f0fc6 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; - maintainers = teams.kodi.members; + license = lib.licenses.mit; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/certifi/default.nix b/pkgs/applications/video/kodi/addons/certifi/default.nix index b626cb643a100..41dda034bdad9 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; - maintainers = teams.kodi.members; + license = lib.licenses.mpl20; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/chardet/default.nix b/pkgs/applications/video/kodi/addons/chardet/default.nix index 1d02432a36308..fa6ccd8a870c4 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; - maintainers = teams.kodi.members; + license = lib.licenses.lgpl2Only; + maintainers = lib.teams.kodi.members; }; } 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 e060ee1e03bfd..c8b123e77fd6e 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 ]; - maintainers = teams.kodi.members; + license = with lib.licenses; [ odbl ]; + maintainers = lib.teams.kodi.members; }; }; in diff --git a/pkgs/applications/video/kodi/addons/dateutil/default.nix b/pkgs/applications/video/kodi/addons/dateutil/default.nix index 2443c057e8502..49039dd8be482 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 ]; - maintainers = teams.kodi.members; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/defusedxml/default.nix b/pkgs/applications/video/kodi/addons/defusedxml/default.nix index 2f93e2bbeb0ae..6ad933715c567 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; - maintainers = teams.kodi.members; + license = lib.licenses.psfl; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/formula1/default.nix b/pkgs/applications/video/kodi/addons/formula1/default.nix index ce7733db7f55c..01810a203e3e3 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; - maintainers = teams.kodi.members; + license = lib.licenses.mit; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/future/default.nix b/pkgs/applications/video/kodi/addons/future/default.nix index 346be9f8d7f5d..daf6935a5a189 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; - maintainers = teams.kodi.members; + license = lib.licenses.mit; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/iagl/default.nix b/pkgs/applications/video/kodi/addons/iagl/default.nix index ae8ff5dc19aa8..b1952b42a4fcf 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/idna/default.nix b/pkgs/applications/video/kodi/addons/idna/default.nix index 81c0a42b0dded..382cd1a2a19d7 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; - maintainers = teams.kodi.members; + license = lib.licenses.bsd3; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/infotagger/default.nix b/pkgs/applications/video/kodi/addons/infotagger/default.nix index 40b0399ca3b20..85265322e1f13 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/inputstream-adaptive/default.nix b/pkgs/applications/video/kodi/addons/inputstream-adaptive/default.nix index 73e258f42a1ba..b8134ccd251ad 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/inputstream-ffmpegdirect/default.nix b/pkgs/applications/video/kodi/addons/inputstream-ffmpegdirect/default.nix index e48f8e8be2093..483032b4bef21 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/inputstream-rtmp/default.nix b/pkgs/applications/video/kodi/addons/inputstream-rtmp/default.nix index 33e4bcb026261..eefa4b6e956bd 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/inputstreamhelper/default.nix b/pkgs/applications/video/kodi/addons/inputstreamhelper/default.nix index 72af05fb8e1e0..f024cc281183d 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; - maintainers = teams.kodi.members; + license = lib.licenses.mit; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/invidious/default.nix b/pkgs/applications/video/kodi/addons/invidious/default.nix index d6a20068a6df1..0364351319e0e 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; - maintainers = teams.kodi.members; + license = lib.licenses.mit; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/jellycon/default.nix b/pkgs/applications/video/kodi/addons/jellycon/default.nix index 591202c162069..cda4e779b76c5 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/jellyfin/default.nix b/pkgs/applications/video/kodi/addons/jellyfin/default.nix index 037612982d345..77c67fe996375 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl3Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/joystick/default.nix b/pkgs/applications/video/kodi/addons/joystick/default.nix index 073f7422ee331..d138f873fbd1d 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/keymap/default.nix b/pkgs/applications/video/kodi/addons/keymap/default.nix index c5866e993749d..1806a831d98f0 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/kodi-six/default.nix b/pkgs/applications/video/kodi/addons/kodi-six/default.nix index 96f4252573432..f6b72d92de6b4 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl3Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/libretro-genplus/default.nix b/pkgs/applications/video/kodi/addons/libretro-genplus/default.nix index 8bead49157ad9..f87f7e33c6bb5 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/libretro-mgba/default.nix b/pkgs/applications/video/kodi/addons/libretro-mgba/default.nix index ecca37db0d2a1..4c4e8ddc3cc78 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/libretro-nestopia/default.nix b/pkgs/applications/video/kodi/addons/libretro-nestopia/default.nix index 4a299720f0a07..5a1bc6b44595c 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/libretro-snes9x/default.nix b/pkgs/applications/video/kodi/addons/libretro-snes9x/default.nix index 4e614b8bb6114..903e94e6e0db6 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/libretro/default.nix b/pkgs/applications/video/kodi/addons/libretro/default.nix index f6ab8b81ed39d..35506c68656f0 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/mediacccde/default.nix b/pkgs/applications/video/kodi/addons/mediacccde/default.nix index b61c2f0f9841c..23c1b4c7ed524 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; - maintainers = teams.kodi.members; + license = lib.licenses.mit; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/mediathekview/default.nix b/pkgs/applications/video/kodi/addons/mediathekview/default.nix index dec6c0736e277..73df1eb654563 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; - maintainers = teams.kodi.members; + license = lib.licenses.mit; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/myconnpy/default.nix b/pkgs/applications/video/kodi/addons/myconnpy/default.nix index dd2b1dd857e1b..52bb7f3ce394f 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/netflix/default.nix b/pkgs/applications/video/kodi/addons/netflix/default.nix index f40dc45da27eb..671643c196734 100644 --- a/pkgs/applications/video/kodi/addons/netflix/default.nix +++ b/pkgs/applications/video/kodi/addons/netflix/default.nix @@ -29,10 +29,10 @@ 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 = teams.kodi.members ++ [ maintainers.pks ]; + license = lib.licenses.mit; + maintainers = lib.teams.kodi.members ++ [ lib.maintainers.pks ]; }; } diff --git a/pkgs/applications/video/kodi/addons/orftvthek/default.nix b/pkgs/applications/video/kodi/addons/orftvthek/default.nix index f1e202f7ced0c..07139b8add636 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/pdfreader/default.nix b/pkgs/applications/video/kodi/addons/pdfreader/default.nix index 49783ffef23f9..5ef2f98673822 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl2Plus; + 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 62a445df85138..bd88a66d3e6b1 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl3Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/pvr-hdhomerun/default.nix b/pkgs/applications/video/kodi/addons/pvr-hdhomerun/default.nix index 64cce5cd061a6..e8a8fe9b814ad 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/pvr-hts/default.nix b/pkgs/applications/video/kodi/addons/pvr-hts/default.nix index 1fa72a866df61..92a4cd877aaa0 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-BG5mGD674gvjUSdydu4g3F/4GH53gkJoKMDuvaFNi6k="; }; - 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/pvr-iptvsimple/default.nix b/pkgs/applications/video/kodi/addons/pvr-iptvsimple/default.nix index 473b517456c1f..99eff13178ed5 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.kodi.members; }; } 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 91a8095de7bca..3b81d701cfb67 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/raiplay/default.nix b/pkgs/applications/video/kodi/addons/raiplay/default.nix index 084bc4e596e37..f00e300fcf423 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl3Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/requests-cache/default.nix b/pkgs/applications/video/kodi/addons/requests-cache/default.nix index b809576e9ffc3..2a9c7c29d8be1 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; - maintainers = teams.kodi.members; + license = lib.licenses.bsd2; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/requests/default.nix b/pkgs/applications/video/kodi/addons/requests/default.nix index 258e1791a3481..6d536c81e17e6 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; - maintainers = teams.kodi.members; + license = lib.licenses.asl20; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/routing/default.nix b/pkgs/applications/video/kodi/addons/routing/default.nix index 08131bf4f8911..a2b477271d228 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/sendtokodi/default.nix b/pkgs/applications/video/kodi/addons/sendtokodi/default.nix index dba58914feb19..ff483e85e8ea2 100644 --- a/pkgs/applications/video/kodi/addons/sendtokodi/default.nix +++ b/pkgs/applications/video/kodi/addons/sendtokodi/default.nix @@ -40,10 +40,10 @@ buildKodiAddon rec { pythonPath = with kodi.pythonPackages; makePythonPath [ yt-dlp ]; }; - 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 = teams.kodi.members ++ [ maintainers.pks ]; + license = lib.licenses.mit; + maintainers = lib.teams.kodi.members ++ [ lib.maintainers.pks ]; }; } diff --git a/pkgs/applications/video/kodi/addons/signals/default.nix b/pkgs/applications/video/kodi/addons/signals/default.nix index 8016c67366fe7..9f0168e977fcc 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; - maintainers = teams.kodi.members; + license = lib.licenses.lgpl21Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/simplecache/default.nix b/pkgs/applications/video/kodi/addons/simplecache/default.nix index 05f5da9f98483..ce95d75932d05 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 = "A simple object cache for Kodi addons"; - license = licenses.asl20; - maintainers = teams.kodi.members; + license = lib.licenses.asl20; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/simplejson/default.nix b/pkgs/applications/video/kodi/addons/simplejson/default.nix index e54716d41257d..1819243963388 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; - maintainers = teams.kodi.members; + license = lib.licenses.mit; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/six/default.nix b/pkgs/applications/video/kodi/addons/six/default.nix index 0f07ec3cae79a..e656f7edbe50b 100644 --- a/pkgs/applications/video/kodi/addons/six/default.nix +++ b/pkgs/applications/video/kodi/addons/six/default.nix @@ -20,10 +20,10 @@ buildKodiAddon rec { attrPath = "kodi.packages.six"; }; - meta = with lib; { + meta = { homepage = "https://pypi.org/project/six/"; description = "Python 2 and 3 compatibility utilities"; - license = licenses.mit; - maintainers = teams.kodi.members; + license = lib.licenses.mit; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/skyvideoitalia/default.nix b/pkgs/applications/video/kodi/addons/skyvideoitalia/default.nix index f2cad94df53bb..613f2bf291b5b 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/somafm/default.nix b/pkgs/applications/video/kodi/addons/somafm/default.nix index 88a0a205eb376..f3a597afa3db3 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/sponsorblock/default.nix b/pkgs/applications/video/kodi/addons/sponsorblock/default.nix index fb9e9cdd6e6fa..56d74946c92e2 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; - maintainers = teams.kodi.members; + license = lib.licenses.mit; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/steam-controller/default.nix b/pkgs/applications/video/kodi/addons/steam-controller/default.nix index 7d1c94fbc8434..866823c74916d 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/steam-launcher/default.nix b/pkgs/applications/video/kodi/addons/steam-launcher/default.nix index 678e2757d6fa6..dfa2e8ab78f25 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/steam-library/default.nix b/pkgs/applications/video/kodi/addons/steam-library/default.nix index e4434813c37c8..ca9d2190aa4bf 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/trakt-module/default.nix b/pkgs/applications/video/kodi/addons/trakt-module/default.nix index 45456d182d18e..d0c555126d82d 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; - maintainers = teams.kodi.members; + license = lib.licenses.mit; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/trakt/default.nix b/pkgs/applications/video/kodi/addons/trakt/default.nix index 11ac06c60d566..f6c375b15d025 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/typing_extensions/default.nix b/pkgs/applications/video/kodi/addons/typing_extensions/default.nix index af7f94a82aec4..c4dc6fe42c015 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; - maintainers = teams.kodi.members; + license = lib.licenses.psfl; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/upnext/default.nix b/pkgs/applications/video/kodi/addons/upnext/default.nix index 051cd4788f1e6..7a30ff9acc183 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/urllib3/default.nix b/pkgs/applications/video/kodi/addons/urllib3/default.nix index 72ee3d7fd29b8..516e3f25294ea 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; - maintainers = teams.kodi.members; + license = lib.licenses.mit; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/vfs-libarchive/default.nix b/pkgs/applications/video/kodi/addons/vfs-libarchive/default.nix index 752908d159ca1..4410e8d5a27be 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/vfs-rar/default.nix b/pkgs/applications/video/kodi/addons/vfs-rar/default.nix index 298abe38e57f1..3ce57d8bd13ba 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/vfs-sftp/default.nix b/pkgs/applications/video/kodi/addons/vfs-sftp/default.nix index 5314cf606c436..3c53f2c680fbb 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-fishbmc/default.nix b/pkgs/applications/video/kodi/addons/visualization-fishbmc/default.nix index 7a54d749e3fe5..dfe3cd2dda9a0 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-goom/default.nix b/pkgs/applications/video/kodi/addons/visualization-goom/default.nix index da5ee17c0ee50..1c0090a57ad16 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-matrix/default.nix b/pkgs/applications/video/kodi/addons/visualization-matrix/default.nix index 2839edcec7990..c361bbea7fac4 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-pictureit/default.nix b/pkgs/applications/video/kodi/addons/visualization-pictureit/default.nix index df53b1e5489de..537a7fe2c0b61 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-shadertoy/default.nix b/pkgs/applications/video/kodi/addons/visualization-shadertoy/default.nix index 399674ee40fa7..b22a54558de36 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-spectrum/default.nix b/pkgs/applications/video/kodi/addons/visualization-spectrum/default.nix index 19f9c2f0e6bdb..0251feaa84361 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-starburst/default.nix b/pkgs/applications/video/kodi/addons/visualization-starburst/default.nix index 027f16f8e4249..1aabd8ebd6568 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/visualization-waveform/default.nix b/pkgs/applications/video/kodi/addons/visualization-waveform/default.nix index ccb3735425ae0..5e0e58f23f169 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/websocket/default.nix b/pkgs/applications/video/kodi/addons/websocket/default.nix index d8a4cd381a219..257c56a43ca9c 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; - maintainers = teams.kodi.members; + license = lib.licenses.lgpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/xbmcswift2/default.nix b/pkgs/applications/video/kodi/addons/xbmcswift2/default.nix index bb9e68130c7ad..3de8d56f99666 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl3Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/kodi/addons/youtube/default.nix b/pkgs/applications/video/kodi/addons/youtube/default.nix index fb4e6ebd7304c..38497b2664d1e 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; - maintainers = teams.kodi.members; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/applications/video/mapmap/default.nix b/pkgs/applications/video/mapmap/default.nix index 0147a07b45ec9..117e87f5b825d 100644 --- a/pkgs/applications/video/mapmap/default.nix +++ b/pkgs/applications/video/mapmap/default.nix @@ -69,12 +69,12 @@ mkDerivation rec { # rm -r $NIX_BUILD_TOP/__nix_qt5__ # ''; - meta = with lib; { + meta = { description = "Open source video mapping software"; homepage = "https://github.com/mapmapteam/mapmap"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "mapmap"; }; diff --git a/pkgs/applications/video/memento/default.nix b/pkgs/applications/video/memento/default.nix index 84966b843adae..5f0f13d30dbd4 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 66dc8891988e5..33f3e1c300b77 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/mlv-app/default.nix b/pkgs/applications/video/mlv-app/default.nix index d008e08f3d2bc..dcef08cd9fd04 100644 --- a/pkgs/applications/video/mlv-app/default.nix +++ b/pkgs/applications/video/mlv-app/default.nix @@ -54,12 +54,12 @@ mkDerivation rec { qmake ]; - meta = with lib; { + meta = { description = "All in one MLV processing app that is pretty great"; homepage = "https://mlv.app"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "mlvapp"; }; } diff --git a/pkgs/applications/video/mpc-qt/default.nix b/pkgs/applications/video/mpc-qt/default.nix index 70d3a4c200736..dc94b5381f558 100644 --- a/pkgs/applications/video/mpc-qt/default.nix +++ b/pkgs/applications/video/mpc-qt/default.nix @@ -47,13 +47,13 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Media Player Classic Qute Theater"; homepage = "https://mpc-qt.github.io"; - license = licenses.gpl2; - platforms = platforms.unix; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; - maintainers = with maintainers; [ romildo ]; + maintainers = with lib.maintainers; [ romildo ]; mainProgram = "mpc-qt"; }; } diff --git a/pkgs/applications/video/mplayer/default.nix b/pkgs/applications/video/mplayer/default.nix index bf94c7c1d9f1c..a4287ea6e493b 100644 --- a/pkgs/applications/video/mplayer/default.nix +++ b/pkgs/applications/video/mplayer/default.nix @@ -272,12 +272,12 @@ stdenv.mkDerivation rec { 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 d162da18c018a..f80075a0f7bb8 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 1df83df46d8c4..34243ab928d37 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 b051c08a85470..4740a09ee4df8 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; - maintainers = with maintainers; [ lom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lom ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/evafast.nix b/pkgs/applications/video/mpv/scripts/evafast.nix index 5260adb1a8efd..0663edf0bd71f 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 02a54a2cf4751..984e0e79ca5b7 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 0b6022e3de3cf..5bbf3e1bf7e7b 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 28a50e15d5d83..a5ae4e7b3c6fe 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 c0c62867c1ee2..6c148bb84f11b 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 0d2c292d702a0..89231e405a1f1 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 934df9ab21c80..7f485e648f1fa 100644 --- a/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix +++ b/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix @@ -24,10 +24,10 @@ buildLua rec { '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 10f09b633c015..ddf8f3cd4edda 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 d017f404a1b10..952c95f98a91e 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 cadb4933e9b57..a9d16fb4f4468 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 8cee576a57927..564dc1873a9e5 100644 --- a/pkgs/applications/video/mpv/scripts/quality-menu.nix +++ b/pkgs/applications/video/mpv/scripts/quality-menu.nix @@ -20,10 +20,10 @@ buildLua rec { extraScripts = 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 55d55fdf59f83..d2772452e65ea 100644 --- a/pkgs/applications/video/mpv/scripts/simple-mpv-webui.nix +++ b/pkgs/applications/video/mpv/scripts/simple-mpv-webui.nix @@ -23,10 +23,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 ]; @@ -35,6 +35,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/smart-copy-paste-2.nix b/pkgs/applications/video/mpv/scripts/smart-copy-paste-2.nix index dab4a7ddfcd9d..d7802610f25d4 100644 --- a/pkgs/applications/video/mpv/scripts/smart-copy-paste-2.nix +++ b/pkgs/applications/video/mpv/scripts/smart-copy-paste-2.nix @@ -24,10 +24,10 @@ buildLua (finalAttrs: { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Smart copy paste with logging and clipboard support"; homepage = "https://github.com/Eisa01/mpv-scripts"; - license = licenses.bsd2; - maintainers = with maintainers; [ luftmensch-luftmensch ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ luftmensch-luftmensch ]; }; }) diff --git a/pkgs/applications/video/mpv/scripts/sponsorblock-minimal.nix b/pkgs/applications/video/mpv/scripts/sponsorblock-minimal.nix index 6818154590917..a5e3d096d1568 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 0a9dadfaa7c61..55957566f3e3e 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 2838dd5e49424..1635a5e23ef67 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 3a2ac5e4e992d..e27162ba93e7f 100644 --- a/pkgs/applications/video/mpv/scripts/videoclip.nix +++ b/pkgs/applications/video/mpv/scripts/videoclip.nix @@ -33,11 +33,11 @@ buildLua { passthru.scriptName = "videoclip"; passthru.updateScript = unstableGitUpdater { }; - 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 cf80bb47f0afe..fb0a41666fd40 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 6fb91e9ad780a..48da25db66b51 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 ecd71353d6a3b..31a04caf87c6b 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 f8a56225ad093..b682bed322aad 100644 --- a/pkgs/applications/video/mythtv/default.nix +++ b/pkgs/applications/video/mythtv/default.nix @@ -103,11 +103,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 6d11f5aa5f7eb..c108299f19321 100644 --- a/pkgs/applications/video/natron/default.nix +++ b/pkgs/applications/video/natron/default.nix @@ -94,7 +94,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 @@ -102,8 +102,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; broken = stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64; }; } 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 1c07eff5e7d20..120dbc593079d 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 @@ -89,11 +89,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/droidcam-obs/default.nix b/pkgs/applications/video/obs-studio/plugins/droidcam-obs/default.nix index c6f704d08d766..d54914583450f 100644 --- a/pkgs/applications/video/obs-studio/plugins/droidcam-obs/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/droidcam-obs/default.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation rec { doCheck = false; - meta = with lib; { + meta = { description = "DroidCam OBS"; homepage = "https://github.com/dev47apps/droidcam-obs-plugin"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ ulrikstrid ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ulrikstrid ]; + platforms = lib.platforms.linux; }; } 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 c9fbda2b4e355..4c13f51eb7c5e 100644 --- a/pkgs/applications/video/obs-studio/plugins/looking-glass-obs.nix +++ b/pkgs/applications/video/obs-studio/plugins/looking-glass-obs.nix @@ -30,11 +30,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 ]; platforms = [ "x86_64-linux" ]; }; } 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 408e2bb709cc3..6f7d13e331012 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; platforms = [ "x86_64-linux" ]; }; } 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 56236261483a5..15e668174d255 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; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/applications/video/obs-studio/plugins/obs-composite-blur.nix b/pkgs/applications/video/obs-studio/plugins/obs-composite-blur.nix index c5799c37924eb..1baef3b957d53 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-composite-blur.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-composite-blur.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { rm -rf "$out/obs-plugins" "$out/data" ''; - meta = with lib; { + meta = { description = "Comprehensive blur plugin for OBS that provides several different blur algorithms, and proper compositing"; homepage = "https://github.com/FiniteSingularity/obs-composite-blur"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ GaetanLepage ]; mainProgram = "obs-composite-blur"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } 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 1cc6d312ec381..223c65f60cf8a 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 23a3c3e41d42f..caef6653293c1 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; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/applications/video/obs-studio/plugins/obs-gstreamer.nix b/pkgs/applications/video/obs-studio/plugins/obs-gstreamer.nix index 6ac26bf599ab0..4ee1eb5259d93 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 d7cb122e8354e..d7460fa74473e 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-hyperion/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-hyperion/default.nix @@ -47,11 +47,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 ]; platforms = [ "x86_64-linux" ]; }; } 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 5a24ceaa334ac..bf079bd94fb26 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 @@ -40,14 +40,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 ]; platforms = 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 bdedeeed9c787..2cb5fee88aa4a 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; platforms = [ "x86_64-linux" "i686-linux" 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 b235ca6fb20b7..b0b6a95827c65 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; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/applications/video/obs-studio/plugins/obs-ndi/default.nix b/pkgs/applications/video/obs-studio/plugins/obs-ndi/default.nix index e7b2784fff6e8..fc56417ef960d 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-ndi/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-ndi/default.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Network A/V plugin for OBS Studio"; homepage = "https://github.com/Palakis/obs-ndi"; - license = licenses.gpl2; - maintainers = with maintainers; [ jshcmpbll ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ jshcmpbll ]; + platforms = lib.platforms.linux; hydraPlatforms = ndi.meta.hydraPlatforms; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-nvfbc.nix b/pkgs/applications/video/obs-studio/plugins/obs-nvfbc.nix index cd3b410096cfa..2efeed0df2b2e 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-nvfbc.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-nvfbc.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { libX11 ]; - meta = with lib; { + meta = { description = "OBS Studio source plugin for NVIDIA FBC API"; homepage = "https://gitlab.com/fzwoch/obs-nvfbc"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ babbaj ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ babbaj ]; platforms = [ "x86_64-linux" ]; }; } 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 dc03e00a192e1..2ff6f4909c1b0 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,11 +34,11 @@ stdenv.mkDerivation rec { "-DCMAKE_INSTALL_LIBDIR=/lib" ]; - 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; [ Elinvention ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ Elinvention ]; + license = lib.licenses.gpl2Plus; platforms = [ "x86_64-linux" "i686-linux" 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 8d5edcc38c493..4f882c9bf7dd6 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-replay-source.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-replay-source.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation (finalAttrs: { dontWrapQtApps = true; - 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; [ pschmitt ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pschmitt ]; }; }) diff --git a/pkgs/applications/video/obs-studio/plugins/obs-rgb-levels-filter.nix b/pkgs/applications/video/obs-studio/plugins/obs-rgb-levels-filter.nix index f51d7963089a2..3b243f08fa857 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-rgb-levels-filter.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-rgb-levels-filter.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { "-DOBS_SRC_DIR=${obs-studio.src}" ]; - meta = with lib; { + meta = { description = "Simple OBS Studio filter to adjust RGB levels"; homepage = "https://github.com/wimpysworld/obs-rgb-levels-filter"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Plus; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/applications/video/obs-studio/plugins/obs-scale-to-sound.nix b/pkgs/applications/video/obs-studio/plugins/obs-scale-to-sound.nix index 3b3f9c6e82201..bea38ef5d37a9 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-scale-to-sound.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-scale-to-sound.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { mv $out/data $out/share/obs ''; - meta = with lib; { + meta = { description = "OBS filter plugin that scales a source reactively to sound levels"; homepage = "https://github.com/dimtpap/obs-scale-to-sound"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Plus; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/applications/video/obs-studio/plugins/obs-shaderfilter.nix b/pkgs/applications/video/obs-studio/plugins/obs-shaderfilter.nix index cce98123da026..06aca57d7cddd 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; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/applications/video/obs-studio/plugins/obs-source-clone.nix b/pkgs/applications/video/obs-studio/plugins/obs-source-clone.nix index 605e7e50dd7de..da3deb2bb5860 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-source-clone.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-source-clone.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation { rm -rf $out/obs-plugins $out/data ''; - meta = with lib; { + meta = { description = "Plugin for OBS Studio to clone sources"; homepage = "https://github.com/exeldro/obs-source-clone"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } 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 5aeb786a6c705..85dbbb945ff3a 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; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-source-switcher.nix b/pkgs/applications/video/obs-studio/plugins/obs-source-switcher.nix index 268d3f5395ad2..b1e948f95c27a 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-source-switcher.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-source-switcher.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { rm -rf $out/obs-plugins $out/data ''; - meta = with lib; { + meta = { description = "Plugin for OBS Studio to switch between a list of sources"; homepage = "https://github.com/exeldro/obs-source-switcher"; - maintainers = with maintainers; [ flexiondotorg ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ flexiondotorg ]; + license = lib.licenses.gpl2Plus; platforms = [ "x86_64-linux" "i686-linux" 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 8a6e77b51f875..aec204daac162 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; platforms = [ "x86_64-linux" "i686-linux" 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 89ea4b6f35b60..a0abb14967917 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 rec { 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; platforms = [ "x86_64-linux" "i686-linux" 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 9a8967d67df82..71f47c4e0d43a 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; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/applications/video/obs-studio/plugins/obs-webkitgtk.nix b/pkgs/applications/video/obs-studio/plugins/obs-webkitgtk.nix index 48daa0a25676d..98cadc0894983 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-webkitgtk.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-webkitgtk.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { --replace 'g_file_read_link("/proc/self/exe", NULL)' "g_strdup(\"$out/lib/obs-plugins\")" ''; - meta = with lib; { + meta = { description = "Yet another OBS Studio browser source"; homepage = "https://github.com/fzwoch/obs-webkitgtk"; - maintainers = with maintainers; [ j-hui ]; - license = licenses.gpl2Only; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ j-hui ]; + 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 a3198dba06d61..fa394b5daf62c 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; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/applications/video/obs-studio/plugins/wlrobs.nix b/pkgs/applications/video/obs-studio/plugins/wlrobs.nix index 37950307d9e86..d7c2e86cb223d 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; + maintainers = with lib.maintainers; [ grahamc ]; + license = lib.licenses.gpl3Plus; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/applications/video/olive-editor/default.nix b/pkgs/applications/video/olive-editor/default.nix index b0c39aa7b3b58..858f2ca8a16ef 100644 --- a/pkgs/applications/video/olive-editor/default.nix +++ b/pkgs/applications/video/olive-editor/default.nix @@ -85,13 +85,13 @@ stdenv.mkDerivation { qttools ] ++ lib.optional stdenv.hostPlatform.isDarwin CoreFoundation; - meta = with lib; { + meta = { description = "Professional open-source NLE video editor"; homepage = "https://www.olivevideoeditor.org/"; downloadPage = "https://www.olivevideoeditor.org/download.php"; - license = licenses.gpl3; - maintainers = [ maintainers.balsoft ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.balsoft ]; + platforms = lib.platforms.unix; # never built on aarch64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; mainProgram = "olive-editor"; diff --git a/pkgs/applications/video/pipe-viewer/default.nix b/pkgs/applications/video/pipe-viewer/default.nix index 7cab65a58552f..810378464022f 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-media-player/default.nix b/pkgs/applications/video/plex-media-player/default.nix index deb9819e1be73..a0404dca532d0 100644 --- a/pkgs/applications/video/plex-media-player/default.nix +++ b/pkgs/applications/video/plex-media-player/default.nix @@ -78,10 +78,10 @@ mkDerivation rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Streaming media player for Plex"; - license = licenses.gpl2; - maintainers = with maintainers; [ b4dm4n ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ b4dm4n ]; homepage = "https://plex.tv"; mainProgram = "plexmediaplayer"; }; diff --git a/pkgs/applications/video/plex-mpv-shim/default.nix b/pkgs/applications/video/plex-mpv-shim/default.nix index 2dae6a3d221e3..a2851dd3c4f1e 100644 --- a/pkgs/applications/video/plex-mpv-shim/default.nix +++ b/pkgs/applications/video/plex-mpv-shim/default.nix @@ -60,12 +60,12 @@ buildPythonApplication rec { # 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 3b2ba7dc45f75..ee29477708ed9 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 4c532f86b1417..206ed499aabb6 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/rtabmap/default.nix b/pkgs/applications/video/rtabmap/default.nix index fc22d8988eae1..861dc9a97006e 100644 --- a/pkgs/applications/video/rtabmap/default.nix +++ b/pkgs/applications/video/rtabmap/default.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation rec { # Disable warnings that are irrelevant to us as packagers cmakeFlags = [ "-Wno-dev" ]; - meta = with lib; { + meta = { description = "Real-Time Appearance-Based 3D Mapping"; homepage = "https://introlab.github.io/rtabmap/"; - license = licenses.bsd3; - maintainers = with maintainers; [ marius851000 ]; - platforms = with platforms; linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ marius851000 ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/applications/video/simplescreenrecorder/default.nix b/pkgs/applications/video/simplescreenrecorder/default.nix index b99821a64e053..80c6f1d09192e 100644 --- a/pkgs/applications/video/simplescreenrecorder/default.nix +++ b/pkgs/applications/video/simplescreenrecorder/default.nix @@ -72,11 +72,11 @@ mkDerivation rec { passthru.updateScript = nix-update-script { }; - 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 afb0d254bfe06..c700f54d11923 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/stremio/default.nix b/pkgs/applications/video/stremio/default.nix index 0bfc18fb2e1e7..3b8ac87c39121 100644 --- a/pkgs/applications/video/stremio/default.nix +++ b/pkgs/applications/video/stremio/default.nix @@ -49,18 +49,18 @@ stdenv.mkDerivation rec { --suffix PATH ":" ${lib.makeBinPath [ ffmpeg ]} ''; - meta = with lib; { + meta = { mainProgram = "stremio"; description = "Modern media center that gives you the freedom to watch everything you want"; homepage = "https://www.stremio.com/"; # (Server-side) web UI is closed source now, apparently they work on open-sourcing it. # server.js appears to be MIT-licensed, but I can't find how they actually build it. # https://www.reddit.com/r/StremioAddons/comments/n2ob04/a_summary_of_how_stremio_works_internally_and/ - license = with licenses; [ + license = with lib.licenses; [ gpl3 mit ]; - maintainers = with maintainers; [ abbradar ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/video/vdr/nopacity/default.nix b/pkgs/applications/video/vdr/nopacity/default.nix index 6c04f49fb49a8..2ce179bb77638 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/softhddevice/default.nix b/pkgs/applications/video/vdr/softhddevice/default.nix index 7f6637ec3f619..ce1971bf00b63 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 7c1defec74e74..affef9f9a8d02 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 78deb1b0e98a9..405d548bd7f21 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 b691dde96aabf..108ada943c464 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/video/webcamoid/default.nix b/pkgs/applications/video/webcamoid/default.nix index 3ee2f0db92e94..d6cee1e5bad33 100644 --- a/pkgs/applications/video/webcamoid/default.nix +++ b/pkgs/applications/video/webcamoid/default.nix @@ -56,13 +56,13 @@ mkDerivation rec { cmake ]; - meta = with lib; { + meta = { description = "Webcam Capture Software"; longDescription = "Webcamoid is a full featured and multiplatform webcam suite."; homepage = "https://github.com/webcamoid/webcamoid/"; - license = [ licenses.gpl3Plus ]; - platforms = platforms.linux; - maintainers = with maintainers; [ robaca ]; + license = [ lib.licenses.gpl3Plus ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ robaca ]; mainProgram = "webcamoid"; }; } diff --git a/pkgs/applications/video/youtube-tui/default.nix b/pkgs/applications/video/youtube-tui/default.nix index 64b18ad5c43b1..e9d91bcbd144c 100644 --- a/pkgs/applications/video/youtube-tui/default.nix +++ b/pkgs/applications/video/youtube-tui/default.nix @@ -58,11 +58,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/applications/video/yuview/default.nix b/pkgs/applications/video/yuview/default.nix index 3a15d32c42052..592b3f8645287 100644 --- a/pkgs/applications/video/yuview/default.nix +++ b/pkgs/applications/video/yuview/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://ient.github.io/YUView"; description = "YUV Viewer and Analysis Tool"; longDescription = '' @@ -42,9 +42,9 @@ stdenv.mkDerivation rec { sequences, and many more. Further information can be found in the YUV help in the application itself or in our wiki. ''; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ leixb ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ leixb ]; + platforms = lib.platforms.unix; mainProgram = "YUView"; }; } diff --git a/pkgs/applications/virtualization/crosvm/default.nix b/pkgs/applications/virtualization/crosvm/default.nix index c74c24050c100..1f404be69bd78 100644 --- a/pkgs/applications/virtualization/crosvm/default.nix +++ b/pkgs/applications/virtualization/crosvm/default.nix @@ -75,12 +75,12 @@ rustPlatform.buildRustPackage rec { }; }; - 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" "x86_64-linux" diff --git a/pkgs/applications/virtualization/docker/gc.nix b/pkgs/applications/virtualization/docker/gc.nix index f300cf2e73da3..0fbe1bc9aa391 100644 --- a/pkgs/applications/virtualization/docker/gc.nix +++ b/pkgs/applications/virtualization/docker/gc.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { }" ''; - 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 afd78bd165eb7..edf83d20307a6 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 24c806589db79..b315d22b1ff2e 100644 --- a/pkgs/applications/virtualization/krunvm/default.nix +++ b/pkgs/applications/virtualization/krunvm/default.nix @@ -67,11 +67,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/lkl/default.nix b/pkgs/applications/virtualization/lkl/default.nix index 4c4a267632c10..bc13b16190cb7 100644 --- a/pkgs/applications/virtualization/lkl/default.nix +++ b/pkgs/applications/virtualization/lkl/default.nix @@ -105,7 +105,7 @@ stdenv.mkDerivation rec { 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 @@ -113,9 +113,9 @@ stdenv.mkDerivation rec { 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; [ copumpkin raitobezarius ]; diff --git a/pkgs/applications/virtualization/qemu/canokey-qemu.nix b/pkgs/applications/virtualization/qemu/canokey-qemu.nix index 0ad27dd55cfb4..40abacb6cdc66 100644 --- a/pkgs/applications/virtualization/qemu/canokey-qemu.nix +++ b/pkgs/applications/virtualization/qemu/canokey-qemu.nix @@ -52,10 +52,10 @@ 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 ]; }; } diff --git a/pkgs/applications/virtualization/qtemu/default.nix b/pkgs/applications/virtualization/qtemu/default.nix index 081075f890650..5a654a01f166a 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 b7cd6f4386611..d3d82577e17d0 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 18d3c34ddac1d..8818ad1d33e18 100644 --- a/pkgs/applications/virtualization/sail-riscv/default.nix +++ b/pkgs/applications/virtualization/sail-riscv/default.nix @@ -67,11 +67,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - 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 ]; + maintainers = with lib.maintainers; [ genericnerdyusername ]; broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix index 59f64cc47c109..63642dc303d2e 100644 --- a/pkgs/applications/virtualization/virt-manager/default.nix +++ b/pkgs/applications/virtualization/virt-manager/default.nix @@ -85,7 +85,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 = '' @@ -93,10 +93,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 globin ]; diff --git a/pkgs/applications/virtualization/virt-top/default.nix b/pkgs/applications/virtualization/virt-top/default.nix index 1067427447acd..c3bc1cea8decb 100644 --- a/pkgs/applications/virtualization/virt-top/default.nix +++ b/pkgs/applications/virtualization/virt-top/default.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { substituteInPlace ocaml-link.sh.in --replace '#!/bin/bash' '#!${stdenv.shell}' ''; - meta = with lib; { + meta = { description = "Top-like utility for showing stats of virtualized domains"; homepage = "https://people.redhat.com/~rjones/virt-top/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "virt-top"; }; } diff --git a/pkgs/applications/virtualization/virtualbox/extpack.nix b/pkgs/applications/virtualization/virtualbox/extpack.nix index 134ce6424ce5e..c6d40bf794694 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; [ sander friedrichaltheide ]; diff --git a/pkgs/applications/virtualization/xhyve/default.nix b/pkgs/applications/virtualization/xhyve/default.nix index c994cf7ec8190..30be1da42497f 100644 --- a/pkgs/applications/virtualization/xhyve/default.nix +++ b/pkgs/applications/virtualization/xhyve/default.nix @@ -44,12 +44,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/applications/window-managers/2bwm/default.nix b/pkgs/applications/window-managers/2bwm/default.nix index 4ed3054a42e77..8e8131a0062de 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 2e60bcf41e68e..587cf48e9969d 100644 --- a/pkgs/applications/window-managers/awesome/default.nix +++ b/pkgs/applications/window-managers/awesome/default.nix @@ -150,14 +150,14 @@ 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 rasendubi ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/window-managers/cage/default.nix b/pkgs/applications/window-managers/cage/default.nix index adfa29198ed46..8882e0e6cffaa 100644 --- a/pkgs/applications/window-managers/cage/default.nix +++ b/pkgs/applications/window-managers/cage/default.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { # Tests Cage using the NixOS module by launching xterm: passthru.tests.basic-nixos-module-functionality = nixosTests.cage; - meta = with lib; { + meta = { description = "Wayland kiosk that runs a single, maximized application"; homepage = "https://www.hjdskes.nl/projects/cage/"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ primeos ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ primeos ]; mainProgram = "cage"; }; } diff --git a/pkgs/applications/window-managers/dwm/default.nix b/pkgs/applications/window-managers/dwm/default.nix index 4204fb9590e0f..bd3a7c7b40867 100644 --- a/pkgs/applications/window-managers/dwm/default.nix +++ b/pkgs/applications/window-managers/dwm/default.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { url = "git://git.suckless.org/dwm"; }; - meta = with lib; { + meta = { homepage = "https://dwm.suckless.org/"; description = "Extremely fast, small, and dynamic window manager for X"; longDescription = '' @@ -60,9 +60,9 @@ stdenv.mkDerivation rec { multiple tags. Selecting certain tags displays all windows with these tags. ''; - license = licenses.mit; - maintainers = with maintainers; [ neonfuz ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ neonfuz ]; + platforms = lib.platforms.all; mainProgram = "dwm"; }; } diff --git a/pkgs/applications/window-managers/dwm/dwm-status.nix b/pkgs/applications/window-managers/dwm/dwm-status.nix index c7509ae6e9733..d3e590ae01e2c 100644 --- a/pkgs/applications/window-managers/dwm/dwm-status.nix +++ b/pkgs/applications/window-managers/dwm/dwm-status.nix @@ -58,13 +58,13 @@ rustPlatform.buildRustPackage rec { wrapProgram $out/bin/dwm-status --prefix "PATH" : "${lib.makeBinPath bins}" ''; - meta = with lib; { + meta = { description = "Highly performant and configurable DWM status service"; homepage = "https://github.com/Gerschtli/dwm-status"; changelog = "https://github.com/Gerschtli/dwm-status/blob/master/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ gerschtli ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ gerschtli ]; mainProgram = "dwm-status"; - 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 782c80599bed4..c238f048874bc 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/hyprshade/default.nix b/pkgs/applications/window-managers/hyprwm/hyprshade/default.nix index 8eaaadb3a86e4..7e876a9f4ef6c 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/auto-layout.nix b/pkgs/applications/window-managers/i3/auto-layout.nix index b72f7f2ffbafb..483af3f8a5f7d 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 rec { # 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 a49cd469d15f1..3472426553477 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 c6905ae0f1997..a9ecb366e11a7 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/bumblebee-status/default.nix b/pkgs/applications/window-managers/i3/bumblebee-status/default.nix index 7e789586cda9f..04148d6a11c55 100644 --- a/pkgs/applications/window-managers/i3/bumblebee-status/default.nix +++ b/pkgs/applications/window-managers/i3/bumblebee-status/default.nix @@ -73,12 +73,12 @@ python.pkgs.buildPythonPackage { cp -r ./themes $out/${python.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; [ augustebaum ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ augustebaum ]; }; } diff --git a/pkgs/applications/window-managers/i3/cycle-focus.nix b/pkgs/applications/window-managers/i3/cycle-focus.nix index 1ec3b1e67fe98..3544c2ed5097a 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-9glaxThm/ovgvUWCyrycS/Oe5t8iN5P38fF5vO5awQE="; - 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 257604baf2d62..0512ea66c73cf 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 e7b339177476d..a5db725ae1833 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 0fd06d1e34b79..c5bb4ed17cc31 100644 --- a/pkgs/applications/window-managers/i3/i3-resurrect.nix +++ b/pkgs/applications/window-managers/i3/i3-resurrect.nix @@ -31,12 +31,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 753cb3b4eb9ea..9eaf306be52d5 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 68e958c497b95..e9e61fc10debc 100644 --- a/pkgs/applications/window-managers/i3/kitti3.nix +++ b/pkgs/applications/window-managers/i3/kitti3.nix @@ -32,11 +32,11 @@ buildPythonApplication rec { 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 c32a9dc777be2..30448d46efe84 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 rec { 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 68471ad4bc0df..dae0a8127500d 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; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + 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-fancy-rapid.nix b/pkgs/applications/window-managers/i3/lock-fancy-rapid.nix index b5ae5c720d7a0..a1f6ecd82cb7a 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 dd64a987ed397..f48927222dd30 100644 --- a/pkgs/applications/window-managers/i3/lock-fancy.nix +++ b/pkgs/applications/window-managers/i3/lock-fancy.nix @@ -70,12 +70,12 @@ stdenv.mkDerivation { } ''; - meta = with lib; { + meta = { description = "i3lock is a 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 7eb1bfe947137..1ec21f29a68fa 100644 --- a/pkgs/applications/window-managers/i3/lock.nix +++ b/pkgs/applications/window-managers/i3/lock.nix @@ -48,7 +48,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 @@ -56,13 +56,13 @@ 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 domenkozar ]; mainProgram = "i3lock"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/applications/window-managers/i3/swallow.nix b/pkgs/applications/window-managers/i3/swallow.nix index 7cb42710e7a94..c853932c219c4 100644 --- a/pkgs/applications/window-managers/i3/swallow.nix +++ b/pkgs/applications/window-managers/i3/swallow.nix @@ -34,11 +34,11 @@ buildPythonApplication rec { # 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 330ba5c9a80ad..ab19adba3110a 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 rec { 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 d3828484171b3..30d7fc17ef497 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 cd1694404ce01..46c842c5dbfda 100644 --- a/pkgs/applications/window-managers/i3/workstyle.nix +++ b/pkgs/applications/window-managers/i3/workstyle.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { 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 1f4588be0ed68..3132186b3afa4 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 451e243b163b0..195461b39beb9 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 be1493f605149..8b53f1711cfc5 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 f157eee581140..3aa0b1dbdfe40 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 109d200a29b13..d2fb54a330ea1 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/sommelier/default.nix b/pkgs/applications/window-managers/sommelier/default.nix index bf7b4d1f6933b..81f5d262e2922 100644 --- a/pkgs/applications/window-managers/sommelier/default.nix +++ b/pkgs/applications/window-managers/sommelier/default.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation { passthru.updateScript = ./update.py; - meta = with lib; { + meta = { 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/applications/window-managers/tabbed/default.nix b/pkgs/applications/window-managers/tabbed/default.nix index d2c123ebc55c4..2372c58837809 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/wayfire/firedecor.nix b/pkgs/applications/window-managers/wayfire/firedecor.nix index 573a78abb0bcf..4a5d80385529a 100644 --- a/pkgs/applications/window-managers/wayfire/firedecor.nix +++ b/pkgs/applications/window-managers/wayfire/firedecor.nix @@ -56,10 +56,10 @@ stdenv.mkDerivation (finalAttrs: { PKG_CONFIG_WAYFIRE_METADATADIR = "${placeholder "out"}/share/wayfire/metadata"; }; - meta = with lib; { + meta = { homepage = "https://github.com/mntmn/Firedecor"; description = "Advanced window decoration plugin for the Wayfire window manager"; - license = licenses.mit; + license = lib.licenses.mit; inherit (mate.mate-wayland-session.meta) maintainers; inherit (wayfire.meta) platforms; }; diff --git a/pkgs/applications/window-managers/xmonad/xmonadctl.nix b/pkgs/applications/window-managers/xmonad/xmonadctl.nix index a755982afda23..18352df8b9565 100644 --- a/pkgs/applications/window-managers/xmonad/xmonadctl.nix +++ b/pkgs/applications/window-managers/xmonad/xmonadctl.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { 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/applications/window-managers/yabar/build.nix b/pkgs/applications/window-managers/yabar/build.nix index b455b32fa7ae5..b813d94435125 100644 --- a/pkgs/applications/window-managers/yabar/build.nix +++ b/pkgs/applications/window-managers/yabar/build.nix @@ -82,11 +82,11 @@ stdenv.mkDerivation { #passthru.tests = { inherit (nixosTests) yabar; }; # nixos currently uses yabar-unstable - meta = with lib; { + meta = { description = "Modern and lightweight status bar for X window managers"; homepage = "https://github.com/geommer/yabar"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "yabar"; }; diff --git a/pkgs/build-support/build-fhsenv-chroot/chrootenv/default.nix b/pkgs/build-support/build-fhsenv-chroot/chrootenv/default.nix index 99903f3e4ad6a..194e77a67a438 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/mitm-cache/default.nix b/pkgs/build-support/mitm-cache/default.nix index 8d206034f7ea7..935717d68a9ca 100644 --- a/pkgs/build-support/mitm-cache/default.nix +++ b/pkgs/build-support/mitm-cache/default.nix @@ -34,11 +34,11 @@ rustPlatform.buildRustPackage rec { passthru.fetch = callPackage ./fetch.nix { }; - meta = with lib; { + meta = { description = "A 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/_0/_0verkill/package.nix b/pkgs/by-name/_0/_0verkill/package.nix index 66a498d68dc64..e4d3d856d3b11 100644 --- a/pkgs/by-name/_0/_0verkill/package.nix +++ b/pkgs/by-name/_0/_0verkill/package.nix @@ -37,11 +37,11 @@ gccStdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-fcommon"; hardeningDisable = [ "all" ]; # Someday the upstream will update the code... - meta = with lib; { + meta = { homepage = "https://github.com/hackndev/0verkill"; description = "ASCII-ART bloody 2D action deathmatch-like game"; - license = with licenses; gpl2Only; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = with platforms; unix; + license = with lib.licenses; gpl2Only; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/_0/_0x/package.nix b/pkgs/by-name/_0/_0x/package.nix index e072cc4b58c53..183770e5a8d37 100644 --- a/pkgs/by-name/_0/_0x/package.nix +++ b/pkgs/by-name/_0/_0x/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage { ln -s ${./Cargo.lock} Cargo.lock ''; - meta = with lib; { + meta = { homepage = "https://github.com/mcy/0x"; description = "Colorful, configurable xxd"; mainProgram = "0x"; - license = licenses.asl20; - maintainers = with maintainers; [ AndersonTorres ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ AndersonTorres ]; }; } diff --git a/pkgs/by-name/_0/_0xproto/package.nix b/pkgs/by-name/_0/_0xproto/package.nix index 91857593b4936..58b94cd57eb14 100644 --- a/pkgs/by-name/_0/_0xproto/package.nix +++ b/pkgs/by-name/_0/_0xproto/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Free and Open-source font for programming"; homepage = "https://github.com/0xType/0xProto"; - license = licenses.ofl; - maintainers = [ maintainers.edswordsmith ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = [ lib.maintainers.edswordsmith ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/_2/_2048-in-terminal/package.nix b/pkgs/by-name/_2/_2048-in-terminal/package.nix index c27a4640c850b..3fca3f4b70b47 100644 --- a/pkgs/by-name/_2/_2048-in-terminal/package.nix +++ b/pkgs/by-name/_2/_2048-in-terminal/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { ''; installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Animated console version of the 2048 game"; mainProgram = "2048-in-terminal"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/_2/_20kly/package.nix b/pkgs/by-name/_2/_20kly/package.nix index e860a01fe15d7..a803c4aeb6fd6 100644 --- a/pkgs/by-name/_2/_20kly/package.nix +++ b/pkgs/by-name/_2/_20kly/package.nix @@ -38,11 +38,11 @@ python3Packages.buildPythonApplication rec { install -Dm755 lightyears "$out/bin/lightyears" ''; - meta = with lib; { + meta = { description = "Steampunk-themed strategy game where you have to manage a steam supply network"; mainProgram = "lightyears"; homepage = "http://jwhitham.org.uk/20kly/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fgaz ]; }; } diff --git a/pkgs/by-name/_3/_3mux/package.nix b/pkgs/by-name/_3/_3mux/package.nix index f56a328ce6448..0aee15e456310 100644 --- a/pkgs/by-name/_3/_3mux/package.nix +++ b/pkgs/by-name/_3/_3mux/package.nix @@ -50,7 +50,7 @@ buildGoModule rec { wrapProgram $out/bin/3mux --prefix PATH : $out/bin ''; - meta = with lib; { + meta = { description = "Terminal multiplexer inspired by i3"; mainProgram = "3mux"; longDescription = '' @@ -58,11 +58,11 @@ buildGoModule rec { mouse-controlled scrollback, and i3-like keybindings ''; homepage = "https://github.com/aaronjanse/3mux"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aaronjanse Br1ght0ne ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/_3/_3proxy/package.nix b/pkgs/by-name/_3/_3proxy/package.nix index ad9c639ea45a3..963d527cded38 100644 --- a/pkgs/by-name/_3/_3proxy/package.nix +++ b/pkgs/by-name/_3/_3proxy/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { smoke-test = nixosTests._3proxy; }; - meta = with lib; { + meta = { description = "Tiny free proxy server"; homepage = "https://github.com/3proxy/3proxy"; - license = licenses.bsd2; - platforms = platforms.linux; - maintainers = with maintainers; [ misuzu ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ misuzu ]; }; } diff --git a/pkgs/by-name/_4/_4d-minesweeper/package.nix b/pkgs/by-name/_4/_4d-minesweeper/package.nix index a20d776806a42..bb297d064b632 100644 --- a/pkgs/by-name/_4/_4d-minesweeper/package.nix +++ b/pkgs/by-name/_4/_4d-minesweeper/package.nix @@ -79,11 +79,11 @@ stdenv.mkDerivation { dontFixup = true; dontStrip = true; - meta = with lib; { + meta = { homepage = "https://github.com/gapophustu/4D-Minesweeper"; description = "4D Minesweeper game written in Godot"; - license = licenses.mpl20; - platforms = platforms.linux; + license = lib.licenses.mpl20; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "4d-minesweeper"; }; diff --git a/pkgs/by-name/_4/_4ti2/package.nix b/pkgs/by-name/_4/_4ti2/package.nix index dc46e01828bf2..10e96fe961c2b 100644 --- a/pkgs/by-name/_4/_4ti2/package.nix +++ b/pkgs/by-name/_4/_4ti2/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { installFlags = [ "install-exec" ]; - meta = with lib; { + meta = { homepage = "https://4ti2.github.io/"; description = "Software package for algebraic, geometric and combinatorial problems on linear spaces"; - license = with licenses; [ gpl2Plus ]; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.all; + license = with lib.licenses; [ gpl2Plus ]; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/_9/_915resolution/package.nix b/pkgs/by-name/_9/_915resolution/package.nix index 1b2ef09a5789f..681855bb2862e 100644 --- a/pkgs/by-name/_9/_915resolution/package.nix +++ b/pkgs/by-name/_9/_915resolution/package.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { patchPhase = "rm *.o"; installPhase = "mkdir -p $out/sbin; cp 915resolution $out/sbin/"; - meta = with lib; { + meta = { homepage = "http://915resolution.mango-lang.org/"; description = "Tool to modify Intel 800/900 video BIOS"; mainProgram = "915resolution"; @@ -24,6 +24,6 @@ stdenv.mkDerivation rec { "i686-linux" "x86_64-linux" ]; - license = licenses.publicDomain; + license = lib.licenses.publicDomain; }; } diff --git a/pkgs/by-name/_9/_9base/package.nix b/pkgs/by-name/_9/_9base/package.nix index 02aa841117af5..cc2410ed3cdbc 100644 --- a/pkgs/by-name/_9/_9base/package.nix +++ b/pkgs/by-name/_9/_9base/package.nix @@ -65,7 +65,7 @@ stdenv.mkDerivation { "troff" ]; - meta = with lib; { + meta = { homepage = "https://tools.suckless.org/9base/"; description = "9base is a port of various original Plan 9 tools for Unix, based on plan9port"; longDescription = '' @@ -74,12 +74,12 @@ stdenv.mkDerivation { The overall SLOC is about 66kSLOC, so this userland + all libs is much smaller than, e.g. bash. 9base can be used to run werc instead of the full blown plan9port. ''; - license = with licenses; [ + license = with lib.licenses; [ mit # and lpl-102 ]; - maintainers = with maintainers; [ jk ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ jk ]; + platforms = lib.platforms.unix; # needs additional work to support aarch64-darwin # due to usage of _DARWIN_NO_64_BIT_INODE broken = stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/_9/_9ptls/package.nix b/pkgs/by-name/_9/_9ptls/package.nix index 0c34dd53e314a..9434035f64e7c 100644 --- a/pkgs/by-name/_9/_9ptls/package.nix +++ b/pkgs/by-name/_9/_9ptls/package.nix @@ -17,16 +17,16 @@ stdenv.mkDerivation (finalAttrs: { ]; installTargets = "mount.9ptls.install"; - meta = with lib; { + meta = { description = "mount.9ptls mount helper"; longDescription = '' mount.9ptls wraps the v9fs mount type in a dp9ik authenticated tls tunnel using tlsclient. ''; homepage = "https://git.sr.ht/~moody/tlsclient"; - license = licenses.mit; - maintainers = with maintainers; [ moody ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ moody ]; mainProgram = "mount.9ptls"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/a2/a2jmidid/package.nix b/pkgs/by-name/a2/a2jmidid/package.nix index 10b2fa3fe9b25..0c8a323106c2f 100644 --- a/pkgs/by-name/a2/a2jmidid/package.nix +++ b/pkgs/by-name/a2/a2jmidid/package.nix @@ -50,10 +50,10 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system"; homepage = "https://a2jmidid.ladish.org/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; platforms = [ "i686-linux" diff --git a/pkgs/by-name/a2/a2ps/package.nix b/pkgs/by-name/a2/a2ps/package.nix index bb4ba7c4df320..e83fb6de6425c 100644 --- a/pkgs/by-name/a2/a2ps/package.nix +++ b/pkgs/by-name/a2/a2ps/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { description = "Anything to PostScript converter and pretty-printer"; longDescription = '' GNU a2ps converts files into PostScript for printing or viewing. It uses a nice default format, @@ -50,8 +50,8 @@ stdenv.mkDerivation rec { well as pretty printing for a wide range of programming languages. ''; homepage = "https://www.gnu.org/software/a2ps/"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.bennofs ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.bennofs ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/aa/aaa/package.nix b/pkgs/by-name/aa/aaa/package.nix index 0085f924cfdbb..54a143d6b486d 100644 --- a/pkgs/by-name/aa/aaa/package.nix +++ b/pkgs/by-name/aa/aaa/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { }; cargoHash = "sha256-ugB0r9qiGRurc30GrJH4MKM6fWZ99+f1Gy7/1lSmrwU="; - meta = with lib; { + meta = { description = "Terminal viewer for 3a format"; homepage = "https://github.com/DomesticMoth/aaa"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ asciimoth ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ asciimoth ]; mainProgram = "aaa"; }; } diff --git a/pkgs/by-name/aa/aaaaxy/package.nix b/pkgs/by-name/aa/aaaaxy/package.nix index 2c61f1d711f10..332b665172d31 100644 --- a/pkgs/by-name/aa/aaaaxy/package.nix +++ b/pkgs/by-name/aa/aaaaxy/package.nix @@ -126,12 +126,12 @@ buildGoModule rec { strictDeps = true; - meta = with lib; { + meta = { description = "Nonlinear 2D puzzle platformer taking place in impossible spaces"; mainProgram = "aaaaxy"; homepage = "https://divverent.github.io/aaaaxy/"; - license = licenses.asl20; - maintainers = with maintainers; [ Luflosi ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Luflosi ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/aa/aacgain/package.nix b/pkgs/by-name/aa/aacgain/package.nix index c91bbbe3f3f81..b45bc2b13a9da 100644 --- a/pkgs/by-name/aa/aacgain/package.nix +++ b/pkgs/by-name/aa/aacgain/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation { env.NIX_CFLAGS_COMPILE = "-Wno-error=narrowing"; - meta = with lib; { + meta = { description = "ReplayGain for AAC files"; homepage = "https://github.com/dgilman/aacgain"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.robbinch ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.robbinch ]; mainProgram = "aacgain"; }; } diff --git a/pkgs/by-name/aa/aaxtomp3/package.nix b/pkgs/by-name/aa/aaxtomp3/package.nix index 38dfb30dffc69..4f59deae5de48 100644 --- a/pkgs/by-name/aa/aaxtomp3/package.nix +++ b/pkgs/by-name/aa/aaxtomp3/package.nix @@ -70,10 +70,10 @@ resholve.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Convert Audible's .aax filetype to MP3, FLAC, M4A, or OPUS"; homepage = "https://krumpetpirate.github.io/AAXtoMP3"; - license = licenses.wtfpl; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ urandom ]; }; } diff --git a/pkgs/by-name/ab/abaddon/package.nix b/pkgs/by-name/ab/abaddon/package.nix index 7df9c694be083..48ed0c8abb3ff 100644 --- a/pkgs/by-name/ab/abaddon/package.nix +++ b/pkgs/by-name/ab/abaddon/package.nix @@ -87,12 +87,12 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "A discord client reimplementation, written in C++"; mainProgram = "abaddon"; homepage = "https://github.com/uowuo/abaddon"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ genericnerdyusername ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ genericnerdyusername ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ab/abbaye-des-morts/package.nix b/pkgs/by-name/ab/abbaye-des-morts/package.nix index a2908ed9e502a..fc0691fc6c024 100644 --- a/pkgs/by-name/ab/abbaye-des-morts/package.nix +++ b/pkgs/by-name/ab/abbaye-des-morts/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { mkdir -p $out/share/applications ''; - meta = with lib; { + meta = { homepage = "https://locomalito.com/abbaye_des_morts.php"; description = "Retro arcade video game"; mainProgram = "abbayev2"; - license = licenses.gpl3; - maintainers = [ maintainers.marius851000 ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.marius851000 ]; }; } diff --git a/pkgs/by-name/ab/abc-verifier/package.nix b/pkgs/by-name/ab/abc-verifier/package.nix index 45677ec9d697b..54672c1d674f7 100644 --- a/pkgs/by-name/ab/abc-verifier/package.nix +++ b/pkgs/by-name/ab/abc-verifier/package.nix @@ -29,15 +29,15 @@ stdenv.mkDerivation (finalAttrs: { # needed by yosys passthru.rev = finalAttrs.src.rev; - meta = with lib; { + meta = { description = "Tool for squential logic synthesis and formal verification"; homepage = "https://people.eecs.berkeley.edu/~alanmi/abc"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thoughtpolice Luflosi ]; mainProgram = "abc"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ab/abcm2ps/package.nix b/pkgs/by-name/ab/abcm2ps/package.nix index 873bbebcd36e1..057183648af4a 100644 --- a/pkgs/by-name/ab/abcm2ps/package.nix +++ b/pkgs/by-name/ab/abcm2ps/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "http://moinejf.free.fr/"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; description = "Command line program which converts ABC to music sheet in PostScript or SVG format"; - platforms = platforms.unix; - maintainers = [ maintainers.dotlambda ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.dotlambda ]; mainProgram = "abcm2ps"; }; }) diff --git a/pkgs/by-name/ab/abduco/package.nix b/pkgs/by-name/ab/abduco/package.nix index df318ca8c3400..6526d8d6e8066 100644 --- a/pkgs/by-name/ab/abduco/package.nix +++ b/pkgs/by-name/ab/abduco/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation { }) ]; - meta = with lib; { + meta = { homepage = "http://brain-dump.org/projects/abduco"; - license = licenses.isc; + license = lib.licenses.isc; description = "Allows programs to be run independently from its controlling terminal"; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.unix; mainProgram = "abduco"; }; } diff --git a/pkgs/by-name/ab/abi-compliance-checker/package.nix b/pkgs/by-name/ab/abi-compliance-checker/package.nix index 0d4f133ab16f4..8a3485cd4c5e1 100644 --- a/pkgs/by-name/ab/abi-compliance-checker/package.nix +++ b/pkgs/by-name/ab/abi-compliance-checker/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { makeFlags = [ "prefix=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://lvc.github.io/abi-compliance-checker"; description = "Tool for checking backward API/ABI compatibility of a C/C++ library"; mainProgram = "abi-compliance-checker"; - license = licenses.lgpl21; - maintainers = [ maintainers.bhipple ]; - platforms = platforms.all; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.bhipple ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ab/abi-dumper/package.nix b/pkgs/by-name/ab/abi-dumper/package.nix index 27321eb12325a..e98e95a357dc5 100644 --- a/pkgs/by-name/ab/abi-dumper/package.nix +++ b/pkgs/by-name/ab/abi-dumper/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { preBuild = "mkdir -p $out"; makeFlags = [ "prefix=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/lvc/abi-dumper"; description = "Dump ABI of an ELF object containing DWARF debug info"; mainProgram = "abi-dumper"; - license = licenses.lgpl21; - maintainers = [ maintainers.bhipple ]; - platforms = platforms.all; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.bhipple ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ab/abiword/package.nix b/pkgs/by-name/ab/abiword/package.nix index d26ef4b984c9f..b49ba4110310f 100644 --- a/pkgs/by-name/ab/abiword/package.nix +++ b/pkgs/by-name/ab/abiword/package.nix @@ -75,13 +75,13 @@ stdenv.mkDerivation rec { rev-prefix = "release-"; }; - meta = with lib; { + meta = { description = "Word processing program, similar to Microsoft Word"; mainProgram = "abiword"; homepage = "https://gitlab.gnome.org/World/AbiWord/"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pSub ylwghst sna diff --git a/pkgs/by-name/ab/ablog/package.nix b/pkgs/by-name/ab/ablog/package.nix index b119045439579..5b3d14b950dd3 100644 --- a/pkgs/by-name/ab/ablog/package.nix +++ b/pkgs/by-name/ab/ablog/package.nix @@ -49,11 +49,11 @@ python3.pkgs.buildPythonApplication rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "ABlog for blogging with Sphinx"; mainProgram = "ablog"; homepage = "https://ablog.readthedocs.io/en/latest/"; - license = licenses.mit; - maintainers = with maintainers; [ rgrinberg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rgrinberg ]; }; } diff --git a/pkgs/by-name/ab/abootimg/package.nix b/pkgs/by-name/ab/abootimg/package.nix index a281480a8c261..1b5f5109b2489 100644 --- a/pkgs/by-name/ab/abootimg/package.nix +++ b/pkgs/by-name/ab/abootimg/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/ggrandou/abootimg"; description = "Manipulate Android Boot Images"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = [ maintainers.flokli ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.flokli ]; }; } diff --git a/pkgs/by-name/ab/abracadabra/package.nix b/pkgs/by-name/ab/abracadabra/package.nix index e597a3807d03d..c18dbc2c05d47 100644 --- a/pkgs/by-name/ab/abracadabra/package.nix +++ b/pkgs/by-name/ab/abracadabra/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { "-DSOAPYSDR=ON" ]; - meta = with lib; { + meta = { description = "DAB/DAB+ radio application"; homepage = "https://github.com/KejPi/AbracaDABra"; - platforms = platforms.linux; - license = licenses.mit; - maintainers = [ maintainers.markuskowa ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.markuskowa ]; mainProgram = "AbracaDABra"; }; } diff --git a/pkgs/by-name/ac/acc/package.nix b/pkgs/by-name/ac/acc/package.nix index 894aa7ce588e0..24519ce9e9096 100644 --- a/pkgs/by-name/ac/acc/package.nix +++ b/pkgs/by-name/ac/acc/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "ACS script compiler for use with ZDoom and Hexen"; homepage = "https://zdoom.org/wiki/ACC"; - license = licenses.activision; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.all; + license = lib.licenses.activision; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.all; mainProgram = "acc"; }; }) diff --git a/pkgs/by-name/ac/accelergy/package.nix b/pkgs/by-name/ac/accelergy/package.nix index fbbe84894ebc3..1eaa4ab1f3fa1 100644 --- a/pkgs/by-name/ac/accelergy/package.nix +++ b/pkgs/by-name/ac/accelergy/package.nix @@ -22,10 +22,10 @@ python3Packages.buildPythonApplication rec { setuptools ]; - meta = with lib; { + meta = { description = "Architecture-level energy/area estimator for accelerator designs"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://accelergy.mit.edu/"; - maintainers = with maintainers; [ gdinh ]; + maintainers = with lib.maintainers; [ gdinh ]; }; } diff --git a/pkgs/by-name/ac/accountsservice/package.nix b/pkgs/by-name/ac/accountsservice/package.nix index 6456657b7afa5..53c1e8e6847df 100644 --- a/pkgs/by-name/ac/accountsservice/package.nix +++ b/pkgs/by-name/ac/accountsservice/package.nix @@ -101,11 +101,11 @@ stdenv.mkDerivation rec { patchShebangs meson_post_install.py ''; - meta = with lib; { + meta = { description = "D-Bus interface for user account query and manipulation"; homepage = "https://www.freedesktop.org/wiki/Software/AccountsService"; - license = licenses.gpl3Plus; - maintainers = teams.freedesktop.members ++ (with maintainers; [ pSub ]); - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.freedesktop.members ++ (with lib.maintainers; [ pSub ]); + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ac/accuraterip-checksum/package.nix b/pkgs/by-name/ac/accuraterip-checksum/package.nix index aa4bee62b4b84..0b53edb6ec45f 100644 --- a/pkgs/by-name/ac/accuraterip-checksum/package.nix +++ b/pkgs/by-name/ac/accuraterip-checksum/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Program for computing the AccurateRip checksum of singletrack WAV files"; homepage = "https://github.com/leo-bogert/accuraterip-checksum"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; mainProgram = "accuraterip-checksum"; }; } diff --git a/pkgs/by-name/ac/ace/package.nix b/pkgs/by-name/ac/ace/package.nix index f3c0ab54164ea..6b927e741c95d 100644 --- a/pkgs/by-name/ac/ace/package.nix +++ b/pkgs/by-name/ac/ace/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { > include/makeinclude/platform_macros.GNU ''; - meta = with lib; { + meta = { homepage = "https://www.dre.vanderbilt.edu/~schmidt/ACE.html"; description = "ADAPTIVE Communication Environment"; mainProgram = "ace_gperf"; - license = licenses.doc; - maintainers = with maintainers; [ nico202 ]; - platforms = platforms.linux; + license = lib.licenses.doc; + maintainers = with lib.maintainers; [ nico202 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ac/acgtk/package.nix b/pkgs/by-name/ac/acgtk/package.nix index fd146618c91fe..cb003ec455854 100644 --- a/pkgs/by-name/ac/acgtk/package.nix +++ b/pkgs/by-name/ac/acgtk/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation { dune install --prefix $out --libdir $OCAMLFIND_DESTDIR ''; - meta = with lib; { + meta = { homepage = "https://acg.loria.fr/"; description = "Toolkit for developing ACG signatures and lexicon"; - license = licenses.cecill20; + license = lib.licenses.cecill20; inherit (ocamlPackages.ocaml.meta) platforms; - maintainers = [ maintainers.jirkamarsik ]; + maintainers = [ lib.maintainers.jirkamarsik ]; }; } diff --git a/pkgs/by-name/ac/acltoolkit/package.nix b/pkgs/by-name/ac/acltoolkit/package.nix index fe0e8da71cfa8..17b6ee9d344f1 100644 --- a/pkgs/by-name/ac/acltoolkit/package.nix +++ b/pkgs/by-name/ac/acltoolkit/package.nix @@ -37,11 +37,11 @@ python3.pkgs.buildPythonPackage rec { "acltoolkit" ]; - meta = with lib; { + meta = { description = "ACL abuse swiss-knife"; mainProgram = "acltoolkit"; homepage = "https://github.com/zblurx/acltoolkit"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ac/acme/package.nix b/pkgs/by-name/ac/acme/package.nix index d1795552dc8d2..0712590464f87 100644 --- a/pkgs/by-name/ac/acme/package.nix +++ b/pkgs/by-name/ac/acme/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { makeFlags = [ "BINDIR=$(out)/bin" ]; - meta = with lib; { + meta = { description = "Multi-platform cross assembler for 6502/6510/65816 CPUs"; mainProgram = "acme"; homepage = "https://sourceforge.net/projects/acme-crossass/"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ OPNA2608 ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ OPNA2608 ]; }; } diff --git a/pkgs/by-name/ac/acpi/package.nix b/pkgs/by-name/ac/acpi/package.nix index 2d9decc66244e..8075bf8521d78 100644 --- a/pkgs/by-name/ac/acpi/package.nix +++ b/pkgs/by-name/ac/acpi/package.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { sha256 = "01ahldvf0gc29dmbd5zi4rrnrw2i1ajnf30sx2vyaski3jv099fp"; }; - meta = with lib; { + meta = { description = "Show battery status and other ACPI information"; mainProgram = "acpi"; longDescription = '' @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { ''; homepage = "https://sourceforge.net/projects/acpiclient/"; license = lib.licenses.gpl2Plus; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ac/acpic/package.nix b/pkgs/by-name/ac/acpic/package.nix index 246d6aa67904f..516662ffa20de 100644 --- a/pkgs/by-name/ac/acpic/package.nix +++ b/pkgs/by-name/ac/acpic/package.nix @@ -27,11 +27,11 @@ python3Packages.buildPythonApplication rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Daemon extending acpid event handling capabilities"; mainProgram = "acpic"; homepage = "https://github.com/psliwka/acpic"; - license = licenses.wtfpl; - maintainers = with maintainers; [ aacebedo ]; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ aacebedo ]; }; } diff --git a/pkgs/by-name/ac/acpid/package.nix b/pkgs/by-name/ac/acpid/package.nix index 0d626b0fad713..97a5416ab2711 100644 --- a/pkgs/by-name/ac/acpid/package.nix +++ b/pkgs/by-name/ac/acpid/package.nix @@ -16,10 +16,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/acpid2/"; description = "Daemon for delivering ACPI events to userspace programs"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ac/acpilight/package.nix b/pkgs/by-name/ac/acpilight/package.nix index ec59a26099353..cbf2e6914254c 100644 --- a/pkgs/by-name/ac/acpilight/package.nix +++ b/pkgs/by-name/ac/acpilight/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { makeFlags = [ "DESTDIR=$(out) prefix=" ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/wavexx/acpilight"; description = "ACPI backlight control"; - license = licenses.gpl3; - maintainers = with maintainers; [ smakarov ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ smakarov ]; + platforms = lib.platforms.linux; mainProgram = "xbacklight"; }; } diff --git a/pkgs/by-name/ac/action-validator/package.nix b/pkgs/by-name/ac/action-validator/package.nix index a82c792b1fca1..ba4c5c000327e 100644 --- a/pkgs/by-name/ac/action-validator/package.nix +++ b/pkgs/by-name/ac/action-validator/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-mBY+J6JcIhV++tO6Dhw5JvYLSwoYZR3lB3l0KTjkcQM="; - meta = with lib; { + meta = { description = "Tool to validate GitHub Action and Workflow YAML files"; homepage = "https://github.com/mpalmer/action-validator"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "action-validator"; - maintainers = with maintainers; [ thiagokokada ]; + maintainers = with lib.maintainers; [ thiagokokada ]; }; } diff --git a/pkgs/by-name/ac/actkbd/package.nix b/pkgs/by-name/ac/actkbd/package.nix index 154d50c4d43af..bd838c13f50ac 100644 --- a/pkgs/by-name/ac/actkbd/package.nix +++ b/pkgs/by-name/ac/actkbd/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { cp -r README samples $out/share/doc/actkbd ''; - meta = with lib; { + meta = { description = "Keyboard shortcut daemon"; longDescription = '' actkbd is a simple daemon that binds actions to keyboard events @@ -32,9 +32,9 @@ stdenv.mkDerivation rec { recognises key combinations and can handle press, repeat and release events. ''; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; homepage = "http://users.softlab.ece.ntua.gr/~thkala/projects/actkbd/"; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "actkbd"; }; } diff --git a/pkgs/by-name/ad/ad-ldap-enum/package.nix b/pkgs/by-name/ad/ad-ldap-enum/package.nix index 3b8f074eba3c0..066b79b6b8a18 100644 --- a/pkgs/by-name/ad/ad-ldap-enum/package.nix +++ b/pkgs/by-name/ad/ad-ldap-enum/package.nix @@ -41,11 +41,11 @@ stdenvNoCC.mkDerivation { runHook postFixup ''; - meta = with lib; { + meta = { description = "LDAP based Active Directory user and group enumeration tool"; homepage = "https://github.com/CroweCybersecurity/ad-ldap-enum"; - license = licenses.mit; - maintainers = with maintainers; [ h7x4 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ h7x4 ]; platforms = python3.meta.platforms; mainProgram = "ad-ldap-enum"; }; diff --git a/pkgs/by-name/ad/adafruit-ampy/package.nix b/pkgs/by-name/ad/adafruit-ampy/package.nix index 0cf5ba087a494..2290faa29b9aa 100644 --- a/pkgs/by-name/ad/adafruit-ampy/package.nix +++ b/pkgs/by-name/ad/adafruit-ampy/package.nix @@ -25,9 +25,9 @@ buildPythonApplication rec { # No tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/pycampers/ampy"; - license = licenses.mit; + license = lib.licenses.mit; description = "Utility to interact with a MicroPython board over a serial connection"; maintainers = [ ]; mainProgram = "ampy"; diff --git a/pkgs/by-name/ad/adapta-backgrounds/package.nix b/pkgs/by-name/ad/adapta-backgrounds/package.nix index 109fe4c512ca5..bf4cc0ab8f10b 100644 --- a/pkgs/by-name/ad/adapta-backgrounds/package.nix +++ b/pkgs/by-name/ad/adapta-backgrounds/package.nix @@ -27,14 +27,14 @@ stdenv.mkDerivation rec { ]; buildInputs = [ glib ]; - meta = with lib; { + meta = { description = "Wallpaper collection for adapta-project"; homepage = "https://github.com/adapta-project/adapta-backgrounds"; - license = with licenses; [ + license = with lib.licenses; [ gpl2 cc-by-sa-40 ]; - platforms = platforms.all; - maintainers = with maintainers; [ romildo ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/ad/adapta-gtk-theme/package.nix b/pkgs/by-name/ad/adapta-gtk-theme/package.nix index 67d3ffe76968c..72d2106950aa5 100644 --- a/pkgs/by-name/ad/adapta-gtk-theme/package.nix +++ b/pkgs/by-name/ad/adapta-gtk-theme/package.nix @@ -54,14 +54,14 @@ stdenv.mkDerivation rec { "--disable-unity" ]; - meta = with lib; { + meta = { description = "Adaptive GTK theme based on Material Design Guidelines"; homepage = "https://github.com/adapta-project/adapta-gtk-theme"; - license = with licenses; [ + license = with lib.licenses; [ gpl2 cc-by-sa-30 ]; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ad/adbfs-rootless/package.nix b/pkgs/by-name/ad/adbfs-rootless/package.nix index 4fb50b55eb1a8..e0f18b87e5551 100644 --- a/pkgs/by-name/ad/adbfs-rootless/package.nix +++ b/pkgs/by-name/ad/adbfs-rootless/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Mount Android phones on Linux with adb, no root required"; mainProgram = "adbfs"; inherit (src.meta) homepage; - license = licenses.bsd3; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ad/adcli/package.nix b/pkgs/by-name/ad/adcli/package.nix index 6ca3445c88a40..bd0077d089e12 100644 --- a/pkgs/by-name/ad/adcli/package.nix +++ b/pkgs/by-name/ad/adcli/package.nix @@ -61,15 +61,15 @@ stdenv.mkDerivation rec { patch_docbook doc/adcli-docs.xml ''; - meta = with lib; { + meta = { homepage = "https://www.freedesktop.org/software/realmd/adcli/adcli.html"; description = "Helper library and tools for Active Directory client operations"; mainProgram = "adcli"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ SohamG anthonyroussel ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ad/adcskiller/package.nix b/pkgs/by-name/ad/adcskiller/package.nix index 2107951366029..61ca3eb993f3f 100644 --- a/pkgs/by-name/ad/adcskiller/package.nix +++ b/pkgs/by-name/ad/adcskiller/package.nix @@ -36,11 +36,11 @@ python3.pkgs.buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Python-based tool designed to automate the process of discovering and exploiting Active Directory Certificate Services (ADCS) vulnerabilities"; homepage = "https://github.com/grimlockx/ADCSKiller"; - license = licenses.mit; - maintainers = with maintainers; [ exploitoverload ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ exploitoverload ]; mainProgram = "ADCSKiller"; }; } diff --git a/pkgs/by-name/ad/addic7ed-cli/package.nix b/pkgs/by-name/ad/addic7ed-cli/package.nix index 8cf1b4eaf011e..c5dd68fd3d053 100644 --- a/pkgs/by-name/ad/addic7ed-cli/package.nix +++ b/pkgs/by-name/ad/addic7ed-cli/package.nix @@ -22,12 +22,12 @@ python3Packages.buildPythonApplication rec { doCheck = false; pythonImportsCheck = [ "addic7ed_cli" ]; - meta = with lib; { + meta = { description = "Commandline access to addic7ed subtitles"; homepage = "https://github.com/BenoitZugmeyer/addic7ed-cli"; - license = licenses.mit; - maintainers = with maintainers; [ aethelz ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aethelz ]; + platforms = lib.platforms.unix; mainProgram = "addic7ed"; }; } diff --git a/pkgs/by-name/ad/addlicense/package.nix b/pkgs/by-name/ad/addlicense/package.nix index fdff6455a6301..bc8c9f5c7338a 100644 --- a/pkgs/by-name/ad/addlicense/package.nix +++ b/pkgs/by-name/ad/addlicense/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Ensures source code files have copyright license headers by scanning directory patterns recursively"; homepage = "https://github.com/google/addlicense"; - license = licenses.asl20; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; mainProgram = "addlicense"; }; } diff --git a/pkgs/by-name/ad/adementary-theme/package.nix b/pkgs/by-name/ad/adementary-theme/package.nix index 67aafe49a2994..68b6255819d06 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 3b79044ca6365..a0507c8b8aa28 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 855ba2d459f46..fcc4d90929ed1 100644 --- a/pkgs/by-name/ad/adguardian/package.nix +++ b/pkgs/by-name/ad/adguardian/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.Security ]; - 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/adi1090x-plymouth-themes/package.nix b/pkgs/by-name/ad/adi1090x-plymouth-themes/package.nix index 5aa7e78ac11a8..f362ff50f7fa8 100644 --- a/pkgs/by-name/ad/adi1090x-plymouth-themes/package.nix +++ b/pkgs/by-name/ad/adi1090x-plymouth-themes/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation { find $out/share/plymouth/themes/ -name \*.plymouth -exec sed -i "s@\/usr\/@$out\/@" {} \; ''; - meta = with lib; { + meta = { description = "Plymouth boot themes from adi1090x"; longDescription = '' A variety of plymouth boot screens by adi1090x. Using the default value @@ -60,8 +60,8 @@ stdenv.mkDerivation { ./shas.nix for available themes. ''; homepage = "https://github.com/adi1090x/plymouth-themes"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ slwst ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ slwst ]; }; } diff --git a/pkgs/by-name/ad/adif-multitool/package.nix b/pkgs/by-name/ad/adif-multitool/package.nix index 7713c4dd83af6..ea7907c6c6915 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-GH35dcSjoOTaQiA4j9F5fbz3XStkjlKA0he7msaJHD8="; }; - 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 0412846962fc0..d4d9a5197cbee 100644 --- a/pkgs/by-name/ad/adl/package.nix +++ b/pkgs/by-name/ad/adl/package.nix @@ -45,12 +45,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/adminer/package.nix b/pkgs/by-name/ad/adminer/package.nix index 78a4f0ef6f856..1af88af4aabf0 100644 --- a/pkgs/by-name/ad/adminer/package.nix +++ b/pkgs/by-name/ad/adminer/package.nix @@ -42,17 +42,17 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Database management in a single PHP file"; homepage = "https://www.adminer.org"; - license = with licenses; [ + license = with lib.licenses; [ asl20 gpl2Only ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jtojnar sstef ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ad/adminerevo/package.nix b/pkgs/by-name/ad/adminerevo/package.nix index d286331b0b609..60571e2ce82fc 100644 --- a/pkgs/by-name/ad/adminerevo/package.nix +++ b/pkgs/by-name/ad/adminerevo/package.nix @@ -62,16 +62,16 @@ 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 = with maintainers; [ + maintainers = with lib.maintainers; [ shyim ]; - 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 d74245b104e73..ee3845ea882be 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/adrgen/package.nix b/pkgs/by-name/ad/adrgen/package.nix index e018fd97c0832..09b870718e68c 100644 --- a/pkgs/by-name/ad/adrgen/package.nix +++ b/pkgs/by-name/ad/adrgen/package.nix @@ -35,10 +35,10 @@ buildGoModule rec { version = "v${version}"; }; - meta = with lib; { + meta = { homepage = "https://github.com/asiermarques/adrgen"; description = "Command-line tool for generating and managing Architecture Decision Records"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "adrgen"; }; diff --git a/pkgs/by-name/ad/adslib/package.nix b/pkgs/by-name/ad/adslib/package.nix index 4b3baa6c80015..f382698a0f983 100644 --- a/pkgs/by-name/ad/adslib/package.nix +++ b/pkgs/by-name/ad/adslib/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { 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/ae/aefs/package.nix b/pkgs/by-name/ae/aefs/package.nix index 024601c772fd9..d6f7e54175d32 100644 --- a/pkgs/by-name/ae/aefs/package.nix +++ b/pkgs/by-name/ae/aefs/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation { buildInputs = [ fuse ]; - meta = with lib; { + meta = { homepage = "https://github.com/edolstra/aefs"; description = "Cryptographic filesystem implemented in userspace using FUSE"; maintainers = [ ]; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/ae/aemu/package.nix b/pkgs/by-name/ae/aemu/package.nix index 03722e15320c6..f9181db1e19c6 100644 --- a/pkgs/by-name/ae/aemu/package.nix +++ b/pkgs/by-name/ae/aemu/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation { # "-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/aerc/package.nix b/pkgs/by-name/ae/aerc/package.nix index 7229e439666bd..313b9c0d4237b 100644 --- a/pkgs/by-name/ae/aerc/package.nix +++ b/pkgs/by-name/ae/aerc/package.nix @@ -85,12 +85,12 @@ buildGoModule rec { patchShebangs $out/libexec/aerc/filters ''; - meta = with lib; { + meta = { description = "Email client for your terminal"; homepage = "https://aerc-mail.org/"; maintainers = [ ]; mainProgram = "aerc"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ae/aerospike/package.nix b/pkgs/by-name/ae/aerospike/package.nix index 806932aa3d122..217363f37e8f3 100644 --- a/pkgs/by-name/ae/aerospike/package.nix +++ b/pkgs/by-name/ae/aerospike/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { cp target/Linux-x86_64/bin/asd $out/bin/asd ''; - meta = with lib; { + meta = { description = "Flash-optimized, in-memory, NoSQL database"; mainProgram = "asd"; homepage = "https://aerospike.com/"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ kalbasit ]; + maintainers = with lib.maintainers; [ kalbasit ]; }; } diff --git a/pkgs/by-name/ae/aescrypt/package.nix b/pkgs/by-name/ae/aescrypt/package.nix index 14cbc18efac56..a93e73ddf10b6 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 4a48a5c553e5b..b4df2a8a1e265 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 5a472b82e7b69..0d663322a9cbc 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/aespipe/package.nix b/pkgs/by-name/ae/aespipe/package.nix index 1538490c19278..edbf2929f6e2a 100644 --- a/pkgs/by-name/ae/aespipe/package.nix +++ b/pkgs/by-name/ae/aespipe/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { --prefix PATH : $out/bin:${lib.makeBinPath [ sharutils ]} ''; - meta = with lib; { + meta = { description = "AES encrypting or decrypting pipe"; homepage = "https://loop-aes.sourceforge.net/aespipe.README"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ae/aether-lv2/package.nix b/pkgs/by-name/ae/aether-lv2/package.nix index ac81726cbdeeb..0fedea695ec4f 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/afetch/package.nix b/pkgs/by-name/af/afetch/package.nix index a959d0786420c..5eebb959873a0 100644 --- a/pkgs/by-name/af/afetch/package.nix +++ b/pkgs/by-name/af/afetch/package.nix @@ -19,15 +19,15 @@ stdenv.mkDerivation rec { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Fetch program written in C"; homepage = "https://github.com/13-CF/afetch"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 jk ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "afetch"; }; } diff --git a/pkgs/by-name/af/afew/package.nix b/pkgs/by-name/af/afew/package.nix index 912f7ec3d301c..a3fc331f1bff2 100644 --- a/pkgs/by-name/af/afew/package.nix +++ b/pkgs/by-name/af/afew/package.nix @@ -60,11 +60,11 @@ python3Packages.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/afewmail/afew"; description = "Initial tagging script for notmuch mail"; mainProgram = "afew"; - license = licenses.isc; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/by-name/af/afpfs-ng/package.nix b/pkgs/by-name/af/afpfs-ng/package.nix index 75199dda96e99..d5946886481ae 100644 --- a/pkgs/by-name/af/afpfs-ng/package.nix +++ b/pkgs/by-name/af/afpfs-ng/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation { gmp ]; - meta = with lib; { + meta = { homepage = "https://github.com/simonvetter/afpfs-ng"; description = "Client implementation of the Apple Filing Protocol"; - 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/af/aften/package.nix b/pkgs/by-name/af/aften/package.nix index 36e1495419765..b0960550c8579 100644 --- a/pkgs/by-name/af/aften/package.nix +++ b/pkgs/by-name/af/aften/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DSHARED=ON" ]; - meta = with lib; { + meta = { description = "Audio encoder which generates compressed audio streams based on ATSC A/52 specification"; homepage = "https://aften.sourceforge.net/"; - license = licenses.lgpl21Only; - platforms = platforms.unix; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.lgpl21Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ emilytrau ]; }; } diff --git a/pkgs/by-name/af/afterburn/package.nix b/pkgs/by-name/af/afterburn/package.nix index 13388b785ce5e..3779827d2bdb8 100644 --- a/pkgs/by-name/af/afterburn/package.nix +++ b/pkgs/by-name/af/afterburn/package.nix @@ -33,12 +33,12 @@ rustPlatform.buildRustPackage rec { DEFAULT_INSTANCE=root PREFIX= DESTDIR=$out make install-units ''; - meta = with lib; { + meta = { homepage = "https://github.com/coreos/ignition"; description = "One-shot cloud provider agent"; - license = licenses.asl20; - maintainers = [ maintainers.arianvp ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.arianvp ]; + platforms = lib.platforms.linux; mainProgram = "afterburn"; }; } diff --git a/pkgs/by-name/af/afterglow-cursors-recolored/package.nix b/pkgs/by-name/af/afterglow-cursors-recolored/package.nix index 94f8460645fe5..733c3df8c963b 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 8aa0b90190347..0b3644aeaa072 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 e430f3c69ccba..d768821f45be4 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-fido2-hmac/package.nix b/pkgs/by-name/ag/age-plugin-fido2-hmac/package.nix index e5ee7c0a40407..af418ed505dfb 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-tpm/package.nix b/pkgs/by-name/ag/age-plugin-tpm/package.nix index 0e8dc385600da..4c126b41f30a3 100644 --- a/pkgs/by-name/ag/age-plugin-tpm/package.nix +++ b/pkgs/by-name/ag/age-plugin-tpm/package.nix @@ -34,13 +34,13 @@ buildGoModule rec { "-w" ]; - 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.linux; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ kranzes sgo ]; diff --git a/pkgs/by-name/ag/agkozak-zsh-prompt/package.nix b/pkgs/by-name/ag/agkozak-zsh-prompt/package.nix index 30ce835feda98..c38e2a808ebaf 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/agola/package.nix b/pkgs/by-name/ag/agola/package.nix index 65eac2d281e18..8aa2b797b037c 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 = "Agola: 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 cf1f95645ffd3..05508ffebb805 100644 --- a/pkgs/by-name/ah/ahoviewer/package.nix +++ b/pkgs/by-name/ah/ahoviewer/package.nix @@ -65,14 +65,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 82b3238ccbb86..d1e7d309937f7 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 f57c084e6eb51..67e0346f621a6 100644 --- a/pkgs/by-name/ai/aileron/package.nix +++ b/pkgs/by-name/ai/aileron/package.nix @@ -26,14 +26,14 @@ 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; [ leenaars 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 2a1dba853365d..3b574cbeb2c18 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/airspy/package.nix b/pkgs/by-name/ai/airspy/package.nix index c6f19b1a47bd4..74257942c836c 100644 --- a/pkgs/by-name/ai/airspy/package.nix +++ b/pkgs/by-name/ai/airspy/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { cmakeFlags = lib.optionals stdenv.hostPlatform.isLinux [ "-DINSTALL_UDEV_RULES=ON" ]; - 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 67e45c6f4ec5b..e4277105342f7 100644 --- a/pkgs/by-name/ai/airspyhf/package.nix +++ b/pkgs/by-name/ai/airspyhf/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { 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; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ai/airstrike/package.nix b/pkgs/by-name/ai/airstrike/package.nix index 53fdb6529c75f..b08d252d1a24e 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/airwindows-lv2/package.nix b/pkgs/by-name/ai/airwindows-lv2/package.nix index ea906cb3a2177..104de54892e19 100644 --- a/pkgs/by-name/ai/airwindows-lv2/package.nix +++ b/pkgs/by-name/ai/airwindows-lv2/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { ]; buildInputs = [ lv2 ]; - meta = with lib; { + meta = { description = "Airwindows plugins (ported to LV2)"; homepage = "https://sr.ht/~hannes/airwindows-lv2"; - license = licenses.mit; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ai/aisleriot/package.nix b/pkgs/by-name/ai/aisleriot/package.nix index edc4e0c7d69fd..c4d767e2eef6f 100644 --- a/pkgs/by-name/ai/aisleriot/package.nix +++ b/pkgs/by-name/ai/aisleriot/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/aisleriot"; description = "Collection of patience games written in guile scheme"; mainProgram = "sol"; - maintainers = teams.gnome.members; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/al/alacritty-theme/package.nix b/pkgs/by-name/al/alacritty-theme/package.nix index a5e7d6f44c0c3..89a2b4b434d58 100644 --- a/pkgs/by-name/al/alacritty-theme/package.nix +++ b/pkgs/by-name/al/alacritty-theme/package.nix @@ -33,11 +33,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 1648badc73fdb..fcd2036f39fcd 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/alass/package.nix b/pkgs/by-name/al/alass/package.nix index 0ae84ada3dfbd..ccfdd4946d281 100644 --- a/pkgs/by-name/al/alass/package.nix +++ b/pkgs/by-name/al/alass/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { wrapProgram "$out/bin/alass-cli" --prefix PATH : "${lib.makeBinPath [ ffmpeg ]}" ''; - meta = with lib; { + meta = { description = "Automatic Language-Agnostic Subtitles Synchronization"; homepage = "https://github.com/kaegi/alass"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ erictapen ]; mainProgram = "alass-cli"; }; } diff --git a/pkgs/by-name/al/aldo/package.nix b/pkgs/by-name/al/aldo/package.nix index f8834125dab93..1bc1fc30c5f3f 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/alertmanager-irc-relay/package.nix b/pkgs/by-name/al/alertmanager-irc-relay/package.nix index 2d034dc5608cd..4dbda451bc0ec 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/alice/package.nix b/pkgs/by-name/al/alice/package.nix index 244e8afad623d..88ef1554dd51d 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 12666a286b8f9..e73cc598b6383 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 fa0fcad30e8ea..be7805dcda9e9 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 6b3535bc074a2..7230945691847 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 e905c47735ad4..56fcc4f958bca 100644 --- a/pkgs/by-name/al/alliance/package.nix +++ b/pkgs/by-name/al/alliance/package.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation rec { 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; - maintainers = with maintainers; [ l-as ]; - platforms = with platforms; linux; + license = with lib.licenses; gpl2Plus; + maintainers = with lib.maintainers; [ l-as ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/al/almanah/package.nix b/pkgs/by-name/al/almanah/package.nix index 6cb95674d289f..e82fb19a2486b 100644 --- a/pkgs/by-name/al/almanah/package.nix +++ b/pkgs/by-name/al/almanah/package.nix @@ -99,12 +99,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; - maintainers = teams.gnome.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.gnome.members; }; } diff --git a/pkgs/by-name/al/almonds/package.nix b/pkgs/by-name/al/almonds/package.nix index d8ec911b73040..cae22a731f1a3 100644 --- a/pkgs/by-name/al/almonds/package.nix +++ b/pkgs/by-name/al/almonds/package.nix @@ -23,11 +23,11 @@ buildPythonApplication rec { checkPhase = "py.test"; - 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/alot/package.nix b/pkgs/by-name/al/alot/package.nix index c720e0b8374ea..a2706ff1fe9e0 100644 --- a/pkgs/by-name/al/alot/package.nix +++ b/pkgs/by-name/al/alot/package.nix @@ -95,12 +95,12 @@ buildPythonApplication rec { sed "s,/usr/bin,$out/bin,g" extra/alot.desktop > $out/share/applications/alot.desktop ''; - meta = with lib; { + meta = { homepage = "https://github.com/pazz/alot"; description = "Terminal MUA using notmuch mail"; mainProgram = "alot"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ milibopp ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ milibopp ]; }; } diff --git a/pkgs/by-name/al/alp/package.nix b/pkgs/by-name/al/alp/package.nix index e0e18e9193979..513acd00a6d3f 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/alpine-make-rootfs/package.nix b/pkgs/by-name/al/alpine-make-rootfs/package.nix index c4c42b0acfccb..06323ddfbd0f3 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 683ab090a0183..9e5c199d5977a 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 4bd1dd91d1abe..9cc310032fd21 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/alsa-firmware/package.nix b/pkgs/by-name/al/alsa-firmware/package.nix index 2bf35a11a63c8..53c2d8aa4be13 100644 --- a/pkgs/by-name/al/alsa-firmware/package.nix +++ b/pkgs/by-name/al/alsa-firmware/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { rm -rf $out/bin ''; - meta = with lib; { + meta = { homepage = "http://www.alsa-project.org/"; description = "Soundcard firmwares from the alsa project"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ l-as ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ l-as ]; }; } diff --git a/pkgs/by-name/al/alsa-plugins/package.nix b/pkgs/by-name/al/alsa-plugins/package.nix index faf21f02f1e7e..11187a72091de 100644 --- a/pkgs/by-name/al/alsa-plugins/package.nix +++ b/pkgs/by-name/al/alsa-plugins/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { speexdsp ]; - meta = with lib; { + meta = { description = "Various plugins for ALSA"; homepage = "http://alsa-project.org/"; - license = licenses.lgpl21; - maintainers = [ maintainers.marcweber ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.marcweber ]; + 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 246b1653a528b..bf0a577deb2ff 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/alsaequal/package.nix b/pkgs/by-name/al/alsaequal/package.nix index 924e9ca0b47d8..de522ea490bb8 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 9bb06775d0c7b..47aad0d6c6ec9 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 f9e701eb91d5f..8f9a98fd4f33d 100644 --- a/pkgs/by-name/al/altdns/package.nix +++ b/pkgs/by-name/al/altdns/package.nix @@ -44,11 +44,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 41c5ef19e8288..6eebebaf71bc4 100644 --- a/pkgs/by-name/al/altermime/package.nix +++ b/pkgs/by-name/al/altermime/package.nix @@ -26,10 +26,10 @@ gccStdenv.mkDerivation rec { substituteInPlace Makefile --replace "/usr/local" "$out" ''; - 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 a344ec304eaa1..957aecd93af5f 100644 --- a/pkgs/by-name/al/althttpd/package.nix +++ b/pkgs/by-name/al/althttpd/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { 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/alttab/package.nix b/pkgs/by-name/al/alttab/package.nix index 2d6997abb019d..f34bf575f74ce 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/alure/package.nix b/pkgs/by-name/al/alure/package.nix index 67a36b9b15340..3d40689f9b132 100644 --- a/pkgs/by-name/al/alure/package.nix +++ b/pkgs/by-name/al/alure/package.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; buildInputs = [ openal ]; - meta = with lib; { + meta = { description = "Utility library to help manage common tasks with OpenAL applications"; homepage = "https://github.com/kcat/alure"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/al/alure2/package.nix b/pkgs/by-name/al/alure2/package.nix index 53659154bc8b5..a4c73849bbb43 100644 --- a/pkgs/by-name/al/alure2/package.nix +++ b/pkgs/by-name/al/alure2/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { libsndfile ]; - 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 5e3b029847601..21ea4c973ae9d 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 = { homepage = "https://github.com/AM2R-Community-Developers/AM2RLauncher"; description = "Front-end for dealing with AM2R updates and mods"; longDescription = '' @@ -123,9 +123,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 bc6be8d706eb8..f8bd8548d637a 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/amber-lang/package.nix b/pkgs/by-name/am/amber-lang/package.nix index 69f41081cc918..a1922e4526ef1 100644 --- a/pkgs/by-name/am/amber-lang/package.nix +++ b/pkgs/by-name/am/amber-lang/package.nix @@ -54,16 +54,16 @@ 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 uncenter 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 aad3b7e398346..28f25e35cb207 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/amd-libflame/package.nix b/pkgs/by-name/am/amd-libflame/package.nix index 6022742e05fc1..3e3aec973c04d 100644 --- a/pkgs/by-name/am/amd-libflame/package.nix +++ b/pkgs/by-name/am/amd-libflame/package.nix @@ -63,11 +63,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 cdf983395bc43..b61b217389ed1 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 1fa67faf9cd8f..4511a40b9c71c 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 bfbf88632bcfa..69dff3f125e50 100644 --- a/pkgs/by-name/am/amiberry/package.nix +++ b/pkgs/by-name/am/amiberry/package.nix @@ -98,12 +98,12 @@ 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; - maintainers = with maintainers; [ michaelshmitty ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ michaelshmitty ]; mainProgram = "amiberry"; }; }) diff --git a/pkgs/by-name/am/amiri/package.nix b/pkgs/by-name/am/amiri/package.nix index 19f418728f259..9a9ca764d6d3b 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 c18e7efcf53e7..a21da5ff6a21f 100644 --- a/pkgs/by-name/am/aml/package.nix +++ b/pkgs/by-name/am/aml/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { ninja ]; - meta = with lib; { + meta = { description = "Another main loop"; inherit (src.meta) homepage; - license = licenses.isc; - platforms = platforms.unix; - maintainers = with maintainers; [ primeos ]; + license = lib.licenses.isc; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ primeos ]; 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 865b4a94526b6..9d974c4a76789 100644 --- a/pkgs/by-name/am/amnezia-vpn/package.nix +++ b/pkgs/by-name/am/amnezia-vpn/package.nix @@ -145,13 +145,13 @@ stdenv.mkDerivation (finalAttrs: { cp ../deploy/data/linux/AmneziaVPN.service $out/lib/systemd/system/ ''; - meta = with lib; { + meta = { description = "Amnezia VPN Client"; downloadPage = "https://amnezia.org/en/downloads"; homepage = "https://amnezia.org/en"; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = "AmneziaVPN"; - maintainers = with maintainers; [ sund3RRR ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ sund3RRR ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/am/among-sus/package.nix b/pkgs/by-name/am/among-sus/package.nix index b666073e0e7c2..ef7f22e9f9779 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/ams-lv2/package.nix b/pkgs/by-name/am/ams-lv2/package.nix index 00b4916fe55e8..ac64832c53ded 100644 --- a/pkgs/by-name/am/ams-lv2/package.nix +++ b/pkgs/by-name/am/ams-lv2/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { --replace "m='rU" "m='r" ''; - meta = with lib; { + meta = { description = "LV2 port of the internal modules found in Alsa Modular Synth"; homepage = "https://github.com/blablack/ams-lv2"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; # Build uses `-msse` and `-mfpmath=sse` badPlatforms = [ "aarch64-linux" ]; # `ModuleNotFoundError: No module named 'imp'` diff --git a/pkgs/by-name/am/ams/package.nix b/pkgs/by-name/am/ams/package.nix index 8cdeaae8fe9fd..761f2393931b0 100644 --- a/pkgs/by-name/am/ams/package.nix +++ b/pkgs/by-name/am/ams/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { 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/an/ananicy/package.nix b/pkgs/by-name/an/ananicy/package.nix index 1bafff9203301..79079d8f2e74e 100644 --- a/pkgs/by-name/an/ananicy/package.nix +++ b/pkgs/by-name/an/ananicy/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { --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 db449bf2daef7..d0090c09925ad 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/andagii/package.nix b/pkgs/by-name/an/andagii/package.nix index 3900d74f98b47..c175f45e60d59 100644 --- a/pkgs/by-name/an/andagii/package.nix +++ b/pkgs/by-name/an/andagii/package.nix @@ -26,11 +26,11 @@ stdenvNoCC.mkDerivation rec { # There are multiple claims that the font is GPL, so I include the # package; but I cannot find the original source, so use it on your # own risk Debian claims it is GPL - good enough for me. - meta = with lib; { + meta = { homepage = "http://www.i18nguy.com/unicode/unicode-font.html"; description = "Unicode Plane 1 Osmanya script font"; - maintainers = with maintainers; [ raskin ]; + maintainers = with lib.maintainers; [ raskin ]; license = "unknown"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/an/anders/package.nix b/pkgs/by-name/an/anders/package.nix index 9943da5a735de..8aee12ac6e02e 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/android-udev-rules/package.nix b/pkgs/by-name/an/android-udev-rules/package.nix index 61f952a98dcc0..2d2044739627b 100644 --- a/pkgs/by-name/an/android-udev-rules/package.nix +++ b/pkgs/by-name/an/android-udev-rules/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/M0Rf30/android-udev-rules"; description = "Android udev rules list aimed to be the most comprehensive on the net"; - platforms = platforms.linux; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ abbradar ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/an/andyetitmoves/package.nix b/pkgs/by-name/an/andyetitmoves/package.nix index 26f1705d2261b..27cb995fc8dc9 100644 --- a/pkgs/by-name/an/andyetitmoves/package.nix +++ b/pkgs/by-name/an/andyetitmoves/package.nix @@ -88,13 +88,13 @@ 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; - maintainers = with maintainers; [ bluescreen303 ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ bluescreen303 ]; }; } diff --git a/pkgs/by-name/an/anew/package.nix b/pkgs/by-name/an/anew/package.nix index 01df45bf93806..58f60069f017f 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/an/anewer/package.nix b/pkgs/by-name/an/anewer/package.nix index 8765b6e810af1..90f55327d67b1 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-LJ0l5CZM5NqdbCZe4ELkYf9EkKyBxL/LrNmFy+JS6gM="; - 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/an/angband/package.nix b/pkgs/by-name/an/angband/package.nix index ac2d60a744809..e8fea89df28d2 100644 --- a/pkgs/by-name/an/angband/package.nix +++ b/pkgs/by-name/an/angband/package.nix @@ -38,12 +38,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 82ae8c96687dd..3ab50a4be8c07 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/angsd/package.nix b/pkgs/by-name/an/angsd/package.nix index 3a63cced60765..60180d64dc942 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/anime4k/package.nix b/pkgs/by-name/an/anime4k/package.nix index 785227dfdfa76..e55341fcfe026 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 ebcd69d68ee0f..359fd69ad37b5 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 f11a8dda67c5d..29ee108f14cb6 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/anko/package.nix b/pkgs/by-name/an/anko/package.nix index ddfef902dfc81..3adb9e77cb414 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/an/annapurna-sil/package.nix b/pkgs/by-name/an/annapurna-sil/package.nix index ef9cdbc6e62ab..d30aaa2ab6034 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 88a914f94f633..41e4a5c9af406 100644 --- a/pkgs/by-name/an/annextimelog/package.nix +++ b/pkgs/by-name/an/annextimelog/package.nix @@ -26,10 +26,10 @@ python3.pkgs.buildPythonApplication rec { rich ]; - meta = with lib; { + meta = { description = "️Git Annex-backed Time Tracking"; 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 ae8644b1547da..2936a9f0e402c 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 74397c8044275..5e4f6c187605a 100644 --- a/pkgs/by-name/an/ante/package.nix +++ b/pkgs/by-name/an/ante/package.nix @@ -54,11 +54,11 @@ rustPlatform.buildRustPackage { cp -r $src/stdlib/* $ANTE_STDLIB_DIR ''; - 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 921c65de58af1..661ea2d458460 100644 --- a/pkgs/by-name/an/antfs-cli/package.nix +++ b/pkgs/by-name/an/antfs-cli/package.nix @@ -8,12 +8,12 @@ python3Packages.buildPythonApplication { pname = "antfs-cli"; version = "unstable-2017-02-11"; - 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 3cb8497eed110..9a7ac446dc4bf 100644 --- a/pkgs/by-name/an/anthy/package.nix +++ b/pkgs/by-name/an/anthy/package.nix @@ -8,12 +8,12 @@ stdenv.mkDerivation rec { pname = "anthy"; version = "9100h"; - meta = with lib; { + meta = { description = "Hiragana text to Kana Kanji mixed text Japanese input method"; homepage = "https://anthy.osdn.jp/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ ericsagnes ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ericsagnes ]; + platforms = lib.platforms.unix; }; src = fetchurl { diff --git a/pkgs/by-name/an/antic/package.nix b/pkgs/by-name/an/antic/package.nix index bb7c40bafd417..8fafe31681bd6 100644 --- a/pkgs/by-name/an/antic/package.nix +++ b/pkgs/by-name/an/antic/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Algebraic number theory library"; homepage = "https://github.com/flintlib/antic"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ smasher164 ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ smasher164 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/an/antiprism/package.nix b/pkgs/by-name/an/antiprism/package.nix index b9e16e48b40fd..25220cb6591ff 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 ]; - maintainers = with maintainers; [ AndersonTorres ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ AndersonTorres ]; }; }) diff --git a/pkgs/by-name/an/antsimulator/package.nix b/pkgs/by-name/an/antsimulator/package.nix index 70015266a18b5..df21ccd074dd4 100644 --- a/pkgs/by-name/an/antsimulator/package.nix +++ b/pkgs/by-name/an/antsimulator/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { install -Dm755 ./AntSimulator $out/bin/antsimulator ''; - meta = with lib; { + meta = { homepage = "https://github.com/johnBuffer/AntSimulator"; description = "Simple Ants simulator"; mainProgram = "antsimulator"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/an/anytone-emu/package.nix b/pkgs/by-name/an/anytone-emu/package.nix index c60ac90e81668..5ddec0699687a 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 rec { 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/aocl-utils/package.nix b/pkgs/by-name/ao/aocl-utils/package.nix index 1dc44ad7c08cd..5f5ce4bf05aca 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 1c8a6c6585808..0d5b739991d47 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; [ bhipple 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 d53e816461eea..c217bd94f90ac 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-flex-sdk/package.nix b/pkgs/by-name/ap/apache-flex-sdk/package.nix index 210efb7ffd44e..df05bd8aefd00 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 a60fad578c870..6948b635d7189 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/apcupsd/package.nix b/pkgs/by-name/ap/apcupsd/package.nix index 5d6e8ee1b8c64..c62f726b6e864 100644 --- a/pkgs/by-name/ap/apcupsd/package.nix +++ b/pkgs/by-name/ap/apcupsd/package.nix @@ -75,11 +75,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; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/ap/apfel/package.nix b/pkgs/by-name/ap/apfel/package.nix index 7c8ca609fd274..4a2200702eb71 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 45b6d88d715b2..44626bf6998e0 100644 --- a/pkgs/by-name/ap/apfelgrid/package.nix +++ b/pkgs/by-name/ap/apfelgrid/package.nix @@ -30,12 +30,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 279c6a3e62de8..cc0f2915cc7ca 100644 --- a/pkgs/by-name/ap/apfs-fuse/package.nix +++ b/pkgs/by-name/ap/apfs-fuse/package.nix @@ -43,12 +43,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/apgdiff/package.nix b/pkgs/by-name/ap/apgdiff/package.nix index 23f2213939e36..17bd4b786974c 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/apkid/package.nix b/pkgs/by-name/ap/apkid/package.nix index eb496bf43ad35..3752bf951caa3 100644 --- a/pkgs/by-name/ap/apkid/package.nix +++ b/pkgs/by-name/ap/apkid/package.nix @@ -39,11 +39,11 @@ python3.pkgs.buildPythonApplication rec { "apkid" ]; - meta = with lib; { + meta = { description = "Android Application Identifier"; mainProgram = "apkid"; homepage = "https://github.com/rednaga/APKiD"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ap/apksigner/package.nix b/pkgs/by-name/ap/apksigner/package.nix index 108d15a89e991..d9f642297626c 100644 --- a/pkgs/by-name/ap/apksigner/package.nix +++ b/pkgs/by-name/ap/apksigner/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { --add-flags "-jar $out/lib/apksigner.jar" ''; - meta = with lib; { + meta = { description = "Command line tool to sign and verify Android APKs"; mainProgram = "apksigner"; homepage = "https://developer.android.com/studio/command-line/apksigner"; - license = licenses.asl20; - maintainers = with maintainers; [ linsui ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ linsui ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ap/apng2gif/package.nix b/pkgs/by-name/ap/apng2gif/package.nix index 9c9f4b09a6e59..5d302e1ca6bd2 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 52a178c6ef0a7..649162226f343 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 da89f91f048e6..3d33917614619 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/appcleaner/package.nix b/pkgs/by-name/ap/appcleaner/package.nix index 8f03b1dc92c26..d84f642a9bc31 100644 --- a/pkgs/by-name/ap/appcleaner/package.nix +++ b/pkgs/by-name/ap/appcleaner/package.nix @@ -25,12 +25,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Uninstall unwanted apps"; homepage = "https://freemacsoft.net/appcleaner"; - 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/ap/appimagekit/package.nix b/pkgs/by-name/ap/appimagekit/package.nix index 8b7c20fed19bc..f00c2274bacaf 100644 --- a/pkgs/by-name/ap/appimagekit/package.nix +++ b/pkgs/by-name/ap/appimagekit/package.nix @@ -160,16 +160,16 @@ stdenv.mkDerivation rec { squashfuse = appimagekit_squashfuse; }; - meta = with lib; { + meta = { description = "Tool to package desktop applications as AppImages"; longDescription = '' AppImageKit is an implementation of the AppImage format that provides tools such as appimagetool and appimaged for handling AppImages. ''; - license = licenses.mit; - maintainers = with maintainers; [ taeer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ taeer ]; homepage = src.meta.homepage; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ap/approxmc/package.nix b/pkgs/by-name/ap/approxmc/package.nix index 20460dc5428ba..cb6cb3fd95b66 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 67f5f96c306eb..6762d70565aaf 100644 --- a/pkgs/by-name/ap/appstream-glib/package.nix +++ b/pkgs/by-name/ap/appstream-glib/package.nix @@ -92,11 +92,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; - maintainers = with maintainers; [ matthewbauer ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ matthewbauer ]; }; } diff --git a/pkgs/by-name/ap/aprutil/package.nix b/pkgs/by-name/ap/aprutil/package.nix index 1f23af533b76a..d118c51369347 100644 --- a/pkgs/by-name/ap/aprutil/package.nix +++ b/pkgs/by-name/ap/aprutil/package.nix @@ -113,12 +113,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 6981e074aeed5..54218bb05e9fb 100644 --- a/pkgs/by-name/ap/aprx/package.nix +++ b/pkgs/by-name/ap/aprx/package.nix @@ -39,12 +39,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 8f606e921af01..e3fa1124b0984 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 4645933e4c0c6..aabe063b711d5 100644 --- a/pkgs/by-name/ap/aptdec/package.nix +++ b/pkgs/by-name/ap/aptdec/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { libsndfile ]; - 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; [ alexwinter ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ alexwinter ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/aq/aquosctl/package.nix b/pkgs/by-name/aq/aquosctl/package.nix index cbc018674c94d..034c362d2b7f2 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 a9870ca9f6e15..6b3b29170e6bc 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 23a7c12d927c3..0d26d6ba6edaf 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 = "http://www.ansikte.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/arandr/package.nix b/pkgs/by-name/ar/arandr/package.nix index 9c8f86e2c9b38..a61400b41186c 100644 --- a/pkgs/by-name/ar/arandr/package.nix +++ b/pkgs/by-name/ar/arandr/package.nix @@ -42,11 +42,11 @@ buildPythonApplication rec { pygobject3 ]; - meta = with lib; { + meta = { homepage = "https://christian.amsuess.com/tools/arandr/"; description = "Simple visual front end for XRandR"; - license = licenses.gpl3; - maintainers = with maintainers; [ gepbird ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ gepbird ]; mainProgram = "arandr"; }; } diff --git a/pkgs/by-name/ar/arangodb/package.nix b/pkgs/by-name/ar/arangodb/package.nix index ae27027bd9938..bf4c627460489 100644 --- a/pkgs/by-name/ar/arangodb/package.nix +++ b/pkgs/by-name/ar/arangodb/package.nix @@ -82,12 +82,12 @@ gcc10Stdenv.mkDerivation rec { "-DHAVE_SSE42=${if gcc10Stdenv.hostPlatform.sse4_2Support then "ON" else "OFF"}" ]; - meta = with lib; { + meta = { homepage = "https://www.arangodb.com"; description = "Native multi-model database with flexible data models for documents, graphs, and key-values"; - license = licenses.asl20; + license = lib.licenses.asl20; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ flosse jsoo1 ]; diff --git a/pkgs/by-name/ar/arb/package.nix b/pkgs/by-name/ar/arb/package.nix index 52b8aea77b7ed..99ac34b8915bd 100644 --- a/pkgs/by-name/ar/arb/package.nix +++ b/pkgs/by-name/ar/arb/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Library for arbitrary-precision interval arithmetic"; homepage = "https://arblib.org/"; - license = licenses.lgpl21Plus; - maintainers = teams.sage.members; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.sage.members; + 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 646a0d14c7da6..ef3044ba4243f 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 e77a0caa97097..0ae77e9ab4b26 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/arch-install-scripts/package.nix b/pkgs/by-name/ar/arch-install-scripts/package.nix index 18a5335490895..ad30e43ad60a9 100644 --- a/pkgs/by-name/ar/arch-install-scripts/package.nix +++ b/pkgs/by-name/ar/arch-install-scripts/package.nix @@ -98,14 +98,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 ed8f4c909ccfb..9b43501b1a5eb 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 a61d6e267526c..9ee91fcae551b 100644 --- a/pkgs/by-name/ar/archivy/package.nix +++ b/pkgs/by-name/ar/archivy/package.nix @@ -59,11 +59,11 @@ 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 1ca0c08e02aea..8ebfd856a508f 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 af301786fee71..9553322bfec1b 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 eb03147af25bd..17a0cb0ead0e9 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 218b38db301da..89e8d2568c395 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/argo-rollouts/package.nix b/pkgs/by-name/ar/argo-rollouts/package.nix index db941e1051915..41eb6ba3b13d5 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 c0e1e590c8606..362ede1f1b9bf 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 bryanasdev000 ]; diff --git a/pkgs/by-name/ar/argocd/package.nix b/pkgs/by-name/ar/argocd/package.nix index cda2ad7e9c2cb..dec816dd9c6fb 100644 --- a/pkgs/by-name/ar/argocd/package.nix +++ b/pkgs/by-name/ar/argocd/package.nix @@ -64,13 +64,13 @@ buildGoModule rec { --zsh <($out/bin/argocd completion zsh) ''; - 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 bryanasdev000 qjoly diff --git a/pkgs/by-name/ar/argononed/package.nix b/pkgs/by-name/ar/argononed/package.nix index 2f7914a64977e..452426f0a356c 100644 --- a/pkgs/by-name/ar/argononed/package.nix +++ b/pkgs/by-name/ar/argononed/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { 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 893aded31cffd..08926df80f4d7 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 a12aba8b1098a..ce3a7df0d3085 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 11e5235bc1c8b..2f458d9200fb1 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,8 +58,8 @@ stdenv.mkDerivation rec { you will find Argus a useful tool. ''; homepage = "http://qosient.com/argus"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ leenaars ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ leenaars ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ar/argus/package.nix b/pkgs/by-name/ar/argus/package.nix index 2b7d5ad9b6925..a3e24bc1282b5 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,8 +70,8 @@ stdenv.mkDerivation rec { you will find Argus a useful tool. ''; homepage = "http://qosient.com/argus"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ leenaars ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ leenaars ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ar/argyllcms/package.nix b/pkgs/by-name/ar/argyllcms/package.nix index f430676270222..50c3a6cd59b20 100644 --- a/pkgs/by-name/ar/argyllcms/package.nix +++ b/pkgs/by-name/ar/argyllcms/package.nix @@ -178,11 +178,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/ariang/package.nix b/pkgs/by-name/ar/ariang/package.nix index 7e892ed82abc3..bdf01a7f68b5f 100644 --- a/pkgs/by-name/ar/ariang/package.nix +++ b/pkgs/by-name/ar/ariang/package.nix @@ -31,11 +31,11 @@ buildNpmPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Modern web frontend making aria2 easier to use"; homepage = "http://ariang.mayswind.net/"; - license = licenses.mit; - maintainers = with maintainers; [ stunkymonkey ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ stunkymonkey ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ar/aribb24/package.nix b/pkgs/by-name/ar/aribb24/package.nix index a9c35c8bed889..81d51579bf373 100644 --- a/pkgs/by-name/ar/aribb24/package.nix +++ b/pkgs/by-name/ar/aribb24/package.nix @@ -41,12 +41,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/ario/package.nix b/pkgs/by-name/ar/ario/package.nix index f53ba3356b753..f80c576627a8a 100644 --- a/pkgs/by-name/ar/ario/package.nix +++ b/pkgs/by-name/ar/ario/package.nix @@ -51,12 +51,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 b257a607c94c8..eac9ee9326d3c 100644 --- a/pkgs/by-name/ar/arjun-cnf/package.nix +++ b/pkgs/by-name/ar/arjun-cnf/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation (finalAttrs: { louvain-community ]; - 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/armadillo/package.nix b/pkgs/by-name/ar/armadillo/package.nix index 351b252c14948..2b81770e5f48c 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 fbd066cc68cc8..9bc83a8cf715f 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 rec { 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/armitage/package.nix b/pkgs/by-name/ar/armitage/package.nix index de374059dfb2d..e7a1e43b7a147 100644 --- a/pkgs/by-name/ar/armitage/package.nix +++ b/pkgs/by-name/ar/armitage/package.nix @@ -132,12 +132,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/arpa2cm/package.nix b/pkgs/by-name/ar/arpa2cm/package.nix index e9b1f6cb26f85..bb54a7e9a7ffd 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; [ leenaars fufexan ]; diff --git a/pkgs/by-name/ar/arping/package.nix b/pkgs/by-name/ar/arping/package.nix index 2b78466c6dbd8..8580da74bb060 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 5b6ec393016c8..c7aaa0d8fcf2d 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/arsenal/package.nix b/pkgs/by-name/ar/arsenal/package.nix index a25e9aa232bc1..f0419a16bafce 100644 --- a/pkgs/by-name/ar/arsenal/package.nix +++ b/pkgs/by-name/ar/arsenal/package.nix @@ -31,11 +31,11 @@ python3.pkgs.buildPythonApplication rec { "arsenal" ]; - meta = with lib; { + meta = { description = "Tool to generate commands for security and network tools"; homepage = "https://github.com/Orange-Cyberdefense/arsenal"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "arsenal"; }; } diff --git a/pkgs/by-name/ar/artha/package.nix b/pkgs/by-name/ar/artha/package.nix index 6e106ce2880ac..766cdb772c271 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 79e2ebeed923a..df176351ddbd0 100644 --- a/pkgs/by-name/ar/artyFX/package.nix +++ b/pkgs/by-name/ar/artyFX/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { ntk ]; - 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 e1a9e6d187acd..40fd669c25d20 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 88619edad2979..86e642bc36c18 100644 --- a/pkgs/by-name/ar/arxiv-latex-cleaner/package.nix +++ b/pkgs/by-name/ar/arxiv-latex-cleaner/package.nix @@ -28,11 +28,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/as-tree/package.nix b/pkgs/by-name/as/as-tree/package.nix index a3c1502a73ca3..5bb8b6d09ab68 100644 --- a/pkgs/by-name/as/as-tree/package.nix +++ b/pkgs/by-name/as/as-tree/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-BLEVPKO2YwcKuM/rUeMuyE38phOrbq0e8cjqh1qmJjM="; - meta = with lib; { + meta = { description = "Print a list of paths as a tree of paths"; homepage = "https://github.com/jez/as-tree"; - license = with licenses; [ blueOak100 ]; - maintainers = with maintainers; [ jshholland ]; + license = with lib.licenses; [ blueOak100 ]; + maintainers = with lib.maintainers; [ jshholland ]; mainProgram = "as-tree"; }; } diff --git a/pkgs/by-name/as/as31/package.nix b/pkgs/by-name/as/as31/package.nix index 83952f68d1bfd..ce82fc95183c3 100644 --- a/pkgs/by-name/as/as31/package.nix +++ b/pkgs/by-name/as/as31/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { bison ]; - meta = with lib; { + meta = { homepage = "http://wiki.erazor-zone.de/wiki:projects:linux:as31"; description = "8031/8051 assembler"; mainProgram = "as31"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/as/asahi-bless/package.nix b/pkgs/by-name/as/asahi-bless/package.nix index 5d136975cc7de..2274ff86bbac4 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-Ou6sZ0fjsiadNcsdyiqxRwg+JIXMA4oanIgyW6NrLwI="; 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 1ee528638de17..f9b7c4d3a39db 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-XsgWqdwb0DDsK6HkaoVGQB/mm1U1TVzJM5q/gt9GryA="; 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 e3cc5b1569b47..c098d042ea50c 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-FP4qCJyzCOGaPDijp18m5K1YO+Ki9oDwblP2Vh8GsO0="; 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 23b3ac4f9fb81..2d2ed324ac2b8 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-UF1T0uAFO/ydTWigYXOP9Ju1qgV1oBmJuXSq4faSzJM="; 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/asap/package.nix b/pkgs/by-name/as/asap/package.nix index df54e9102e286..7695fcbb14d2a 100644 --- a/pkgs/by-name/as/asap/package.nix +++ b/pkgs/by-name/as/asap/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { "install-lib" ]; - meta = with lib; { + meta = { homepage = "https://asap.sourceforge.net/"; mainProgram = "asap-sdl"; description = "Another Slight Atari Player"; @@ -50,8 +50,8 @@ stdenv.mkDerivation rec { music (*.sap, *.cmc, *.mpt, *.rmt, *.tmc, ...) on modern computers and mobile devices. ''; - maintainers = with maintainers; [ OPNA2608 ]; - license = licenses.gpl2Plus; - platforms = platforms.all; + maintainers = with lib.maintainers; [ OPNA2608 ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/as/ascii-image-converter/package.nix b/pkgs/by-name/as/ascii-image-converter/package.nix index a74990a9b548e..1bf4b0ddf6873 100644 --- a/pkgs/by-name/as/ascii-image-converter/package.nix +++ b/pkgs/by-name/as/ascii-image-converter/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-rQS3QH9vnEbQZszG3FOr1P5HYgS63BurCNCFQTTdvZs="; - meta = with lib; { + meta = { description = "Convert images into ASCII art on the console"; homepage = "https://github.com/TheZoraiz/ascii-image-converter#readme"; - license = licenses.asl20; - maintainers = [ maintainers.danth ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.danth ]; mainProgram = "ascii-image-converter"; }; } diff --git a/pkgs/by-name/as/asciicam/package.nix b/pkgs/by-name/as/asciicam/package.nix index 39ce7f770ef01..899c7f90dd29b 100644 --- a/pkgs/by-name/as/asciicam/package.nix +++ b/pkgs/by-name/as/asciicam/package.nix @@ -22,11 +22,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Displays your webcam on the terminal"; homepage = "https://github.com/muesli/asciicam"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "asciicam"; }; } diff --git a/pkgs/by-name/as/asciidoctorj/package.nix b/pkgs/by-name/as/asciidoctorj/package.nix index db2d8d46dbf35..b984bc63e95bc 100644 --- a/pkgs/by-name/as/asciidoctorj/package.nix +++ b/pkgs/by-name/as/asciidoctorj/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { --prefix JAVA_HOME : ${jdk} ''; - meta = with lib; { + meta = { description = "Official library for running Asciidoctor on the JVM"; longDescription = '' AsciidoctorJ is the official library for running Asciidoctor on the JVM. @@ -33,9 +33,9 @@ stdenv.mkDerivation rec { languages. ''; homepage = "https://asciidoctor.org/docs/asciidoctorj/"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ moaxcp ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ moaxcp ]; mainProgram = "asciidoctorj"; }; } diff --git a/pkgs/by-name/as/asciigraph/package.nix b/pkgs/by-name/as/asciigraph/package.nix index ec9151cd9a902..a014e53038231 100644 --- a/pkgs/by-name/as/asciigraph/package.nix +++ b/pkgs/by-name/as/asciigraph/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/guptarohit/asciigraph"; description = "Lightweight ASCII line graph ╭┈╯ command line app"; mainProgram = "asciigraph"; - license = licenses.bsd3; - maintainers = with maintainers; [ mmahut ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mmahut ]; }; } diff --git a/pkgs/by-name/as/asciinema-scenario/package.nix b/pkgs/by-name/as/asciinema-scenario/package.nix index dfa2629169508..13811147c2810 100644 --- a/pkgs/by-name/as/asciinema-scenario/package.nix +++ b/pkgs/by-name/as/asciinema-scenario/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-8I3mPSJ5aXvQ88nh0SWyuTq9JSTktS2lQPrXlcvD66c="; - meta = with lib; { + meta = { description = "Create asciinema videos from a text file"; homepage = "https://github.com/garbas/asciinema-scenario/"; - maintainers = with maintainers; [ garbas ]; - license = with licenses; [ mit ]; + maintainers = with lib.maintainers; [ garbas ]; + license = with lib.licenses; [ mit ]; mainProgram = "asciinema-scenario"; }; } diff --git a/pkgs/by-name/as/asciiquarium/package.nix b/pkgs/by-name/as/asciiquarium/package.nix index 229078c72041f..f2d9d07867b56 100644 --- a/pkgs/by-name/as/asciiquarium/package.nix +++ b/pkgs/by-name/as/asciiquarium/package.nix @@ -28,13 +28,13 @@ stdenv.mkDerivation { --set PERL5LIB ${perlPackages.makeFullPerlPath [ perlPackages.TermAnimation ]} ''; - meta = with lib; { + meta = { description = "Enjoy the mysteries of the sea from the safety of your own terminal!"; mainProgram = "asciiquarium"; homepage = "https://robobunny.com/projects/asciiquarium/html/"; - license = licenses.gpl2; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sigmasquadron utdemir ]; diff --git a/pkgs/by-name/as/asdf-vm/package.nix b/pkgs/by-name/as/asdf-vm/package.nix index 1acbce85e93a4..55dbcbda73eed 100644 --- a/pkgs/by-name/as/asdf-vm/package.nix +++ b/pkgs/by-name/as/asdf-vm/package.nix @@ -86,12 +86,12 @@ stdenv.mkDerivation rec { --bash completions/asdf.bash ''; - meta = with lib; { + meta = { description = "Extendable version manager with support for Ruby, Node.js, Erlang & more"; homepage = "https://asdf-vm.com/"; - license = licenses.mit; - maintainers = [ maintainers.c4605 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.c4605 ]; mainProgram = "asdf"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/as/aseq2json/package.nix b/pkgs/by-name/as/aseq2json/package.nix index ed7705687e4a3..6d4e94f35002c 100644 --- a/pkgs/by-name/as/aseq2json/package.nix +++ b/pkgs/by-name/as/aseq2json/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation (finalAttrs: { install -D --target-directory "$out/bin" aseq2json ''; - meta = with lib; { + meta = { description = "Listens for MIDI events on the Alsa sequencer and outputs as JSON to stdout"; mainProgram = "aseq2json"; homepage = "https://github.com/google/midi-dump-tools"; - license = licenses.asl20; - maintainers = [ maintainers.queezle ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.queezle ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/as/ashpd-demo/package.nix b/pkgs/by-name/as/ashpd-demo/package.nix index d06352c70581c..03b24669ee363 100644 --- a/pkgs/by-name/as/ashpd-demo/package.nix +++ b/pkgs/by-name/as/ashpd-demo/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation (finalAttrs: { cd ashpd-demo ''; - 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 e809869b43e61..50b2253642e9b 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 2c545e04fdd99..bbcff1dd333bd 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ AndersonTorres ]; + 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 c8a795e959bed..54561757edc34 100644 --- a/pkgs/by-name/as/asmjit/package.nix +++ b/pkgs/by-name/as/asmjit/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation { strictDeps = true; - meta = with lib; { + meta = { description = "Machine code generation for C++"; longDescription = '' AsmJit is a lightweight library for machine code generation written in @@ -33,7 +33,7 @@ stdenv.mkDerivation { extensions. ''; homepage = "https://asmjit.com/"; - license = licenses.zlib; - maintainers = with maintainers; [ nikstur ]; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ nikstur ]; }; } diff --git a/pkgs/by-name/as/asn1c/package.nix b/pkgs/by-name/as/asn1c/package.nix index 61f45133bf8f5..8ce7a66683007 100644 --- a/pkgs/by-name/as/asn1c/package.nix +++ b/pkgs/by-name/as/asn1c/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "http://lionet.info/asn1c/compiler.html"; description = "Open Source ASN.1 Compiler"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = [ maintainers.numinit ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.numinit ]; }; } diff --git a/pkgs/by-name/as/asn1editor/package.nix b/pkgs/by-name/as/asn1editor/package.nix index fa6c1c6bee9bc..0f3f7862e6e84 100644 --- a/pkgs/by-name/as/asn1editor/package.nix +++ b/pkgs/by-name/as/asn1editor/package.nix @@ -28,11 +28,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 f5392796fdde5..cac82b9ce8bdc 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 4c72083c2c76a..1d0abc3e20955 100644 --- a/pkgs/by-name/as/aspcud/package.nix +++ b/pkgs/by-name/as/aspcud/package.nix @@ -38,11 +38,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/aspino/package.nix b/pkgs/by-name/as/aspino/package.nix index 0352bfe6aba52..14aa9f0804713 100644 --- a/pkgs/by-name/as/aspino/package.nix +++ b/pkgs/by-name/as/aspino/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "SAT/PseudoBoolean/MaxSat/ASP solver using glucose"; - maintainers = with maintainers; [ gebner ]; - platforms = platforms.unix; - license = licenses.asl20; + maintainers = with lib.maintainers; [ gebner ]; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; homepage = "https://alviano.net/software/maxino/"; }; } diff --git a/pkgs/by-name/as/assaultcube/package.nix b/pkgs/by-name/as/assaultcube/package.nix index ec7fc9f43e2fd..a94b21421e293 100644 --- a/pkgs/by-name/as/assaultcube/package.nix +++ b/pkgs/by-name/as/assaultcube/package.nix @@ -100,11 +100,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Fast and fun first-person-shooter based on the Cube fps"; homepage = "https://assault.cubers.net"; - platforms = platforms.linux; # should work on darwin with a little effort. - license = licenses.unfree; - maintainers = with maintainers; [ darkonion0 ]; + platforms = lib.platforms.linux; # should work on darwin with a little effort. + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ darkonion0 ]; }; } diff --git a/pkgs/by-name/as/assemblyscript/package.nix b/pkgs/by-name/as/assemblyscript/package.nix index 3faf433d4a431..8c6f6c840d3e9 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-rj6tvevoDQQihTH+tYkrvhJRzynglG5roHHL7aZ6j+Y="; - 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/assign-lb-ip/package.nix b/pkgs/by-name/as/assign-lb-ip/package.nix index f3fa137a63929..4640b763deb2b 100644 --- a/pkgs/by-name/as/assign-lb-ip/package.nix +++ b/pkgs/by-name/as/assign-lb-ip/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-N78a0pjs2Bg2Bslk/I0ntL88ui4IkRGenL0Pn17Lt/w="; - meta = with lib; { + meta = { description = "Assigns loadBalancerIP address to a Kubernetes service for testing purposes"; mainProgram = "assign-lb-ip"; homepage = "https://github.com/Nordix/assign-lb-ip"; - license = licenses.asl20; - maintainers = [ maintainers.starcraft66 ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.starcraft66 ]; }; } diff --git a/pkgs/by-name/as/astartectl/package.nix b/pkgs/by-name/as/astartectl/package.nix index f5c5be3aad9cd..8cfee488c126c 100644 --- a/pkgs/by-name/as/astartectl/package.nix +++ b/pkgs/by-name/as/astartectl/package.nix @@ -26,11 +26,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/asterisk-module-sccp/package.nix b/pkgs/by-name/as/asterisk-module-sccp/package.nix index a81ef23cca00f..ed8ca80674191 100644 --- a/pkgs/by-name/as/asterisk-module-sccp/package.nix +++ b/pkgs/by-name/as/asterisk-module-sccp/package.nix @@ -36,9 +36,9 @@ stdenv.mkDerivation rec { patchelf --set-rpath "$p:${lib.makeLibraryPath [ binutils-unwrapped ]}" "$p" ''; - meta = with lib; { + meta = { description = "Replacement for the SCCP channel driver in Asterisk"; - license = licenses.gpl1Only; - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.gpl1Only; + maintainers = with lib.maintainers; [ das_j ]; }; } diff --git a/pkgs/by-name/as/astrolog/package.nix b/pkgs/by-name/as/astrolog/package.nix index 75bb669a0d9a6..38ed13ede1b95 100644 --- a/pkgs/by-name/as/astrolog/package.nix +++ b/pkgs/by-name/as/astrolog/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation { ''} ''; - meta = with lib; { - maintainers = [ maintainers.kmein ]; + meta = { + maintainers = [ lib.maintainers.kmein ]; homepage = "https://astrolog.org/astrolog.htm"; description = "Freeware astrology program"; mainProgram = "astrolog"; - platforms = platforms.linux; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/as/astromenace/package.nix b/pkgs/by-name/as/astromenace/package.nix index fcfb91b8eae5b..95ae3d4608c3f 100644 --- a/pkgs/by-name/as/astromenace/package.nix +++ b/pkgs/by-name/as/astromenace/package.nix @@ -68,12 +68,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/astyle/package.nix b/pkgs/by-name/as/astyle/package.nix index ff8b00e52b26e..2b5fe5f0503ba 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 856a9513e4c95..e4157c121732f 100644 --- a/pkgs/by-name/as/asusctl/package.nix +++ b/pkgs/by-name/as/asusctl/package.nix @@ -89,12 +89,12 @@ rustPlatform.buildRustPackage rec { make prefix=$out install-data ''; - 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 e82ebcd62f22d..abaabcf32ba31 100644 --- a/pkgs/by-name/as/async-profiler/package.nix +++ b/pkgs/by-name/as/async-profiler/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/async-profiler --prefix PATH : ${lib.makeBinPath [ jdk ]} ''; - 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/as/async/package.nix b/pkgs/by-name/as/async/package.nix index 8cd52c38cb5b7..5237af35ede75 100644 --- a/pkgs/by-name/as/async/package.nix +++ b/pkgs/by-name/as/async/package.nix @@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-jIL7ZFzRMQuGLmMatGegkYRYctlsl3RRUfChgaIhWHg="; - meta = with lib; { + meta = { description = "Tool to parallelize shell commands"; mainProgram = "async"; longDescription = '' @@ -27,7 +27,7 @@ rustPlatform.buildRustPackage rec { retains state between commands by running a server in the background. ''; homepage = "https://github.com/ctbur/async"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ minijackson ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ minijackson ]; }; } diff --git a/pkgs/by-name/at/at-spi2-core/package.nix b/pkgs/by-name/at/at-spi2-core/package.nix index 97486d5bd03f4..1f233a24c91ab 100644 --- a/pkgs/by-name/at/at-spi2-core/package.nix +++ b/pkgs/by-name/at/at-spi2-core/package.nix @@ -107,11 +107,11 @@ 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 = teams.gnome.members ++ (with maintainers; [ raskin ]); - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members ++ (with lib.maintainers; [ raskin ]); + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/at/at/package.nix b/pkgs/by-name/at/at/package.nix index 4b5d03362e4a1..d354dc4b0d3db 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 1b98cdaf61a74..d90d74269586e 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 3b86071d5bf96..7adde324dd976 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 7fc5cec53ddd2..021786741ea47 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 0ec2cfd5f423c..860e1fd2735e8 100644 --- a/pkgs/by-name/at/atinout/package.nix +++ b/pkgs/by-name/at/atinout/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { 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 92b769251783e..cb871e1b02587 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/atlantis/package.nix b/pkgs/by-name/at/atlantis/package.nix index 735d5871b6d0a..821531e0cd05d 100644 --- a/pkgs/by-name/at/atlantis/package.nix +++ b/pkgs/by-name/at/atlantis/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { $out/bin/atlantis version | grep ${version} > /dev/null ''; - meta = with lib; { + meta = { homepage = "https://github.com/runatlantis/atlantis"; description = "Terraform Pull Request Automation"; mainProgram = "atlantis"; - license = licenses.asl20; - maintainers = with maintainers; [ jpotier ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jpotier ]; }; } diff --git a/pkgs/by-name/at/atlassian-plugin-sdk/package.nix b/pkgs/by-name/at/atlassian-plugin-sdk/package.nix index 8f4becdd99147..a72cd4e6f5124 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 89d7e68404514..e47fc7079b0f6 100644 --- a/pkgs/by-name/at/atomic-operator/package.nix +++ b/pkgs/by-name/at/atomic-operator/package.nix @@ -51,11 +51,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/ats-acc/package.nix b/pkgs/by-name/at/ats-acc/package.nix index 80cfd7aef6e28..b5969d10087d5 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 rec { 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 dfe6fe406525e..a5b20f758d14f 100644 --- a/pkgs/by-name/at/ats2/package.nix +++ b/pkgs/by-name/at/ats2/package.nix @@ -62,12 +62,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 8fa25d1292471..c6f1b09b9525c 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 2e0671876015c..12cb6ab062693 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 837130e3e697f..ffba05694d6a1 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 61e83d4fac5d1..0cee4b7402d53 100644 --- a/pkgs/by-name/au/audiality2/package.nix +++ b/pkgs/by-name/au/audiality2/package.nix @@ -30,12 +30,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/audio-recorder/package.nix b/pkgs/by-name/au/audio-recorder/package.nix index cd500cc52da8d..63e807fc1ee38 100644 --- a/pkgs/by-name/au/audio-recorder/package.nix +++ b/pkgs/by-name/au/audio-recorder/package.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { ]) ++ lib.optional pulseaudioSupport libpulseaudio; - meta = with lib; { + meta = { description = "Audio recorder for GNOME and Unity Desktops"; mainProgram = "audio-recorder"; longDescription = '' @@ -65,8 +65,8 @@ stdenv.mkDerivation rec { formats such as OGG audio, Flac, MP3 and WAV. ''; homepage = "https://launchpad.net/~audio-recorder"; - 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/au/audio-sharing/package.nix b/pkgs/by-name/au/audio-sharing/package.nix index 269058a150b2a..72ad363193632 100644 --- a/pkgs/by-name/au/audio-sharing/package.nix +++ b/pkgs/by-name/au/audio-sharing/package.nix @@ -70,12 +70,12 @@ 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 ] ++ lib.teams.gnome-circle.members; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ benediktbroich ] ++ lib.teams.gnome-circle.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/au/august/package.nix b/pkgs/by-name/au/august/package.nix index f23ff2fb43f2a..375820d29407c 100644 --- a/pkgs/by-name/au/august/package.nix +++ b/pkgs/by-name/au/august/package.nix @@ -21,14 +21,14 @@ 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "ag"; }; } diff --git a/pkgs/by-name/au/augustus/package.nix b/pkgs/by-name/au/augustus/package.nix index e2aa70b1694fa..d4157397de5c9 100644 --- a/pkgs/by-name/au/augustus/package.nix +++ b/pkgs/by-name/au/augustus/package.nix @@ -45,13 +45,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 fa500b9b80647..a411e814df3a2 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 48655147f8e12..058cab1091408 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 = "Auto-epp (energy performance preference) 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/autoadb/package.nix b/pkgs/by-name/au/autoadb/package.nix index a0bb4f32a5658..f1797e53dcc8e 100644 --- a/pkgs/by-name/au/autoadb/package.nix +++ b/pkgs/by-name/au/autoadb/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-xxmBgJqtWq1FLWTaC8SjaBoSXkPcIZYrSOc+hCEN778="; - meta = with lib; { + meta = { description = "Execute a command whenever a device is adb-connected"; homepage = "https://github.com/rom1v/autoadb"; - license = licenses.asl20; - maintainers = with maintainers; [ shawn8901 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ shawn8901 ]; mainProgram = "autoadb"; }; } diff --git a/pkgs/by-name/au/autoconf-archive/package.nix b/pkgs/by-name/au/autoconf-archive/package.nix index f83a75002a9fb..91e3e07e17401 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 2c8578b8e9499..dafe392e4afc2 100644 --- a/pkgs/by-name/au/autogen/package.nix +++ b/pkgs/by-name/au/autogen/package.nix @@ -153,14 +153,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/automaticcomponenttoolkit/package.nix b/pkgs/by-name/au/automaticcomponenttoolkit/package.nix index b113f22880633..0f8a37c9ed96a 100644 --- a/pkgs/by-name/au/automaticcomponenttoolkit/package.nix +++ b/pkgs/by-name/au/automaticcomponenttoolkit/package.nix @@ -28,12 +28,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; - maintainers = with maintainers; [ gebner ]; - platforms = platforms.all; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ gebner ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/au/automirror/package.nix b/pkgs/by-name/au/automirror/package.nix index 8d8376542d28c..f0740c09097b9 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 997b139cf324f..e92ae5bc0d476 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 26e0b1c696183..b19c4f3b02f17 100644 --- a/pkgs/by-name/au/autorandr/package.nix +++ b/pkgs/by-name/au/autorandr/package.nix @@ -76,12 +76,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; - maintainers = with maintainers; [ coroa ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ coroa ]; + 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 4df100e0bfaf4..12855b12dcd30 100644 --- a/pkgs/by-name/au/autorestic/package.nix +++ b/pkgs/by-name/au/autorestic/package.nix @@ -27,11 +27,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 1fd604895e9cf..0c2e3b37faf02 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 c7d82905bf708..c9759280b4d4b 100644 --- a/pkgs/by-name/au/autospotting/package.nix +++ b/pkgs/by-name/au/autospotting/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-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 a533e428dd0cd..b404c1adede55 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 214c06fac5655..d5a435f85f733 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 c7ba1ff24dc8a..7deef558681b4 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-wot5GKBA2TBrA/jnWD0eypPRqUodmk/TJlYJMl3/gm4="; - 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 020a5d04f58dd..0181baf34fe9b 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 40be3cef2fa89..cf9dd84260f32 100644 --- a/pkgs/by-name/au/autotrace/package.nix +++ b/pkgs/by-name/au/autotrace/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { darwin.apple_sdk.frameworks.Foundation ]; - 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/aviator/package.nix b/pkgs/by-name/av/aviator/package.nix index 17b7a7d2e7cf0..6a7c8927d53da 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/avisynthplus/package.nix b/pkgs/by-name/av/avisynthplus/package.nix index 92904ff0cc01f..e1f7d6898d313 100644 --- a/pkgs/by-name/av/avisynthplus/package.nix +++ b/pkgs/by-name/av/avisynthplus/package.nix @@ -38,13 +38,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 47a44f05aa730..c4ccaadd7c111 100644 --- a/pkgs/by-name/av/avizo/package.nix +++ b/pkgs/by-name/av/avizo/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { 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; - maintainers = [ maintainers.berbiche ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.berbiche ]; }; } diff --git a/pkgs/by-name/av/avr-sim/package.nix b/pkgs/by-name/av/avr-sim/package.nix index 9a4ad182a95fe..347b9a4b8940b 100644 --- a/pkgs/by-name/av/avr-sim/package.nix +++ b/pkgs/by-name/av/avr-sim/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "AVR assembler simulator for the stepwise execution of assembler source code - with many extras"; homepage = "http://www.avr-asm-tutorial.net/avr_sim/index_en.html"; - license = licenses.unfree; - platforms = platforms.unix; - maintainers = with maintainers; [ ameer ]; + license = lib.licenses.unfree; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ameer ]; }; } diff --git a/pkgs/by-name/av/avra/package.nix b/pkgs/by-name/av/avra/package.nix index 4b9c90a8c5a8a..f7a69818604c6 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 ffa722674445b..24730cf81fa78 100644 --- a/pkgs/by-name/av/avrdude/package.nix +++ b/pkgs/by-name/av/avrdude/package.nix @@ -84,7 +84,7 @@ stdenv.mkDerivation (finalAttrs: { libelf = callPackage ./libelf.nix { }; }; - meta = with lib; { + meta = { description = "Command-line tool for programming Atmel AVR microcontrollers"; mainProgram = "avrdude"; longDescription = '' @@ -93,8 +93,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/avro-c/package.nix b/pkgs/by-name/av/avro-c/package.nix index ad598d511e084..c36e80739dd3f 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/await/package.nix b/pkgs/by-name/aw/await/package.nix index b2b74d8a0eb0e..d8c33c18637a4 100644 --- a/pkgs/by-name/aw/await/package.nix +++ b/pkgs/by-name/aw/await/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { doInstallCheck = true; versionCheckProgramArg = [ "--version" ]; - meta = with lib; { + meta = { description = "Small binary that runs a list of commands in parallel and awaits termination"; homepage = "https://await-cli.app"; - license = licenses.mit; - maintainers = with maintainers; [ chewblacka ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ chewblacka ]; + platforms = lib.platforms.all; mainProgram = "await"; }; } diff --git a/pkgs/by-name/aw/awatcher/package.nix b/pkgs/by-name/aw/awatcher/package.nix index a2fbb0b7173d7..7f02c4bb69880 100644 --- a/pkgs/by-name/aw/awatcher/package.nix +++ b/pkgs/by-name/aw/awatcher/package.nix @@ -29,7 +29,7 @@ rustPlatform.buildRustPackage rec { }; }; - 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 @@ -38,9 +38,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/awf/package.nix b/pkgs/by-name/aw/awf/package.nix index 9423dda218c6c..fff79dcceeb16 100644 --- a/pkgs/by-name/aw/awf/package.nix +++ b/pkgs/by-name/aw/awf/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { ./autogen.sh ''; - meta = with lib; { + meta = { description = "Widget Factory"; longDescription = '' A widget factory is a theme preview application for gtk2 and @@ -45,8 +45,8 @@ stdenv.mkDerivation rec { applied theme. ''; homepage = "https://github.com/valr/awf"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ michalrus ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ michalrus ]; }; } diff --git a/pkgs/by-name/aw/awk-language-server/package.nix b/pkgs/by-name/aw/awk-language-server/package.nix index 4207a23940139..c132d6261ad1a 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 334b6c1ccbe81..682d2dcc17bd2 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; [ williamvds ]; - 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 dc840631bffb7..7383d7ac5f7b0 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-common/package.nix b/pkgs/by-name/aw/aws-c-common/package.nix index 676f92e3baa7f..6ceccafa681f7 100644 --- a/pkgs/by-name/aw/aws-c-common/package.nix +++ b/pkgs/by-name/aw/aws-c-common/package.nix @@ -51,12 +51,12 @@ 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; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ orivej 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 dfd3f53b29352..1ab9bbbb0e558 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 bca3de37d5abf..2efed49e248c7 100644 --- a/pkgs/by-name/aw/aws-c-event-stream/package.nix +++ b/pkgs/by-name/aw/aws-c-event-stream/package.nix @@ -42,11 +42,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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/aw/aws-c-http/package.nix b/pkgs/by-name/aw/aws-c-http/package.nix index 37a52c7c985f3..da25933503945 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-mqtt/package.nix b/pkgs/by-name/aw/aws-c-mqtt/package.nix index 1734aea049ad2..8a51f89bc6880 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 0282ca459b942..26217c11fc6c3 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 2de7db683f34a..b48f89cfd9e2c 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 ac95d55e9af33..94e421eba8f79 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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/aw/aws-crt-cpp/package.nix b/pkgs/by-name/aw/aws-crt-cpp/package.nix index 3cf463a5fdf1a..7bf5f70d7913e 100644 --- a/pkgs/by-name/aw/aws-crt-cpp/package.nix +++ b/pkgs/by-name/aw/aws-crt-cpp/package.nix @@ -76,11 +76,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 b7282325d7616..a397d939192d0 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/${pname} --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 e8a2568c72eb3..e026dc70a06a4 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; - maintainers = with maintainers; [ teto ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ teto ]; }; } diff --git a/pkgs/by-name/aw/aws-rotate-key/package.nix b/pkgs/by-name/aw/aws-rotate-key/package.nix index b75901f3b0dcf..41c6a020b642a 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-sso-cli/package.nix b/pkgs/by-name/aw/aws-sso-cli/package.nix index 99412edca5e07..4e8a65c5b87b3 100644 --- a/pkgs/by-name/aw/aws-sso-cli/package.nix +++ b/pkgs/by-name/aw/aws-sso-cli/package.nix @@ -43,11 +43,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 3a7a5f115f67e..071839f190cfa 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 bd08e2269a09b..3aa1c8e91511d 100644 --- a/pkgs/by-name/aw/aws-vault/package.nix +++ b/pkgs/by-name/aw/aws-vault/package.nix @@ -52,11 +52,11 @@ buildGoModule rec { $out/bin/aws-vault --version 2>&1 | grep ${version} > /dev/null ''; - meta = with lib; { + meta = { description = "A vault for securely storing and accessing AWS credentials in development environments"; mainProgram = "aws-vault"; homepage = "https://github.com/99designs/aws-vault"; - license = licenses.mit; - maintainers = with maintainers; [ zimbatm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm ]; }; } diff --git a/pkgs/by-name/aw/awslogs/package.nix b/pkgs/by-name/aw/awslogs/package.nix index e90da6b3fee4a..be18fc767cf43 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 4ea289d01b55a..6ca1d1841aeee 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 20d0e120ed432..87f9dae6b529e 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 2bc8b3cfea452..ca5778d2182df 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 2a37ef68238e2..68e369d7d7f0a 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-apps/package.nix b/pkgs/by-name/ax/ax25-apps/package.nix index 3ec0698d81fc2..b912c6a456381 100644 --- a/pkgs/by-name/ax/ax25-apps/package.nix +++ b/pkgs/by-name/ax/ax25-apps/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { "--program-transform-name=s@^call$@ax&@;s@^listen$@ax&@" ]; - meta = with lib; { + meta = { description = "AX.25 ham radio 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/ax/ax25-tools/package.nix b/pkgs/by-name/ax/ax25-tools/package.nix index dd209afa8cd5d..df86bacfafb7c 100644 --- a/pkgs/by-name/ax/ax25-tools/package.nix +++ b/pkgs/by-name/ax/ax25-tools/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { "--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 554ce93c0c4e5..7048b0dd4dfdc 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 f9af839c04d6b..1c940f8917068 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/azmq/package.nix b/pkgs/by-name/az/azmq/package.nix index 2ec9e1cf2bbe3..6ab239b47cbf8 100644 --- a/pkgs/by-name/az/azmq/package.nix +++ b/pkgs/by-name/az/azmq/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation { # Broken for some reason on this platform. doCheck = !(stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isLinux); - 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 = with maintainers; [ azahi ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ azahi ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/az/azpainter/package.nix b/pkgs/by-name/az/azpainter/package.nix index 956020dbaff30..0f81569905af3 100644 --- a/pkgs/by-name/az/azpainter/package.nix +++ b/pkgs/by-name/az/azpainter/package.nix @@ -59,12 +59,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 0b951b320dacf..b516996fb47da 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/ba/babeld/package.nix b/pkgs/by-name/ba/babeld/package.nix index 46b037653afeb..5756a3a9a1e6e 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/backgroundremover/package.nix b/pkgs/by-name/ba/backgroundremover/package.nix index 3c9eab61566aa..60d36bd608dd9 100644 --- a/pkgs/by-name/ba/backgroundremover/package.nix +++ b/pkgs/by-name/ba/backgroundremover/package.nix @@ -95,13 +95,13 @@ let doCheck = false; # no tests - meta = with lib; { + meta = { mainProgram = "backgroundremover"; description = "Command line tool to remove background from image and video, made by nadermx to power"; homepage = "https://BackgroundRemoverAI.com"; downloadPage = "https://github.com/nadermx/backgroundremover/releases"; - license = licenses.mit; - maintainers = [ maintainers.lucasew ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.lucasew ]; }; }; in diff --git a/pkgs/by-name/ba/backlight-auto/package.nix b/pkgs/by-name/ba/backlight-auto/package.nix index 3d8dc7338a9c4..88e810d17dd3e 100644 --- a/pkgs/by-name/ba/backlight-auto/package.nix +++ b/pkgs/by-name/ba/backlight-auto/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation (finalAttrs: { libyuv ]; - meta = with lib; { + meta = { description = "Automatically set screen brightness with a webcam"; mainProgram = "backlight-auto"; homepage = "https://len.falken.directory/backlight-auto.html"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ba/backward-cpp/package.nix b/pkgs/by-name/ba/backward-cpp/package.nix index 84e877ec9642d..b4aeb54cf0181 100644 --- a/pkgs/by-name/ba/backward-cpp/package.nix +++ b/pkgs/by-name/ba/backward-cpp/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Beautiful stack trace pretty printer for C++"; homepage = "https://github.com/bombela/backward-cpp"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ba/bacnet-stack/package.nix b/pkgs/by-name/ba/bacnet-stack/package.nix index f3f0f14366ae9..9d4d454319d31 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/bada-bib/package.nix b/pkgs/by-name/ba/bada-bib/package.nix index fcc082f28c076..ec986405b5d25 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 e4a509fdff743..ba9a7cd423959 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/badlion-client/package.nix b/pkgs/by-name/ba/badlion-client/package.nix index f2955ba8244ed..71d64ed48b205 100644 --- a/pkgs/by-name/ba/badlion-client/package.nix +++ b/pkgs/by-name/ba/badlion-client/package.nix @@ -27,10 +27,10 @@ appimageTools.wrapType2 rec { --replace 'Exec=AppRun --no-sandbox %U' 'Exec=badlion-client' ''; - meta = with lib; { + meta = { description = "Most Complete All-In-One Mod Library for Minecraft with 100+ Mods, FPS Improvements, and more"; homepage = "https://client.badlion.net"; - license = with licenses; [ unfree ]; + license = with lib.licenses; [ unfree ]; maintainers = [ ]; mainProgram = "badlion-client"; platforms = [ "x86_64-linux" ]; diff --git a/pkgs/by-name/ba/badvpn/package.nix b/pkgs/by-name/ba/badvpn/package.nix index d5fc259f19042..06670b4f07fcd 100644 --- a/pkgs/by-name/ba/badvpn/package.nix +++ b/pkgs/by-name/ba/badvpn/package.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { }"); ''; - 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/badwolf/package.nix b/pkgs/by-name/ba/badwolf/package.nix index d0a46e9b81ece..aebec4270b7a2 100644 --- a/pkgs/by-name/ba/badwolf/package.nix +++ b/pkgs/by-name/ba/badwolf/package.nix @@ -39,16 +39,16 @@ stdenv.mkDerivation rec { glib-networking ]; - meta = with lib; { + meta = { description = "Minimalist and privacy-oriented WebKitGTK+ browser"; mainProgram = "badwolf"; homepage = "https://hacktivis.me/projects/badwolf"; - license = with licenses; [ + license = with lib.licenses; [ bsd3 cc-by-sa-40 ]; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ laalsaas aleksana ]; diff --git a/pkgs/by-name/ba/bakelite/package.nix b/pkgs/by-name/ba/bakelite/package.nix index 7eb87f2b5a336..3b196d6a6b1b0 100644 --- a/pkgs/by-name/ba/bakelite/package.nix +++ b/pkgs/by-name/ba/bakelite/package.nix @@ -27,13 +27,13 @@ stdenv.mkDerivation rec { cp bakelite $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/richfelker/bakelite"; description = "Incremental backup with strong cryptographic confidentality"; mainProgram = "bakelite"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ mvs ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ mvs ]; # no support for Darwin (yet: https://github.com/richfelker/bakelite/pull/5) - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ba/ballerburg/package.nix b/pkgs/by-name/ba/ballerburg/package.nix index 67a6d9e1a8259..35868a009e669 100644 --- a/pkgs/by-name/ba/ballerburg/package.nix +++ b/pkgs/by-name/ba/ballerburg/package.nix @@ -55,15 +55,15 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Classic cannon combat game"; mainProgram = "ballerburg"; longDescription = '' Two castles, separated by a mountain, try to defeat each other with their cannonballs, either by killing the opponent's king or by weakening the opponent enough so that the king capitulates.''; homepage = "https://baller.tuxfamily.org/"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.j0hax ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.j0hax ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ba/balsa/package.nix b/pkgs/by-name/ba/balsa/package.nix index 6d4bbd0622378..f752fda663934 100644 --- a/pkgs/by-name/ba/balsa/package.nix +++ b/pkgs/by-name/ba/balsa/package.nix @@ -70,11 +70,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "http://pawsa.fedorapeople.org/balsa/"; description = "E-mail client for GNOME"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ba/bam/package.nix b/pkgs/by-name/ba/bam/package.nix index 21493a5530b1b..f6d4436b84430 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/banana-accounting/package.nix b/pkgs/by-name/ba/banana-accounting/package.nix index b1e455bbf6c37..43c06bcdec2c6 100644 --- a/pkgs/by-name/ba/banana-accounting/package.nix +++ b/pkgs/by-name/ba/banana-accounting/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Accounting Software for small companies, associations and individuals"; homepage = "https://www.banana.ch/"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ jacg ]; + maintainers = with lib.maintainers; [ jacg ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/by-name/ba/banana-cursor/package.nix b/pkgs/by-name/ba/banana-cursor/package.nix index 309b476ded8bc..74ff3ca6627b3 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/banking/package.nix b/pkgs/by-name/ba/banking/package.nix index cf19bad0f9e79..e9c96e8c3425d 100644 --- a/pkgs/by-name/ba/banking/package.nix +++ b/pkgs/by-name/ba/banking/package.nix @@ -59,11 +59,11 @@ python3.pkgs.buildPythonApplication rec { schwifty ]; - meta = with lib; { + meta = { description = "Banking application for small screens"; homepage = "https://tabos.gitlab.io/projects/banking/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "org.tabos.banking"; - maintainers = with maintainers; [ dotlambda ]; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/ba/bankstown-lv2/package.nix b/pkgs/by-name/ba/bankstown-lv2/package.nix index 6f36c19d1998e..30a8526829b40 100644 --- a/pkgs/by-name/ba/bankstown-lv2/package.nix +++ b/pkgs/by-name/ba/bankstown-lv2/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { make install ''; - meta = with lib; { + meta = { homepage = "https://github.com/chadmed/bankstown"; description = "Halfway-decent three-stage psychoacoustic bass approximation"; - license = licenses.mit; - maintainers = with maintainers; [ yuka ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yuka ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ba/baobab/package.nix b/pkgs/by-name/ba/baobab/package.nix index 5f086e1725315..0f37f0b2ad662 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; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ba/barcode/package.nix b/pkgs/by-name/ba/barcode/package.nix index 7c27e5cf0ef38..2554df805b26e 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 22d527dc1310b..077d4bc8536b2 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 0727c86f2675c..440b8cd418d5e 100644 --- a/pkgs/by-name/ba/bartib/package.nix +++ b/pkgs/by-name/ba/bartib/package.nix @@ -24,11 +24,11 @@ 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ figsoda ]; 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 8918ddd20f31a..454b3e098426e 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 73af4ffb96557..c176e00e846d3 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/baserow/package.nix b/pkgs/by-name/ba/baserow/package.nix index 29e34a5505e88..edbde197cf566 100644 --- a/pkgs/by-name/ba/baserow/package.nix +++ b/pkgs/by-name/ba/baserow/package.nix @@ -152,11 +152,11 @@ buildPythonApplication rec { DJANGO_SETTINGS_MODULE = "baserow.config.settings.test"; - meta = with lib; { + meta = { description = "No-code database and Airtable alternative"; homepage = "https://baserow.io"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; mainProgram = "baserow"; }; } diff --git a/pkgs/by-name/ba/basez/package.nix b/pkgs/by-name/ba/basez/package.nix index fb34b61677d54..df86a85a5eede 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 516c5ec79b064..c41332b0db4da 100644 --- a/pkgs/by-name/ba/bash-completion/package.nix +++ b/pkgs/by-name/ba/bash-completion/package.nix @@ -66,11 +66,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-language-server/package.nix b/pkgs/by-name/ba/bash-language-server/package.nix index f625b702df309..7390e57e4c128 100644 --- a/pkgs/by-name/ba/bash-language-server/package.nix +++ b/pkgs/by-name/ba/bash-language-server/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation (finalAttrs: { doInstallCheck = true; - meta = with lib; { + meta = { description = "A language server for Bash"; homepage = "https://github.com/bash-lsp/bash-language-server"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; mainProgram = "bash-language-server"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ba/bash-my-aws/package.nix b/pkgs/by-name/ba/bash-my-aws/package.nix index 0c932a0f57f41..65adb4efee919 100644 --- a/pkgs/by-name/ba/bash-my-aws/package.nix +++ b/pkgs/by-name/ba/bash-my-aws/package.nix @@ -79,10 +79,10 @@ stdenv.mkDerivation rec { popd ''; - 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 ]; }; } diff --git a/pkgs/by-name/ba/bashSnippets/package.nix b/pkgs/by-name/ba/bashSnippets/package.nix index 0dc28d54d75a0..577a479e5e947 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 6ab45612b442c..b3c2a60a8d0d9 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 3647eb90e9500..3b74b0aeccf1b 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 48bea6020f3ce..068ee8a616714 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 915d09a2c5cfb..bc0f3e8a72615 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/bashplotlib/package.nix b/pkgs/by-name/ba/bashplotlib/package.nix index 153e02d6d4a24..5739036f79460 100644 --- a/pkgs/by-name/ba/bashplotlib/package.nix +++ b/pkgs/by-name/ba/bashplotlib/package.nix @@ -18,10 +18,10 @@ python3Packages.buildPythonApplication { # No tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/glamp/bashplotlib"; description = "Plotting in the terminal"; - maintainers = with maintainers; [ dtzWill ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ dtzWill ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/ba/basiliskii/package.nix b/pkgs/by-name/ba/basiliskii/package.nix index a6e77d3e52321..1086fe10ecdb4 100644 --- a/pkgs/by-name/ba/basiliskii/package.nix +++ b/pkgs/by-name/ba/basiliskii/package.nix @@ -40,12 +40,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 ef77b94218b3a..eff3c682c9001 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/bats/package.nix b/pkgs/by-name/ba/bats/package.nix index 91683dc96c3f4..89698cb943366 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 ef6e34c57e8f9..992cf9ad40a4c 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/bazel-gazelle/package.nix b/pkgs/by-name/ba/bazel-gazelle/package.nix index 5bfcb0b5ad6ea..84adbd6bb3bd5 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 9144af8cf614f..45991a319670e 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 = "kazel - a 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 a53c794767a06..df5c06f762973 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/bb/bb/package.nix b/pkgs/by-name/bb/bb/package.nix index 07aff0992d81d..dfc4fecf42a82 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 d300c7dea3698..2087730fa62be 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 f4a69d09e79b9..d6e27221071f6 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-decaf/package.nix b/pkgs/by-name/bc/bc-decaf/package.nix index ebd22cae8be4a..d9b932d29862a 100644 --- a/pkgs/by-name/bc/bc-decaf/package.nix +++ b/pkgs/by-name/bc/bc-decaf/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { "-DENABLE_STRICT=NO" ]; - meta = with lib; { + meta = { description = "Elliptic curve library supporting Ed448-Goldilocks and Curve25519. Belledonne Communications' fork for Linphone"; homepage = "https://gitlab.linphone.org/BC/public/bctoolbox"; - license = licenses.mit; - maintainers = with maintainers; [ thibaultlemaire ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thibaultlemaire ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bc/bc-ur/package.nix b/pkgs/by-name/bc/bc-ur/package.nix index 62c7cf0d8a203..9cb7275254d93 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 47f6b40690c39..02a77803d2686 100644 --- a/pkgs/by-name/bc/bc/package.nix +++ b/pkgs/by-name/bc/bc/package.nix @@ -46,11 +46,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 20e29c252b8c0..8cdded332eb7b 100644 --- a/pkgs/by-name/bc/bcal/package.nix +++ b/pkgs/by-name/bc/bcal/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { pytestFlagsArray = [ "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 b0f511c96b6c6..6fa29e8991b27 100644 --- a/pkgs/by-name/bc/bcc/package.nix +++ b/pkgs/by-name/bc/bcc/package.nix @@ -124,17 +124,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 f9b5b22c9c09b..253126812fbfe 100644 --- a/pkgs/by-name/bc/bcftools/package.nix +++ b/pkgs/by-name/bc/bcftools/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { 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 73b8ec9616f60..885d6d25a9f3f 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 02792a1b2355e..5f6d2531a7165 100644 --- a/pkgs/by-name/bc/bchunk/package.nix +++ b/pkgs/by-name/bc/bchunk/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { install -Dt $out/share/man/man1 bchunk.1 ''; - 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/bc/bctoolbox/package.nix b/pkgs/by-name/bc/bctoolbox/package.nix index 8cf80c7a8c943..4cfd1c841375e 100644 --- a/pkgs/by-name/bc/bctoolbox/package.nix +++ b/pkgs/by-name/bc/bctoolbox/package.nix @@ -42,15 +42,15 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { description = "Utilities library for Linphone"; mainProgram = "bctoolbox_tester"; homepage = "https://gitlab.linphone.org/BC/public/bctoolbox"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ raskin jluttine ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bc/bcunit/package.nix b/pkgs/by-name/bc/bcunit/package.nix index ad3d75b11be83..278062bf73f80 100644 --- a/pkgs/by-name/bc/bcunit/package.nix +++ b/pkgs/by-name/bc/bcunit/package.nix @@ -19,14 +19,14 @@ stdenv.mkDerivation rec { sha256 = "sha256-8DSfqHerx/V00SJjTSQaG9Rjqx330iG6sGivBDUvQfA="; }; - meta = with lib; { + meta = { description = "Belledonne Communications' fork of CUnit test framework. Part of the Linphone project"; homepage = "https://gitlab.linphone.org/BC/public/bcunit"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ raskin jluttine ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/bd/bdf2psf/package.nix b/pkgs/by-name/bd/bdf2psf/package.nix index b5f4f7bb5146b..aa7f90ba2e315 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 72b576d8e978c..68108e198febb 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 e6ac782a44ff5..bd08b78829a28 100644 --- a/pkgs/by-name/bd/bdfresize/package.nix +++ b/pkgs/by-name/bd/bdfresize/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { patches = [ ./remove-malloc-declaration.patch ]; - 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 47800507b5295..a97a9e388bbba 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 23f6b9fd5e412..b5dfe36a94190 100644 --- a/pkgs/by-name/bd/bdt/package.nix +++ b/pkgs/by-name/bd/bdt/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-4KrFhchoIB2N89m7HrL0xj2Z+u/6/6Onxa2wIAX18Io="; - meta = with lib; { + meta = { description = "boring data tool. A 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 6645f183092af..71b10528103f3 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 f7cce03717edb..b022c9653d8bf 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 2c21e45952ab7..d27d2556d8db1 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 70e8a99a7d7a2..ef78950550b9c 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 67ba0d019e477..6997af241be2c 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/beefi/package.nix b/pkgs/by-name/be/beefi/package.nix index 1c8c084711a09..180a25d65ec7e 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 b1a37e5f98510..5d534994419ea 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 e25728089d55f..0be5822a73e13 100644 --- a/pkgs/by-name/be/beeper/package.nix +++ b/pkgs/by-name/be/beeper/package.nix @@ -68,7 +68,7 @@ stdenvNoCC.mkDerivation rec { }); }; - meta = with lib; { + meta = { description = "Universal chat app"; longDescription = '' Beeper is a universal chat app. With Beeper, you can send @@ -76,8 +76,8 @@ stdenvNoCC.mkDerivation rec { many different chat networks. ''; homepage = "https://beeper.com"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ jshcmpbll mjm edmundmiller diff --git a/pkgs/by-name/be/bees/package.nix b/pkgs/by-name/be/bees/package.nix index 8bff2ce41d704..be4fb9b7dc5ff 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 d61be96642314..feacfc143509f 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/belcard/package.nix b/pkgs/by-name/be/belcard/package.nix index 37a168b13661a..62559ed1b52bb 100644 --- a/pkgs/by-name/be/belcard/package.nix +++ b/pkgs/by-name/be/belcard/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { "-DENABLE_UNIT_TESTS=NO" # Do not build test executables ]; - meta = with lib; { + meta = { description = "C++ library to manipulate VCard standard format. Part of the Linphone project"; homepage = "https://gitlab.linphone.org/BC/public/belcard"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/by-name/be/belle-sip/package.nix b/pkgs/by-name/be/belle-sip/package.nix index b8b33f175818b..653790e0392fa 100644 --- a/pkgs/by-name/be/belle-sip/package.nix +++ b/pkgs/by-name/be/belle-sip/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { belr ]; - meta = with lib; { + meta = { homepage = "https://gitlab.linphone.org/BC/public/belle-sip"; description = "Modern library implementing SIP (RFC 3261) transport, transaction and dialog layers. Part of the Linphone project"; mainProgram = "belle_sip_tester"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/by-name/be/below/package.nix b/pkgs/by-name/be/below/package.nix index 4ae575272be08..e1ff8b327f2fd 100644 --- a/pkgs/by-name/be/below/package.nix +++ b/pkgs/by-name/be/below/package.nix @@ -47,11 +47,11 @@ rustPlatform.buildRustPackage rec { # needs /sys/fs/cgroup doCheck = false; - meta = with lib; { - platforms = platforms.linux; - maintainers = with maintainers; [ globin ]; + meta = { + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ globin ]; description = "Time traveling resource monitor for modern Linux systems"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/facebookincubator/below"; mainProgram = "below"; }; diff --git a/pkgs/by-name/be/belr/package.nix b/pkgs/by-name/be/belr/package.nix index 11fa75878341f..195dae7242687 100644 --- a/pkgs/by-name/be/belr/package.nix +++ b/pkgs/by-name/be/belr/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { # Do not build static libraries cmakeFlags = [ "-DENABLE_STATIC=NO" ]; - meta = with lib; { + meta = { description = "Belledonne Communications' language recognition library. Part of the Linphone project"; homepage = "https://gitlab.linphone.org/BC/public/belr"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/by-name/be/bemenu/package.nix b/pkgs/by-name/be/bemenu/package.nix index ace85ff9ec1b5..6b69be6bf6380 100644 --- a/pkgs/by-name/be/bemenu/package.nix +++ b/pkgs/by-name/be/bemenu/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation (finalAttrs: { ++ lib.optional waylandSupport "wayland" ++ lib.optional x11Support "x11"; - 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; + platforms = with lib.platforms; linux; }; }) diff --git a/pkgs/by-name/be/bemoji/package.nix b/pkgs/by-name/be/bemoji/package.nix index a7b4215aceeb2..ef58f52e9ae6a 100644 --- a/pkgs/by-name/be/bemoji/package.nix +++ b/pkgs/by-name/be/bemoji/package.nix @@ -22,12 +22,12 @@ stdenvNoCC.mkDerivation rec { 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; [ laurent-f1z1 ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ laurent-f1z1 ]; }; } diff --git a/pkgs/by-name/be/benchexec/package.nix b/pkgs/by-name/be/benchexec/package.nix index be860eaad4d0f..57715c71fbd08 100644 --- a/pkgs/by-name/be/benchexec/package.nix +++ b/pkgs/by-name/be/benchexec/package.nix @@ -55,11 +55,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/bento4/package.nix b/pkgs/by-name/be/bento4/package.nix index 2b7dc79faf2d9..7a9a12f940059 100644 --- a/pkgs/by-name/be/bento4/package.nix +++ b/pkgs/by-name/be/bento4/package.nix @@ -42,11 +42,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/bepasty/package.nix b/pkgs/by-name/be/bepasty/package.nix index 51309a35da9bd..5bbee2ec8cf87 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 f44b06b8631e5..70d212bc4f921 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/bettercap/package.nix b/pkgs/by-name/be/bettercap/package.nix index 84d732016e683..151f3a78c3dc8 100644 --- a/pkgs/by-name/be/bettercap/package.nix +++ b/pkgs/by-name/be/bettercap/package.nix @@ -36,7 +36,7 @@ buildGo122Module 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 @@ -44,8 +44,8 @@ buildGo122Module rec { in realtime, sniff for credentials and much more. ''; homepage = "https://www.bettercap.org/"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ y0no ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ y0no ]; mainProgram = "bettercap"; }; } diff --git a/pkgs/by-name/be/betterdiscord-installer/package.nix b/pkgs/by-name/be/betterdiscord-installer/package.nix index 35e66add048af..2889af991afe9 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 ba1fce2551e0e..51ac9e10b85e2 100644 --- a/pkgs/by-name/be/betterlockscreen/package.nix +++ b/pkgs/by-name/be/betterlockscreen/package.nix @@ -60,13 +60,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/bf/bfc/package.nix b/pkgs/by-name/bf/bfc/package.nix index c22bb6526620c..7e5c0dfb9ed63 100644 --- a/pkgs/by-name/bf/bfc/package.nix +++ b/pkgs/by-name/bf/bfc/package.nix @@ -33,12 +33,12 @@ rustPlatform.buildRustPackage rec { # process didn't exit successfully: <...> SIGSEGV doCheck = false; - meta = with lib; { + meta = { description = "Industrial-grade brainfuck compiler"; mainProgram = "bfc"; homepage = "https://bfc.wilfred.me.uk"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ figsoda ]; broken = stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isLinux; }; } diff --git a/pkgs/by-name/bf/bfetch/package.nix b/pkgs/by-name/bf/bfetch/package.nix index 07e559e4156ae..e686f0bd71d8b 100644 --- a/pkgs/by-name/bf/bfetch/package.nix +++ b/pkgs/by-name/bf/bfetch/package.nix @@ -24,12 +24,12 @@ stdenvNoCC.mkDerivation rec { 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/bfr/package.nix b/pkgs/by-name/bf/bfr/package.nix index d0fe5ded789dc..55128684d8d9b 100644 --- a/pkgs/by-name/bf/bfr/package.nix +++ b/pkgs/by-name/bf/bfr/package.nix @@ -23,10 +23,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 285b047eaf9b6..089ff0aa2a665 100644 --- a/pkgs/by-name/bf/bfs/package.nix +++ b/pkgs/by-name/bf/bfs/package.nix @@ -32,16 +32,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 322183078c2ad..7a4926050cfc7 100644 --- a/pkgs/by-name/bf/bfscripts/package.nix +++ b/pkgs/by-name/bf/bfscripts/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { ${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; [ nikstur ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ nikstur ]; }; } diff --git a/pkgs/by-name/bf/bftpd/package.nix b/pkgs/by-name/bf/bftpd/package.nix index f195306c784ee..47333554a34e2 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 9ad73d7bc037e..1980e4ee22942 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-rOpggVlXKaf3KBhfZ2lVooDaQA0iRjSbsLXF02GEyBw="; }; - 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 c7de15d1456f8..cdfe83a2c6bc5 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 c37dfa311cbe2..c731c393059da 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/bibclean/package.nix b/pkgs/by-name/bi/bibclean/package.nix index a87569b0213e7..710d0ed797be3 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/biblatex-check/package.nix b/pkgs/by-name/bi/biblatex-check/package.nix index 79cc1264a0572..f7b7eee5d3339 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 fd1a11d305c9b..28a7b39dbb43b 100644 --- a/pkgs/by-name/bi/biblesync/package.nix +++ b/pkgs/by-name/bi/biblesync/package.nix @@ -25,7 +25,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 = '' @@ -37,8 +37,8 @@ stdenv.mkDerivation rec { support mode setting, setup for packet reception, transmit on local navigation, and handling of incoming packets. ''; - license = licenses.publicDomain; - maintainers = [ maintainers.AndersonTorres ]; + license = lib.licenses.publicDomain; + maintainers = [ lib.maintainers.AndersonTorres ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bi/biboumi/package.nix b/pkgs/by-name/bi/biboumi/package.nix index cdcd493aa2f57..78b47fec0c785 100644 --- a/pkgs/by-name/bi/biboumi/package.nix +++ b/pkgs/by-name/bi/biboumi/package.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Modern XMPP IRC gateway"; mainProgram = "biboumi"; - platforms = platforms.unix; + platforms = lib.platforms.unix; homepage = "https://lab.louiz.org/louiz/biboumi"; - license = licenses.zlib; - maintainers = [ maintainers.woffs ]; + license = lib.licenses.zlib; + maintainers = [ lib.maintainers.woffs ]; }; } diff --git a/pkgs/by-name/bi/bibtex2html/package.nix b/pkgs/by-name/bi/bibtex2html/package.nix index eae4f6624673b..1ae7bf9bbd801 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 e52c0bd97929f..5a3dd0a88dcaf 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 54cc64412ac59..f62046e729e1b 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/bic/package.nix b/pkgs/by-name/bi/bic/package.nix index 43893b684b337..d8830cd5f674c 100644 --- a/pkgs/by-name/bi/bic/package.nix +++ b/pkgs/by-name/bi/bic/package.nix @@ -32,17 +32,17 @@ stdenv.mkDerivation rec { flex ]; - meta = with lib; { + meta = { description = "C interpreter and API explorer"; mainProgram = "bic"; longDescription = '' bic This a project that allows developers to explore and test C-APIs using a read eval print loop, also known as a REPL. ''; - license = with licenses; [ gpl2Plus ]; + license = with lib.licenses; [ gpl2Plus ]; homepage = "https://github.com/hexagonal-sun/bic"; - platforms = platforms.unix; - maintainers = with maintainers; [ hexagonal-sun ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ hexagonal-sun ]; # never built on aarch64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; }; diff --git a/pkgs/by-name/bi/bicpl/package.nix b/pkgs/by-name/bi/bicpl/package.nix index fd9e4f4003e03..cd590fbdb4033 100644 --- a/pkgs/by-name/bi/bicpl/package.nix +++ b/pkgs/by-name/bi/bicpl/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { 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/bin2c/package.nix b/pkgs/by-name/bi/bin2c/package.nix index 76407d1f3e3cc..51b68cbf9c525 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 5d44554461378..675fbe5be92a8 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/bingrep/package.nix b/pkgs/by-name/bi/bingrep/package.nix index 43a820f56d9a9..c5192bf6af0b0 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-n49VmAJcD98LdkrUCW6ouihSXmSCsdBDvCe9l96G0ec="; - 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/binsider/package.nix b/pkgs/by-name/bi/binsider/package.nix index 644982af14fe7..9d79a37b05fb0 100644 --- a/pkgs/by-name/bi/binsider/package.nix +++ b/pkgs/by-name/bi/binsider/package.nix @@ -34,14 +34,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 d1296d8334ae3..f9b059586a65b 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 fdb38563321ea..dcfa79fd60ed5 100644 --- a/pkgs/by-name/bi/bio-gappa/package.nix +++ b/pkgs/by-name/bi/bio-gappa/package.nix @@ -41,7 +41,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 = '' @@ -51,9 +51,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 8caee2afea0d2..c116831eb63e7 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 c1085956f00b2..26ec44e35d293 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 e043049d2a671..288d35e753ecf 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 d4a2d08259fff..6e9cb76f05709 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 38750cf58f876..c504e7bab459b 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 0b2d7eb14a8ab..9f69713d20af9 100644 --- a/pkgs/by-name/bi/bite/package.nix +++ b/pkgs/by-name/bi/bite/package.nix @@ -98,11 +98,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-facebook/package.nix b/pkgs/by-name/bi/bitlbee-facebook/package.nix index 086675c4f043c..43ccd789e11dd 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 1483602490ab9..10d6b239e2cb0 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/bitmeter/package.nix b/pkgs/by-name/bi/bitmeter/package.nix index 98258c12a3c6f..c4e85e959704e 100644 --- a/pkgs/by-name/bi/bitmeter/package.nix +++ b/pkgs/by-name/bi/bitmeter/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "http://devel.tlrmx.org/audio/bitmeter/"; description = "Also known as jack bitscope. Useful to detect denormals"; - license = licenses.gpl2; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; mainProgram = "bitmeter"; }; } diff --git a/pkgs/by-name/bi/bitwise/package.nix b/pkgs/by-name/bi/bitwise/package.nix index 44744927c45ba..1da56d712dc3b 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 af4c7d0d64075..0b6ca6eb557c7 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 1e12d4403a449..9c9445a336e7e 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 720808a2342f1..e8d684a8fd9c3 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 3fe7397f35980..6571d42f5c692 100644 --- a/pkgs/by-name/bk/bklk/package.nix +++ b/pkgs/by-name/bk/bklk/package.nix @@ -25,13 +25,13 @@ stdenv.mkDerivation rec { 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 01135cb948403..a1d6e56632673 100644 --- a/pkgs/by-name/bk/bkyml/package.nix +++ b/pkgs/by-name/bk/bkyml/package.nix @@ -38,10 +38,10 @@ buildPythonApplication rec { setuptools ]; - 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/blackbox-terminal/marble.nix b/pkgs/by-name/bl/blackbox-terminal/marble.nix index 01a3f2362814d..406829a99192c 100644 --- a/pkgs/by-name/bl/blackbox-terminal/marble.nix +++ b/pkgs/by-name/bl/blackbox-terminal/marble.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation { ]; buildInputs = [ gtk4 ]; - meta = with lib; { + meta = { description = "Raggesilver's GTK library"; homepage = "https://gitlab.gnome.org/raggesilver/marble"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ chuangzhu ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ chuangzhu ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bl/blackmagic-desktop-video/package.nix b/pkgs/by-name/bl/blackmagic-desktop-video/package.nix index 55cbe53320899..53a7f3ffb404c 100644 --- a/pkgs/by-name/bl/blackmagic-desktop-video/package.nix +++ b/pkgs/by-name/bl/blackmagic-desktop-video/package.nix @@ -100,11 +100,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/blahaj/package.nix b/pkgs/by-name/bl/blahaj/package.nix index 258da854cfb88..8bdac98a508e8 100644 --- a/pkgs/by-name/bl/blahaj/package.nix +++ b/pkgs/by-name/bl/blahaj/package.nix @@ -21,11 +21,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.queer.software"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ aleksana cafkafk ]; diff --git a/pkgs/by-name/bl/blaze/package.nix b/pkgs/by-name/bl/blaze/package.nix index 4a0ecbbdd9656..320b0b1487b4f 100644 --- a/pkgs/by-name/bl/blaze/package.nix +++ b/pkgs/by-name/bl/blaze/package.nix @@ -26,11 +26,11 @@ 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 ]; - maintainers = with maintainers; [ Madouura ]; - platforms = platforms.unix; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ Madouura ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/bl/bleachbit/package.nix b/pkgs/by-name/bl/bleachbit/package.nix index 44290eb6c51f2..1ff7015d08879 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 = "http://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 314de2bcbf3f4..262d015aab7e0 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 = "A 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 79fb35dd07018..35204db36a593 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 f11bd48291761..f6fa5dc4975f4 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-NRBW2rGrtEmmxONTpCM1D+o5HtnLjp175Sq9+aCp7ZE="; - 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 0d52efe9ba113..86e418a2d0871 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/bliss/package.nix b/pkgs/by-name/bl/bliss/package.nix index a277e257fe3f3..be36253fa1365 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 f54c1861deba4..5e45ceb4343d8 100644 --- a/pkgs/by-name/bl/blitz/package.nix +++ b/pkgs/by-name/bl/blitz/package.nix @@ -70,16 +70,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 d08a341860f4b..ab1e6a20fe23e 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 e2efe3f83307b..44c86d520ca44 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 8a3bfbbde3410..b9cdf6b89af89 100644 --- a/pkgs/by-name/bl/blobby/package.nix +++ b/pkgs/by-name/bl/blobby/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { chmod a+x "$out/bin/blobby" ''; - meta = with lib; { + meta = { description = "Blobby 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 6ec9a31943f41..050d426940af8 100644 --- a/pkgs/by-name/bl/blobfuse/package.nix +++ b/pkgs/by-name/bl/blobfuse/package.nix @@ -30,11 +30,11 @@ buildGoModule { passthru.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 945f90300c5bb..a2b6d8d34dd09 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/blockhash/package.nix b/pkgs/by-name/bl/blockhash/package.nix index aa956b0360fa0..f1e1974a5533b 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/blogc/package.nix b/pkgs/by-name/bl/blogc/package.nix index 3ab9524c04459..88f328c6a7ac4 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/bloomrpc/package.nix b/pkgs/by-name/bl/bloomrpc/package.nix index 764b4082990ac..40b35cd319025 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/blst/package.nix b/pkgs/by-name/bl/blst/package.nix index 0148fe0d0a945..483d430444890 100644 --- a/pkgs/by-name/bl/blst/package.nix +++ b/pkgs/by-name/bl/blst/package.nix @@ -71,14 +71,14 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { 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 f32e619f56f55..cf2142ce5c29e 100644 --- a/pkgs/by-name/bl/blueberry/package.nix +++ b/pkgs/by-name/bl/blueberry/package.nix @@ -88,12 +88,12 @@ stdenv.mkDerivation 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/blueprint-compiler/package.nix b/pkgs/by-name/bl/blueprint-compiler/package.nix index e9b4230b6348a..c40c72f020770 100644 --- a/pkgs/by-name/bl/blueprint-compiler/package.nix +++ b/pkgs/by-name/bl/blueprint-compiler/package.nix @@ -64,15 +64,15 @@ stdenv.mkDerivation (finalAttrs: { package = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Markup language for GTK user interface files"; mainProgram = "blueprint-compiler"; homepage = "https://gitlab.gnome.org/jwestman/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 7a2241a2f5e10..b70b60fb75eba 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 5f1aa6eb922d1..24806d2a4bacc 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 79093953921f7..58009956a800c 100644 --- a/pkgs/by-name/bl/blur-effect/package.nix +++ b/pkgs/by-name/bl/blur-effect/package.nix @@ -31,13 +31,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/bmaptool/package.nix b/pkgs/by-name/bm/bmaptool/package.nix index c97b13d26a388..f1275d991887c 100644 --- a/pkgs/by-name/bm/bmaptool/package.nix +++ b/pkgs/by-name/bm/bmaptool/package.nix @@ -20,12 +20,12 @@ python3Packages.buildPythonApplication rec { # tests fail only on hydra. doCheck = false; - meta = with lib; { + meta = { description = "BMAP Tools"; homepage = "https://github.com/yoctoproject/bmaptool"; - license = licenses.gpl2Only; - maintainers = [ maintainers.dezgeg ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.dezgeg ]; + platforms = lib.platforms.linux; mainProgram = "bmaptool"; }; } diff --git a/pkgs/by-name/bm/bmon/package.nix b/pkgs/by-name/bm/bmon/package.nix index 9f50559b3817f..56206a1b3dc93 100644 --- a/pkgs/by-name/bm/bmon/package.nix +++ b/pkgs/by-name/bm/bmon/package.nix @@ -46,15 +46,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 unter 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/bo/boatswain/package.nix b/pkgs/by-name/bo/boatswain/package.nix index 4dbdaa3e462cd..8a453f61e3815 100644 --- a/pkgs/by-name/bo/boatswain/package.nix +++ b/pkgs/by-name/bo/boatswain/package.nix @@ -61,13 +61,13 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Control Elgato Stream Deck devices"; homepage = "https://gitlab.gnome.org/World/boatswain"; mainProgram = "boatswain"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ _0xMRTT ] ++ lib.teams.gnome-circle.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ _0xMRTT ] ++ lib.teams.gnome-circle.members; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/bo/bob/package.nix b/pkgs/by-name/bo/bob/package.nix index 2b4f0769f68ce..084a2c380ea5d 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 51423f2f38bf9..4cde38cfd4c87 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 postBuild ''; - 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 93bde7439f407..de108025a1f2d 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 a563e6d4782cd..cdf353e7b5863 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/boinctui/package.nix b/pkgs/by-name/bo/boinctui/package.nix index b0ff4f3483163..8da9cc94d351a 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 25caec2b879a9..55806583b3082 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 rec { 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 a88bcfb607028..62155798b190f 100644 --- a/pkgs/by-name/bo/bolt/package.nix +++ b/pkgs/by-name/bo/bolt/package.nix @@ -89,12 +89,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 48c6c3eb93eb1..6ac1f34872840 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 74ae658239396..55fbd5bf2b37a 100644 --- a/pkgs/by-name/bo/bombadillo/package.nix +++ b/pkgs/by-name/bo/bombadillo/package.nix @@ -28,11 +28,11 @@ 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; - maintainers = with maintainers; [ ehmry ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ ehmry ]; }; } diff --git a/pkgs/by-name/bo/bombono/package.nix b/pkgs/by-name/bo/bombono/package.nix index e309785aec6c2..939ec5cf8e274 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 ad9671ae25691..4a846d6a7273d 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/bonsai/package.nix b/pkgs/by-name/bo/bonsai/package.nix index a8cb48e552945..c5ad47832ae59 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 009a82e33abcf..a3e00153ac051 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 e6b7b1bbe010d..5c35875dce5e3 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 70244b9907eb6..562b6034a3df4 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-QwydecdQaxvh6vWZvO30zgvvgUT6T5dvGRSmcuTUJmc="; - 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; - maintainers = with teams; iog.members; + license = lib.licenses.mit; + maintainers = with lib.teams; iog.members; }; } diff --git a/pkgs/by-name/bo/bookworm/package.nix b/pkgs/by-name/bo/bookworm/package.nix index 5f8345bd6ab7e..d19b2b9c0706c 100644 --- a/pkgs/by-name/bo/bookworm/package.nix +++ b/pkgs/by-name/bo/bookworm/package.nix @@ -91,14 +91,14 @@ stdenv.mkDerivation rec { patchShebangs $out/share/bookworm/scripts/tasks/*.sh ''; - meta = with lib; { + meta = { description = "Simple, focused eBook reader"; mainProgram = "com.github.babluboy.bookworm"; longDescription = '' 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 d9c6d5de82cce..30647a8c83de7 100644 --- a/pkgs/by-name/bo/boolector/package.nix +++ b/pkgs/by-name/bo/boolector/package.nix @@ -75,11 +75,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 8e5cfe9865ea6..8438e28a59df7 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 89eefca6ba250..f789f8c0cb82c 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 1817a64b53715..1fbc0dde41304 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/bootil/package.nix b/pkgs/by-name/bo/bootil/package.nix index a3157202b36dc..fac703bda68d6 100644 --- a/pkgs/by-name/bo/bootil/package.nix +++ b/pkgs/by-name/bo/bootil/package.nix @@ -33,14 +33,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 8b54e2ace61dd..507900d956e76 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/package.nix b/pkgs/by-name/bo/bootspec/package.nix index 1a01eb2b3a17a..55686417e3599 100644 --- a/pkgs/by-name/bo/bootspec/package.nix +++ b/pkgs/by-name/bo/bootspec/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-eGSKVHjPnHK7WyGkO5LIjocNGHawahYQR3H5Lgk1C9s="; - meta = with lib; { + meta = { description = "Implementation of RFC-0125's datatype and synthesis tooling"; homepage = "https://github.com/DeterminateSystems/bootspec"; - license = licenses.mit; - maintainers = teams.determinatesystems.members; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = lib.teams.determinatesystems.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/bo/borealis-cursors/package.nix b/pkgs/by-name/bo/borealis-cursors/package.nix index 7d1b99953ad4f..7fac2c932cd91 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 2341003ae24aa..c27f41e0d3355 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/boringssl/package.nix b/pkgs/by-name/bo/boringssl/package.nix index 9c8ea8edad61f..461d2fb445f90 100644 --- a/pkgs/by-name/bo/boringssl/package.nix +++ b/pkgs/by-name/bo/boringssl/package.nix @@ -72,12 +72,12 @@ buildGoModule { "dev" ]; - meta = with lib; { + meta = { description = "Free TLS/SSL implementation"; mainProgram = "bssl"; homepage = "https://boringssl.googlesource.com"; - maintainers = [ maintainers.thoughtpolice ]; - license = with licenses; [ + maintainers = [ lib.maintainers.thoughtpolice ]; + license = with lib.licenses; [ openssl isc mit diff --git a/pkgs/by-name/bo/boron/package.nix b/pkgs/by-name/bo/boron/package.nix index a7b278ba50b51..f524378f17909 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 1a108f0a712d1..69e453f66c7d8 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 65de68f8250c5..5732891a9489c 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 7f46613e2b417..4772c4c09d01c 100644 --- a/pkgs/by-name/bo/botamusique/package.nix +++ b/pkgs/by-name/bo/botamusique/package.nix @@ -155,11 +155,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/bottom-rs/package.nix b/pkgs/by-name/bo/bottom-rs/package.nix index 46172fd039fde..86f6dc167deff 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-7xD65ookkK09XwCBH6fXqmWRYlmvpwAocojBg/dHzUI="; - 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/boulder/package.nix b/pkgs/by-name/bo/boulder/package.nix index aca011e0fba28..07b2456495324 100644 --- a/pkgs/by-name/bo/boulder/package.nix +++ b/pkgs/by-name/bo/boulder/package.nix @@ -307,7 +307,7 @@ buildGoModule rec { inherit version; }; - meta = with lib; { + meta = { homepage = "https://github.com/letsencrypt/boulder"; description = "ACME-based certificate authority, written in Go"; longDescription = '' @@ -317,8 +317,8 @@ buildGoModule rec { revoke certificates for their domains. Boulder is the software that runs Let's Encrypt. ''; - license = licenses.mpl20; + license = lib.licenses.mpl20; mainProgram = "boulder"; - maintainers = with maintainers; [ azahi ]; + maintainers = with lib.maintainers; [ azahi ]; }; } diff --git a/pkgs/by-name/bo/bowtie/package.nix b/pkgs/by-name/bo/bowtie/package.nix index b9b539e8db491..57ff04ed53ba6 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/boxbuddy/package.nix b/pkgs/by-name/bo/boxbuddy/package.nix index f1fc14620fcde..c00b934174457 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 a6ba4a21e10f3..6977c595aca24 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 476eae96fe763..b8b3486339108 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 65ab07307b420..732ae3d2798d8 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 b1d699928dbc0..ad90dafa487a4 100644 --- a/pkgs/by-name/bo/boxfs/package.nix +++ b/pkgs/by-name/bo/boxfs/package.nix @@ -63,7 +63,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 @@ -73,7 +73,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 03b2d1030ac77..b9b78aa815b55 100644 --- a/pkgs/by-name/bo/boxxy/package.nix +++ b/pkgs/by-name/bo/boxxy/package.nix @@ -32,15 +32,15 @@ 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 figsoda ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; broken = stdenv.hostPlatform.isAarch64; mainProgram = "boxxy"; }; diff --git a/pkgs/by-name/bp/bpf-linker/package.nix b/pkgs/by-name/bp/bpf-linker/package.nix index 63c07fe0347da..b80ce3735cd7f 100644 --- a/pkgs/by-name/bp/bpf-linker/package.nix +++ b/pkgs/by-name/bp/bpf-linker/package.nix @@ -40,15 +40,15 @@ rustPlatform.buildRustPackage rec { # rust-src and `-Z build-std=core` are required to properly run the tests doCheck = false; - meta = with lib; { + meta = { description = "Simple BPF static linker"; mainProgram = "bpf-linker"; homepage = "https://github.com/aya-rs/bpf-linker"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ nickcao ]; + maintainers = with lib.maintainers; [ nickcao ]; # llvm-sys crate locates llvm by calling llvm-config # which is not available when cross compiling broken = stdenv.buildPlatform != stdenv.hostPlatform; diff --git a/pkgs/by-name/bp/bpftune/package.nix b/pkgs/by-name/bp/bpftune/package.nix index 30a9a9bc5e969..5b6846d0821c4 100644 --- a/pkgs/by-name/bp/bpftune/package.nix +++ b/pkgs/by-name/bp/bpftune/package.nix @@ -65,11 +65,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 b3d7d8f7aceb8..af2b096e731dd 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 4f5a705fed693..17c0fd37fd923 100644 --- a/pkgs/by-name/bp/bpp-core/package.nix +++ b/pkgs/by-name/bp/bpp-core/package.nix @@ -36,11 +36,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 b08403987090a..30273379b3db8 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 2a6a67b17aed3..28cb8b2548beb 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/break-time/package.nix b/pkgs/by-name/br/break-time/package.nix index 141d8d0b2765f..271ff591fb2cc 100644 --- a/pkgs/by-name/br/break-time/package.nix +++ b/pkgs/by-name/br/break-time/package.nix @@ -42,12 +42,12 @@ rustPlatform.buildRustPackage rec { ln -sf ${./Cargo.lock} Cargo.lock ''; - meta = with lib; { + meta = { description = "Break timer that forces you to take a break"; mainProgram = "break-time"; homepage = "https://github.com/cdepillabout/break-time"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ cdepillabout ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ cdepillabout ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/br/breakpad/package.nix b/pkgs/by-name/br/breakpad/package.nix index a3bdd857bc40a..7ce4e9817da0a 100644 --- a/pkgs/by-name/br/breakpad/package.nix +++ b/pkgs/by-name/br/breakpad/package.nix @@ -37,11 +37,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 42d1d2125e255..6bb1baf835e1f 100644 --- a/pkgs/by-name/br/breeze-hacked-cursor-theme/package.nix +++ b/pkgs/by-name/br/breeze-hacked-cursor-theme/package.nix @@ -46,11 +46,11 @@ stdenvNoCC.mkDerivation rec { 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/brial/package.nix b/pkgs/by-name/br/brial/package.nix index d82ac052d7374..959766de488db 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; - maintainers = teams.sage.members; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.sage.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/br/briar-desktop/package.nix b/pkgs/by-name/br/briar-desktop/package.nix index 55c5bcedce103..88d820fd2c540 100644 --- a/pkgs/by-name/br/briar-desktop/package.nix +++ b/pkgs/by-name/br/briar-desktop/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Decentalized and secure messnger"; mainProgram = "briar-desktop"; homepage = "https://code.briarproject.org/briar/briar-desktop"; - license = licenses.gpl3; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ onny ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/br/brigand/package.nix b/pkgs/by-name/br/brigand/package.nix index d1cdee16f2e17..0c181e235fd29 100644 --- a/pkgs/by-name/br/brigand/package.nix +++ b/pkgs/by-name/br/brigand/package.nix @@ -18,14 +18,14 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Instant compile time C++ 11 metaprogramming library"; longDescription = '' Brigand is a light-weight, fully functional, instant-compile time C++ 11 meta-programming library. Everything you were doing with Boost.MPL can be done with Brigand. And if that's not the case, open an issue!''; homepage = "https://github.com/edouarda/brigand"; - license = licenses.boost; - maintainers = with maintainers; [ pmiddend ]; - platforms = platforms.all; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ pmiddend ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/br/brightnessctl/package.nix b/pkgs/by-name/br/brightnessctl/package.nix index 35c5935f4f4de..29594cc2c7b4d 100644 --- a/pkgs/by-name/br/brightnessctl/package.nix +++ b/pkgs/by-name/br/brightnessctl/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ systemd ]; - 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/brise/package.nix b/pkgs/by-name/br/brise/package.nix index 4d4ab988cfec9..c6fb6b1c7dc02 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/bristol/package.nix b/pkgs/by-name/br/bristol/package.nix index 2251225e68d7b..a7ffd14350a42 100644 --- a/pkgs/by-name/br/bristol/package.nix +++ b/pkgs/by-name/br/bristol/package.nix @@ -64,10 +64,10 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Range of synthesiser, electric piano and organ emulations"; homepage = "https://bristol.sourceforge.net"; - license = licenses.gpl3; + license = lib.licenses.gpl3; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/br/brmodelo/package.nix b/pkgs/by-name/br/brmodelo/package.nix index bcc9e5c2df60b..f84f3b600ccef 100644 --- a/pkgs/by-name/br/brmodelo/package.nix +++ b/pkgs/by-name/br/brmodelo/package.nix @@ -122,11 +122,11 @@ 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 = with maintainers; [ yuu ]; + maintainers = with lib.maintainers; [ yuu ]; }; }) diff --git a/pkgs/by-name/br/broadcom-bt-firmware/package.nix b/pkgs/by-name/br/broadcom-bt-firmware/package.nix index aacf0451891f3..2824fd6330f4c 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/brogue-ce/package.nix b/pkgs/by-name/br/brogue-ce/package.nix index 09f2ac7c7d942..114c9fd87605b 100644 --- a/pkgs/by-name/br/brogue-ce/package.nix +++ b/pkgs/by-name/br/brogue-ce/package.nix @@ -59,15 +59,15 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - 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; [ AndersonTorres fgaz ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/br/brogue/package.nix b/pkgs/by-name/br/brogue/package.nix index 7f133c1dae99f..e06d52c362a41 100644 --- a/pkgs/by-name/br/brogue/package.nix +++ b/pkgs/by-name/br/brogue/package.nix @@ -68,12 +68,12 @@ stdenv.mkDerivation (finalAttrs: { "fortify" ]; - meta = with lib; { + meta = { description = "Roguelike game"; mainProgram = "brogue"; homepage = "https://sites.google.com/site/broguegame/"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ AndersonTorres fgaz ]; diff --git a/pkgs/by-name/br/bront_fonts/package.nix b/pkgs/by-name/br/bront_fonts/package.nix index fe31a6e0bfabc..d2266d688880c 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 19ed8ed89519f..655b6446be5e9 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 6c7d0cb264c51..ba32d447a8cb8 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/browserpass/package.nix b/pkgs/by-name/br/browserpass/package.nix index 3c8fbaad9a7bc..cac86a2e4dc1a 100644 --- a/pkgs/by-name/br/browserpass/package.nix +++ b/pkgs/by-name/br/browserpass/package.nix @@ -67,11 +67,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 f14b7662e8cbf..72e041d9925b2 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 2846fcabdc7d8..aa4fda5566e2a 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 c83c8a2461312..38524edc4202a 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/brutespray/package.nix b/pkgs/by-name/br/brutespray/package.nix index 52bbdf16113af..256b46dad48ad 100644 --- a/pkgs/by-name/br/brutespray/package.nix +++ b/pkgs/by-name/br/brutespray/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { cp -r wordlist/ $out/share/brutespray/wordlist ''; - meta = with lib; { + meta = { homepage = "https://github.com/x90skysn3k/brutespray"; description = "Tool to do brute-forcing from Nmap output"; mainProgram = "brutespray"; @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { This tool automatically attempts default credentials on found services directly from Nmap output. ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/by-name/bs/bs2b-lv2/package.nix b/pkgs/by-name/bs/bs2b-lv2/package.nix index 161522ef32f11..cbfead31f9832 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; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bs/bschaffl/package.nix b/pkgs/by-name/bs/bschaffl/package.nix index e35a04cf453e9..6c6d7a2a55d75 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 666d9c2690fd4..1245d775d1ba1 100644 --- a/pkgs/by-name/bs/bsdiff/package.nix +++ b/pkgs/by-name/bs/bsdiff/package.nix @@ -55,11 +55,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 965195fe0360a..fd61db15fb1a1 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 884ae2cb47bdd..18656405e55ab 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 ecd0622094cd4..3bca418382f29 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 ddc296c550f7b..c9d5396d7dd53 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 rec { 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 83aa6961c2fff..7878bc6c58822 100644 --- a/pkgs/by-name/bs/bspwm/package.nix +++ b/pkgs/by-name/bs/bspwm/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Tiling window manager based on binary space partitioning"; homepage = "https://github.com/baskerville/bspwm"; - maintainers = with maintainers; [ meisternu ]; - license = licenses.bsd2; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ meisternu ]; + 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 571b98ddb8643..c16762819b076 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 5a0175069e306..bd79c982f3ee4 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/bt-migrate/package.nix b/pkgs/by-name/bt/bt-migrate/package.nix index e10258e9c8c1f..592db99b75152 100644 --- a/pkgs/by-name/bt/bt-migrate/package.nix +++ b/pkgs/by-name/bt/bt-migrate/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation { strictDeps = true; - meta = with lib; { + meta = { description = "Torrent state migration tool"; homepage = "https://github.com/mikedld/bt-migrate?tab=readme-ov-file"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ambroisie ]; mainProgram = "BtMigrate"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/bt/btar/package.nix b/pkgs/by-name/bt/btar/package.nix index 2109d92ab884b..d3e13559c2c8c 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 2ffe238390b0f..73d4360c0e3cf 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/btfs/package.nix b/pkgs/by-name/bt/btfs/package.nix index d63950aac6acc..9baa657ce267c 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 cd361ebca743e..1c8bd3e1d1e6e 100644 --- a/pkgs/by-name/bt/btor2tools/package.nix +++ b/pkgs/by-name/bt/btor2tools/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { "-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 dad8be36e5947..015dd59a95fc5 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-heatmap/package.nix b/pkgs/by-name/bt/btrfs-heatmap/package.nix index ff7bc2a9462d7..592d771c6d94a 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; - maintainers = [ maintainers.evils ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.evils ]; }; } diff --git a/pkgs/by-name/bt/btrfs-snap/package.nix b/pkgs/by-name/bt/btrfs-snap/package.nix index 9244674ef113b..d243eec6ed057 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 f1d3150034f6e..da12e03712fa0 100644 --- a/pkgs/by-name/bu/bubblemail/package.nix +++ b/pkgs/by-name/bu/bubblemail/package.nix @@ -66,11 +66,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/buffer/package.nix b/pkgs/by-name/bu/buffer/package.nix index 1482119defbf4..3a44b10bdd2de 100644 --- a/pkgs/by-name/bu/buffer/package.nix +++ b/pkgs/by-name/bu/buffer/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation (finalAttrs: { ) ''; - meta = with lib; { + meta = { description = "Minimal editing space for all those things that don't need keeping"; homepage = "https://gitlab.gnome.org/cheywood/buffer"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "buffer"; - maintainers = with maintainers; [ michaelgrahamevans ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ michaelgrahamevans ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/bu/buffybox/package.nix b/pkgs/by-name/bu/buffybox/package.nix index e264825e97fec..7defe20a0c21f 100644 --- a/pkgs/by-name/bu/buffybox/package.nix +++ b/pkgs/by-name/bu/buffybox/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "A 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/buildkite-agent-metrics/package.nix b/pkgs/by-name/bu/buildkite-agent-metrics/package.nix index 5cb7b706f0347..d87ea06af1738 100644 --- a/pkgs/by-name/bu/buildkite-agent-metrics/package.nix +++ b/pkgs/by-name/bu/buildkite-agent-metrics/package.nix @@ -26,10 +26,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; - maintainers = teams.determinatesystems.members; + license = lib.licenses.mit; + maintainers = lib.teams.determinatesystems.members; }; } diff --git a/pkgs/by-name/bu/buildkite-agent/package.nix b/pkgs/by-name/bu/buildkite-agent/package.nix index a846606d836e8..e6181137b2ea4 100644 --- a/pkgs/by-name/bu/buildkite-agent/package.nix +++ b/pkgs/by-name/bu/buildkite-agent/package.nix @@ -57,7 +57,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 @@ -67,13 +67,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 623c7b8ca3a3f..99acbb4e5f28b 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 001cb8da5b929..bebeddfa66d0c 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 edd09870b8132..154aa7804d863 100644 --- a/pkgs/by-name/bu/buku/package.nix +++ b/pkgs/by-name/bu/buku/package.nix @@ -86,12 +86,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 92c3c56b8be66..c99ed33609421 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/bulky/package.nix b/pkgs/by-name/bu/bulky/package.nix index 0312d2565b6ce..0031d7f814dfc 100644 --- a/pkgs/by-name/bu/bulky/package.nix +++ b/pkgs/by-name/bu/bulky/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { glib-compile-schemas $out/share/glib-2.0/schemas ''; - meta = with lib; { + meta = { description = "Bulk rename app"; mainProgram = "bulky"; homepage = "https://github.com/linuxmint/bulky"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/bu/bulletml/package.nix b/pkgs/by-name/bu/bulletml/package.nix index 344afc966811c..fdce3336f7d4d 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 6756a87e0a1e5..071c529c6754c 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 91cf6c834dfb7..e8004fa6fa2e4 100644 --- a/pkgs/by-name/bu/bully/package.nix +++ b/pkgs/by-name/bu/bully/package.nix @@ -27,12 +27,12 @@ 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; - maintainers = with maintainers; [ edwtjo ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ edwtjo ]; + platforms = lib.platforms.linux; mainProgram = "bully"; }; } diff --git a/pkgs/by-name/bu/bump/package.nix b/pkgs/by-name/bu/bump/package.nix index e73a8713cb72d..8d8dcff2ee0ad 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 b28a533f19ca3..5a9533b32ec83 100644 --- a/pkgs/by-name/bu/bumpver/package.nix +++ b/pkgs/by-name/bu/bumpver/package.nix @@ -42,11 +42,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 f4cc317f6010e..3d3f76cffd78b 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 ca07660a86c5e..707a2a281ad11 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-sQ6f8BHGsPFPchFDjNlZimnu9i99SGYf5bYfM1/2Gac="; - 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/bupc/package.nix b/pkgs/by-name/bu/bupc/package.nix index b193adbeba115..e46d31fabf00d 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/burp/package.nix b/pkgs/by-name/bu/burp/package.nix index 6479c15eeb76b..aa40158f3a897 100644 --- a/pkgs/by-name/bu/burp/package.nix +++ b/pkgs/by-name/bu/burp/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { installFlags = [ "localstatedir=/tmp" ]; - meta = with lib; { + meta = { description = "BURP - 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/butane/package.nix b/pkgs/by-name/bu/butane/package.nix index ddd3d18e237dd..968c10ff4ae4f 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 31d03a5243133..24197d672939b 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 7c15ca68290af..bbc7945c67d88 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 35795e6cdaed7..39246f86a2963 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 = "Buzztrax is a 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 91b480c9f836d..0f1d90de360d7 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/bv/bviplus/package.nix b/pkgs/by-name/bv/bviplus/package.nix index d322b27c75980..17e024c9431da 100644 --- a/pkgs/by-name/bv/bviplus/package.nix +++ b/pkgs/by-name/bv/bviplus/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { buildFlags = [ "CFLAGS=-fgnu89-inline" ]; - meta = with lib; { + meta = { description = "Ncurses based hex editor with a vim-like interface"; homepage = "https://bviplus.sourceforge.net"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "bviplus"; }; diff --git a/pkgs/by-name/bw/bwa-mem2/package.nix b/pkgs/by-name/bw/bwa-mem2/package.nix index ad1bc23399cd6..fe8ec386da258 100644 --- a/pkgs/by-name/bw/bwa-mem2/package.nix +++ b/pkgs/by-name/bw/bwa-mem2/package.nix @@ -60,13 +60,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; [ alxsimon ]; + platforms = lib.platforms.x86_64; + maintainers = with lib.maintainers; [ alxsimon ]; }; }) diff --git a/pkgs/by-name/bw/bwa/package.nix b/pkgs/by-name/bw/bwa/package.nix index c306c2755d7ee..ac0f959075647 100644 --- a/pkgs/by-name/bw/bwa/package.nix +++ b/pkgs/by-name/bw/bwa/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation { 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 aec275e41c24d..2b80aa5700c95 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/bz/bzrtp/package.nix b/pkgs/by-name/bz/bzrtp/package.nix index dff70855b3f1f..d1f1c8e8d7ded 100644 --- a/pkgs/by-name/bz/bzrtp/package.nix +++ b/pkgs/by-name/bz/bzrtp/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { "-Wno-error=unused-parameter" ]; - meta = with lib; { + meta = { description = "Opensource implementation of ZRTP keys exchange protocol. Part of the Linphone project"; homepage = "https://gitlab.linphone.org/BC/public/bzrtp"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/by-name/c-/c-graph/package.nix b/pkgs/by-name/c-/c-graph/package.nix index 4b586eef0e7aa..3e60cfe164732 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/c-/c-periphery/package.nix b/pkgs/by-name/c-/c-periphery/package.nix index f43e3520223a6..6f08051868229 100644 --- a/pkgs/by-name/c-/c-periphery/package.nix +++ b/pkgs/by-name/c-/c-periphery/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "C library for peripheral I/O (GPIO, LED, PWM, SPI, I2C, MMIO, Serial) in Linux"; homepage = "https://github.com/vsergeev/c-periphery"; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/c2/c2ffi/package.nix b/pkgs/by-name/c2/c2ffi/package.nix index eaeebe044e4f2..de100a07cb9f7 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/c2patool/package.nix b/pkgs/by-name/c2/c2patool/package.nix index 49e8dcbac954f..f74e3a77b8da5 100644 --- a/pkgs/by-name/c2/c2patool/package.nix +++ b/pkgs/by-name/c2/c2patool/package.nix @@ -54,14 +54,14 @@ rustPlatform.buildRustPackage rec { versionCheckHook ]; - meta = with lib; { + meta = { description = "Command line tool for displaying and adding C2PA manifests"; homepage = "https://github.com/contentauth/c2patool"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ ok-nick ]; + maintainers = with lib.maintainers; [ ok-nick ]; mainProgram = "c2patool"; }; } diff --git a/pkgs/by-name/c3/c3c/package.nix b/pkgs/by-name/c3/c3c/package.nix index e12ca87d951fd..ef9c0af928a90 100644 --- a/pkgs/by-name/c3/c3c/package.nix +++ b/pkgs/by-name/c3/c3c/package.nix @@ -51,14 +51,14 @@ 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; [ anas ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "c3c"; }; }) diff --git a/pkgs/by-name/ca/cabextract/package.nix b/pkgs/by-name/ca/cabextract/package.nix index 36cd8ff6bece5..2cc6c90876ae6 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/cables/package.nix b/pkgs/by-name/ca/cables/package.nix index 0cc7ca77c2d84..4333b6218e4ce 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/cachefilesd/package.nix b/pkgs/by-name/ca/cachefilesd/package.nix index c6e2f2467d57f..5c6380d56d2de 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/ca/cadical/package.nix b/pkgs/by-name/ca/cadical/package.nix index fde53b371fb58..0f359bebc9eda 100644 --- a/pkgs/by-name/ca/cadical/package.nix +++ b/pkgs/by-name/ca/cadical/package.nix @@ -92,11 +92,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/cadzinho/package.nix b/pkgs/by-name/ca/cadzinho/package.nix index 56c333fb6caed..b879ac097e9f0 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 a518e2cd1d3ec..a68dbfccd22f3 100644 --- a/pkgs/by-name/ca/caeml/package.nix +++ b/pkgs/by-name/ca/caeml/package.nix @@ -16,7 +16,7 @@ buildGoModule rec { vendorHash = "sha256-SDJsRLIGlLv/6NUctCrn6z1IDEmum1Wn5I8RFuwcOe8="; - meta = with lib; { + meta = { description = "cat eml files"; mainProgram = "caeml"; longDescription = '' @@ -26,7 +26,7 @@ buildGoModule rec { 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 4d4c5c8682e99..ba07dfed08235 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" ]; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; diff --git a/pkgs/by-name/ca/cairo-lang/package.nix b/pkgs/by-name/ca/cairo-lang/package.nix index 21a2201d1a30b..10cd9f9ea5a0b 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/calamares-nixos-extensions/package.nix b/pkgs/by-name/ca/calamares-nixos-extensions/package.nix index 2e9c407c5ae83..8854f6bc85971 100644 --- a/pkgs/by-name/ca/calamares-nixos-extensions/package.nix +++ b/pkgs/by-name/ca/calamares-nixos-extensions/package.nix @@ -24,17 +24,17 @@ 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; [ gpl3Plus bsd2 cc-by-40 cc-by-sa-40 cc0 ]; - maintainers = with maintainers; [ vlinkz ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ vlinkz ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ca/calcium/package.nix b/pkgs/by-name/ca/calcium/package.nix index 5ecb97953114a..aa4f66b3cd65f 100644 --- a/pkgs/by-name/ca/calcium/package.nix +++ b/pkgs/by-name/ca/calcium/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "C library for exact computation with real and complex numbers"; homepage = "https://fredrikj.net/calcium/"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ smasher164 ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ smasher164 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ca/calendar-cli/package.nix b/pkgs/by-name/ca/calendar-cli/package.nix index 38c5e282c063d..e12cc468bb360 100644 --- a/pkgs/by-name/ca/calendar-cli/package.nix +++ b/pkgs/by-name/ca/calendar-cli/package.nix @@ -38,11 +38,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/callaudiod/package.nix b/pkgs/by-name/ca/callaudiod/package.nix index e77fe107acdb3..653643bf2708e 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 42b96b70058ea..aabb72769a737 100644 --- a/pkgs/by-name/ca/calls/package.nix +++ b/pkgs/by-name/ca/calls/package.nix @@ -124,13 +124,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/cambalache/package.nix b/pkgs/by-name/ca/cambalache/package.nix index a664bdc6ac1cd..2fa7cbc1bdd38 100644 --- a/pkgs/by-name/ca/cambalache/package.nix +++ b/pkgs/by-name/ca/cambalache/package.nix @@ -97,15 +97,15 @@ python3.pkgs.buildPythonApplication rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/jpu/cambalache"; description = "RAD tool for GTK 4 and 3 with data model first philosophy"; mainProgram = "cambalache"; - maintainers = teams.gnome.members; - license = with licenses; [ + maintainers = lib.teams.gnome.members; + license = with lib.licenses; [ lgpl21Only # Cambalache gpl2Only # tools ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ca/camingo-code/package.nix b/pkgs/by-name/ca/camingo-code/package.nix index 6fceebb1a6f9a..8218c79088d7e 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 94cf4bda22202..e687a9f232df8 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 = "An integrated modeling solution for BPMN, DMN and Forms based on bpmn.io"; - maintainers = teams.wdz.members; - license = licenses.mit; + maintainers = lib.teams.wdz.members; + 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 3dd97b7e8f64d..92f2499d5c126 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/candy-icons/package.nix b/pkgs/by-name/ca/candy-icons/package.nix index 99eeaf0c0e07c..b4ed85f23d4c4 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/cannelloni/package.nix b/pkgs/by-name/ca/cannelloni/package.nix index d86ea862d935a..d127787ceb226 100644 --- a/pkgs/by-name/ca/cannelloni/package.nix +++ b/pkgs/by-name/ca/cannelloni/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation (finalAttrs: { "-DSCTP_SUPPORT=${lib.boolToString sctpSupport}" ]; - meta = with lib; { + meta = { description = "SocketCAN over Ethernet tunnel"; mainProgram = "cannelloni"; homepage = "https://github.com/mguentner/cannelloni"; - platforms = platforms.linux; - license = licenses.gpl2Only; - maintainers = [ maintainers.samw ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.samw ]; }; }) diff --git a/pkgs/by-name/ca/canon-capt/package.nix b/pkgs/by-name/ca/canon-capt/package.nix index e2f77fee9c07b..389e7c898eda9 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/canta-theme/package.nix b/pkgs/by-name/ca/canta-theme/package.nix index 9a9d574c7425b..051fe619b8d9d 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 1a26d98de2532..f11fc7315fa20 100644 --- a/pkgs/by-name/ca/canto-daemon/package.nix +++ b/pkgs/by-name/ca/canto-daemon/package.nix @@ -21,7 +21,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 @@ -32,8 +32,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/capitaine-cursors-themed/package.nix b/pkgs/by-name/ca/capitaine-cursors-themed/package.nix index c2e39c68664b1..842bdbcd260c6 100644 --- a/pkgs/by-name/ca/capitaine-cursors-themed/package.nix +++ b/pkgs/by-name/ca/capitaine-cursors-themed/package.nix @@ -23,11 +23,11 @@ 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; - maintainers = [ maintainers.math-42 ]; + license = lib.licenses.lgpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.math-42 ]; }; } diff --git a/pkgs/by-name/ca/capitaine-cursors/package.nix b/pkgs/by-name/ca/capitaine-cursors/package.nix index b3e735687af85..b4fb0b200b731 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 d54eac703abb5..a2da244b676e8 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; [ bhipple solson ]; diff --git a/pkgs/by-name/ca/capnproto-rust/package.nix b/pkgs/by-name/ca/capnproto-rust/package.nix index 087dcf2745ac9..d4f9a13d5c5f1 100644 --- a/pkgs/by-name/ca/capnproto-rust/package.nix +++ b/pkgs/by-name/ca/capnproto-rust/package.nix @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage rec { capnproto ]; - 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 c32231997e7d5..4760a7c4ef243 100644 --- a/pkgs/by-name/ca/capnproto/package.nix +++ b/pkgs/by-name/ca/capnproto/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { homepage = "https://capnproto.org/"; description = "Cap'n Proto cerealization protocol"; longDescription = '' @@ -33,8 +33,8 @@ stdenv.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; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ca/caprice32/package.nix b/pkgs/by-name/ca/caprice32/package.nix index a5dde1c577e3d..2ec3970488114 100644 --- a/pkgs/by-name/ca/caprice32/package.nix +++ b/pkgs/by-name/ca/caprice32/package.nix @@ -59,12 +59,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 14e5ade875c80..794e5abcd4215 100644 --- a/pkgs/by-name/ca/captive-browser/package.nix +++ b/pkgs/by-name/ca/captive-browser/package.nix @@ -32,10 +32,10 @@ buildGoModule rec { "-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 30632cd00f744..6887436ceda70 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/carddav-util/package.nix b/pkgs/by-name/ca/carddav-util/package.nix index 482e564d20221..ed2c0acae466c 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 becc77735beda..0e8785fdd41e1 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 = "Cardo is a 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 96d9942b51584..ee5c21c41a8aa 100644 --- a/pkgs/by-name/ca/cargo-all-features/package.nix +++ b/pkgs/by-name/ca/cargo-all-features/package.nix @@ -15,14 +15,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-d69jj2FGptjndJG1tq3Fb/8F3kuFXN5otsYGhXYhhZg="; - 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; [ figsoda matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-apk/package.nix b/pkgs/by-name/ca/cargo-apk/package.nix index 090b22ed4384a..8ce4e1a4ecf11 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-rGn3MKbqIRWayarsgedIOhuTTl8lyRsRxn7BN5Id97w="; - 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 dc462acbf2080..df4b091d88807 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-bPbwUqw2IFwZTi7qFm1BQgGYBAb6OG8QSU8xTdx/1zM="; - 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-benchcmp/package.nix b/pkgs/by-name/ca/cargo-benchcmp/package.nix index d889310df580a..0098d441d90ec 100644 --- a/pkgs/by-name/ca/cargo-benchcmp/package.nix +++ b/pkgs/by-name/ca/cargo-benchcmp/package.nix @@ -31,14 +31,14 @@ rustPlatform.buildRustPackage rec { "--skip=different_input_colored" ]; - meta = with lib; { + meta = { description = "Small utility to compare Rust micro-benchmarks"; mainProgram = "cargo-benchcmp"; homepage = "https://github.com/BurntSushi/cargo-benchcmp"; - license = with licenses; [ + license = with lib.licenses; [ mit unlicense ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/ca/cargo-bisect-rustc/package.nix b/pkgs/by-name/ca/cargo-bisect-rustc/package.nix index 8a89387ca8483..31c8260b986a7 100644 --- a/pkgs/by-name/ca/cargo-bisect-rustc/package.nix +++ b/pkgs/by-name/ca/cargo-bisect-rustc/package.nix @@ -56,14 +56,14 @@ 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 ]; - maintainers = with maintainers; [ davidtwco ]; + maintainers = with lib.maintainers; [ davidtwco ]; }; } diff --git a/pkgs/by-name/ca/cargo-bitbake/package.nix b/pkgs/by-name/ca/cargo-bitbake/package.nix index 3836e251003a7..b4d25e09788ab 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-LYdQ0FLfCopY8kPTCmiW0Qyx6sHA4nlb+hK9hXezGLg="; - 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 90e307891cc3f..b59ca3a9f1df9 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-BBFLyMx1OPT2XAM6pofs2kV/3n3FrNu0Jkyr/Y3smnI="; - 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 4d18ec63ae603..88f904da620fb 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 5b7a44dc1df36..b39e280022909 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-XXiZ0qfAS+SXOsiRAU/xBDShpPOr18JSGQfLh3mNXQ4="; - 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 486d9096761e0..70d0d6667bccd 100644 --- a/pkgs/by-name/ca/cargo-bump/package.nix +++ b/pkgs/by-name/ca/cargo-bump/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.Security ]; - 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/package.nix b/pkgs/by-name/ca/cargo-bundle/package.nix index 213cc492d1b05..b32432044d85d 100644 --- a/pkgs/by-name/ca/cargo-bundle/package.nix +++ b/pkgs/by-name/ca/cargo-bundle/package.nix @@ -36,14 +36,14 @@ rustPlatform.buildRustPackage { wayland ]; - meta = with lib; { + meta = { description = "Wrap rust executables in OS-specific app bundles"; mainProgram = "cargo-bundle"; homepage = "https://github.com/burtonageo/cargo-bundle"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/ca/cargo-careful/package.nix b/pkgs/by-name/ca/cargo-careful/package.nix index 260b6d92c6437..72f4b87c90336 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-C+bnoYMO0Pjdgn4Q2Qb2COllMK0hnRNBwGd828o3AKE="; - 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; [ figsoda matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-chef/package.nix b/pkgs/by-name/ca/cargo-chef/package.nix index 9b29ab2b2b6aa..5dd5276c17fc5 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-RyPomJJbI67izQMuKf6fBSbM6Ar9Wm4oHYqnOnP/b8U="; - 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-criterion/package.nix b/pkgs/by-name/ca/cargo-criterion/package.nix index 96dda36ab0670..dee4c06f039e2 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-L/ILHKWlcYTkbEi2qDu7tf/3NHfTl6GhW0s+fUlsW08="; - 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-deb/package.nix b/pkgs/by-name/ca/cargo-deb/package.nix index 0b2902163bd5e..2f95bfd645444 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; [ Br1ght0ne matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-dephell/package.nix b/pkgs/by-name/ca/cargo-dephell/package.nix index 2cbdbafe3d036..686522d9c44e3 100644 --- a/pkgs/by-name/ca/cargo-dephell/package.nix +++ b/pkgs/by-name/ca/cargo-dephell/package.nix @@ -52,15 +52,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; [ figsoda matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-duplicates/package.nix b/pkgs/by-name/ca/cargo-duplicates/package.nix index 30e5f66b9b6a9..03afc55d50bb6 100644 --- a/pkgs/by-name/ca/cargo-duplicates/package.nix +++ b/pkgs/by-name/ca/cargo-duplicates/package.nix @@ -40,12 +40,12 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.Security ]; - 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; [ figsoda matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-espmonitor/package.nix b/pkgs/by-name/ca/cargo-espmonitor/package.nix index 4d81694e385e7..2e4149a18eca6 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-d0tN6NZiAd+RkRy941fIaVEw/moz6tkpL0rN8TZew3g="; - 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 3dda99f542f15..8c5dbbe55e680 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-fuzz/package.nix b/pkgs/by-name/ca/cargo-fuzz/package.nix index bd30411f16d27..f4e17e52d2c3f 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; [ ekleog matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-guppy/package.nix b/pkgs/by-name/ca/cargo-guppy/package.nix index 3b917cd6762c1..9a876cc6f01bf 100644 --- a/pkgs/by-name/ca/cargo-guppy/package.nix +++ b/pkgs/by-name/ca/cargo-guppy/package.nix @@ -38,14 +38,14 @@ rustPlatform.buildRustPackage rec { "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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/ca/cargo-i18n/package.nix b/pkgs/by-name/ca/cargo-i18n/package.nix index 19f5dfb9691c8..e72456703f11d 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-kcov/package.nix b/pkgs/by-name/ca/cargo-kcov/package.nix index aa2adfe12dfe7..442b0bf4921ab 100644 --- a/pkgs/by-name/ca/cargo-kcov/package.nix +++ b/pkgs/by-name/ca/cargo-kcov/package.nix @@ -27,12 +27,12 @@ rustPlatform.buildRustPackage rec { --prefix PATH : ${lib.makeBinPath [ kcov ]} ''; - meta = with lib; { + meta = { description = "Cargo subcommand to run kcov to get coverage report on Linux"; mainProgram = "cargo-kcov"; homepage = "https://github.com/kennytm/cargo-kcov"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ saschagrunert matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-license/package.nix b/pkgs/by-name/ca/cargo-license/package.nix index 6fdbead5c0a32..252913f6bbc60 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-ifw/n7eejUWUqhieDLojuO3xgosn28NnjAKkq/ZSLEI="; - 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 figsoda matthiasbeyer diff --git a/pkgs/by-name/ca/cargo-mobile2/package.nix b/pkgs/by-name/ca/cargo-mobile2/package.nix index 7907f9a5a16ee..190f387abee9b 100644 --- a/pkgs/by-name/ca/cargo-mobile2/package.nix +++ b/pkgs/by-name/ca/cargo-mobile2/package.nix @@ -50,13 +50,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 ca9e2e93f665e..277218e83613c 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-iQt6eTCcpzhFnrDkUmT4x7JX+Z7fWdW5ovbB/9Ui7Sw="; - 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-pgo/package.nix b/pkgs/by-name/ca/cargo-pgo/package.nix index 8ababffbe753d..5afe37e69accd 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 c5cc84ad31ec8..cdcb9c5666e55 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-play/package.nix b/pkgs/by-name/ca/cargo-play/package.nix index 955e84ef6249a..c0bdb45a031c9 100644 --- a/pkgs/by-name/ca/cargo-play/package.nix +++ b/pkgs/by-name/ca/cargo-play/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { "--skip=infer_override" ]; - meta = with lib; { + meta = { description = "Run your rust code without setting up cargo"; mainProgram = "cargo-play"; homepage = "https://github.com/fanzeyi/cargo-play"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/ca/cargo-profiler/package.nix b/pkgs/by-name/ca/cargo-profiler/package.nix index adceadd6ccc2e..ee0fed39c03aa 100644 --- a/pkgs/by-name/ca/cargo-profiler/package.nix +++ b/pkgs/by-name/ca/cargo-profiler/package.nix @@ -27,11 +27,11 @@ buildRustPackage rec { 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 4dc684154999c..13ea41d509a9b 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-sweep/package.nix b/pkgs/by-name/ca/cargo-sweep/package.nix index 98b23c9d0e703..15a1fd90fa4fd 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 faef07415d80d..6a6285fc14f9e 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-qm1xSmCOF/ZHhwbCaB0Df+Rcvrh2imMPSCS1Hxl0TaI="; - 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-unfmt/package.nix b/pkgs/by-name/ca/cargo-unfmt/package.nix index e8163bb02488c..005822fbeebe3 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 a5d457c20eb72..0a24024935538 100644 --- a/pkgs/by-name/ca/cargo-unused-features/package.nix +++ b/pkgs/by-name/ca/cargo-unused-features/package.nix @@ -41,11 +41,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; [ figsoda matthiasbeyer ]; diff --git a/pkgs/by-name/ca/cargo-valgrind/package.nix b/pkgs/by-name/ca/cargo-valgrind/package.nix index 3ac7053fd4c6c..5b3fa9301262e 100644 --- a/pkgs/by-name/ca/cargo-valgrind/package.nix +++ b/pkgs/by-name/ca/cargo-valgrind/package.nix @@ -36,15 +36,15 @@ rustPlatform.buildRustPackage rec { "--skip issue74" ]; - 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 761e33f5caca9..cf731b1cc1660 100644 --- a/pkgs/by-name/ca/cargo-vibe/package.nix +++ b/pkgs/by-name/ca/cargo-vibe/package.nix @@ -40,11 +40,11 @@ rustPlatform.buildRustPackage rec { ] ); - 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 2bbdfdeb40a52..465df4cc80955 100644 --- a/pkgs/by-name/ca/cargo-wasi/package.nix +++ b/pkgs/by-name/ca/cargo-wasi/package.nix @@ -31,11 +31,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-wipe/package.nix b/pkgs/by-name/ca/cargo-wipe/package.nix index 331cc9e18e602..7c119edf21b03 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-xbuild/package.nix b/pkgs/by-name/ca/cargo-xbuild/package.nix index dec26b666cd7d..15a479ace9553 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-tyPhKWDSDNxQy+vpWNS5VP5D8TkUR7MJSAlG8wZsDy4="; - 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 58a5aee9e9369..345ce6b0a9566 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-uAQD1SUo8W5TtnZyprOFGztpOqvjPEDddA6CBPUN74g="; - 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 f2aac9a191809..24eeb34c857f9 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-ncRELlbT8Dy8huLgZrroRWohCLeN5cRjMWrIW4JNcCM="; - 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 5383cb72e973a..354ae21e67257 100644 --- a/pkgs/by-name/ca/caribou/package.nix +++ b/pkgs/by-name/ca/caribou/package.nix @@ -102,12 +102,12 @@ 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; }; } diff --git a/pkgs/by-name/ca/caroline/package.nix b/pkgs/by-name/ca/caroline/package.nix index 662c228f15bb9..144b4304c972c 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 = " A 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 f7a3572ba622c..15d52616d8ec7 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 9977033e23f32..7bbfbeb89e1a4 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 2b08d81fba073..150ae2061e6f4 100644 --- a/pkgs/by-name/ca/castero/package.nix +++ b/pkgs/by-name/ca/castero/package.nix @@ -65,12 +65,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/castget/package.nix b/pkgs/by-name/ca/castget/package.nix index 5d23ba1edc10a..a2994bc1f2cc8 100644 --- a/pkgs/by-name/ca/castget/package.nix +++ b/pkgs/by-name/ca/castget/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: { pkg-config ]; - meta = with lib; { + meta = { description = "Simple, command-line based RSS enclosure downloader"; mainProgram = "castget"; longDescription = '' @@ -49,8 +49,8 @@ stdenv.mkDerivation (finalAttrs: { primarily intended for automatic, unattended downloading of podcasts. ''; homepage = "https://castget.johndal.com/"; - maintainers = with maintainers; [ doronbehar ]; - license = licenses.gpl2; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ doronbehar ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ca/castopod/package.nix b/pkgs/by-name/ca/castopod/package.nix index 72bc5d4025574..ff97a11c338a0 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 2acd9a42e4357..f5da86ebca027 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 8de42b4c6d172..2a89ea9b81e71 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/catch/package.nix b/pkgs/by-name/ca/catch/package.nix index 96bb28887d196..d680ab5c10324 100644 --- a/pkgs/by-name/ca/catch/package.nix +++ b/pkgs/by-name/ca/catch/package.nix @@ -37,13 +37,13 @@ stdenv.mkDerivation rec { doCheck = true; checkTarget = "test"; - 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; - maintainers = with maintainers; [ + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ edwtjo ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/ca/catclock/package.nix b/pkgs/by-name/ca/catclock/package.nix index 4d2d81aa282b3..da0b0a5445dc7 100644 --- a/pkgs/by-name/ca/catclock/package.nix +++ b/pkgs/by-name/ca/catclock/package.nix @@ -40,12 +40,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 998d3e74841e4..01e4ee58488f9 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 657e7bbd79009..f2b98b3d86c43 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 f6c3becb41fd1..e0ad1a21cec0c 100644 --- a/pkgs/by-name/ca/catdvi/package.nix +++ b/pkgs/by-name/ca/catdvi/package.nix @@ -92,10 +92,10 @@ stdenv.mkDerivation (finalAttrs: { ln -s ${tex}/share/texmf-var $out/share/texmf ''; - meta = with lib; { + meta = { homepage = "http://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 2699bd992e70f..dc680d90228ff 100644 --- a/pkgs/by-name/ca/catfs/package.nix +++ b/pkgs/by-name/ca/catfs/package.nix @@ -36,12 +36,12 @@ rustPlatform.buildRustPackage rec { $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/catgirl/package.nix b/pkgs/by-name/ca/catgirl/package.nix index cd6ba40d1c4f2..921a0552bcb88 100644 --- a/pkgs/by-name/ca/catgirl/package.nix +++ b/pkgs/by-name/ca/catgirl/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://git.causal.agency/catgirl/about/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; description = "TLS-only terminal IRC client"; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "catgirl"; - maintainers = with maintainers; [ xfnw ]; + maintainers = with lib.maintainers; [ xfnw ]; }; } diff --git a/pkgs/by-name/ca/catimg/package.nix b/pkgs/by-name/ca/catimg/package.nix index 32d92fa658468..5d5b63f1159c6 100644 --- a/pkgs/by-name/ca/catimg/package.nix +++ b/pkgs/by-name/ca/catimg/package.nix @@ -21,12 +21,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 fa7334bdd6b43..bfbfce9976fb5 100644 --- a/pkgs/by-name/ca/catnip-gtk4/package.nix +++ b/pkgs/by-name/ca/catnip-gtk4/package.nix @@ -40,11 +40,11 @@ buildGoModule { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "GTK4 frontend for catnip"; homepage = "https://github.com/diamondburned/catnip-gtk4"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "catnip-gtk4"; }; } diff --git a/pkgs/by-name/ca/catppuccin-kde/package.nix b/pkgs/by-name/ca/catppuccin-kde/package.nix index 78ab534f82969..fc1392c3cf883 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 b5baf4d614ed2..cfe809aa0fd6a 100644 --- a/pkgs/by-name/ca/catppuccin-papirus-folders/package.nix +++ b/pkgs/by-name/ca/catppuccin-papirus-folders/package.nix @@ -68,11 +68,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/catppuccin-qt5ct/package.nix b/pkgs/by-name/ca/catppuccin-qt5ct/package.nix index d0b4c53809319..af92af4b3673f 100644 --- a/pkgs/by-name/ca/catppuccin-qt5ct/package.nix +++ b/pkgs/by-name/ca/catppuccin-qt5ct/package.nix @@ -21,11 +21,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Soothing pastel theme for qt5ct"; homepage = "https://github.com/catppuccin/qt5ct"; - license = licenses.mit; - maintainers = with maintainers; [ pluiedev ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pluiedev ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ca/catt/package.nix b/pkgs/by-name/ca/catt/package.nix index 433b60f53a362..99a311df8248a 100644 --- a/pkgs/by-name/ca/catt/package.nix +++ b/pkgs/by-name/ca/catt/package.nix @@ -61,10 +61,10 @@ python.pkgs.buildPythonApplication rec { "catt" ]; - meta = with lib; { + meta = { description = "Tool to send media from online sources to Chromecast devices"; homepage = "https://github.com/skorokithakis/catt"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; mainProgram = "catt"; }; diff --git a/pkgs/by-name/ca/cauwugo/package.nix b/pkgs/by-name/ca/cauwugo/package.nix index 45902062bc141..58dbf9113d805 100644 --- a/pkgs/by-name/ca/cauwugo/package.nix +++ b/pkgs/by-name/ca/cauwugo/package.nix @@ -27,14 +27,14 @@ 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/ca/cava/package.nix b/pkgs/by-name/ca/cava/package.nix index c0a88df49de8d..7514182420ced 100644 --- a/pkgs/by-name/ca/cava/package.nix +++ b/pkgs/by-name/ca/cava/package.nix @@ -66,15 +66,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 f6afb01a2e429..592ac29c8c8f6 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 69d563edb4bae..7d52c75861296 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; - maintainers = [ maintainers.domenkozar ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.domenkozar ]; }; } diff --git a/pkgs/by-name/cb/cbfmt/package.nix b/pkgs/by-name/cb/cbfmt/package.nix index 9f803cfbfd83d..eca72323dfd6e 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 7e7c99986fabf..3fd6296ddc427 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 = " An 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = with platforms; unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/cb/cbonsai/package.nix b/pkgs/by-name/cb/cbonsai/package.nix index bad317b1514a7..0ad432eb84435 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 4ff0cb33fcad1..825f2e1ec8af4 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/cc/cc-tool/package.nix b/pkgs/by-name/cc/cc-tool/package.nix index 941c30a56e93e..74dcb0b1e22d5 100644 --- a/pkgs/by-name/cc/cc-tool/package.nix +++ b/pkgs/by-name/cc/cc-tool/package.nix @@ -37,15 +37,15 @@ stdenv.mkDerivation rec { 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 e6bc0e56a7d3b..eb3f6ffcccdbf 100644 --- a/pkgs/by-name/cc/cc1541/package.nix +++ b/pkgs/by-name/cc/cc1541/package.nix @@ -30,12 +30,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/cc2538-bsl/package.nix b/pkgs/by-name/cc/cc2538-bsl/package.nix index 10a77623d62a9..13aa3b90791de 100644 --- a/pkgs/by-name/cc/cc2538-bsl/package.nix +++ b/pkgs/by-name/cc/cc2538-bsl/package.nix @@ -38,11 +38,11 @@ python3Packages.buildPythonApplication rec { mv $out/bin/cc2538-bsl.py $out/bin/cc2538-bsl ''; - meta = with lib; { + meta = { homepage = "https://github.com/JelmerT/cc2538-bsl"; description = "Flash TI SimpleLink chips (CC2538, CC13xx, CC26xx) over serial"; - license = licenses.bsd3; - maintainers = with maintainers; [ lorenz ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lorenz ]; mainProgram = "cc2538-bsl"; }; } diff --git a/pkgs/by-name/cc/ccd2iso/package.nix b/pkgs/by-name/cc/ccd2iso/package.nix index 60b863bddbcfd..486ca1858865e 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/ccid/package.nix b/pkgs/by-name/cc/ccid/package.nix index 9da29d3b9c45a..89a9da9ca2636 100644 --- a/pkgs/by-name/cc/ccid/package.nix +++ b/pkgs/by-name/cc/ccid/package.nix @@ -75,11 +75,11 @@ stdenv.mkDerivation rec { [ -f $out/pcsc/drivers/serial/libccidtwin.so ] ''; - 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/cconv/package.nix b/pkgs/by-name/cc/cconv/package.nix index cc739c86ce3be..092aad782b18d 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/ccze/package.nix b/pkgs/by-name/cc/ccze/package.nix index 88c9ee31abe93..79aeb2f405386 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/cddl/package.nix b/pkgs/by-name/cd/cddl/package.nix index 5f67e2c4b83f0..afcf72b028a0b 100644 --- a/pkgs/by-name/cd/cddl/package.nix +++ b/pkgs/by-name/cd/cddl/package.nix @@ -32,15 +32,15 @@ bundlerApp rec { 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 a745c3a5b42e1..e1c61ff7ab9df 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; - maintainers = teams.sage.members; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.sage.members; + platforms = lib.platforms.unix; homepage = "https://www.inf.ethz.ch/personal/fukudak/cdd_home/index.html"; }; } diff --git a/pkgs/by-name/cd/cde/package.nix b/pkgs/by-name/cd/cde/package.nix index d61c888d482bc..889b905928c65 100644 --- a/pkgs/by-name/cd/cde/package.nix +++ b/pkgs/by-name/cd/cde/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { install -t $out/bin cde cde-exec ''; - meta = with lib; { + meta = { homepage = "https://github.com/usnistgov/corr-CDE"; description = "Packaging tool for building portable packages"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.rlupton20 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.rlupton20 ]; + platforms = lib.platforms.linux; # error: architecture aarch64 is not supported by bundled strace badPlatforms = [ "aarch64-linux" ]; }; diff --git a/pkgs/by-name/cd/cdesktopenv/package.nix b/pkgs/by-name/cd/cdesktopenv/package.nix index 55f2ad40ac74a..236033814bcc5 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 3cf014ad311d3..136db7d8ff1af 100644 --- a/pkgs/by-name/cd/cdi2iso/package.nix +++ b/pkgs/by-name/cd/cdi2iso/package.nix @@ -22,12 +22,12 @@ 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; - maintainers = with maintainers; [ hrdinka ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ hrdinka ]; + platforms = lib.platforms.all; mainProgram = "cdi2iso"; }; } diff --git a/pkgs/by-name/cd/cdo/package.nix b/pkgs/by-name/cd/cdo/package.nix index 6fb2fb68abe74..ead8b2d3b450b 100644 --- a/pkgs/by-name/cd/cdo/package.nix +++ b/pkgs/by-name/cd/cdo/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { ++ lib.optional enable_all_static "--enable-all-static" ++ lib.optional enable_cxx "--enable-cxx"; - meta = with lib; { + meta = { description = "Collection of command line Operators to manipulate and analyse Climate and NWP model Data"; mainProgram = "cdo"; longDescription = '' @@ -50,8 +50,8 @@ stdenv.mkDerivation rec { There are more than 600 operators available. ''; homepage = "https://code.mpimet.mpg.de/projects/cdo/"; - license = licenses.bsd3; - maintainers = [ maintainers.ltavard ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.ltavard ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/cd/cdpr/package.nix b/pkgs/by-name/cd/cdpr/package.nix index 8ccf2b1788a47..de76fcbffd2ca 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 72d3479d45123..628d558a7a2e3 100644 --- a/pkgs/by-name/cd/cdwe/package.nix +++ b/pkgs/by-name/cd/cdwe/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-V2eWVoRtfjHLe2AypYekUFzMnuV8RYU9Pb7Q1U3fwp4="; - 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "cdwe"; }; } diff --git a/pkgs/by-name/cd/cdxgen/package.nix b/pkgs/by-name/cd/cdxgen/package.nix index bcca4ac226ed9..4c9da903383f2 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 cf7c9707744f0..bcb02f0139e6f 100644 --- a/pkgs/by-name/ce/cegui/package.nix +++ b/pkgs/by-name/ce/cegui/package.nix @@ -60,11 +60,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/celf/package.nix b/pkgs/by-name/ce/celf/package.nix index 7c485c9aab615..ba4bdfe30a031 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/cen64/package.nix b/pkgs/by-name/ce/cen64/package.nix index 1a2450ee63040..ba33f31a61a17 100644 --- a/pkgs/by-name/ce/cen64/package.nix +++ b/pkgs/by-name/ce/cen64/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Cycle-Accurate Nintendo 64 Emulator"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://github.com/n64dev/cen64"; - maintainers = [ maintainers._414owen ]; + maintainers = [ lib.maintainers._414owen ]; platforms = [ "x86_64-linux" ]; mainProgram = "cen64"; }; diff --git a/pkgs/by-name/ce/centerpiece/package.nix b/pkgs/by-name/ce/centerpiece/package.nix index 867b4d6ddcb75..41ff8a160431d 100644 --- a/pkgs/by-name/ce/centerpiece/package.nix +++ b/pkgs/by-name/ce/centerpiece/package.nix @@ -57,15 +57,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/certgraph/package.nix b/pkgs/by-name/ce/certgraph/package.nix index 7f5eac96c4e52..bc3d00c341bce 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 d2a57932b9924..e5b81d6593f02 100644 --- a/pkgs/by-name/ce/certi/package.nix +++ b/pkgs/by-name/ce/certi/package.nix @@ -30,11 +30,11 @@ python3.pkgs.buildPythonApplication rec { "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 bf5286c1a6936..3eacac35d411a 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-G9YpMF4qyL8eJPnai81ihVTDK9E4meKxdpk+rjISnIM="; - 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 073c6ce3ed9c5..ae59d12da9e26 100644 --- a/pkgs/by-name/ce/certinfo/package.nix +++ b/pkgs/by-name/ce/certinfo/package.nix @@ -28,11 +28,11 @@ buildGo123Module 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/certsync/package.nix b/pkgs/by-name/ce/certsync/package.nix index 0aa95f40d137c..fefbeb8dcba3c 100644 --- a/pkgs/by-name/ce/certsync/package.nix +++ b/pkgs/by-name/ce/certsync/package.nix @@ -29,11 +29,11 @@ python3.pkgs.buildPythonApplication rec { "certsync" ]; - meta = with lib; { + meta = { description = "Dump NTDS with golden certificates and UnPAC the hash"; homepage = "https://github.com/zblurx/certsync"; - 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 a146ef653f648..6c8515e3ab345 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 2ad714e935ff1..1c1ec3014a904 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 044a7f7e602b5..cd53ccbdc2d92 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 47f49ab1b817a..d171fca496bde 100644 --- a/pkgs/by-name/cf/cf-vault/package.nix +++ b/pkgs/by-name/cf/cf-vault/package.nix @@ -29,13 +29,13 @@ buildGoModule rec { command = "cf-vault version"; }; - meta = with lib; { + meta = { description = '' A 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 77077e01acb9c..f8fc9f9e64480 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 8ee036e18f1af..e23f690ea23f4 100644 --- a/pkgs/by-name/cf/cfdyndns/package.nix +++ b/pkgs/by-name/cf/cfdyndns/package.nix @@ -23,15 +23,15 @@ 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 nrdxp ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/cf/cfm/package.nix b/pkgs/by-name/cf/cfm/package.nix index 06c51f957769c..097de37681f0c 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; - maintainers = with maintainers; [ lom ]; - platforms = platforms.all; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ lom ]; + 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 2ec26c040b69b..1af0046cc3d6b 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-NltvO5ACf8TsE9CgC1jAXx04/T/kHSZLxXJ4zhA5DGo="; - meta = with lib; { + meta = { homepage = "https://github.com/dominikwilkowski/cfonts"; description = "A 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/cfs-zen-tweaks/package.nix b/pkgs/by-name/cf/cfs-zen-tweaks/package.nix index 509978486d46f..61f2c5667e352 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/cfspeedtest/package.nix b/pkgs/by-name/cf/cfspeedtest/package.nix index 5ab305fa5072b..50278e548ec05 100644 --- a/pkgs/by-name/cf/cfspeedtest/package.nix +++ b/pkgs/by-name/cf/cfspeedtest/package.nix @@ -18,12 +18,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-gckl2WHpuu7Gcubx/VEpHNW7jT76r9QHaAociQh+Zrc="; - meta = with lib; { + meta = { description = "Unofficial CLI for speed.cloudflare.com"; homepage = "https://github.com/code-inflation/cfspeedtest"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; broken = stdenv.hostPlatform.isDarwin; - maintainers = with maintainers; [ colemickens ]; + maintainers = with lib.maintainers; [ colemickens ]; mainProgram = "cfspeedtest"; }; } diff --git a/pkgs/by-name/cg/cg3/package.nix b/pkgs/by-name/cg/cg3/package.nix index 3cfe7de5f09f2..fc0f2b7a8da1d 100644 --- a/pkgs/by-name/cg/cg3/package.nix +++ b/pkgs/by-name/cg/cg3/package.nix @@ -57,12 +57,12 @@ let # - Enable tcmalloc unless darwin? # - Enable python bindings? - meta = with lib; { + meta = { homepage = "https://github.com/GrammarSoft/cg3"; description = "Constraint Grammar interpreter, compiler and applicator vislcg3"; - maintainers = with maintainers; [ unhammer ]; - license = licenses.gpl3Plus; - platforms = platforms.all; + maintainers = with lib.maintainers; [ unhammer ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; }; }; diff --git a/pkgs/by-name/cg/cgiserver/package.nix b/pkgs/by-name/cg/cgiserver/package.nix index f26d44a1d0b48..31feedaf14a16 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 3f4ebde2354ed..5e090e2129c4d 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 69d05316785a1..133eed4ba171c 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 2104e05a834b0..8e96b24e03102 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/cgt-calc/package.nix b/pkgs/by-name/cg/cgt-calc/package.nix index 23a33881ab633..ee7aeb9813c36 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 a9ee641df1d31..4a27cd58c5968 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 3e416d14f73b4..cebca18c74f03 100644 --- a/pkgs/by-name/cg/cgui/package.nix +++ b/pkgs/by-name/cg/cgui/package.nix @@ -32,10 +32,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/changetower/package.nix b/pkgs/by-name/ch/changetower/package.nix index e3496e4fe279f..f3e10234483f4 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 067d009c0fbb2..c235ac0ff1fae 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/charls/package.nix b/pkgs/by-name/ch/charls/package.nix index 4822f0d7644b7..51629987ffe17 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/chart-testing/package.nix b/pkgs/by-name/ch/chart-testing/package.nix index bc580ea44807a..392c0bfc1da97 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/chase/package.nix b/pkgs/by-name/ch/chase/package.nix index 240e9a85bebff..a22ff96a6180b 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 3e360e95dca73..d6575b16ba647 100644 --- a/pkgs/by-name/ch/chatblade/package.nix +++ b/pkgs/by-name/ch/chatblade/package.nix @@ -26,11 +26,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 61982d798fdb6..2aee0a754778a 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-retrieval-plugin/package.nix b/pkgs/by-name/ch/chatgpt-retrieval-plugin/package.nix index 535d6808cc466..5438247b7fb46 100644 --- a/pkgs/by-name/ch/chatgpt-retrieval-plugin/package.nix +++ b/pkgs/by-name/ch/chatgpt-retrieval-plugin/package.nix @@ -63,11 +63,11 @@ python3Packages.buildPythonApplication { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { broken = true; # dependencies are not up to date, the project doesn't look well maintained, this doesn't look like it's going in the right direction. I'm happy to handle maintainership to whoever wants to. homepage = "https://github.com/openai/chatgpt-retrieval-plugin"; description = "Tool to search and find personal or work documents by asking questions in everyday language"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/by-name/ch/chatgpt-shell-cli/package.nix b/pkgs/by-name/ch/chatgpt-shell-cli/package.nix index f18028cac42ab..bac243e8f0948 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 909e13940a6ab..bb67e27ffac54 100644 --- a/pkgs/by-name/ch/chatty/package.nix +++ b/pkgs/by-name/ch/chatty/package.nix @@ -81,13 +81,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.rev}/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 0be994cdda62c..4af922aa77bdf 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 6d964df186b1c..a1208e231e647 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/checksec/package.nix b/pkgs/by-name/ch/checksec/package.nix index c479c7f145104..e52c2819dc73f 100644 --- a/pkgs/by-name/ch/checksec/package.nix +++ b/pkgs/by-name/ch/checksec/package.nix @@ -96,13 +96,13 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Tool for checking security bits on executables"; mainProgram = "checksec"; homepage = "https://www.trapkit.de/tools/checksec/"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ thoughtpolice globin ]; diff --git a/pkgs/by-name/ch/cheesecutter/package.nix b/pkgs/by-name/ch/cheesecutter/package.nix index ef7037ca43bef..ea0cb02780ad0 100644 --- a/pkgs/by-name/ch/cheesecutter/package.nix +++ b/pkgs/by-name/ch/cheesecutter/package.nix @@ -61,15 +61,15 @@ stdenv.mkDerivation rec { 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 940a74cfb2dea..d57fa964dea3f 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/cherry/package.nix b/pkgs/by-name/ch/cherry/package.nix index da418ecee128c..f06c9d4627bdd 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/chess-tui/package.nix b/pkgs/by-name/ch/chess-tui/package.nix index 9dee8dd57e3f8..a28cc97cd8540 100644 --- a/pkgs/by-name/ch/chess-tui/package.nix +++ b/pkgs/by-name/ch/chess-tui/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-RUnT5b9pBcopTPT/1J48xZ4pfn3C0mIuYTDvgf3zvn0="; - meta = with lib; { + meta = { description = "Chess TUI implementation in rust"; homepage = "https://github.com/thomas-mauran/chess-tui"; - maintainers = with maintainers; [ ByteSudoer ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ ByteSudoer ]; + license = lib.licenses.mit; mainProgram = "chess-tui"; }; } diff --git a/pkgs/by-name/ch/chez-matchable/package.nix b/pkgs/by-name/ch/chez-matchable/package.nix index 1b595f432ce59..667797ec38a35 100644 --- a/pkgs/by-name/ch/chez-matchable/package.nix +++ b/pkgs/by-name/ch/chez-matchable/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { doCheck = false; - meta = with lib; { + meta = { description = "This is a 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 a12f7a7a06d83..e1c85bbe62e90 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 = "This is a 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; }; } diff --git a/pkgs/by-name/ch/chez-scmutils/package.nix b/pkgs/by-name/ch/chez-scmutils/package.nix index 853a4aa1a72d5..f94062bf76dd1 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 = "This is a 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 5b1e72851ba65..1079950de668b 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 9e27bce8dcda6..30f004669f1a9 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 f7aa1733c4749..4347b1e94b0e5 100644 --- a/pkgs/by-name/ch/chkcrontab/package.nix +++ b/pkgs/by-name/ch/chkcrontab/package.nix @@ -15,10 +15,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/chkrootkit/package.nix b/pkgs/by-name/ch/chkrootkit/package.nix index c4f7a017803eb..3b0ca7a27d6a1 100644 --- a/pkgs/by-name/ch/chkrootkit/package.nix +++ b/pkgs/by-name/ch/chkrootkit/package.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation rec { --prefix PATH : "${lib.makeBinPath [ binutils-unwrapped ]}" ''; - meta = with lib; { + meta = { description = "Locally checks for signs of a rootkit"; homepage = "https://www.chkrootkit.org/"; - license = licenses.bsd2; - platforms = with platforms; linux; + license = lib.licenses.bsd2; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/ch/chmlib/package.nix b/pkgs/by-name/ch/chmlib/package.nix index 6c3ce72e35760..52bd10c62cd2c 100644 --- a/pkgs/by-name/ch/chmlib/package.nix +++ b/pkgs/by-name/ch/chmlib/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration"; }; - 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 603120053e27a..0ca5921d92af2 100644 --- a/pkgs/by-name/ch/chntpw/package.nix +++ b/pkgs/by-name/ch/chntpw/package.nix @@ -69,11 +69,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 8b6041fbb844c..de51dc4422a92 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 86e909d003856..5c36292541013 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 rec { 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 rec { 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 179f53ad75b9d..b1df3f7731dd3 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-PnY1yk9SvAvpsQ/QzTQuuBmvbEfd3yKcNcTU8LZVhsE="; - 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 5d75efb611d81..ccb60a82edf13 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 3eced1b2fa2fa..5bac1e3a98000 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-kick/package.nix b/pkgs/by-name/ch/chow-kick/package.nix index 21291574d7c64..622f9039dc0d8 100644 --- a/pkgs/by-name/ch/chow-kick/package.nix +++ b/pkgs/by-name/ch/chow-kick/package.nix @@ -97,12 +97,12 @@ stdenv.mkDerivation (finalAttrs: { cp ChowKick_artefacts/Release/Standalone/ChowKick $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/Chowdhury-DSP/ChowKick"; description = "Kick synthesizer based on old-school drum machine circuits"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ magnetophon ]; - platforms = platforms.linux; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ magnetophon ]; + platforms = lib.platforms.linux; mainProgram = "ChowKick"; }; }) diff --git a/pkgs/by-name/ch/chow-phaser/package.nix b/pkgs/by-name/ch/chow-phaser/package.nix index bce17eeef4a95..f79a9169b750a 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 a0fb380ed7917..6002cc75fd55a 100644 --- a/pkgs/by-name/ch/chow-tape-model/package.nix +++ b/pkgs/by-name/ch/chow-tape-model/package.nix @@ -123,12 +123,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 379fd6384bdcd..3062f9817b593 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/chromatic/package.nix b/pkgs/by-name/ch/chromatic/package.nix index 32a518b36ce99..52a80ea353ef2 100644 --- a/pkgs/by-name/ch/chromatic/package.nix +++ b/pkgs/by-name/ch/chromatic/package.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { libpulseaudio ]; - meta = with lib; { + meta = { description = "Fine-tune your instruments"; longDescription = '' Fine-tune your instruments with Chromatic. Chromatic @@ -69,9 +69,9 @@ stdenv.mkDerivation rec { Requires PulseAudio or PipeWire. ''; homepage = "https://github.com/nate-xyz/chromatic"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "chromatic"; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ch/chrome-export/package.nix b/pkgs/by-name/ch/chrome-export/package.nix index 0825613aad594..4c225d2b0d348 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 dffa9617c7f66..5c72612c13e52 100644 --- a/pkgs/by-name/ch/chromium-bsu/package.nix +++ b/pkgs/by-name/ch/chromium-bsu/package.nix @@ -57,13 +57,13 @@ 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.artistic1; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.unix; }; } # TODO [ AndersonTorres ]: joystick; gothic uralic font diff --git a/pkgs/by-name/ch/chrpath/package.nix b/pkgs/by-name/ch/chrpath/package.nix index f1834792006be..51007a25d2e90 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/cht-sh/package.nix b/pkgs/by-name/ch/cht-sh/package.nix index 7c7828976d452..2378d7f63f732 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/ci-edit/package.nix b/pkgs/by-name/ci/ci-edit/package.nix index 02963c7e382cf..2cbf3566155ab 100644 --- a/pkgs/by-name/ci/ci-edit/package.nix +++ b/pkgs/by-name/ci/ci-edit/package.nix @@ -30,12 +30,12 @@ python3.pkgs.buildPythonApplication { pythonImportsCheck = [ "app" ]; - meta = with lib; { + meta = { description = "Terminal text editor with mouse support and ctrl+Q to quit"; homepage = "https://github.com/google/ci_edit"; - license = licenses.asl20; - maintainers = with maintainers; [ katexochen ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ katexochen ]; mainProgram = "ci_edit"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ci/ciao/package.nix b/pkgs/by-name/ci/ciao/package.nix index 025ec757b86b5..627f8d1a5d405 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 fef7e630400d7..56b8a7fc468dd 100644 --- a/pkgs/by-name/ci/cicero-tui/package.nix +++ b/pkgs/by-name/ci/cicero-tui/package.nix @@ -37,12 +37,12 @@ rustPlatform.buildRustPackage rec { }; }; - 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 c4754a06da6bd..3b31bce8d8513 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 5626be5d1d91b..5182644c5bc7b 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/ciel/package.nix b/pkgs/by-name/ci/ciel/package.nix index d214b62665205..6028abafb40de 100644 --- a/pkgs/by-name/ci/ciel/package.nix +++ b/pkgs/by-name/ci/ciel/package.nix @@ -63,12 +63,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 0deb89ea46bcb..2535f247af9a1 100644 --- a/pkgs/by-name/ci/cifs-utils/package.nix +++ b/pkgs/by-name/ci/cifs-utils/package.nix @@ -47,10 +47,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 83a58b6bc3511..8d9cf0954bbe0 100644 --- a/pkgs/by-name/ci/ciftilib/package.nix +++ b/pkgs/by-name/ci/ciftilib/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { doCheck = true; - 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; - license = licenses.bsd2; + maintainers = with lib.maintainers; [ bcdarwin ]; + platforms = lib.platforms.unix; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/by-name/ci/cinelerra/package.nix b/pkgs/by-name/ci/cinelerra/package.nix index adbaf1de6f806..a61ef707b1738 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-common/package.nix b/pkgs/by-name/ci/cinnamon-common/package.nix index 09ddfca9743ac..82f72e74509a5 100644 --- a/pkgs/by-name/ci/cinnamon-common/package.nix +++ b/pkgs/by-name/ci/cinnamon-common/package.nix @@ -208,11 +208,11 @@ stdenv.mkDerivation rec { ]; }; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/cinnamon"; description = "Cinnamon desktop environment"; - license = [ licenses.gpl2 ]; - platforms = platforms.linux; - maintainers = teams.cinnamon.members; + license = [ lib.licenses.gpl2 ]; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/ci/cinnamon-control-center/package.nix b/pkgs/by-name/ci/cinnamon-control-center/package.nix index 4bceb08d110f8..6b20298d1a042 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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/ci/cinnamon-session/package.nix b/pkgs/by-name/ci/cinnamon-session/package.nix index d56661073c6c0..fa13d66aab4a3 100644 --- a/pkgs/by-name/ci/cinnamon-session/package.nix +++ b/pkgs/by-name/ci/cinnamon-session/package.nix @@ -102,11 +102,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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/ci/cinnamon-settings-daemon/package.nix b/pkgs/by-name/ci/cinnamon-settings-daemon/package.nix index f74b0f8f40865..3da8c4f305b91 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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/ci/cinnamon-translations/package.nix b/pkgs/by-name/ci/cinnamon-translations/package.nix index 6243ce3851cd9..f34ad35d21795 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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/ci/circle-flags/package.nix b/pkgs/by-name/ci/circle-flags/package.nix index 5f7bd2ece3032..97411b6e3a011 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 111cc27f1e296..90faedc857fdf 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/circumflex/package.nix b/pkgs/by-name/ci/circumflex/package.nix index 926a660f0a663..24dfaa2ed9b2b 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/cirrus-cli/package.nix b/pkgs/by-name/ci/cirrus-cli/package.nix index 0449246e01963..adac477572ea3 100644 --- a/pkgs/by-name/ci/cirrus-cli/package.nix +++ b/pkgs/by-name/ci/cirrus-cli/package.nix @@ -34,11 +34,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 27b88bc477dfc..24a7b5855d356 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/cista/package.nix b/pkgs/by-name/ci/cista/package.nix index 7bc5590feddb2..45c49cfb37fa4 100644 --- a/pkgs/by-name/ci/cista/package.nix +++ b/pkgs/by-name/ci/cista/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DCISTA_INSTALL=ON" ]; - meta = with lib; { + meta = { homepage = "https://cista.rocks"; description = "Simple, high-performance, zero-copy C++ serialization & reflection library"; - license = licenses.mit; - maintainers = [ maintainers.sigmanificient ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sigmanificient ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ci/citations/package.nix b/pkgs/by-name/ci/citations/package.nix index b030947b02385..01b048c3a3a5a 100644 --- a/pkgs/by-name/ci/citations/package.nix +++ b/pkgs/by-name/ci/citations/package.nix @@ -90,12 +90,12 @@ 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 ] ++ lib.teams.gnome-circle.members; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ benediktbroich ] ++ lib.teams.gnome-circle.members; + platforms = lib.platforms.unix; mainProgram = "citations"; }; }) diff --git a/pkgs/by-name/ci/civo/package.nix b/pkgs/by-name/ci/civo/package.nix index 4ad8cbf64a143..8e95e761e36b9 100644 --- a/pkgs/by-name/ci/civo/package.nix +++ b/pkgs/by-name/ci/civo/package.nix @@ -42,11 +42,11 @@ buildGoModule rec { --zsh <($out/bin/civo completion zsh) ''; - meta = with lib; { + meta = { description = "CLI for interacting with Civo resources"; mainProgram = "civo"; homepage = "https://github.com/civo/cli"; - license = licenses.asl20; - maintainers = with maintainers; [ techknowlogick ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ techknowlogick ]; }; } diff --git a/pkgs/by-name/cj/cjdns-tools/package.nix b/pkgs/by-name/cj/cjdns-tools/package.nix index 9e68412928e66..0e75a86c2b386 100644 --- a/pkgs/by-name/cj/cjdns-tools/package.nix +++ b/pkgs/by-name/cj/cjdns-tools/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation { cp -r node_modules $out/node_modules ''; - meta = with lib; { + meta = { homepage = "https://github.com/cjdelisle/cjdns"; description = "Tools for cjdns managment"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "cjdns-tools"; }; } diff --git a/pkgs/by-name/cj/cjdns/package.nix b/pkgs/by-name/cj/cjdns/package.nix index b08ab4d6bb857..8e39e9873bffb 100644 --- a/pkgs/by-name/cj/cjdns/package.nix +++ b/pkgs/by-name/cj/cjdns/package.nix @@ -69,12 +69,12 @@ rustPlatform.buildRustPackage rec { passthru.tests.basic = nixosTests.cjdns; - meta = with lib; { + meta = { homepage = "https://github.com/cjdelisle/cjdns"; description = "Encrypted networking for regular people"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ehmry ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ehmry ]; + platforms = lib.platforms.linux; broken = stdenv.hostPlatform.isAarch64; }; } diff --git a/pkgs/by-name/cj/cjson/package.nix b/pkgs/by-name/cj/cjson/package.nix index d344e5ad45ec1..4df0efd16e199 100644 --- a/pkgs/by-name/cj/cjson/package.nix +++ b/pkgs/by-name/cj/cjson/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { substituteInPlace CMakeLists.txt --replace -std=c89 -std=c99 ''; - 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 d7e846f579a6a..facba8dff011c 100644 --- a/pkgs/by-name/ck/ckan/package.nix +++ b/pkgs/by-name/ck/ckan/package.nix @@ -75,15 +75,15 @@ stdenv.mkDerivation rec { }) ]; - 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 ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ck/cksfv/package.nix b/pkgs/by-name/ck/cksfv/package.nix index 6d78486c8d6f4..5cfb5738934e8 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 9bb52885449cc..3f08e828e7b52 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 1c36860d21221..2b2511486be08 100644 --- a/pkgs/by-name/cl/cl-wordle/package.nix +++ b/pkgs/by-name/cl/cl-wordle/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-PtJbLpAUH44alupFY6wX++t/QsKknn5bXvnXzdYsd9o="; - 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; - maintainers = with maintainers; [ lom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lom ]; mainProgram = "wordle"; }; } diff --git a/pkgs/by-name/cl/cl/package.nix b/pkgs/by-name/cl/cl/package.nix index 67058ed6bf859..aabbb6630cd82 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/clac/package.nix b/pkgs/by-name/cl/clac/package.nix index 515817e4189da..79a638acc4a61 100644 --- a/pkgs/by-name/cl/clac/package.nix +++ b/pkgs/by-name/cl/clac/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { cp README* LICENSE "$out/share/doc/clac" ''; - meta = with lib; { + meta = { description = "Interactive stack-based calculator"; homepage = "https://github.com/soveran/clac"; - license = licenses.bsd2; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; mainProgram = "clac"; }; } diff --git a/pkgs/by-name/cl/clamsmtp/package.nix b/pkgs/by-name/cl/clamsmtp/package.nix index a54a48da5bc83..7465c1bbd0abd 100644 --- a/pkgs/by-name/cl/clamsmtp/package.nix +++ b/pkgs/by-name/cl/clamsmtp/package.nix @@ -15,13 +15,13 @@ stdenv.mkDerivation rec { patches = [ ./header-order.patch ]; - meta = with lib; { + meta = { description = "SMTP filter that allows to check for viruses using the ClamAV anti-virus software"; homepage = "http://thewalter.net/stef/software/clamsmtp/"; - license = licenses.bsd3; - maintainers = [ maintainers.ekleog ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.ekleog ]; mainProgram = "clamsmtpd"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cl/clamtk/package.nix b/pkgs/by-name/cl/clamtk/package.nix index 32d807ee32f72..8f7457e0940e6 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; [ chewblacka ShamrockLee ]; diff --git a/pkgs/by-name/cl/clap/package.nix b/pkgs/by-name/cl/clap/package.nix index 15543b4c50b71..e1a9568b37d8f 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 7b8948a6bdc89..52fd7ca67d0ca 100644 --- a/pkgs/by-name/cl/clapboard/package.nix +++ b/pkgs/by-name/cl/clapboard/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Ll2fpH0v3ZWizrl6Mip0gaPCHlQAdddh9F9bNXveb/0="; - 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; [ dit7ya ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya ]; + platforms = lib.platforms.linux; mainProgram = "clapboard"; }; } diff --git a/pkgs/by-name/cl/clapper/package.nix b/pkgs/by-name/cl/clapper/package.nix index 9d23eda1830cc..17f6dc26406bc 100644 --- a/pkgs/by-name/cl/clapper/package.nix +++ b/pkgs/by-name/cl/clapper/package.nix @@ -72,15 +72,15 @@ stdenv.mkDerivation (finalAttrs: { ) ''; - meta = with lib; { + meta = { description = "GNOME media player built using GTK4 toolkit and powered by GStreamer with OpenGL rendering"; longDescription = '' Clapper is a GNOME media player built using the GTK4 toolkit. The media player is using GStreamer as a media backend. ''; homepage = "https://github.com/Rafostar/clapper"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/cl/clarity-city/package.nix b/pkgs/by-name/cl/clarity-city/package.nix index b8d68fa7c15d4..f6c8edd2fca4d 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 dd5beefbafe68..fb788a2845f1b 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 fc5e9a792cee6..9fecbb09e1897 100644 --- a/pkgs/by-name/cl/clatd/package.nix +++ b/pkgs/by-name/cl/clatd/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { 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 fab432500bdac..29e8860dba8c7 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 globin orivej diff --git a/pkgs/by-name/cl/claws/package.nix b/pkgs/by-name/cl/claws/package.nix index d189fa3690c03..08f1a53a7085b 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 8f93b2d236a55..a8bbca71d3521 100644 --- a/pkgs/by-name/cl/clblast/package.nix +++ b/pkgs/by-name/cl/clblast/package.nix @@ -35,11 +35,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/cld2/package.nix b/pkgs/by-name/cl/cld2/package.nix index 315330529f380..390e911b79cbd 100644 --- a/pkgs/by-name/cl/cld2/package.nix +++ b/pkgs/by-name/cl/cld2/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://github.com/CLD2Owners/cld2"; description = "Compact Language Detector 2"; longDescription = '' @@ -44,8 +44,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 0778a9c70c59b..b8c6416f5e808 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 9b5ff579e7069..23149aa8cb0eb 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 8bd54eac6ceff..bba31404b07ba 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 c97a1e0cb07fd..c7d4373731a30 100644 --- a/pkgs/by-name/cl/clematis/package.nix +++ b/pkgs/by-name/cl/clematis/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { 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 ba3a3251b0bbf..45baf3c9ad4bd 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 a7eedd6457383..3c793c25e9fd9 100644 --- a/pkgs/by-name/cl/clfft/package.nix +++ b/pkgs/by-name/cl/clfft/package.nix @@ -49,15 +49,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 ffa1945aed5e8..c93d000e2df1a 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 c47724390a698..b3dccc34d3bdf 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 14508c89ca6de..da0e3351b5212 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 c1084bf82620d..b5ddbb24de3ee 100644 --- a/pkgs/by-name/cl/cliam/package.nix +++ b/pkgs/by-name/cl/cliam/package.nix @@ -40,11 +40,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 37c0841d75b49..666a5d7275e48 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 5a6ae5cb1507a..79d00a9aed676 100644 --- a/pkgs/by-name/cl/click/package.nix +++ b/pkgs/by-name/cl/click/package.nix @@ -27,11 +27,11 @@ rustPlatform.buildRustPackage rec { lib.optionals stdenv.hostPlatform.isLinux [ openssl ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Security ]; - meta = with lib; { + meta = { description = ''The "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 2f2f3b18cd6a2..368af05775a11 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 51238ea60be2e..09d2a37e79f30 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/clifm/package.nix b/pkgs/by-name/cl/clifm/package.nix index 523314fa8b422..32ec7afc9038d 100644 --- a/pkgs/by-name/cl/clifm/package.nix +++ b/pkgs/by-name/cl/clifm/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/leo-arch/clifm"; description = "CliFM is a CLI-based, shell-like, and non-curses terminal file manager written in C: simple, fast, extensible, and lightweight as hell"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ nadir-ishiguro ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ nadir-ishiguro ]; + platforms = lib.platforms.unix; mainProgram = "clifm"; }; } diff --git a/pkgs/by-name/cl/cling/package.nix b/pkgs/by-name/cl/cling/package.nix index 63b4a681745c0..644d6cb11c50a 100644 --- a/pkgs/by-name/cl/cling/package.nix +++ b/pkgs/by-name/cl/cling/package.nix @@ -118,16 +118,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 65d94561a0a74..b43ecd5614f83 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-hOPj3c3WIISRqP/9Kpc/Yh9Z/wfAkHQ/731+BkWElIQ="; - 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 d2d0651f5123a..897dfe091284b 100644 --- a/pkgs/by-name/cl/clipboard-jh/package.nix +++ b/pkgs/by-name/cl/clipboard-jh/package.nix @@ -62,12 +62,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 9a2f1ceb3ede0..fbeb25d076988 100644 --- a/pkgs/by-name/cl/cliphist/package.nix +++ b/pkgs/by-name/cl/cliphist/package.nix @@ -26,12 +26,12 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - 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 b6c1f97d5e65e..75c3a8f4048bb 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 2db613c3fb103..a59f672b6afb2 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 bf2c414a61dfb..19ed45d96027f 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 d8e6cf5b469cf..992bb1398b78c 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 b9a2f3eb54cc7..07b472b834b82 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 e9297156cf121..470208c37ba5a 100644 --- a/pkgs/by-name/cl/clipper/package.nix +++ b/pkgs/by-name/cl/clipper/package.nix @@ -23,15 +23,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 22c6bd779f8d8..27f403c978431 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 df9916098d33a..243431614442d 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 f73265d4fccf3..d7ad71830af4b 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 33d9c0704a984..738b3021c7aa8 100644 --- a/pkgs/by-name/cl/cliquer/package.nix +++ b/pkgs/by-name/cl/cliquer/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { autoreconfHook ]; - 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. @@ -33,9 +33,9 @@ stdenv.mkDerivation rec { ''; homepage = "https://users.aalto.fi/~pat/cliquer.html"; downloadPage = src.meta.homepage; # autocliquer - license = licenses.gpl2Plus; - maintainers = teams.sage.members; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.sage.members; 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 c639c31db6f55..bfd23cb0bcb56 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 4cbe9688ce5f1..19951b74ef0b8 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/cloak/package.nix b/pkgs/by-name/cl/cloak/package.nix index e4161bbdd4376..8ade7d5550903 100644 --- a/pkgs/by-name/cl/cloak/package.nix +++ b/pkgs/by-name/cl/cloak/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-m11A5fcJzWoDZglrr2Es1V5ZJNepEkGeIRVhexJ7jws="; - meta = with lib; { + meta = { homepage = "https://github.com/evansmurithi/cloak"; description = "Command-line OTP authenticator application"; - license = licenses.mit; - maintainers = with maintainers; [ mvs ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mvs ]; mainProgram = "cloak"; }; } diff --git a/pkgs/by-name/cl/clolcat/package.nix b/pkgs/by-name/cl/clolcat/package.nix index 328fd8c27779d..da60ef80ff9e4 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 82f88a4acc22d..c1362d517a44c 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/cloud-utils/package.nix b/pkgs/by-name/cl/cloud-utils/package.nix index c649cdc2396ac..bf63afe7147b8 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 b3695975e9c91..73598fd5f9815 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/cloudflare-dyndns/package.nix b/pkgs/by-name/cl/cloudflare-dyndns/package.nix index cf013c5d69ac1..891ba7c269817 100644 --- a/pkgs/by-name/cl/cloudflare-dyndns/package.nix +++ b/pkgs/by-name/cl/cloudflare-dyndns/package.nix @@ -38,11 +38,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/cloudlog/package.nix b/pkgs/by-name/cl/cloudlog/package.nix index e4f573221a5a3..721a77478953a 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 8505984541dba..4e39c9873ac53 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/clpeak/package.nix b/pkgs/by-name/cl/clpeak/package.nix index bf8285ca89695..3292fe2ea261a 100644 --- a/pkgs/by-name/cl/clpeak/package.nix +++ b/pkgs/by-name/cl/clpeak/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { opencl-clhpp ]; - meta = with lib; { + meta = { description = "Tool which profiles OpenCL devices to find their peak capacities"; homepage = "https://github.com/krrishnarraj/clpeak/"; - license = licenses.unlicense; + license = lib.licenses.unlicense; maintainers = [ ]; mainProgram = "clpeak"; }; diff --git a/pkgs/by-name/cl/clustal-omega/package.nix b/pkgs/by-name/cl/clustal-omega/package.nix index 1004082dcf7e1..77450a1bcf5f0 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 ebce63d5a1dab..2e9bd52a535ed 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-9j/hJFuDL+B/9nnpubhofpN5q2E6Jr+wrKN1TIsWLXM="; }; - 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 a608a421eda19..0114583ce5975 100644 --- a/pkgs/by-name/cm/cm256cc/package.nix +++ b/pkgs/by-name/cm/cm256cc/package.nix @@ -37,11 +37,11 @@ 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; [ alkeryn ]; - license = licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ alkeryn ]; + 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 12500e18882cb..ce4488e3c6ceb 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/cmatrix/package.nix b/pkgs/by-name/cm/cmatrix/package.nix index a3a330effccfb..c974dead0b1ce 100644 --- a/pkgs/by-name/cm/cmatrix/package.nix +++ b/pkgs/by-name/cm/cmatrix/package.nix @@ -20,16 +20,16 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ ncurses ]; - meta = with lib; { + meta = { description = "Simulates the falling characters theme from The Matrix movie"; - license = licenses.gpl3; + license = lib.licenses.gpl3; longDescription = '' CMatrix simulates the display from "The Matrix" and is based on the screensaver from the movie's website. ''; homepage = "https://github.com/abishekvashok/cmatrix"; platforms = ncurses.meta.platforms; - maintainers = [ maintainers.AndersonTorres ]; + maintainers = [ lib.maintainers.AndersonTorres ]; mainProgram = "cmatrix"; }; } diff --git a/pkgs/by-name/cm/cmd-polkit/package.nix b/pkgs/by-name/cm/cmd-polkit/package.nix index 4ab3eb53d8ada..fe3e260920e5c 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 a3081227d9766..a4b0ed5d6af03 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-pAlAWG9Dfqhhvl7uVvzr4nx481seIwwzBg+5SSsje84="; - 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 1a4780cece1b1..822e42c5a3d90 100644 --- a/pkgs/by-name/cm/cmdstan/package.nix +++ b/pkgs/by-name/cm/cmdstan/package.nix @@ -83,7 +83,7 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Command-line interface to Stan"; longDescription = '' Stan is a probabilistic programming language implementing full Bayesian @@ -92,8 +92,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 cd85f7d3d83e6..778cd6f77dd31 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/cmospwd/package.nix b/pkgs/by-name/cm/cmospwd/package.nix index e9cdf0fc263f9..428d3d0d124d8 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 60d17e593c6bf..6720317abb1cf 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 87caa2d32603f..3066e0e4921e9 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 c7fa4fb79e5ff..00005ad54bf41 100644 --- a/pkgs/by-name/cm/cmtk/package.nix +++ b/pkgs/by-name/cm/cmtk/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeFeature "CMAKE_CXX_FLAGS" "-Dfinite=isfinite") ]; - meta = with lib; { + meta = { description = "Computational Morphometry Toolkit"; mainProgram = "cmtk"; longDescription = '' @@ -53,9 +53,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/cn/cnijfilter2/package.nix b/pkgs/by-name/cn/cnijfilter2/package.nix index b3a2e4f8afa67..9515344846dda 100644 --- a/pkgs/by-name/cn/cnijfilter2/package.nix +++ b/pkgs/by-name/cn/cnijfilter2/package.nix @@ -151,7 +151,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, @@ -165,7 +165,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/cnping/package.nix b/pkgs/by-name/cn/cnping/package.nix index 2fe587f6e5b1c..8ef0c789237e0 100644 --- a/pkgs/by-name/cn/cnping/package.nix +++ b/pkgs/by-name/cn/cnping/package.nix @@ -33,15 +33,15 @@ stdenv.mkDerivation rec { 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/cnstrokeorder/package.nix b/pkgs/by-name/cn/cnstrokeorder/package.nix index d6908d08ecf71..0ba277b8f9d8f 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 69622e914a10f..4d2c26b8a67c2 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/cntr/package.nix b/pkgs/by-name/cn/cntr/package.nix index d4fab9658f545..90464cadec886 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 4d8b956427121..c004df81cdf14 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,7 +44,7 @@ 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; }; } diff --git a/pkgs/by-name/co/cod/package.nix b/pkgs/by-name/co/cod/package.nix index 6dd5ef4d82a58..d6e4a50efba7c 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 5713fb7ee0848..a004816dddb71 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 749e2737b65a7..d9ef6247b833c 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/codeberg-cli/package.nix b/pkgs/by-name/co/codeberg-cli/package.nix index 2dd1c341e53ca..d6a39f4e9c4cd 100644 --- a/pkgs/by-name/co/codeberg-cli/package.nix +++ b/pkgs/by-name/co/codeberg-cli/package.nix @@ -46,11 +46,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/codeblocks/package.nix b/pkgs/by-name/co/codeblocks/package.nix index a9cfa5d99d179..5fffd7875a697 100644 --- a/pkgs/by-name/co/codeblocks/package.nix +++ b/pkgs/by-name/co/codeblocks/package.nix @@ -160,9 +160,9 @@ stdenv.mkDerivation rec { ln -s $out/lib/codeblocks/plugins $out/share/codeblocks/plugins ''; - meta = with lib; { - maintainers = [ maintainers.linquize ]; - platforms = platforms.all; + meta = { + maintainers = [ lib.maintainers.linquize ]; + platforms = lib.platforms.all; description = "Open source, cross platform, free C, C++ and Fortran IDE"; longDescription = '' Code::Blocks is a free C, C++ and Fortran IDE built to meet the most demanding needs of its users. @@ -170,6 +170,6 @@ stdenv.mkDerivation rec { Finally, an IDE with all the features you need, having a consistent look, feel and operation across platforms. ''; homepage = "http://www.codeblocks.org"; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/co/codec2/package.nix b/pkgs/by-name/co/codec2/package.nix index f5c82cfb8a51d..b9033a2c2fd05 100644 --- a/pkgs/by-name/co/codec2/package.nix +++ b/pkgs/by-name/co/codec2/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { "-DLPCNET=ON" ]; - 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 ]; }; } diff --git a/pkgs/by-name/co/codecrafters-cli/package.nix b/pkgs/by-name/co/codecrafters-cli/package.nix index 8662580a829fc..2e0fec1c16d7e 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/codemov/package.nix b/pkgs/by-name/co/codemov/package.nix index f667279800531..f2ee96dfea979 100644 --- a/pkgs/by-name/co/codemov/package.nix +++ b/pkgs/by-name/co/codemov/package.nix @@ -51,11 +51,11 @@ rustPlatform.buildRustPackage { } ''; - meta = with lib; { + meta = { description = "Create a video of how a git repository's code changes over time"; homepage = "https://github.com/sloganking/codemov"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "codemov"; }; } diff --git a/pkgs/by-name/co/codeowners/package.nix b/pkgs/by-name/co/codeowners/package.nix index 067870f13b797..f1304bac4ea9f 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 4bc7fe2500e66..105dffa63ec64 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 fb93208c1020c..fec1c02fd9dbd 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 d46e981168554..4985b057e7c48 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 a0c6ea7987030..602f9eb6668d3 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/codux/package.nix b/pkgs/by-name/co/codux/package.nix index 954c33cab990d..86312289909e6 100644 --- a/pkgs/by-name/co/codux/package.nix +++ b/pkgs/by-name/co/codux/package.nix @@ -25,12 +25,12 @@ appimageTools.wrapType2 rec { substituteInPlace $out/share/applications/${pname}.desktop --replace 'Exec=AppRun' 'Exec=${pname}' ''; - meta = with lib; { + meta = { description = "Visual IDE for React"; homepage = "https://www.codux.com"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ dit7ya kashw2 ]; diff --git a/pkgs/by-name/co/coeurl/package.nix b/pkgs/by-name/co/coeurl/package.nix index b3a24e910bda7..0af71cdd49cf5 100644 --- a/pkgs/by-name/co/coeurl/package.nix +++ b/pkgs/by-name/co/coeurl/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { spdlog ]; - meta = with lib; { + meta = { description = "Simple async wrapper around CURL for C++"; homepage = "https://nheko.im/nheko-reborn/coeurl"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ rnhmjoj ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ rnhmjoj ]; }; } diff --git a/pkgs/by-name/co/coffeegrindsize/package.nix b/pkgs/by-name/co/coffeegrindsize/package.nix index 5df497e4bd1ea..466e7a64af29a 100644 --- a/pkgs/by-name/co/coffeegrindsize/package.nix +++ b/pkgs/by-name/co/coffeegrindsize/package.nix @@ -38,11 +38,11 @@ python3.pkgs.buildPythonApplication { runHook postInstall ''; - meta = with lib; { + meta = { description = "Detects the individual coffee grounds in a white-background picture to determine particle size distribution"; mainProgram = "coffeegrindsize"; homepage = "https://github.com/jgagneastro/coffeegrindsize"; - license = licenses.mit; - maintainers = with maintainers; [ t4ccer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ t4ccer ]; }; } diff --git a/pkgs/by-name/co/cog/package.nix b/pkgs/by-name/co/cog/package.nix index 1dcef0357088f..89dc2872fedef 100644 --- a/pkgs/by-name/co/cog/package.nix +++ b/pkgs/by-name/co/cog/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { --prefix LD_LIBRARY_PATH : ${libwpe-fdo}/lib ''; - meta = with lib; { + meta = { description = "Small single “window” launcher for the WebKit WPE port"; homepage = "https://github.com/Igalia/cog"; mainProgram = "cog"; - license = licenses.mit; - maintainers = [ maintainers.matthewbauer ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.matthewbauer ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/coin-utils/package.nix b/pkgs/by-name/co/coin-utils/package.nix index 45681a7213570..97ce0ba699ede 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/coinmp/package.nix b/pkgs/by-name/co/coinmp/package.nix index 632fd2da873b4..46959b52690a6 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/colemak-dh/package.nix b/pkgs/by-name/co/colemak-dh/package.nix index 76113c08a4c90..3349e20dc9256 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 rec { 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/colloid-icon-theme/package.nix b/pkgs/by-name/co/colloid-icon-theme/package.nix index 3b2ea4b9987ad..fbf1955d2a684 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 "${pname}: 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 19d8744aa1e2c..6247c5dec0a6c 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/colobot/data.nix b/pkgs/by-name/co/colobot/data.nix index d2fcedee561dd..7130164b6eece 100644 --- a/pkgs/by-name/co/colobot/data.nix +++ b/pkgs/by-name/co/colobot/data.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { cd localSrc ''; - meta = with lib; { + meta = { homepage = "https://colobot.info/"; description = "Game data for colobot"; - license = licenses.gpl3; - maintainers = with maintainers; [ freezeboy ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ freezeboy ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/colobot/package.nix b/pkgs/by-name/co/colobot/package.nix index 8ddbbe00998cf..0f50e6e49b27c 100644 --- a/pkgs/by-name/co/colobot/package.nix +++ b/pkgs/by-name/co/colobot/package.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://colobot.info/"; description = "Colobot: Gold Edition is a real-time strategy game, where you can program your bots"; - license = licenses.gpl3; - maintainers = with maintainers; [ freezeboy ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ freezeboy ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/colord-gtk/package.nix b/pkgs/by-name/co/colord-gtk/package.nix index 46d7e1cfb3e22..095d4b8e8b0d8 100644 --- a/pkgs/by-name/co/colord-gtk/package.nix +++ b/pkgs/by-name/co/colord-gtk/package.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation rec { "-Dgtk3=${lib.boolToString (!withGtk4)}" ]; - meta = with lib; { + meta = { homepage = "https://www.freedesktop.org/software/colord/intro.html"; - license = licenses.lgpl21Plus; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.linux; mainProgram = "cd-convert"; }; } diff --git a/pkgs/by-name/co/colordiff/package.nix b/pkgs/by-name/co/colordiff/package.nix index 11b906b06f3b2..9a9e149ba90e3 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 9e5c69360430b..142c4c70569a6 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 6d897f5de8fcd..814796e876872 100644 --- a/pkgs/by-name/co/colormake/package.nix +++ b/pkgs/by-name/co/colormake/package.nix @@ -23,11 +23,11 @@ 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; - maintainers = with maintainers; [ bhipple ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bhipple ]; }; } diff --git a/pkgs/by-name/co/colorpanes/package.nix b/pkgs/by-name/co/colorpanes/package.nix index 534b153aa95e5..ed5bbc60c9c2c 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 1ba0343d555db..50507d76fc90f 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 1c5b54014823e..5e847b07613ed 100644 --- a/pkgs/by-name/co/colorz/package.nix +++ b/pkgs/by-name/co/colorz/package.nix @@ -22,11 +22,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/colpack/package.nix b/pkgs/by-name/co/colpack/package.nix index 32914f925a73b..7409c23089fa2 100644 --- a/pkgs/by-name/co/colpack/package.nix +++ b/pkgs/by-name/co/colpack/package.nix @@ -37,12 +37,12 @@ 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; - maintainers = with maintainers; [ edwtjo ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ edwtjo ]; }; } diff --git a/pkgs/by-name/co/colstr/package.nix b/pkgs/by-name/co/colstr/package.nix index 8e0185c10281d..1d5b693b9f2bf 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/coltrane/package.nix b/pkgs/by-name/co/coltrane/package.nix index 5faba57d64534..669d943a55d41 100644 --- a/pkgs/by-name/co/coltrane/package.nix +++ b/pkgs/by-name/co/coltrane/package.nix @@ -11,15 +11,15 @@ bundlerApp rec { passthru.updateScript = bundlerUpdateScript pname; - meta = with lib; { + meta = { homepage = "https://github.com/pedrozath/coltrane"; description = "Music calculation library/CLI"; longDescription = '' coltrane allows to search for Notes, Chords, Scales for guitar, bass, piano and ukelele ''; - license = licenses.mit; - maintainers = [ maintainers.panaeon ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.panaeon ]; mainProgram = "coltrane"; }; } diff --git a/pkgs/by-name/co/comedilib/package.nix b/pkgs/by-name/co/comedilib/package.nix index 42d9ca0a5de23..b964d9f461361 100644 --- a/pkgs/by-name/co/comedilib/package.nix +++ b/pkgs/by-name/co/comedilib/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation (finalAttrs: { "doc" ]; - meta = with lib; { + meta = { description = "Linux Control and Measurement Device Interface Library"; homepage = "https://github.com/Linux-Comedi/comedilib"; - license = licenses.lgpl21; - maintainers = [ maintainers.doronbehar ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.doronbehar ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/co/comfortaa/package.nix b/pkgs/by-name/co/comfortaa/package.nix index f2b8a884609ed..e264da5b63f4e 100644 --- a/pkgs/by-name/co/comfortaa/package.nix +++ b/pkgs/by-name/co/comfortaa/package.nix @@ -31,11 +31,11 @@ stdenvNoCC.mkDerivation rec { 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 006364609a81e..15b66fa2f832a 100644 --- a/pkgs/by-name/co/comic-neue/package.nix +++ b/pkgs/by-name/co/comic-neue/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { cp -v ${pname}-${version}/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 = '' @@ -36,8 +36,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; - maintainers = [ maintainers.AndersonTorres ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.AndersonTorres ]; }; } diff --git a/pkgs/by-name/co/comma/package.nix b/pkgs/by-name/co/comma/package.nix index 36543e955e4e1..fef8263577d39 100644 --- a/pkgs/by-name/co/comma/package.nix +++ b/pkgs/by-name/co/comma/package.nix @@ -39,11 +39,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/commandergenius/package.nix b/pkgs/by-name/co/commandergenius/package.nix index 6008490dac178..f6fb90d0f1aea 100644 --- a/pkgs/by-name/co/commandergenius/package.nix +++ b/pkgs/by-name/co/commandergenius/package.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { sed -i 's,APPDIR games,APPDIR bin,' src/install.cmake ''; - meta = with lib; { + meta = { description = "Modern Interpreter for the Commander Keen Games"; longDescription = '' Commander Genius is an open-source clone of @@ -69,8 +69,8 @@ stdenv.mkDerivation rec { are required to do so ''; homepage = "https://github.com/gerstrong/Commander-Genius"; - maintainers = with maintainers; [ hce ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ hce ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/commit-formatter/package.nix b/pkgs/by-name/co/commit-formatter/package.nix index 640a952d12626..6020b3bf08a0c 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-AeHQCoP1HOftlOt/Yala3AXocMlwwIXIO2i1AsFSvGQ="; - 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/commit-mono/package.nix b/pkgs/by-name/co/commit-mono/package.nix index 574e45163bd02..74310385f17a6 100644 --- a/pkgs/by-name/co/commit-mono/package.nix +++ b/pkgs/by-name/co/commit-mono/package.nix @@ -26,11 +26,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Anonymous and neutral programming typeface focused on creating a better reading experience"; homepage = "https://commitmono.com/"; - license = licenses.ofl; - maintainers = [ maintainers.yoavlavi ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = [ lib.maintainers.yoavlavi ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/co/commitizen-go/package.nix b/pkgs/by-name/co/commitizen-go/package.nix index 103249165d5b1..48f98b6351139 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 05ea1e51c96e2..f738d88cb1294 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 c840cd85b1fd8..dea234e1224bb 100644 --- a/pkgs/by-name/co/compdb/package.nix +++ b/pkgs/by-name/co/compdb/package.nix @@ -15,11 +15,11 @@ python3.pkgs.buildPythonApplication rec { sha256 = "sha256-nFAgTrup6V5oE+LP4UWDOCgTVCv2v9HbQbkGW+oDnTg="; }; - 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 d348a82e7f217..ded60a383bfe3 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 97bae7640e4f7..c388866b92364 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/compsize/package.nix b/pkgs/by-name/co/compsize/package.nix index 160669a0ac78e..a171bade6ba2b 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 = "btrfs: Find compression type/ratio on a file or set of files"; mainProgram = "compsize"; homepage = "https://github.com/kilobyte/compsize"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ CrazedProgrammer ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ CrazedProgrammer ]; + 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 8ee55d6dde878..1036206c98c77 100644 --- a/pkgs/by-name/co/computecpp-unwrapped/package.nix +++ b/pkgs/by-name/co/computecpp-unwrapped/package.nix @@ -48,11 +48,11 @@ 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; - maintainers = with maintainers; [ davidtwco ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ davidtwco ]; platforms = [ "x86_64-linux" ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; diff --git a/pkgs/by-name/co/conceal/package.nix b/pkgs/by-name/co/conceal/package.nix index 1184aa2ac02d4..7ca9e8e6eb528 100644 --- a/pkgs/by-name/co/conceal/package.nix +++ b/pkgs/by-name/co/conceal/package.nix @@ -38,11 +38,11 @@ rustPlatform.buildRustPackage rec { version = "conceal ${version}"; }; - meta = with lib; { + meta = { description = "Trash collector written in Rust"; homepage = "https://github.com/TD-Sky/conceal"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jedsek kashw2 ]; diff --git a/pkgs/by-name/co/confetty/package.nix b/pkgs/by-name/co/confetty/package.nix index fa4ba1f8ae335..8b8dc7c0fa823 100644 --- a/pkgs/by-name/co/confetty/package.nix +++ b/pkgs/by-name/co/confetty/package.nix @@ -22,11 +22,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Confetti in your TTY"; homepage = "https://github.com/maaslalani/confetty"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "confetty"; }; } diff --git a/pkgs/by-name/co/confluencepot/package.nix b/pkgs/by-name/co/confluencepot/package.nix index 1bbcd0d4b3bd0..0f2402b3af75d 100644 --- a/pkgs/by-name/co/confluencepot/package.nix +++ b/pkgs/by-name/co/confluencepot/package.nix @@ -32,15 +32,15 @@ buildGoModule rec { install -vD confluence.html -t $out/share ''; - meta = with lib; { + meta = { description = "Honeypot for the Atlassian Confluence OGNL injection vulnerability"; homepage = "https://github.com/SIFalcon/confluencePot"; longDescription = '' ConfluencePot is a simple honeypot for the Atlassian Confluence unauthenticated and remote OGNL injection vulnerability (CVE-2022-26134). ''; - license = with licenses; [ agpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ agpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "confluencepot"; }; } diff --git a/pkgs/by-name/co/conform/package.nix b/pkgs/by-name/co/conform/package.nix index 7713688334564..7dc2fd9b0dc64 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/conjure/package.nix b/pkgs/by-name/co/conjure/package.nix index 5a8ea6082a419..4cf5f5cf93a90 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/connman-gtk/package.nix b/pkgs/by-name/co/connman-gtk/package.nix index 9475a30d849f8..f9db628a6adb5 100644 --- a/pkgs/by-name/co/connman-gtk/package.nix +++ b/pkgs/by-name/co/connman-gtk/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { ./autogen.sh ''; - 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-ncurses/package.nix b/pkgs/by-name/co/connman-ncurses/package.nix index 7add30d1d9eb3..6537adad3af03 100644 --- a/pkgs/by-name/co/connman-ncurses/package.nix +++ b/pkgs/by-name/co/connman-ncurses/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation { cp -va connman_ncurses "$out/bin/" ''; - meta = with lib; { + meta = { description = "Simple ncurses UI for connman"; mainProgram = "connman_ncurses"; homepage = "https://github.com/eurogiciel-oss/connman-json-client"; - 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/connman-notify/package.nix b/pkgs/by-name/co/connman-notify/package.nix index 90a27db9a2dd1..993e877b3c4d4 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 09b3f4c5825f2..4c4eb67ca6b97 100644 --- a/pkgs/by-name/co/conntrack-tools/package.nix +++ b/pkgs/by-name/co/conntrack-tools/package.nix @@ -48,11 +48,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 c5f459db1b457..44703b06c7afd 100644 --- a/pkgs/by-name/co/conserve/package.nix +++ b/pkgs/by-name/co/conserve/package.nix @@ -30,11 +30,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 cb741ecc45905..43795244beca6 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 384f305977c94..1f69eb1fe9729 100644 --- a/pkgs/by-name/co/console-bridge/package.nix +++ b/pkgs/by-name/co/console-bridge/package.nix @@ -22,11 +22,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/conspy/package.nix b/pkgs/by-name/co/conspy/package.nix index 6612322744ba5..768fbe8ab297b 100644 --- a/pkgs/by-name/co/conspy/package.nix +++ b/pkgs/by-name/co/conspy/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { autoconf ''; - meta = with lib; { + meta = { description = "Linux text console viewer"; mainProgram = "conspy"; - license = licenses.epl10; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.epl10; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/construct/package.nix b/pkgs/by-name/co/construct/package.nix index 1869e1acd7add..afd5d9b031ef8 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 = "Construct is an 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/convco/package.nix b/pkgs/by-name/co/convco/package.nix index 8e76730abb155..641fd84e96b0d 100644 --- a/pkgs/by-name/co/convco/package.nix +++ b/pkgs/by-name/co/convco/package.nix @@ -40,12 +40,12 @@ rustPlatform.buildRustPackage rec { "--skip=git::tests::test_find_last_unordered_prerelease" ]; - 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/convimg/package.nix b/pkgs/by-name/co/convimg/package.nix index 4984bdb72ea5c..77c3d96ff70e6 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; - maintainers = with maintainers; [ clevor ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ clevor ]; + 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 e89b4250ead3c..e749c1bad2433 100644 --- a/pkgs/by-name/co/convmv/package.nix +++ b/pkgs/by-name/co/convmv/package.nix @@ -46,15 +46,15 @@ stdenv.mkDerivation (finalAttrs: { dontPatchShebangs = true; - 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 a85b832f2d54d..0f3947fe508b0 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 rec { 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/copilot-node-server/package.nix b/pkgs/by-name/co/copilot-node-server/package.nix index 9dac4e80164b8..244f882d30e44 100644 --- a/pkgs/by-name/co/copilot-node-server/package.nix +++ b/pkgs/by-name/co/copilot-node-server/package.nix @@ -32,11 +32,11 @@ buildNpmPackage rec { forceEmptyCache = true; dontNpmBuild = true; - meta = with lib; { + meta = { description = "Copilot Node.js server"; homepage = src.meta.homepage; - license = licenses.unfree; # I don't know: https://github.com/jfcherng/copilot-node-server/blob/main/LICENSE.md - maintainers = with maintainers; [ DamienCassou ]; + license = lib.licenses.unfree; # I don't know: https://github.com/jfcherng/copilot-node-server/blob/main/LICENSE.md + maintainers = with lib.maintainers; [ DamienCassou ]; mainProgram = "copilot-node-server"; }; } diff --git a/pkgs/by-name/co/copper/package.nix b/pkgs/by-name/co/copper/package.nix index d6b24177d291a..82359dd1fce7c 100644 --- a/pkgs/by-name/co/copper/package.nix +++ b/pkgs/by-name/co/copper/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { installPhase = '' make BACKEND=elf64 install prefix=$out ''; - meta = with lib; { + meta = { description = "Simple imperative language, statically typed with type inference and genericity"; homepage = "https://tibleiz.net/copper/"; - license = licenses.bsd2; - platforms = platforms.x86_64; + license = lib.licenses.bsd2; + platforms = lib.platforms.x86_64; broken = true; }; } diff --git a/pkgs/by-name/co/copyright-update/package.nix b/pkgs/by-name/co/copyright-update/package.nix index 9ec1b850af222..715494b069fda 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/coq2html/package.nix b/pkgs/by-name/co/coq2html/package.nix index 5768962265cd9..2fe644068c64a 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/cordless/package.nix b/pkgs/by-name/co/cordless/package.nix index f58b6752ea633..693b6efd5a1b8 100644 --- a/pkgs/by-name/co/cordless/package.nix +++ b/pkgs/by-name/co/cordless/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { vendorHash = "sha256-XnwTqd19q+hOJZsfnFExiPDbg4pzV1Z9A6cq/jhcVgU="; - meta = with lib; { + meta = { homepage = "https://github.com/Bios-Marcel/cordless"; description = "Discord terminal client"; mainProgram = "cordless"; - license = licenses.bsd3; - maintainers = with maintainers; [ ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/by-name/co/corefonts/package.nix b/pkgs/by-name/co/corefonts/package.nix index b58089d1ad331..73bfae46c0073 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 462cd493e830c..f0e85a565eaff 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/corkscrew/package.nix b/pkgs/by-name/co/corkscrew/package.nix index 1fb800d9f4dec..73bf6dddc1d19 100644 --- a/pkgs/by-name/co/corkscrew/package.nix +++ b/pkgs/by-name/co/corkscrew/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/bryanpkc/corkscrew"; description = "Tool for tunneling SSH through HTTP proxies"; license = lib.licenses.gpl2Only; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "corkscrew"; }; } diff --git a/pkgs/by-name/co/corrupter/package.nix b/pkgs/by-name/co/corrupter/package.nix index 161727916ff1a..5161a6489b702 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/corto/package.nix b/pkgs/by-name/co/corto/package.nix index acf0517e0c10a..643a367d084b6 100644 --- a/pkgs/by-name/co/corto/package.nix +++ b/pkgs/by-name/co/corto/package.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Mesh compression library, designed for rendering and speed"; homepage = "https://github.com/cnr-isti-vclab/corto"; - license = licenses.mit; - maintainers = with maintainers; [ nim65s ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nim65s ]; }; } diff --git a/pkgs/by-name/co/cosmic-applets/package.nix b/pkgs/by-name/co/cosmic-applets/package.nix index 5a4a0522f8bae..dec4e90047d64 100644 --- a/pkgs/by-name/co/cosmic-applets/package.nix +++ b/pkgs/by-name/co/cosmic-applets/package.nix @@ -64,14 +64,14 @@ rustPlatform.buildRustPackage rec { "-Wl,--pop-state" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-applets"; description = "Applets for the COSMIC Desktop Environment"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ qyliss nyabinary ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/cosmic-applibrary/package.nix b/pkgs/by-name/co/cosmic-applibrary/package.nix index 0dd7624df4ed1..5d07601765072 100644 --- a/pkgs/by-name/co/cosmic-applibrary/package.nix +++ b/pkgs/by-name/co/cosmic-applibrary/package.nix @@ -53,12 +53,12 @@ rustPlatform.buildRustPackage rec { --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ wayland ]}" ''; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-applibrary"; description = "Application Template for the COSMIC Desktop Environment"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nyabinary ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nyabinary ]; + platforms = lib.platforms.linux; mainProgram = "cosmic-app-library"; }; } diff --git a/pkgs/by-name/co/cosmic-bg/package.nix b/pkgs/by-name/co/cosmic-bg/package.nix index c0f7d3c27d95b..217a818573b40 100644 --- a/pkgs/by-name/co/cosmic-bg/package.nix +++ b/pkgs/by-name/co/cosmic-bg/package.nix @@ -54,12 +54,12 @@ rustPlatform.buildRustPackage rec { --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ wayland ]}" ''; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-bg"; description = "Applies Background for the COSMIC Desktop Environment"; - license = licenses.mpl20; - maintainers = with maintainers; [ nyabinary ]; - platforms = platforms.linux; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ nyabinary ]; + platforms = lib.platforms.linux; mainProgram = "cosmic-bg"; }; } diff --git a/pkgs/by-name/co/cosmic-comp/package.nix b/pkgs/by-name/co/cosmic-comp/package.nix index 1c0bf7489aefe..58e1e42cfbb1c 100644 --- a/pkgs/by-name/co/cosmic-comp/package.nix +++ b/pkgs/by-name/co/cosmic-comp/package.nix @@ -90,15 +90,15 @@ rustPlatform.buildRustPackage rec { wrapProgram $out/bin/cosmic-comp "''${wrapProgramArgs[@]}" ''; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-comp"; description = "Compositor for the COSMIC Desktop Environment"; mainProgram = "cosmic-comp"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ qyliss nyabinary ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/cosmic-design-demo/package.nix b/pkgs/by-name/co/cosmic-design-demo/package.nix index 2f003b482f2ff..1a73c185285e8 100644 --- a/pkgs/by-name/co/cosmic-design-demo/package.nix +++ b/pkgs/by-name/co/cosmic-design-demo/package.nix @@ -61,12 +61,12 @@ rustPlatform.buildRustPackage rec { --suffix XDG_DATA_DIRS : "${cosmic-icons}/share" ''; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-design-demo"; description = "Design Demo for the COSMIC Desktop Environment"; - license = licenses.mpl20; - maintainers = with maintainers; [ nyabinary ]; - platforms = platforms.linux; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ nyabinary ]; + platforms = lib.platforms.linux; mainProgram = "cosmic-design-demo"; }; } diff --git a/pkgs/by-name/co/cosmic-edit/package.nix b/pkgs/by-name/co/cosmic-edit/package.nix index c7d072d3d824e..90de5ba257fb5 100644 --- a/pkgs/by-name/co/cosmic-edit/package.nix +++ b/pkgs/by-name/co/cosmic-edit/package.nix @@ -95,15 +95,15 @@ rustPlatform.buildRustPackage rec { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-edit"; description = "Text Editor for the COSMIC Desktop Environment"; mainProgram = "cosmic-edit"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ahoneybun nyabinary ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/cosmic-files/package.nix b/pkgs/by-name/co/cosmic-files/package.nix index 350071d1f6259..1f9bcd55024cb 100644 --- a/pkgs/by-name/co/cosmic-files/package.nix +++ b/pkgs/by-name/co/cosmic-files/package.nix @@ -73,14 +73,14 @@ rustPlatform.buildRustPackage rec { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-files"; description = "File Manager for the COSMIC Desktop Environment"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ahoneybun nyabinary ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/cosmic-greeter/package.nix b/pkgs/by-name/co/cosmic-greeter/package.nix index b6c1d204c40ee..f51d1e3254b06 100644 --- a/pkgs/by-name/co/cosmic-greeter/package.nix +++ b/pkgs/by-name/co/cosmic-greeter/package.nix @@ -64,12 +64,12 @@ rustPlatform.buildRustPackage rec { substituteInPlace src/greeter.rs --replace-fail '/usr/bin/env' '${lib.getExe' coreutils "env"}' ''; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-greeter"; description = "Greeter for the COSMIC Desktop Environment"; mainProgram = "cosmic-greeter"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nyabinary ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nyabinary ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/cosmic-icons/package.nix b/pkgs/by-name/co/cosmic-icons/package.nix index 0ca07cecdecfe..e184c344d1514 100644 --- a/pkgs/by-name/co/cosmic-icons/package.nix +++ b/pkgs/by-name/co/cosmic-icons/package.nix @@ -40,12 +40,12 @@ stdenvNoCC.mkDerivation { ]; }; - meta = with lib; { + meta = { description = "System76 Cosmic icon theme for Linux"; homepage = "https://github.com/pop-os/cosmic-icons"; - license = with licenses; [ + license = with lib.licenses; [ cc-by-sa-40 ]; - maintainers = with maintainers; [ a-kenji ]; + maintainers = with lib.maintainers; [ a-kenji ]; }; } diff --git a/pkgs/by-name/co/cosmic-launcher/package.nix b/pkgs/by-name/co/cosmic-launcher/package.nix index b3ded86538ac2..fbdccbf2d4f9e 100644 --- a/pkgs/by-name/co/cosmic-launcher/package.nix +++ b/pkgs/by-name/co/cosmic-launcher/package.nix @@ -62,12 +62,12 @@ rustPlatform.buildRustPackage rec { RUSTFLAGS = "--cfg tokio_unstable"; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-launcher"; description = "Launcher for the COSMIC Desktop Environment"; mainProgram = "cosmic-launcher"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nyabinary ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nyabinary ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/cosmic-notifications/package.nix b/pkgs/by-name/co/cosmic-notifications/package.nix index 7ce7cf3d6e904..afa85650bc61f 100644 --- a/pkgs/by-name/co/cosmic-notifications/package.nix +++ b/pkgs/by-name/co/cosmic-notifications/package.nix @@ -62,12 +62,12 @@ rustPlatform.buildRustPackage rec { --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ wayland ]}" ''; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-notifications"; description = "Notifications for the COSMIC Desktop Environment"; mainProgram = "cosmic-notifications"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nyabinary ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nyabinary ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/cosmic-osd/package.nix b/pkgs/by-name/co/cosmic-osd/package.nix index 005826ba40b6b..daab6739d98c2 100644 --- a/pkgs/by-name/co/cosmic-osd/package.nix +++ b/pkgs/by-name/co/cosmic-osd/package.nix @@ -33,12 +33,12 @@ rustPlatform.buildRustPackage rec { env.POLKIT_AGENT_HELPER_1 = "/run/wrappers/bin/polkit-agent-helper-1"; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-osd"; description = "OSD for the COSMIC Desktop Environment"; mainProgram = "cosmic-osd"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nyabinary ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nyabinary ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/cosmic-panel/package.nix b/pkgs/by-name/co/cosmic-panel/package.nix index 951c3ef3869f8..92ea223371164 100644 --- a/pkgs/by-name/co/cosmic-panel/package.nix +++ b/pkgs/by-name/co/cosmic-panel/package.nix @@ -54,15 +54,15 @@ rustPlatform.buildRustPackage rec { "-Wl,--pop-state" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-panel"; description = "Panel for the COSMIC Desktop Environment"; mainProgram = "cosmic-panel"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ qyliss nyabinary ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/cosmic-randr/package.nix b/pkgs/by-name/co/cosmic-randr/package.nix index 63c495956c78c..e95679a3360bc 100644 --- a/pkgs/by-name/co/cosmic-randr/package.nix +++ b/pkgs/by-name/co/cosmic-randr/package.nix @@ -39,12 +39,12 @@ rustPlatform.buildRustPackage rec { "target/${stdenv.hostPlatform.rust.cargoShortTarget}/release/cosmic-randr" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-randr"; description = "Library and utility for displaying and configuring Wayland outputs"; - license = licenses.mpl20; - maintainers = with maintainers; [ nyabinary ]; - platforms = platforms.linux; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ nyabinary ]; + platforms = lib.platforms.linux; mainProgram = "cosmic-randr"; }; } diff --git a/pkgs/by-name/co/cosmic-screenshot/package.nix b/pkgs/by-name/co/cosmic-screenshot/package.nix index dc7313e881290..dc8753513ed0a 100644 --- a/pkgs/by-name/co/cosmic-screenshot/package.nix +++ b/pkgs/by-name/co/cosmic-screenshot/package.nix @@ -36,12 +36,12 @@ rustPlatform.buildRustPackage rec { "target/${stdenv.hostPlatform.rust.cargoShortTarget}/release/cosmic-screenshot" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-screenshot"; description = "Screenshot tool for the COSMIC Desktop Environment"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nyabinary ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nyabinary ]; + platforms = lib.platforms.linux; mainProgram = "cosmic-screenshot"; }; } diff --git a/pkgs/by-name/co/cosmic-session/package.nix b/pkgs/by-name/co/cosmic-session/package.nix index 2e802f8508e2c..59906b2c710fd 100644 --- a/pkgs/by-name/co/cosmic-session/package.nix +++ b/pkgs/by-name/co/cosmic-session/package.nix @@ -47,15 +47,15 @@ rustPlatform.buildRustPackage rec { passthru.providedSessions = [ "cosmic" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-session"; description = "Session manager for the COSMIC desktop environment"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "cosmic-session"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ a-kenji nyabinary ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/cosmic-settings-daemon/package.nix b/pkgs/by-name/co/cosmic-settings-daemon/package.nix index 992dc9df980f2..0ba71702970cc 100644 --- a/pkgs/by-name/co/cosmic-settings-daemon/package.nix +++ b/pkgs/by-name/co/cosmic-settings-daemon/package.nix @@ -35,12 +35,12 @@ rustPlatform.buildRustPackage rec { dontCargoInstall = true; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-settings-daemon"; description = "Settings Daemon for the COSMIC Desktop Environment"; mainProgram = "cosmic-settings-daemon"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nyabinary ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nyabinary ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/cosmic-settings/package.nix b/pkgs/by-name/co/cosmic-settings/package.nix index 05d77af668b84..89e583a711b35 100644 --- a/pkgs/by-name/co/cosmic-settings/package.nix +++ b/pkgs/by-name/co/cosmic-settings/package.nix @@ -71,12 +71,12 @@ rustPlatform.buildRustPackage rec { --suffix XDG_DATA_DIRS : "$out/share:${cosmic-icons}/share" ''; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-settings"; description = "Settings for the COSMIC Desktop Environment"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nyabinary ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nyabinary ]; + platforms = lib.platforms.linux; mainProgram = "cosmic-settings"; }; } diff --git a/pkgs/by-name/co/cosmic-store/package.nix b/pkgs/by-name/co/cosmic-store/package.nix index 9243b818a1c90..709e5aca79777 100644 --- a/pkgs/by-name/co/cosmic-store/package.nix +++ b/pkgs/by-name/co/cosmic-store/package.nix @@ -107,14 +107,14 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-store"; description = "App Store for the COSMIC Desktop Environment"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ahoneybun nyabinary ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/cosmic-term/package.nix b/pkgs/by-name/co/cosmic-term/package.nix index d4c18e6a96880..2249faec501c2 100644 --- a/pkgs/by-name/co/cosmic-term/package.nix +++ b/pkgs/by-name/co/cosmic-term/package.nix @@ -93,15 +93,15 @@ rustPlatform.buildRustPackage rec { } ''; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-term"; description = "Terminal for the COSMIC Desktop Environment"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ahoneybun nyabinary ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "cosmic-term"; }; } diff --git a/pkgs/by-name/co/cosmic-workspaces-epoch/package.nix b/pkgs/by-name/co/cosmic-workspaces-epoch/package.nix index e487328a1f2f1..914a520025a28 100644 --- a/pkgs/by-name/co/cosmic-workspaces-epoch/package.nix +++ b/pkgs/by-name/co/cosmic-workspaces-epoch/package.nix @@ -53,12 +53,12 @@ rustPlatform.buildRustPackage rec { "-Wl,--pop-state" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/cosmic-workspaces-epoch"; description = "Workspaces Epoch for the COSMIC Desktop Environment"; mainProgram = "cosmic-workspaces"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nyabinary ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nyabinary ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/co/costa/package.nix b/pkgs/by-name/co/costa/package.nix index 30c3c94a32025..09127882da2d6 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 fb625cf570a78..a8f7a9de2eb00 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 7558ad3dadff4..1ac064dc6128d 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/coursier/package.nix b/pkgs/by-name/co/coursier/package.nix index 74fbec4ad2261..332b8d714477e 100644 --- a/pkgs/by-name/co/coursier/package.nix +++ b/pkgs/by-name/co/coursier/package.nix @@ -66,15 +66,15 @@ 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 nequissimus ]; - 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 4599339409aae..321199be6bad3 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 2149283645f63..830b357c65544 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 732356fdf543f..9aee05722687e 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 d0182f75792ad..32c1e0f921dbf 100644 --- a/pkgs/by-name/co/cozy/package.nix +++ b/pkgs/by-name/co/cozy/package.nix @@ -74,15 +74,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 36bd9eb1d5031..a691a8c2f9d7a 100644 --- a/pkgs/by-name/cp/cp210x-program/package.nix +++ b/pkgs/by-name/cp/cp210x-program/package.nix @@ -24,10 +24,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 e5cae69edd0ee..4bc341e2db3fa 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 b726e17a1f66d..4e347430250a5 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 879b52a98c7d5..58f52f5da5525 100644 --- a/pkgs/by-name/cp/cpio/package.nix +++ b/pkgs/by-name/cp/cpio/package.nix @@ -36,11 +36,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 7d6a65aa61c90..d2cc97ca837c1 100644 --- a/pkgs/by-name/cp/cpp-hocon/package.nix +++ b/pkgs/by-name/cp/cpp-hocon/package.nix @@ -33,12 +33,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 322f911d30267..2cc2b05107a9f 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 f70795a462bfb..d30d58bdcc60f 100644 --- a/pkgs/by-name/cp/cpp-netlib/package.nix +++ b/pkgs/by-name/cp/cpp-netlib/package.nix @@ -35,10 +35,10 @@ stdenv.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/cppclean/package.nix b/pkgs/by-name/cp/cppclean/package.nix index c260929b2d9ef..33ba2c97c4470 100644 --- a/pkgs/by-name/cp/cppclean/package.nix +++ b/pkgs/by-name/cp/cppclean/package.nix @@ -25,12 +25,12 @@ 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 d9c59640ba5d5..aba0b7ceaf30d 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 0f08e3ee636da..b692fe1ff8b32 100644 --- a/pkgs/by-name/cp/cppcodec/package.nix +++ b/pkgs/by-name/cp/cppcodec/package.nix @@ -18,7 +18,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, @@ -26,8 +26,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 0e92f0f2df815..aca102361cbbb 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 a976ee843e77f..36915c27cc604 100644 --- a/pkgs/by-name/cp/cppe/package.nix +++ b/pkgs/by-name/cp/cppe/package.nix @@ -21,11 +21,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/cpptest/package.nix b/pkgs/by-name/cp/cpptest/package.nix index 77045357c1a29..8ee7b241aa3f3 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 1dac726cc7b5a..68ec21d1043f7 100644 --- a/pkgs/by-name/cp/cpptoml/package.nix +++ b/pkgs/by-name/cp/cpptoml/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { "-DCPPTOML_BUILD_EXAMPLES=OFF" ]; - 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/cpputest/package.nix b/pkgs/by-name/cp/cpputest/package.nix index 3d272be32fea2..9690ef1b5988a 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 a100bbdb9bc83..dda74e14bbb23 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 = with maintainers; [ abbradar ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ abbradar ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cp/cproto/package.nix b/pkgs/by-name/cp/cproto/package.nix index eb473627c45d4..7accfb51a4491 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 42d496badab35..f2714d29c1cc4 100644 --- a/pkgs/by-name/cp/cpu-energy-meter/package.nix +++ b/pkgs/by-name/cp/cpu-energy-meter/package.nix @@ -29,12 +29,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 2e0c26314192f..5af30e3ba78b5 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 = "A 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 3acd772bdd3c3..c739aa6a0ca8d 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 e656212991f95..3aa7b739ef5de 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 3e143ac49887e..14a9d4d28b054 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 6f17492b89ccb..9878618bdb50b 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 f9af9b8893b6a..fb7775cbbb4e5 100644 --- a/pkgs/by-name/cp/cpuset/package.nix +++ b/pkgs/by-name/cp/cpuset/package.nix @@ -25,12 +25,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 515f121b31527..07f0a2f587ed8 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 a6099418574ee..f70edfb8996f4 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/cracklib/package.nix b/pkgs/by-name/cr/cracklib/package.nix index 76bdad640f0b0..d15df7bd20c4d 100644 --- a/pkgs/by-name/cr/cracklib/package.nix +++ b/pkgs/by-name/cr/cracklib/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { doInstallCheck = true; installCheckTarget = "test"; - meta = with lib; { + meta = { homepage = "https://github.com/cracklib/cracklib"; description = "Library for checking the strength of passwords"; - license = licenses.lgpl21; # Different license for the wordlist: http://www.openwall.com/wordlists - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21; # Different license for the wordlist: http://www.openwall.com/wordlists + maintainers = with lib.maintainers; [ lovek323 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cr/crackql/package.nix b/pkgs/by-name/cr/crackql/package.nix index f0292a51c9a5f..acb73e9e8eac7 100644 --- a/pkgs/by-name/cr/crackql/package.nix +++ b/pkgs/by-name/cr/crackql/package.nix @@ -33,11 +33,11 @@ python3.pkgs.buildPythonApplication rec { typing-extensions ]; - 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/crackxls/package.nix b/pkgs/by-name/cr/crackxls/package.nix index b14153eb44bc5..bf4a36cc09617 100644 --- a/pkgs/by-name/cr/crackxls/package.nix +++ b/pkgs/by-name/cr/crackxls/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { cp crackxls2003 $out/bin/ ''; - meta = with lib; { + meta = { homepage = "https://github.com/GavinSmith0123/crackxls2003/"; description = "Used to break the encryption on old Microsoft Excel and Microsoft Word files"; mainProgram = "crackxls2003"; - platforms = platforms.linux; - license = licenses.gpl3; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/cr/cramfsprogs/package.nix b/pkgs/by-name/cr/cramfsprogs/package.nix index f626203c0bfa2..eafb79f8c215c 100644 --- a/pkgs/by-name/cr/cramfsprogs/package.nix +++ b/pkgs/by-name/cr/cramfsprogs/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { buildInputs = [ zlib ]; - meta = with lib; { + meta = { description = "Tools to create, check, and extract content of CramFs images"; homepage = "https://packages.debian.org/jessie/cramfsprogs"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ pamplemousse ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ pamplemousse ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cr/cramfsswap/package.nix b/pkgs/by-name/cr/cramfsswap/package.nix index 922f7323dd3c3..9d3b5b75c343c 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/crawley/package.nix b/pkgs/by-name/cr/crawley/package.nix index fa0e0b0fc9fab..903928cd481f2 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 e1f5102168579..d816cf800d403 100644 --- a/pkgs/by-name/cr/crc32c/package.nix +++ b/pkgs/by-name/cr/crc32c/package.nix @@ -51,10 +51,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 f14c9851b715a..b0ca7571fb5d2 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; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/by-name/cr/cre2/package.nix b/pkgs/by-name/cr/cre2/package.nix index af76bad7020ee..4d077f644ffe0 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 0f96450cf6e08..e43c9f62205c8 100644 --- a/pkgs/by-name/cr/createrepo_c/package.nix +++ b/pkgs/by-name/cr/createrepo_c/package.nix @@ -60,11 +60,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; - maintainers = with maintainers; [ copumpkin ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ copumpkin ]; }; } diff --git a/pkgs/by-name/cr/credential-detector/package.nix b/pkgs/by-name/cr/credential-detector/package.nix index 145f12910e822..51af4f7e7872e 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/credslayer/package.nix b/pkgs/by-name/cr/credslayer/package.nix index 62c16cfdde7e0..7c960db24170c 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 365f91e84909d..650cddce4a413 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 3958fd61d1e11..bf982f754d9dc 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/crimson-pro/package.nix b/pkgs/by-name/cr/crimson-pro/package.nix index 346737be8f107..6a8ad9dbcb4b1 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 4fc3b3e7af8de..3a9233f7d8fcc 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 b15754fdf12e9..1a73010ba67da 100644 --- a/pkgs/by-name/cr/critcmp/package.nix +++ b/pkgs/by-name/cr/critcmp/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-yzWa+/08tG8h+5V8XBc3k8GDivS6SHW6zVb+ug1sbE0="; - 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/cr/criu/package.nix b/pkgs/by-name/cr/criu/package.nix index b49c526af1837..54055fe5bb2ea 100644 --- a/pkgs/by-name/cr/criu/package.nix +++ b/pkgs/by-name/cr/criu/package.nix @@ -136,15 +136,15 @@ 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" ]; - 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 dadb9067590f8..a2c20f5dab084 100644 --- a/pkgs/by-name/cr/crlfsuite/package.nix +++ b/pkgs/by-name/cr/crlfsuite/package.nix @@ -28,12 +28,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 f9b750da7642e..c0e6f55d07d9d 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/cro-mag-rally/package.nix b/pkgs/by-name/cr/cro-mag-rally/package.nix index 0cc55c3fb0f6d..4ba9030ac20f8 100644 --- a/pkgs/by-name/cr/cro-mag-rally/package.nix +++ b/pkgs/by-name/cr/cro-mag-rally/package.nix @@ -38,13 +38,13 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Port of Cro-Mag Rally, a 2000 Macintosh game by Pangea Software, for modern operating systems"; homepage = "https://github.com/jorio/CroMagRally"; changelog = "https://github.com/jorio/CroMagRally/releases"; - license = licenses.cc-by-sa-40; - maintainers = with maintainers; [ lux ]; - platforms = platforms.linux; + license = lib.licenses.cc-by-sa-40; + maintainers = with lib.maintainers; [ lux ]; + platforms = lib.platforms.linux; mainProgram = "CroMagRally"; }; } diff --git a/pkgs/by-name/cr/croaring/package.nix b/pkgs/by-name/cr/croaring/package.nix index 70d6a68847091..1f4674b113a2e 100644 --- a/pkgs/by-name/cr/croaring/package.nix +++ b/pkgs/by-name/cr/croaring/package.nix @@ -37,14 +37,14 @@ stdenv.mkDerivation rec { } dependencies/.cache/cmocka ''; - meta = with lib; { + meta = { description = "Compressed bitset library for C and C++"; homepage = "https://roaringbitmap.org/"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = [ maintainers.orivej ]; - platforms = platforms.all; + maintainers = [ lib.maintainers.orivej ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cr/crocoddyl/package.nix b/pkgs/by-name/cr/crocoddyl/package.nix index a1a283727743f..97f444a72a97d 100644 --- a/pkgs/by-name/cr/crocoddyl/package.nix +++ b/pkgs/by-name/cr/crocoddyl/package.nix @@ -76,14 +76,14 @@ stdenv.mkDerivation (finalAttrs: { pythonImportsCheck = [ "crocoddyl" ]; checkInputs = lib.optionals pythonSupport [ python3Packages.scipy ]; - 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 99e9dff260ccc..0465bf6e506d0 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/crossguid/package.nix b/pkgs/by-name/cr/crossguid/package.nix index 238d4e834daf7..b8ea2adf87652 100644 --- a/pkgs/by-name/cr/crossguid/package.nix +++ b/pkgs/by-name/cr/crossguid/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { 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/crowbar/package.nix b/pkgs/by-name/cr/crowbar/package.nix index 8cd303b6b72f1..8f9321262569a 100644 --- a/pkgs/by-name/cr/crowbar/package.nix +++ b/pkgs/by-name/cr/crowbar/package.nix @@ -34,11 +34,11 @@ python3Packages.buildPythonApplication rec { $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/crudini/package.nix b/pkgs/by-name/cr/crudini/package.nix index ae8387c374b36..e36fb26f73d20 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 cc0a7aab71e70..4e9cf91539997 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 e09c652b988dc..2902414205f82 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-org-wallet/package.nix b/pkgs/by-name/cr/crypto-org-wallet/package.nix index 8d9dd44be874b..718dae99cf68e 100644 --- a/pkgs/by-name/cr/crypto-org-wallet/package.nix +++ b/pkgs/by-name/cr/crypto-org-wallet/package.nix @@ -27,11 +27,11 @@ appimageTools.wrapType2 rec { --replace 'Exec=AppRun --no-sandbox %U' 'Exec=${pname} %U' ''; - meta = with lib; { + meta = { description = "Crypto.org Chain desktop wallet (Beta)"; homepage = "https://github.com/crypto-com/chain-desktop-wallet"; - license = licenses.asl20; - maintainers = with maintainers; [ th0rgal ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ th0rgal ]; platforms = [ "x86_64-linux" ]; mainProgram = "chain-desktop-wallet"; }; diff --git a/pkgs/by-name/cr/crypto-tracker/package.nix b/pkgs/by-name/cr/crypto-tracker/package.nix index 34c3c63409595..aa88c34ed9e3e 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 9c99d0c0555f3..16683bd8ac4fe 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/crystal-dock/package.nix b/pkgs/by-name/cr/crystal-dock/package.nix index dfd059d6d7e0f..2fe7b89694817 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 8232e8e42d7ed..45213b138855c 100644 --- a/pkgs/by-name/cr/crystal2nix/package.nix +++ b/pkgs/by-name/cr/crystal2nix/package.nix @@ -33,11 +33,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 a839c9b9f5da5..b60761520f6e6 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 76d137b49e1fe..ad8f8fd1abc86 100644 --- a/pkgs/by-name/cs/csdr/package.nix +++ b/pkgs/by-name/cs/csdr/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { --replace '=''${exec_prefix}//' '=/' ''; - 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; - maintainers = teams.c3d2.members; + maintainers = lib.teams.c3d2.members; }; } diff --git a/pkgs/by-name/cs/csfml/package.nix b/pkgs/by-name/cs/csfml/package.nix index 08d98928d77e9..beb47e95939b0 100644 --- a/pkgs/by-name/cs/csfml/package.nix +++ b/pkgs/by-name/cs/csfml/package.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { buildInputs = [ sfml ]; cmakeFlags = [ "-DCMAKE_MODULE_PATH=${sfml}/share/SFML/cmake/Modules/" ]; - meta = with lib; { + meta = { homepage = "https://www.sfml-dev.org/"; description = "Simple and fast multimedia library"; longDescription = '' @@ -27,8 +27,8 @@ stdenv.mkDerivation rec { It provides access to windowing, graphics, audio and network. It is written in C++, and has bindings for various languages such as C, .Net, Ruby, Python. ''; - license = licenses.zlib; - maintainers = [ maintainers.jpdoyle ]; - platforms = platforms.linux; + license = lib.licenses.zlib; + maintainers = [ lib.maintainers.jpdoyle ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cs/csharpier/package.nix b/pkgs/by-name/cs/csharpier/package.nix index 4268039986234..1b46aef1bc9d1 100644 --- a/pkgs/by-name/cs/csharpier/package.nix +++ b/pkgs/by-name/cs/csharpier/package.nix @@ -7,12 +7,12 @@ buildDotnetGlobalTool { nugetHash = "sha256-8NuhwRhvEZtmPtgbLLNbTOLUoDAihtkKE8aw5UQ0O5A="; - 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 = "dotnet-csharpier"; }; } diff --git a/pkgs/by-name/cs/cshatag/package.nix b/pkgs/by-name/cs/cshatag/package.nix index 16dedcf39cffd..9bc1ff45ea795 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 f14f2644aac5a..851587419b57d 100644 --- a/pkgs/by-name/cs/csmith/package.nix +++ b/pkgs/by-name/cs/csmith/package.nix @@ -49,11 +49,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 @@ -62,6 +62,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 7cfdd0a1fdcc7..52437fb368f92 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 ef5038ec9cb77..562ce1ce8498d 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 cf214a2720a67..eb661d22d8814 100644 --- a/pkgs/by-name/cs/csv2latex/package.nix +++ b/pkgs/by-name/cs/csv2latex/package.nix @@ -18,11 +18,11 @@ 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; - maintainers = [ maintainers.catern ]; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.catern ]; mainProgram = "csv2latex"; }; } diff --git a/pkgs/by-name/cs/csv2parquet/package.nix b/pkgs/by-name/cs/csv2parquet/package.nix index 8261242f2da2d..737ce8be42251 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-GoUmr1NArOyGx1A9E9K/Od0xXR2YxZqBcBdYFumgIJU="; - 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 d9c56f76bb68e..958e406545bf2 100644 --- a/pkgs/by-name/cs/csv2svg/package.nix +++ b/pkgs/by-name/cs/csv2svg/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-EIsKb9BzM+H3BO7OpoTmvIvGd578gYSq5vU18BejT0s="; - meta = with lib; { + meta = { description = "Take a csv as input and outputs svg"; homepage = "https://github.com/Canop/csv2svg"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "csv2svg"; }; } diff --git a/pkgs/by-name/cs/csvdiff/package.nix b/pkgs/by-name/cs/csvdiff/package.nix index 7653b8479c8a2..437313f383f03 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 69d015ebd9742..9a525c6eeb3d8 100644 --- a/pkgs/by-name/cs/csview/package.nix +++ b/pkgs/by-name/cs/csview/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-mH1YpuYahdHFS+1cK9dryHbUqjewdbkNGxRBUOd2Hws="; - 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/cs/csvquote/package.nix b/pkgs/by-name/cs/csvquote/package.nix index 7a3b1c8bab157..01259f400fcb3 100644 --- a/pkgs/by-name/cs/csvquote/package.nix +++ b/pkgs/by-name/cs/csvquote/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { patsh $out/bin/csvheader -fs ${builtins.storeDir} ''; - 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; - maintainers = with maintainers; [ figsoda ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cs/csxcad/package.nix b/pkgs/by-name/cs/csxcad/package.nix index 5482166b4d76f..c86ae3ebb615e 100644 --- a/pkgs/by-name/cs/csxcad/package.nix +++ b/pkgs/by-name/cs/csxcad/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "C++ library to describe geometrical objects"; homepage = "https://github.com/thliebig/CSXCAD"; - license = licenses.lgpl3; - maintainers = with maintainers; [ matthuszagh ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ matthuszagh ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ct/ctlptl/package.nix b/pkgs/by-name/ct/ctlptl/package.nix index c47507844d697..ecd765d6f95ce 100644 --- a/pkgs/by-name/ct/ctlptl/package.nix +++ b/pkgs/by-name/ct/ctlptl/package.nix @@ -35,10 +35,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 6faac6f8d3d44..90cdfe0df74fd 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 294735bc107e5..5c3b2202f61ac 100644 --- a/pkgs/by-name/ct/ctodo/package.nix +++ b/pkgs/by-name/ct/ctodo/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { readline ]; - 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 1af537b225d24..6751fb0cf265a 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 d83bd2c456ea1..a7287ea2cc9a9 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 8848ed9ea58b3..45590ddef4197 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/ctre/package.nix b/pkgs/by-name/ct/ctre/package.nix index f0418ae956e83..7e4ac41fe242a 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/ctrtool/package.nix b/pkgs/by-name/ct/ctrtool/package.nix index cbfed6b847546..e2f25273befbf 100644 --- a/pkgs/by-name/ct/ctrtool/package.nix +++ b/pkgs/by-name/ct/ctrtool/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { rev-prefix = "ctrtool-v"; }; - meta = with lib; { - license = licenses.mit; + meta = { + license = lib.licenses.mit; description = "Tool to extract data from a 3ds rom"; - platforms = platforms.linux; - maintainers = [ maintainers.marius851000 ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.marius851000 ]; mainProgram = "ctrtool"; }; diff --git a/pkgs/by-name/ct/ctypes_sh/package.nix b/pkgs/by-name/ct/ctypes_sh/package.nix index 686bca23d3908..f5cc28f0211f2 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/cucumber/package.nix b/pkgs/by-name/cu/cucumber/package.nix index 00354c0eb35ff..1e7c84e49c101 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 030c18b872486..02b6cdf2947ba 100644 --- a/pkgs/by-name/cu/cudd/package.nix +++ b/pkgs/by-name/cu/cudd/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { 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 948478fc08068..0b5e8badb6fd9 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 8bc52e23dbc42..0b21524c1fcd4 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 a2c69e5df2c54..ec6bac274cfab 100644 --- a/pkgs/by-name/cu/culvert/package.nix +++ b/pkgs/by-name/cu/culvert/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { "-Db_lto=false" ]; - meta = with lib; { + meta = { homepage = "https://github.com/amboar/culvert"; description = "A 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 158ce2015da9e..a1b72b6cbd724 100644 --- a/pkgs/by-name/cu/cum/package.nix +++ b/pkgs/by-name/cu/cum/package.nix @@ -35,12 +35,12 @@ 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 2a677a51923bf..dd36924d12743 100644 --- a/pkgs/by-name/cu/cuneiform/package.nix +++ b/pkgs/by-name/cu/cuneiform/package.nix @@ -55,12 +55,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-kyocera-ecosys-m2x35-40-p2x35-40dnw/package.nix b/pkgs/by-name/cu/cups-kyocera-ecosys-m2x35-40-p2x35-40dnw/package.nix index 4c5fb5839c116..5985d2efebdce 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-ecosys-m552x-p502x/package.nix b/pkgs/by-name/cu/cups-kyocera-ecosys-m552x-p502x/package.nix index 2a263b04cfcc3..b2778b00e3bcd 100644 --- a/pkgs/by-name/cu/cups-kyocera-ecosys-m552x-p502x/package.nix +++ b/pkgs/by-name/cu/cups-kyocera-ecosys-m552x-p502x/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cp ${region}/English/*.PPD $out/share/cups/model/Kyocera/ ''; - meta = with lib; { + meta = { description = "PPD files for Kyocera ECOSYS M5521cdn/M5521cdw/M5526cdn/M5526cdw/P5021cdn/P5021cdw/P5026cdn/P5026cdw"; homepage = "https://www.kyoceradocumentsolutions.com"; - license = licenses.unfree; - maintainers = [ maintainers.mbrgm ]; - platforms = platforms.linux; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.mbrgm ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cu/cups-toshiba-estudio/package.nix b/pkgs/by-name/cu/cups-toshiba-estudio/package.nix index e73abb435ff20..b506f523e654e 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 d36607d762494..1cdfb23c115c5 100644 --- a/pkgs/by-name/cu/cups-zj-58/package.nix +++ b/pkgs/by-name/cu/cups-zj-58/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation { install -D ZJ-58.ppd $out/share/cups/model/zjiang/ZJ-58.ppd ''; - 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; [ makefu ]; - license = licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ makefu ]; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/by-name/cu/curie/package.nix b/pkgs/by-name/cu/curie/package.nix index 63d14ddfc34e6..b5b637884402c 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/NerdyPepper/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/curlftpfs/package.nix b/pkgs/by-name/cu/curlftpfs/package.nix index 794544a22aaef..fcf9fc9e6f771 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/curlie/package.nix b/pkgs/by-name/cu/curlie/package.nix index b215a3dfb105d..dcb7a94c4a9f5 100644 --- a/pkgs/by-name/cu/curlie/package.nix +++ b/pkgs/by-name/cu/curlie/package.nix @@ -34,11 +34,11 @@ buildGoModule rec { command = "curlie version"; }; - meta = with lib; { + meta = { description = "Frontend to curl that adds the ease of use of httpie, without compromising on features and performance"; homepage = "https://curlie.io/"; - maintainers = with maintainers; [ ma27 ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ ma27 ]; + license = lib.licenses.mit; mainProgram = "curlie"; }; } diff --git a/pkgs/by-name/cu/curlpp/package.nix b/pkgs/by-name/cu/curlpp/package.nix index eb2c8f8f95e61..75db7986ffde6 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; - maintainers = with maintainers; [ CrazedProgrammer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ CrazedProgrammer ]; }; } diff --git a/pkgs/by-name/cu/curseradio/package.nix b/pkgs/by-name/cu/curseradio/package.nix index 431d600830ca7..f8b1bebfc7573 100644 --- a/pkgs/by-name/cu/curseradio/package.nix +++ b/pkgs/by-name/cu/curseradio/package.nix @@ -32,11 +32,11 @@ python3Packages.buildPythonApplication rec { # 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 f4f3d808cab3f..5982eab3ac627 100644 --- a/pkgs/by-name/cu/cursewords/package.nix +++ b/pkgs/by-name/cu/cursewords/package.nix @@ -25,12 +25,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 e52f20734c4dc..b3c8f97e043ab 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; maintainers = lib.teams.gnome-circle.members; }; } diff --git a/pkgs/by-name/cu/curv/package.nix b/pkgs/by-name/cu/curv/package.nix index a70b9ac3d5d6f..0991688493ef7 100644 --- a/pkgs/by-name/cu/curv/package.nix +++ b/pkgs/by-name/cu/curv/package.nix @@ -65,13 +65,13 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "2D and 3D geometric modelling programming language for creating art with maths"; homepage = "https://github.com/curv3d/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 a25111f7a3ddf..c0e7eabc66df0 100644 --- a/pkgs/by-name/cu/cutee/package.nix +++ b/pkgs/by-name/cu/cutee/package.nix @@ -20,12 +20,12 @@ 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; - maintainers = with maintainers; [ leenaars ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ leenaars ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cv/cvc4/package.nix b/pkgs/by-name/cv/cvc4/package.nix index 9cd516c7aa8ba..ba0d6bfeba796 100644 --- a/pkgs/by-name/cv/cvc4/package.nix +++ b/pkgs/by-name/cv/cvc4/package.nix @@ -65,13 +65,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 gebner diff --git a/pkgs/by-name/cv/cvs-fast-export/package.nix b/pkgs/by-name/cv/cvs-fast-export/package.nix index 86d78a751d3ce..d4ce023e43290 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/cvs2svn/package.nix b/pkgs/by-name/cv/cvs2svn/package.nix index c493c07d97bbc..c6632bd5b8ca6 100644 --- a/pkgs/by-name/cv/cvs2svn/package.nix +++ b/pkgs/by-name/cv/cvs2svn/package.nix @@ -43,14 +43,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 8e3da631217e3..0eb3cb224597b 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 c6ec2f0dbd728..f0b04d5e89212 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 c9b842e6a4932..f5b842080d771 100644 --- a/pkgs/by-name/cw/cwiid/package.nix +++ b/pkgs/by-name/cw/cwiid/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { 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 24fa80afbd223..e30b544235228 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-rs/package.nix b/pkgs/by-name/cx/cxx-rs/package.nix index 88d0bf8d66376..b63354b1d31d5 100644 --- a/pkgs/by-name/cx/cxx-rs/package.nix +++ b/pkgs/by-name/cx/cxx-rs/package.nix @@ -55,11 +55,11 @@ rustPlatform.buildRustPackage rec { 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 9fa2156ce3008..dc19a9c99b8ef 100644 --- a/pkgs/by-name/cx/cxxopts/package.nix +++ b/pkgs/by-name/cx/cxxopts/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { --replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@ ''; - meta = with lib; { + meta = { homepage = "https://github.com/jarro2783/cxxopts"; description = "Lightweight C++ GNU-style option parser library"; - license = licenses.mit; - maintainers = [ maintainers.spease ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.spease ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cy/cyan/package.nix b/pkgs/by-name/cy/cyan/package.nix index 0e625169ab3ac..233ac1887c3eb 100644 --- a/pkgs/by-name/cy/cyan/package.nix +++ b/pkgs/by-name/cy/cyan/package.nix @@ -30,12 +30,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 2af30984eecc6..e783e2d36ed79 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/cyber/package.nix b/pkgs/by-name/cy/cyber/package.nix index 651e8aed7d6d0..a26e618a4f7b1 100644 --- a/pkgs/by-name/cy/cyber/package.nix +++ b/pkgs/by-name/cy/cyber/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { COMMIT = lib.substring 0 7 src.rev; }; - meta = with lib; { + meta = { description = "Fast, efficient, and concurrent scripting language"; mainProgram = "cyber"; homepage = "https://github.com/fubark/cyber"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; inherit (zig_0_11.meta) platforms; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/cy/cyberduck/package.nix b/pkgs/by-name/cy/cyberduck/package.nix index cec9f93214dfb..d820cc6668ca0 100644 --- a/pkgs/by-name/cy/cyberduck/package.nix +++ b/pkgs/by-name/cy/cyberduck/package.nix @@ -25,12 +25,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Libre file transfer client for Mac and Windows"; homepage = "https://cyberduck.io"; - 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/cy/cyclone-scheme/package.nix b/pkgs/by-name/cy/cyclone-scheme/package.nix index 178c427c63ae0..be37c1cf35d43 100644 --- a/pkgs/by-name/cy/cyclone-scheme/package.nix +++ b/pkgs/by-name/cy/cyclone-scheme/package.nix @@ -47,10 +47,10 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "https://justinethier.github.io/cyclone/"; description = "Brand-new compiler that allows practical application development using R7RS Scheme"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; }; } diff --git a/pkgs/by-name/cy/cyclone/package.nix b/pkgs/by-name/cy/cyclone/package.nix index d14695e858b43..512708366edab 100644 --- a/pkgs/by-name/cy/cyclone/package.nix +++ b/pkgs/by-name/cy/cyclone/package.nix @@ -28,14 +28,14 @@ stdenv.mkDerivation rec { rm -rf $out/lib ''; - meta = with lib; { + meta = { description = "Library of PureData classes, bringing some level of compatibility between Max/MSP and Pd environments"; homepage = "http://puredata.info/downloads/cyclone"; - license = licenses.tcltk; - maintainers = with maintainers; [ + license = lib.licenses.tcltk; + maintainers = with lib.maintainers; [ magnetophon carlthome ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/cy/cyclonedds-cxx/package.nix b/pkgs/by-name/cy/cyclonedds-cxx/package.nix index 4e556d718c268..3dd19cdb4b325 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 dca6111c6cc50..7af6b7e22425b 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/cyrus-sasl-xoauth2/package.nix b/pkgs/by-name/cy/cyrus-sasl-xoauth2/package.nix index 922d38422877e..291f6f84a639a 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/cz/czmq/package.nix b/pkgs/by-name/cz/czmq/package.nix index 8ae99d51d61ce..083dcb7e5030e 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 2ac502514a8a5..df2dc12006466 100644 --- a/pkgs/by-name/d-/d-seams/package.nix +++ b/pkgs/by-name/d-/d-seams/package.nix @@ -52,7 +52,7 @@ clangStdenv.mkDerivation rec { blas ]; - meta = with lib; { + meta = { description = "d-SEAMS: Deferred Structural Elucidation Analysis for Molecular Simulations"; mainProgram = "yodaStruct"; longDescription = '' @@ -63,8 +63,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 860e9cea1574f..435bb9285b4d8 100644 --- a/pkgs/by-name/d-/d-spy/package.nix +++ b/pkgs/by-name/d-/d-spy/package.nix @@ -51,15 +51,15 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "D-Bus exploration tool"; mainProgram = "d-spy"; homepage = "https://gitlab.gnome.org/GNOME/d-spy"; - license = with licenses; [ + license = with lib.licenses; [ lgpl3Plus # library gpl3Plus # app ]; - maintainers = teams.gnome.members; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/d2/d2coding/package.nix b/pkgs/by-name/d2/d2coding/package.nix index 02c5c61b6b386..ed1862de9250a 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 fd3cb016e54e3..9fb4fda408aff 100644 --- a/pkgs/by-name/da/dab_lib/package.nix +++ b/pkgs/by-name/da/dab_lib/package.nix @@ -32,11 +32,11 @@ 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; [ alexwinter ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ alexwinter ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/da/dabet/package.nix b/pkgs/by-name/da/dabet/package.nix index 617be31860bfc..c09d67d3468f3 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-kguQmCXP5+E6e8CSKP18faa93VKToU2pcQixDOBrd+8="; - 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 176909ca54310..a357ec2a2efe6 100644 --- a/pkgs/by-name/da/dabtools/package.nix +++ b/pkgs/by-name/da/dabtools/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation { libusb1 ]; - 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 e922158b90b1c..4df4d815592e8 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/dae/package.nix b/pkgs/by-name/da/dae/package.nix index fb13ce6b10c32..8b3fa35e6c1f3 100644 --- a/pkgs/by-name/da/dae/package.nix +++ b/pkgs/by-name/da/dae/package.nix @@ -54,16 +54,16 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Linux high-performance transparent proxy solution based on eBPF"; homepage = "https://github.com/daeuniverse/dae"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ oluceps pokon548 luochen1990 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "dae"; }; } diff --git a/pkgs/by-name/da/daemon/package.nix b/pkgs/by-name/da/daemon/package.nix index 3a323e12f2772..fd1faab167a63 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,9 +30,9 @@ stdenv.mkDerivation rec { writing daemons in languages other than C, C++ or Perl (e.g. /bin/sh, Java). ''; - license = licenses.gpl2Plus; - maintainers = [ maintainers.sander ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.sander ]; + 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 6d8339f390007..7f6e2f82acdb6 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 6ff063fdc4b5c..6c7a3a8a0e193 100644 --- a/pkgs/by-name/da/dafny/package.nix +++ b/pkgs/by-name/da/dafny/package.nix @@ -99,11 +99,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/dale/package.nix b/pkgs/by-name/da/dale/package.nix index 350a54f650cc9..0207422c5e0dd 100644 --- a/pkgs/by-name/da/dale/package.nix +++ b/pkgs/by-name/da/dale/package.nix @@ -34,15 +34,15 @@ stdenv.mkDerivation { checkTarget = "tests"; - meta = with lib; { + meta = { description = "Lisp-flavoured C"; longDescription = '' Dale is a system (no GC) programming language that uses S-expressions for syntax and supports syntactic macros. ''; homepage = "https://github.com/tomhrr/dale"; - license = licenses.bsd3; - maintainers = with maintainers; [ amiloradovsky ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ amiloradovsky ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/da/damon/package.nix b/pkgs/by-name/da/damon/package.nix index 81f227a3c8fbd..8c527c88dd8d5 100644 --- a/pkgs/by-name/da/damon/package.nix +++ b/pkgs/by-name/da/damon/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { 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"; - maintainers = teams.iog.members; + maintainers = lib.teams.iog.members; mainProgram = "damon"; }; } diff --git a/pkgs/by-name/da/dancing-script/package.nix b/pkgs/by-name/da/dancing-script/package.nix index 118c07d448167..fe1610a1b11a2 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/dap/package.nix b/pkgs/by-name/da/dap/package.nix index 8460818592280..1660c9dd8bb7d 100644 --- a/pkgs/by-name/da/dap/package.nix +++ b/pkgs/by-name/da/dap/package.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/dap"; description = "Small statistics and graphics package based on C"; longDescription = '' @@ -31,8 +31,8 @@ stdenv.mkDerivation rec { ANOVA, categorical data analysis, logistic regression, and nonparametric analyses). ''; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/da/dapper/package.nix b/pkgs/by-name/da/dapper/package.nix index f367aae65d9f8..1b2af9fe4a3a5 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 eed817b61e769..7cf9a835f7953 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/darkhttpd/package.nix b/pkgs/by-name/da/darkhttpd/package.nix index de0610557de43..c3092825575ae 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/darkman/package.nix b/pkgs/by-name/da/darkman/package.nix index 34c4748a37431..624ca2bcc7f8f 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 dd0bf83fceb70..a84f865c96af7 100644 --- a/pkgs/by-name/da/darkplaces/package.nix +++ b/pkgs/by-name/da/darkplaces/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { $out/bin/darkplaces ''; - meta = with lib; { + meta = { homepage = "https://www.icculus.org/twilight/darkplaces/"; description = "Quake 1 engine implementation by LadyHavoc"; longDescription = '' @@ -52,8 +52,8 @@ stdenv.mkDerivation rec { 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 9f4f436275c6e..fde81c4e45bfc 100644 --- a/pkgs/by-name/da/darling-dmg/package.nix +++ b/pkgs/by-name/da/darling-dmg/package.nix @@ -45,12 +45,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/darling/package.nix b/pkgs/by-name/da/darling/package.nix index 2a161397bca25..c10a4b101a2cd 100644 --- a/pkgs/by-name/da/darling/package.nix +++ b/pkgs/by-name/da/darling/package.nix @@ -255,12 +255,12 @@ stdenv.mkDerivation { passthru.tests.nixos = nixosTests.darling; - meta = with lib; { + meta = { description = "Open-source Darwin/macOS emulation layer for Linux"; homepage = "https://www.darlinghq.org"; changelog = "https://github.com/darlinghq/darling/releases"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ zhaofengli ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ zhaofengli ]; platforms = [ "x86_64-linux" ]; mainProgram = "darling"; }; diff --git a/pkgs/by-name/da/das_watchdog/package.nix b/pkgs/by-name/da/das_watchdog/package.nix index 31a33eee2bde5..c08259e70aa80 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 6fe83258a58a8..c177f51737632 100644 --- a/pkgs/by-name/da/dash/package.nix +++ b/pkgs/by-name/da/dash/package.nix @@ -44,11 +44,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 58fb7f68b1ba7..ef858180807ce 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 578d49a7639fc..688465cad1827 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/datamash/package.nix b/pkgs/by-name/da/datamash/package.nix index abd51be89721d..136f3c9696e5c 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-etl+jH72Ft0DqlvWeuJMSIJy2z59H1d0FhwYt18p9v0="; }; - 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 2e794bda64003..6c757a13da38b 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 89b83a0284cee..94784de5ebdfd 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,9 +43,9 @@ stdenv.mkDerivation rec { gettimeofday and clock_gettime system calls. ''; homepage = "https://packages.qa.debian.org/d/datefudge.html"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ leenaars ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ leenaars ]; mainProgram = "datefudge"; }; } diff --git a/pkgs/by-name/da/dateutils/package.nix b/pkgs/by-name/da/dateutils/package.nix index 8cb31c4ef83af..e7f5bc416916a 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/dave/package.nix b/pkgs/by-name/da/dave/package.nix index 265efcc5d908a..bbcff2d2ffb5d 100644 --- a/pkgs/by-name/da/dave/package.nix +++ b/pkgs/by-name/da/dave/package.nix @@ -38,10 +38,10 @@ buildGoModule rec { "-X main.builtBy=nixpkgs" ]; - meta = with lib; { + meta = { homepage = "https://github.com/micromata/dave"; description = "Totally simple and very easy to configure stand alone webdav server"; - license = licenses.asl20; - maintainers = with maintainers; [ lunik1 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lunik1 ]; }; } diff --git a/pkgs/by-name/da/davtest/package.nix b/pkgs/by-name/da/davtest/package.nix index 99d2c18ec5803..3f914bbe7e664 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 172e40beec682..1fd7019af0faf 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 58da095f89855..60c0032b2b2c0 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 0fdcc217eb6d4..a94b8292114b8 100644 --- a/pkgs/by-name/db/dbcsr/package.nix +++ b/pkgs/by-name/db/dbcsr/package.nix @@ -71,10 +71,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 d7c2b69649fc1..4a675b085b77b 100644 --- a/pkgs/by-name/db/dbd/package.nix +++ b/pkgs/by-name/db/dbd/package.nix @@ -23,12 +23,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/dbench/package.nix b/pkgs/by-name/db/dbench/package.nix index 456d99a66939e..cd1f91bd84f7c 100644 --- a/pkgs/by-name/db/dbench/package.nix +++ b/pkgs/by-name/db/dbench/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { ln -s dbench/doc/dbench/loadfiles $out/share/loadfiles ''; - meta = with lib; { + meta = { description = "Filesystem benchmark tool based on load patterns"; mainProgram = "dbench"; homepage = "https://dbench.samba.org/"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/db/dbmonster/package.nix b/pkgs/by-name/db/dbmonster/package.nix index 164be1d402480..46c062e3c8d40 100644 --- a/pkgs/by-name/db/dbmonster/package.nix +++ b/pkgs/by-name/db/dbmonster/package.nix @@ -50,10 +50,10 @@ python3.pkgs.buildPythonApplication rec { # 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/dbus-cpp/package.nix b/pkgs/by-name/db/dbus-cpp/package.nix index b9ab77c35dd5f..d23d7c87a7bdc 100644 --- a/pkgs/by-name/db/dbus-cpp/package.nix +++ b/pkgs/by-name/db/dbus-cpp/package.nix @@ -116,13 +116,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = with lib; { + meta = { description = "Dbus-binding leveraging C++-11"; homepage = "https://gitlab.com/ubports/development/core/lib-cpp/dbus-cpp"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ OPNA2608 ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ OPNA2608 ]; mainProgram = "dbus-cppc"; - platforms = platforms.linux; + platforms = lib.platforms.linux; pkgConfigModules = [ "dbus-cpp" ]; diff --git a/pkgs/by-name/db/dbus-test-runner/package.nix b/pkgs/by-name/db/dbus-test-runner/package.nix index 10d110e648a2e..ca456a412a819 100644 --- a/pkgs/by-name/db/dbus-test-runner/package.nix +++ b/pkgs/by-name/db/dbus-test-runner/package.nix @@ -69,13 +69,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; - maintainers = teams.lomiri.members; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = lib.teams.lomiri.members; pkgConfigModules = [ "dbustest-1" ]; diff --git a/pkgs/by-name/db/dbus_cplusplus/package.nix b/pkgs/by-name/db/dbus_cplusplus/package.nix index 34094c14ba6de..f8a159d05c306 100644 --- a/pkgs/by-name/db/dbus_cplusplus/package.nix +++ b/pkgs/by-name/db/dbus_cplusplus/package.nix @@ -75,11 +75,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 ab2e92aa21be4..68b2265caab34 100644 --- a/pkgs/by-name/db/dbus_java/package.nix +++ b/pkgs/by-name/db/dbus_java/package.nix @@ -30,9 +30,9 @@ stdenv.mkDerivation rec { -e "s|install: install-bin install-man install-doc|install: install-bin|" Makefile ''; - meta = with lib; { - platforms = platforms.linux; - maintainers = [ maintainers.sander ]; - license = licenses.afl21; + meta = { + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sander ]; + license = lib.licenses.afl21; }; } diff --git a/pkgs/by-name/db/dbxml/package.nix b/pkgs/by-name/db/dbxml/package.nix index d2fb83e6d7a78..d450e01c7b804 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 0a1f90f9e7a13..af4d3241a66c5 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 0e1d8d9b911a9..a16bc59a6d1c6 100644 --- a/pkgs/by-name/dc/dcadec/package.nix +++ b/pkgs/by-name/dc/dcadec/package.nix @@ -19,12 +19,12 @@ 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"; - maintainers = with maintainers; [ edwtjo ]; + maintainers = with lib.maintainers; [ edwtjo ]; 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 ad9697885c8fe..9f700d95fd53f 100644 --- a/pkgs/by-name/dc/dcap/package.nix +++ b/pkgs/by-name/dc/dcap/package.nix @@ -47,14 +47,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 405fc0a2d5eb5..9f92544a071de 100644 --- a/pkgs/by-name/dc/dcgm/package.nix +++ b/pkgs/by-name/dc/dcgm/package.nix @@ -142,12 +142,12 @@ stdenv.mkDerivation rec { disallowedReferences = lib.concatMap getCudaPackages cudaPackageSets; - 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; - maintainers = teams.deshaw.members; + license = lib.licenses.asl20; + maintainers = lib.teams.deshaw.members; 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 870cf8a211a14..0f9323be30fb4 100644 --- a/pkgs/by-name/dc/dclxvi/package.nix +++ b/pkgs/by-name/dc/dclxvi/package.nix @@ -33,10 +33,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/dcmtk/package.nix b/pkgs/by-name/dc/dcmtk/package.nix index 3dea940a1582b..48c1fa43198d3 100644 --- a/pkgs/by-name/dc/dcmtk/package.nix +++ b/pkgs/by-name/dc/dcmtk/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Collection of libraries and applications implementing large parts of the DICOM standard"; longDescription = '' DCMTK is a collection of libraries and applications implementing large parts of the DICOM standard. @@ -43,8 +43,8 @@ stdenv.mkDerivation rec { It comes in complete source code and is made available as "open source" software. ''; homepage = "https://dicom.offis.de/dcmtk"; - license = licenses.bsd3; - maintainers = with maintainers; [ iimog ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ iimog ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/dc/dcs/package.nix b/pkgs/by-name/dc/dcs/package.nix index dc3b9c3578851..a8e9ac1b50a5f 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 efa697b2926a9..49255258aa2b6 100644 --- a/pkgs/by-name/dc/dcw-gmt/package.nix +++ b/pkgs/by-name/dc/dcw-gmt/package.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation (finalAttrs: { cp -rv ./* $out/share/dcw-gmt ''; - meta = with lib; { + meta = { homepage = "https://www.soest.hawaii.edu/pwessel/dcw/"; description = "Vector basemap of the world, for use with GMT"; longDescription = '' @@ -29,7 +29,7 @@ stdenv.mkDerivation (finalAttrs: { (https://en.wikipedia.org/wiki/Digital_Chart_of_the_World). This data is for use by GMT, the Generic Mapping Tools. ''; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; maintainers = lib.teams.geospatial.members ++ (with lib.maintainers; [ tviti ]); }; diff --git a/pkgs/by-name/dd/dd_rescue/package.nix b/pkgs/by-name/dd/dd_rescue/package.nix index 78e35bec67488..ff124b5460cc8 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 domenkozar ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; homepage = "http://www.garloff.de/kurt/linux/ddrescue/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/dd/ddate/package.nix b/pkgs/by-name/dd/ddate/package.nix index 7e8658b16c233..22451a40b36af 100644 --- a/pkgs/by-name/dd/ddate/package.nix +++ b/pkgs/by-name/dd/ddate/package.nix @@ -18,12 +18,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/ddccontrol-db/package.nix b/pkgs/by-name/dd/ddccontrol-db/package.nix index f48c7fd549f28..3ae9033b83a59 100644 --- a/pkgs/by-name/dd/ddccontrol-db/package.nix +++ b/pkgs/by-name/dd/ddccontrol-db/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { intltool ]; - meta = with lib; { + meta = { description = "Monitor database for DDCcontrol"; homepage = "https://github.com/ddccontrol/ddccontrol-db"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; maintainers = [ lib.maintainers.pakhfn ]; }; } diff --git a/pkgs/by-name/dd/ddccontrol/package.nix b/pkgs/by-name/dd/ddccontrol/package.nix index 7c81281180493..35a3999c9ee89 100644 --- a/pkgs/by-name/dd/ddccontrol/package.nix +++ b/pkgs/by-name/dd/ddccontrol/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { intltoolize --force ''; - meta = with lib; { + meta = { description = "Program used to control monitor parameters by software"; homepage = "https://github.com/ddccontrol/ddccontrol"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ pakhfn ]; }; } diff --git a/pkgs/by-name/dd/ddclient/package.nix b/pkgs/by-name/dd/ddclient/package.nix index 86847869864bd..9cbad1c2291e3 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/ddgr/package.nix b/pkgs/by-name/dd/ddgr/package.nix index 01a331802e5df..032764f1049aa 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 ecfa8c702ab9c..673ae080dd9de 100644 --- a/pkgs/by-name/dd/ddh/package.nix +++ b/pkgs/by-name/dd/ddh/package.nix @@ -17,16 +17,16 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-6yPDkbag81TZ4k72rbmGT6HWKdGK4yfKxjGNFKEWXPI="; - 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 37b971c477de9..928b807f1a176 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 1d3364428a5b4..4bb963d9bf0fa 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/ddrescueview/package.nix b/pkgs/by-name/dd/ddrescueview/package.nix index 91e834ec93765..15b6e6b49fe0e 100644 --- a/pkgs/by-name/dd/ddrescueview/package.nix +++ b/pkgs/by-name/dd/ddrescueview/package.nix @@ -51,12 +51,12 @@ 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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ orivej ]; mainProgram = "ddrescueview"; }; } diff --git a/pkgs/by-name/dd/ddrutility/package.nix b/pkgs/by-name/dd/ddrutility/package.nix index 7756e23b2b11c..b943683b29a91 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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/dd/dduper/package.nix b/pkgs/by-name/dd/dduper/package.nix index 2735242abb300..141a9950f11a2 100644 --- a/pkgs/by-name/dd/dduper/package.nix +++ b/pkgs/by-name/dd/dduper/package.nix @@ -48,12 +48,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 a15e628d04e51..351db186970d6 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-14onbdsactPJ27GTzG+culsdnwHvGdDXwBD9ZMq192Q="; - 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 503895f882f73..32fc0e1bbcb59 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 rec { 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-devscripts/package.nix b/pkgs/by-name/de/debian-devscripts/package.nix index 2d92cac2eea7f..f0d38a604acf8 100644 --- a/pkgs/by-name/de/debian-devscripts/package.nix +++ b/pkgs/by-name/de/debian-devscripts/package.nix @@ -126,10 +126,10 @@ stdenv.mkDerivation rec { ln -s pts-subscribe $out/bin/pts-unsubscribe ''; - meta = with lib; { + meta = { description = "Debian package maintenance scripts"; - license = licenses.free; # Mix of public domain, Artistic+GPL, GPL1+, GPL2+, GPL3+, and GPL2-only... TODO - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + license = lib.licenses.free; # Mix of public domain, Artistic+GPL, GPL1+, GPL2+, GPL3+, and GPL2-only... TODO + maintainers = with lib.maintainers; [ raskin ]; + 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 d6857bfa18281..ce2a0c6dfc8e2 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 a0b5e9b49988e..3cb33da64d0a9 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 f3146c682a894..fc8856fc68d65 100644 --- a/pkgs/by-name/de/dec-decode/package.nix +++ b/pkgs/by-name/de/dec-decode/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { 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 c388cef5aa75c..062025cedd49b 100644 --- a/pkgs/by-name/de/decent-sampler/package.nix +++ b/pkgs/by-name/de/decent-sampler/package.nix @@ -79,7 +79,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. @@ -90,9 +90,9 @@ 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; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ adam248 chewblacka ]; diff --git a/pkgs/by-name/de/deco/package.nix b/pkgs/by-name/de/deco/package.nix index 238e7e2810e66..60a541e497cd4 100644 --- a/pkgs/by-name/de/deco/package.nix +++ b/pkgs/by-name/de/deco/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { substituteInPlace $out/bin/deco --replace "xdpyinfo" "${xorg.xdpyinfo}/bin/xdpyinfo" ''; - meta = with lib; { + meta = { homepage = "https://github.com/ebzzry/deco"; description = "Simple root image setter"; - license = licenses.mit; - maintainers = [ maintainers.ebzzry ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ebzzry ]; + platforms = lib.platforms.unix; mainProgram = "deco"; }; diff --git a/pkgs/by-name/de/decoder/package.nix b/pkgs/by-name/de/decoder/package.nix index 92478c1ab0d32..d61cdea603262 100644 --- a/pkgs/by-name/de/decoder/package.nix +++ b/pkgs/by-name/de/decoder/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { 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 2b90f9b62a5a7..bbdeb94310163 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/deepgit/package.nix b/pkgs/by-name/de/deepgit/package.nix index 71845d9ee0aba..8329f22511ad5 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/deepsea/package.nix b/pkgs/by-name/de/deepsea/package.nix index 5fb90e4ab991f..72a93caf3cd3e 100644 --- a/pkgs/by-name/de/deepsea/package.nix +++ b/pkgs/by-name/de/deepsea/package.nix @@ -17,7 +17,7 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "Phishing tool for red teams and pentesters"; longDescription = '' DeepSea phishing gear aims to help RTOs and pentesters with the @@ -25,8 +25,8 @@ buildGoModule rec { out on the outside as well as on the inside of a perimeter. ''; homepage = "https://github.com/dsnezhkov/deepsea"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.goModules --check }; } diff --git a/pkgs/by-name/de/deeptools/package.nix b/pkgs/by-name/de/deeptools/package.nix index 97c76c7f05753..cf7981e43bdcc 100644 --- a/pkgs/by-name/de/deeptools/package.nix +++ b/pkgs/by-name/de/deeptools/package.nix @@ -49,7 +49,7 @@ python3.pkgs.buildPythonApplication rec { "deeptools/test/test_multiBamSummary.py" ]; - meta = with lib; { + meta = { homepage = "https://deeptools.readthedocs.io/en/develop"; description = "Tools for exploring deep DNA sequencing data"; longDescription = '' @@ -60,10 +60,10 @@ python3.pkgs.buildPythonApplication rec { publication-ready visualizations to identify enrichments and for functional annotations of the genome. ''; - license = with licenses; [ + license = with lib.licenses; [ mit bsd3 ]; - maintainers = with maintainers; [ scalavision ]; + maintainers = with lib.maintainers; [ scalavision ]; }; } diff --git a/pkgs/by-name/de/deer/package.nix b/pkgs/by-name/de/deer/package.nix index 9cee98d1ff4ce..e498692ad564c 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; - maintainers = [ maintainers.vyp ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.vyp ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/de/dehydrated/package.nix b/pkgs/by-name/de/dehydrated/package.nix index 236b71c8c29a0..f7316d0b9baaa 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/dejsonlz4/package.nix b/pkgs/by-name/de/dejsonlz4/package.nix index 736470b504102..39a92bf9d17ea 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 10febc979382b..398e52ecc11e4 100644 --- a/pkgs/by-name/de/delayarchitect/package.nix +++ b/pkgs/by-name/de/delayarchitect/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { 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 05ab8c25203d2..9dcdc5f966e65 100644 --- a/pkgs/by-name/de/delfin/package.nix +++ b/pkgs/by-name/de/delfin/package.nix @@ -67,15 +67,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/dell-command-configure/package.nix b/pkgs/by-name/de/dell-command-configure/package.nix index d7df3dcf31ea6..14eff0cfe47b5 100644 --- a/pkgs/by-name/de/dell-command-configure/package.nix +++ b/pkgs/by-name/de/dell-command-configure/package.nix @@ -104,11 +104,11 @@ stdenv.mkDerivation { $out/lib/* ''; - meta = with lib; { + meta = { description = "Configure BIOS settings on Dell laptops"; homepage = "https://www.dell.com/support/article/us/en/19/sln311302/dell-command-configure"; - license = licenses.unfree; - maintainers = with maintainers; [ ryangibb ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ ryangibb ]; platforms = [ "x86_64-linux" ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; diff --git a/pkgs/by-name/de/delly/package.nix b/pkgs/by-name/de/delly/package.nix index cb5f86e2ef25e..41e340c0bb391 100644 --- a/pkgs/by-name/de/delly/package.nix +++ b/pkgs/by-name/de/delly/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "Structural variant caller for mapped DNA sequenced data"; mainProgram = "delly"; - license = licenses.bsd3; - maintainers = with maintainers; [ scalavision ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ scalavision ]; + 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/deltachat-cursed/package.nix b/pkgs/by-name/de/deltachat-cursed/package.nix index 603b48eed3342..4770dfe494fcd 100644 --- a/pkgs/by-name/de/deltachat-cursed/package.nix +++ b/pkgs/by-name/de/deltachat-cursed/package.nix @@ -42,11 +42,11 @@ python3.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Lightweight Delta Chat client"; homepage = "https://github.com/adbenitez/deltachat-cursed"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "curseddelta"; - maintainers = with maintainers; [ dotlambda ]; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/de/deltatouch/package.nix b/pkgs/by-name/de/deltatouch/package.nix index 7b2d061fe88af..ca35a400513ca 100644 --- a/pkgs/by-name/de/deltatouch/package.nix +++ b/pkgs/by-name/de/deltatouch/package.nix @@ -65,7 +65,7 @@ stdenv.mkDerivation (finalAttrs: { rm $out/{manifest.json,share/push*} ''; - meta = with lib; { + meta = { changelog = "https://codeberg.org/lk108/deltatouch/src/tag/${finalAttrs.src.rev}/CHANGELOG"; description = "Messaging app for Ubuntu Touch, powered by Delta Chat core"; longDescription = '' @@ -73,9 +73,9 @@ stdenv.mkDerivation (finalAttrs: { Delta Chat works over email. ''; homepage = "https://codeberg.org/lk108/deltatouch"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ link2xt ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ link2xt ]; mainProgram = "deltatouch"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/de/delve/package.nix b/pkgs/by-name/de/delve/package.nix index 64ec08acd798d..3b6ad6118e9d5 100644 --- a/pkgs/by-name/de/delve/package.nix +++ b/pkgs/by-name/de/delve/package.nix @@ -47,11 +47,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 a67e01f242398..76e59cad95252 100644 --- a/pkgs/by-name/de/demoit/package.nix +++ b/pkgs/by-name/de/demoit/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Live coding demos without Context Switching"; homepage = "https://github.com/dgageot/demoit"; - license = licenses.asl20; - maintainers = [ maintainers.freezeboy ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.freezeboy ]; mainProgram = "demoit"; }; } diff --git a/pkgs/by-name/de/denemo/package.nix b/pkgs/by-name/de/denemo/package.nix index 1b4c0e30d46ed..938a464e2143b 100644 --- a/pkgs/by-name/de/denemo/package.nix +++ b/pkgs/by-name/de/denemo/package.nix @@ -83,11 +83,11 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "Music notation and composition software used with lilypond"; homepage = "http://denemo.org"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.olynch ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.olynch ]; }; } diff --git a/pkgs/by-name/de/deqp-runner/package.nix b/pkgs/by-name/de/deqp-runner/package.nix index b8daa3098022c..3fae54fa9a94e 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-xLtKrzjDwBxsg9YNlLQdteAkhuS1rpUbyMWdMwFTrf4="; - 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 ed786156a88dd..9f7645ba3705c 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 = '' A 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 9a9d3b2086968..276c2636af56d 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/desmume/package.nix b/pkgs/by-name/de/desmume/package.nix index 286c9dce72a20..b468ff7810b1a 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; - maintainers = [ maintainers.AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.AndersonTorres ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/de/dethrace/package.nix b/pkgs/by-name/de/dethrace/package.nix index b5d487d9f23f4..81901d7880ec7 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 8d1ea06b40fa1..0af2149fd306d 100644 --- a/pkgs/by-name/de/devd/package.nix +++ b/pkgs/by-name/de/devd/package.nix @@ -33,11 +33,11 @@ buildGoModule rec { "-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/devdocs-desktop/package.nix b/pkgs/by-name/de/devdocs-desktop/package.nix index a0fb3d6cfffbb..572a6a096d268 100644 --- a/pkgs/by-name/de/devdocs-desktop/package.nix +++ b/pkgs/by-name/de/devdocs-desktop/package.nix @@ -28,15 +28,15 @@ appimageTools.wrapType2 rec { --replace 'Exec=AppRun' 'Exec=${pname}' ''; - meta = with lib; { + meta = { description = "Full-featured desktop app for DevDocs.io"; longDescription = '' DevDocs.io combines multiple API documentations in a fast, organized, and searchable interface. This is an unofficial desktop app for it. ''; homepage = "https://github.com/egoist/devdocs-desktop"; downloadPage = "https://github.com/egoist/devdocs-desktop/releases"; - license = licenses.mit; - maintainers = with maintainers; [ ymarkus ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ymarkus ]; platforms = [ "x86_64-linux" ]; mainProgram = "devdocs-desktop"; }; diff --git a/pkgs/by-name/de/devede/package.nix b/pkgs/by-name/de/devede/package.nix index d9342d690216e..e454d82d2d42a 100644 --- a/pkgs/by-name/de/devede/package.nix +++ b/pkgs/by-name/de/devede/package.nix @@ -66,10 +66,10 @@ buildPythonApplication rec { --replace "/usr/local/share" "$out/share" ''; - meta = with lib; { + meta = { description = "DVD Creator for Linux"; homepage = "https://www.rastersoft.com/programas/devede.html"; - license = licenses.gpl3; - maintainers = [ maintainers.bdimcheff ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.bdimcheff ]; }; } diff --git a/pkgs/by-name/de/devmem2/package.nix b/pkgs/by-name/de/devmem2/package.nix index a31b197e98911..bc8a155b1cbbb 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 3550652c54b5f..f15dad0bf7f43 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 = "Devour 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 552f6807d998f..377e58cc4a8d3 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 df0a6ec66c399..9aa6c083729e2 100644 --- a/pkgs/by-name/de/dex-oidc/package.nix +++ b/pkgs/by-name/de/dex-oidc/package.nix @@ -44,11 +44,11 @@ buildGoModule rec { }; }; - 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 eb07b67565084..8d200cb267191 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/df/dfmt/package.nix b/pkgs/by-name/df/dfmt/package.nix index 7c858386e6704..22f44c9530fa5 100644 --- a/pkgs/by-name/df/dfmt/package.nix +++ b/pkgs/by-name/df/dfmt/package.nix @@ -20,11 +20,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 a834ac374055e..870d77820480e 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-KaSBdpgIjMZoX8ejD5hNYtgZLb952t8th4f5Mh6x9bU="; - 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 ecfbda766454d..b8c63615d4923 100644 --- a/pkgs/by-name/df/dftd4/package.nix +++ b/pkgs/by-name/df/dftd4/package.nix @@ -65,15 +65,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 215999a051357..dba65f84e3648 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/dg/dgraph/package.nix b/pkgs/by-name/dg/dgraph/package.nix index 599f3ca4963c4..f1ae2ced27ea5 100644 --- a/pkgs/by-name/dg/dgraph/package.nix +++ b/pkgs/by-name/dg/dgraph/package.nix @@ -48,12 +48,12 @@ buildGoModule rec { done ''; - meta = with lib; { + meta = { homepage = "https://dgraph.io/"; description = "Fast, Distributed Graph DB"; - maintainers = with maintainers; [ sigma ]; + maintainers = with lib.maintainers; [ sigma ]; # Apache 2.0 because we use only build "oss" - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "dgraph"; }; } diff --git a/pkgs/by-name/dh/dhcpig/package.nix b/pkgs/by-name/dh/dhcpig/package.nix index ac05557b1c5a1..c034f7f362f54 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/dhewm3/package.nix b/pkgs/by-name/dh/dhewm3/package.nix index fe6d3059c1722..a91c5b54af9a3 100644 --- a/pkgs/by-name/dh/dhewm3/package.nix +++ b/pkgs/by-name/dh/dhewm3/package.nix @@ -63,12 +63,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 17cafd2003387..6d3472896053b 100644 --- a/pkgs/by-name/dh/dht/package.nix +++ b/pkgs/by-name/dh/dht/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { 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 460f2d6fd3d13..d2697177d4aa8 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 6331ed8b496bd..c594988e7912a 100644 --- a/pkgs/by-name/di/dia/package.nix +++ b/pkgs/by-name/di/dia/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation { dblatex ]; - meta = with lib; { + meta = { description = "Gnome Diagram drawing software"; mainProgram = "dia"; homepage = "http://live.gnome.org/Dia"; - maintainers = with maintainers; [ raskin ]; - license = licenses.gpl2; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ raskin ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/di/dict-cc-py/package.nix b/pkgs/by-name/di/dict-cc-py/package.nix index 3b5316cd633f2..90ec7b296a8e2 100644 --- a/pkgs/by-name/di/dict-cc-py/package.nix +++ b/pkgs/by-name/di/dict-cc-py/package.nix @@ -24,11 +24,11 @@ python3.pkgs.buildPythonPackage rec { 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/didu/package.nix b/pkgs/by-name/di/didu/package.nix index bdf1b51a7cb80..3ef0f761457a0 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-O1kkfrwv7xiOh3wCV/ce6cqpkMPRRzcXOFESYMAhiKA="; - 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/dieharder/package.nix b/pkgs/by-name/di/dieharder/package.nix index 2beb0a4d640e9..e99f3c4286a83 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 a4d09dac4df3d..2db9b0c2e05a6 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-Ya7RL3TuQjKkEkggK/ANChtVZRuTaooM+lE3KBZnvYU="; - 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 8fdb73636830e..498cbcdc8d420 100644 --- a/pkgs/by-name/di/diff-so-fancy/package.nix +++ b/pkgs/by-name/di/diff-so-fancy/package.nix @@ -53,16 +53,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 49a94fbb9ea02..ac20603b73182 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 26ef0709ec250..949e54c97b994 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/diffsitter/package.nix b/pkgs/by-name/di/diffsitter/package.nix index db0d041d4ca71..96d045cc2702c 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 e1d8a43e804b9..b2d0c9c99d0df 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 41f5c6ba08dac..a47896bcdb706 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 a817c542f1b69..4aefe96f0fe18 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/digiham/package.nix b/pkgs/by-name/di/digiham/package.nix index 78847bf00236b..f50633df8b648 100644 --- a/pkgs/by-name/di/digiham/package.nix +++ b/pkgs/by-name/di/digiham/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { icu ]; - meta = with lib; { + meta = { homepage = "https://github.com/jketterl/digiham"; description = "tools for decoding digital ham communication"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = teams.c3d2.members; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = lib.teams.c3d2.members; }; } diff --git a/pkgs/by-name/di/dina-font/package.nix b/pkgs/by-name/di/dina-font/package.nix index 410dd1a0fef5b..4b6c1c6131447 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 95a93c440967e..07c32e2d645c9 100644 --- a/pkgs/by-name/di/diopser/package.nix +++ b/pkgs/by-name/di/diopser/package.nix @@ -96,11 +96,11 @@ stdenv.mkDerivation rec { "-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/dioxus-cli/package.nix b/pkgs/by-name/di/dioxus-cli/package.nix index 3d90245ae7f00..5536d92ec5d56 100644 --- a/pkgs/by-name/di/dioxus-cli/package.nix +++ b/pkgs/by-name/di/dioxus-cli/package.nix @@ -45,15 +45,15 @@ rustPlatform.buildRustPackage rec { tests.version = testers.testVersion { package = dioxus-cli; }; }; - meta = with lib; { + meta = { homepage = "https://dioxuslabs.com"; description = "CLI tool for developing, testing, and publishing Dioxus apps"; changelog = "https://github.com/DioxusLabs/dioxus/releases"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ xanderio cathalmullan ]; diff --git a/pkgs/by-name/di/dipc/package.nix b/pkgs/by-name/di/dipc/package.nix index 1c4668143531d..c23d25c70c832 100644 --- a/pkgs/by-name/di/dipc/package.nix +++ b/pkgs/by-name/di/dipc/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-XQ85T64K1NLdSOtAFr0XluvFNTaHzoWKxoQtBQ+uSKQ="; - 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/dirdiff/package.nix b/pkgs/by-name/di/dirdiff/package.nix index d49b82741c85d..08b9d4f4ec5a7 100644 --- a/pkgs/by-name/di/dirdiff/package.nix +++ b/pkgs/by-name/di/dirdiff/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Graphical directory tree diff and merge tool"; mainProgram = "dirdiff"; longDescription = '' @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { directory trees and for merging changes from one tree into another. ''; homepage = "https://www.samba.org/ftp/paulus/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/di/directfb/package.nix b/pkgs/by-name/di/directfb/package.nix index d2506fd97e817..b54356c65c408 100644 --- a/pkgs/by-name/di/directfb/package.nix +++ b/pkgs/by-name/di/directfb/package.nix @@ -131,7 +131,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, @@ -144,8 +144,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/directvnc/package.nix b/pkgs/by-name/di/directvnc/package.nix index d37ffa86ae356..2af078111d17c 100644 --- a/pkgs/by-name/di/directvnc/package.nix +++ b/pkgs/by-name/di/directvnc/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation { xorgproto ]; - meta = with lib; { + meta = { description = "DirectFB VNC client"; homepage = "http://drinkmilk.github.io/directvnc/"; - 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/di/directx-headers/package.nix b/pkgs/by-name/di/directx-headers/package.nix index 0acb2db0edc0e..eeecbebecf9ce 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/direvent/package.nix b/pkgs/by-name/di/direvent/package.nix index 0b776f44124b8..e257ea0c01405 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 a1bc915da1d59..3cb829f6afd05 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/dirt/package.nix b/pkgs/by-name/di/dirt/package.nix index 1791a0a6c31a5..3191bd520e2d5 100644 --- a/pkgs/by-name/di/dirt/package.nix +++ b/pkgs/by-name/di/dirt/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation { cp -r samples $out/share/dirt/ ''; - meta = with lib; { + meta = { description = "Unimpressive thingie for playing bits of samples with some level of accuracy"; homepage = "https://github.com/tidalcycles/Dirt"; - license = licenses.gpl3; - maintainers = with maintainers; [ anderspapitto ]; - platforms = with platforms; linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ anderspapitto ]; + platforms = with lib.platforms; linux; mainProgram = "dirt"; }; } diff --git a/pkgs/by-name/di/dirvish/package.nix b/pkgs/by-name/di/dirvish/package.nix index 432662f0fd1af..90a8c85625096 100644 --- a/pkgs/by-name/di/dirvish/package.nix +++ b/pkgs/by-name/di/dirvish/package.nix @@ -78,11 +78,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 a009cd411cc6b..9ee6272b43756 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-sh/package.nix b/pkgs/by-name/di/discord-sh/package.nix index 7276a9529d3b6..b14fb2e601bb9 100644 --- a/pkgs/by-name/di/discord-sh/package.nix +++ b/pkgs/by-name/di/discord-sh/package.nix @@ -56,12 +56,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 adc433eb48946..cf4264548657f 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 40fa65bdb5b4d..32b1265f8bbca 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 a1ebd5275efee..744e780dc18f8 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 bb64c955b80ac..86d35df055f6a 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/diskonaut/package.nix b/pkgs/by-name/di/diskonaut/package.nix index 36ddb1488f976..62e50693e920c 100644 --- a/pkgs/by-name/di/diskonaut/package.nix +++ b/pkgs/by-name/di/diskonaut/package.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { # 1 passed; 44 failed https://hydra.nixos.org/build/148943783/nixlog/1 doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Terminal disk space navigator"; homepage = "https://github.com/imsnif/diskonaut"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ evanjs figsoda ]; diff --git a/pkgs/by-name/di/diskrsync/package.nix b/pkgs/by-name/di/diskrsync/package.nix index 94b2c5a0f495b..d0c56dd0299e5 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 bbb737a7d4982..e4fbfbe1894d0 100644 --- a/pkgs/by-name/di/diskscan/package.nix +++ b/pkgs/by-name/di/diskscan/package.nix @@ -25,12 +25,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/dislocker/package.nix b/pkgs/by-name/di/dislocker/package.nix index d84ae19dbb0d2..b839c2e574e38 100644 --- a/pkgs/by-name/di/dislocker/package.nix +++ b/pkgs/by-name/di/dislocker/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { mbedtls_2 ]; - meta = with lib; { + meta = { description = "Read BitLocker encrypted partitions in Linux"; homepage = "https://github.com/aorimn/dislocker"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ elitak ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ elitak ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/di/dismap/package.nix b/pkgs/by-name/di/dismap/package.nix index 4d84aed8961d8..ac60385603b80 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 589d33adc2f34..a69cc3baaad45 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/dispad/package.nix b/pkgs/by-name/di/dispad/package.nix index c74e108ded064..bfc28a2b7c7c8 100644 --- a/pkgs/by-name/di/dispad/package.nix +++ b/pkgs/by-name/di/dispad/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { libconfuse ]; - meta = with lib; { + meta = { description = "Small daemon for disabling trackpads while typing"; homepage = "https://github.com/BlueDragonX/dispad"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ zimbatm ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ zimbatm ]; + platforms = lib.platforms.linux; mainProgram = "dispad"; }; } diff --git a/pkgs/by-name/di/displaycal/package.nix b/pkgs/by-name/di/displaycal/package.nix index f476067fa4275..fe505c5febc43 100644 --- a/pkgs/by-name/di/displaycal/package.nix +++ b/pkgs/by-name/di/displaycal/package.nix @@ -68,11 +68,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/dissent/package.nix b/pkgs/by-name/di/dissent/package.nix index 0854e9bd20a46..4489a8e804720 100644 --- a/pkgs/by-name/di/dissent/package.nix +++ b/pkgs/by-name/di/dissent/package.nix @@ -72,15 +72,15 @@ buildGoModule rec { vendorHash = "sha256-JISIS8k/veBAqZ0DlxVBrc+25IVM6BpY4eE5uxsjo+Y="; - meta = with lib; { + meta = { description = "A third-party Discord client designed for a smooth, native experience (formerly gtkcord4)"; homepage = "https://github.com/diamondburned/dissent"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus cc0 ]; mainProgram = "dissent"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ hmenke urandom aleksana diff --git a/pkgs/by-name/di/distgen/package.nix b/pkgs/by-name/di/distgen/package.nix index fc2f68fdf22f1..039efba1b94dc 100644 --- a/pkgs/by-name/di/distgen/package.nix +++ b/pkgs/by-name/di/distgen/package.nix @@ -27,11 +27,11 @@ python3.pkgs.buildPythonApplication rec { checkPhase = "make test-unit PYTHON=${python3.executable}"; - meta = with lib; { + meta = { description = "Templating system/generator for distributions"; mainProgram = "dg"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://distgen.readthedocs.io/"; - maintainers = with maintainers; [ bachp ]; + maintainers = with lib.maintainers; [ bachp ]; }; } diff --git a/pkgs/by-name/di/distrobox/package.nix b/pkgs/by-name/di/distrobox/package.nix index cac3dd04da6bb..8f07cad81924d 100644 --- a/pkgs/by-name/di/distrobox/package.nix +++ b/pkgs/by-name/di/distrobox/package.nix @@ -44,7 +44,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { echo 'container_additional_volumes="/nix:/nix"' > $out/share/distrobox/distrobox.conf ''; - meta = with lib; { + meta = { description = "Wrapper around podman or docker to create and start containers"; longDescription = '' Use any linux distribution inside your terminal. Enable both backward and @@ -52,8 +52,8 @@ stdenvNoCC.mkDerivation (finalAttrs: { you’re more comfortable with ''; homepage = "https://distrobox.it/"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ atila ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ atila ]; }; }) diff --git a/pkgs/by-name/di/diswall/package.nix b/pkgs/by-name/di/diswall/package.nix index 1edb44b59f1d2..14c6c17342c44 100644 --- a/pkgs/by-name/di/diswall/package.nix +++ b/pkgs/by-name/di/diswall/package.nix @@ -28,7 +28,7 @@ rustPlatform.buildRustPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Distributed firewall"; longDescription = '' Diswall (distributed firewall) - a client of distributed firewall @@ -40,8 +40,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 102bb0fe202a8..707bb0e7c9e39 100644 --- a/pkgs/by-name/di/dit/package.nix +++ b/pkgs/by-name/di/dit/package.nix @@ -27,12 +27,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/dj/djbdns/package.nix b/pkgs/by-name/dj/djbdns/package.nix index 9ce49ccf46fbe..33768b018fc30 100644 --- a/pkgs/by-name/dj/djbdns/package.nix +++ b/pkgs/by-name/dj/djbdns/package.nix @@ -59,11 +59,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/djv/package.nix b/pkgs/by-name/dj/djv/package.nix index d16d765b68060..7b5f6103ddc8d 100644 --- a/pkgs/by-name/dj/djv/package.nix +++ b/pkgs/by-name/dj/djv/package.nix @@ -177,11 +177,11 @@ stdenv.mkDerivation rec { # GLFW requires a working X11 session. doCheck = false; - meta = with lib; { + meta = { description = "Professional review software for VFX, animation, and film production"; homepage = "https://darbyjohnston.github.io/DJV/"; - platforms = platforms.linux; - maintainers = [ maintainers.blitz ]; - license = licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.blitz ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/dj/djvulibre/package.nix b/pkgs/by-name/dj/djvulibre/package.nix index ba1b0361f53ff..a29608928c63c 100644 --- a/pkgs/by-name/dj/djvulibre/package.nix +++ b/pkgs/by-name/dj/djvulibre/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { ./CVE-2021-3500+CVE-2021-32490+CVE-2021-32491+CVE-2021-32492+CVE-2021-32493.patch ]; - 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 1cc339419fb29..dffdf2638d3ae 100644 --- a/pkgs/by-name/dk/dkh/package.nix +++ b/pkgs/by-name/dk/dkh/package.nix @@ -28,11 +28,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 770e61e4f3365..50468df143397 100644 --- a/pkgs/by-name/dk/dkimproxy/package.nix +++ b/pkgs/by-name/dk/dkimproxy/package.nix @@ -34,11 +34,11 @@ 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; - maintainers = [ maintainers.ekleog ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.ekleog ]; + 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 0c6972e1d9be5..2e38fd2e9fb35 100644 --- a/pkgs/by-name/dl/dl-poly-classic-mpi/package.nix +++ b/pkgs/by-name/dl/dl-poly-classic-mpi/package.nix @@ -36,12 +36,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/dleyna-connector-dbus/package.nix b/pkgs/by-name/dl/dleyna-connector-dbus/package.nix index 9d3ce402abf4e..e0b625662b7b3 100644 --- a/pkgs/by-name/dl/dleyna-connector-dbus/package.nix +++ b/pkgs/by-name/dl/dleyna-connector-dbus/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { glib ]; - meta = with lib; { + meta = { description = "D-Bus API for the dLeyna services"; homepage = "https://github.com/phako/dleyna-connector-dbus"; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; - license = licenses.lgpl21Only; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21Only; }; } diff --git a/pkgs/by-name/dl/dleyna-core/package.nix b/pkgs/by-name/dl/dleyna-core/package.nix index e25e1a1da44a4..d82f7a5a26b00 100644 --- a/pkgs/by-name/dl/dleyna-core/package.nix +++ b/pkgs/by-name/dl/dleyna-core/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { ] ); - meta = with lib; { + meta = { description = "Library of utility functions that are used by the higher level dLeyna"; homepage = "https://github.com/phako/dleyna-core"; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; - license = licenses.lgpl21Only; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21Only; }; } diff --git a/pkgs/by-name/dl/dleyna-renderer/package.nix b/pkgs/by-name/dl/dleyna-renderer/package.nix index 565e6519e6e1c..4c406f1767ea1 100644 --- a/pkgs/by-name/dl/dleyna-renderer/package.nix +++ b/pkgs/by-name/dl/dleyna-renderer/package.nix @@ -66,11 +66,11 @@ stdenv.mkDerivation rec { --set DLEYNA_CONNECTOR_PATH "$DLEYNA_CONNECTOR_PATH" ''; - meta = with lib; { + meta = { description = "Library to discover and manipulate Digital Media Renderers"; homepage = "https://github.com/phako/dleyna-renderer"; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; - license = licenses.lgpl21Only; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21Only; }; } diff --git a/pkgs/by-name/dl/dleyna-server/package.nix b/pkgs/by-name/dl/dleyna-server/package.nix index cbaf5e1e26670..7a46395bf5a88 100644 --- a/pkgs/by-name/dl/dleyna-server/package.nix +++ b/pkgs/by-name/dl/dleyna-server/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { --set DLEYNA_CONNECTOR_PATH "$DLEYNA_CONNECTOR_PATH" ''; - meta = with lib; { + meta = { description = "Library to discover, browse and manipulate Digital Media Servers"; homepage = "https://github.com/phako/dleyna-server"; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.unix; - license = licenses.lgpl21Only; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21Only; }; } diff --git a/pkgs/by-name/dl/dlib/package.nix b/pkgs/by-name/dl/dlib/package.nix index 8fca85081b320..c16dcb8215596 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/dl/dlx/package.nix b/pkgs/by-name/dl/dlx/package.nix index e1a9e7a435adf..c22edd72b5725 100644 --- a/pkgs/by-name/dl/dlx/package.nix +++ b/pkgs/by-name/dl/dlx/package.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation rec { mv README.txt MANUAL.TXT $out/share/dlx/doc/ ''; - meta = with lib; { + meta = { homepage = "https://www.davidviner.com/dlx.html?name=DLX+Simulator"; description = "DLX simulator written in C"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/dm/dmalloc/package.nix b/pkgs/by-name/dm/dmalloc/package.nix index d7ef4faa06d2e..c65d4d888f035 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 096580ea4a23d..c25037474a9e1 100644 --- a/pkgs/by-name/dm/dmd/binary.nix +++ b/pkgs/by-name/dm/dmd/binary.nix @@ -80,11 +80,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/dmidecode/package.nix b/pkgs/by-name/dm/dmidecode/package.nix index 40bbcbeb0ab07..5f0d77d2a0580 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/dmitry/package.nix b/pkgs/by-name/dm/dmitry/package.nix index 5a641d1bf03ec..c0b3bdcdf14d7 100644 --- a/pkgs/by-name/dm/dmitry/package.nix +++ b/pkgs/by-name/dm/dmitry/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation { env.NIX_CFLAGS_COMPILE = toString [ "-fcommon" ]; - meta = with lib; { + meta = { description = "Deepmagic Information Gathering Tool"; mainProgram = "dmitry"; homepage = "https://github.com/jaygreig86/dmitry"; - 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/dm/dmrconfig/package.nix b/pkgs/by-name/dm/dmrconfig/package.nix index 2821b9996c461..e82962496f91c 100644 --- a/pkgs/by-name/dm/dmrconfig/package.nix +++ b/pkgs/by-name/dm/dmrconfig/package.nix @@ -48,15 +48,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/dn/dnadd/package.nix b/pkgs/by-name/dn/dnadd/package.nix index 9841597acf69d..e391488073bb5 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 227de3abe7014..31bc71d5cae5b 100644 --- a/pkgs/by-name/dn/dnd-tools/package.nix +++ b/pkgs/by-name/dn/dnd-tools/package.nix @@ -24,11 +24,11 @@ python3.pkgs.buildPythonApplication rec { }) ]; - 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/dnglab/package.nix b/pkgs/by-name/dn/dnglab/package.nix index cf228bbb41e5f..82eec07e07f82 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 76c420f7d0567..66f2625bc9fd9 100644 --- a/pkgs/by-name/dn/dns-root-data/package.nix +++ b/pkgs/by-name/dn/dns-root-data/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation { cp ${rootDs} $out/root.ds ''; - meta = with lib; { + meta = { description = "DNS root data including root zone and DNSSEC 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 c798f34ac1063..1a86af2cb0162 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/dnsdist/package.nix b/pkgs/by-name/dn/dnsdist/package.nix index 335c02a4df170..14e09ef436c8c 100644 --- a/pkgs/by-name/dn/dnsdist/package.nix +++ b/pkgs/by-name/dn/dnsdist/package.nix @@ -72,11 +72,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 b21e60a73bd82..4e94965ca77cf 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 9761f1a55fef9..6036b5b695b44 100644 --- a/pkgs/by-name/dn/dnsmasq/package.nix +++ b/pkgs/by-name/dn/dnsmasq/package.nix @@ -110,13 +110,13 @@ stdenv.mkDerivation rec { kubernetes-dns-multi = nixosTests.kubernetes.dns-multi-node; }; - 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 globin ]; diff --git a/pkgs/by-name/dn/dnsmon-go/package.nix b/pkgs/by-name/dn/dnsmon-go/package.nix index 69164d6d5cace..2f1bf7f8be020 100644 --- a/pkgs/by-name/dn/dnsmon-go/package.nix +++ b/pkgs/by-name/dn/dnsmon-go/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { 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 c147822b43b53..d3acd38787265 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/dnsproxy/package.nix b/pkgs/by-name/dn/dnsproxy/package.nix index a0d31cb054b12..0099acf7bf88a 100644 --- a/pkgs/by-name/dn/dnsproxy/package.nix +++ b/pkgs/by-name/dn/dnsproxy/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Simple DNS proxy with DoH, DoT, and DNSCrypt support"; homepage = "https://github.com/AdguardTeam/dnsproxy"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ contrun diogotcorreia ]; diff --git a/pkgs/by-name/dn/dnss/package.nix b/pkgs/by-name/dn/dnss/package.nix index 72a8907a301a7..a5e74aa0785e5 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 = "A 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 21d922961273b..cda40e916213c 100644 --- a/pkgs/by-name/dn/dnstake/package.nix +++ b/pkgs/by-name/dn/dnstake/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { vendorHash = "sha256-lV6dUl+OMUQfhlgNL38k0Re1Mr3VP9b8SI3vTJ8CP18="; - meta = with lib; { + meta = { description = "Tool to check missing hosted DNS zones"; homepage = "https://github.com/pwnesia/dnstake"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "dnstake"; }; } diff --git a/pkgs/by-name/do/do-agent/package.nix b/pkgs/by-name/do/do-agent/package.nix index 1625101db1086..289db5767bd08 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; - maintainers = with maintainers; [ yvt ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ yvt ]; + 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 22536ae6d0b0b..bc7a005210d4c 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/docbook2mdoc/package.nix b/pkgs/by-name/do/docbook2mdoc/package.nix index 4a87e025ce99e..3e5569f326cac 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 be8a1fe11b6b5..2750ced778c3a 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/docfd/package.nix b/pkgs/by-name/do/docfd/package.nix index e4828191c0c67..8756239da8693 100644 --- a/pkgs/by-name/do/docfd/package.nix +++ b/pkgs/by-name/do/docfd/package.nix @@ -68,7 +68,7 @@ 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. @@ -77,9 +77,9 @@ 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 3b478a8606f7f..85704e8649b2a 100644 --- a/pkgs/by-name/do/dockbarx/package.nix +++ b/pkgs/by-name/do/dockbarx/package.nix @@ -56,11 +56,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/dockfmt/package.nix b/pkgs/by-name/do/dockfmt/package.nix index 8319eef0cde99..e97206fdc864d 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 2b9f15bc6c60d..97f100e8c9438 100644 --- a/pkgs/by-name/do/dockstarter/package.nix +++ b/pkgs/by-name/do/dockstarter/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { } ''; - 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/docopt_cpp/package.nix b/pkgs/by-name/do/docopt_cpp/package.nix index 2b45d2e9c15d9..31ee7ab68c095 100644 --- a/pkgs/by-name/do/docopt_cpp/package.nix +++ b/pkgs/by-name/do/docopt_cpp/package.nix @@ -45,14 +45,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; - maintainers = with maintainers; [ ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/by-name/do/doctest/package.nix b/pkgs/by-name/do/doctest/package.nix index 11ad954f6b762..7c1c7ad567915 100644 --- a/pkgs/by-name/do/doctest/package.nix +++ b/pkgs/by-name/do/doctest/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { doCheck = true; - 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; - maintainers = with maintainers; [ davidtwco ]; + platforms = lib.platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ davidtwco ]; }; } diff --git a/pkgs/by-name/do/docui/package.nix b/pkgs/by-name/do/docui/package.nix index 5c8c5302f5c30..a08d824349db0 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 71b15e2b29b84..1b94330f4d038 100644 --- a/pkgs/by-name/do/documenso/package.nix +++ b/pkgs/by-name/do/documenso/package.nix @@ -46,11 +46,11 @@ buildNpmPackage { passthru.updateScript = nix-update-script { }; - 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; }; } diff --git a/pkgs/by-name/do/dog/package.nix b/pkgs/by-name/do/dog/package.nix index 9a58dd08cebe8..5492927ee15f2 100644 --- a/pkgs/by-name/do/dog/package.nix +++ b/pkgs/by-name/do/dog/package.nix @@ -27,12 +27,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/doggo/package.nix b/pkgs/by-name/do/doggo/package.nix index 1a7d51e2c935b..9278537a14f20 100644 --- a/pkgs/by-name/do/doggo/package.nix +++ b/pkgs/by-name/do/doggo/package.nix @@ -35,7 +35,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"; @@ -43,8 +43,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/doing/package.nix b/pkgs/by-name/do/doing/package.nix index 5136966d40c43..88cfe8d0cdcbe 100644 --- a/pkgs/by-name/do/doing/package.nix +++ b/pkgs/by-name/do/doing/package.nix @@ -14,7 +14,7 @@ bundlerEnv { passthru.updateScript = bundlerUpdateScript "doing"; - meta = with lib; { + meta = { description = "Command line tool for keeping track of what you’re doing and tracking what you’ve done"; longDescription = '' doing is a basic CLI for adding and listing "what was I doing" reminders @@ -22,12 +22,12 @@ bundlerEnv { sections/categories and flexible output formatting. ''; homepage = "https://brettterpstra.com/projects/doing/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ktf nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "doing"; }; } diff --git a/pkgs/by-name/do/dokuwiki/package.nix b/pkgs/by-name/do/dokuwiki/package.nix index 2cca5f6d0852a..55df88397d428 100644 --- a/pkgs/by-name/do/dokuwiki/package.nix +++ b/pkgs/by-name/do/dokuwiki/package.nix @@ -99,12 +99,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/doona/package.nix b/pkgs/by-name/do/doona/package.nix index 55ce8e4e96b78..8224aa55cf28d 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 ea8df94b01b3c..0e103e3d36a9f 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 3618dbc19fa0c..ab3f7603b86c3 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 046a652570373..898a850214de4 100644 --- a/pkgs/by-name/do/doppler/package.nix +++ b/pkgs/by-name/do/doppler/package.nix @@ -46,11 +46,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 28991f77b5f2e..5d76134d97aed 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/dot-language-server/package.nix b/pkgs/by-name/do/dot-language-server/package.nix index cb94613eb5889..720374bdf962c 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 da6ab11c5548c..3d07dbdde86ea 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-ilvsqwvfQejo453veSZ5VMP8XhL7NryrDh+rYJkXk30="; - 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 02d999ce46d5d..d7fe95d84444d 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/dotfiles/package.nix b/pkgs/by-name/do/dotfiles/package.nix index d901548326ba8..bc66ec6ab7f1d 100644 --- a/pkgs/by-name/do/dotfiles/package.nix +++ b/pkgs/by-name/do/dotfiles/package.nix @@ -19,10 +19,10 @@ python3Packages.buildPythonApplication rec { nativeCheckInputs = with python3Packages; [ pytest ]; propagatedBuildInputs = with python3Packages; [ click ]; - 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/dotter/package.nix b/pkgs/by-name/do/dotter/package.nix index 68d55ffba40d7..71a865f00c2a8 100644 --- a/pkgs/by-name/do/dotter/package.nix +++ b/pkgs/by-name/do/dotter/package.nix @@ -42,11 +42,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-entry-generator/package.nix b/pkgs/by-name/do/double-entry-generator/package.nix index f57f8b185b9d5..c2a41ef9da6de 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/dovecot_fts_xapian/package.nix b/pkgs/by-name/do/dovecot_fts_xapian/package.nix index 5739d5fff0096..6c1889ffb8477 100644 --- a/pkgs/by-name/do/dovecot_fts_xapian/package.nix +++ b/pkgs/by-name/do/dovecot_fts_xapian/package.nix @@ -41,16 +41,16 @@ stdenv.mkDerivation rec { "--with-moduledir=$(out)/lib/dovecot" ]; - meta = with lib; { + meta = { homepage = "https://github.com/grosjo/fts-xapian"; description = "Dovecot FTS plugin based on Xapian"; changelog = "https://github.com/grosjo/fts-xapian/releases"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ julm symphorien ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/dovecot_fts_xapian.x86_64-darwin }; } diff --git a/pkgs/by-name/do/downonspot/package.nix b/pkgs/by-name/do/downonspot/package.nix index 6d9e05f8efe89..de02fda026a11 100644 --- a/pkgs/by-name/do/downonspot/package.nix +++ b/pkgs/by-name/do/downonspot/package.nix @@ -36,12 +36,12 @@ rustPlatform.buildRustPackage rec { lame ]; - meta = with lib; { + meta = { description = "Spotify downloader written in rust"; homepage = "https://github.com/oSumAtrIX/DownOnSpot"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ onny ]; mainProgram = "down_on_spot"; }; } diff --git a/pkgs/by-name/dp/dpic/package.nix b/pkgs/by-name/dp/dpic/package.nix index fb5acef4157df..e6b78c3339d8a 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/dpt-rp1-py/package.nix b/pkgs/by-name/dp/dpt-rp1-py/package.nix index 27be986648ef5..8d2ebb952a621 100644 --- a/pkgs/by-name/dp/dpt-rp1-py/package.nix +++ b/pkgs/by-name/dp/dpt-rp1-py/package.nix @@ -31,11 +31,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 fe141c096fb18..ea740916443fb 100644 --- a/pkgs/by-name/dr/dr14_tmeter/package.nix +++ b/pkgs/by-name/dr/dr14_tmeter/package.nix @@ -30,10 +30,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 13b35e629c0ec..b8848870ccf9d 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 92441b185ed40..4e7175e313b2b 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 57085a65ecd3f..b58159b0fbe1a 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 2d2971dc64214..cce1fcbb31be9 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 071a70095adff..db1a06e68121a 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/dragmap/package.nix b/pkgs/by-name/dr/dragmap/package.nix index 9f61cbb3e5e4d..d10dcb30a2bc3 100644 --- a/pkgs/by-name/dr/dragmap/package.nix +++ b/pkgs/by-name/dr/dragmap/package.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation (finalAttrs: { # Tests are launched by default from makefile doCheck = false; - meta = with lib; { + meta = { description = "Open Source version of Dragen mapper for genomics"; mainProgram = "dragen-os"; longDescription = '' @@ -61,8 +61,8 @@ stdenv.mkDerivation (finalAttrs: { which the Illumina team created to procude the same results as their proprietary DRAGEN hardware. ''; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ apraga ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ apraga ]; }; }) diff --git a/pkgs/by-name/dr/dragonfly-reverb/package.nix b/pkgs/by-name/dr/dragonfly-reverb/package.nix index f741bcb7c02c6..a54001f43e556 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 5a38c54c07e78..b905f0d067883 100644 --- a/pkgs/by-name/dr/dragonflydb/package.nix +++ b/pkgs/by-name/dr/dragonflydb/package.nix @@ -107,11 +107,11 @@ 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; [ yureien ]; + license = lib.licenses.bsl11; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ yureien ]; }; } diff --git a/pkgs/by-name/dr/drip/package.nix b/pkgs/by-name/dr/drip/package.nix index 217b62c251e0a..1bfcf1a2d3367 100644 --- a/pkgs/by-name/dr/drip/package.nix +++ b/pkgs/by-name/dr/drip/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Launcher for the Java Virtual Machine intended to be a drop-in replacement for the java command, only faster"; - license = licenses.epl10; + license = lib.licenses.epl10; homepage = "https://github.com/ninjudd/drip"; - platforms = platforms.linux; - maintainers = [ maintainers.rybern ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.rybern ]; }; } diff --git a/pkgs/by-name/dr/drive/package.nix b/pkgs/by-name/dr/drive/package.nix index 7eb4412744eec..ac2ad547cc703 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 b10af966e5282..28e75f873ba48 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 c1aedb0449640..cbf3d2cde1066 100644 --- a/pkgs/by-name/dr/drogon/package.nix +++ b/pkgs/by-name/dr/drogon/package.nix @@ -77,11 +77,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 b7f9ce79874a7..037bf2a39eed3 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/drone-cli/package.nix b/pkgs/by-name/dr/drone-cli/package.nix index 5ee21e8078224..f8a707a14562f 100644 --- a/pkgs/by-name/dr/drone-cli/package.nix +++ b/pkgs/by-name/dr/drone-cli/package.nix @@ -28,10 +28,10 @@ buildGoModule rec { doCheck = false; - 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 290ca71e3bfd6..7ddb600ff177a 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 75436cfc8e4e5..3aed024bd8fb1 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 rec { 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 0e5b7519ee095..926bdc20cd452 100644 --- a/pkgs/by-name/dr/drone-runner-ssh/package.nix +++ b/pkgs/by-name/dr/drone-runner-ssh/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { 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; - maintainers = teams.c3d2.members; + license = lib.licenses.unfreeRedistributable; + maintainers = lib.teams.c3d2.members; 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 07d38d2e6623d..7a9ee14772771 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 2e1d3b29b7614..580604fa762d3 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 20e0b7ccf9b50..b37e56fa9757d 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/dsd/package.nix b/pkgs/by-name/ds/dsd/package.nix index cc91139b1871d..65125f8679e3f 100644 --- a/pkgs/by-name/ds/dsd/package.nix +++ b/pkgs/by-name/ds/dsd/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Digital Speech Decoder"; longDescription = '' DSD is able to decode several digital voice formats from discriminator @@ -40,8 +40,8 @@ stdenv.mkDerivation rec { mbelib, which is a separate package. ''; homepage = "https://github.com/szechyjs/dsd"; - license = licenses.gpl2; - platforms = platforms.unix; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; maintainers = [ ]; mainProgram = "dsd"; }; diff --git a/pkgs/by-name/ds/dsda-launcher/package.nix b/pkgs/by-name/ds/dsda-launcher/package.nix index b384911a9c356..39c1dd26cacbb 100644 --- a/pkgs/by-name/ds/dsda-launcher/package.nix +++ b/pkgs/by-name/ds/dsda-launcher/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/Pedro-Beirao/dsda-launcher"; description = "This is a launcher GUI for the dsda-doom source port"; mainProgram = "dsda-launcher"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.Gliczy ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.Gliczy ]; }; } diff --git a/pkgs/by-name/ds/dsf2flac/package.nix b/pkgs/by-name/ds/dsf2flac/package.nix index 0426125212eed..fabbb97dea8c1 100644 --- a/pkgs/by-name/ds/dsf2flac/package.nix +++ b/pkgs/by-name/ds/dsf2flac/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ]; - meta = with lib; { + meta = { description = "DSD to FLAC transcoding tool"; homepage = "https://github.com/hank/dsf2flac"; - license = licenses.gpl2; - maintainers = with maintainers; [ artemist ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ artemist ]; platforms = [ "x86_64-linux" ]; mainProgram = "dsf2flac"; }; diff --git a/pkgs/by-name/ds/dsniff/package.nix b/pkgs/by-name/ds/dsniff/package.nix index 088405f92c479..e543fb21ce537 100644 --- a/pkgs/by-name/ds/dsniff/package.nix +++ b/pkgs/by-name/ds/dsniff/package.nix @@ -102,15 +102,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 60af92243c76c..bd289a7119fd6 100644 --- a/pkgs/by-name/ds/dspam/package.nix +++ b/pkgs/by-name/ds/dspam/package.nix @@ -142,11 +142,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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.agpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/ds/dsq/package.nix b/pkgs/by-name/ds/dsq/package.nix index b32ca150c12fe..f25680bbb8a75 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 0e56190f1ac1b..43eb9c06ce32a 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 54e8a95355b79..3e39a216643a8 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 14a3c3b7cd584..185180b717f6d 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 c06a34434a560..cae8596163f7c 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 90c07c1145549..c3303f2a4ea20 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 9cd30c0dbba63..5ea9b073d168f 100644 --- a/pkgs/by-name/dt/dtc/package.nix +++ b/pkgs/by-name/dt/dtc/package.nix @@ -86,12 +86,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 abf24f17ec908..14f0c1a8b1496 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 f69892f41dd3b..5766e9d78589c 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 64d526e51249a..4b74d532b40e2 100644 --- a/pkgs/by-name/dt/dtool/package.nix +++ b/pkgs/by-name/dt/dtool/package.nix @@ -27,11 +27,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 ad3047806aeb9..ce604b812b16d 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/dt/dtrx/package.nix b/pkgs/by-name/dt/dtrx/package.nix index 837f434fb9816..5450730118280 100644 --- a/pkgs/by-name/dt/dtrx/package.nix +++ b/pkgs/by-name/dt/dtrx/package.nix @@ -61,10 +61,10 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Do The Right Extraction: A tool for taking the hassle out of extracting archives"; homepage = "https://github.com/dtrx-py/dtrx"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; mainProgram = "dtrx"; }; diff --git a/pkgs/by-name/du/dub/package.nix b/pkgs/by-name/du/dub/package.nix index 3f4bc2dae80eb..8df080bb0fd8b 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 a070e05fa52e8..05bfb8e23364f 100644 --- a/pkgs/by-name/du/dublin-traceroute/package.nix +++ b/pkgs/by-name/du/dublin-traceroute/package.nix @@ -50,12 +50,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/duckling-proxy/package.nix b/pkgs/by-name/du/duckling-proxy/package.nix index 8c8d9518b9db3..857cacf04999d 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/duf/package.nix b/pkgs/by-name/du/duf/package.nix index dce3c1588834d..79f178ca64af2 100644 --- a/pkgs/by-name/du/duf/package.nix +++ b/pkgs/by-name/du/duf/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { installManPage duf.1 ''; - meta = with lib; { + meta = { homepage = "https://github.com/muesli/duf/"; description = "Disk Usage/Free Utility"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda penguwin sigmasquadron diff --git a/pkgs/by-name/du/duktape/package.nix b/pkgs/by-name/du/duktape/package.nix index c285f44a5e4ad..55a755393796c 100644 --- a/pkgs/by-name/du/duktape/package.nix +++ b/pkgs/by-name/du/duktape/package.nix @@ -37,13 +37,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 d9f1513daf024..3b8c4849e40b0 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/dumb/package.nix b/pkgs/by-name/du/dumb/package.nix index 48d25f2601fdd..36c1cbd7bb8c1 100644 --- a/pkgs/by-name/du/dumb/package.nix +++ b/pkgs/by-name/du/dumb/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { "-DBUILD_EXAMPLES='OFF'" ]; - meta = with lib; { + meta = { homepage = "https://github.com/kode54/dumb"; description = "Module/tracker based music format parser and player library"; - license = licenses.free; # Derivative of GPL - maintainers = with maintainers; [ Madouura ]; - platforms = platforms.all; + license = lib.licenses.free; # Derivative of GPL + maintainers = with lib.maintainers; [ Madouura ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/du/dumbpipe/package.nix b/pkgs/by-name/du/dumbpipe/package.nix index 7b68daf34923d..eceb3583f9a8f 100644 --- a/pkgs/by-name/du/dumbpipe/package.nix +++ b/pkgs/by-name/du/dumbpipe/package.nix @@ -26,14 +26,14 @@ rustPlatform.buildRustPackage rec { ] ); - meta = with lib; { + meta = { description = "Connect A to B - Send Data"; homepage = "https://www.dumbpipe.dev/"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ cameronfyfe ]; + maintainers = with lib.maintainers; [ cameronfyfe ]; mainProgram = "dumbpipe"; }; } diff --git a/pkgs/by-name/du/dummyhttp/package.nix b/pkgs/by-name/du/dummyhttp/package.nix index fc394a85fca10..cabfdb42ca4d4 100644 --- a/pkgs/by-name/du/dummyhttp/package.nix +++ b/pkgs/by-name/du/dummyhttp/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.Security ]; - 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 ]; - maintainers = with maintainers; [ GuillaumeDesforges ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ GuillaumeDesforges ]; mainProgram = "dummyhttp"; }; } diff --git a/pkgs/by-name/du/dump1090/package.nix b/pkgs/by-name/du/dump1090/package.nix index 9d23fe65006de..857133b0cd227 100644 --- a/pkgs/by-name/du/dump1090/package.nix +++ b/pkgs/by-name/du/dump1090/package.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Simple Mode S decoder for RTLSDR devices"; homepage = "https://github.com/flightaware/dump1090"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ earldouglas ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ earldouglas ]; }; } diff --git a/pkgs/by-name/du/dumpnar/package.nix b/pkgs/by-name/du/dumpnar/package.nix index 9206ae22c9563..637da47337fda 100644 --- a/pkgs/by-name/du/dumpnar/package.nix +++ b/pkgs/by-name/du/dumpnar/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { 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 244e79109a3fc..d30888501282a 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 71cd9e53c1943..2abbce1fddb78 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 1f9b2349ada17..be8a0a00ec909 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-9/TSmw0XEnEURgrT6Oy3nqnNkmXUHLr0InlKyg4m9sQ="; - 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 46a5522d597df..15091e2979e15 100644 --- a/pkgs/by-name/du/duperemove/package.nix +++ b/pkgs/by-name/du/duperemove/package.nix @@ -48,15 +48,15 @@ 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; [ bluescreen303 thoughtpolice ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "duperemove"; }; } diff --git a/pkgs/by-name/du/dutree/package.nix b/pkgs/by-name/du/dutree/package.nix index 741a579a1283d..ccc6c942f56f5 100644 --- a/pkgs/by-name/du/dutree/package.nix +++ b/pkgs/by-name/du/dutree/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-/E+4yJEhZbERy4vOqn0Ruv3zOcd2FA+q41qZ0Tvg4T0="; - meta = with lib; { + meta = { description = "Tool to analyze file system usage written in Rust"; homepage = "https://github.com/nachoparker/dutree"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "dutree"; }; } diff --git a/pkgs/by-name/dv/dvd-vr/package.nix b/pkgs/by-name/dv/dvd-vr/package.nix index 3a807f009d2df..8d2b48492f0aa 100644 --- a/pkgs/by-name/dv/dvd-vr/package.nix +++ b/pkgs/by-name/dv/dvd-vr/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation (finalAttrs: { }; makeFlags = [ "PREFIX=$(out)" ]; - 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/dvdisaster/package.nix b/pkgs/by-name/dv/dvdisaster/package.nix index c5e2921ce507e..796bcb6db569e 100644 --- a/pkgs/by-name/dv/dvdisaster/package.nix +++ b/pkgs/by-name/dv/dvdisaster/package.nix @@ -89,7 +89,7 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://dvdisaster.jcea.es/"; description = "Data loss/scratch/aging protection for CD/DVD media"; longDescription = '' @@ -98,8 +98,8 @@ stdenv.mkDerivation rec { data which is used to recover unreadable sectors if the disc becomes damaged at a later time. ''; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "dvdisaster"; }; diff --git a/pkgs/by-name/dv/dvdplusrwtools/package.nix b/pkgs/by-name/dv/dvdplusrwtools/package.nix index e16f95fe74127..9c4663c4906ff 100644 --- a/pkgs/by-name/dv/dvdplusrwtools/package.nix +++ b/pkgs/by-name/dv/dvdplusrwtools/package.nix @@ -93,11 +93,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/dw/dwarf2json/package.nix b/pkgs/by-name/dw/dwarf2json/package.nix index 05e3983dd41f3..872911c75e26a 100644 --- a/pkgs/by-name/dw/dwarf2json/package.nix +++ b/pkgs/by-name/dw/dwarf2json/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-tgs0l+sYdAxMHwVTew++keNpDyrHmevpmOBVIiuL+34="; - 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; [ arkivm ]; + license = lib.licenses.vol-sl; + maintainers = with lib.maintainers; [ arkivm ]; mainProgram = "dwarf2json"; }; } diff --git a/pkgs/by-name/dw/dwdiff/package.nix b/pkgs/by-name/dw/dwdiff/package.nix index 9db502a2b367e..882c2016d3ed3 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/dwfv/package.nix b/pkgs/by-name/dw/dwfv/package.nix index fd1dee2057345..eb4b7c0681744 100644 --- a/pkgs/by-name/dw/dwfv/package.nix +++ b/pkgs/by-name/dw/dwfv/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-nmnpHz9sCRlxOngcSrW+oktYIKM/A295/a03fUf3ofw="; - meta = with lib; { + meta = { description = "Simple digital waveform viewer with vi-like key bindings"; mainProgram = "dwfv"; homepage = "https://github.com/psurply/dwfv"; - license = licenses.mit; - maintainers = with maintainers; [ newam ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ newam ]; }; } diff --git a/pkgs/by-name/dw/dwmbar/package.nix b/pkgs/by-name/dw/dwmbar/package.nix index e649e508731ff..ef592752ace7f 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 d861dfb009f63..8524914d0611e 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 361f614770b07..e537deec63c88 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/dy/dynamic-colors/package.nix b/pkgs/by-name/dy/dynamic-colors/package.nix index b59e413cf87a9..17df2cc22ee49 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 786db004d7a31..b8c4e064409a9 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 c7e92369be6e9..5e2e71899d869 100644 --- a/pkgs/by-name/dy/dynamodb-local/package.nix +++ b/pkgs/by-name/dy/dynamodb-local/package.nix @@ -80,16 +80,16 @@ 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; [ shyim 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 604438b4d3dab..1a054088d2489 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/e1/e16/package.nix b/pkgs/by-name/e1/e16/package.nix index 7036c2db65104..3859c86b7939b 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 21b1ba0c7bf49..25795951879e7 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 f4d4de5f4ab7a..bd5a3a0caaab0 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-sH9rraPNAIlW2KQVaZfYa10c1HHQpDgedY1+9e94RLE="; - meta = with lib; { + meta = { description = " A better way of working with structured data on the command line"; 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 17de44cc027e2..1ce7d5159d72d 100644 --- a/pkgs/by-name/ea/eaglemode/package.nix +++ b/pkgs/by-name/ea/eaglemode/package.nix @@ -135,15 +135,15 @@ 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 ehmry ]; - 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 7d045857fa1b5..91617a829d41e 100644 --- a/pkgs/by-name/ea/eartag/package.nix +++ b/pkgs/by-name/ea/eartag/package.nix @@ -78,14 +78,14 @@ python3Packages.buildPythonApplication rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/World/eartag"; description = "Simple music tag editor"; # 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 ] ++ lib.teams.gnome-circle.members; + maintainers = with lib.maintainers; [ foo-dogsquared ] ++ lib.teams.gnome-circle.members; }; } diff --git a/pkgs/by-name/ea/easyeda2kicad/package.nix b/pkgs/by-name/ea/easyeda2kicad/package.nix index 9cfbe3b116cc9..073df871c1144 100644 --- a/pkgs/by-name/ea/easyeda2kicad/package.nix +++ b/pkgs/by-name/ea/easyeda2kicad/package.nix @@ -19,11 +19,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 97d6ddd6f845a..59ae1c4453794 100644 --- a/pkgs/by-name/ea/easyjson/package.nix +++ b/pkgs/by-name/ea/easyjson/package.nix @@ -18,11 +18,11 @@ 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; - maintainers = with maintainers; [ Madouura ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Madouura ]; }; } diff --git a/pkgs/by-name/ea/easypdkprog/package.nix b/pkgs/by-name/ea/easypdkprog/package.nix index b4c86551e142a..acf1e76d1234f 100644 --- a/pkgs/by-name/ea/easypdkprog/package.nix +++ b/pkgs/by-name/ea/easypdkprog/package.nix @@ -23,12 +23,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/easyroam-connect-desktop/package.nix b/pkgs/by-name/ea/easyroam-connect-desktop/package.nix index 3befba9a52114..5053779b9c094 100644 --- a/pkgs/by-name/ea/easyroam-connect-desktop/package.nix +++ b/pkgs/by-name/ea/easyroam-connect-desktop/package.nix @@ -61,15 +61,15 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Manage and install your easyroam WiFi profiles"; mainProgram = "easyroam_connect_desktop"; longDescription = '' Using this software you can easily connect your device to eduroam® by simply logging in with your DFN-AAI account. ''; homepage = "https://easyroam.de"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ shadows_withal MarchCraft ]; diff --git a/pkgs/by-name/ea/easysnap/package.nix b/pkgs/by-name/ea/easysnap/package.nix index 6d88b2c00f6d0..ca25c53699194 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/eb/eb-garamond/package.nix b/pkgs/by-name/eb/eb-garamond/package.nix index cbe42f1d132c5..efcb547f7556b 100644 --- a/pkgs/by-name/eb/eb-garamond/package.nix +++ b/pkgs/by-name/eb/eb-garamond/package.nix @@ -22,14 +22,14 @@ 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; [ 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 730b10af6f3b3..467c44806b6f9 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 8f09811d83fb3..ac34a1d685c78 100644 --- a/pkgs/by-name/eb/ebook_tools/package.nix +++ b/pkgs/by-name/eb/ebook_tools/package.nix @@ -26,11 +26,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 6b721e968981f..6134edcb7762d 100644 --- a/pkgs/by-name/eb/ebpf-usb/package.nix +++ b/pkgs/by-name/eb/ebpf-usb/package.nix @@ -41,11 +41,11 @@ python3Packages.buildPythonApplication rec { # 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 56afed5ce29c8..cf5c319b9e113 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/ebtks/package.nix b/pkgs/by-name/eb/ebtks/package.nix index e1d62ad41d0da..d5fb83a45cc6e 100644 --- a/pkgs/by-name/eb/ebtks/package.nix +++ b/pkgs/by-name/eb/ebtks/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { cmakeFlags = [ "-DLIBMINC_DIR=${libminc}/lib/cmake" ]; - meta = with lib; { + meta = { homepage = "https://github.com/BIC-MNI/EBTKS"; description = "Library for working with MINC files"; - 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/eb/ebumeter/package.nix b/pkgs/by-name/eb/ebumeter/package.nix index 3249c179cead3..501e492c05987 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; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/eb/ebusd/package.nix b/pkgs/by-name/eb/ebusd/package.nix index 4527d330a1ccf..e68b22176b116 100644 --- a/pkgs/by-name/eb/ebusd/package.nix +++ b/pkgs/by-name/eb/ebusd/package.nix @@ -60,11 +60,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 d8a00b2261352..5e683843c6f59 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 0c71830775e31..6c419461acf8b 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 f0ffe858c2029..c12d4c6d8a924 100644 --- a/pkgs/by-name/ec/ecdsatool/package.nix +++ b/pkgs/by-name/ec/ecdsatool/package.nix @@ -32,11 +32,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 6b7dec6e11e62..73c6cbc534672 100644 --- a/pkgs/by-name/ec/ecdsautils/package.nix +++ b/pkgs/by-name/ec/ecdsautils/package.nix @@ -25,14 +25,14 @@ stdenv.mkDerivation { ]; buildInputs = with pkgs; [ 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 df47d3a05d445..e4188ae850b23 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/eclint/package.nix b/pkgs/by-name/ec/eclint/package.nix index 3928cb5ef5b9d..b43dbedff0b05 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/ecopcr/package.nix b/pkgs/by-name/ec/ecopcr/package.nix index b49f26826d625..7e7ad38c8f64c 100644 --- a/pkgs/by-name/ec/ecopcr/package.nix +++ b/pkgs/by-name/ec/ecopcr/package.nix @@ -35,7 +35,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 @@ -45,7 +45,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/ecos/package.nix b/pkgs/by-name/ec/ecos/package.nix index ed8104e73a596..0d8e04cba18d1 100644 --- a/pkgs/by-name/ec/ecos/package.nix +++ b/pkgs/by-name/ec/ecos/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { cp -r include $out/ ''; - meta = with lib; { + meta = { description = "Lightweight conic solver for second-order cone programming"; homepage = "https://www.embotech.com/ECOS"; downloadPage = "https://github.com/embotech/ecos/releases"; - license = licenses.gpl3; - platforms = platforms.all; - maintainers = with maintainers; [ bhipple ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ bhipple ]; }; } diff --git a/pkgs/by-name/ec/ecwolf/package.nix b/pkgs/by-name/ec/ecwolf/package.nix index f8c3a8fe638a1..e9bba2808cd5f 100644 --- a/pkgs/by-name/ec/ecwolf/package.nix +++ b/pkgs/by-name/ec/ecwolf/package.nix @@ -104,15 +104,15 @@ 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 sander ]; - 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 ce70e919732f0..6dd40724ffeb1 100644 --- a/pkgs/by-name/ed/edac-utils/package.nix +++ b/pkgs/by-name/ed/edac-utils/package.nix @@ -51,10 +51,10 @@ 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"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ed/edge-runtime/package.nix b/pkgs/by-name/ed/edge-runtime/package.nix index e6133bf1389e6..8e7a025280919 100644 --- a/pkgs/by-name/ed/edge-runtime/package.nix +++ b/pkgs/by-name/ed/edge-runtime/package.nix @@ -68,11 +68,11 @@ rustPlatform.buildRustPackage { doCheck = false; - meta = with lib; { + meta = { description = "Server based on Deno runtime, capable of running JavaScript, TypeScript, and WASM services"; mainProgram = "edge-runtime"; homepage = "https://github.com/supabase/edge-runtime"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/by-name/ed/edid-decode/package.nix b/pkgs/by-name/ed/edid-decode/package.nix index f5ac1176221ea..5228ceeb46cee 100644 --- a/pkgs/by-name/ed/edid-decode/package.nix +++ b/pkgs/by-name/ed/edid-decode/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "EDID decoder and conformance tester"; homepage = "https://git.linuxtv.org/edid-decode.git"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ Madouura ]; - platforms = platforms.all; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ Madouura ]; + platforms = lib.platforms.all; mainProgram = "edid-decode"; }; } diff --git a/pkgs/by-name/ed/edir/package.nix b/pkgs/by-name/ed/edir/package.nix index 406f6a677e6a6..397e9603b477b 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 c8f7558f62f77..8f2bc65f47e56 100644 --- a/pkgs/by-name/ed/editline/package.nix +++ b/pkgs/by-name/ed/editline/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { 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 bdf1b640508fa..b8e9831b0c7fc 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/editres/package.nix b/pkgs/by-name/ed/editres/package.nix index 63ec3f9d74d72..510d952face6b 100644 --- a/pkgs/by-name/ed/editres/package.nix +++ b/pkgs/by-name/ed/editres/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { homepage = "https://cgit.freedesktop.org/xorg/app/editres/"; description = "Dynamic resource editor for X Toolkit applications"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; mainProgram = "editres"; }; } diff --git a/pkgs/by-name/ed/edl/package.nix b/pkgs/by-name/ed/edl/package.nix index 87b5fd6149ac1..d811393bf49fa 100644 --- a/pkgs/by-name/ed/edl/package.nix +++ b/pkgs/by-name/ed/edl/package.nix @@ -48,12 +48,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/edlib/package.nix b/pkgs/by-name/ed/edlib/package.nix index dae63438985d7..a34563d0f83bb 100644 --- a/pkgs/by-name/ed/edlib/package.nix +++ b/pkgs/by-name/ed/edlib/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://martinsos.github.io/edlib"; description = "Lightweight, fast C/C++ library for sequence alignment using edit distance"; - maintainers = with maintainers; [ bcdarwin ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ed/edlin/package.nix b/pkgs/by-name/ed/edlin/package.nix index 4575b117ccf86..893d04bcd442a 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = with platforms; unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = with lib.platforms; unix; mainProgram = "edlin"; }; }) diff --git a/pkgs/by-name/ed/edwin/package.nix b/pkgs/by-name/ed/edwin/package.nix index fc2a84215fa91..506e8d5cd389a 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 04fc2084ffb17..f742ab2742e27 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 95e041383fdfe..88e4fa3e418a0 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/efficient-compression-tool/package.nix b/pkgs/by-name/ef/efficient-compression-tool/package.nix index 7b01069437d9e..d369e161d5523 100644 --- a/pkgs/by-name/ef/efficient-compression-tool/package.nix +++ b/pkgs/by-name/ef/efficient-compression-tool/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { "-include cstdint" ]; - meta = with lib; { + meta = { description = "Fast and effective C++ file optimizer"; homepage = "https://github.com/fhanau/Efficient-Compression-Tool"; - license = licenses.asl20; - maintainers = [ maintainers.lunik1 ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.lunik1 ]; + platforms = lib.platforms.linux; mainProgram = "ect"; }; } diff --git a/pkgs/by-name/ef/efitools/package.nix b/pkgs/by-name/ef/efitools/package.nix index 5248199c68738..2264bc37113c2 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 982e7cff6c16e..da677d7288fb7 100644 --- a/pkgs/by-name/ef/efivar/package.nix +++ b/pkgs/by-name/ef/efivar/package.nix @@ -43,10 +43,10 @@ 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; }; } diff --git a/pkgs/by-name/ef/efm-langserver/package.nix b/pkgs/by-name/ef/efm-langserver/package.nix index d87544198d276..f60f9b40dcb64 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 5f62f9eb627f7..b01dfb81f8c62 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/eget/package.nix b/pkgs/by-name/eg/eget/package.nix index 401795ba0e4f6..8a3cee2144efc 100644 --- a/pkgs/by-name/eg/eget/package.nix +++ b/pkgs/by-name/eg/eget/package.nix @@ -47,10 +47,10 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Easily install prebuilt binaries from GitHub"; homepage = "https://github.com/zyedidia/eget"; - license = licenses.mit; - maintainers = with maintainers; [ zendo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zendo ]; }; } diff --git a/pkgs/by-name/eg/eggdbus/package.nix b/pkgs/by-name/eg/eggdbus/package.nix index 69797db314cdb..c64bdca6f133d 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 da007bc129f7d..29aa8b1c62a8c 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 1e947e1cfcb31..3d1b338f5fc97 100644 --- a/pkgs/by-name/eg/egglog/package.nix +++ b/pkgs/by-name/eg/egglog/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage { }; }; - 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; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/eg/eggnog-mapper/package.nix b/pkgs/by-name/eg/eggnog-mapper/package.nix index 80d9be278edae..ab35b651ca0d9 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/eglexternalplatform/package.nix b/pkgs/by-name/eg/eglexternalplatform/package.nix index 51f865708ddd1..1785fadbe95d8 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 71edbdb891f59..6c2a1d3fabd54 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 0866b0070c322..e5042054644a0 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; - maintainers = with maintainers; [ sersorrel ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ sersorrel ]; + platforms = lib.platforms.linux; mainProgram = "eiciel"; }; } diff --git a/pkgs/by-name/ei/eidolon/package.nix b/pkgs/by-name/ei/eidolon/package.nix index d79fdb4b4af07..f248b29181da6 100644 --- a/pkgs/by-name/ei/eidolon/package.nix +++ b/pkgs/by-name/ei/eidolon/package.nix @@ -28,12 +28,12 @@ rustPlatform.buildRustPackage rec { ln -sf ${./Cargo.lock} Cargo.lock ''; - meta = with lib; { + meta = { description = "Single TUI-based registry for drm-free, wine and steam games on linux, accessed through a rofi launch menu"; mainProgram = "eidolon"; homepage = "https://github.com/nicohman/eidolon"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ _0x4A6F ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ _0x4A6F ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ei/eigenmath/package.nix b/pkgs/by-name/ei/eigenmath/package.nix index d649a87dc0806..df6d88d52b0db 100644 --- a/pkgs/by-name/ei/eigenmath/package.nix +++ b/pkgs/by-name/ei/eigenmath/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { 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 91c06efbb0d14..3ab6c00e7fb51 100644 --- a/pkgs/by-name/ei/eiwd/package.nix +++ b/pkgs/by-name/ei/eiwd/package.nix @@ -85,10 +85,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 165243ad4bc4d..a1955800b161a 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 2d1a57df40fe4..ccf49a89da637 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 742280b397d38..daa170ab13796 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 cb3f44a210ad3..48466dbf24a7c 100644 --- a/pkgs/by-name/ek/ekam/package.nix +++ b/pkgs/by-name/ek/ekam/package.nix @@ -57,7 +57,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 @@ -65,8 +65,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/electricsheep/package.nix b/pkgs/by-name/el/electricsheep/package.nix index 21d6749573754..7fb02d70d2bf3 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 33c495035f144..316838abad002 100644 --- a/pkgs/by-name/el/electron-fiddle/package.nix +++ b/pkgs/by-name/el/electron-fiddle/package.nix @@ -177,11 +177,11 @@ 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; - maintainers = with maintainers; [ andersk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ andersk ]; platforms = electron.meta.platforms; }; } diff --git a/pkgs/by-name/el/elektroid/package.nix b/pkgs/by-name/el/elektroid/package.nix index cc4f8202ba040..de54ca9a3d62d 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/package.nix b/pkgs/by-name/el/element/package.nix index 1645db9ce4ff3..6996cc00418c2 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/elf2nucleus/package.nix b/pkgs/by-name/el/elf2nucleus/package.nix index 0712d63f0b732..88e62c0a81dc0 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/elfcat/package.nix b/pkgs/by-name/el/elfcat/package.nix index fcee39e0c21c7..d138895fb56d2 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-Dc+SuLwbLFcNSr9RiNSc7dgisBOvOUEIDR8dFAkC/O0="; - 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 886632cf0eb6e..f84730de258a6 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 60e87d4b1f485..e7ff8f1652b2d 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 f07ab5b6aebcb..240683259b201 100644 --- a/pkgs/by-name/el/elfutils/package.nix +++ b/pkgs/by-name/el/elfutils/package.nix @@ -151,19 +151,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 0f4aa3e756628..e8992dfe8de1e 100644 --- a/pkgs/by-name/el/elfx86exts/package.nix +++ b/pkgs/by-name/el/elfx86exts/package.nix @@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-NH7QK8a+ndhZGlLa3gWlnQdBQil1pi2AAi5TtFgkVf0="; - 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 rec { 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/elkhound/package.nix b/pkgs/by-name/el/elkhound/package.nix index a5f4b3543fc42..60e29cf60f065 100644 --- a/pkgs/by-name/el/elkhound/package.nix +++ b/pkgs/by-name/el/elkhound/package.nix @@ -45,12 +45,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 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ peterhoeg ]; # possibly works on Darwin - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/el/elmerfem/package.nix b/pkgs/by-name/el/elmerfem/package.nix index 820781d98759a..e367fd2d07298 100644 --- a/pkgs/by-name/el/elmerfem/package.nix +++ b/pkgs/by-name/el/elmerfem/package.nix @@ -71,15 +71,15 @@ stdenv.mkDerivation rec { "-DCMAKE_OpenGL_GL_PREFERENCE=GLVND" ]; - 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 95b90e030d947..b061da4903cea 100644 --- a/pkgs/by-name/el/elogind/package.nix +++ b/pkgs/by-name/el/elogind/package.nix @@ -146,11 +146,11 @@ stdenv.mkDerivation rec { (lib.mesonEnable "xenctrl" false) ]; - meta = with lib; { + meta = { homepage = "https://github.com/elogind/elogind"; description = ''The 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/eltclsh/package.nix b/pkgs/by-name/el/eltclsh/package.nix index 9753cd7200346..4fdb3725c8a07 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/em/em/package.nix b/pkgs/by-name/em/em/package.nix index a70e2d19d779c..b17ea4afb0aa1 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ AndersonTorres ]; + 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 a57e322e338e8..6862d006001d2 100644 --- a/pkgs/by-name/em/em100/package.nix +++ b/pkgs/by-name/em/em100/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { 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-lsp-booster/package.nix b/pkgs/by-name/em/emacs-lsp-booster/package.nix index a901b2ade7530..ea5f9cdb4e260 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 31a0472baa0cd..f7156124bb48b 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 c7954fb558b36..7bcb2bc147388 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 = "The 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/emoji-picker/package.nix b/pkgs/by-name/em/emoji-picker/package.nix index 76a5c8edda73c..99281162dc141 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 f812a206920a0..8e4284ae7c8b2 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; - maintainers = with maintainers; [ snowflake ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ snowflake ]; + 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 bb2bf0c3fede8..3206b1cf9ecd0 100644 --- a/pkgs/by-name/em/emojipick/package.nix +++ b/pkgs/by-name/em/emojipick/package.nix @@ -62,11 +62,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 1854bc1b1bcc3..bfaccce60b6c4 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 c87ea85fe6b25..5f74631c0b249 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/emu2/package.nix b/pkgs/by-name/em/emu2/package.nix index 2900dc5ab83a4..a14ba65efb5ec 100644 --- a/pkgs/by-name/em/emu2/package.nix +++ b/pkgs/by-name/em/emu2/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/dmsc/emu2/"; description = "Simple text-mode x86 + DOS emulator"; - platforms = platforms.linux; - maintainers = with maintainers; [ AndersonTorres ]; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ AndersonTorres ]; + license = lib.licenses.gpl2Plus; mainProgram = "emu2"; }; } diff --git a/pkgs/by-name/em/emulsion-palette/package.nix b/pkgs/by-name/em/emulsion-palette/package.nix index a55fde901ff6c..0aad543a0d8fb 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/en/enblend-enfuse/package.nix b/pkgs/by-name/en/enblend-enfuse/package.nix index c0065c1bdb822..594aa89331ed4 100644 --- a/pkgs/by-name/en/enblend-enfuse/package.nix +++ b/pkgs/by-name/en/enblend-enfuse/package.nix @@ -54,10 +54,10 @@ stdenv.mkDerivation rec { 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/encpipe/package.nix b/pkgs/by-name/en/encpipe/package.nix index 6d9f09b9c74f4..8d58ffea3eb56 100644 --- a/pkgs/by-name/en/encpipe/package.nix +++ b/pkgs/by-name/en/encpipe/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Encryption tool"; homepage = "https://github.com/jedisct1/encpipe"; - license = licenses.isc; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "encpipe"; }; } diff --git a/pkgs/by-name/en/endeavour/package.nix b/pkgs/by-name/en/endeavour/package.nix index 165910b5b536c..07caa2ad9acba 100644 --- a/pkgs/by-name/en/endeavour/package.nix +++ b/pkgs/by-name/en/endeavour/package.nix @@ -61,12 +61,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; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.gnome.members; + 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 1fe5d05eff485..3f915b42aaa27 100644 --- a/pkgs/by-name/en/endless-sky/package.nix +++ b/pkgs/by-name/en/endless-sky/package.nix @@ -57,17 +57,17 @@ stdenv.mkDerivation rec { prefixKey = "PREFIX="; - 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; [ _360ied ]; - platforms = platforms.linux; # Maybe other non-darwin Unix + maintainers = with lib.maintainers; [ _360ied ]; + 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 d63a2dd350814..6020e4f75a6c8 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 cf46e3c7e912d..234b528a66a03 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 e2abf1870afea..273327fe78c17 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/ensemble-chorus/package.nix b/pkgs/by-name/en/ensemble-chorus/package.nix index 735d2be3afed5..a471f8b6daa24 100644 --- a/pkgs/by-name/en/ensemble-chorus/package.nix +++ b/pkgs/by-name/en/ensemble-chorus/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { libjack2 ]; - 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 9cf35294a41f0..c7d0595825b6a 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 f0ee8ce9f3874..91bc4028f27a7 100644 --- a/pkgs/by-name/en/enter-tex/package.nix +++ b/pkgs/by-name/en/enter-tex/package.nix @@ -70,15 +70,15 @@ stdenv.mkDerivation (finalAttrs: { packageName = "enter-tex"; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/swilmet/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 c871e15d04695..b9a3232344e3b 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/enum4linux/package.nix b/pkgs/by-name/en/enum4linux/package.nix index cd88688cb3c6d..6173ff5513d8b 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 d4eae263e3837..56fd022d493fe 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-CJCay24FlzDmLjfZ1VBxih0f+bgBNu+Xn57QgWT13TA="; - 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/envconsul/package.nix b/pkgs/by-name/en/envconsul/package.nix index a7144c07e7a17..120e93120d02e 100644 --- a/pkgs/by-name/en/envconsul/package.nix +++ b/pkgs/by-name/en/envconsul/package.nix @@ -30,11 +30,11 @@ 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; - maintainers = with maintainers; [ pradeepchhetri ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ pradeepchhetri ]; mainProgram = "envconsul"; }; } diff --git a/pkgs/by-name/en/envfs/package.nix b/pkgs/by-name/en/envfs/package.nix index 69d6a67bc48fd..6785def3feb3e 100644 --- a/pkgs/by-name/en/envfs/package.nix +++ b/pkgs/by-name/en/envfs/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { ln -s envfs $out/bin/mount.envfs ln -s envfs $out/bin/mount.fuse.envfs ''; - meta = with lib; { + meta = { description = "Fuse filesystem that returns symlinks to executables based on the PATH of the requesting process"; homepage = "https://github.com/Mic92/envfs"; - license = licenses.mit; - maintainers = with maintainers; [ mic92 ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mic92 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/en/envsubst/package.nix b/pkgs/by-name/en/envsubst/package.nix index ddd786cc5ce95..6dcdae497b095 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 d0b6867f39c16..9c5bda82eeb16 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/eolie/package.nix b/pkgs/by-name/eo/eolie/package.nix index ef455d62358c7..e456c950cfea0 100644 --- a/pkgs/by-name/eo/eolie/package.nix +++ b/pkgs/by-name/eo/eolie/package.nix @@ -86,12 +86,12 @@ python3.pkgs.buildPythonApplication rec { strictDeps = false; - meta = with lib; { + meta = { description = "New GNOME web browser"; mainProgram = "eolie"; homepage = "https://gitlab.gnome.org/World/eolie"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ samdroid-apps ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ samdroid-apps ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/eo/eos-installer/package.nix b/pkgs/by-name/eo/eos-installer/package.nix index 9bdfbccf6a1dc..1988ae7087ef2 100644 --- a/pkgs/by-name/eo/eos-installer/package.nix +++ b/pkgs/by-name/eo/eos-installer/package.nix @@ -65,12 +65,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/epgstation/package.nix b/pkgs/by-name/ep/epgstation/package.nix index 5d71ece6e0cc5..dae20491d8d9e 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 59ddbab10ec8a..9da4deb0e37a1 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; [ hrdinka medv ]; diff --git a/pkgs/by-name/ep/epilys-bb/package.nix b/pkgs/by-name/ep/epilys-bb/package.nix index c30a2865f6934..bf74002294142 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-+aCMwKOg+3HDntG14gjJLec8XD51wuTyYyzLjuW6lbY="; - 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/epm/package.nix b/pkgs/by-name/ep/epm/package.nix index 9d9c070e8c55e..7b53ba842922b 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/epr/package.nix b/pkgs/by-name/ep/epr/package.nix index 0cdda2e455355..127804aefeddc 100644 --- a/pkgs/by-name/ep/epr/package.nix +++ b/pkgs/by-name/ep/epr/package.nix @@ -15,12 +15,12 @@ python3Packages.buildPythonApplication rec { sha256 = "sha256-1qsqYlqGlCRhl7HINrcTDt5bGlb7g5PmaERylT+UvEg="; }; - meta = with lib; { + meta = { description = "CLI Epub Reader"; mainProgram = "epr"; homepage = "https://github.com/wustho/epr"; - license = licenses.mit; - maintainers = [ maintainers.Br1ght0ne ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.Br1ght0ne ]; + 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 9b50ae13ab273..a1d4f1f34f859 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/epstool/package.nix b/pkgs/by-name/ep/epstool/package.nix index 56b38c0e37e09..7c37dcc99c1bb 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 353f8a775bb53..5796b8321289c 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/eq/equilux-theme/package.nix b/pkgs/by-name/eq/equilux-theme/package.nix index 785c3e0f68bdc..e43b15c24952b 100644 --- a/pkgs/by-name/eq/equilux-theme/package.nix +++ b/pkgs/by-name/eq/equilux-theme/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { rm $out/share/themes/*/COPYING ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Material Design theme for GNOME/GTK based desktop environments"; - license = licenses.gpl2; - platforms = platforms.all; - maintainers = [ maintainers.fpletz ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.fpletz ]; }; } diff --git a/pkgs/by-name/er/ergoscf/package.nix b/pkgs/by-name/er/ergoscf/package.nix index d074d974c1230..4a7a7251031d6 100644 --- a/pkgs/by-name/er/ergoscf/package.nix +++ b/pkgs/by-name/er/ergoscf/package.nix @@ -49,12 +49,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 dba4b02f9de76..76b28edf88ed4 100644 --- a/pkgs/by-name/er/ericw-tools/package.nix +++ b/pkgs/by-name/er/ericw-tools/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - 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 5fcc6673d1070..c3038e6e38106 100644 --- a/pkgs/by-name/er/erigon/package.nix +++ b/pkgs/by-name/er/erigon/package.nix @@ -53,14 +53,14 @@ buildGoModule { passthru.updateScript = nix-update-script { }; - 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; [ d-xo happysalada ]; diff --git a/pkgs/by-name/er/errcheck/package.nix b/pkgs/by-name/er/errcheck/package.nix index 7ec574b4b4ced..29c6465449ff5 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/es/es/package.nix b/pkgs/by-name/es/es/package.nix index 78bfa8981cf5e..b747d8e792bb6 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 1944523f81879..54e46d42dc3f6 100644 --- a/pkgs/by-name/es/esbuild-config/package.nix +++ b/pkgs/by-name/es/esbuild-config/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Z7uYOjMNxsEmsEXDOIr1zIq4nCgHvHIqpRnRH037b8g="; - meta = with lib; { + meta = { description = "Config files for esbuild"; homepage = "https://github.com/bpierre/esbuild-config"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "esbuild-config"; }; } diff --git a/pkgs/by-name/es/eschalot/package.nix b/pkgs/by-name/es/eschalot/package.nix index 28ee6a9ee29a2..13e8e1faccbe4 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 6d4f80521596f..92448a7b82dbf 100644 --- a/pkgs/by-name/es/escrotum/package.nix +++ b/pkgs/by-name/es/escrotum/package.nix @@ -53,12 +53,12 @@ buildPythonApplication { cp man/escrotum.1 $man/share/man/man1/ ''; - meta = with lib; { + meta = { homepage = "https://github.com/Roger/escrotum"; description = "Linux screen capture using pygtk, inspired by scrot"; - platforms = platforms.linux; - maintainers = with maintainers; [ rasendubi ]; - license = licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rasendubi ]; + 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 1dbd3ea54e27f..2b681fcc005da 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 58d8f25d491a9..d4d71a153dd66 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/espeakup/package.nix b/pkgs/by-name/es/espeakup/package.nix index cf440d4b6d80c..7701a3475ee18 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/esptool-ck/package.nix b/pkgs/by-name/es/esptool-ck/package.nix index 4f7ce1504e0d6..f47ca4ed54faa 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/espup/package.nix b/pkgs/by-name/es/espup/package.nix index b1dbd36970b75..f654c9ece818f 100644 --- a/pkgs/by-name/es/espup/package.nix +++ b/pkgs/by-name/es/espup/package.nix @@ -70,14 +70,14 @@ rustPlatform.buildRustPackage rec { package = espup; }; - meta = with lib; { + meta = { description = "Tool for installing and maintaining Espressif Rust ecosystem"; homepage = "https://github.com/esp-rs/espup/"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ knightpp beeb ]; diff --git a/pkgs/by-name/es/essentia-extractor/package.nix b/pkgs/by-name/es/essentia-extractor/package.nix index e99bbb20a3eb8..9c079565d3917 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 83a3c20708d25..6fc5db4d94c3a 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/es/est-sfs/package.nix b/pkgs/by-name/es/est-sfs/package.nix index a88578d992487..1d68542c91c03 100644 --- a/pkgs/by-name/es/est-sfs/package.nix +++ b/pkgs/by-name/es/est-sfs/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { cp est-sfs-documentation.pdf $out/share/doc/${pname} ''; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/est-usfs"; description = "Estimate the unfolded site frequency spectrum and ancestral states"; mainProgram = "est-sfs"; - license = licenses.gpl3; - maintainers = [ maintainers.bzizou ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.bzizou ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/et/et/package.nix b/pkgs/by-name/et/et/package.nix index cc73253dd6ea2..90e40833417f0 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 2d4bfb5317fb6..46d175ee118be 100644 --- a/pkgs/by-name/et/etBook/package.nix +++ b/pkgs/by-name/et/etBook/package.nix @@ -24,10 +24,10 @@ stdenvNoCC.mkDerivation rec { 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/ethash/package.nix b/pkgs/by-name/et/ethash/package.nix index 6abff5b969df3..58b8a5de8461e 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 a2b044238daa5..5d30f45466d58 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/ethq/package.nix b/pkgs/by-name/et/ethq/package.nix index b7eb49c86bb2d..140ec4f03ae9f 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 9362d2d4007e9..a585292ce44b5 100644 --- a/pkgs/by-name/et/ethtool/package.nix +++ b/pkgs/by-name/et/ethtool/package.nix @@ -40,12 +40,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 d2ae7d35c3408..fe01264e7e15a 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 29d558b35896a..383b885bac86c 100644 --- a/pkgs/by-name/et/ettercap/package.nix +++ b/pkgs/by-name/et/ettercap/package.nix @@ -77,7 +77,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 @@ -87,8 +87,8 @@ stdenv.mkDerivation rec { analysis. ''; homepage = "https://www.ettercap-project.org/"; - 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/eu/eunomia/package.nix b/pkgs/by-name/eu/eunomia/package.nix index c995d10cbe7da..10444d605cff1 100644 --- a/pkgs/by-name/eu/eunomia/package.nix +++ b/pkgs/by-name/eu/eunomia/package.nix @@ -26,14 +26,14 @@ 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; [ leenaars 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 d098577c7f1d5..774fbcbcd91d0 100644 --- a/pkgs/by-name/eu/eureka-editor/package.nix +++ b/pkgs/by-name/eu/eureka-editor/package.nix @@ -42,13 +42,13 @@ 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; - maintainers = with maintainers; [ neonfuz ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + badPlatforms = lib.platforms.darwin; + maintainers = with lib.maintainers; [ neonfuz ]; }; } diff --git a/pkgs/by-name/ev/eva/package.nix b/pkgs/by-name/ev/eva/package.nix index 7509a4e9ff69e..c26eb613a5560 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-gnym2sedyzQzubOtj64Yoh+sKT+sa60w/Z72hby7Pms="; - meta = with lib; { + meta = { description = "Calculator REPL, similar to bc"; homepage = "https://github.com/NerdyPepper/eva"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nrdxp ma27 figsoda diff --git a/pkgs/by-name/ev/evans/package.nix b/pkgs/by-name/ev/evans/package.nix index 8deac905eff6a..04902beb22129 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 6696d12912e68..ed4e1acf7f50c 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 cd4ec0cd98b4b..f9cfc7113fae9 100644 --- a/pkgs/by-name/ev/evdevremapkeys/package.nix +++ b/pkgs/by-name/ev/evdevremapkeys/package.nix @@ -28,12 +28,12 @@ python3Packages.buildPythonPackage rec { 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 1676e1225a477..33de2ec59035b 100644 --- a/pkgs/by-name/ev/evemu/package.nix +++ b/pkgs/by-name/ev/evemu/package.nix @@ -33,14 +33,14 @@ 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 ]; - maintainers = [ maintainers.amorsillo ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.amorsillo ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ev/eventstat/package.nix b/pkgs/by-name/ev/eventstat/package.nix index 6c40ce6f009c6..bdd0a5257b483 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/everest-mons/package.nix b/pkgs/by-name/ev/everest-mons/package.nix index 40867013870d2..25d6b4bf19620 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 = "A 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/everforest-gtk-theme/package.nix b/pkgs/by-name/ev/everforest-gtk-theme/package.nix index 5b39290296eec..2322d7f783a0d 100644 --- a/pkgs/by-name/ev/everforest-gtk-theme/package.nix +++ b/pkgs/by-name/ev/everforest-gtk-theme/package.nix @@ -35,11 +35,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Everforest colour palette for GTK"; homepage = "https://github.com/Fausto-Korpsvart/Everforest-GTK-Theme"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ jn-sena ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ jn-sena ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ev/everspace/package.nix b/pkgs/by-name/ev/everspace/package.nix index f3657f1189c76..aa6edff812928 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 c13147c3caad0..127ec3de9d578 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 b5d79f882ce76..dfc8fac3bb706 100644 --- a/pkgs/by-name/ev/evillimiter/package.nix +++ b/pkgs/by-name/ev/evillimiter/package.nix @@ -34,7 +34,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 @@ -43,8 +43,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/evmdis/package.nix b/pkgs/by-name/ev/evmdis/package.nix index ade3f53ddef2b..3d212c9a37437 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/evscript/package.nix b/pkgs/by-name/ev/evscript/package.nix index 803e2e06585fb..0abd12197cba0 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-KcQZnGFtev4ckhtQ7CNB773fAsExZ9EQl9e4Jf4beGo="; - 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 a727b941b6b57..dfd4ed9950f25 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 13a497058048d..c915efddb55b2 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-xF2dwjTmTOyZ/kmASYWqKfnvqCjw0OmdNKrNMrjNl5g="; }; - 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 ccd36c838a2d0..79224d28dca76 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; - maintainers = [ maintainers.AndersonTorres ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.AndersonTorres ]; }; } diff --git a/pkgs/by-name/ex/exactaudiocopy/package.nix b/pkgs/by-name/ex/exactaudiocopy/package.nix index b173675d9672d..786aa5b69cd1a 100644 --- a/pkgs/by-name/ex/exactaudiocopy/package.nix +++ b/pkgs/by-name/ex/exactaudiocopy/package.nix @@ -82,12 +82,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 4d207db06959e..b14e7addc449e 100644 --- a/pkgs/by-name/ex/exaile/package.nix +++ b/pkgs/by-name/ex/exaile/package.nix @@ -114,12 +114,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 4b649a8471564..babd75c160574 100644 --- a/pkgs/by-name/ex/example-robot-data/package.nix +++ b/pkgs/by-name/ex/example-robot-data/package.nix @@ -50,14 +50,14 @@ stdenv.mkDerivation (finalAttrs: { preCheck = "ln -s source ../../${finalAttrs.pname}"; pythonImportsCheck = [ "example_robot_data" ]; - 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 0c603eb6c3fa1..280b1cb64df21 100644 --- a/pkgs/by-name/ex/exe2hex/package.nix +++ b/pkgs/by-name/ex/exe2hex/package.nix @@ -30,11 +30,11 @@ python3Packages.buildPythonApplication rec { 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/exfat/package.nix b/pkgs/by-name/ex/exfat/package.nix index 3d7d66648a401..33ae9f27de82f 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 ef23f869cee01..2e8893a56349e 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; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ex/exhaustive/package.nix b/pkgs/by-name/ex/exhaustive/package.nix index d322c54b1f8e9..f489c9f9c6553 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 dd5737c069737..0bd07b4509c26 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 859232ebc08c9..932b11ee69e2f 100644 --- a/pkgs/by-name/ex/exifprobe/package.nix +++ b/pkgs/by-name/ex/exifprobe/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { 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 a702df62ea0e9..87d4d63cae9a8 100644 --- a/pkgs/by-name/ex/exiv2/package.nix +++ b/pkgs/by-name/ex/exiv2/package.nix @@ -104,12 +104,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/exonerate/package.nix b/pkgs/by-name/ex/exonerate/package.nix index a0bff5fa0e6ec..ca531eedd11b6 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/expenses/package.nix b/pkgs/by-name/ex/expenses/package.nix index a2a71735ed031..42b8cbbfd6c7a 100644 --- a/pkgs/by-name/ex/expenses/package.nix +++ b/pkgs/by-name/ex/expenses/package.nix @@ -39,10 +39,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 80cc946b2e686..7a9971887f98e 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/exploitdb/package.nix b/pkgs/by-name/ex/exploitdb/package.nix index 7be657f58d96e..feba16cd38bda 100644 --- a/pkgs/by-name/ex/exploitdb/package.nix +++ b/pkgs/by-name/ex/exploitdb/package.nix @@ -26,19 +26,19 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Archive of public exploits and corresponding vulnerable software"; homepage = "https://gitlab.com/exploit-database/exploitdb"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus gpl3Plus mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ applePrincess fab ]; mainProgram = "searchsploit"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ex/expressvpn/package.nix b/pkgs/by-name/ex/expressvpn/package.nix index f97ec3967ee2d..f653d3bdb8cdc 100644 --- a/pkgs/by-name/ex/expressvpn/package.nix +++ b/pkgs/by-name/ex/expressvpn/package.nix @@ -97,11 +97,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 984a47047bed1..1455b20a50094 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 c86cccd3074c1..7f6784e11939e 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 5c5b9b0b5dc42..b7f3ad9f62dda 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 4ab5612fe8f5e..113201fb7f2e2 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/extest/package.nix b/pkgs/by-name/ex/extest/package.nix index f6c2699282fdf..97bb0b7cc7277 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-JZPiTzr9KaaqiXKhsGOYmYMtjNzPQzKhqyfSlbeqME8="; - 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 4e93a0d1c6b6f..a806b864e09a8 100644 --- a/pkgs/by-name/ex/extism-cli/package.nix +++ b/pkgs/by-name/ex/extism-cli/package.nix @@ -32,12 +32,12 @@ 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; - maintainers = with maintainers; [ zshipko ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ zshipko ]; 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 6d2491acfa85d..c8330db655f17 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 b7b8e4824f75b..34e345e61dc64 100644 --- a/pkgs/by-name/ex/extract_url/package.nix +++ b/pkgs/by-name/ex/extract_url/package.nix @@ -40,12 +40,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 8594820134f38..6c02a7a780e7c 100644 --- a/pkgs/by-name/ex/extractpdfmark/package.nix +++ b/pkgs/by-name/ex/extractpdfmark/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { doCheck = true; - 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 469678b7ec550..966387a9963a4 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 41872f8664211..7e296da762700 100644 --- a/pkgs/by-name/ex/extundelete/package.nix +++ b/pkgs/by-name/ex/extundelete/package.nix @@ -24,12 +24,12 @@ 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; - maintainers = [ maintainers.domenkozar ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.domenkozar ]; mainProgram = "extundelete"; }; } diff --git a/pkgs/by-name/ez/ezra-sil/package.nix b/pkgs/by-name/ez/ezra-sil/package.nix index 83409b2427753..035067cf02364 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/ez/eztrace/package.nix b/pkgs/by-name/ez/eztrace/package.nix index 8a5b3dbeb91c7..d5c80366d0b71 100644 --- a/pkgs/by-name/ez/eztrace/package.nix +++ b/pkgs/by-name/ez/eztrace/package.nix @@ -36,9 +36,9 @@ stdenv.mkDerivation rec { libopcodes_2_38 ]; - meta = with lib; { + meta = { description = "Tool that aims at generating automatically execution trace from HPC programs"; - license = licenses.cecill-b; + license = lib.licenses.cecill-b; maintainers = [ ]; }; } diff --git a/pkgs/by-name/f1/f1_8/package.nix b/pkgs/by-name/f1/f1_8/package.nix index c82e08c7ec0dd..0ebe006eda6ba 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 363d914548eff..01c6546c47082 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 = "A 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 acc430409f1ff..197c11a94c9b7 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 cff9ebc4458c1..1b38036defbb2 100644 --- a/pkgs/by-name/f3/f3/package.nix +++ b/pkgs/by-name/f3/f3/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { install -Dm444 -t $out/share/doc/${pname} 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 evils ]; diff --git a/pkgs/by-name/f5/f5_6/package.nix b/pkgs/by-name/f5/f5_6/package.nix index 2671eaede6276..b42da101c3380 100644 --- a/pkgs/by-name/f5/f5_6/package.nix +++ b/pkgs/by-name/f5/f5_6/package.nix @@ -26,14 +26,14 @@ 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; [ leenaars 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 165abcfdba7aa..7d9d296dca240 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 6caf048cee50b..85304117e6a64 100644 --- a/pkgs/by-name/fa/faac/package.nix +++ b/pkgs/by-name/fa/faac/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { 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 328e06960eb5a..6937ed70cfe50 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/faba-icon-theme/package.nix b/pkgs/by-name/fa/faba-icon-theme/package.nix index e110514e72f94..5029b4ed65c1a 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 290aa6ce903d4..ec457eba54ce4 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 rec { 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/fabs/package.nix b/pkgs/by-name/fa/fabs/package.nix index 69bcd4c13797a..dd314063a0ca2 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/facedetect/package.nix b/pkgs/by-name/fa/facedetect/package.nix index ecb532bb710f1..a5b9ea228d085 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-calibration/package.nix b/pkgs/by-name/fa/facetimehd-calibration/package.nix index 8c843f5f564f8..415a28e5a3b58 100644 --- a/pkgs/by-name/fa/facetimehd-calibration/package.nix +++ b/pkgs/by-name/fa/facetimehd-calibration/package.nix @@ -81,11 +81,11 @@ stdenvNoCC.mkDerivation { '' ) calibrationFiles; - meta = with lib; { + meta = { description = "facetimehd calibration"; homepage = "https://support.apple.com/kb/DL1837"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ alexshpilkin womfoo grahamc diff --git a/pkgs/by-name/fa/facetimehd-firmware/package.nix b/pkgs/by-name/fa/facetimehd-firmware/package.nix index 9e0a9e04e69f9..6625d9033278b 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 b37bdf00d55ae..2b2536708ac09 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/fairymax/package.nix b/pkgs/by-name/fa/fairymax/package.nix index 572d5505c20d9..18ad0a8cbf946 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 088f113704578..540f108bb24c4 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 b129887ee3464..9a98b883e7b8a 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 491d367733889..e31acae0b43d6 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/falcoctl/package.nix b/pkgs/by-name/fa/falcoctl/package.nix index 0734f0a91b6b2..e8878ac61bb21 100644 --- a/pkgs/by-name/fa/falcoctl/package.nix +++ b/pkgs/by-name/fa/falcoctl/package.nix @@ -23,12 +23,12 @@ buildGoModule rec { "-X github.com/falcosecurity/falcoctl/cmd/version.semVersion=${version}" ]; - meta = with lib; { + meta = { description = "Administrative tooling for Falco"; mainProgram = "falcoctl"; homepage = "https://github.com/falcosecurity/falcoctl"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ developer-guy kranurag7 LucaGuerra diff --git a/pkgs/by-name/fa/fan2go/package.nix b/pkgs/by-name/fa/fan2go/package.nix index 579b516b06b05..64db8ccdedb9f 100644 --- a/pkgs/by-name/fa/fan2go/package.nix +++ b/pkgs/by-name/fa/fan2go/package.nix @@ -30,12 +30,12 @@ buildGo123Module rec { rm internal/fans/cmd_test.go ''; - 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 4f1b0eb3e822a..6560a6faa7233 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 e7d622abd8bf2..c8ce1beb99ff7 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-tj00DXQEqC/8+3uzTMWcph+1fNTTVZLSJbV/5lLFkFs="; - 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 4be50c7822515..f98bb43261bf1 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 rec { 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 3f26f5f344091..6243d457667a6 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 bcde2ee4085b5..c14e694f0d3a6 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/faq/package.nix b/pkgs/by-name/fa/faq/package.nix index d78758e0777ce..60daf08566e8a 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 = "faq is a tool 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/faraday/package.nix b/pkgs/by-name/fa/faraday/package.nix index 3aa54ddbcd2ef..643ae20d3af85 100644 --- a/pkgs/by-name/fa/faraday/package.nix +++ b/pkgs/by-name/fa/faraday/package.nix @@ -33,11 +33,11 @@ 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; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ proofofkeags prusnak ]; diff --git a/pkgs/by-name/fa/farbfeld/package.nix b/pkgs/by-name/fa/farbfeld/package.nix index d99e3554fe40b..dc829432f5a98 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 fbef65d5b0e5a..fa503cae4886c 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/fast-cpp-csv-parser/package.nix b/pkgs/by-name/fa/fast-cpp-csv-parser/package.nix index 13a2e2dbc5a3d..0a646ed168e9a 100644 --- a/pkgs/by-name/fa/fast-cpp-csv-parser/package.nix +++ b/pkgs/by-name/fa/fast-cpp-csv-parser/package.nix @@ -21,10 +21,10 @@ stdenv.mkDerivation rec { 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; - maintainers = with maintainers; [ bhipple ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bhipple ]; }; } diff --git a/pkgs/by-name/fa/fast-downward/package.nix b/pkgs/by-name/fa/fast-downward/package.nix index e74ef6423e869..5318b8e91f6df 100644 --- a/pkgs/by-name/fa/fast-downward/package.nix +++ b/pkgs/by-name/fa/fast-downward/package.nix @@ -64,12 +64,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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/fa/fastJson/package.nix b/pkgs/by-name/fa/fastJson/package.nix index 5090cfcb9fc4a..f96a95c00a571 100644 --- a/pkgs/by-name/fa/fastJson/package.nix +++ b/pkgs/by-name/fa/fastJson/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { autoreconfHook ]; - meta = with lib; { + meta = { description = "Fast json library for C"; homepage = "https://github.com/rsyslog/libfastjson"; - license = licenses.mit; - maintainers = with maintainers; [ nequissimus ]; - platforms = with platforms; unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nequissimus ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/fa/fastcap/package.nix b/pkgs/by-name/fa/fastcap/package.nix index cd4f48595c96a..cb2d82d3a3556 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 15c47c0339af3..7cde88bbade45 100644 --- a/pkgs/by-name/fa/fastcdr/package.nix +++ b/pkgs/by-name/fa/fastcdr/package.nix @@ -45,7 +45,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 = '' @@ -53,8 +53,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 d49bdb7e5da38..3cb0e3cc2c460 100644 --- a/pkgs/by-name/fa/fastd/package.nix +++ b/pkgs/by-name/fa/fastd/package.nix @@ -51,15 +51,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; [ fpletz ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ fpletz ]; mainProgram = "fastd"; }; } diff --git a/pkgs/by-name/fa/fastddsgen/package.nix b/pkgs/by-name/fa/fastddsgen/package.nix index 8f7e23079ae41..d9b85ce21d813 100644 --- a/pkgs/by-name/fa/fastddsgen/package.nix +++ b/pkgs/by-name/fa/fastddsgen/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation { gradle nixDownloadDeps ''; - 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 @@ -78,7 +78,7 @@ stdenv.mkDerivation { 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 = openjdk17.meta.platforms; }; } diff --git a/pkgs/by-name/fa/fastgron/package.nix b/pkgs/by-name/fa/fastgron/package.nix index 59a994953d0fb..ae90883d3fd90 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/fastp/package.nix b/pkgs/by-name/fa/fastp/package.nix index 89ae4a59486d2..4384e236e2a5f 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 7ce1605a5f1bb..c369db642b39d 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 1d102d9065e06..8f96d1ea412ee 100644 --- a/pkgs/by-name/fa/fasttext/package.nix +++ b/pkgs/by-name/fa/fasttext/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { 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 aa75ed92f1c5c..740c81b17ce21 100644 --- a/pkgs/by-name/fa/fatcat/package.nix +++ b/pkgs/by-name/fa/fatcat/package.nix @@ -25,11 +25,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 0b56836230e74..af783eb890ce3 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 e6ac6c06236e4..ae48d54567766 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 4ddefc9a9ebcc..c57fb8e3bdddb 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/faustPhysicalModeling/package.nix b/pkgs/by-name/fa/faustPhysicalModeling/package.nix index 4ffa2d799996e..e4c479f9ef726 100644 --- a/pkgs/by-name/fa/faustPhysicalModeling/package.nix +++ b/pkgs/by-name/fa/faustPhysicalModeling/package.nix @@ -58,12 +58,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/fava/package.nix b/pkgs/by-name/fa/fava/package.nix index cf346b7c36406..b9651a5f314c6 100644 --- a/pkgs/by-name/fa/fava/package.nix +++ b/pkgs/by-name/fa/fava/package.nix @@ -43,13 +43,13 @@ python3Packages.buildPythonApplication rec { export HOME=$TEMPDIR ''; - meta = with lib; { + meta = { description = "Web interface for beancount"; mainProgram = "fava"; homepage = "https://beancount.github.io/fava"; changelog = "https://beancount.github.io/fava/changelog.html"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bhipple sigmanificient ]; diff --git a/pkgs/by-name/fb/fbcat/package.nix b/pkgs/by-name/fb/fbcat/package.nix index fa2ff57dd20da..36043c7a517e3 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 a523b81fa0523..1464389e11156 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/fbjni/package.nix b/pkgs/by-name/fb/fbjni/package.nix index ed6f63016de1c..766b69f7a5a89 100644 --- a/pkgs/by-name/fb/fbjni/package.nix +++ b/pkgs/by-name/fb/fbjni/package.nix @@ -54,10 +54,10 @@ stdenv.mkDerivation rec { "-DJAVA_HOME=${jdk_headless.passthru.home}" ]; - meta = with lib; { + meta = { description = "Library designed to simplify the usage of the Java Native Interface"; homepage = "https://github.com/facebookincubator/fbjni"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fb/fblog/package.nix b/pkgs/by-name/fb/fblog/package.nix index b7210b0d33dc3..8d7dcd5894918 100644 --- a/pkgs/by-name/fb/fblog/package.nix +++ b/pkgs/by-name/fb/fblog/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-+rhrvZ8EOYAFSvAvGyUwlDCWXVqgXPdmugBbrn12yLg="; - meta = with lib; { + meta = { description = "Small command-line JSON log viewer"; mainProgram = "fblog"; homepage = "https://github.com/brocode/fblog"; - license = licenses.wtfpl; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/fb/fbmark/package.nix b/pkgs/by-name/fb/fbmark/package.nix index 69c1d2b4cc81a..4f76d3a861705 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 1b6d303f07dd7..0b38a1693d58c 100644 --- a/pkgs/by-name/fb/fbmenugen/package.nix +++ b/pkgs/by-name/fb/fbmenugen/package.nix @@ -69,12 +69,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 eb9f16a0d87e6..fa815d3748a90 100644 --- a/pkgs/by-name/fb/fbpanel/package.nix +++ b/pkgs/by-name/fb/fbpanel/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { "-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 c081c56f3a3bd..4a20a4418d3da 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 e8ce6e4243a61..5b6c7cd8da092 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/fb/fbv/package.nix b/pkgs/by-name/fb/fbv/package.nix index 16b813a2c1de5..b54f030d21dd4 100644 --- a/pkgs/by-name/fb/fbv/package.nix +++ b/pkgs/by-name/fb/fbv/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { mkdir -p $out/{bin,man/man1} ''; - meta = with lib; { + meta = { description = "View pictures on a linux framebuffer device"; homepage = "http://s-tech.elsat.net.pl/fbv/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ peterhoeg ]; mainProgram = "fbv"; }; } diff --git a/pkgs/by-name/fc/fcast-receiver/package.nix b/pkgs/by-name/fc/fcast-receiver/package.nix index ae1a093fe2143..68661c79ef22a 100644 --- a/pkgs/by-name/fc/fcast-receiver/package.nix +++ b/pkgs/by-name/fc/fcast-receiver/package.nix @@ -51,15 +51,15 @@ buildNpmPackage rec { --add-flags $out/lib/node_modules/fcast-receiver/dist/bundle.js ''; - meta = with lib; { + meta = { description = "FCast Receiver, an open-source media streaming receiver"; longDescription = '' FCast Receiver is a receiver for an open-source media streaming protocol, FCast, an alternative to Chromecast and AirPlay. ''; homepage = "https://fcast.org/"; - license = licenses.gpl3; - maintainers = with maintainers; [ ymstnt ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ ymstnt ]; mainProgram = "fcast-receiver"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fc/fcgiwrap/package.nix b/pkgs/by-name/fc/fcgiwrap/package.nix index a40a60ca47235..d29a5f8363b65 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 ab1c46e10f0b7..dfa2646ffb40f 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 = "A fluent-design theme with blur effect and shadow"; homepage = "https://github.com/Reverier-Xu/Fluent-fcitx5"; - license = licenses.mpl20; - platforms = platforms.all; - maintainers = with maintainers; [ oosquare ]; + license = lib.licenses.mpl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ oosquare ]; }; } diff --git a/pkgs/by-name/fc/fcitx5-material-color/package.nix b/pkgs/by-name/fc/fcitx5-material-color/package.nix index 8b5147df9b828..4087347acc160 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 f7a9ec71328c0..c72ee156375bd 100644 --- a/pkgs/by-name/fc/fcitx5-mozc/package.nix +++ b/pkgs/by-name/fc/fcitx5-mozc/package.nix @@ -131,10 +131,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 @@ -142,11 +142,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 cec74a607153c..1414765ff161e 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 6771c664fdbea..ad36f5b5146b0 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 6568e355dd261..490e9c8ac74b6 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/fcppt/package.nix b/pkgs/by-name/fc/fcppt/package.nix index ac0fd75829009..bc83eafb1f7a5 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 6c495702ba8df..03320d0fd0b9a 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 40d47f912bd35..a815ddb4409e8 100644 --- a/pkgs/by-name/fc/fcron/package.nix +++ b/pkgs/by-name/fc/fcron/package.nix @@ -59,10 +59,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 3d8735b4adc5b..75d0ab69b7108 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 e3e310363aedd..46f0f198a998f 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 6d5737c85bc6b..c1a8f47fdd31b 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/${pname} ''; - 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 c0052c2889d88..6cf2df5dd9435 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,9 +38,9 @@ stdenv.mkDerivation rec { followed by a byte-by-byte comparison. ''; homepage = "https://github.com/adrianlopezroche/fdupes"; - license = licenses.mit; - platforms = platforms.all; - maintainers = [ maintainers.maggesi ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.maggesi ]; mainProgram = "fdupes"; }; } diff --git a/pkgs/by-name/fe/feed2imap-go/package.nix b/pkgs/by-name/fe/feed2imap-go/package.nix index f2696e33799bd..2b82218926b52 100644 --- a/pkgs/by-name/fe/feed2imap-go/package.nix +++ b/pkgs/by-name/fe/feed2imap-go/package.nix @@ -29,11 +29,11 @@ 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; [ nomeata ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ nomeata ]; }; } diff --git a/pkgs/by-name/fe/feedbackd/package.nix b/pkgs/by-name/fe/feedbackd/package.nix index 5c0ab1d284985..8a26fd144a122 100644 --- a/pkgs/by-name/fe/feedbackd/package.nix +++ b/pkgs/by-name/fe/feedbackd/package.nix @@ -106,11 +106,11 @@ stdenv.mkDerivation (finalAttrs: { fi ''; - meta = with lib; { + meta = { description = "Daemon to provide haptic (and later more) feedback on events"; homepage = "https://source.puri.sm/Librem5/feedbackd"; - 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/fe/feedgnuplot/package.nix b/pkgs/by-name/fe/feedgnuplot/package.nix index 9d1590ba947b2..795a9ab590d5a 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/fehlstart/package.nix b/pkgs/by-name/fe/fehlstart/package.nix index 7c289e51688e0..a1561da841c0a 100644 --- a/pkgs/by-name/fe/fehlstart/package.nix +++ b/pkgs/by-name/fe/fehlstart/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation { export PREFIX=$out ''; - meta = with lib; { + meta = { description = "Small desktop application launcher with reasonable memory footprint"; homepage = "https://gitlab.com/fehlstart/fehlstart"; - license = licenses.gpl3; - maintainers = [ maintainers.mounium ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.mounium ]; + platforms = lib.platforms.all; mainProgram = "fehlstart"; }; } diff --git a/pkgs/by-name/fe/ferrum/package.nix b/pkgs/by-name/fe/ferrum/package.nix index 3841a4abf595e..c0e3fe7250eff 100644 --- a/pkgs/by-name/fe/ferrum/package.nix +++ b/pkgs/by-name/fe/ferrum/package.nix @@ -26,14 +26,14 @@ 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; [ leenaars 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 d0fd407cf57ed..b25c819b79f26 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 9ea2f12fa2087..e9644a5e3e7ff 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/fetchutils/package.nix b/pkgs/by-name/fe/fetchutils/package.nix index f9b5954488b18..325b5c55c3d4f 100644 --- a/pkgs/by-name/fe/fetchutils/package.nix +++ b/pkgs/by-name/fe/fetchutils/package.nix @@ -28,11 +28,11 @@ stdenvNoCC.mkDerivation rec { 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 195d4f3db9c42..7d558917bf465 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 a5848b4ef93cd..fe8adc597ddd7 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 cd6ffddfce5ec..743ee0c6e167f 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 a3af3b49af93d..dd69f264db315 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; - maintainers = teams.sage.members; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.sage.members; + platforms = lib.platforms.unix; homepage = "https://linbox-team.github.io/fflas-ffpack/"; }; } diff --git a/pkgs/by-name/ff/ffmpegthumbnailer/package.nix b/pkgs/by-name/ff/ffmpegthumbnailer/package.nix index ff1a8615ab798..1724966a29fe2 100644 --- a/pkgs/by-name/ff/ffmpegthumbnailer/package.nix +++ b/pkgs/by-name/ff/ffmpegthumbnailer/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { --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 @@ -55,9 +55,9 @@ stdenv.mkDerivation rec { The only dependencies are ffmpeg and libpng/libjpeg. "; homepage = "https://github.com/dirkvdb/ffmpegthumbnailer"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.jagajaga ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.jagajaga ]; + 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 61db0ad742edd..cde639177d036 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/ffsubsync/package.nix b/pkgs/by-name/ff/ffsubsync/package.nix index fdf791d6b3aae..43dadfb8dd0ae 100644 --- a/pkgs/by-name/ff/ffsubsync/package.nix +++ b/pkgs/by-name/ff/ffsubsync/package.nix @@ -50,10 +50,10 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "ffsubsync" ]; - meta = with lib; { + meta = { homepage = "https://github.com/smacke/ffsubsync"; description = "Automagically synchronize subtitles with video"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "ffsubsync"; }; diff --git a/pkgs/by-name/fg/fgallery/package.nix b/pkgs/by-name/fg/fgallery/package.nix index 3d60062a4c213..845cbec717b71 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 33edfdf380f32..8e2aaffe28cc1 100644 --- a/pkgs/by-name/fg/fgqcanvas/package.nix +++ b/pkgs/by-name/fg/fgqcanvas/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { 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/fheroes2/package.nix b/pkgs/by-name/fh/fheroes2/package.nix index 10af267396fb6..6411ef82b2eb4 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; - maintainers = [ maintainers.karolchmist ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.karolchmist ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fi/fig2dev/package.nix b/pkgs/by-name/fi/fig2dev/package.nix index ea50385d213ad..93ee55be27eaa 100644 --- a/pkgs/by-name/fi/fig2dev/package.nix +++ b/pkgs/by-name/fi/fig2dev/package.nix @@ -42,11 +42,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/figma-linux/package.nix b/pkgs/by-name/fi/figma-linux/package.nix index 39c7b8ca891f7..e3492cdf89e91 100644 --- a/pkgs/by-name/fi/figma-linux/package.nix +++ b/pkgs/by-name/fi/figma-linux/package.nix @@ -85,12 +85,12 @@ stdenv.mkDerivation (finalAttrs: { --replace "Exec=/opt/figma-linux/figma-linux" "Exec=$out/bin/${finalAttrs.pname}" ''; - meta = with lib; { + meta = { description = "Unofficial Electron-based Figma desktop app for Linux"; homepage = "https://github.com/Figma-Linux/figma-linux"; platforms = [ "x86_64-linux" ]; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ercao kashw2 ]; diff --git a/pkgs/by-name/fi/figurine/package.nix b/pkgs/by-name/fi/figurine/package.nix index 88bb4ff21b8f1..95138a3a40b15 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/file-rename/package.nix b/pkgs/by-name/fi/file-rename/package.nix index 8e37bb454ba1f..f173eabb067fa 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/filebench/package.nix b/pkgs/by-name/fi/filebench/package.nix index a288ca5734d3e..8d2aab3e39d85 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/filebrowser/package.nix b/pkgs/by-name/fi/filebrowser/package.nix index af275fdd75312..b5ea2338c820a 100644 --- a/pkgs/by-name/fi/filebrowser/package.nix +++ b/pkgs/by-name/fi/filebrowser/package.nix @@ -51,11 +51,11 @@ buildGo123Module { inherit frontend; }; - meta = with lib; { + meta = { description = "Filebrowser is a 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 5ea5558b92133..490f661b733f7 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 c0dbafd2b00f3..2e652476a2bc6 100644 --- a/pkgs/by-name/fi/fileinfo/package.nix +++ b/pkgs/by-name/fi/fileinfo/package.nix @@ -15,11 +15,11 @@ python3Packages.buildPythonApplication { propagatedBuildInputs = 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 080f0611f36f7..22c852cddd742 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 0389ebd0c54ff..e103b61510ad1 100644 --- a/pkgs/by-name/fi/fileshare/package.nix +++ b/pkgs/by-name/fi/fileshare/package.nix @@ -34,13 +34,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/fileshelter/package.nix b/pkgs/by-name/fi/fileshelter/package.nix index 093348d39de22..0f1a4826cd997 100644 --- a/pkgs/by-name/fi/fileshelter/package.nix +++ b/pkgs/by-name/fi/fileshelter/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { ln -s ${wt4}/share/Wt/resources $out/share/fileshelter/docroot/resources ''; - meta = with lib; { + meta = { homepage = "https://github.com/epoupon/fileshelter"; description = "FileShelter is a 'one-click' file sharing web application"; mainProgram = "fileshelter"; - maintainers = [ maintainers.willibutz ]; - license = licenses.gpl3; + maintainers = [ lib.maintainers.willibutz ]; + license = lib.licenses.gpl3; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/fi/filet/package.nix b/pkgs/by-name/fi/filet/package.nix index 94d43744245cf..0130c8253bfa0 100644 --- a/pkgs/by-name/fi/filet/package.nix +++ b/pkgs/by-name/fi/filet/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Fucking fucking fast file fucker (afffff)"; homepage = "https://github.com/buffet/filet"; - license = licenses.mpl20; - platforms = platforms.all; + license = lib.licenses.mpl20; + platforms = lib.platforms.all; maintainers = [ ]; mainProgram = "filet"; }; diff --git a/pkgs/by-name/fi/filter-audio/package.nix b/pkgs/by-name/fi/filter-audio/package.nix index ae1d63a1e1dee..41e488501d0d2 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 f4083022478a3..afa4f29e5904d 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 8e8954f52d509..3e2c13c1edf1d 100644 --- a/pkgs/by-name/fi/fim/package.nix +++ b/pkgs/by-name/fi/fim/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { 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 @@ -72,8 +72,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; - maintainers = with maintainers; [ primeos ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ primeos ]; }; } diff --git a/pkgs/by-name/fi/find-billy/package.nix b/pkgs/by-name/fi/find-billy/package.nix index 94ca57036c368..0a3c45dad3d98 100644 --- a/pkgs/by-name/fi/find-billy/package.nix +++ b/pkgs/by-name/fi/find-billy/package.nix @@ -67,11 +67,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - 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" ]; - 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 5e385d8fd94b7..a8012d07cc647 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/findex/package.nix b/pkgs/by-name/fi/findex/package.nix index 3823e28c302ee..c7f0549c05e27 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 da66750e3e750..58e231bb7a334 100644 --- a/pkgs/by-name/fi/findnewest/package.nix +++ b/pkgs/by-name/fi/findnewest/package.nix @@ -18,11 +18,11 @@ 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; - maintainers = with maintainers; [ bhipple ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ bhipple ]; }; } diff --git a/pkgs/by-name/fi/fio/package.nix b/pkgs/by-name/fi/fio/package.nix index f6bb6cf6ef9bc..46ac335603ba4 100644 --- a/pkgs/by-name/fi/fio/package.nix +++ b/pkgs/by-name/fi/fio/package.nix @@ -56,10 +56,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 26d5ba7b9f89e..f1b90e1875c6e 100644 --- a/pkgs/by-name/fi/fioctl/package.nix +++ b/pkgs/by-name/fi/fioctl/package.nix @@ -41,11 +41,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 09c9fc8125909..a2d0c568ef326 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 66ca9f0050a20..f1f42f07d3ff5 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 1f5d3edd706df..e0830c0e38610 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 b9eb000366f48..7e74d3fd0ca7f 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 40f2f15843443..f7af266fe7b6b 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 00618336cf26a..97e0ee797df4a 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 ec6e30949ae95..05aa4901b2cac 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 11a86b93cc061..5f86178afd36f 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 748f2b44e726f..bf2f9e85ec306 100644 --- a/pkgs/by-name/fi/firestarter/package.nix +++ b/pkgs/by-name/fi/firestarter/package.nix @@ -116,16 +116,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 4f1c365d6088b..a88e4182d81de 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 8232106d885c4..d68e14385b6e1 100644 --- a/pkgs/by-name/fi/firmware-updater/package.nix +++ b/pkgs/by-name/fi/firmware-updater/package.nix @@ -24,12 +24,12 @@ flutter.buildFlutterApplication rec { hash = "sha256-4a0OojgNvOpvM4+8uSslxxKb6uwKDfDkvHo29rMXynQ="; }; - 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 a3718753af657..7448ffec865b4 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 7a0a88f9739d9..f529d75764dc4 100644 --- a/pkgs/by-name/fi/fish-fillets-ng/package.nix +++ b/pkgs/by-name/fi/fish-fillets-ng/package.nix @@ -57,12 +57,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 2421017aab0ca..bf4dbb79dd558 100644 --- a/pkgs/by-name/fi/fish-irssi/package.nix +++ b/pkgs/by-name/fi/fish-irssi/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { 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 faf4a244057f0..1eaf051c267e7 100644 --- a/pkgs/by-name/fi/fishnet/package.nix +++ b/pkgs/by-name/fi/fishnet/package.nix @@ -45,11 +45,11 @@ rustPlatform.buildRustPackage rec { package = fishnet; }; - 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/fits-cloudctl/package.nix b/pkgs/by-name/fi/fits-cloudctl/package.nix index 95a0461cdcc84..9bbb9cae602df 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 c0cd705be1fc3..6b9e8b419f265 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 b78b26894c8bf..1820f8c296c57 100644 --- a/pkgs/by-name/fi/five-or-more/package.nix +++ b/pkgs/by-name/fi/five-or-more/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "five-or-more"; }; }; - 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"; - maintainers = teams.gnome.members; - license = licenses.gpl2; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fl/flac/package.nix b/pkgs/by-name/fl/flac/package.nix index aea4cc4378e2e..76d0ffbdadcdd 100644 --- a/pkgs/by-name/fl/flac/package.nix +++ b/pkgs/by-name/fl/flac/package.nix @@ -50,13 +50,13 @@ stdenv.mkDerivation rec { "doc" ]; - meta = with lib; { + meta = { homepage = "https://xiph.org/flac/"; description = "Library and tools for encoding and decoding the FLAC lossless audio file format"; changelog = "https://xiph.org/flac/changelog.html"; mainProgram = "flac"; - platforms = platforms.all; - license = licenses.bsd3; - maintainers = with maintainers; [ ruuda ]; + platforms = lib.platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ruuda ]; }; } diff --git a/pkgs/by-name/fl/flac2all/package.nix b/pkgs/by-name/fl/flac2all/package.nix index fb9a420a1aa54..abf77da5be700 100644 --- a/pkgs/by-name/fl/flac2all/package.nix +++ b/pkgs/by-name/fl/flac2all/package.nix @@ -49,12 +49,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/flam3/package.nix b/pkgs/by-name/fl/flam3/package.nix index 6e32ccc5a7972..e8d815be4fb61 100644 --- a/pkgs/by-name/fl/flam3/package.nix +++ b/pkgs/by-name/fl/flam3/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { homepage = "https://flam3.com/"; description = "Cosmic recursive fractal flames"; longDescription = '' @@ -36,8 +36,8 @@ stdenv.mkDerivation rec { 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; - maintainers = with maintainers; [ ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fl/flamegraph/package.nix b/pkgs/by-name/fl/flamegraph/package.nix index 159e4bb74cce8..392542f6f837a 100644 --- a/pkgs/by-name/fl/flamegraph/package.nix +++ b/pkgs/by-name/fl/flamegraph/package.nix @@ -44,8 +44,8 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { - license = with licenses; [ + meta = { + license = with lib.licenses; [ asl20 cddl gpl2Plus @@ -53,6 +53,6 @@ stdenv.mkDerivation rec { homepage = "http://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/flamerobin/package.nix b/pkgs/by-name/fl/flamerobin/package.nix index a49ed58d38592..8d46e9fc60bc8 100644 --- a/pkgs/by-name/fl/flamerobin/package.nix +++ b/pkgs/by-name/fl/flamerobin/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { firebird ]; - meta = with lib; { + meta = { description = "Database administration tool for Firebird RDBMS"; homepage = "https://github.com/mariuz/flamerobin"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ uralbash ]; - platforms = platforms.unix; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ uralbash ]; + platforms = lib.platforms.unix; mainProgram = "flamerobin"; }; } diff --git a/pkgs/by-name/fl/flamp/package.nix b/pkgs/by-name/fl/flamp/package.nix index 27e6797ea2be6..79f5e2999ea51 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/flaresolverr/package.nix b/pkgs/by-name/fl/flaresolverr/package.nix index 85b2d93857c19..254068c731438 100644 --- a/pkgs/by-name/fl/flaresolverr/package.nix +++ b/pkgs/by-name/fl/flaresolverr/package.nix @@ -71,13 +71,13 @@ 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 = with maintainers; [ paveloom ]; + maintainers = with lib.maintainers; [ paveloom ]; inherit (undetected-chromedriver.meta) platforms; # See https://github.com/NixOS/nixpkgs/issues/332776 broken = true; diff --git a/pkgs/by-name/fl/flashbench/package.nix b/pkgs/by-name/fl/flashbench/package.nix index c04a2a2ff1e84..167119db4273b 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 1668b2611fb59..07384abe808bf 100644 --- a/pkgs/by-name/fl/flashfocus/package.nix +++ b/pkgs/by-name/fl/flashfocus/package.nix @@ -57,11 +57,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 8e86ab8e11fc6..2477b7d413e39 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/flashprog/package.nix b/pkgs/by-name/fl/flashprog/package.nix index 2839811d1ed70..bd9550816fc47 100644 --- a/pkgs/by-name/fl/flashprog/package.nix +++ b/pkgs/by-name/fl/flashprog/package.nix @@ -57,15 +57,15 @@ stdenv.mkDerivation (finalAttrs: { "CONFIG_RAYER_SPI=${yesNo (!(stdenv.hostPlatform.isDarwin) && stdenv.hostPlatform.isx86_64)}" ]; - meta = with lib; { + meta = { homepage = "https://flashprog.org"; description = "Utility for reading, writing, erasing and verifying flash ROM chips"; - license = with licenses; [ gpl2Plus ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ gpl2Plus ]; + 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 0b1af9f9f89b9..7084017deb771 100644 --- a/pkgs/by-name/fl/flashrom/package.nix +++ b/pkgs/by-name/fl/flashrom/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { install -Dm644 util/flashrom_udev.rules $out/lib/udev/rules.d/flashrom.rules ''; - 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 c9bd4e432ec4d..6568fff4eedc3 100644 --- a/pkgs/by-name/fl/flasm/package.nix +++ b/pkgs/by-name/fl/flasm/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { 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-gtk/package.nix b/pkgs/by-name/fl/flat-remix-gtk/package.nix index 184fe6c6c389a..bbc6f8724a363 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 7c13f453f4232..793af39a196d8 100644 --- a/pkgs/by-name/fl/flatcc/package.nix +++ b/pkgs/by-name/fl/flatcc/package.nix @@ -32,11 +32,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 d650b44da0f82..72f7957c5777f 100644 --- a/pkgs/by-name/fl/flatito/package.nix +++ b/pkgs/by-name/fl/flatito/package.nix @@ -30,12 +30,12 @@ buildRubyGem rec { source.sha256 = "sha256-n1qPiZoUwaD+dMuJKI8k3cR71dg6yIrIAj0ZsFbstQ8="; propagatedBuildInputs = [ deps ]; - meta = with lib; { + meta = { description = "It allows you to search for a key and get the value and the line number where it is located 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 6eea1b44d7a3f..dab292ba956ec 100644 --- a/pkgs/by-name/fl/flatter/package.nix +++ b/pkgs/by-name/fl/flatter/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "(F)ast (lat)tice (r)eduction 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 acd4809a5aad6..79bbb8da072da 100644 --- a/pkgs/by-name/fl/flawfinder/package.nix +++ b/pkgs/by-name/fl/flawfinder/package.nix @@ -18,12 +18,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/flex-ncat/package.nix b/pkgs/by-name/fl/flex-ncat/package.nix index b68933b6c027d..33b81699680d0 100644 --- a/pkgs/by-name/fl/flex-ncat/package.nix +++ b/pkgs/by-name/fl/flex-ncat/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-RqQMCP9rmdTG5AXLXkIQz0vE7qF+3RZ1BDdVRYoHHQs="; - meta = with lib; { + meta = { homepage = "https://github.com/kc2g-flex-tools/nCAT"; description = "FlexRadio remote control (CAT) via hamlib/rigctl protocol"; - license = licenses.mit; - maintainers = with maintainers; [ mvs ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mvs ]; mainProgram = "nCAT"; }; } diff --git a/pkgs/by-name/fl/flex-ndax/package.nix b/pkgs/by-name/fl/flex-ndax/package.nix index cc75ff1d7751a..29ac6022ded29 100644 --- a/pkgs/by-name/fl/flex-ndax/package.nix +++ b/pkgs/by-name/fl/flex-ndax/package.nix @@ -21,12 +21,12 @@ buildGoModule rec { vendorHash = "sha256-05LWJm4MoJqjJaFrBZvutKlqSTGl4dSp433AfHHO6LU="; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "https://github.com/kc2g-flex-tools/nDAX"; description = "FlexRadio digital audio transport (DAX) connector for PulseAudio"; - license = licenses.mit; - maintainers = with maintainers; [ mvs ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mvs ]; mainProgram = "nDAX"; }; } diff --git a/pkgs/by-name/fl/flexcpp/package.nix b/pkgs/by-name/fl/flexcpp/package.nix index fe1938d6cd0d9..56ce0c5aa113c 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 a593132020aaa..5c57691911d26 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/flintlock/package.nix b/pkgs/by-name/fl/flintlock/package.nix index d4eb8a284514c..33d5ad438c4bc 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 32bb4464cc4b6..415363fd146ba 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/flips/package.nix b/pkgs/by-name/fl/flips/package.nix index d6a7a808243dc..bed33c868d3cb 100644 --- a/pkgs/by-name/fl/flips/package.nix +++ b/pkgs/by-name/fl/flips/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation { runHook postBuild ''; - meta = with lib; { + meta = { description = "Patcher for IPS and BPS files"; homepage = "https://github.com/Alcaro/Flips"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = with lib.maintainers; [ aleksana ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "flips"; }; } diff --git a/pkgs/by-name/fl/flitter/package.nix b/pkgs/by-name/fl/flitter/package.nix index 19efe2c399fc2..1041bc435985f 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/flock/package.nix b/pkgs/by-name/fl/flock/package.nix index 135ec03888b46..97194d9759357 100644 --- a/pkgs/by-name/fl/flock/package.nix +++ b/pkgs/by-name/fl/flock/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Cross-platform version of flock(1)"; - maintainers = with maintainers; [ matthewbauer ]; + maintainers = with lib.maintainers; [ matthewbauer ]; mainProgram = "flock"; - platforms = platforms.all; - license = licenses.isc; + platforms = lib.platforms.all; + license = lib.licenses.isc; }; } diff --git a/pkgs/by-name/fl/flood-for-transmission/package.nix b/pkgs/by-name/fl/flood-for-transmission/package.nix index d4e4877e5af5b..c5f5fbf740de4 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/flootty/package.nix b/pkgs/by-name/fl/flootty/package.nix index 085de18321648..4b782a272f793 100644 --- a/pkgs/by-name/fl/flootty/package.nix +++ b/pkgs/by-name/fl/flootty/package.nix @@ -13,11 +13,11 @@ python3Packages.buildPythonApplication rec { sha256 = "0gfl143ly81pmmrcml91yr0ypvwrs5q4s1sfdc0l2qkqpy233ih7"; }; - 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 6a12d8e1f357e..e04c1122c50c5 100644 --- a/pkgs/by-name/fl/flopoco/package.nix +++ b/pkgs/by-name/fl/flopoco/package.nix @@ -84,11 +84,11 @@ stdenv.mkDerivation rec { 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/flowblade/package.nix b/pkgs/by-name/fl/flowblade/package.nix index 441da2aec4ce5..32b07b561e96f 100644 --- a/pkgs/by-name/fl/flowblade/package.nix +++ b/pkgs/by-name/fl/flowblade/package.nix @@ -63,12 +63,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/flowtime/package.nix b/pkgs/by-name/fl/flowtime/package.nix index 534c57904241b..b08e3a1d11d72 100644 --- a/pkgs/by-name/fl/flowtime/package.nix +++ b/pkgs/by-name/fl/flowtime/package.nix @@ -49,15 +49,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 479c2902902a3..377f151221489 100644 --- a/pkgs/by-name/fl/flpsed/package.nix +++ b/pkgs/by-name/fl/flpsed/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { -i src/GsWidget.cxx ''; - 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 e21d608496b85..44107fe4a19d4 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 4fc85cc3c1aff..5db8ad84b852e 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/flux/package.nix b/pkgs/by-name/fl/flux/package.nix index 2a4246b2569c0..3ff329ea0fc1a 100644 --- a/pkgs/by-name/fl/flux/package.nix +++ b/pkgs/by-name/fl/flux/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { 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 65bc41d35f15a..dea1ac3257b1f 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 = "http://fluxbox.org/"; - license = licenses.mit; - maintainers = [ maintainers.AndersonTorres ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.AndersonTorres ]; + 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 511def3f70084..2c6700583bc76 100644 --- a/pkgs/by-name/fl/fluxboxlauncher/package.nix +++ b/pkgs/by-name/fl/fluxboxlauncher/package.nix @@ -54,12 +54,12 @@ python3.pkgs.buildPythonApplication rec { 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/fluxctl/package.nix b/pkgs/by-name/fl/fluxctl/package.nix index 5e2ed5b0f53e8..e81e0a625916d 100644 --- a/pkgs/by-name/fl/fluxctl/package.nix +++ b/pkgs/by-name/fl/fluxctl/package.nix @@ -37,12 +37,12 @@ buildGoModule rec { done ''; - meta = with lib; { + meta = { description = "CLI client for Flux, the GitOps Kubernetes operator"; mainProgram = "fluxctl"; homepage = "https://github.com/fluxcd/flux"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Gonzih Br1ght0ne ]; diff --git a/pkgs/by-name/fl/fly/package.nix b/pkgs/by-name/fl/fly/package.nix index 67e3f25c2e01b..b5f37f869d9fe 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 443c66488e232..6d9b2fc39e14d 100644 --- a/pkgs/by-name/fl/flye/package.nix +++ b/pkgs/by-name/fl/flye/package.nix @@ -60,11 +60,11 @@ python3Packages.buildPythonApplication rec { export PATH=$out/bin:$PATH ''; - 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/fm/fm-tune/package.nix b/pkgs/by-name/fm/fm-tune/package.nix index 8240b2d652f1a..dae3f2d66fcc7 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 7ec86ea86cc95..1e943de3479bd 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/fn/fn-cli/package.nix b/pkgs/by-name/fn/fn-cli/package.nix index 01be247931a63..d0847cb219816 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/fnotifystat/package.nix b/pkgs/by-name/fn/fnotifystat/package.nix index 72c1edde96c9e..865906d3ed8d6 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/fn/fntsample/package.nix b/pkgs/by-name/fn/fntsample/package.nix index 817acb4273a3c..ff9a448fcbebf 100644 --- a/pkgs/by-name/fn/fntsample/package.nix +++ b/pkgs/by-name/fn/fntsample/package.nix @@ -76,12 +76,12 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://github.com/eugmes/fntsample"; description = "PDF and PostScript font samples generator"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } # TODO: factor/package ucd-blocks diff --git a/pkgs/by-name/fo/focus-stack/package.nix b/pkgs/by-name/fo/focus-stack/package.nix index 683a42192274f..2194318790c0e 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 016c253eec33c..06172d80aec14 100644 --- a/pkgs/by-name/fo/focus/package.nix +++ b/pkgs/by-name/fo/focus/package.nix @@ -24,15 +24,15 @@ stdenv.mkDerivation rec { 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; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.unix; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ azahi ]; + 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 ed1668b08a953..d783c284192c6 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 rec { # 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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/fo/folks/package.nix b/pkgs/by-name/fo/folks/package.nix index 64f81dea0a7ca..123f457ff35b7 100644 --- a/pkgs/by-name/fo/folks/package.nix +++ b/pkgs/by-name/fo/folks/package.nix @@ -112,11 +112,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; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/fo/foma/package.nix b/pkgs/by-name/fo/foma/package.nix index 3110f745672e7..f7158975d87d7 100644 --- a/pkgs/by-name/fo/foma/package.nix +++ b/pkgs/by-name/fo/foma/package.nix @@ -48,11 +48,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 ca56e9b2502af..0a617c025eeba 100644 --- a/pkgs/by-name/fo/fomp/package.nix +++ b/pkgs/by-name/fo/fomp/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { python3 ]; - 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/font-config-info/package.nix b/pkgs/by-name/fo/font-config-info/package.nix index 4d45eab2cf8ea..96e3f5e7f6318 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/fontfor/package.nix b/pkgs/by-name/fo/fontfor/package.nix index d2a5747809372..adb4c670c5a18 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/fontpreview/package.nix b/pkgs/by-name/fo/fontpreview/package.nix index b80cfd9791bc5..6c92afae356f4 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 be8ed41f5217e..98c7b30b92dfa 100644 --- a/pkgs/by-name/fo/foo2zjs/package.nix +++ b/pkgs/by-name/fo/foo2zjs/package.nix @@ -83,12 +83,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/footswitch/package.nix b/pkgs/by-name/fo/footswitch/package.nix index 61d33b71761da..718a6d7588cb7 100644 --- a/pkgs/by-name/fo/footswitch/package.nix +++ b/pkgs/by-name/fo/footswitch/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation { mkdir -p $out/bin $out/lib/udev/rules.d ''; - 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/foreman/package.nix b/pkgs/by-name/fo/foreman/package.nix index 06cb2a3d4e966..9c61a2d048fc4 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/forge-mtg/package.nix b/pkgs/by-name/fo/forge-mtg/package.nix index dedce0dd3cd3f..dd5e97a6d0179 100644 --- a/pkgs/by-name/fo/forge-mtg/package.nix +++ b/pkgs/by-name/fo/forge-mtg/package.nix @@ -63,10 +63,10 @@ maven.buildMavenPackage { done ''; - meta = with lib; { + meta = { description = "Magic: the Gathering card game with rules enforcement"; homepage = "https://www.slightlymagic.net/forum/viewforum.php?f=26"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ eigengrau ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ eigengrau ]; }; } diff --git a/pkgs/by-name/fo/forge/package.nix b/pkgs/by-name/fo/forge/package.nix index ecb3780e20110..d868d9199aa95 100644 --- a/pkgs/by-name/fo/forge/package.nix +++ b/pkgs/by-name/fo/forge/package.nix @@ -68,17 +68,17 @@ stdenv.mkDerivation rec { libgbm ]; - meta = with lib; { + meta = { description = "OpenGL interop library that can be used with ArrayFire or any other application using CUDA or OpenCL compute backend"; longDescription = '' An OpenGL interop library that can be used with ArrayFire or any other application using CUDA or OpenCL compute backend. The goal of Forge is to provide high performance OpenGL visualizations for C/C++ applications that use CUDA/OpenCL. Forge uses OpenGL >=3.3 forward compatible contexts, so please make sure you have capable hardware before trying it out. ''; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://arrayfire.com/"; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ chessai twesterhout ]; diff --git a/pkgs/by-name/fo/forkstat/package.nix b/pkgs/by-name/fo/forkstat/package.nix index f1a4305e306bd..0176ccde69bbb 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 0e6d763dd963e..3c8b221df990a 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 b8a55c074cc69..1959c389c9481 100644 --- a/pkgs/by-name/fo/form/package.nix +++ b/pkgs/by-name/fo/form/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation { zlib ]; - meta = with lib; { + meta = { description = "FORM project for 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/formula/package.nix b/pkgs/by-name/fo/formula/package.nix index 7913d9ec8a7ed..72dd2aa03f92e 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/fornalder/package.nix b/pkgs/by-name/fo/fornalder/package.nix index 84b88da240fe9..b275724a72201 100644 --- a/pkgs/by-name/fo/fornalder/package.nix +++ b/pkgs/by-name/fo/fornalder/package.nix @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage rec { --suffix PATH : ${lib.makeBinPath [ gnuplot ]} ''; - meta = with lib; { + meta = { description = "Visualize long-term trends in collections of Git repositories"; homepage = "https://github.com/hpjansson/fornalder"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ astro figsoda ]; diff --git a/pkgs/by-name/fo/fortran-fpm/package.nix b/pkgs/by-name/fo/fortran-fpm/package.nix index 157306707812a..4c28312f60500 100644 --- a/pkgs/by-name/fo/fortran-fpm/package.nix +++ b/pkgs/by-name/fo/fortran-fpm/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Fortran Package Manager (fpm)"; homepage = "https://fpm.fortran-lang.org"; - maintainers = [ maintainers.proofconstruction ]; - license = licenses.mit; - platforms = platforms.all; + maintainers = [ lib.maintainers.proofconstruction ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; mainProgram = "fortran-fpm"; }; } diff --git a/pkgs/by-name/fo/fortune/package.nix b/pkgs/by-name/fo/fortune/package.nix index bb0233f4b6155..1088b6a5ec965 100644 --- a/pkgs/by-name/fo/fortune/package.nix +++ b/pkgs/by-name/fo/fortune/package.nix @@ -55,11 +55,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/foxtrotgps/package.nix b/pkgs/by-name/fo/foxtrotgps/package.nix index 43e176471a5c6..aa2752cccf913 100644 --- a/pkgs/by-name/fo/foxtrotgps/package.nix +++ b/pkgs/by-name/fo/foxtrotgps/package.nix @@ -82,7 +82,7 @@ stdenv.mkDerivation rec { 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 @@ -91,8 +91,8 @@ stdenv.mkDerivation rec { 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/fparser/package.nix b/pkgs/by-name/fp/fparser/package.nix index 389b0e5b88eb4..1bb741534a75c 100644 --- a/pkgs/by-name/fp/fparser/package.nix +++ b/pkgs/by-name/fp/fparser/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "C++ Library for Evaluating Mathematical Functions"; homepage = "https://github.com/thliebig/fparser"; - license = licenses.lgpl3; - maintainers = with maintainers; [ matthuszagh ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ matthuszagh ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fp/fpattern/package.nix b/pkgs/by-name/fp/fpattern/package.nix index 9ece75ba435cf..da3d517084137 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 b227dd8bb428b..7386bfbc738eb 100644 --- a/pkgs/by-name/fp/fped/package.nix +++ b/pkgs/by-name/fp/fped/package.nix @@ -46,12 +46,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 c3106ef1bdfc6..dcece4bfdc204 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 5443dcf9647f1..3bfb4b84f7316 100644 --- a/pkgs/by-name/fp/fprettify/package.nix +++ b/pkgs/by-name/fp/fprettify/package.nix @@ -23,11 +23,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 b870fe1f41d47..929df4ffab718 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 2107dd0c66314..45afef8961753 100644 --- a/pkgs/by-name/fr/fragments/package.nix +++ b/pkgs/by-name/fr/fragments/package.nix @@ -72,17 +72,17 @@ 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; + with lib.maintainers; [ emilytrau ] ++ lib.teams.gnome-circle.members; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "fragments"; }; } diff --git a/pkgs/by-name/fr/framework-tool/package.nix b/pkgs/by-name/fr/framework-tool/package.nix index 743b0ad84ae59..58b3efeb374a7 100644 --- a/pkgs/by-name/fr/framework-tool/package.nix +++ b/pkgs/by-name/fr/framework-tool/package.nix @@ -31,12 +31,12 @@ rustPlatform.buildRustPackage { nativeBuildInputs = [ pkg-config ]; buildInputs = [ udev ]; - meta = with lib; { + meta = { description = "Swiss army knife for Framework laptops"; homepage = "https://github.com/FrameworkComputer/framework-system"; - license = licenses.bsd3; + license = lib.licenses.bsd3; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ nickcao leona kloenk diff --git a/pkgs/by-name/fr/frangipanni/package.nix b/pkgs/by-name/fr/frangipanni/package.nix index 1a0711f1bf6c4..1eae362d95779 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 b7a7fb225f30c..c54fb24d04d8c 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 15f374baf8bb2..cf4f22379348b 100644 --- a/pkgs/by-name/fr/freac/package.nix +++ b/pkgs/by-name/fr/freac/package.nix @@ -29,11 +29,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 dc1e97dd756d9..67c71bd7de05e 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-eLN917L6l0vUWlAn3ROKrRdtyqaaMKjBQD2tEGWECUU="; - 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 8d8b832d5a471..d0d7dc5324094 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 9a52b8180c7aa..a4c25223cacbe 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 cb32804c2fc50..14b1da25bcbab 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/freeglut/package.nix b/pkgs/by-name/fr/freeglut/package.nix index ca0f1923098f2..7d0e2a8a2c9b4 100644 --- a/pkgs/by-name/fr/freeglut/package.nix +++ b/pkgs/by-name/fr/freeglut/package.nix @@ -47,7 +47,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 @@ -58,9 +58,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/freepats/package.nix b/pkgs/by-name/fr/freepats/package.nix index fd39872ea1c52..1245690c816ae 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 dda4a5943a721..e47368c05414c 100644 --- a/pkgs/by-name/fr/freeradius/package.nix +++ b/pkgs/by-name/fr/freeradius/package.nix @@ -101,15 +101,15 @@ stdenv.mkDerivation rec { "doc" ]; - meta = with lib; { + meta = { homepage = "https://freeradius.org/"; description = "Modular, high performance free RADIUS suite"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ sheenobu willibutz ]; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; } ## TODO: include windbind optionally (via samba?) diff --git a/pkgs/by-name/fr/freesweep/package.nix b/pkgs/by-name/fr/freesweep/package.nix index 7ade52101f7cd..09ae3d06dfadd 100644 --- a/pkgs/by-name/fr/freesweep/package.nix +++ b/pkgs/by-name/fr/freesweep/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Console minesweeper-style game written in C for Unix-like systems"; mainProgram = "freesweep"; homepage = "https://github.com/rwestlund/freesweep"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/fr/freetalk/package.nix b/pkgs/by-name/fr/freetalk/package.nix index 7c1f9c00c5d4b..dca0c5d8d9c79 100644 --- a/pkgs/by-name/fr/freetalk/package.nix +++ b/pkgs/by-name/fr/freetalk/package.nix @@ -50,12 +50,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/freexl/package.nix b/pkgs/by-name/fr/freexl/package.nix index 1509121ee4d04..3a8f9cc800e80 100644 --- a/pkgs/by-name/fr/freexl/package.nix +++ b/pkgs/by-name/fr/freexl/package.nix @@ -30,16 +30,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 38846028c086f..f46f9f53b5afe 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 30850885167c9..d07a339eb18b0 100644 --- a/pkgs/by-name/fr/frei/package.nix +++ b/pkgs/by-name/fr/frei/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-N5k/2wB46oRfM4ShjVQ23tAgCMmyBaGfIslUqYUJYrc="; - 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/french-numbers/package.nix b/pkgs/by-name/fr/french-numbers/package.nix index 48649d4e57a40..f54aa9b1ef029 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 d9a63a5fe2fcc..398ca4521d616 100644 --- a/pkgs/by-name/fr/frescobaldi/package.nix +++ b/pkgs/by-name/fr/frescobaldi/package.nix @@ -44,7 +44,7 @@ python311Packages.buildPythonApplication rec { "\${qtWrapperArgs[@]}" ]; - meta = with lib; { + meta = { homepage = "https://frescobaldi.org/"; description = "LilyPond sheet music text editor"; longDescription = '' @@ -59,9 +59,9 @@ python311Packages.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/fribidi/package.nix b/pkgs/by-name/fr/fribidi/package.nix index 5fedf8f1d3961..bfba6dfd910c7 100644 --- a/pkgs/by-name/fr/fribidi/package.nix +++ b/pkgs/by-name/fr/fribidi/package.nix @@ -50,12 +50,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/friture/package.nix b/pkgs/by-name/fr/friture/package.nix index 9f729bda96f36..389a877d779e9 100644 --- a/pkgs/by-name/fr/friture/package.nix +++ b/pkgs/by-name/fr/friture/package.nix @@ -60,13 +60,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 alyaeanyx ]; diff --git a/pkgs/by-name/fr/frogatto/data.nix b/pkgs/by-name/fr/frogatto/data.nix index 15751c71302a0..c1b43013d1784 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 ded9db8efb346..ba6ab8eef2038 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/frp/package.nix b/pkgs/by-name/fr/frp/package.nix index 13e589f308d6b..99934c3944e7c 100644 --- a/pkgs/by-name/fr/frp/package.nix +++ b/pkgs/by-name/fr/frp/package.nix @@ -29,7 +29,7 @@ buildGoModule rec { frp = nixosTests.frp; }; - meta = with lib; { + meta = { description = "Fast reverse proxy"; longDescription = '' frp is a fast reverse proxy to help you expose a local server behind a @@ -38,7 +38,7 @@ buildGoModule rec { internal services by domain name. frp also has a P2P connect mode. ''; homepage = "https://github.com/fatedier/frp"; - license = licenses.asl20; - maintainers = with maintainers; [ Br1ght0ne ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Br1ght0ne ]; }; } diff --git a/pkgs/by-name/fr/frr/clippy-helper.nix b/pkgs/by-name/fr/frr/clippy-helper.nix index 608716b45f6b4..4a62b63785b31 100644 --- a/pkgs/by-name/fr/frr/clippy-helper.nix +++ b/pkgs/by-name/fr/frr/clippy-helper.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://frrouting.org/"; description = "FRR routing daemon suite: CLI helper tool clippy"; longDescription = '' @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { 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/frugal/package.nix b/pkgs/by-name/fr/frugal/package.nix index 2380581c5e7a4..2d09aa0ce53fe 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 baa42437f5f08..2347c382eebba 100644 --- a/pkgs/by-name/fr/frugally-deep/package.nix +++ b/pkgs/by-name/fr/frugally-deep/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = lib.optionals buildTests [ "-DFDEEP_BUILD_UNITTEST=ON" ]; 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 ]; - maintainers = with maintainers; [ Madouura ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ Madouura ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/fs/fsarchiver/package.nix b/pkgs/by-name/fs/fsarchiver/package.nix index 90068d7cfcbfe..f8020ca8206a1 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 5faa674868613..20fc0c422da26 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 20449b048641a..1e601781c0ff6 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-WDq08flKiMCN4SS9xHH3B0nCX6us6huX8SF9BPuNzoo="; - 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 5bc7759043205..758ed4cd55449 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 283f6a192066c..3e6285868cfef 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; [ Br1ght0ne ]; + maintainers = with lib.maintainers; [ Br1ght0ne ]; mainProgram = "fselect"; }; } diff --git a/pkgs/by-name/fs/fsmark/package.nix b/pkgs/by-name/fs/fsmark/package.nix index 9d442aba7b0a1..1b2b6bb8f63f4 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 211c991408e1f..309527d5d5497 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 56b9215027f64..db32a8a43384e 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 fb2e67ef7115d..012b24a93fbe2 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 33c819f881c11..b963b89c10b71 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/fstrcmp/package.nix b/pkgs/by-name/fs/fstrcmp/package.nix index 59d9cf3dfe644..289b218dab6cc 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 899ee38533a00..6831dde02c7e2 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 a9c34d2d1bc65..007d63be275d4 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 4ef7a2357b83c..12bcc0db306b1 100644 --- a/pkgs/by-name/fs/fsverity-utils/package.nix +++ b/pkgs/by-name/fs/fsverity-utils/package.nix @@ -47,13 +47,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/ft/ftgl/package.nix b/pkgs/by-name/ft/ftgl/package.nix index 2c05f30f3d729..3fd12c43dae09 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ft/ftop/package.nix b/pkgs/by-name/ft/ftop/package.nix index f507e3cfb61bb..1735262293960 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/fuc/package.nix b/pkgs/by-name/fu/fuc/package.nix index 771e7e861fed0..f4ee50055dbb7 100644 --- a/pkgs/by-name/fu/fuc/package.nix +++ b/pkgs/by-name/fu/fuc/package.nix @@ -32,10 +32,10 @@ rustPlatform.buildRustPackage rec { rustfmt ]; - meta = with lib; { + meta = { description = "Modern, performance focused unix commands"; homepage = "https://github.com/SUPERCILEX/fuc"; - license = licenses.asl20; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/fu/funambol/package.nix b/pkgs/by-name/fu/funambol/package.nix index ae746d0be3ba0..cd2c0d75d0609 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/functionalplus/package.nix b/pkgs/by-name/fu/functionalplus/package.nix index e86e15666de88..a6be05246ca69 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 2a3a889ee6e8d..550f8c1eb6442 100644 --- a/pkgs/by-name/fu/functiontrace-server/package.nix +++ b/pkgs/by-name/fu/functiontrace-server/package.nix @@ -21,10 +21,10 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.CoreFoundation ]; - 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 8b78936815792..1e2212a4e8ef9 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-yapFUkG2JfGb3N3iVEDpQunOyRnbNTs+q3zQ23B23/s="; - meta = with lib; { + meta = { description = "Language agnostic documentation generator"; mainProgram = "fundoc"; homepage = "https://github.com/daynin/fundoc"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/fu/funnelweb/package.nix b/pkgs/by-name/fu/funnelweb/package.nix index 14e52ff56b25c..efac14b324795 100644 --- a/pkgs/by-name/fu/funnelweb/package.nix +++ b/pkgs/by-name/fu/funnelweb/package.nix @@ -23,14 +23,14 @@ stdenv.mkDerivation rec { 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; - maintainers = [ maintainers.AndersonTorres ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.AndersonTorres ]; }; } #TODO: implement it for other platforms diff --git a/pkgs/by-name/fu/furtherance/package.nix b/pkgs/by-name/fu/furtherance/package.nix index a983b914cae69..1001684c5116c 100644 --- a/pkgs/by-name/fu/furtherance/package.nix +++ b/pkgs/by-name/fu/furtherance/package.nix @@ -55,12 +55,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-emulator/package.nix b/pkgs/by-name/fu/fuse-emulator/package.nix index e23b1a1e64ce2..c8fd1dac7ee80 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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/fu/fusee-interfacee-tk/package.nix b/pkgs/by-name/fu/fusee-interfacee-tk/package.nix index 39766ddb4e5ab..4ad30a84d8c49 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/fusee-launcher/package.nix b/pkgs/by-name/fu/fusee-launcher/package.nix index 917d6fd4aa7e8..901b5c4649a99 100644 --- a/pkgs/by-name/fu/fusee-launcher/package.nix +++ b/pkgs/by-name/fu/fusee-launcher/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation { ]; pythonPath = with python3Packages; [ pyusb ]; - meta = with lib; { + meta = { homepage = "https://github.com/Cease-and-DeSwitch/fusee-launcher"; description = "Work-in-progress launcher for one of the Tegra X1 bootROM exploits"; mainProgram = "fusee-launcher"; - license = licenses.gpl2; - maintainers = with maintainers; [ pneumaticat ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ pneumaticat ]; }; } diff --git a/pkgs/by-name/fu/fuseiso/package.nix b/pkgs/by-name/fu/fuseiso/package.nix index 413a58e6fcdfe..3d44633beaefa 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/fusionInventory/package.nix b/pkgs/by-name/fu/fusionInventory/package.nix index 4c73b269217c6..c526677e85f96 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 = "http://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 e43f5b7f0ca04..ded8dfb1f648f 100644 --- a/pkgs/by-name/fu/fusuma/package.nix +++ b/pkgs/by-name/fu/fusuma/package.nix @@ -26,14 +26,14 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "fusuma"; - 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 Br1ght0ne ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fv/fverb/package.nix b/pkgs/by-name/fv/fverb/package.nix index 0c81aeff3df05..587b50fe78c1a 100644 --- a/pkgs/by-name/fv/fverb/package.nix +++ b/pkgs/by-name/fv/fverb/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { 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; }; } diff --git a/pkgs/by-name/fw/fw-ectool/package.nix b/pkgs/by-name/fw/fw-ectool/package.nix index bd1bc0bfea98a..cd5f90c773d5a 100644 --- a/pkgs/by-name/fw/fw-ectool/package.nix +++ b/pkgs/by-name/fw/fw-ectool/package.nix @@ -36,12 +36,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 ddc3b28bf6555..b6de606e47357 100644 --- a/pkgs/by-name/fw/fw/package.nix +++ b/pkgs/by-name/fw/fw/package.nix @@ -41,11 +41,11 @@ rustPlatform.buildRustPackage rec { OPENSSL_NO_VENDOR = true; }; - meta = with lib; { + meta = { description = "Workspace productivity booster"; homepage = "https://github.com/brocode/fw"; - license = licenses.wtfpl; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "fw"; }; } diff --git a/pkgs/by-name/fw/fwanalyzer/package.nix b/pkgs/by-name/fw/fwanalyzer/package.nix index 667c558f9693a..33be8704d1ff2 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/fwupd-efi/package.nix b/pkgs/by-name/fw/fwupd-efi/package.nix index f1a125ede9db9..b5fd160b29e2c 100644 --- a/pkgs/by-name/fw/fwupd-efi/package.nix +++ b/pkgs/by-name/fw/fwupd-efi/package.nix @@ -49,10 +49,10 @@ stdenv.mkDerivation rec { "-Defi_sbat_distro_url=https://search.nixos.org/packages?channel=unstable&show=fwupd-efi&from=0&size=50&sort=relevance&query=fwupd-efi" ]; - 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/fxload/package.nix b/pkgs/by-name/fx/fxload/package.nix index ec4b890563ab2..157e24a0e2623 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; [ realsnick ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ realsnick ]; }; } diff --git a/pkgs/by-name/fy/fyne/package.nix b/pkgs/by-name/fy/fyne/package.nix index bb78a5fd3ec31..49396662ab794 100644 --- a/pkgs/by-name/fy/fyne/package.nix +++ b/pkgs/by-name/fy/fyne/package.nix @@ -52,11 +52,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 391b1f4db6ead..f49f7812a4f48 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 1494216f03e4b..7c954ddab585e 100644 --- a/pkgs/by-name/fz/fzf-git-sh/package.nix +++ b/pkgs/by-name/fz/fzf-git-sh/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { install -D fzf-git.sh $out/share/${pname}/fzf-git.sh ''; - meta = with lib; { + meta = { homepage = "https://github.com/junegunn/fzf-git.sh"; description = "Bash and zsh 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 549b0d752c2f5..207139d53577e 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 1e8dc13d1e259..eb199c8e2d7f1 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 rec { 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 98842aa0cb977..645f018c25acb 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 4648d800fecb8..55f992898a51d 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; - maintainers = with maintainers; [ vyp ]; - platforms = platforms.linux; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ vyp ]; + 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 9cc6a5f9adc92..2470acd45e864 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 rec { 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/g8/g810-led/package.nix b/pkgs/by-name/g8/g810-led/package.nix index 977007b86f5ff..1816b0d4ec583 100644 --- a/pkgs/by-name/g8/g810-led/package.nix +++ b/pkgs/by-name/g8/g810-led/package.nix @@ -45,11 +45,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 0d19b3b3382c5..44736a0b63c8e 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 rec { 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 1744c4f01aa51..ca51860aa97fc 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 d384aa76796fd..de81fbc8a079c 100644 --- a/pkgs/by-name/ga/galah/package.nix +++ b/pkgs/by-name/ga/galah/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-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 f686c6023b1a3..b153619ce2622 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/galerio/package.nix b/pkgs/by-name/ga/galerio/package.nix index 1801ebd412b51..f67f90c59abbb 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-nYaCN09LP/2MfNRY8oZKtjzFCBFCeRF1IZ2ZBmbHg7I="; - meta = with lib; { + meta = { description = " A 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 88d584b5d101c..08986fc1cec45 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 8c98729e5065a..3e9c7df5a84db 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/game-music-emu/package.nix b/pkgs/by-name/ga/game-music-emu/package.nix index ee1f18715f39b..3afc73cf40f86 100644 --- a/pkgs/by-name/ga/game-music-emu/package.nix +++ b/pkgs/by-name/ga/game-music-emu/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { remove-references-to -t ${stdenv.cc.cc} "$(readlink -f $out/lib/libgme.so)" ''; - meta = with lib; { + meta = { homepage = "https://bitbucket.org/mpyne/game-music-emu/wiki/Home"; description = "Collection of video game music file emulators"; - license = licenses.lgpl21Plus; - platforms = platforms.all; - maintainers = with maintainers; [ ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/by-name/ga/gamecube-tools/package.nix b/pkgs/by-name/ga/gamecube-tools/package.nix index edf3e5b21684d..3a6bdc820ef1e 100644 --- a/pkgs/by-name/ga/gamecube-tools/package.nix +++ b/pkgs/by-name/ga/gamecube-tools/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { sha256 = "sha256-GsTmwyxBc36Qg+UGy+cRAjGW1eh1XxV0s94B14ZJAjU="; }; - meta = with lib; { + meta = { description = "Tools for gamecube/wii projects"; homepage = "https://github.com/devkitPro/gamecube-tools/"; - license = licenses.gpl2; - maintainers = with maintainers; [ tomsmeets ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ tomsmeets ]; }; } diff --git a/pkgs/by-name/ga/gamehub/package.nix b/pkgs/by-name/ga/gamehub/package.nix index 4581585e4173f..377158e5fb055 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 = { homepage = "https://tkashkin.github.io/projects/gamehub"; description = "Unified library for all your games"; longDescription = '' @@ -61,8 +61,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 c436f9e79a4cf..1f092fdc5b7b1 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 e9b9fae017ebf..07266e6bfe962 100644 --- a/pkgs/by-name/ga/gamja/package.nix +++ b/pkgs/by-name/ga/gamja/package.nix @@ -30,11 +30,11 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Simple IRC web client"; homepage = "https://git.sr.ht/~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 2ee0061850b96..65274f94707d3 100644 --- a/pkgs/by-name/ga/gammu/package.nix +++ b/pkgs/by-name/ga/gammu/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { ] ++ lib.optionals postgresSupport [ postgresql ]; - meta = with lib; { + meta = { homepage = "https://wammu.eu/gammu/"; description = "Command line utility and library to control mobile phones"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = [ maintainers.coroa ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.coroa ]; }; } diff --git a/pkgs/by-name/ga/gandom-fonts/package.nix b/pkgs/by-name/ga/gandom-fonts/package.nix index 13c9fe1b40abf..713426f130e72 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/gapless/package.nix b/pkgs/by-name/ga/gapless/package.nix index 6683bdccc3bee..83547d7e82070 100644 --- a/pkgs/by-name/ga/gapless/package.nix +++ b/pkgs/by-name/ga/gapless/package.nix @@ -52,12 +52,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 68b66f90fee2e..d73fd7f0da8fc 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 = with maintainers; [ drupol ]; - license = licenses.x11; - platforms = platforms.all; + maintainers = with lib.maintainers; [ drupol ]; + 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 7fb5dd5eb0103..7b89a03848fd8 100644 --- a/pkgs/by-name/ga/gargoyle/package.nix +++ b/pkgs/by-name/ga/gargoyle/package.nix @@ -98,13 +98,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "http://ccxvii.net/gargoyle/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; description = "Interactive fiction interpreter GUI"; mainProgram = "gargoyle"; - platforms = platforms.unix; - maintainers = with maintainers; [ orivej ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/ga/gash-utils/package.nix b/pkgs/by-name/ga/gash-utils/package.nix index 0719eb8aa6822..9b26efd3a34d6 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 199c9f1a02434..b08afcec2d279 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/gatekeeper/package.nix b/pkgs/by-name/ga/gatekeeper/package.nix index 15988ea3b421b..80ab8cc53584d 100644 --- a/pkgs/by-name/ga/gatekeeper/package.nix +++ b/pkgs/by-name/ga/gatekeeper/package.nix @@ -31,11 +31,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/gatling/package.nix b/pkgs/by-name/ga/gatling/package.nix index 1a3e2a2e4f29d..c6530fd474493 100644 --- a/pkgs/by-name/ga/gatling/package.nix +++ b/pkgs/by-name/ga/gatling/package.nix @@ -38,10 +38,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 1f28d30a323dc..04bd982471ae7 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 575ba38336647..e278acf2bcc31 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/gavrasm/package.nix b/pkgs/by-name/ga/gavrasm/package.nix index 1894273f7a93f..29510fb80be66 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 d65c354f633f5..bf389b0534d50 100644 --- a/pkgs/by-name/ga/gaw/package.nix +++ b/pkgs/by-name/ga/gaw/package.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { buildInputs = [ gtk3 ]; - meta = with lib; { + meta = { description = "Gtk Analog Wave viewer"; mainProgram = "gaw"; longDescription = '' @@ -29,8 +29,8 @@ stdenv.mkDerivation rec { direct tcp/ip connection or directly from the sound card. ''; homepage = "http://gaw.tuxfamily.org"; - 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 6afab31a77b8c..c37cc768e8dc6 100644 --- a/pkgs/by-name/ga/gay/package.nix +++ b/pkgs/by-name/ga/gay/package.nix @@ -13,11 +13,11 @@ python3.pkgs.buildPythonApplication rec { hash = "sha256-x+RVVgQvJwV5j7DLYS7AnXb4OMJ4v+l0awUuonQIgzY="; }; - 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 60cf4f402937e..d543c8e68fec9 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 3da8324840746..efddf99f2a478 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/gbforth/package.nix b/pkgs/by-name/gb/gbforth/package.nix index 0d0f426167259..b947b68e4b253 100644 --- a/pkgs/by-name/gb/gbforth/package.nix +++ b/pkgs/by-name/gb/gbforth/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation { runHook postInstallCheck ''; - meta = with lib; { + meta = { homepage = "https://gbforth.org/"; description = "Forth-based Game Boy development kit"; mainProgram = "gbforth"; @@ -49,8 +49,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 552de1b205500..3e0cb5a766ecc 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; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gc/gcfflasher/package.nix b/pkgs/by-name/gc/gcfflasher/package.nix index 28f2bf0bc8430..783cb408948a2 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 28eeee22e6cf0..3cf59a1c0a3ed 100644 --- a/pkgs/by-name/gc/gci/package.nix +++ b/pkgs/by-name/gc/gci/package.nix @@ -16,10 +16,10 @@ buildGoModule rec { vendorHash = "sha256-/8fggERlHySyimrGOHkDERbCPZJWqojycaifNPF6MjE="; - 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 848fc9784b510..65a3f2ad0eeea 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/gcstar/package.nix b/pkgs/by-name/gc/gcstar/package.nix index b9638506c33cf..df1288c7842f8 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/gdl/package.nix b/pkgs/by-name/gd/gdl/package.nix index 8107fec39bdb2..f5aa3f8259547 100644 --- a/pkgs/by-name/gd/gdl/package.nix +++ b/pkgs/by-name/gd/gdl/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Gnome docking library"; homepage = "https://developer.gnome.org/gdl/"; - maintainers = teams.gnome.members; - license = licenses.gpl2; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 87858f7a67522..9265b0d84b1b8 100644 --- a/pkgs/by-name/gd/gdlv/package.nix +++ b/pkgs/by-name/gd/gdlv/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { Metal ]; - 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/gdmap/package.nix b/pkgs/by-name/gd/gdmap/package.nix index 63b0d18e23e79..659ac51343cd3 100644 --- a/pkgs/by-name/gd/gdmap/package.nix +++ b/pkgs/by-name/gd/gdmap/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = "-lm"; - meta = with lib; { + meta = { homepage = "https://gdmap.sourceforge.net"; description = "Recursive rectangle map of disk usage"; - 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 79da48c59a9ca..79e0396f20686 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/gdtoolkit_3/package.nix b/pkgs/by-name/gd/gdtoolkit_3/package.nix index a25eddbcac1bb..9d2ed5017168f 100644 --- a/pkgs/by-name/gd/gdtoolkit_3/package.nix +++ b/pkgs/by-name/gd/gdtoolkit_3/package.nix @@ -72,11 +72,11 @@ 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; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ shiryel tmarkus ]; diff --git a/pkgs/by-name/gd/gdtoolkit_4/package.nix b/pkgs/by-name/gd/gdtoolkit_4/package.nix index 301f9013409ea..be946c22b30ec 100644 --- a/pkgs/by-name/gd/gdtoolkit_4/package.nix +++ b/pkgs/by-name/gd/gdtoolkit_4/package.nix @@ -71,10 +71,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 43f01a71b6ae2..304c070a206c6 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 4c7218cc6788f..6be11d8c6a59b 100644 --- a/pkgs/by-name/ge/geant4/package.nix +++ b/pkgs/by-name/ge/geant4/package.nix @@ -140,7 +140,7 @@ stdenv.mkDerivation rec { source $out/nix-support/setup-hook ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "Toolkit for the simulation of the passage of particles through matter"; longDescription = '' @@ -149,11 +149,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 = "http://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 810a9fb8c6595..f9f5998460d2c 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; [ colemickens lovesegfault ]; diff --git a/pkgs/by-name/ge/geek-life/package.nix b/pkgs/by-name/ge/geek-life/package.nix index b84c87fe18e0a..69c8803f9261f 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/gef/package.nix b/pkgs/by-name/ge/gef/package.nix index 8100e46bc53c1..5f6a9c139fa28 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 c08c1e34b5d50..ad00f23856d4f 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 5b5b70b763c68..9bb893b2df53c 100644 --- a/pkgs/by-name/ge/gem/package.nix +++ b/pkgs/by-name/ge/gem/package.nix @@ -42,14 +42,14 @@ stdenv.mkDerivation rec { 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 96326b5fdbb17..21bd507a4865c 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 d15dc047adc0f..fde5a6dcbcba8 100644 --- a/pkgs/by-name/ge/gemrb/package.nix +++ b/pkgs/by-name/ge/gemrb/package.nix @@ -73,7 +73,7 @@ stdenv.mkDerivation rec { install -Dm444 ../artwork/gemrb-logo.png $out/share/icons/gemrb.png ''; - 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 @@ -82,7 +82,7 @@ stdenv.mkDerivation rec { 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 ]; }; } diff --git a/pkgs/by-name/ge/gen-license/package.nix b/pkgs/by-name/ge/gen-license/package.nix index 86ded78e03091..8c29f299bba57 100644 --- a/pkgs/by-name/ge/gen-license/package.nix +++ b/pkgs/by-name/ge/gen-license/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.Security ]; - 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 170f154959bd0..170ba1500d371 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 fc77acc5650b8..0de728463b231 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 ccccceee85ff0..e785918de0b53 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 b1c2ae57305ce..b9ce3d2c11f7f 100644 --- a/pkgs/by-name/ge/gencfsm/package.nix +++ b/pkgs/by-name/ge/gencfsm/package.nix @@ -62,13 +62,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 a5926fa3cd0fc..cc755fc18f228 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 6725fa71abf35..484cd4814db94 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/genromfs/package.nix b/pkgs/by-name/ge/genromfs/package.nix index ea6b0abcca9bf..5fd6704cb98df 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/gentium-book-basic/package.nix b/pkgs/by-name/ge/gentium-book-basic/package.nix index c16887b53f317..efd11b2bf868a 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/genxword/package.nix b/pkgs/by-name/ge/genxword/package.nix index a71628c421463..04db07bd6ba5f 100644 --- a/pkgs/by-name/ge/genxword/package.nix +++ b/pkgs/by-name/ge/genxword/package.nix @@ -45,10 +45,10 @@ python3.pkgs.buildPythonApplication rec { # there are no tests doCheck = false; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Crossword generator"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/ge/geocode-glib/package.nix b/pkgs/by-name/ge/geocode-glib/package.nix index 9461c9fcb4124..ac5a318a2a120 100644 --- a/pkgs/by-name/ge/geocode-glib/package.nix +++ b/pkgs/by-name/ge/geocode-glib/package.nix @@ -71,10 +71,10 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Convenience library for the geocoding and reverse geocoding using Nominatim service"; - license = licenses.lgpl2Plus; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ge/geoipupdate/package.nix b/pkgs/by-name/ge/geoipupdate/package.nix index 45a37d824c218..07210af29bde9 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 ]; - maintainers = teams.helsinki-systems.members; + license = with lib.licenses; [ asl20 ]; + maintainers = lib.teams.helsinki-systems.members; mainProgram = "geoipupdate"; }; } diff --git a/pkgs/by-name/ge/geonkick/package.nix b/pkgs/by-name/ge/geonkick/package.nix index 5ee4ea15dc528..d48eef31aef4f 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/gerrit-queue/package.nix b/pkgs/by-name/ge/gerrit-queue/package.nix index f0558a1b55a53..310331574ba3d 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/get-google-fonts/package.nix b/pkgs/by-name/ge/get-google-fonts/package.nix index ec4bb400ec920..67ce78428a311 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 649acec9aa346..257705868eccf 100644 --- a/pkgs/by-name/ge/get_iplayer/package.nix +++ b/pkgs/by-name/ge/get_iplayer/package.nix @@ -56,13 +56,13 @@ perlPackages.buildPerlPackage rec { shortenPerlShebang $out/bin/.get_iplayer-wrapped ''; - 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 6443f016d8bd2..e89167b3b6097 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/getdp/package.nix b/pkgs/by-name/ge/getdp/package.nix index 99127704968e1..eed480255e079 100644 --- a/pkgs/by-name/ge/getdp/package.nix +++ b/pkgs/by-name/ge/getdp/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { ] ++ lib.optional mpiSupport mpi; cmakeFlags = lib.optional mpiSupport "-DENABLE_MPI=1"; - meta = with lib; { + meta = { description = "General Environment for the Treatment of Discrete Problems"; mainProgram = "getdp"; longDescription = '' @@ -45,8 +45,8 @@ stdenv.mkDerivation rec { symbolic mathematical expressions of these problems. ''; homepage = "http://getdp.info/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ge/geteltorito/package.nix b/pkgs/by-name/ge/geteltorito/package.nix index d0f2520d36048..a0fe8a036ea36 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 59dbc34708721..badaff8edad99 100644 --- a/pkgs/by-name/ge/geticons/package.nix +++ b/pkgs/by-name/ge/geticons/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Znwni7uMnG9cpZbztUMY1j73K+XrDLv5zyNEZDoxWg4="; 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 ]; - maintainers = with maintainers; [ Madouura ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ Madouura ]; }; } diff --git a/pkgs/by-name/ge/getoptions/package.nix b/pkgs/by-name/ge/getoptions/package.nix index 344658b1962aa..7accbd1e9fa35 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 e30d863f46fb7..1e416e793bf92 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/gexiv2/package.nix b/pkgs/by-name/ge/gexiv2/package.nix index 54b173d08aca5..cd1a97812be18 100644 --- a/pkgs/by-name/ge/gexiv2/package.nix +++ b/pkgs/by-name/ge/gexiv2/package.nix @@ -83,11 +83,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; - maintainers = teams.gnome.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.gnome.members; }; } diff --git a/pkgs/by-name/gf/gf/package.nix b/pkgs/by-name/gf/gf/package.nix index 7a3ce56772807..67f5afc8ff42c 100644 --- a/pkgs/by-name/gf/gf/package.nix +++ b/pkgs/by-name/gf/gf/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation { wrapProgram $out/bin/gf2 --prefix PATH : ${lib.makeBinPath [ gdb ]} ''; - 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 4b469c91cd56f..0ee55bb7a55c0 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; - maintainers = teams.sage.members; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.sage.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gf/gfal2/package.nix b/pkgs/by-name/gf/gfal2/package.nix index 273c0411f02df..21de97b4f6a09 100644 --- a/pkgs/by-name/gf/gfal2/package.nix +++ b/pkgs/by-name/gf/gfal2/package.nix @@ -131,7 +131,7 @@ stdenv.mkDerivation (finalAttrs: { gtest ]; - meta = with lib; { + meta = { description = "Multi-protocol data management library by CERN"; longDescription = '' GFAL (Grid File Access Library ) @@ -141,9 +141,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/gfbgraph/package.nix b/pkgs/by-name/gf/gfbgraph/package.nix index bc283264de3a0..4c59ab744901a 100644 --- a/pkgs/by-name/gf/gfbgraph/package.nix +++ b/pkgs/by-name/gf/gfbgraph/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/libgfbgraph"; description = "GLib/GObject wrapper for the Facebook Graph API"; - maintainers = teams.gnome.members; - license = licenses.lgpl21Plus; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gf/gflags/package.nix b/pkgs/by-name/gf/gflags/package.nix index b01b862804e3f..881253dff7216 100644 --- a/pkgs/by-name/gf/gflags/package.nix +++ b/pkgs/by-name/gf/gflags/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { doCheck = false; - meta = with lib; { + meta = { description = "C++ library that implements commandline flags processing"; mainProgram = "gflags_completions.sh"; longDescription = '' @@ -38,8 +38,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; - maintainers = [ maintainers.linquize ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.linquize ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gf/gfshare/package.nix b/pkgs/by-name/gf/gfshare/package.nix index 98f402081649c..c3f902ced0f3b 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 ccae47da4d485..2ec956868a099 100644 --- a/pkgs/by-name/gf/gfxstream/package.nix +++ b/pkgs/by-name/gf/gfxstream/package.nix @@ -81,11 +81,11 @@ stdenv.mkDerivation { 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/ggobi/package.nix b/pkgs/by-name/gg/ggobi/package.nix index 14c7748c3b5b5..a5b360223311e 100644 --- a/pkgs/by-name/gg/ggobi/package.nix +++ b/pkgs/by-name/gg/ggobi/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "Visualization program for exploring high-dimensional data"; homepage = "http://www.ggobi.org/"; - license = licenses.cpl10; - platforms = platforms.linux; - maintainers = [ maintainers.michelk ]; + license = lib.licenses.cpl10; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.michelk ]; mainProgram = "ggobi"; }; } diff --git a/pkgs/by-name/gg/ggz_base_libs/package.nix b/pkgs/by-name/gg/ggz_base_libs/package.nix index ce7dc4372a237..e7518b769cf00 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-f/package.nix b/pkgs/by-name/gh/gh-f/package.nix index c479a1f875d5e..a384f17bda702 100644 --- a/pkgs/by-name/gh/gh-f/package.nix +++ b/pkgs/by-name/gh/gh-f/package.nix @@ -46,12 +46,12 @@ stdenvNoCC.mkDerivation rec { wrapProgram "$out/bin/gh-f" --prefix PATH : "${binPath}" ''; - meta = with lib; { + meta = { homepage = "https://github.com/gennaro-tedesco/gh-f"; description = "GitHub CLI ultimate FZF extension"; - maintainers = with maintainers; [ loicreynier ]; - license = licenses.unlicense; + maintainers = with lib.maintainers; [ loicreynier ]; + license = lib.licenses.unlicense; mainProgram = "gh-f"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gh/gh-notify/package.nix b/pkgs/by-name/gh/gh-notify/package.nix index e53dcc0952eb4..a5cbfd3cbedee 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-s/package.nix b/pkgs/by-name/gh/gh-s/package.nix index 93ca5454b29be..16cd49f3c9ffd 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 2481b2688281c..aa3642f0244a7 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 87b8648bc5a7f..baa9a3f8d024b 100644 --- a/pkgs/by-name/gh/gh2md/package.nix +++ b/pkgs/by-name/gh/gh2md/package.nix @@ -24,11 +24,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 4bdacd3044eb5..39eb9580f9757 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 35744412edddc..ddf2a1a87662d 100644 --- a/pkgs/by-name/gh/ghciwatch/package.nix +++ b/pkgs/by-name/gh/ghciwatch/package.nix @@ -29,11 +29,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 be12f9e18ed61..96f70f00a48c5 100644 --- a/pkgs/by-name/gh/ghdorker/package.nix +++ b/pkgs/by-name/gh/ghdorker/package.nix @@ -28,11 +28,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/ghfetch/package.nix b/pkgs/by-name/gh/ghfetch/package.nix index 86784b083ea6a..6d3c7b834dcc5 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 ad35083adb0db..38fdf6fc330f7 100644 --- a/pkgs/by-name/gh/ghorg/package.nix +++ b/pkgs/by-name/gh/ghorg/package.nix @@ -35,7 +35,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 @@ -47,8 +47,8 @@ buildGoModule rec { - Performing Audits ''; homepage = "https://github.com/gabrie30/ghorg"; - license = licenses.asl20; - maintainers = with maintainers; [ vidbina ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ vidbina ]; mainProgram = "ghorg"; }; } diff --git a/pkgs/by-name/gh/ghost/package.nix b/pkgs/by-name/gh/ghost/package.nix index 9750eb5f94a19..d60de48be2a4a 100644 --- a/pkgs/by-name/gh/ghost/package.nix +++ b/pkgs/by-name/gh/ghost/package.nix @@ -26,11 +26,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 58cde575b477c..ce1f9992c57c6 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 389df793a4912..7029cca3046f2 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 a5d37a552d22c..ea58abe27098f 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/gi-crystal/package.nix b/pkgs/by-name/gi/gi-crystal/package.nix index a783ece5d4ade..8cb95cd5c5dbb 100644 --- a/pkgs/by-name/gi/gi-crystal/package.nix +++ b/pkgs/by-name/gi/gi-crystal/package.nix @@ -42,10 +42,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 0f350cdbbd623..0808f03ed5735 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 - maintainers = teams.gnome.members; + license = lib.licenses.asl20; # OR GPL-3.0-or-later + maintainers = lib.teams.gnome.members; }; } diff --git a/pkgs/by-name/gi/giara/package.nix b/pkgs/by-name/gi/giara/package.nix index 6c1aab02df9b9..3d8e86a5fa5fb 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 5bdb18fa733d4..30811fbf8b21b 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 5b720ee423999..9076885b2e13e 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 896d1a71a5432..2f8dee5bdf3a3 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; - maintainers = with maintainers; [ snowflake ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ snowflake ]; 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 ecfe3f32819ca..9498b1039150b 100644 --- a/pkgs/by-name/gi/gifticlib/package.nix +++ b/pkgs/by-name/gi/gifticlib/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { runHook postCheck ''; - 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/gigedit/package.nix b/pkgs/by-name/gi/gigedit/package.nix index 47b756b6d72bf..1b6c9ec401a42 100644 --- a/pkgs/by-name/gi/gigedit/package.nix +++ b/pkgs/by-name/gi/gigedit/package.nix @@ -51,12 +51,12 @@ 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; mainProgram = "gigedit"; }; } diff --git a/pkgs/by-name/gi/gimme-aws-creds/package.nix b/pkgs/by-name/gi/gimme-aws-creds/package.nix index 986f8d693fc37..bd7528218a793 100644 --- a/pkgs/by-name/gi/gimme-aws-creds/package.nix +++ b/pkgs/by-name/gi/gimme-aws-creds/package.nix @@ -74,12 +74,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 5d070b9fb9ab0..2de469a773c7d 100644 --- a/pkgs/by-name/gi/gimoji/package.nix +++ b/pkgs/by-name/gi/gimoji/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.AppKit ]; - 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/gimx/package.nix b/pkgs/by-name/gi/gimx/package.nix index b2e1372fc35f0..9b64f2b7d4b63 100644 --- a/pkgs/by-name/gi/gimx/package.nix +++ b/pkgs/by-name/gi/gimx/package.nix @@ -70,10 +70,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/matlo/GIMX"; description = "Game Input Multiplexer"; - license = licenses.gpl3Only; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gi/ginac/package.nix b/pkgs/by-name/gi/ginac/package.nix index bedd9a7cbaf2c..0007f3a1c0a7e 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 is Not a CAS"; 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/gio-sharp/package.nix b/pkgs/by-name/gi/gio-sharp/package.nix index 67047b2e4fedf..9cf8cf95013d0 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 88bc15b67a928..6f69d3d0e11d1 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; - maintainers = [ maintainers.lom ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.lom ]; + 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 d0dde89104160..74c0553d5a09c 100644 --- a/pkgs/by-name/gi/gir-rs/package.nix +++ b/pkgs/by-name/gi/gir-rs/package.nix @@ -31,11 +31,11 @@ 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 ]; - maintainers = with maintainers; [ ekleog ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ ekleog ]; mainProgram = "gir"; }; } diff --git a/pkgs/by-name/gi/gist/package.nix b/pkgs/by-name/gi/gist/package.nix index 153582afc71e8..ba66e5c95e419 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-agecrypt/package.nix b/pkgs/by-name/gi/git-agecrypt/package.nix index e2a2c502031e0..c63c64e72ff82 100644 --- a/pkgs/by-name/gi/git-agecrypt/package.nix +++ b/pkgs/by-name/gi/git-agecrypt/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage { zlib ] ++ lib.optional stdenv.hostPlatform.isDarwin darwin.apple_sdk.frameworks.Security; - 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 c74d926bde183..b2b421827b088 100644 --- a/pkgs/by-name/gi/git-aggregator/package.nix +++ b/pkgs/by-name/gi/git-aggregator/package.nix @@ -40,11 +40,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-rclone/package.nix b/pkgs/by-name/gi/git-annex-remote-rclone/package.nix index 903c0286020b5..fb9c6fcebb7de 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 f1b682f24574a..3ffb8bed154e7 100644 --- a/pkgs/by-name/gi/git-appraise/package.nix +++ b/pkgs/by-name/gi/git-appraise/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-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 7e4c29834edbc..f5eabed51f536 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 rec { 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 31dd185e2ca74..b7583cf65e884 100644 --- a/pkgs/by-name/gi/git-bars/package.nix +++ b/pkgs/by-name/gi/git-bars/package.nix @@ -21,11 +21,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-bug-migration/package.nix b/pkgs/by-name/gi/git-bug-migration/package.nix index df18c4fe85363..d821c77efe177 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; [ DeeUnderscore ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ DeeUnderscore ]; mainProgram = "git-bug-migration"; }; } diff --git a/pkgs/by-name/gi/git-bug/package.nix b/pkgs/by-name/gi/git-bug/package.nix index 5423593e92deb..4cb98c0e165c9 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 8cf12ec7ca2be..9ab8bc51cbc2d 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 4916ef8eacbf8..fc17e4111255e 100644 --- a/pkgs/by-name/gi/git-chain/package.nix +++ b/pkgs/by-name/gi/git-chain/package.nix @@ -38,11 +38,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 26b05361c7fc8..6cb21cb254252 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-codeowners/package.nix b/pkgs/by-name/gi/git-codeowners/package.nix index b206a4312c800..0c5dbe45a72c8 100644 --- a/pkgs/by-name/gi/git-codeowners/package.nix +++ b/pkgs/by-name/gi/git-codeowners/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-TayvqcVNCFHF5UpR1pPVRe076Pa8LS4duhnZLzYxkQM="; - meta = with lib; { + meta = { homepage = "https://github.com/softprops/git-codeowners"; description = "Git extension to work with CODEOWNERS files"; - license = licenses.mit; - maintainers = with maintainers; [ zimbatm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm ]; mainProgram = "git-codeowners"; }; } diff --git a/pkgs/by-name/gi/git-codereview/package.nix b/pkgs/by-name/gi/git-codereview/package.nix index fca3b46ffa63d..a460b17d01ab3 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-cola/package.nix b/pkgs/by-name/gi/git-cola/package.nix index 963556194c1dc..cff5d6bf740bb 100644 --- a/pkgs/by-name/gi/git-cola/package.nix +++ b/pkgs/by-name/gi/git-cola/package.nix @@ -62,11 +62,11 @@ python3Packages.buildPythonApplication rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { homepage = "https://github.com/git-cola/git-cola"; description = "Sleek and powerful Git GUI"; - license = licenses.gpl2; - maintainers = [ maintainers.bobvanderlinden ]; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.bobvanderlinden ]; mainProgram = "git-cola"; }; } diff --git a/pkgs/by-name/gi/git-crecord/package.nix b/pkgs/by-name/gi/git-crecord/package.nix index 359d8b6675c19..1f61da60e6d70 100644 --- a/pkgs/by-name/gi/git-crecord/package.nix +++ b/pkgs/by-name/gi/git-crecord/package.nix @@ -20,11 +20,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-crypt/package.nix b/pkgs/by-name/gi/git-crypt/package.nix index 367338d601947..a48e4484ebea1 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 945cdb11f85c7..0499997a372ef 100644 --- a/pkgs/by-name/gi/git-delete-merged-branches/package.nix +++ b/pkgs/by-name/gi/git-delete-merged-branches/package.nix @@ -23,10 +23,10 @@ python3Packages.buildPythonApplication rec { nativeCheckInputs = [ git ] ++ (with python3Packages; [ parameterized ]); - meta = with lib; { + meta = { description = "Command-line tool to delete merged Git branches"; homepage = "https://pypi.org/project/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-extras/package.nix b/pkgs/by-name/gi/git-extras/package.nix index 630542f0e4e00..690cb86bb400b 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-fire/package.nix b/pkgs/by-name/gi/git-fire/package.nix index 5916ed953d7eb..2966f9ca8d2d9 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 85e56bb310ba9..51ea6ff55fc1b 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 ccdfbf5e67f2e..33262635b0afe 100644 --- a/pkgs/by-name/gi/git-get/package.nix +++ b/pkgs/by-name/gi/git-get/package.nix @@ -48,10 +48,10 @@ buildGoModule rec { mv "$GOPATH/bin/list" "$GOPATH/bin/git-list" ''; - 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 ]; }; } diff --git a/pkgs/by-name/gi/git-graph/package.nix b/pkgs/by-name/gi/git-graph/package.nix index a20fdcc54166d..109563507e2e0 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-y5tVjWj/LczblkL793878vzDG0Gtj3kIo2jZlRA6GJE="; - 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 67431b03b7474..6c753b6540412 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 33f3ea47d452c..70c711a2f829a 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-latexdiff/package.nix b/pkgs/by-name/gi/git-latexdiff/package.nix index c7de4b4143808..96dcb24711082 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 3fae553d19e6b..e82c870c1f18d 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 61dbfbd172d4e..64eada6685193 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 e058e8d5ced30..cb90c7a6c28d4 100644 --- a/pkgs/by-name/gi/git-privacy/package.nix +++ b/pkgs/by-name/gi/git-privacy/package.nix @@ -39,11 +39,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-pw/package.nix b/pkgs/by-name/gi/git-pw/package.nix index a7f3f866e0671..694f1d414b162 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 9088148dd9eaa..e05f94dcfb958 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-radar/package.nix b/pkgs/by-name/gi/git-radar/package.nix index 6b53ea4e067bd..ddda63be55acd 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 98dd80e3aa092..0572b2e09d42d 100644 --- a/pkgs/by-name/gi/git-relevant-history/package.nix +++ b/pkgs/by-name/gi/git-relevant-history/package.nix @@ -21,12 +21,12 @@ python3.pkgs.buildPythonApplication rec { python3.pkgs.docopt ]; - 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 fc1b830ada719..c7401bf7c92ea 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-remote-hg/package.nix b/pkgs/by-name/gi/git-remote-hg/package.nix index 4a7435d7c2947..9fbc89c829a03 100644 --- a/pkgs/by-name/gi/git-remote-hg/package.nix +++ b/pkgs/by-name/gi/git-remote-hg/package.nix @@ -35,11 +35,11 @@ python3Packages.buildPythonApplication rec { make install-doc prefix=$out ''; - meta = with lib; { + meta = { homepage = "https://github.com/mnauw/git-remote-hg"; description = "Semi-official Mercurial bridge from Git project"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gi/git-reparent/package.nix b/pkgs/by-name/gi/git-reparent/package.nix index dfe77ba1c09cd..1d1d95ea9a240 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 551363bbf231e..5cbb690522d12 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 314bdecb74d7b..811d6788c7d78 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 86277614bc4c3..d4959ac176664 100644 --- a/pkgs/by-name/gi/git-series/package.nix +++ b/pkgs/by-name/gi/git-series/package.nix @@ -46,7 +46,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 @@ -54,8 +54,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 df6e00c22da59..6924c0e20d5c7 100644 --- a/pkgs/by-name/gi/git-sizer/package.nix +++ b/pkgs/by-name/gi/git-sizer/package.nix @@ -31,11 +31,11 @@ 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; - maintainers = with maintainers; [ matthewbauer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewbauer ]; mainProgram = "git-sizer"; }; } diff --git a/pkgs/by-name/gi/git-stree/package.nix b/pkgs/by-name/gi/git-stree/package.nix index 3c8d83d6e1c17..c3dda03e105b0 100644 --- a/pkgs/by-name/gi/git-stree/package.nix +++ b/pkgs/by-name/gi/git-stree/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation { install -m 0644 git-stree-completion.bash $out/share/bash-completion/completions/ ''; - meta = with lib; { + meta = { description = "Better Git subtree helper command"; homepage = "http://deliciousinsights.github.io/git-stree"; - license = licenses.mit; - maintainers = [ maintainers.benley ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.benley ]; + platforms = lib.platforms.unix; mainProgram = "git-stree"; }; } diff --git a/pkgs/by-name/gi/git-subrepo/package.nix b/pkgs/by-name/gi/git-subrepo/package.nix index 1d3a84f124366..ad5510fbd2fdd 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 9a454cad5af61..598293ca84ae5 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 081c8dc5e71dc..7bb275c214161 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 388be610c0844..09d9dc40866ad 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-town/package.nix b/pkgs/by-name/gi/git-town/package.nix index 623f81ed61d46..55c96e157dd47 100644 --- a/pkgs/by-name/gi/git-town/package.nix +++ b/pkgs/by-name/gi/git-town/package.nix @@ -76,11 +76,11 @@ buildGoModule rec { inherit version; }; - meta = with lib; { + meta = { description = "Generic, high-level git support for git-flow workflows"; homepage = "https://www.git-town.com/"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ allonsy blaggacao gabyx diff --git a/pkgs/by-name/gi/git-vanity-hash/package.nix b/pkgs/by-name/gi/git-vanity-hash/package.nix index 55332c6c7287b..4decdcaba4ce4 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/git2-cpp/package.nix b/pkgs/by-name/gi/git2-cpp/package.nix index 18d50cc242a81..9e2bb1eb600c0 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/gitaly/package.nix b/pkgs/by-name/gi/gitaly/package.nix index 86e6f381558f8..7a495bcb3b6d4 100644 --- a/pkgs/by-name/gi/gitaly/package.nix +++ b/pkgs/by-name/gi/gitaly/package.nix @@ -73,12 +73,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" ]; - maintainers = teams.gitlab.members; - license = licenses.mit; + platforms = lib.platforms.linux ++ [ "x86_64-darwin" ]; + maintainers = lib.teams.gitlab.members; + license = lib.licenses.mit; }; } // commonOpts diff --git a/pkgs/by-name/gi/gitbatch/package.nix b/pkgs/by-name/gi/gitbatch/package.nix index f00fc4d95be15..0eded7a03aff0 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 49166a753e884..461f872fff0ea 100644 --- a/pkgs/by-name/gi/gitea/package.nix +++ b/pkgs/by-name/gi/gitea/package.nix @@ -107,11 +107,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 70e6a159c29c8..31009cbf8cf23 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 262c17e334f6e..0c120e80125e5 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-commenter/package.nix b/pkgs/by-name/gi/github-commenter/package.nix index 1bf88c51cebdd..40e9e9999afca 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/github-copilot-cli/package.nix b/pkgs/by-name/gi/github-copilot-cli/package.nix index d93eb31f86098..ebb27b92e08bd 100644 --- a/pkgs/by-name/gi/github-copilot-cli/package.nix +++ b/pkgs/by-name/gi/github-copilot-cli/package.nix @@ -21,12 +21,12 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = with lib; { + meta = { description = "CLI experience for letting GitHub Copilot help you on the command line"; homepage = "https://githubnext.com/projects/copilot-cli/"; - license = licenses.unfree; # upstream has no license - maintainers = [ maintainers.malo ]; - platforms = platforms.all; + license = lib.licenses.unfree; # upstream has no license + maintainers = [ lib.maintainers.malo ]; + platforms = lib.platforms.all; mainProgram = "github-copilot-cli"; }; } diff --git a/pkgs/by-name/gi/gitjacker/package.nix b/pkgs/by-name/gi/gitjacker/package.nix index a438550c4a5ce..b9ed5bdeefcab 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 abf3cb057ebaf..5f5bc3ea6abaf 100644 --- a/pkgs/by-name/gi/gitlab-ci-local/package.nix +++ b/pkgs/by-name/gi/gitlab-ci-local/package.nix @@ -33,7 +33,7 @@ buildNpmPackage rec { }; }; - meta = with lib; { + meta = { description = "Run gitlab pipelines locally as shell executor or docker executor"; mainProgram = "gitlab-ci-local"; longDescription = '' @@ -42,8 +42,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 11eaa3d062391..d2d89cc219cf2 100644 --- a/pkgs/by-name/gi/gitlab-ci-ls/package.nix +++ b/pkgs/by-name/gi/gitlab-ci-ls/package.nix @@ -27,12 +27,12 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.SystemConfiguration ]; - 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-shell/package.nix b/pkgs/by-name/gi/gitlab-shell/package.nix index 54492ae3306c8..f05ab5ef4a392 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; - maintainers = teams.gitlab.members; - license = licenses.mit; + platforms = lib.platforms.linux; + maintainers = lib.teams.gitlab.members; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/gi/gitless/package.nix b/pkgs/by-name/gi/gitless/package.nix index 3a571c13da3f1..2dee75b790ca3 100644 --- a/pkgs/by-name/gi/gitless/package.nix +++ b/pkgs/by-name/gi/gitless/package.nix @@ -29,12 +29,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/gitrs/package.nix b/pkgs/by-name/gi/gitrs/package.nix index bec55dbbca680..a89c5b5e801a2 100644 --- a/pkgs/by-name/gi/gitrs/package.nix +++ b/pkgs/by-name/gi/gitrs/package.nix @@ -34,11 +34,11 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.SystemConfiguration ]; - 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 499338076df8f..b82ae925a4945 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/gitty/package.nix b/pkgs/by-name/gi/gitty/package.nix index f077396684d6d..8c022e05606df 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/gj/gjay/package.nix b/pkgs/by-name/gj/gjay/package.nix index b58e8ba492e8a..996a35010b193 100644 --- a/pkgs/by-name/gj/gjay/package.nix +++ b/pkgs/by-name/gj/gjay/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "Generates playlists such that each song sounds good following the previous song"; homepage = "https://gjay.sourceforge.net/"; - 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 = "gjay"; }; } diff --git a/pkgs/by-name/gj/gjo/package.nix b/pkgs/by-name/gj/gjo/package.nix index cdb84410bf188..5e88b0a2b8728 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 55342995339dd..dcecfb7738eb4 100644 --- a/pkgs/by-name/gj/gjs/package.nix +++ b/pkgs/by-name/gj/gjs/package.nix @@ -160,12 +160,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"; - maintainers = teams.gnome.members; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/gl/gl117/package.nix b/pkgs/by-name/gl/gl117/package.nix index ca1990d21b2e5..5b490db6525d9 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 6838bccacc0a9..512a6091a980c 100644 --- a/pkgs/by-name/gl/gl2ps/package.nix +++ b/pkgs/by-name/gl/gl2ps/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { darwin.apple_sdk.frameworks.OpenGL ]; - 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 eb4a0be8d4f3d..7d17e542ec8a8 100644 --- a/pkgs/by-name/gl/gl3w/package.nix +++ b/pkgs/by-name/gl/gl3w/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { 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/package.nix b/pkgs/by-name/gl/glabels/package.nix index 04453acfb0285..c8f4ea07cf40e 100644 --- a/pkgs/by-name/gl/glabels/package.nix +++ b/pkgs/by-name/gl/glabels/package.nix @@ -74,14 +74,14 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Create labels and business cards"; homepage = "https://github.com/jimevins/glabels"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl3Plus ]; - platforms = platforms.unix; - maintainers = [ maintainers.nico202 ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.nico202 ]; }; } diff --git a/pkgs/by-name/gl/glade/package.nix b/pkgs/by-name/gl/glade/package.nix index e0332d691ca28..5ea6b259267f8 100644 --- a/pkgs/by-name/gl/glade/package.nix +++ b/pkgs/by-name/gl/glade/package.nix @@ -79,11 +79,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/glade"; description = "User interface designer for GTK applications"; - maintainers = teams.gnome.members; - license = licenses.lgpl2; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 06827fb8a5b28..16d8cf6f5d3a3 100644 --- a/pkgs/by-name/gl/gladtex/package.nix +++ b/pkgs/by-name/gl/gladtex/package.nix @@ -15,12 +15,12 @@ python3Packages.buildPythonPackage rec { sha256 = "sha256-B5sNEmLO4iIJRDgcPhr9LFKV77dPJws8ITNz4R+FE08="; }; - 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; [ alyaeanyx ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ alyaeanyx ]; }; } diff --git a/pkgs/by-name/gl/glasstty-ttf/package.nix b/pkgs/by-name/gl/glasstty-ttf/package.nix index a0d6ddeddb206..be84069f6939d 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 8450801806565..6f4f746b87fc2 100644 --- a/pkgs/by-name/gl/glauth/package.nix +++ b/pkgs/by-name/gl/glauth/package.nix @@ -41,11 +41,11 @@ buildGoModule rec { # Tests fail in the sandbox. doCheck = false; - meta = with lib; { + meta = { description = "Lightweight LDAP server for development, home use, or CI"; homepage = "https://github.com/glauth/glauth"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bjornfor christoph-heiss ]; diff --git a/pkgs/by-name/gl/glava/package.nix b/pkgs/by-name/gl/glava/package.nix index 742fbe2a72d04..87358ba5b6ef9 100644 --- a/pkgs/by-name/gl/glava/package.nix +++ b/pkgs/by-name/gl/glava/package.nix @@ -90,15 +90,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/glaze/package.nix b/pkgs/by-name/gl/glaze/package.nix index d441faa36428d..a11a03898cbae 100644 --- a/pkgs/by-name/gl/glaze/package.nix +++ b/pkgs/by-name/gl/glaze/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation (final: { nativeBuildInputs = [ cmake ]; cmakeFlags = [ (lib.cmakeBool "glaze_ENABLE_AVX2" enableAvx2) ]; - meta = with lib; { + meta = { description = "Extremely fast, in memory, JSON and interface library for modern C++"; - platforms = platforms.all; - maintainers = with maintainers; [ moni ]; - license = licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ moni ]; + license = lib.licenses.mit; }; }) diff --git a/pkgs/by-name/gl/glbinding/package.nix b/pkgs/by-name/gl/glbinding/package.nix index 076a5f06683d5..c8d3890c5e174 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 184d793042bfa..e941df36396b7 100644 --- a/pkgs/by-name/gl/glee/package.nix +++ b/pkgs/by-name/gl/glee/package.nix @@ -35,11 +35,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 9bdaac3c3b4c8..a6a8c0e36f4b5 100644 --- a/pkgs/by-name/gl/glib-networking/package.nix +++ b/pkgs/by-name/gl/glib-networking/package.nix @@ -93,11 +93,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Network-related giomodules for glib"; homepage = "https://gitlab.gnome.org/GNOME/glib-networking"; - license = licenses.lgpl21Plus; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gl/glib-testing/package.nix b/pkgs/by-name/gl/glib-testing/package.nix index 63fa21fe38b5d..d96ed43ed399c 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/glider/package.nix b/pkgs/by-name/gl/glider/package.nix index 86d33e6030219..648ad880799f0 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 6b983cd21ef31..648b4c4183ed5 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/package.nix b/pkgs/by-name/gl/glm/package.nix index 675d215cb8633..f325b258f8e4c 100644 --- a/pkgs/by-name/gl/glm/package.nix +++ b/pkgs/by-name/gl/glm/package.nix @@ -52,7 +52,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 @@ -60,8 +60,8 @@ stdenv.mkDerivation rec { specification and released under the MIT license. ''; homepage = "https://github.com/g-truc/glm"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ smancill ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ smancill ]; }; } diff --git a/pkgs/by-name/gl/glmark2/package.nix b/pkgs/by-name/gl/glmark2/package.nix index 1ba60f3588c45..5cc8345a993e6 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/globalarrays/package.nix b/pkgs/by-name/gl/globalarrays/package.nix index 8ebc40a02561a..a41a02be81c7e 100644 --- a/pkgs/by-name/gl/globalarrays/package.nix +++ b/pkgs/by-name/gl/globalarrays/package.nix @@ -41,11 +41,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/globe-cli/package.nix b/pkgs/by-name/gl/globe-cli/package.nix index db414184d7161..ddc4de263ea46 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-qoCOYk7hyjMx07l48IkxE6zsG58NkF72E3OvoZHz5d0="; - 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 229bafdc23a2e..124cd98a856d9 100644 --- a/pkgs/by-name/gl/globulation2/package.nix +++ b/pkgs/by-name/gl/globulation2/package.nix @@ -91,12 +91,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; }; 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 ed30b55a60f4a..232fb1770a4ce 100644 --- a/pkgs/by-name/gl/glog/package.nix +++ b/pkgs/by-name/gl/glog/package.nix @@ -80,12 +80,12 @@ stdenv.mkDerivation rec { 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 71fe57dbeafea..7a47b6848539f 100644 --- a/pkgs/by-name/gl/gloox/package.nix +++ b/pkgs/by-name/gl/gloox/package.nix @@ -32,12 +32,12 @@ 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; }; } diff --git a/pkgs/by-name/gl/glowing-bear/package.nix b/pkgs/by-name/gl/glowing-bear/package.nix index f1a352c8e7737..2f2f4b1e98d67 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 c1ccb5759d74e..2c9266e72c486 100644 --- a/pkgs/by-name/gl/glpaper/package.nix +++ b/pkgs/by-name/gl/glpaper/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { 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/glpng/package.nix b/pkgs/by-name/gl/glpng/package.nix index 4a98163a2a4c7..c9735ceaf59bb 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gl/glslang/package.nix b/pkgs/by-name/gl/glslang/package.nix index bc57fca1a9ecc..3c16a2e418a2f 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/gluesql/package.nix b/pkgs/by-name/gl/gluesql/package.nix index 66f7297d5b87f..44d5a1b601ba1 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 = "GlueSQL is quite sticky. It attaches to anywhere"; 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 a703550a7dedf..4002e3479fbe7 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 7c367cd2ad09d..cf3d322cba758 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 187127da65e46..6a222bd5c4a4d 100644 --- a/pkgs/by-name/gl/glycin-loaders/package.nix +++ b/pkgs/by-name/gl/glycin-loaders/package.nix @@ -75,14 +75,14 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Glycin loaders for several formats"; homepage = "https://gitlab.gnome.org/sophie-h/glycin"; - maintainers = teams.gnome.members; - license = with licenses; [ + maintainers = lib.teams.gnome.members; + 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 9303d4c9e7d53..cd144d4d3d855 100644 --- a/pkgs/by-name/gl/glyr/package.nix +++ b/pkgs/by-name/gl/glyr/package.nix @@ -30,12 +30,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 b701b17923a03..aac61b60bb2aa 100644 --- a/pkgs/by-name/gm/gmailctl/package.nix +++ b/pkgs/by-name/gm/gmailctl/package.nix @@ -31,11 +31,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/gmid/package.nix b/pkgs/by-name/gm/gmid/package.nix index f630bfc954acb..f4d9a3bcc09f3 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 051c413fced8e..b6d0745962a33 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-UgbnMmQ/aTQQkCiy8XNmDywu3LDuJpIo1pSsym4iyIo="; }; - 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/gmni/package.nix b/pkgs/by-name/gm/gmni/package.nix index 47d3487767ae7..dbffa612b343a 100644 --- a/pkgs/by-name/gm/gmni/package.nix +++ b/pkgs/by-name/gm/gmni/package.nix @@ -28,14 +28,14 @@ stdenv.mkDerivation rec { # passed one more byte than available. hardeningDisable = [ "fortify3" ]; - meta = with lib; { + meta = { description = "Gemini client"; homepage = "https://git.sr.ht/~sircmpwn/gmni"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ bsima jb55 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gm/gmnisrv/package.nix b/pkgs/by-name/gm/gmnisrv/package.nix index 52e3feb60491d..53756fc329757 100644 --- a/pkgs/by-name/gm/gmnisrv/package.nix +++ b/pkgs/by-name/gm/gmnisrv/package.nix @@ -38,15 +38,15 @@ stdenv.mkDerivation rec { mailcap ]; - meta = with lib; { + meta = { description = "Simple Gemini protocol server"; mainProgram = "gmnisrv"; homepage = "https://git.sr.ht/~sircmpwn/gmnisrv"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ bsima jb55 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gm/gmnitohtml/package.nix b/pkgs/by-name/gm/gmnitohtml/package.nix index a57c108bd9f82..7eaf904d12ea7 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 a91b8784400bf..c722005a4f4ad 100644 --- a/pkgs/by-name/gm/gmqcc/package.nix +++ b/pkgs/by-name/gm/gmqcc/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://graphitemaster.github.io/gmqcc/"; description = "Modern QuakeC compiler"; mainProgram = "gmqcc"; @@ -39,6 +39,6 @@ stdenv.mkDerivation rec { ''; license = lib.licenses.mit; maintainers = with lib.maintainers; [ necrophcodr ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gn/generic.nix b/pkgs/by-name/gn/gn/generic.nix index 218a46d3fb98f..83459cb6f10b5 100644 --- a/pkgs/by-name/gn/gn/generic.nix +++ b/pkgs/by-name/gn/gn/generic.nix @@ -82,13 +82,13 @@ stdenv.mkDerivation { setupHook = ./setup-hook.sh; - meta = with lib; { + meta = { description = "Meta-build system that generates build files for Ninja"; mainProgram = "gn"; homepage = "https://gn.googlesource.com/gn"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ stesie matthewbauer primeos diff --git a/pkgs/by-name/gn/gnaural/package.nix b/pkgs/by-name/gn/gnaural/package.nix index 1463ff0b9576e..007e3baaf3e4a 100644 --- a/pkgs/by-name/gn/gnaural/package.nix +++ b/pkgs/by-name/gn/gnaural/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { rm -rf $out/share/gnome ''; - meta = with lib; { + meta = { description = "Programmable auditory binaural-beat synthesizer"; homepage = "https://gnaural.sourceforge.net/"; - maintainers = with maintainers; [ ehmry ]; - license = with licenses; [ gpl2Only ]; + maintainers = with lib.maintainers; [ ehmry ]; + 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 ab68ef5f2ef36..24ec6440aa1e7 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/gnome-autoar/package.nix b/pkgs/by-name/gn/gnome-autoar/package.nix index aefc9e0c1fe5b..fc36a4851dd0a 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; - maintainers = teams.gnome.members; - license = licenses.lgpl21Plus; + meta = { + platforms = lib.platforms.linux; + maintainers = lib.teams.gnome.members; + license = lib.licenses.lgpl21Plus; description = "Library to integrate compressed files management with GNOME"; }; } 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 815252650fc73..104b8a98177c4 100644 --- a/pkgs/by-name/gn/gnome-bluetooth_1_0/package.nix +++ b/pkgs/by-name/gn/gnome-bluetooth_1_0/package.nix @@ -94,12 +94,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 70c1f03eb1417..ff9677b663054 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; - maintainers = teams.gnome.members; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.gnome.members; }; } diff --git a/pkgs/by-name/gn/gnome-browser-connector/package.nix b/pkgs/by-name/gn/gnome-browser-connector/package.nix index 05fbfd7978499..21a6fbe8a6716 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; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-calculator/package.nix b/pkgs/by-name/gn/gnome-calculator/package.nix index e9f6d8c126c1d..5d864374aa9b6 100644 --- a/pkgs/by-name/gn/gnome-calculator/package.nix +++ b/pkgs/by-name/gn/gnome-calculator/package.nix @@ -71,11 +71,11 @@ 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"; - maintainers = teams.gnome.members; - license = licenses.gpl3Plus; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 f49b00e5e3070..ce85a102ff81f 100644 --- a/pkgs/by-name/gn/gnome-calendar/package.nix +++ b/pkgs/by-name/gn/gnome-calendar/package.nix @@ -56,12 +56,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"; - maintainers = teams.gnome.members; - license = licenses.gpl3Plus; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 f827feae8bd67..597a60584cd00 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"; - maintainers = teams.gnome.members; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + 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 25f54ad45c96f..4aa288774cd74 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"; - maintainers = teams.gnome.members; - license = licenses.gpl3Plus; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 4c9a0eac04add..a7d017cdff342 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; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members; + 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 9a5393a27a8a6..b79fe6052bcb0 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; { - maintainers = teams.gnome.members; + meta = { + maintainers = lib.teams.gnome.members; }; } diff --git a/pkgs/by-name/gn/gnome-console/package.nix b/pkgs/by-name/gn/gnome-console/package.nix index fbe20611fdf2c..7bd43c2dfdbbb 100644 --- a/pkgs/by-name/gn/gnome-console/package.nix +++ b/pkgs/by-name/gn/gnome-console/package.nix @@ -59,12 +59,12 @@ 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 = teams.gnome.members ++ (with maintainers; [ zhaofengli ]); - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.gnome.members ++ (with lib.maintainers; [ zhaofengli ]); + 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 5d319e2c8bc96..7cc58a4364c6e 100644 --- a/pkgs/by-name/gn/gnome-contacts/package.nix +++ b/pkgs/by-name/gn/gnome-contacts/package.nix @@ -72,12 +72,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"; - maintainers = teams.gnome.members; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + 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 090250d0cd232..84ed779555d24 100644 --- a/pkgs/by-name/gn/gnome-control-center/package.nix +++ b/pkgs/by-name/gn/gnome-control-center/package.nix @@ -207,11 +207,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Utilities to configure the GNOME desktop"; mainProgram = "gnome-control-center"; - license = licenses.gpl2Plus; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members; + 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 4f707c18c7f55..f42d354ec71ff 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 2d533759f60ee..0e9352e87bf34 100644 --- a/pkgs/by-name/gn/gnome-desktop/package.nix +++ b/pkgs/by-name/gn/gnome-desktop/package.nix @@ -105,14 +105,14 @@ stdenv.mkDerivation rec { }; }; - 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; - maintainers = teams.gnome.members; + platforms = lib.platforms.unix; + maintainers = lib.teams.gnome.members; }; } diff --git a/pkgs/by-name/gn/gnome-disk-utility/package.nix b/pkgs/by-name/gn/gnome-disk-utility/package.nix index 70cc891e75a2e..01d2ec78c4066 100644 --- a/pkgs/by-name/gn/gnome-disk-utility/package.nix +++ b/pkgs/by-name/gn/gnome-disk-utility/package.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://apps.gnome.org/DiskUtility/"; description = "Udisks graphical front-end"; - maintainers = teams.gnome.members; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + 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 8b30095d119e6..66f944784b559 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 f8ed99ececdad..38df10d496e9d 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; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-extension-manager/package.nix b/pkgs/by-name/gn/gnome-extension-manager/package.nix index 46ba29a2c73d6..53bbabc079c02 100644 --- a/pkgs/by-name/gn/gnome-extension-manager/package.nix +++ b/pkgs/by-name/gn/gnome-extension-manager/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation rec { (lib.mesonOption "distributor" "nixpkgs") ]; - meta = with lib; { + meta = { description = "Desktop app for managing GNOME shell extensions"; homepage = "https://github.com/mjakeman/extension-manager"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "extension-manager"; - maintainers = with maintainers; [ foo-dogsquared ]; + maintainers = with lib.maintainers; [ foo-dogsquared ]; }; } diff --git a/pkgs/by-name/gn/gnome-firmware/package.nix b/pkgs/by-name/gn/gnome-firmware/package.nix index dc736a30ef2e4..4ddaec01ccbcc 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; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members; + 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 02e80ca2ceec1..ce0bcb96a1e8c 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"; - maintainers = teams.gnome.members; - license = licenses.gpl2Plus; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 7efaef29778a6..1b5249c62a3e6 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 522302e225243..1a9f7774182f2 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"; maintainers = lib.teams.gnome-circle.members; - 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 f245d806342ce..eb5e15c25f7da 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 0c2aacc1a5bb1..0108930295cf6 100644 --- a/pkgs/by-name/gn/gnome-inform7/package.nix +++ b/pkgs/by-name/gn/gnome-inform7/package.nix @@ -136,15 +136,15 @@ stdenv.mkDerivation { patchShebangs build-aux/* src/generate-resource-xml.{py,sh} ''; - meta = with lib; { + meta = { description = "Inform 7 for the Gnome platform"; longDescription = '' 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-keysign/package.nix b/pkgs/by-name/gn/gnome-keysign/package.nix index ac9aaa330a234..0ec4ebe273bf7 100644 --- a/pkgs/by-name/gn/gnome-keysign/package.nix +++ b/pkgs/by-name/gn/gnome-keysign/package.nix @@ -56,11 +56,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; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.gnome.members; + 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 3b2723e7fb069..15b8ab31c3d00 100644 --- a/pkgs/by-name/gn/gnome-logs/package.nix +++ b/pkgs/by-name/gn/gnome-logs/package.nix @@ -62,12 +62,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"; - maintainers = teams.gnome.members; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-maps/package.nix b/pkgs/by-name/gn/gnome-maps/package.nix index 3d1d31936fa21..21ca39c9c0fe1 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"; - maintainers = teams.gnome.members; - license = licenses.gpl2Plus; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 247f7a529214e..d8a5429ea9b74 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 bff53731d0405..8a360b5456875 100644 --- a/pkgs/by-name/gn/gnome-mines/package.nix +++ b/pkgs/by-name/gn/gnome-mines/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "gnome-mines"; }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-mines"; description = "Clear hidden mines from a minefield"; mainProgram = "gnome-mines"; - maintainers = teams.gnome.members; - license = licenses.gpl3; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 589f3dcdddcab..bd11b49f4d7a0 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 2f77f53d45d96..03a7a883ebdc2 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; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members; + 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 0b9a868731c65..043c9119684e6 100644 --- a/pkgs/by-name/gn/gnome-music/package.nix +++ b/pkgs/by-name/gn/gnome-music/package.nix @@ -101,12 +101,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"; - maintainers = teams.gnome.members; - license = licenses.gpl2Plus; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 2860fdefaaea5..bc524e3a62c17 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"; - maintainers = teams.gnome.members; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + 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 849c4ab8becee..00876d2da1404 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-notes/package.nix b/pkgs/by-name/gn/gnome-notes/package.nix index 6dba58e312925..cb4ddac1ca0bd 100644 --- a/pkgs/by-name/gn/gnome-notes/package.nix +++ b/pkgs/by-name/gn/gnome-notes/package.nix @@ -88,12 +88,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; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.linux; }; } 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 d252c33ce4743..f395241011318 100644 --- a/pkgs/by-name/gn/gnome-online-accounts-gtk/package.nix +++ b/pkgs/by-name/gn/gnome-online-accounts-gtk/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation (finalAttrs: { libadwaita # for goa-backend ]; - 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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; }) diff --git a/pkgs/by-name/gn/gnome-online-accounts/package.nix b/pkgs/by-name/gn/gnome-online-accounts/package.nix index 7339926f7dc0d..60d2c0932a4c4 100644 --- a/pkgs/by-name/gn/gnome-online-accounts/package.nix +++ b/pkgs/by-name/gn/gnome-online-accounts/package.nix @@ -104,11 +104,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; - maintainers = teams.gnome.members; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl2Plus; + maintainers = lib.teams.gnome.members; }; }) diff --git a/pkgs/by-name/gn/gnome-packagekit/package.nix b/pkgs/by-name/gn/gnome-packagekit/package.nix index 6ab6363dc50db..20a0cd29d7c97 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; - maintainers = teams.gnome.members; - license = licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = lib.teams.gnome.members; + license = lib.licenses.gpl2; description = "Tools for installing software on the GNOME desktop using PackageKit"; }; } diff --git a/pkgs/by-name/gn/gnome-photos/package.nix b/pkgs/by-name/gn/gnome-photos/package.nix index 199fa1f212463..8b5960fe0293f 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; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.gnome.members; + 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 48d4fea990ef6..d55741af42f99 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-P7hrSTb8XE/rCAGflbZwrqpQGxWnXFREqXSmZmIMAGU="; - 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 6c7ee5e234318..6d61967d6ff59 100644 --- a/pkgs/by-name/gn/gnome-pomodoro/package.nix +++ b/pkgs/by-name/gn/gnome-pomodoro/package.nix @@ -75,7 +75,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"; @@ -83,11 +83,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 ac807494d33d2..3e9e7f64d9db3 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"; - maintainers = teams.gnome.members; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + 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 4cd09ee2bcea5..f25d526958ae9 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-recipes/package.nix b/pkgs/by-name/gn/gnome-recipes/package.nix index a3fe050d1dd82..842edeb0145cb 100644 --- a/pkgs/by-name/gn/gnome-recipes/package.nix +++ b/pkgs/by-name/gn/gnome-recipes/package.nix @@ -78,12 +78,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Recipe management application for GNOME"; mainProgram = "gnome-recipes"; homepage = "https://gitlab.gnome.org/GNOME/recipes"; - maintainers = teams.gnome.members; - license = licenses.gpl3Plus; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 1509e559ac3f4..22e60cd6d17fa 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"; - maintainers = teams.gnome.members; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-secrets/package.nix b/pkgs/by-name/gn/gnome-secrets/package.nix index a6b2fb7f2f344..aa98d3dfe9ee2 100644 --- a/pkgs/by-name/gn/gnome-secrets/package.nix +++ b/pkgs/by-name/gn/gnome-secrets/package.nix @@ -70,12 +70,12 @@ python3Packages.buildPythonApplication rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Password manager for GNOME which makes use of the KeePass v.4 format"; homepage = "https://gitlab.gnome.org/World/secrets"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ mvnetbiz ] ++ lib.teams.gnome-circle.members; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mvnetbiz ] ++ lib.teams.gnome-circle.members; mainProgram = "secrets"; }; } diff --git a/pkgs/by-name/gn/gnome-session/ctl.nix b/pkgs/by-name/gn/gnome-session/ctl.nix index 10eae3e97d683..2fc0b7e91113c 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; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members; + 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 e07a354c20ba8..a817ad3130573 100644 --- a/pkgs/by-name/gn/gnome-settings-daemon/package.nix +++ b/pkgs/by-name/gn/gnome-settings-daemon/package.nix @@ -132,9 +132,9 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { - license = licenses.gpl2Plus; - maintainers = teams.gnome.members; - platforms = platforms.linux; + meta = { + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members; + 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 d7b00a0a2ef9e..5c46054efa236 100644 --- a/pkgs/by-name/gn/gnome-settings-daemon46/package.nix +++ b/pkgs/by-name/gn/gnome-settings-daemon46/package.nix @@ -110,11 +110,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; - maintainers = teams.pantheon.members; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.pantheon.members; + 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 d265ff11611dc..940efbb90d126 100644 --- a/pkgs/by-name/gn/gnome-software/package.nix +++ b/pkgs/by-name/gn/gnome-software/package.nix @@ -113,12 +113,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; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-solanum/package.nix b/pkgs/by-name/gn/gnome-solanum/package.nix index 2b22d1bf2d437..11d954e4e3776 100644 --- a/pkgs/by-name/gn/gnome-solanum/package.nix +++ b/pkgs/by-name/gn/gnome-solanum/package.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/World/Solanum"; description = "Pomodoro timer for the GNOME desktop"; - maintainers = with maintainers; [ linsui ] ++ lib.teams.gnome-circle.members; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ linsui ] ++ lib.teams.gnome-circle.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "solanum"; }; } diff --git a/pkgs/by-name/gn/gnome-system-monitor/package.nix b/pkgs/by-name/gn/gnome-system-monitor/package.nix index 394a5104488bc..af741b8a387ce 100644 --- a/pkgs/by-name/gn/gnome-system-monitor/package.nix +++ b/pkgs/by-name/gn/gnome-system-monitor/package.nix @@ -70,12 +70,12 @@ stdenv.mkDerivation rec { }; }; - 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"; - maintainers = teams.gnome.members; - license = licenses.gpl2; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + 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 8cc7aac2c8528..498613e37179b 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"; - maintainers = teams.gnome.members; - license = licenses.gpl3Plus; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 d26e2ce841d52..d85556c9be6f6 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; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members; + 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 f52e6ad434755..697533ba40ad5 100644 --- a/pkgs/by-name/gn/gnome-terminal/package.nix +++ b/pkgs/by-name/gn/gnome-terminal/package.nix @@ -87,12 +87,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; - maintainers = teams.gnome.members; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.gnome.members; }; }) diff --git a/pkgs/by-name/gn/gnome-tetravex/package.nix b/pkgs/by-name/gn/gnome-tetravex/package.nix index dc2752f552b92..4078ca9a8abe3 100644 --- a/pkgs/by-name/gn/gnome-tetravex/package.nix +++ b/pkgs/by-name/gn/gnome-tetravex/package.nix @@ -63,12 +63,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"; - maintainers = teams.gnome.members; - license = licenses.gpl2; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + license = lib.licenses.gpl2; + 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 2809c19928e8d..1f8e7d9f1bd76 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; - maintainers = teams.gnome.members; + meta = { + platforms = lib.platforms.unix; + maintainers = lib.teams.gnome.members; }; } diff --git a/pkgs/by-name/gn/gnome-tweaks/package.nix b/pkgs/by-name/gn/gnome-tweaks/package.nix index 3235ea91d606e..555119b019d75 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"; - maintainers = teams.gnome.members; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + 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 311470c94e136..6b99f9fa4e331 100644 --- a/pkgs/by-name/gn/gnome-usage/package.nix +++ b/pkgs/by-name/gn/gnome-usage/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { }; }; - 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; - maintainers = teams.gnome.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.gnome.members; }; } diff --git a/pkgs/by-name/gn/gnome-user-docs/package.nix b/pkgs/by-name/gn/gnome-user-docs/package.nix index 460e342adef11..37e286d013ebc 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; - maintainers = teams.gnome.members; - platforms = platforms.all; + license = lib.licenses.cc-by-30; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gn/gnome-video-effects/package.nix b/pkgs/by-name/gn/gnome-video-effects/package.nix index cbf601a2d39a9..6dd86d3eafd76 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; - maintainers = teams.gnome.members; - license = licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = lib.teams.gnome.members; + 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 05b4eb9564c31..4d28107d7482a 100644 --- a/pkgs/by-name/gn/gnome-weather/package.nix +++ b/pkgs/by-name/gn/gnome-weather/package.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "gnome-weather"; }; }; - meta = with lib; { + meta = { homepage = "https://apps.gnome.org/Weather/"; description = "Access current weather conditions and forecasts"; mainProgram = "gnome-weather"; - maintainers = teams.gnome.members; - license = licenses.gpl2Plus; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 6c6c741a96428..b16e9b6281b84 100644 --- a/pkgs/by-name/gn/gnomecast/package.nix +++ b/pkgs/by-name/gn/gnomecast/package.nix @@ -45,10 +45,10 @@ buildPythonApplication rec { # 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 02ee9be1acd46..581a9fb6f679c 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 2b80a8ed3dd0b..4688caeafa141 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 e3a242b42d532..ece086db5eb5e 100644 --- a/pkgs/by-name/gn/gnss-sdr/package.nix +++ b/pkgs/by-name/gn/gnss-sdr/package.nix @@ -107,10 +107,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/gnu-cim/package.nix b/pkgs/by-name/gn/gnu-cim/package.nix index b2c339d45a393..cdf0583d5bf68 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 0c4d6c16a870b..cbabe904f349c 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 3b49797654b19..2b64823a0cd10 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-smalltalk/package.nix b/pkgs/by-name/gn/gnu-smalltalk/package.nix index 678aa56b0562e..45587d7099066 100644 --- a/pkgs/by-name/gn/gnu-smalltalk/package.nix +++ b/pkgs/by-name/gn/gnu-smalltalk/package.nix @@ -76,7 +76,7 @@ stdenv.mkDerivation rec { # executed within nix-shell --pure. doCheck = false; - meta = with lib; { + meta = { description = "Free implementation of the Smalltalk-80 language"; longDescription = '' GNU Smalltalk is a free implementation of the Smalltalk-80 language. It @@ -85,11 +85,11 @@ stdenv.mkDerivation rec { language, well-versed to scripting tasks. ''; homepage = "http://smalltalk.gnu.org/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2 lgpl2 ]; - platforms = platforms.linux; - maintainers = with maintainers; [ AndersonTorres ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ AndersonTorres ]; }; } diff --git a/pkgs/by-name/gn/gnubg/package.nix b/pkgs/by-name/gn/gnubg/package.nix index 020f042546f1c..1b71b62ed8da0 100644 --- a/pkgs/by-name/gn/gnubg/package.nix +++ b/pkgs/by-name/gn/gnubg/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "World class backgammon application"; homepage = "https://www.gnu.org/software/gnubg/"; - license = licenses.gpl3; - maintainers = [ maintainers.ehmry ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.ehmry ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnuchess/package.nix b/pkgs/by-name/gn/gnuchess/package.nix index 8c140d6fc48ea..47310055b2b91 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 8c86be58e1543..0680f06f81e16 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 = "gnuclad tries to help the environment by creating trees. Its primary use will be 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 ef165c8e45f7d..cf97481a77b28 100644 --- a/pkgs/by-name/gn/gnucobol/package.nix +++ b/pkgs/by-name/gn/gnucobol/package.nix @@ -134,19 +134,19 @@ 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; [ ericsagnes 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 d490033e08ace..b8cd93c4e5633 100644 --- a/pkgs/by-name/gn/gnujump/package.nix +++ b/pkgs/by-name/gn/gnujump/package.nix @@ -44,7 +44,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"; @@ -54,8 +54,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 6a9d2fe5894ba..0af45404fb969 100644 --- a/pkgs/by-name/gn/gnulib/package.nix +++ b/pkgs/by-name/gn/gnulib/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { longdouble-redirect-patch = ./gnulib-longdouble-redirect.patch; }; - 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/gnumeric/package.nix b/pkgs/by-name/gn/gnumeric/package.nix index 90fd4bcab1038..3d20a7d7afb55 100644 --- a/pkgs/by-name/gn/gnumeric/package.nix +++ b/pkgs/by-name/gn/gnumeric/package.nix @@ -75,11 +75,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "GNOME Office Spreadsheet"; license = lib.licenses.gpl2Plus; homepage = "http://projects.gnome.org/gnumeric/"; - platforms = platforms.unix; - maintainers = [ maintainers.vcunat ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.vcunat ]; }; } diff --git a/pkgs/by-name/gn/gnupg-pkcs11-scd/package.nix b/pkgs/by-name/gn/gnupg-pkcs11-scd/package.nix index 750efe12ff778..67585988b5eb3 100644 --- a/pkgs/by-name/gn/gnupg-pkcs11-scd/package.nix +++ b/pkgs/by-name/gn/gnupg-pkcs11-scd/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { "--with-libgcrypt-prefix=${libgcrypt.dev}" ]; - meta = with lib; { + meta = { description = "Smart-card daemon to enable the use of PKCS#11 tokens with GnuPG"; mainProgram = "gnupg-pkcs11-scd"; longDescription = '' @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { daemon to enable the use of PKCS#11 tokens with GnuPG. ''; homepage = "https://gnupg-pkcs11.sourceforge.net/"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ matthiasbeyer philandstuff ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gn/gnupth/package.nix b/pkgs/by-name/gn/gnupth/package.nix index 0f105195f057d..67774d17e7bb9 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 56d063b50bce9..7ffbc294f187a 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/go/go-2fa/package.nix b/pkgs/by-name/go/go-2fa/package.nix index 55d777523dd2a..3b3c004e8bedc 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 f562f8fb8c516..1934d6ae4783f 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 b5af6a7f3f89e..fb23fabfbe6f2 100644 --- a/pkgs/by-name/go/go-autoconfig/package.nix +++ b/pkgs/by-name/go/go-autoconfig/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { 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 7b739d210bff9..3ff5c5e9dd8a8 100644 --- a/pkgs/by-name/go/go-bare/package.nix +++ b/pkgs/by-name/go/go-bare/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { 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 0d6e3eb7a6a6a..54fa32b793bb3 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 rec { "-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 4a06f4d363a80..eb0405d29bdd7 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 4e32ea4d7109d..83c439954c957 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 bd307c577a148..6d2cb35cd2c79 100644 --- a/pkgs/by-name/go/go-containerregistry/package.nix +++ b/pkgs/by-name/go/go-containerregistry/package.nix @@ -64,10 +64,10 @@ 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; - maintainers = with maintainers; [ yurrriq ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ yurrriq ]; }; } diff --git a/pkgs/by-name/go/go-cover-treemap/package.nix b/pkgs/by-name/go/go-cover-treemap/package.nix index de358e4c8428d..92d5b62b238f1 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 5fb59710c74e3..9b94cc057cd8f 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 24c760ff620a9..c6a78f6d00a0e 100644 --- a/pkgs/by-name/go/go-dnscollector/package.nix +++ b/pkgs/by-name/go/go-dnscollector/package.nix @@ -19,10 +19,10 @@ 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"; - license = licenses.mit; - maintainers = with maintainers; [ shift ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ shift ]; }; } diff --git a/pkgs/by-name/go/go-font/package.nix b/pkgs/by-name/go/go-font/package.nix index 436647f590623..7eb743f4224ed 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 rec { 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-jet/package.nix b/pkgs/by-name/go/go-jet/package.nix index 4519fa55af631..c44ba041394a0 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 35ad782476008..6e24de1019c3d 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-junit-report/package.nix b/pkgs/by-name/go/go-junit-report/package.nix index a6eabc0b573f5..74a23b31068df 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 0f9c7e06dc5a2..b82b82f3a8ace 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 dd08b14598d40..e1d270e993abd 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-7vIP5pGFH6CbW/cJp+DiRg2jFcLFEBl8dQzUw1ogTTA="; - 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 2b5be457f2525..084096c824afb 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 f06d54a109745..0af4d764c5a08 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-wJnHgp+NPchXkR71ARLMjo4VryzgGkz2tYWPsC+3eFo="; }; - 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 a78acdc7941da..70d416d9ded8c 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 1db5ad7e457cd..c19a18e45a669 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 9a435833bba9e..df63d2443ed6a 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-mtpfs/package.nix b/pkgs/by-name/go/go-mtpfs/package.nix index f6e6e667cc597..2ab74add7318f 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 c6ad42add0917..fb95f4629cd40 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 dabed8503e257..f5866a1c512c2 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 25ce29dd69dee..12bb9f858eb74 100644 --- a/pkgs/by-name/go/go-outline/package.nix +++ b/pkgs/by-name/go/go-outline/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { 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-protobuf/package.nix b/pkgs/by-name/go/go-protobuf/package.nix index b55e3b15a3ebe..69378f07ed8af 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 f98384bd270f7..ec1c23907b5bf 100644 --- a/pkgs/by-name/go/go-rice/package.nix +++ b/pkgs/by-name/go/go-rice/package.nix @@ -22,11 +22,11 @@ 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; - maintainers = with maintainers; [ blaggacao ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ blaggacao ]; mainProgram = "rice"; }; } diff --git a/pkgs/by-name/go/go-sct/package.nix b/pkgs/by-name/go/go-sct/package.nix index 80d244d136c2b..2230cc7d9e995 100644 --- a/pkgs/by-name/go/go-sct/package.nix +++ b/pkgs/by-name/go/go-sct/package.nix @@ -35,12 +35,12 @@ buildGoModule rec { "-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 d3398e2d7c7c3..f81d0b4a1eda7 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 7193d56ba3120..36b44a21d4082 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-tools/package.nix b/pkgs/by-name/go/go-tools/package.nix index 18496f2252542..13cdb554265f5 100644 --- a/pkgs/by-name/go/go-tools/package.nix +++ b/pkgs/by-name/go/go-tools/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { doCheck = false; - 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 0feb0d3e3fc05..7661f7cdae8b9 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 36f1382ce6db4..1916868272a75 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 18f48b758d68e..a9327bceb5353 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/gobetween/package.nix b/pkgs/by-name/go/gobetween/package.nix index ca795661eeee1..5ece1b6aaece2 100644 --- a/pkgs/by-name/go/gobetween/package.nix +++ b/pkgs/by-name/go/gobetween/package.nix @@ -34,11 +34,11 @@ buildGoModule rec { cp -r config $out/share ''; - meta = with lib; { + meta = { description = "Modern & minimalistic load balancer for the Сloud era"; homepage = "https://gobetween.io"; - license = licenses.mit; - maintainers = with maintainers; [ tomberek ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tomberek ]; broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.goModules --check }; } diff --git a/pkgs/by-name/go/gobgp/package.nix b/pkgs/by-name/go/gobgp/package.nix index 2c9161dd05e03..740c4df6e0a06 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 d878df522d758..d2e0029dba26d 100644 --- a/pkgs/by-name/go/gobi_loader/package.nix +++ b/pkgs/by-name/go/gobi_loader/package.nix @@ -20,11 +20,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/gocryptfs/package.nix b/pkgs/by-name/go/gocryptfs/package.nix index 7738bcda8d90b..2b3983d988809 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 cd5447ef9c8e5..23f8f21ce99ea 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 7aabe29df5dbf..d994c06d6e728 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 e034badc0ae73..8e4b62d39ac71 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 82047971cd3bc..5183efab6d531 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 b5a28b0214262..e35369d6605a9 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; - maintainers = [ maintainers.AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.AndersonTorres ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/go/goflow/package.nix b/pkgs/by-name/go/goflow/package.nix index 04937583cc307..ffc61ad6b6743 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-fOlfVI8v7KqNSRhAPlZBSHKfZRlCbCgjnMV/6bsqDhg="; - 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 012d20bc8e642..4772fbde5afd7 100644 --- a/pkgs/by-name/go/gofu/package.nix +++ b/pkgs/by-name/go/gofu/package.nix @@ -24,10 +24,10 @@ buildGoModule rec { 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/gohai/package.nix b/pkgs/by-name/go/gohai/package.nix index 8ce3dffd99fdb..29aafc00d4bf4 100644 --- a/pkgs/by-name/go/gohai/package.nix +++ b/pkgs/by-name/go/gohai/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { 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 6310db9daf939..f061ff56e353b 100644 --- a/pkgs/by-name/go/gohufont/package.nix +++ b/pkgs/by-name/go/gohufont/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { 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 44ab2078d5835..c50e04dbd0302 100644 --- a/pkgs/by-name/go/goimapnotify/package.nix +++ b/pkgs/by-name/go/goimapnotify/package.nix @@ -24,11 +24,11 @@ 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"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ wohanley rafaelrc ]; diff --git a/pkgs/by-name/go/gojsontoyaml/package.nix b/pkgs/by-name/go/gojsontoyaml/package.nix index 3057639d858d4..e0333b1121888 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; - maintainers = [ maintainers.bryanasdev000 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.bryanasdev000 ]; }; } diff --git a/pkgs/by-name/go/gokart/package.nix b/pkgs/by-name/go/gokart/package.nix index aa3b53fb0e3b1..24c85a7dece7f 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 f1775c7712273..e6164db53fb8c 100644 --- a/pkgs/by-name/go/gokey/package.nix +++ b/pkgs/by-name/go/gokey/package.nix @@ -18,11 +18,11 @@ buildGoModule rec { vendorHash = "sha256-qlP2tI6QQMjxP59zaXgx4mX9IWSrOKWmme717wDaUEc="; - 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 ce6dd7b5f08fb..1a0614cb44ac9 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 f1d8eafc1deba..c54bf285e8d74 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/golangci-lint-langserver/package.nix b/pkgs/by-name/go/golangci-lint-langserver/package.nix index 515ed00b4eecb..9795759dab89c 100644 --- a/pkgs/by-name/go/golangci-lint-langserver/package.nix +++ b/pkgs/by-name/go/golangci-lint-langserver/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Language server for golangci-lint"; homepage = "https://github.com/nametake/golangci-lint-langserver"; - license = licenses.mit; - maintainers = with maintainers; [ kirillrdy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kirillrdy ]; mainProgram = "golangci-lint-langserver"; }; } diff --git a/pkgs/by-name/go/goldwarden/package.nix b/pkgs/by-name/go/goldwarden/package.nix index eddf57bfbbfa7..2b19a82a5c67a 100644 --- a/pkgs/by-name/go/goldwarden/package.nix +++ b/pkgs/by-name/go/goldwarden/package.nix @@ -92,15 +92,15 @@ buildGoModule rec { wrapPythonProgramsIn $out/share/goldwarden "$out/share/goldwarden $pythonPath" ''; - meta = with lib; { + meta = { description = "Feature-packed Bitwarden compatible desktop integration"; homepage = "https://github.com/quexten/goldwarden"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ arthsmn justanotherariel ]; mainProgram = "goldwarden"; - platforms = platforms.linux; # Support for other platforms is not yet ready, see https://github.com/quexten/goldwarden/issues/4 + platforms = lib.platforms.linux; # Support for other platforms is not yet ready, see https://github.com/quexten/goldwarden/issues/4 }; } diff --git a/pkgs/by-name/go/golines/package.nix b/pkgs/by-name/go/golines/package.nix index 1d30cf3b148a9..00ca6e9ac5a5c 100644 --- a/pkgs/by-name/go/golines/package.nix +++ b/pkgs/by-name/go/golines/package.nix @@ -17,10 +17,10 @@ buildGoModule rec { vendorHash = "sha256-jI3/m1UdZMKrS3H9jPhcVAUCjc1G/ejzHi9SCTy24ak="; - 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 ]; }; } diff --git a/pkgs/by-name/go/golink/package.nix b/pkgs/by-name/go/golink/package.nix index 5c10bbdcfebed..d372df7f1b202 100644 --- a/pkgs/by-name/go/golink/package.nix +++ b/pkgs/by-name/go/golink/package.nix @@ -23,11 +23,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 d1a29e512cc32..41dc3596d20fd 100644 --- a/pkgs/by-name/go/golint/package.nix +++ b/pkgs/by-name/go/golint/package.nix @@ -26,12 +26,12 @@ buildGoModule rec { # /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 b9b1395fae6fe..9262183ff9575 100644 --- a/pkgs/by-name/go/gollum/package.nix +++ b/pkgs/by-name/go/gollum/package.nix @@ -19,18 +19,18 @@ bundlerApp rec { 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 11b7745baf60b..afd68e070aa0a 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; - maintainers = teams.gnome.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.gnome.members; }; } diff --git a/pkgs/by-name/go/gomacro/package.nix b/pkgs/by-name/go/gomacro/package.nix index 237070036b04e..947dbb29dfb8a 100644 --- a/pkgs/by-name/go/gomacro/package.nix +++ b/pkgs/by-name/go/gomacro/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { 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 5153e358cf37f..9b0c978bc04bb 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 f4c7bb49a5fd1..78e1588029584 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 387b0ed1063a1..d56cbcda898a1 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/gomi/package.nix b/pkgs/by-name/go/gomi/package.nix index 51d5fdf850cdf..8a59ad48a93e5 100644 --- a/pkgs/by-name/go/gomi/package.nix +++ b/pkgs/by-name/go/gomi/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Replacement for UNIX rm command"; homepage = "https://github.com/b4b4r07/gomi"; - license = licenses.mit; - maintainers = with maintainers; [ ozkutuk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ozkutuk ]; mainProgram = "gomi"; }; } diff --git a/pkgs/by-name/go/gomp/package.nix b/pkgs/by-name/go/gomp/package.nix index ee9b5ce7eb0c6..7cdccd9c018d6 100644 --- a/pkgs/by-name/go/gomp/package.nix +++ b/pkgs/by-name/go/gomp/package.nix @@ -15,12 +15,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 3dc22caaa00a7..75477fa7431a5 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 = "A 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 ae2c4688b8c04..61ea379b1b467 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 dfb80b8a902a6..ef9daeab99e55 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 36bdb92052ec4..92146d7f93553 100644 --- a/pkgs/by-name/go/goodvibes/package.nix +++ b/pkgs/by-name/go/goodvibes/package.nix @@ -57,11 +57,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 9cc066bb09c3d..70ec8d35bece0 100644 --- a/pkgs/by-name/go/google-amber/package.nix +++ b/pkgs/by-name/go/google-amber/package.nix @@ -151,10 +151,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-authenticator/package.nix b/pkgs/by-name/go/google-authenticator/package.nix index 0334a252510f2..1b7661d47606e 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 889a98208f666..680a59f4aae8e 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 83f55078d6a63..a919ba5175531 100644 --- a/pkgs/by-name/go/google-cloud-cpp/package.nix +++ b/pkgs/by-name/go/google-cloud-cpp/package.nix @@ -144,11 +144,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-sql-proxy/package.nix b/pkgs/by-name/go/google-cloud-sql-proxy/package.nix index f328adc613eed..74e1d1ff5d9fa 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 ab341044e2213..6b9c8b7333046 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-guest-configs/package.nix b/pkgs/by-name/go/google-guest-configs/package.nix index 5a3bf68579a92..f950b60b62276 100644 --- a/pkgs/by-name/go/google-guest-configs/package.nix +++ b/pkgs/by-name/go/google-guest-configs/package.nix @@ -62,11 +62,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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/go/goose/package.nix b/pkgs/by-name/go/goose/package.nix index b859bc1e56054..92bc9c9829108 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 9c482c172bc6c..83fb518dcc410 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/goperf/package.nix b/pkgs/by-name/go/goperf/package.nix index 2469052029579..e71ae4d37ac2d 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 1bab4c4abcb97..cdf17d03b5b98 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 f4829ba509a37..5341031fdc706 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 04c4e53425cf7..f2d618dce6c10 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 296a25f045ff0..66cc4c51e0a27 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 2aeb490fa3f6b..2b4d47d4717db 100644 --- a/pkgs/by-name/go/gops/package.nix +++ b/pkgs/by-name/go/gops/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { preCheck = "export HOME=$(mktemp -d)"; - 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 37b1d4123c220..6e8ed38b8e00b 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 33e54e6476651..c2d1bfc2d18d7 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 145ea72af6f6a..06f4ec1fa2df9 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 = "djb's redo, a system for building files from source files. Written in Go"; 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 19f350b0205e5..def987435b1eb 100644 --- a/pkgs/by-name/go/goreleaser/package.nix +++ b/pkgs/by-name/go/goreleaser/package.nix @@ -56,15 +56,15 @@ buildGoModule 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/goreman/package.nix b/pkgs/by-name/go/goreman/package.nix index 9a572a8a41b89..a4c3147206304 100644 --- a/pkgs/by-name/go/goreman/package.nix +++ b/pkgs/by-name/go/goreman/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { command = "goreman version"; }; - meta = with lib; { + meta = { description = "foreman clone written in go language"; mainProgram = "goreman"; homepage = "https://github.com/mattn/goreman"; - license = licenses.mit; - maintainers = with maintainers; [ zimbatm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm ]; }; } diff --git a/pkgs/by-name/go/gorm-gentool/package.nix b/pkgs/by-name/go/gorm-gentool/package.nix index 684196730602c..4a0e315c77c65 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 35d505bce1e17..1d959d03204d4 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/gosimports/package.nix b/pkgs/by-name/go/gosimports/package.nix index 72826ccc9da8a..2857ad65b9a69 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 7fba8cee89f99..09cb2318f7991 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 6b3f226106c22..38e1ae158c12d 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 bce4c6bf05771..9399f1b80e1cb 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/gost/package.nix b/pkgs/by-name/go/gost/package.nix index 5a515427bd126..2a56c2440a16f 100644 --- a/pkgs/by-name/go/gost/package.nix +++ b/pkgs/by-name/go/gost/package.nix @@ -56,11 +56,11 @@ buildGoModule rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Simple tunnel written in golang"; homepage = "https://github.com/ginuerzh/gost"; - license = licenses.mit; - maintainers = with maintainers; [ pmy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pmy ]; mainProgram = "gost"; }; } diff --git a/pkgs/by-name/go/gostatic/package.nix b/pkgs/by-name/go/gostatic/package.nix index 6b0ce598ca884..de4b5118e1fb0 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 d2213d926c5e4..1453cf6835c51 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 3b46a4cf9c688..fba7cb19475f7 100644 --- a/pkgs/by-name/go/gotags/package.nix +++ b/pkgs/by-name/go/gotags/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { "-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 4c565840fee6d..0b160364c3102 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 d0ad80fbb9daa..b2a7f28dbc70c 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 9dc87997cc372..b5f83975214b8 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 9abc5bc183f77..340fb196eec24 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; [ bryanasdev000 genofire ]; diff --git a/pkgs/by-name/go/gotify-server/package.nix b/pkgs/by-name/go/gotify-server/package.nix index 3946198e2fbcf..6bafa9d6d6a1c 100644 --- a/pkgs/by-name/go/gotify-server/package.nix +++ b/pkgs/by-name/go/gotify-server/package.nix @@ -61,11 +61,11 @@ buildGoModule rec { "-X main.Mode=prod" ]; - meta = with lib; { + meta = { description = "Simple server for sending and receiving messages in real-time per WebSocket"; homepage = "https://gotify.net"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; mainProgram = "server"; }; } diff --git a/pkgs/by-name/go/gotools/package.nix b/pkgs/by-name/go/gotools/package.nix index 486aede88b9aa..e4f1c738508c9 100644 --- a/pkgs/by-name/go/gotools/package.nix +++ b/pkgs/by-name/go/gotools/package.nix @@ -33,14 +33,14 @@ buildGoModule rec { --subst-var-by bin $out ''; - meta = with lib; { + meta = { description = "Additional tools for Go development"; longDescription = '' This package contains tools like: godoc, goimports, callgraph, digraph, stringer or toolstash. ''; homepage = "https://go.googlesource.com/tools"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ SuperSandro2000 techknowlogick ]; diff --git a/pkgs/by-name/go/gotraceui/package.nix b/pkgs/by-name/go/gotraceui/package.nix index 9730a2e6df911..3090758812c11 100644 --- a/pkgs/by-name/go/gotraceui/package.nix +++ b/pkgs/by-name/go/gotraceui/package.nix @@ -44,12 +44,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/gotty/package.nix b/pkgs/by-name/go/gotty/package.nix index 38f040f0bb524..610b8a0461944 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 5806a6cded23d..257e48925a823 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/gox/package.nix b/pkgs/by-name/go/gox/package.nix index d78d74191fee5..564d239c4a054 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; - maintainers = with maintainers; [ azahi ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ azahi ]; }; } diff --git a/pkgs/by-name/go/goxel/package.nix b/pkgs/by-name/go/goxel/package.nix index 918a34a883c3a..ec495c8c427dd 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 47cf18086f0e4..78c27afe7aba9 100644 --- a/pkgs/by-name/go/goxlr-utility/package.nix +++ b/pkgs/by-name/go/goxlr-utility/package.nix @@ -64,10 +64,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/gpa/package.nix b/pkgs/by-name/gp/gpa/package.nix index 79b9268842883..ba56cf210ca31 100644 --- a/pkgs/by-name/gp/gpa/package.nix +++ b/pkgs/by-name/gp/gpa/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { libassuan ]; - meta = with lib; { + meta = { description = "Graphical user interface for the GnuPG"; homepage = "https://www.gnupg.org/related_software/gpa/"; - license = licenses.gpl3Plus; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; mainProgram = "gpa"; }; } diff --git a/pkgs/by-name/gp/gpart/package.nix b/pkgs/by-name/gp/gpart/package.nix index 7fa84d64e956f..c44e19fedbfb8 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/gparted/package.nix b/pkgs/by-name/gp/gparted/package.nix index d5e5ffcc0ed7c..d5201a94cb762 100644 --- a/pkgs/by-name/gp/gparted/package.nix +++ b/pkgs/by-name/gp/gparted/package.nix @@ -97,7 +97,7 @@ stdenv.mkDerivation rec { $out/share/polkit-1/actions/org.gnome.gparted.policy ''; - meta = with lib; { + meta = { description = "Graphical disk partitioning tool"; longDescription = '' GNOME Partition Editor for creating, reorganizing, and deleting disk @@ -105,8 +105,8 @@ stdenv.mkDerivation rec { while preserving the partition contents. ''; homepage = "https://gparted.org"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; mainProgram = "gparted"; }; } diff --git a/pkgs/by-name/gp/gperftools/package.nix b/pkgs/by-name/gp/gperftools/package.nix index 7936b80808e5c..cd86064835970 100644 --- a/pkgs/by-name/gp/gperftools/package.nix +++ b/pkgs/by-name/gp/gperftools/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/gperftools/gperftools"; description = "Fast, multi-threaded malloc() and nifty performance analysis tools"; - platforms = platforms.all; - license = licenses.bsd3; - maintainers = with maintainers; [ vcunat ]; + platforms = lib.platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ vcunat ]; }; } diff --git a/pkgs/by-name/gp/gphotos-sync/package.nix b/pkgs/by-name/gp/gphotos-sync/package.nix index 9b89e9c53b5ea..7c43e81a96f84 100644 --- a/pkgs/by-name/gp/gphotos-sync/package.nix +++ b/pkgs/by-name/gp/gphotos-sync/package.nix @@ -53,11 +53,11 @@ python3.pkgs.buildPythonApplication rec { export HOME=$(mktemp -d) ''; - meta = with lib; { + meta = { description = "Google Photos and Albums backup with Google Photos Library API"; mainProgram = "gphotos-sync"; homepage = "https://github.com/gilesknap/gphotos-sync"; - license = licenses.asl20; - maintainers = with maintainers; [ dnr ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dnr ]; }; } diff --git a/pkgs/by-name/gp/gpick/package.nix b/pkgs/by-name/gp/gpick/package.nix index 61b4ad9be4692..cf36736500b0f 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/gpp/package.nix b/pkgs/by-name/gp/gpp/package.nix index dea4eecdc444c..4a5fc83f28ccb 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/gptfdisk/package.nix b/pkgs/by-name/gp/gptfdisk/package.nix index 4965084857a6a..ef8ecb4d7930d 100644 --- a/pkgs/by-name/gp/gptfdisk/package.nix +++ b/pkgs/by-name/gp/gptfdisk/package.nix @@ -61,11 +61,11 @@ 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; - maintainers = [ maintainers.ehmry ]; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.ehmry ]; }; } diff --git a/pkgs/by-name/gp/gptman/package.nix b/pkgs/by-name/gp/gptman/package.nix index 5e227166226ec..b588eed05bddf 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 fc2b8b0eb322b..535af7107dda6 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 8942b854d26df..1bd1fe9fcb280 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 1fad477342018..b6886a13ad215 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 d6d27ba8944f8..1f83be14a1f61 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/gpxlab/package.nix b/pkgs/by-name/gp/gpxlab/package.nix index 07d09dd0edada..9bb2bf0c2fe86 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/gq/gqlgenc/package.nix b/pkgs/by-name/gq/gqlgenc/package.nix index 4203714f6e6fd..40e0a9808f8cd 100644 --- a/pkgs/by-name/gq/gqlgenc/package.nix +++ b/pkgs/by-name/gq/gqlgenc/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { vendorHash = "sha256-h3ePmfRkGqVXdtjX2cU5y2HnX+VkmTWNwrEkhLAmrlU="; - meta = with lib; { + meta = { description = "Go tool for building GraphQL client with gqlgen"; mainProgram = "gqlgenc"; homepage = "https://github.com/Yamashou/gqlgenc"; - license = licenses.mit; - maintainers = with maintainers; [ wattmto ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wattmto ]; }; } diff --git a/pkgs/by-name/gr/gr-framework/package.nix b/pkgs/by-name/gr/gr-framework/package.nix index 51d63e78d1878..c7784e33597e7 100644 --- a/pkgs/by-name/gr/gr-framework/package.nix +++ b/pkgs/by-name/gr/gr-framework/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "GR framework is a graphics library for visualisation applications"; homepage = "https://gr-framework.org"; - license = licenses.mit; - maintainers = with maintainers; [ paveloom ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ paveloom ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gr/grabserial/package.nix b/pkgs/by-name/gr/grabserial/package.nix index 72ccf1499dbbd..16dacfda7befc 100644 --- a/pkgs/by-name/gr/grabserial/package.nix +++ b/pkgs/by-name/gr/grabserial/package.nix @@ -20,12 +20,12 @@ python3Packages.buildPythonApplication rec { # no usable tests doCheck = false; - meta = with lib; { + meta = { description = "Python based serial dump and timing program"; mainProgram = "grabserial"; homepage = "https://github.com/tbird20d/grabserial"; - license = licenses.gpl2; - maintainers = with maintainers; [ vmandela ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ vmandela ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gr/gradescope-submit/package.nix b/pkgs/by-name/gr/gradescope-submit/package.nix index 8cd424e93907b..acd6c031e2604 100644 --- a/pkgs/by-name/gr/gradescope-submit/package.nix +++ b/pkgs/by-name/gr/gradescope-submit/package.nix @@ -26,11 +26,11 @@ 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "submit"; }; } diff --git a/pkgs/by-name/gr/gradience/package.nix b/pkgs/by-name/gr/gradience/package.nix index ebde30fff678e..4dedf55fee02d 100644 --- a/pkgs/by-name/gr/gradience/package.nix +++ b/pkgs/by-name/gr/gradience/package.nix @@ -74,10 +74,10 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { homepage = "https://github.com/GradienceTeam/Gradience"; description = "Customize libadwaita and GTK3 apps (with adw-gtk3)"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ foo-dogsquared ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ foo-dogsquared ]; }; } diff --git a/pkgs/by-name/gr/grafana-image-renderer/package.nix b/pkgs/by-name/gr/grafana-image-renderer/package.nix index 03baafa0a9756..fca452621330b 100644 --- a/pkgs/by-name/gr/grafana-image-renderer/package.nix +++ b/pkgs/by-name/gr/grafana-image-renderer/package.nix @@ -64,12 +64,12 @@ mkYarnPackage rec { runHook postDist ''; - 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 ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ma27 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/gr/grafterm/package.nix b/pkgs/by-name/gr/grafterm/package.nix index f0b698397e95e..d7030b0cc2564 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/graph-cli/package.nix b/pkgs/by-name/gr/graph-cli/package.nix index e7f722b59052d..826f4a1dfd40f 100644 --- a/pkgs/by-name/gr/graph-cli/package.nix +++ b/pkgs/by-name/gr/graph-cli/package.nix @@ -33,11 +33,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 b9545c8ecd2fe..13c796fe50847 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 6acf9a013661b..44e49cf3df7a5 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 20ad68fb42b3a..249d1957bf8dc 100644 --- a/pkgs/by-name/gr/graphene/package.nix +++ b/pkgs/by-name/gr/graphene/package.nix @@ -147,12 +147,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; - maintainers = teams.gnome.members ++ (with maintainers; [ ]); - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = lib.teams.gnome.members ++ (with lib.maintainers; [ ]); + 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 f0dac31689d4e..1dce3f8b4c8a0 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/graphqlmaker/package.nix b/pkgs/by-name/gr/graphqlmaker/package.nix index 265b63112dfe5..280618ffdf6ba 100644 --- a/pkgs/by-name/gr/graphqlmaker/package.nix +++ b/pkgs/by-name/gr/graphqlmaker/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-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 28362e2daacc2..65946cb8ec8bb 100644 --- a/pkgs/by-name/gr/graphqlmap/package.nix +++ b/pkgs/by-name/gr/graphqlmap/package.nix @@ -27,11 +27,11 @@ python3.pkgs.buildPythonApplication rec { "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 2d2d5cc69d898..e5e4011a4cc1b 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; - maintainers = teams.sage.members; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; + maintainers = lib.teams.sage.members; }; } diff --git a/pkgs/by-name/gr/graphw00f/package.nix b/pkgs/by-name/gr/graphw00f/package.nix index f77d33c1540ef..972f7725adb0e 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 97481a1dab3c9..d76d750974129 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 af6dc1a030ad2..39c5f9288b435 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/grb/package.nix b/pkgs/by-name/gr/grb/package.nix index ab55e98dff5e2..2eba7821b7777 100644 --- a/pkgs/by-name/gr/grb/package.nix +++ b/pkgs/by-name/gr/grb/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { "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/grepcidr/package.nix b/pkgs/by-name/gr/grepcidr/package.nix index 0d1ec5f64822b..e093bd98bb998 100644 --- a/pkgs/by-name/gr/grepcidr/package.nix +++ b/pkgs/by-name/gr/grepcidr/package.nix @@ -15,12 +15,12 @@ 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; - maintainers = [ maintainers.fadenb ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.fadenb ]; mainProgram = "grepcidr"; }; } diff --git a/pkgs/by-name/gr/grepm/package.nix b/pkgs/by-name/gr/grepm/package.nix index 6c6ed863cce6d..13dc609c4a797 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/gridlock/package.nix b/pkgs/by-name/gr/gridlock/package.nix index 78a1c4877f97c..cadee0b6834e8 100644 --- a/pkgs/by-name/gr/gridlock/package.nix +++ b/pkgs/by-name/gr/gridlock/package.nix @@ -42,10 +42,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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/gr/gridtracker/package.nix b/pkgs/by-name/gr/gridtracker/package.nix index 16788295631c0..bff758f929ba0 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 189eaeaa36390..e9c38a4fa3cac 100644 --- a/pkgs/by-name/gr/grig/package.nix +++ b/pkgs/by-name/gr/grig/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { gtk2 ]; - meta = with lib; { + meta = { description = "Simple Ham Radio control (CAT) program based on Hamlib"; mainProgram = "grig"; longDescription = '' @@ -39,8 +39,8 @@ 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; [ melling ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ melling ]; }; } diff --git a/pkgs/by-name/gr/grilo-plugins/package.nix b/pkgs/by-name/gr/grilo-plugins/package.nix index 873886d950410..9d6d8559eccfc 100644 --- a/pkgs/by-name/gr/grilo-plugins/package.nix +++ b/pkgs/by-name/gr/grilo-plugins/package.nix @@ -105,11 +105,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/grilo-plugins"; description = "Collection of plugins for the Grilo framework"; - maintainers = teams.gnome.members; - license = licenses.lgpl21Plus; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 44e42f772c717..6899f0ea4b95b 100644 --- a/pkgs/by-name/gr/grilo/package.nix +++ b/pkgs/by-name/gr/grilo/package.nix @@ -78,11 +78,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"; - maintainers = teams.gnome.members; - license = licenses.lgpl2Plus; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 fa7bab1cde8b8..4e120b7758898 100644 --- a/pkgs/by-name/gr/grimblast/package.nix +++ b/pkgs/by-name/gr/grimblast/package.nix @@ -60,11 +60,11 @@ 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; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ donovanglover khaneliman ]; diff --git a/pkgs/by-name/gr/grip-search/package.nix b/pkgs/by-name/gr/grip-search/package.nix index 5b9b622d929ad..af6cd67105032 100644 --- a/pkgs/by-name/gr/grip-search/package.nix +++ b/pkgs/by-name/gr/grip-search/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { substituteInPlace src/general/config.h --replace-fail "CUSTOM-BUILD" "${version}" ''; - 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; - maintainers = with maintainers; [ tex ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ tex ]; }; } diff --git a/pkgs/by-name/gr/grit/package.nix b/pkgs/by-name/gr/grit/package.nix index cdf1aca545f19..b1cd68cd68d31 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 c5e2b90c43906..7d9e040aa545d 100644 --- a/pkgs/by-name/gr/grive2/package.nix +++ b/pkgs/by-name/gr/grive2/package.nix @@ -48,11 +48,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/grobi/package.nix b/pkgs/by-name/gr/grobi/package.nix index 5841700709ad0..747f70b6a3969 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/gron/package.nix b/pkgs/by-name/gr/gron/package.nix index 8290fd91eb4f2..04177e66582f6 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/groonga/package.nix b/pkgs/by-name/gr/groonga/package.nix index 8b985dbeee430..73bf75085a5be 100644 --- a/pkgs/by-name/gr/groonga/package.nix +++ b/pkgs/by-name/gr/groonga/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://groonga.org/"; description = "Open-source fulltext search engine and column store"; - license = licenses.lgpl21; - maintainers = [ maintainers.ericsagnes ]; - platforms = platforms.all; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.ericsagnes ]; + platforms = lib.platforms.all; longDescription = '' Groonga is an open-source fulltext search engine and column store. It lets you write high-performance applications that requires fulltext search. diff --git a/pkgs/by-name/gr/groovy/package.nix b/pkgs/by-name/gr/groovy/package.nix index 891688f30bae1..53cd2be414926 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 b723f0ab8d3dd..3eadb86f0af50 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-NQUoAwrLMexDs0iRzGnuQ8E0hWVJBwtBUA9NI6/+AFU="; - 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-tools/package.nix b/pkgs/by-name/gr/grpc-tools/package.nix index 5bf09b7f0b940..18f6fd9f5f34a 100644 --- a/pkgs/by-name/gr/grpc-tools/package.nix +++ b/pkgs/by-name/gr/grpc-tools/package.nix @@ -32,7 +32,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 @@ -40,8 +40,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 9682fadc552dd..c1dee2ca1c57c 100644 --- a/pkgs/by-name/gr/grpc_cli/package.nix +++ b/pkgs/by-name/gr/grpc_cli/package.nix @@ -38,12 +38,12 @@ 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; - maintainers = with maintainers; [ doriath ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ doriath ]; + platforms = lib.platforms.linux; mainProgram = "grpc_cli"; }; } diff --git a/pkgs/by-name/gr/grpcurl/package.nix b/pkgs/by-name/gr/grpcurl/package.nix index 8630ad61ca2a2..06bcdf33b9ba2 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 edc7d9751ecb9..3b2b625b198d2 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 e79cd65ee3849..46958144cd0f7 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 9e1bba7bec9cc..fd109f419e4c7 100644 --- a/pkgs/by-name/gs/gscan2pdf/package.nix +++ b/pkgs/by-name/gs/gscan2pdf/package.nix @@ -157,11 +157,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 bdab9d5b6cbc0..f81fd01fd9188 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 7e7d51cffdf3e..0ffb7b321d7ca 100644 --- a/pkgs/by-name/gs/gsettings-desktop-schemas/package.nix +++ b/pkgs/by-name/gs/gsettings-desktop-schemas/package.nix @@ -67,10 +67,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; - maintainers = teams.gnome.members; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; }; } diff --git a/pkgs/by-name/gs/gshhg-gmt/package.nix b/pkgs/by-name/gs/gshhg-gmt/package.nix index c17378d5ec1b1..9d6c1e26169fb 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 = lib.teams.geospatial.members ++ (with lib.maintainers; [ tviti ]); }; diff --git a/pkgs/by-name/gs/gsm/package.nix b/pkgs/by-name/gs/gsm/package.nix index 44beb9398df12..8ec4ba7e0c95f 100644 --- a/pkgs/by-name/gs/gsm/package.nix +++ b/pkgs/by-name/gs/gsm/package.nix @@ -59,14 +59,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/gsoap/package.nix b/pkgs/by-name/gs/gsoap/package.nix index ece6659ddc4b0..ff0d0374923a3 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 02f50b5c024cf..1b82e6095053e 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 96eb2b0454ecd..61f98b8c5d132 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"; - maintainers = teams.gnome.members; - license = licenses.gpl2; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 f4e133064e796..d60a709a9deed 100644 --- a/pkgs/by-name/gs/gspeech/package.nix +++ b/pkgs/by-name/gs/gspeech/package.nix @@ -78,11 +78,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 6f318a9f790d3..adac807b6f3d7 100644 --- a/pkgs/by-name/gs/gspell/package.nix +++ b/pkgs/by-name/gs/gspell/package.nix @@ -66,12 +66,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; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gs/gss/package.nix b/pkgs/by-name/gs/gss/package.nix index 8c45bf33b43b3..6d60e870079d5 100644 --- a/pkgs/by-name/gs/gss/package.nix +++ b/pkgs/by-name/gs/gss/package.nix @@ -44,12 +44,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 ef32b2bde612c..4ccf48e8f6486 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 db81b1f957923..14d2e634a7bb0 100644 --- a/pkgs/by-name/gt/gtest/package.nix +++ b/pkgs/by-name/gt/gtest/package.nix @@ -57,11 +57,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 ea9a67cfd2844..e9fc82b8cc7c1 100644 --- a/pkgs/by-name/gt/gtg/package.nix +++ b/pkgs/by-name/gt/gtg/package.nix @@ -69,7 +69,7 @@ python3Packages.buildPythonApplication rec { checkPhase = "xvfb-run pytest ../tests/"; - meta = with lib; { + meta = { description = " A personal tasks and TODO-list items organizer"; mainProgram = "gtg"; longDescription = '' @@ -78,8 +78,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 f4fb6033ddd4b..a7188aab27d91 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 5cc49bec9d2bb..3fd970a95a977 100644 --- a/pkgs/by-name/gt/gthumb/package.nix +++ b/pkgs/by-name/gt/gthumb/package.nix @@ -109,12 +109,12 @@ stdenv.mkDerivation rec { }; }; - 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 = [ maintainers.mimame ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.mimame ]; }; } diff --git a/pkgs/by-name/gt/gti/package.nix b/pkgs/by-name/gt/gti/package.nix index faf0dcfc84680..c7ce9c56b4ddc 100644 --- a/pkgs/by-name/gt/gti/package.nix +++ b/pkgs/by-name/gt/gti/package.nix @@ -32,12 +32,12 @@ 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"; - maintainers = with maintainers; [ fadenb ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ fadenb ]; + platforms = lib.platforms.unix; mainProgram = "gti"; }; } diff --git a/pkgs/by-name/gt/gtk-doc/package.nix b/pkgs/by-name/gt/gtk-doc/package.nix index ad8c58cc3de17..c9990edc2ed9e 100644 --- a/pkgs/by-name/gt/gtk-doc/package.nix +++ b/pkgs/by-name/gt/gtk-doc/package.nix @@ -92,10 +92,10 @@ 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 = teams.gnome.members ++ (with maintainers; [ pSub ]); + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members ++ (with lib.maintainers; [ pSub ]); }; } diff --git a/pkgs/by-name/gt/gtk-frdp/package.nix b/pkgs/by-name/gt/gtk-frdp/package.nix index b2956f1926aab..6128d1f430423 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 rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gtk-frdp"; description = "RDP viewer widget for GTK"; - maintainers = teams.gnome.members; - license = licenses.lgpl3Plus; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 079f525bd7127..ce196503e73ca 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 e0abdfd6fb6cd..a65ea2271839f 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 = [ maintainers.matthewbauer ]; - platforms = platforms.darwin; + maintainers = [ lib.maintainers.matthewbauer ]; + 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-server/package.nix b/pkgs/by-name/gt/gtk-server/package.nix index 01535ac881033..b9e3dfd7d2efe 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 c01f39ef028ca..ea90d636bc024 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 d50ef04a53fa9..f30d95ee7653c 100644 --- a/pkgs/by-name/gt/gtk-vnc/package.nix +++ b/pkgs/by-name/gt/gtk-vnc/package.nix @@ -84,15 +84,15 @@ stdenv.mkDerivation rec { }; }; - 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 c98a8dc764cb0..25f90a4c5b317 100644 --- a/pkgs/by-name/gt/gtk4-layer-shell/package.nix +++ b/pkgs/by-name/gt/gtk4-layer-shell/package.nix @@ -63,11 +63,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 c6cce92c1fa38..528b623f0857c 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/gtkextra/package.nix b/pkgs/by-name/gt/gtkextra/package.nix index cdaa88e981618..a5391953df48b 100644 --- a/pkgs/by-name/gt/gtkextra/package.nix +++ b/pkgs/by-name/gt/gtkextra/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { libjpeg ]; - meta = with lib; { + meta = { homepage = "https://gtkextra.sourceforge.net/"; description = "GtkExtra is a useful set of widgets for creating GUI's for GTK+"; - license = licenses.lgpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ tesq0 ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ tesq0 ]; }; } diff --git a/pkgs/by-name/gt/gtkhash/package.nix b/pkgs/by-name/gt/gtkhash/package.nix index e28674b5cd70d..86f50df8c1597 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 97782684a54d8..4f183490e33a3 100644 --- a/pkgs/by-name/gt/gtkhtml/package.nix +++ b/pkgs/by-name/gt/gtkhtml/package.nix @@ -55,8 +55,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 9a7c543b11671..d54d037eaf761 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 80b65a5d70656..d15f94647c280 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 0b11db2e5566b..ed837b3aaff69 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 60e5fa4a32f0f..6b79aef54e617 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/gtt/package.nix b/pkgs/by-name/gt/gtt/package.nix index fb52b0b94ae18..57beed4bc0324 100644 --- a/pkgs/by-name/gt/gtt/package.nix +++ b/pkgs/by-name/gt/gtt/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Google Translate TUI (Originally). Now support Apertium, Argos, Bing, ChatGPT, DeepL, Google, Reverso"; homepage = "https://github.com/eeeXun/gtt"; - license = licenses.mit; - maintainers = with maintainers; [ linuxissuper ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ linuxissuper ]; mainProgram = "gtt"; }; } diff --git a/pkgs/by-name/gu/gubbi-font/package.nix b/pkgs/by-name/gu/gubbi-font/package.nix index dbc5109a318e2..d4afd5142ced7 100644 --- a/pkgs/by-name/gu/gubbi-font/package.nix +++ b/pkgs/by-name/gu/gubbi-font/package.nix @@ -24,11 +24,11 @@ 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; - maintainers = with maintainers; [ ehmry ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ehmry ]; }; } diff --git a/pkgs/by-name/gu/gucci/package.nix b/pkgs/by-name/gu/gucci/package.nix index 4660c1a97ba52..4371a436f6a5d 100644 --- a/pkgs/by-name/gu/gucci/package.nix +++ b/pkgs/by-name/gu/gucci/package.nix @@ -38,11 +38,11 @@ buildGoModule rec { "-skip=^TestIntegration" ]; - meta = with lib; { + meta = { description = "Simple CLI templating tool written in golang"; mainProgram = "gucci"; homepage = "https://github.com/noqcks/gucci"; - license = licenses.mit; - maintainers = with maintainers; [ braydenjw ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ braydenjw ]; }; } diff --git a/pkgs/by-name/gu/guff/package.nix b/pkgs/by-name/gu/guff/package.nix index 17be43aba7bde..401bb15a481b1 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 dbb87edb5d037..6b5800842e330 100644 --- a/pkgs/by-name/gu/guile-aspell/package.nix +++ b/pkgs/by-name/gu/guile-aspell/package.nix @@ -37,11 +37,11 @@ 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; - maintainers = with maintainers; [ snowflake ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ snowflake ]; 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 0a305451958e2..2eec96809db57 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-chickadee/package.nix b/pkgs/by-name/gu/guile-chickadee/package.nix index f7a59f14b798a..7ea587c08bedf 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 24be48cb09107..08546c031bf94 100644 --- a/pkgs/by-name/gu/guile-commonmark/package.nix +++ b/pkgs/by-name/gu/guile-commonmark/package.nix @@ -35,11 +35,11 @@ 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; - maintainers = with maintainers; [ ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.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 7881a5edf8813..b411324ad1e34 100644 --- a/pkgs/by-name/gu/guile-config/package.nix +++ b/pkgs/by-name/gu/guile-config/package.nix @@ -31,11 +31,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 a2a6468941ddb..c2332092c1305 100644 --- a/pkgs/by-name/gu/guile-fibers/package.nix +++ b/pkgs/by-name/gu/guile-fibers/package.nix @@ -38,11 +38,11 @@ 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; - maintainers = with maintainers; [ vyp ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ vyp ]; 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 8c461558ed555..f4366249f90d2 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-goblins/package.nix b/pkgs/by-name/gu/guile-goblins/package.nix index 50168628b8950..d2234d2762783 100644 --- a/pkgs/by-name/gu/guile-goblins/package.nix +++ b/pkgs/by-name/gu/guile-goblins/package.nix @@ -35,11 +35,11 @@ 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; - maintainers = with maintainers; [ offsetcyan ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ offsetcyan ]; 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 4a7ae9bef5d6f..51ce03102c8c8 100644 --- a/pkgs/by-name/gu/guile-hall/package.nix +++ b/pkgs/by-name/gu/guile-hall/package.nix @@ -51,12 +51,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 2955c87522b64..513f2af37f90e 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 d6d51c9878a88..2a6574802eaa8 100644 --- a/pkgs/by-name/gu/guile-lib/package.nix +++ b/pkgs/by-name/gu/guile-lib/package.nix @@ -44,7 +44,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 = '' @@ -53,8 +53,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; [ vyp foo-dogsquared ]; diff --git a/pkgs/by-name/gu/guile-lzlib/package.nix b/pkgs/by-name/gu/guile-lzlib/package.nix index af6eec44f9ec5..d619818a14682 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 2149ed4227593..43281d2f632e9 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-ncurses/package.nix b/pkgs/by-name/gu/guile-ncurses/package.nix index 16272d2758056..51941046b3801 100644 --- a/pkgs/by-name/gu/guile-ncurses/package.nix +++ b/pkgs/by-name/gu/guile-ncurses/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { # XXX: 1 of 65 tests failed. doCheck = false; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/guile-ncurses/"; description = "Scheme interface to the NCurses libraries"; mainProgram = "guile-ncurses-shell"; @@ -54,8 +54,8 @@ stdenv.mkDerivation rec { interface functionality is built on the ncurses libraries: curses, form, panel, and menu. ''; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ vyp ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ vyp ]; 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 f0ffc65863469..2772883c738ab 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; - maintainers = with maintainers; [ vyp ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ vyp ]; + 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 2c77b99ca18dd..ba6498339cc68 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-sdl2/package.nix b/pkgs/by-name/gu/guile-sdl2/package.nix index cc39d0fe299ec..6b529ca83d230 100644 --- a/pkgs/by-name/gu/guile-sdl2/package.nix +++ b/pkgs/by-name/gu/guile-sdl2/package.nix @@ -43,14 +43,14 @@ 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 vyp ]; - 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 aad799d81798e..a14db6ec445d1 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 = "A 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 27ca1cf25668d..47db37ceda65a 100644 --- a/pkgs/by-name/gu/guile-sjson/package.nix +++ b/pkgs/by-name/gu/guile-sjson/package.nix @@ -30,11 +30,11 @@ 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; - maintainers = with maintainers; [ galaxy ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ galaxy ]; 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 c77ee9df5cb49..c65a13f836943 100644 --- a/pkgs/by-name/gu/guile-ssh/package.nix +++ b/pkgs/by-name/gu/guile-ssh/package.nix @@ -58,11 +58,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 f288f6299bf40..a0b984d541bb8 100644 --- a/pkgs/by-name/gu/guile-xcb/package.nix +++ b/pkgs/by-name/gu/guile-xcb/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { "GUILE_AUTO_COMPILE=0" ]; - meta = with lib; { + meta = { homepage = "https://github.com/mwitmer/guile-xcb"; description = "XCB bindings for Guile"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ vyp ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ vyp ]; 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 4b35092837633..8478f8924ac7d 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/gummy/package.nix b/pkgs/by-name/gu/gummy/package.nix index e43ac701772aa..3757edb98e8f7 100644 --- a/pkgs/by-name/gu/gummy/package.nix +++ b/pkgs/by-name/gu/gummy/package.nix @@ -71,14 +71,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 5b60b62ac0569..2a59e075278c8 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 59145c2c421a0..d0de5e5455055 100644 --- a/pkgs/by-name/gu/gupnp-av/package.nix +++ b/pkgs/by-name/gu/gupnp-av/package.nix @@ -63,10 +63,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 848303ff58ed8..eb197f9414910 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-igd/package.nix b/pkgs/by-name/gu/gupnp-igd/package.nix index 7d26c68a68bc9..a0b0cb33c4fa9 100644 --- a/pkgs/by-name/gu/gupnp-igd/package.nix +++ b/pkgs/by-name/gu/gupnp-igd/package.nix @@ -66,10 +66,10 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Library to handle UPnP IGD port mapping"; homepage = "http://www.gupnp.org/"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + 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 e40546c094c7c..27b36c550995c 100644 --- a/pkgs/by-name/gu/gupnp-tools/package.nix +++ b/pkgs/by-name/gu/gupnp-tools/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { }; }; - 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; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gu/gusb/package.nix b/pkgs/by-name/gu/gusb/package.nix index c13c40baed3dc..e56ce34c4b442 100644 --- a/pkgs/by-name/gu/gusb/package.nix +++ b/pkgs/by-name/gu/gusb/package.nix @@ -96,12 +96,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 c49ba59dfd819..a17c96ac8b5ec 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/gv/gvpe/package.nix b/pkgs/by-name/gv/gvpe/package.nix index cca9f556a2d5e..557ad7c48c041 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@${nettools}/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/gx/gx-go/package.nix b/pkgs/by-name/gx/gx-go/package.nix index 1bb74d913bd2b..e4c4dfb9d2507 100644 --- a/pkgs/by-name/gx/gx-go/package.nix +++ b/pkgs/by-name/gx/gx-go/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-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/gxemul/package.nix b/pkgs/by-name/gx/gxemul/package.nix index 1825a36e05a1f..4b751e1070488 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ AndersonTorres ]; + 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 2692a65239266..66303d7b57dde 100644 --- a/pkgs/by-name/gx/gxkb/package.nix +++ b/pkgs/by-name/gx/gxkb/package.nix @@ -52,12 +52,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/gxmatcheq-lv2/package.nix b/pkgs/by-name/gx/gxmatcheq-lv2/package.nix index e49f561fb3310..77a47daac8303 100644 --- a/pkgs/by-name/gx/gxmatcheq-lv2/package.nix +++ b/pkgs/by-name/gx/gxmatcheq-lv2/package.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation rec { installFlags = [ "INSTALL_DIR=$(out)/lib/lv2" ]; - meta = with lib; { + meta = { homepage = "https://github.com/brummer10/GxMatchEQ.lv2"; description = "Matching Equalizer to apply EQ curve from one source to another source"; - maintainers = [ maintainers.magnetophon ]; - license = licenses.gpl3; + maintainers = [ lib.maintainers.magnetophon ]; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/gx/gxplugins-lv2/package.nix b/pkgs/by-name/gx/gxplugins-lv2/package.nix index 2ea21f9a155c4..5e18dac37c56c 100644 --- a/pkgs/by-name/gx/gxplugins-lv2/package.nix +++ b/pkgs/by-name/gx/gxplugins-lv2/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { done ''; - 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; }; } diff --git a/pkgs/by-name/gy/gyb/package.nix b/pkgs/by-name/gy/gyb/package.nix index ce093a3f302aa..22e930be13b2e 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 6800a5aa9445d..9876b9ac77376 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/h2/h2o/package.nix b/pkgs/by-name/h2/h2o/package.nix index 3fafadb333f86..4c9229140da92 100644 --- a/pkgs/by-name/h2/h2o/package.nix +++ b/pkgs/by-name/h2/h2o/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { description = "Optimized HTTP/1 and HTTP/2 server"; homepage = "https://h2o.examp1e.net"; - license = licenses.mit; - maintainers = with maintainers; [ thoughtpolice ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thoughtpolice ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ha/hackertyper/package.nix b/pkgs/by-name/ha/hackertyper/package.nix index f482c3a6815a4..abcae45d8de77 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/hackneyed/package.nix b/pkgs/by-name/ha/hackneyed/package.nix index 6e63869b6077d..174e720a965b4 100644 --- a/pkgs/by-name/ha/hackneyed/package.nix +++ b/pkgs/by-name/ha/hackneyed/package.nix @@ -50,11 +50,11 @@ stdenvNoCC.mkDerivation rec { --replace 'inkscape-version: $(INKSCAPE)' 'inkscape-version:' ''; - meta = with lib; { + meta = { homepage = "https://gitlab.com/Enthymeme/hackneyed-x11-cursors"; description = "Scalable cursor theme that resembles Windows 3.x/NT 3.x cursors"; - platforms = platforms.all; - license = licenses.mit; - maintainers = with maintainers; [ somasis ]; + platforms = lib.platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ somasis ]; }; } diff --git a/pkgs/by-name/ha/hackrf/package.nix b/pkgs/by-name/ha/hackrf/package.nix index 999353e527bd1..8450e79a9831a 100644 --- a/pkgs/by-name/ha/hackrf/package.nix +++ b/pkgs/by-name/ha/hackrf/package.nix @@ -43,11 +43,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/hacksaw/package.nix b/pkgs/by-name/ha/hacksaw/package.nix index ddf703433b116..0cace8513db2b 100644 --- a/pkgs/by-name/ha/hacksaw/package.nix +++ b/pkgs/by-name/ha/hacksaw/package.nix @@ -29,12 +29,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-CDDJmWnAcXJ4wPfSPvu2DfthaFwZGZk1XXMNTA1g0+c="; - meta = with lib; { + meta = { description = "Lightweight selection tool for usage in screenshot scripts etc"; homepage = "https://github.com/neXromancers/hacksaw"; - license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ TethysSvensson ]; - platforms = platforms.linux; + license = with lib.licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ TethysSvensson ]; + platforms = lib.platforms.linux; mainProgram = "hacksaw"; }; } diff --git a/pkgs/by-name/ha/hacpack/package.nix b/pkgs/by-name/ha/hacpack/package.nix index d6d4ea59a104f..06ab86e4685c0 100644 --- a/pkgs/by-name/ha/hacpack/package.nix +++ b/pkgs/by-name/ha/hacpack/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { cp ./hacpack $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/The-4n/hacPack"; description = "Make and repack Nintendo Switch NCAs/NSPs"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "hacpack"; }; } diff --git a/pkgs/by-name/ha/hactool/package.nix b/pkgs/by-name/ha/hactool/package.nix index 8bc55829d8a5d..b0ccdfb0bf378 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 61ba00d2c06bd..ed69f896b34e1 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/half/package.nix b/pkgs/by-name/ha/half/package.nix index c5ab04a67972e..06651364202e5 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 c1d0a886554f2..3e502dcc0841a 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 730fc63aa7485..3552f1539e1d2 100644 --- a/pkgs/by-name/ha/halibut/package.nix +++ b/pkgs/by-name/ha/halibut/package.nix @@ -20,12 +20,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/hammer/package.nix b/pkgs/by-name/ha/hammer/package.nix index 20f8f0580ef5d..48516bb4ea0fa 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 7ad5fbaac6b54..ad22e8a5aefe1 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 dc284589c6107..b2702c02c4070 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/handlr-regex/package.nix b/pkgs/by-name/ha/handlr-regex/package.nix index c29ea891ff5f2..2097c16ce6d74 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 5b69d273faa9d..4d6d08e8a06fd 100644 --- a/pkgs/by-name/ha/handlr/package.nix +++ b/pkgs/by-name/ha/handlr/package.nix @@ -38,11 +38,11 @@ rustPlatform.buildRustPackage rec { --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 3495969e6abcb..50fb79d59ed58 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 8314ef012ef20..c51631caa489f 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/hap-py/package.nix b/pkgs/by-name/ha/hap-py/package.nix index d953de197b31f..a0101142851fe 100644 --- a/pkgs/by-name/ha/hap-py/package.nix +++ b/pkgs/by-name/ha/hap-py/package.nix @@ -82,11 +82,11 @@ stdenv.mkDerivation rec { --add-flags "--engine-vcfeval-path=${rtg-tools}/bin/rtg" ''; - meta = with lib; { + meta = { description = "Compare genetics variants against a gold dataset"; homepage = "https://github.com/Illumina/hap.py"; - license = licenses.bsd2; - maintainers = with maintainers; [ apraga ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ apraga ]; mainProgram = "hap.py"; }; } diff --git a/pkgs/by-name/ha/hardinfo/package.nix b/pkgs/by-name/ha/hardinfo/package.nix index c7cb86f6d6ef0..b1175b25bfd98 100644 --- a/pkgs/by-name/ha/hardinfo/package.nix +++ b/pkgs/by-name/ha/hardinfo/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { rmdir "$out/usr" ''; - meta = with lib; { + meta = { homepage = "http://hardinfo.org/"; description = "Display information about your hardware and operating system"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ bjornfor ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/ha/harminv/package.nix b/pkgs/by-name/ha/harminv/package.nix index f76504b64ba07..6bd60279f5743 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/harmonist/package.nix b/pkgs/by-name/ha/harmonist/package.nix index 2e0ba2c05963f..5af05244b3dd8 100644 --- a/pkgs/by-name/ha/harmonist/package.nix +++ b/pkgs/by-name/ha/harmonist/package.nix @@ -20,7 +20,7 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Stealth coffee-break roguelike game"; mainProgram = "harmonist"; longDescription = '' @@ -32,7 +32,7 @@ buildGoModule rec { adaptability for character progression. ''; homepage = "https://harmonist.tuxfamily.org/"; - license = licenses.isc; + license = lib.licenses.isc; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ha/has/package.nix b/pkgs/by-name/ha/has/package.nix index 8f629a440a72a..bb2c04cf2becc 100644 --- a/pkgs/by-name/ha/has/package.nix +++ b/pkgs/by-name/ha/has/package.nix @@ -23,12 +23,12 @@ stdenvNoCC.mkDerivation (finalAttrs: rec { 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 48106b2eecf78..801a07864443a 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 2915b24014b60..f69a4ae2a1e05 100644 --- a/pkgs/by-name/ha/hash-slinger/package.nix +++ b/pkgs/by-name/ha/hash-slinger/package.nix @@ -55,10 +55,10 @@ 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; - maintainers = with maintainers; [ leenaars ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ leenaars ]; }; } diff --git a/pkgs/by-name/ha/hash_extender/package.nix b/pkgs/by-name/ha/hash_extender/package.nix index 0c24640efe0a4..059f8d56d5968 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 db70ed37b1dc9..3b457166f480c 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 63f99e2baf862..330cd039de7fb 100644 --- a/pkgs/by-name/ha/hashcat-utils/package.nix +++ b/pkgs/by-name/ha/hashcat-utils/package.nix @@ -24,11 +24,11 @@ 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; - maintainers = with maintainers; [ fadenb ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ fadenb ]; }; } diff --git a/pkgs/by-name/ha/hashdeep/package.nix b/pkgs/by-name/ha/hashdeep/package.nix index 0b6fe047cecd6..f0a225e9bfe1d 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-up/package.nix b/pkgs/by-name/ha/hashi-up/package.nix index 29f0e3875c7be..b63d5c866d2d9 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 986e694a884c6..a7d528725e0fc 100644 --- a/pkgs/by-name/ha/hashid/package.nix +++ b/pkgs/by-name/ha/hashid/package.nix @@ -15,11 +15,11 @@ python3Packages.buildPythonApplication { hash = "sha256-R2r/UYRcHbpfOz/XqtSUIpd826eT1Erfo7frAiArT34="; }; - 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 57a7d39612e66..4ec25993f579f 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; - maintainers = teams.pantheon.members; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.pantheon.members; + platforms = lib.platforms.linux; mainProgram = "com.github.artemanufrij.hashit"; }; } diff --git a/pkgs/by-name/ha/hashrat/package.nix b/pkgs/by-name/ha/hashrat/package.nix index e63122a05ef7c..53dd3e431f4ef 100644 --- a/pkgs/by-name/ha/hashrat/package.nix +++ b/pkgs/by-name/ha/hashrat/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Command-line hash-generation utility"; mainProgram = "hashrat"; longDescription = '' @@ -37,8 +37,8 @@ stdenv.mkDerivation rec { Includes recursive file hashing and other features. ''; homepage = "http://www.cjpaget.co.uk/Code/Hashrat"; - 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/ha/hasklig/package.nix b/pkgs/by-name/ha/hasklig/package.nix index 3b83b91576b3f..8bdb1a962a129 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 8c4317b13eb88..059e48dff92c9 100644 --- a/pkgs/by-name/ha/hasmail/package.nix +++ b/pkgs/by-name/ha/hasmail/package.nix @@ -33,11 +33,11 @@ buildGoModule rec { 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 289449cf7b39a..432d418a5c5bc 100644 --- a/pkgs/by-name/ha/haste-server/package.nix +++ b/pkgs/by-name/ha/haste-server/package.nix @@ -30,11 +30,11 @@ buildNpmPackage rec { }; }; - 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 0ec51f9fb3556..70a40463184b4 100644 --- a/pkgs/by-name/ha/haxor-news/package.nix +++ b/pkgs/by-name/ha/haxor-news/package.nix @@ -68,11 +68,11 @@ buildPythonApplication rec { "-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 45ec85a3e8cf2..eedda1aa1baad 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 67294d37ff9d1..6b92486e6f64e 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 6b4b79bdc4659..518c5d514b105 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 671dfb4ed3831..f2820f928d5f8 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-G6jmdosQHBA+n7MgVAlzdSTqPYb5d+k4b4EzAI384FQ="; - 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/hclfmt/package.nix b/pkgs/by-name/hc/hclfmt/package.nix index a5770aef2aeab..1c4c8b76aafdf 100644 --- a/pkgs/by-name/hc/hclfmt/package.nix +++ b/pkgs/by-name/hc/hclfmt/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { # hclfmt. subPackages = [ "cmd/hclfmt" ]; - meta = with lib; { + meta = { description = "Code formatter for the Hashicorp Configuration Language (HCL) format"; homepage = "https://github.com/hashicorp/hcl/tree/main/cmd/hclfmt"; - license = licenses.mpl20; + license = lib.licenses.mpl20; mainProgram = "hclfmt"; - maintainers = with maintainers; [ zimbatm ]; + maintainers = with lib.maintainers; [ zimbatm ]; }; } diff --git a/pkgs/by-name/hc/hcxdumptool/package.nix b/pkgs/by-name/hc/hcxdumptool/package.nix index 9072ec49a6c72..7e3124e1978ae 100644 --- a/pkgs/by-name/hc/hcxdumptool/package.nix +++ b/pkgs/by-name/hc/hcxdumptool/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/ZerBea/hcxdumptool"; description = "Small tool to capture packets from wlan devices"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ danielfullmer ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ danielfullmer ]; mainProgram = "hcxdumptool"; }; } diff --git a/pkgs/by-name/hc/hcxtools/package.nix b/pkgs/by-name/hc/hcxtools/package.nix index 05f18f23b421a..09b51327a9dbc 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 c87179f74c1aa..dcf818d1f2c12 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 0152919e9b178..20d091a7dff09 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 76e2dc4c4fc43..3e66c62e7536c 100644 --- a/pkgs/by-name/hd/hdapsd/package.nix +++ b/pkgs/by-name/hd/hdapsd/package.nix @@ -15,12 +15,12 @@ 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; - maintainers = [ maintainers.ehmry ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.ehmry ]; }; } diff --git a/pkgs/by-name/hd/hddtemp/package.nix b/pkgs/by-name/hd/hddtemp/package.nix index ab315202405ec..f2917aa97f8d4 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 c711432bea02f..170bca179423b 100644 --- a/pkgs/by-name/hd/hdf4/package.nix +++ b/pkgs/by-name/hd/hdf4/package.nix @@ -94,11 +94,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 = with maintainers; [ ]; - platforms = platforms.unix; - license = licenses.bsdOriginal; + maintainers = with lib.maintainers; [ ]; + 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 02682cd81f04c..eec0a2760c591 100644 --- a/pkgs/by-name/hd/hdf5-blosc/package.nix +++ b/pkgs/by-name/hd/hdf5-blosc/package.nix @@ -45,10 +45,10 @@ stdenv.mkDerivation rec { substituteAll ${./blosc_filter.pc.in} $out/lib/pkgconfig/blosc_filter.pc ''; - meta = with lib; { + meta = { description = "Filter for HDF5 that uses the Blosc compressor"; homepage = "https://github.com/Blosc/hdf5-blosc"; - license = licenses.mit; - maintainers = with maintainers; [ bhipple ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bhipple ]; }; } diff --git a/pkgs/by-name/hd/hdhomerun-config-gui/package.nix b/pkgs/by-name/hd/hdhomerun-config-gui/package.nix index 4256102988f9b..8707b20941f1d 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 9f8d6dff3249d..d65d8254b0c77 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 rec { 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 0ca1d37c4888c..7345bc609a178 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/hdr10plus_tool/package.nix b/pkgs/by-name/hd/hdr10plus_tool/package.nix index f8046e9120a2d..abf10475f8f14 100644 --- a/pkgs/by-name/hd/hdr10plus_tool/package.nix +++ b/pkgs/by-name/hd/hdr10plus_tool/package.nix @@ -32,12 +32,12 @@ rustPlatform.buildRustPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "CLI utility to work with HDR10+ in HEVC files."; homepage = "https://github.com/quietvoid/hdr10plus_tool"; changelog = "https://github.com/quietvoid/hdr10plus_tool/releases"; - license = licenses.mit; - maintainers = with maintainers; [ johnrtitor ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ johnrtitor ]; mainProgram = "hdr10plus_tool"; }; } diff --git a/pkgs/by-name/hd/hdt/package.nix b/pkgs/by-name/hd/hdt/package.nix index 179054dcab06c..07dfd80c2ed96 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/headlines/package.nix b/pkgs/by-name/he/headlines/package.nix index 74b01862ad190..d767192c016df 100644 --- a/pkgs/by-name/he/headlines/package.nix +++ b/pkgs/by-name/he/headlines/package.nix @@ -71,12 +71,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 816dee0e0d1a4..862e983ef20ae 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/headset-charge-indicator/package.nix b/pkgs/by-name/he/headset-charge-indicator/package.nix index f5df4146a645d..08b9d73d2954f 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 = "A 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 d0288b78f1baa..53b0710e3f277 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 4ca12f94739db..dcb001df1eb97 100644 --- a/pkgs/by-name/he/headsetcontrol/package.nix +++ b/pkgs/by-name/he/headsetcontrol/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { hidapi ]; - 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, @@ -41,9 +41,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 01770abacf775..01979047b1591 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 e87cda81e63fc..4780ac4ee368a 100644 --- a/pkgs/by-name/he/health/package.nix +++ b/pkgs/by-name/he/health/package.nix @@ -67,12 +67,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"; maintainers = lib.teams.gnome-circle.members; - 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 c0c42962278f2..d7d328a62b63b 100644 --- a/pkgs/by-name/he/healthchecks/package.nix +++ b/pkgs/by-name/he/healthchecks/package.nix @@ -92,10 +92,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; - maintainers = with maintainers; [ phaer ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ phaer ]; }; } diff --git a/pkgs/by-name/he/heatseeker/package.nix b/pkgs/by-name/he/heatseeker/package.nix index 10d1772dad59a..d0230a1d513a6 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 ec5a15b23a795..6c5d8e6a088fc 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/hebcal/package.nix b/pkgs/by-name/he/hebcal/package.nix index c21900545a890..296ccea2bf716 100644 --- a/pkgs/by-name/he/hebcal/package.nix +++ b/pkgs/by-name/he/hebcal/package.nix @@ -20,13 +20,13 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://hebcal.github.io"; description = "Perpetual Jewish Calendar"; longDescription = "Hebcal is a program which prints out the days in the Jewish calendar for a given Gregorian year. Hebcal is fairly flexible in terms of which events in the Jewish calendar it displays."; - license = licenses.gpl2Plus; - maintainers = [ maintainers.hhm ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.hhm ]; + platforms = lib.platforms.all; mainProgram = "hebcal"; }; } diff --git a/pkgs/by-name/he/hecate/package.nix b/pkgs/by-name/he/hecate/package.nix index 62265a84c201f..581db55be4362 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/hedgedoc-cli/package.nix b/pkgs/by-name/he/hedgedoc-cli/package.nix index 78eb00563a88f..fbab9f3fc49c4 100644 --- a/pkgs/by-name/he/hedgedoc-cli/package.nix +++ b/pkgs/by-name/he/hedgedoc-cli/package.nix @@ -46,10 +46,10 @@ stdenv.mkDerivation { hedgedoc-cli help ''; - meta = with lib; { + meta = { description = "Hedgedoc CLI"; homepage = "https://github.com/hedgedoc/cli"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ drupol ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ drupol ]; }; } diff --git a/pkgs/by-name/he/heisenbridge/package.nix b/pkgs/by-name/he/heisenbridge/package.nix index e6c8ca91c379f..d88ece94169c7 100644 --- a/pkgs/by-name/he/heisenbridge/package.nix +++ b/pkgs/by-name/he/heisenbridge/package.nix @@ -30,11 +30,11 @@ python3.pkgs.buildPythonApplication rec { pytestCheckHook ]; - 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 5fdd1e39c4c05..e7e95a44ea299 100644 --- a/pkgs/by-name/he/hekatomb/package.nix +++ b/pkgs/by-name/he/hekatomb/package.nix @@ -39,11 +39,11 @@ python3.pkgs.buildPythonApplication rec { "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 3a54a6faa0fc8..bd65764ba3b68 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/hello-wayland/package.nix b/pkgs/by-name/he/hello-wayland/package.nix index d4f98aee64654..e3ae10edbfd4f 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 bcc89207c3949..26def478c6289 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 f3f5136ab4deb..5b6c862098fd3 100644 --- a/pkgs/by-name/he/helmsman/package.nix +++ b/pkgs/by-name/he/helmsman/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { 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 6d44830a98ac8..222f74529b94e 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/helvum/package.nix b/pkgs/by-name/he/helvum/package.nix index 9ba438c3df1f1..e534d2f444780 100644 --- a/pkgs/by-name/he/helvum/package.nix +++ b/pkgs/by-name/he/helvum/package.nix @@ -53,12 +53,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 8563227ed7c95..9d819530488c7 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 6944031910ed0..32960662ccbc4 100644 --- a/pkgs/by-name/he/hepmc2/package.nix +++ b/pkgs/by-name/he/hepmc2/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { "-Dlength:STRING=MM" ]; - 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 be1b69a3a263b..84c4ad9906003 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 dedc2e4c290e9..6e21c0ae9e18d 100644 --- a/pkgs/by-name/he/herbe/package.nix +++ b/pkgs/by-name/he/herbe/package.nix @@ -34,13 +34,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 64ecfeefe2ae8..2ff46a930f651 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/hermit/package.nix b/pkgs/by-name/he/hermit/package.nix index 56d37f33a9f76..7188945f7c95a 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 7a9c0dc2ac28b..6335f0c41056f 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/herwig/package.nix b/pkgs/by-name/he/herwig/package.nix index 9e6ea0e4586aa..a04302e2fbf54 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 01fb51b09854d..849d4bbd46b41 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 f5f7350792e2d..d296ff01f50bd 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 5893d1cf9ed03..577e00a57239d 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 0db1b3aa6eb30..93d6986f00c52 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-nldA8gDMj0iO+HgatiuMqzR6ZCjbxFsTp5pDGbFKA1k="; - 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/hexio/package.nix b/pkgs/by-name/he/hexio/package.nix index da8bb23251ce0..7b8fa1f4a8520 100644 --- a/pkgs/by-name/he/hexio/package.nix +++ b/pkgs/by-name/he/hexio/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { make DESTDIR=$out PREFIX=/ install ''; - 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; - maintainers = with maintainers; [ leenaars ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ leenaars ]; }; } diff --git a/pkgs/by-name/he/hey/package.nix b/pkgs/by-name/he/hey/package.nix index 08735573fb5a4..41ea58e7a8f30 100644 --- a/pkgs/by-name/he/hey/package.nix +++ b/pkgs/by-name/he/hey/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "HTTP load generator, ApacheBench (ab) replacement"; homepage = "https://github.com/rakyll/hey"; - license = licenses.asl20; - maintainers = with maintainers; [ Br1ght0ne ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Br1ght0ne ]; mainProgram = "hey"; }; } diff --git a/pkgs/by-name/hf/hfst-ospell/package.nix b/pkgs/by-name/hf/hfst-ospell/package.nix index 0248ff05ba2ba..9c8de5928c4cf 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 47c17f0cf0be3..5699810bdff17 100644 --- a/pkgs/by-name/hf/hfst/package.nix +++ b/pkgs/by-name/hf/hfst/package.nix @@ -44,11 +44,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 048490fbe9c2f..af81dc16b893d 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/hiawatha/package.nix b/pkgs/by-name/hi/hiawatha/package.nix index 9ff18400619a6..84312da080168 100644 --- a/pkgs/by-name/hi/hiawatha/package.nix +++ b/pkgs/by-name/hi/hiawatha/package.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation (finalAttrs: { inherit enableTls; }; - meta = with lib; { + meta = { homepage = "https://hiawatha.leisink.net/"; description = "Advanced and secure webserver"; - license = licenses.gpl2Only; - platforms = platforms.unix; # "Hiawatha runs perfectly on Linux, BSD and MacOS X" + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; # "Hiawatha runs perfectly on Linux, BSD and MacOS X" mainProgram = "hiawatha"; maintainers = [ ]; }; diff --git a/pkgs/by-name/hi/hicolor-icon-theme/package.nix b/pkgs/by-name/hi/hicolor-icon-theme/package.nix index 0d528243a8654..5d1ce8baff396 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 b6dd65004943b..ec1ed6626b849 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 6b90d588848a3..b24aee5b88d1b 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; - maintainers = teams.freedesktop.members; + license = lib.licenses.mit; + maintainers = lib.teams.freedesktop.members; }; } diff --git a/pkgs/by-name/hi/hidrd/package.nix b/pkgs/by-name/hi/hidrd/package.nix index 2eb5821afec6b..2e5c80780a04d 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 e3f154965be87..b36e1c33278a1 100644 --- a/pkgs/by-name/hi/hidviz/package.nix +++ b/pkgs/by-name/hi/hidviz/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { asio ]; - 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/hifiscan/package.nix b/pkgs/by-name/hi/hifiscan/package.nix index deedff446c16e..a93d07c8e19fc 100644 --- a/pkgs/by-name/hi/hifiscan/package.nix +++ b/pkgs/by-name/hi/hifiscan/package.nix @@ -26,11 +26,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 db3e6a19f6c8e..55cd6adb23ca0 100644 --- a/pkgs/by-name/hi/highfive/package.nix +++ b/pkgs/by-name/hi/highfive/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { "-DHIGHFIVE_USE_INSTALL_DEPS=ON" ] ++ (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 d8a0ca72988be..c709fbcb52a26 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/hi/highs/package.nix b/pkgs/by-name/hi/highs/package.nix index 8732fb834d008..4184c7e23d804 100644 --- a/pkgs/by-name/hi/highs/package.nix +++ b/pkgs/by-name/hi/highs/package.nix @@ -34,12 +34,12 @@ 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; [ silky ]; + maintainers = with lib.maintainers; [ silky ]; }; }) diff --git a/pkgs/by-name/hi/hime/package.nix b/pkgs/by-name/hi/hime/package.nix index 93c36cbf9f450..569e2d741903f 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-firefox/package.nix b/pkgs/by-name/hi/himitsu-firefox/package.nix index fb7d5c098f145..3c3bba6bd353a 100644 --- a/pkgs/by-name/hi/himitsu-firefox/package.nix +++ b/pkgs/by-name/hi/himitsu-firefox/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { "DESTDIR=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/himitsu-firefox"; description = "Himitsu integration for Firefox"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ auchter ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ auchter ]; inherit (hare.meta) platforms badPlatforms; broken = true; }; diff --git a/pkgs/by-name/hi/himitsu/package.nix b/pkgs/by-name/hi/himitsu/package.nix index dd3e09a7797ee..9e94441d034c4 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=${builtins.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 b4b2304da600a..6ef8b0c2f16ec 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 3feeb435579df..c8d98a4ea45cc 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 f2966685e158e..4b3f6e4963ca9 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 6b6faeab53c7c..e89fd0514bfd2 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/hivemind/package.nix b/pkgs/by-name/hi/hivemind/package.nix index 0e01aa8aa42b5..83851e90ab1ad 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/hl/hledger-check-fancyassertions/package.nix b/pkgs/by-name/hl/hledger-check-fancyassertions/package.nix index 94ce06940e98f..dc9f385cd3488 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/hm/hmat-oss/package.nix b/pkgs/by-name/hm/hmat-oss/package.nix index f9b9e5e36a09a..51197bc35c014 100644 --- a/pkgs/by-name/hm/hmat-oss/package.nix +++ b/pkgs/by-name/hm/hmat-oss/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Hierarchical matrix C/C++ library"; homepage = "https://github.com/jeromerobert/hmat-oss"; - license = licenses.gpl2; - platforms = platforms.unix; - maintainers = with maintainers; [ gdinh ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ gdinh ]; }; } diff --git a/pkgs/by-name/ho/hobbes/package.nix b/pkgs/by-name/ho/hobbes/package.nix index 7e62d9e026865..e615f75604c08 100644 --- a/pkgs/by-name/ho/hobbes/package.nix +++ b/pkgs/by-name/ho/hobbes/package.nix @@ -58,7 +58,7 @@ llvmPackages.stdenv.mkDerivation { doCheck = true; checkTarget = "test"; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Language and an embedded JIT compiler"; longDescription = '' @@ -66,8 +66,8 @@ llvmPackages.stdenv.mkDerivation { dynamic expression evaluation, data storage and analysis. ''; homepage = "https://github.com/morganstanley/hobbes"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kthielen thmzlt ]; diff --git a/pkgs/by-name/ho/hof/package.nix b/pkgs/by-name/ho/hof/package.nix index 13a14c4a5b13e..3935f5948cdae 100644 --- a/pkgs/by-name/ho/hof/package.nix +++ b/pkgs/by-name/ho/hof/package.nix @@ -31,11 +31,11 @@ buildGo122Module 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"; }; } diff --git a/pkgs/by-name/ho/hol/package.nix b/pkgs/by-name/ho/hol/package.nix index aa3b75810fec4..89c4d875c9048 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 531ca97a2ffe3..cb23093d4e602 100644 --- a/pkgs/by-name/ho/holehe/package.nix +++ b/pkgs/by-name/ho/holehe/package.nix @@ -38,11 +38,11 @@ python3.pkgs.buildPythonApplication rec { "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 0ed9d9232b56f..244faab20018e 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/hologram/package.nix b/pkgs/by-name/ho/hologram/package.nix index 705e6d87af6c1..d3a1ddb2d726c 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/homer/package.nix b/pkgs/by-name/ho/homer/package.nix index 50fe5bf1fc595..cada1a30dbbc7 100644 --- a/pkgs/by-name/ho/homer/package.nix +++ b/pkgs/by-name/ho/homer/package.nix @@ -56,15 +56,15 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "A very simple static homepage for your server."; homepage = "https://homer-demo.netlify.app/"; 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/honcho/package.nix b/pkgs/by-name/ho/honcho/package.nix index d602011878835..4a0adadbd70f1 100644 --- a/pkgs/by-name/ho/honcho/package.nix +++ b/pkgs/by-name/ho/honcho/package.nix @@ -37,12 +37,12 @@ python3Packages.buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Python clone of Foreman, a tool for managing Procfile-based applications"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/nickstenning/honcho"; - maintainers = with maintainers; [ benley ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ benley ]; + platforms = lib.platforms.unix; mainProgram = "honcho"; }; } diff --git a/pkgs/by-name/ho/honeycomb-refinery/package.nix b/pkgs/by-name/ho/honeycomb-refinery/package.nix index 690636870e80a..207f953778770 100644 --- a/pkgs/by-name/ho/honeycomb-refinery/package.nix +++ b/pkgs/by-name/ho/honeycomb-refinery/package.nix @@ -36,10 +36,10 @@ buildGoModule rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/honeycombio/refinery"; description = "Tail-sampling proxy for OpenTelemetry"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; mainProgram = "refinery"; }; diff --git a/pkgs/by-name/ho/honeytrap/package.nix b/pkgs/by-name/ho/honeytrap/package.nix index ecdf20d5f88b3..329eacb157d8f 100644 --- a/pkgs/by-name/ho/honeytrap/package.nix +++ b/pkgs/by-name/ho/honeytrap/package.nix @@ -20,11 +20,11 @@ buildGo122Module { # 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 = [ ]; }; } diff --git a/pkgs/by-name/ho/hop/package.nix b/pkgs/by-name/ho/hop/package.nix index cdf9785287e77..b0b64718a3a8c 100644 --- a/pkgs/by-name/ho/hop/package.nix +++ b/pkgs/by-name/ho/hop/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { "--bigloolibdir=${bigloo}/lib/bigloo/${bigloo-release}/" ]; - meta = with lib; { + meta = { description = "Multi-tier programming language for the Web 2.0 and the so-called diffuse Web"; homepage = "http://hop.inria.fr/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ vbgl ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/by-name/ho/hoppet/package.nix b/pkgs/by-name/ho/hoppet/package.nix index 90a501d04e223..5c75be5ff1097 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 cb9d6492ad61e..a47e3ea828e53 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 95b06655d7d8a..68ebc9a61416d 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 73d17245e4258..21f43b73250df 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 30eba3baca913..12f609feafa06 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 6cc9412266e9c..00ee13adc4bdf 100644 --- a/pkgs/by-name/ho/hostctl/package.nix +++ b/pkgs/by-name/ho/hostctl/package.nix @@ -34,15 +34,15 @@ 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; - maintainers = with maintainers; [ blaggacao ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ blaggacao ]; mainProgram = "hostctl"; }; } diff --git a/pkgs/by-name/ho/hostess/package.nix b/pkgs/by-name/ho/hostess/package.nix index 28ab7185d9dfe..cf3ab4ce0ec62 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 ca2c7866ef4b1..26ce972cfb808 100644 --- a/pkgs/by-name/ho/hostname-debian/package.nix +++ b/pkgs/by-name/ho/hostname-debian/package.nix @@ -21,15 +21,15 @@ stdenv.mkDerivation rec { "MANDIR=$(out)/share/man" ]; - meta = with lib; { + meta = { description = "Utility to set/show the host name or domain name"; longDescription = '' This package provides commands which can be used to display the system's DNS name, and to display or set its hostname or NIS domain name. ''; homepage = "https://tracker.debian.org/pkg/hostname"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ posch ]; - platforms = platforms.gnu; + license = lib.licenses.gpl2Plus; + 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 491447311b392..c9afebf7aa468 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 b1b2ae5437166..bc6d5a4435d73 100644 --- a/pkgs/by-name/ho/hotpatch/package.nix +++ b/pkgs/by-name/ho/hotpatch/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { patches = [ ./no-loader-test.patch ]; - 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/hover/package.nix b/pkgs/by-name/ho/hover/package.nix index 04e4ce63dab05..a8d0763400f20 100644 --- a/pkgs/by-name/ho/hover/package.nix +++ b/pkgs/by-name/ho/hover/package.nix @@ -36,12 +36,12 @@ let hover = buildGoModule rec { inherit pname version; - meta = with lib; { + meta = { description = "Build tool to run Flutter applications on desktop"; homepage = "https://github.com/go-flutter-desktop/hover"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ ericdallo ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ericdallo ]; }; subPackages = [ "." ]; diff --git a/pkgs/by-name/hp/hp2p/package.nix b/pkgs/by-name/hp/hp2p/package.nix index 1d1bd5d80ae27..604572b7303f6 100644 --- a/pkgs/by-name/hp/hp2p/package.nix +++ b/pkgs/by-name/hp/hp2p/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { description = "MPI based benchmark for network diagnostics"; homepage = "https://github.com/cea-hpc/hp2p"; - platforms = platforms.unix; - license = licenses.cecill-c; - maintainers = [ maintainers.bzizou ]; + platforms = lib.platforms.unix; + license = lib.licenses.cecill-c; + maintainers = [ lib.maintainers.bzizou ]; }; } diff --git a/pkgs/by-name/hp/hpcg/package.nix b/pkgs/by-name/hp/hpcg/package.nix index 7a02f5adad8f9..b1fb7dcc1f8c2 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 b17c45e8c56fa..db8b2705403ea 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 e09d835cb70fa..9e8fa52905b8e 100644 --- a/pkgs/by-name/hp/hping/package.nix +++ b/pkgs/by-name/hp/hping/package.nix @@ -61,10 +61,10 @@ stdenv.mkDerivation rec { 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 = "http://www.hping.org/"; - 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 694f8aec1b8c0..1b314e1760431 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/rygel.nix b/pkgs/by-name/hq/hqplayerd/rygel.nix index 23c4d6dd5a705..5e55a6be01ff8 100644 --- a/pkgs/by-name/hq/hqplayerd/rygel.nix +++ b/pkgs/by-name/hq/hqplayerd/rygel.nix @@ -105,11 +105,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; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/hr/hr/package.nix b/pkgs/by-name/hr/hr/package.nix index b5f52e9a6a57a..5e315194a9aa0 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 48a281f3bc908..fce226c0a2f51 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/hss/package.nix b/pkgs/by-name/hs/hss/package.nix index dc2b1cc2abacd..e3f1104af783c 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 657110cc2f18f..a2fd162ef84e3 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 a7955e3963fb8..67288771437c9 100644 --- a/pkgs/by-name/ht/htb-toolkit/package.nix +++ b/pkgs/by-name/ht/htb-toolkit/package.nix @@ -62,12 +62,12 @@ rustPlatform.buildRustPackage { --replace-fail "arg(\"killall\")" "arg(\"${killall}/bin/killall\")" ''; - 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/htgettoken/package.nix b/pkgs/by-name/ht/htgettoken/package.nix index 4fd405b5fd521..f7e8e149ebaa2 100644 --- a/pkgs/by-name/ht/htgettoken/package.nix +++ b/pkgs/by-name/ht/htgettoken/package.nix @@ -32,10 +32,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 00fa778dd53a7..ba42e9cfeab18 100644 --- a/pkgs/by-name/ht/html-tidy/package.nix +++ b/pkgs/by-name/ht/html-tidy/package.nix @@ -39,16 +39,16 @@ 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; - maintainers = with maintainers; [ edwtjo ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ edwtjo ]; 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 acbbd0c811237..dc60d72cb354d 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 ab349979d3f1e..d254c2e080208 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/htmltest/package.nix b/pkgs/by-name/ht/htmltest/package.nix index 9eed514e874dc..05b485ac13d3d 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/htmx-lsp/package.nix b/pkgs/by-name/ht/htmx-lsp/package.nix index 49835f6a679c8..a416e29b901d8 100644 --- a/pkgs/by-name/ht/htmx-lsp/package.nix +++ b/pkgs/by-name/ht/htmx-lsp/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-qKiFUnNUOBakfK3Vplr/bLR+4L/vIViHJYgw9+RoRZQ="; - 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/htpdate/package.nix b/pkgs/by-name/ht/htpdate/package.nix index d8de2a8ff77b2..f1bcf6bb8c8a5 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 f385696885706..db9d0cf7586b1 100644 --- a/pkgs/by-name/ht/htslib/package.nix +++ b/pkgs/by-name/ht/htslib/package.nix @@ -60,11 +60,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 72fb7f5f52c1c..43eae376f07c9 100644 --- a/pkgs/by-name/ht/http-getter/package.nix +++ b/pkgs/by-name/ht/http-getter/package.nix @@ -24,11 +24,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 30e33e13130a6..5e6cd2624573c 100644 --- a/pkgs/by-name/ht/http-parser/package.nix +++ b/pkgs/by-name/ht/http-parser/package.nix @@ -66,11 +66,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 = with maintainers; [ matthewbauer ]; - license = licenses.mit; - platforms = platforms.all; + maintainers = with lib.maintainers; [ matthewbauer ]; + license = lib.licenses.mit; + 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 49de0c2fe4c15..2d25d8f77f33a 100644 --- a/pkgs/by-name/ht/http3-ytproxy/package.nix +++ b/pkgs/by-name/ht/http3-ytproxy/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { "-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 7e062dd294fe2..809922da3a7c4 100644 --- a/pkgs/by-name/ht/httpdump/package.nix +++ b/pkgs/by-name/ht/httpdump/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-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 9a5f595043f3d..9213cc87286ed 100644 --- a/pkgs/by-name/ht/httperf/package.nix +++ b/pkgs/by-name/ht/httperf/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { mv -v src/httperf $out/bin ''; - meta = with lib; { + meta = { description = "Httperf 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/httpie-desktop/package.nix b/pkgs/by-name/ht/httpie-desktop/package.nix index 42e2395299c9f..c78da43a11a8f 100644 --- a/pkgs/by-name/ht/httpie-desktop/package.nix +++ b/pkgs/by-name/ht/httpie-desktop/package.nix @@ -34,11 +34,11 @@ appimageTools.wrapType2 rec { --replace-fail 'Exec=AppRun' 'Exec=httpie-desktop' ''; - meta = with lib; { + meta = { description = "Cross-platform API testing client for humans. Painlessly test REST, GraphQL, and HTTP APIs"; homepage = "https://github.com/httpie/desktop"; - license = licenses.unfree; - maintainers = with maintainers; [ luftmensch-luftmensch ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ luftmensch-luftmensch ]; mainProgram = "httpie-desktop"; platforms = [ "x86_64-linux" diff --git a/pkgs/by-name/ht/httplab/package.nix b/pkgs/by-name/ht/httplab/package.nix index fd2257ef8f90f..67c7d3f5bbeb8 100644 --- a/pkgs/by-name/ht/httplab/package.nix +++ b/pkgs/by-name/ht/httplab/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/qustavo/httplab"; description = "Interactive WebServer"; - license = licenses.mit; - maintainers = with maintainers; [ pradeepchhetri ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pradeepchhetri ]; mainProgram = "httplab"; }; } diff --git a/pkgs/by-name/ht/httprobe/package.nix b/pkgs/by-name/ht/httprobe/package.nix index a1c2b4da34dc6..39ebddc9f2dc5 100644 --- a/pkgs/by-name/ht/httprobe/package.nix +++ b/pkgs/by-name/ht/httprobe/package.nix @@ -22,11 +22,11 @@ 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; 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 e4fc762bd82db..8b881f86323fb 100644 --- a/pkgs/by-name/ht/https-dns-proxy/package.nix +++ b/pkgs/by-name/ht/https-dns-proxy/package.nix @@ -57,11 +57,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 e45744a9997e8..91c04e8aa91f2 100644 --- a/pkgs/by-name/ht/httptunnel/package.nix +++ b/pkgs/by-name/ht/httptunnel/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { 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 ffc175b210591..075c94bc0ba9e 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 80cb10863219d..c3c8d99af47d8 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/hu/hubble/package.nix b/pkgs/by-name/hu/hubble/package.nix index a841d66b74c24..92e8241d62b80 100644 --- a/pkgs/by-name/hu/hubble/package.nix +++ b/pkgs/by-name/hu/hubble/package.nix @@ -44,12 +44,12 @@ buildGoModule rec { --zsh <($out/bin/hubble completion zsh) ''; - meta = with lib; { + meta = { description = "Network, Service & Security Observability for Kubernetes using eBPF"; mainProgram = "hubble"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/cilium/hubble/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ humancalico bryanasdev000 ]; diff --git a/pkgs/by-name/hu/hubicfuse/package.nix b/pkgs/by-name/hu/hubicfuse/package.nix index 1cf774bc0b9bb..662f49f490fb9 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/hugs/package.nix b/pkgs/by-name/hu/hugs/package.nix index 4bc39894a6fb6..26e19efa1d56d 100644 --- a/pkgs/by-name/hu/hugs/package.nix +++ b/pkgs/by-name/hu/hugs/package.nix @@ -44,13 +44,13 @@ stdenv.mkDerivation rec { "--enable-pthreads" # build Hugs using POSIX threads C library ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; 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 31a5bd2289263..e6460db30a101 100644 --- a/pkgs/by-name/hu/humanity-icon-theme/package.nix +++ b/pkgs/by-name/hu/humanity-icon-theme/package.nix @@ -41,11 +41,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/humioctl/package.nix b/pkgs/by-name/hu/humioctl/package.nix index 34fc374f4f541..12cec7b1971a3 100644 --- a/pkgs/by-name/hu/humioctl/package.nix +++ b/pkgs/by-name/hu/humioctl/package.nix @@ -32,11 +32,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 6118aae67e097..649e9c87a209a 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-pwDaLHJbVpZe7dAtd5/ytyHZkUHjCcNjtw3q7HF1qVQ="; - 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/hu/hunt/package.nix b/pkgs/by-name/hu/hunt/package.nix index bebad941e1324..b2103b00392d7 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-6sr0PU/Gb3CZ+RzvnEcu/v/F3PMyednCEk5wPSvwgmQ="; - 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/hu/hut/package.nix b/pkgs/by-name/hu/hut/package.nix index 232964381647a..cc90c76caa106 100644 --- a/pkgs/by-name/hu/hut/package.nix +++ b/pkgs/by-name/hu/hut/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { make $makeFlags install ''; - meta = with lib; { + meta = { homepage = "https://sr.ht/~xenrox/hut/"; description = "CLI tool for Sourcehut / sr.ht"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fgaz ]; mainProgram = "hut"; }; } diff --git a/pkgs/by-name/hv/hvm/package.nix b/pkgs/by-name/hv/hvm/package.nix index bdbdbc74c3427..cbb68dc00c1f6 100644 --- a/pkgs/by-name/hv/hvm/package.nix +++ b/pkgs/by-name/hv/hvm/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-crVEtMzjg9T0oiS13URevPuRYqod4d2Ylb1IWRPVpa8="; - meta = with lib; { + meta = { description = "Massively parallel, optimal functional runtime in Rust"; mainProgram = "hvm"; homepage = "https://github.com/higherorderco/hvm"; - license = licenses.asl20; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/hw/hwinfo/package.nix b/pkgs/by-name/hw/hwinfo/package.nix index 15a20ebd10a8f..4101a5e25d913 100644 --- a/pkgs/by-name/hw/hwinfo/package.nix +++ b/pkgs/by-name/hw/hwinfo/package.nix @@ -127,12 +127,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 c9a3a0acce837..a97371bf54bb8 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/${pname}/ ''; - 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/hydroxide/package.nix b/pkgs/by-name/hy/hydroxide/package.nix index 34decc37b1341..5716ec9b3a351 100644 --- a/pkgs/by-name/hy/hydroxide/package.nix +++ b/pkgs/by-name/hy/hydroxide/package.nix @@ -21,11 +21,11 @@ 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; - maintainers = with maintainers; [ Br1ght0ne ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Br1ght0ne ]; mainProgram = "hydroxide"; }; } diff --git a/pkgs/by-name/hy/hyena/package.nix b/pkgs/by-name/hy/hyena/package.nix index e165255847e0f..c3c19366fe8fa 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 dae4619da82f9..e9ddd87ec65a5 100644 --- a/pkgs/by-name/hy/hyp/package.nix +++ b/pkgs/by-name/hy/hyp/package.nix @@ -13,15 +13,15 @@ python3Packages.buildPythonPackage rec { sha256 = "1lafjdcn9nnq6xc3hhyizfwh6l69lc7rixn6dx65aq71c913jc15"; }; - 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 a09766c38a1d2..d5cd22253e75b 100644 --- a/pkgs/by-name/hy/hyp2mat/package.nix +++ b/pkgs/by-name/hy/hyp2mat/package.nix @@ -45,12 +45,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/hyperledger-fabric/package.nix b/pkgs/by-name/hy/hyperledger-fabric/package.nix index f86e6e83012c5..781ecb73d4d27 100644 --- a/pkgs/by-name/hy/hyperledger-fabric/package.nix +++ b/pkgs/by-name/hy/hyperledger-fabric/package.nix @@ -42,7 +42,7 @@ buildGoModule rec { "-X github.com/hyperledger/fabric/common/metadata.CommitSha=${src.rev}" ]; - meta = with lib; { + meta = { description = "High-performance, secure, permissioned blockchain network"; longDescription = '' Hyperledger Fabric is an enterprise-grade permissioned distributed ledger @@ -52,7 +52,7 @@ buildGoModule rec { preserving privacy. ''; homepage = "https://wiki.hyperledger.org/display/fabric"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/hy/hyperlink/package.nix b/pkgs/by-name/hy/hyperlink/package.nix index 04e699a6f3d3a..c089baaf0ea65 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-4UEq9m5SWqmnzc++DjIeSq4ckTKgoxdt+8MekxiYGPE="; - 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 51517cf1b3edb..eea92c7bf3b15 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,8 +40,8 @@ stdenvNoCC.mkDerivation rec { allowing some neat alignements between shapes in multi lines layouts. ''; - license = licenses.ofl; - maintainers = with maintainers; [ leenaars ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ leenaars ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/hy/hyprdim/package.nix b/pkgs/by-name/hy/hyprdim/package.nix index f0ea46e36b56f..a05062dbd1be8 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/hypre/package.nix b/pkgs/by-name/hy/hypre/package.nix index 227cba66fac96..7ffec48ffce06 100644 --- a/pkgs/by-name/hy/hypre/package.nix +++ b/pkgs/by-name/hy/hypre/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Parallel solvers for sparse linear systems featuring multigrid methods."; homepage = "https://computing.llnl.gov/projects/hypre-scalable-linear-solvers-multigrid-methods"; - platforms = platforms.unix; - license = licenses.mit; - maintainers = with maintainers; [ mkez ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mkez ]; }; }) diff --git a/pkgs/by-name/hy/hyprkeys/package.nix b/pkgs/by-name/hy/hyprkeys/package.nix index 672f98e764c73..27e2c5d64a90f 100644 --- a/pkgs/by-name/hy/hyprkeys/package.nix +++ b/pkgs/by-name/hy/hyprkeys/package.nix @@ -35,11 +35,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 8086a4a132d30..e5e2ac335c90b 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-B9ZOz4U6tvUfFzI5pOuhazTZJH89jpxwRc+tbfNEZAk="; - 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 78ee30be58627..954b51fa28ed4 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 faea98dbef693..918b68cc2f5fd 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-vQfDsP2Tc+Kj95wXIzPTlf6kRdBgdio0QkM9EJRjZjE="; - 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 f9c12a0c4926f..557ebb8c86823 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-GX8Xo/1TwP/y+T1ErIjk+SriXyLpb1JDddYwod8DoxM="; - 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 3ec41e8b9c48f..9fd867e61bf74 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-LkAENnk1H1p8g7KKtkkh1aBtjXyM5scOtTROUaXwJhw="; - 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 0df623c839e2f..e182de1d4b859 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/hyprshot/package.nix b/pkgs/by-name/hy/hyprshot/package.nix index 98666e17b84e7..47e50e31925e8 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 = "Hyprshot is an utility to easily take screenshots in Hyprland using your mouse"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ Cryolitia ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ Cryolitia ]; mainProgram = "hyprshot"; platforms = hyprland.meta.platforms; }; diff --git a/pkgs/by-name/hy/hysteria/package.nix b/pkgs/by-name/hy/hysteria/package.nix index 498f880f96dd0..87ad6662a746b 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 d7f671047d9c7..b87642a3e053f 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 3254482681ba6..5266df3c0f292 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 b6e7e8be46ee3..96db4848fffc8 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/i2pd/package.nix b/pkgs/by-name/i2/i2pd/package.nix index 643c4a86e17ff..30d0db4a34adb 100644 --- a/pkgs/by-name/i2/i2pd/package.nix +++ b/pkgs/by-name/i2/i2pd/package.nix @@ -49,12 +49,12 @@ 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; - maintainers = with maintainers; [ edwtjo ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ edwtjo ]; + platforms = lib.platforms.unix; mainProgram = "i2pd"; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/i3/i3a/package.nix b/pkgs/by-name/i3/i3a/package.nix index 578b109a2508c..e051d3906cc91 100644 --- a/pkgs/by-name/i3/i3a/package.nix +++ b/pkgs/by-name/i3/i3a/package.nix @@ -19,11 +19,11 @@ python3Packages.buildPythonApplication rec { doCheck = false; - meta = with lib; { + meta = { changelog = "https://git.goral.net.pl/i3a.git/log/"; description = "Set of scripts used for automation of i3 and sway window manager layouts"; homepage = "https://git.goral.net.pl/i3a.git/about"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ moni ]; }; } diff --git a/pkgs/by-name/i3/i3bar-river/package.nix b/pkgs/by-name/i3/i3bar-river/package.nix index 533ef5638d3d9..658349c28732f 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 c28a1f8a4290f..3a4010486eabc 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/i3minator/package.nix b/pkgs/by-name/i3/i3minator/package.nix index 2c56f1d521f27..3d5313c2103c2 100644 --- a/pkgs/by-name/i3/i3minator/package.nix +++ b/pkgs/by-name/i3/i3minator/package.nix @@ -26,7 +26,7 @@ python3Packages.buildPythonApplication rec { # No tests doCheck = false; - meta = with lib; { + meta = { description = "i3 project manager similar to tmuxinator"; mainProgram = "i3minator"; longDescription = '' @@ -36,7 +36,7 @@ python3Packages.buildPythonApplication rec { ''; homepage = "https://github.com/carlesso/i3minator"; license = lib.licenses.wtfpl; - maintainers = with maintainers; [ domenkozar ]; + maintainers = with lib.maintainers; [ domenkozar ]; platforms = lib.platforms.linux; }; diff --git a/pkgs/by-name/i3/i3nator/package.nix b/pkgs/by-name/i3/i3nator/package.nix index 3736bff99dda3..4d202d1db6476 100644 --- a/pkgs/by-name/i3/i3nator/package.nix +++ b/pkgs/by-name/i3/i3nator/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-74woBoLXuxE4v3iMvc+QWz5n5F5/peaFBgZu+3ULXRM="; - meta = with lib; { + meta = { description = "Tmuxinator for the i3 window manager"; homepage = "https://github.com/pitkley/i3nator"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ mpoquet ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ mpoquet ]; mainProgram = "i3nator"; }; } diff --git a/pkgs/by-name/i8/i810switch/package.nix b/pkgs/by-name/i8/i810switch/package.nix index 0291c249274b2..425e5b137e14c 100644 --- a/pkgs/by-name/i8/i810switch/package.nix +++ b/pkgs/by-name/i8/i810switch/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation { sha256 = "d714840e3b14e1fa9c432c4be0044b7c008d904dece0d611554655b979cad4c3"; }; - meta = with lib; { + meta = { description = "Utility for switching between the LCD and external VGA display on Intel graphics cards"; homepage = "http://www16.plala.or.jp/mano-a-mano/i810switch.html"; maintainers = [ ]; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + 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 4b2126c9ad69f..28aef3db967a2 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 ba6a1dbc68b23..b146e77a38265 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 8e5aff5838c6e..b730649b8be5a 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"; - maintainers = teams.gnome.members; - license = licenses.gpl3Plus; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 5d8e7afa92f2b..cc67a1d28bfdc 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 0cfaee22c6e4c..2d97cfdaef2a3 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 2c56c8b0e77cb..881ecbf199cdf 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 e91b7fd917dea..1443a257b9417 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/ib/ibniz/package.nix b/pkgs/by-name/ib/ibniz/package.nix index c8dc3636ef615..ece42cbab4a19 100644 --- a/pkgs/by-name/ib/ibniz/package.nix +++ b/pkgs/by-name/ib/ibniz/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { cp ibniz $out/bin ''; - meta = with lib; { + meta = { description = "Virtual machine designed for extremely compact low-level audiovisual programs"; homepage = "https://github.com/viznut/IBNIZ"; - license = licenses.zlib; - platforms = platforms.linux; - maintainers = [ maintainers.dezgeg ]; + license = lib.licenses.zlib; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.dezgeg ]; mainProgram = "ibniz"; }; } diff --git a/pkgs/by-name/ib/ibus-theme-tools/package.nix b/pkgs/by-name/ib/ibus-theme-tools/package.nix index 414f5d134c2c0..8a114be150cda 100644 --- a/pkgs/by-name/ib/ibus-theme-tools/package.nix +++ b/pkgs/by-name/ib/ibus-theme-tools/package.nix @@ -28,10 +28,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 560e36b32e09a..f92f77d66f570 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/icdiff/package.nix b/pkgs/by-name/ic/icdiff/package.nix index dff381e00e504..3b768b29ae21f 100644 --- a/pkgs/by-name/ic/icdiff/package.nix +++ b/pkgs/by-name/ic/icdiff/package.nix @@ -32,10 +32,10 @@ python3Packages.buildPythonApplication rec { ./test.sh ${python3Packages.python.interpreter} ''; - meta = with lib; { + meta = { homepage = "https://www.jefftk.com/icdiff"; description = "Side-by-side highlighted command line diffs"; maintainers = [ ]; - license = licenses.psfl; + license = lib.licenses.psfl; }; } diff --git a/pkgs/by-name/ic/icebreaker/package.nix b/pkgs/by-name/ic/icebreaker/package.nix index 21c1594493bba..e85796380dc57 100644 --- a/pkgs/by-name/ic/icebreaker/package.nix +++ b/pkgs/by-name/ic/icebreaker/package.nix @@ -37,11 +37,11 @@ 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "icebreaker"; }; } diff --git a/pkgs/by-name/ic/icecream/package.nix b/pkgs/by-name/ic/icecream/package.nix index 5e1775302876e..2cf482df1475a 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 deb1a888f00a0..948323ae8d2f8 100644 --- a/pkgs/by-name/ic/iceshelf/package.nix +++ b/pkgs/by-name/ic/iceshelf/package.nix @@ -32,10 +32,10 @@ python3.pkgs.buildPythonApplication rec { 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/icewm/package.nix b/pkgs/by-name/ic/icewm/package.nix index 50f8565a4fe6d..dc62dbfc0b4cb 100644 --- a/pkgs/by-name/ic/icewm/package.nix +++ b/pkgs/by-name/ic/icewm/package.nix @@ -105,7 +105,7 @@ stdenv.mkDerivation (finalAttrs: { $out/share/icewm/themes/ ''; - meta = with lib; { + meta = { homepage = "https://ice-wm.org/"; description = "Simple, lightweight X window manager"; longDescription = '' @@ -121,8 +121,8 @@ stdenv.mkDerivation (finalAttrs: { optional external background wallpaper manager with transparency support, a simple session manager and a system tray. ''; - license = licenses.lgpl2Only; - maintainers = [ maintainers.AndersonTorres ]; - platforms = platforms.linux; + license = lib.licenses.lgpl2Only; + maintainers = [ lib.maintainers.AndersonTorres ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ic/icloudpd/package.nix b/pkgs/by-name/ic/icloudpd/package.nix index 5a32a9059649a..624d032070c67 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 jnsgruk ]; diff --git a/pkgs/by-name/ic/icmake/package.nix b/pkgs/by-name/ic/icmake/package.nix index 1da38266e691b..af47abfd73649 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 fd16c313bf505..a55250805bda1 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 c637f84894411..46482f0782dc9 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 rec { 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 7c3185aedc876..900f60f1a2254 100644 --- a/pkgs/by-name/ic/icon-library/package.nix +++ b/pkgs/by-name/ic/icon-library/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { darwin.apple_sdk.frameworks.Foundation ]; - 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 476bc2de17db2..5a12f452494a5 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 45be4644245db..820008e10be45 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 c85b060b4cc66..9c1894216dc6a 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 902ba2ef71662..dd675f9a058fa 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 86ff31786e046..9ff0d88f2fa74 100644 --- a/pkgs/by-name/ic/iconpack-obsidian/package.nix +++ b/pkgs/by-name/ic/iconpack-obsidian/package.nix @@ -39,12 +39,12 @@ stdenvNoCC.mkDerivation rec { done ''; - 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 22468e862816c..05da4a2b55b9c 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 68a0f4d32effb..58829b3281d52 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 00a22e8c048ee..1827b5c86b9c0 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 29b02629b6e42..eb3a0b3f4a3d6 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/ideogram/package.nix b/pkgs/by-name/id/ideogram/package.nix index bbc34d59d88fa..344b0814d41d3 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; - maintainers = teams.pantheon.members; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.pantheon.members; + 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 1bf6d11cb26b9..c10889b16f5dd 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,9 +48,9 @@ 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; - maintainers = with maintainers; [ aristid ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ aristid ]; mainProgram = "ideviceinstaller"; }; } diff --git a/pkgs/by-name/id/idnkit/package.nix b/pkgs/by-name/id/idnkit/package.nix index d8fcc48acc6ad..9e857914cfc2e 100644 --- a/pkgs/by-name/id/idnkit/package.nix +++ b/pkgs/by-name/id/idnkit/package.nix @@ -16,13 +16,13 @@ stdenv.mkDerivation rec { buildInputs = [ libiconv ]; - meta = with lib; { + meta = { homepage = "https://jprs.co.jp/idn/index-e.html"; description = "Provides functionalities about i18n domain name processing"; license = { fullName = "Open Source Code License version 1.1"; url = "https://jprs.co.jp/idn/idnkit2-OSCL.txt"; }; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/if/iferr/package.nix b/pkgs/by-name/if/iferr/package.nix index 13395db61c8d7..7261d85ab1203 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 2d723a74dd4c0..107d6af75f92a 100644 --- a/pkgs/by-name/if/ifm/package.nix +++ b/pkgs/by-name/if/ifm/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { 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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/if/ifmetric/package.nix b/pkgs/by-name/if/ifmetric/package.nix index f6039f1f603e7..1c1c5f3224fb9 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 ebcc6bdcad1bf..a5ea16df0c551 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 6c7642ed2b143..c94dee2e7f5af 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/ifuse/package.nix b/pkgs/by-name/if/ifuse/package.nix index 38c1a78a9b91e..c73098e3b1bc2 100644 --- a/pkgs/by-name/if/ifuse/package.nix +++ b/pkgs/by-name/if/ifuse/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { 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 rec { 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/ig/igraph/package.nix b/pkgs/by-name/ig/igraph/package.nix index de3fc033f9470..4b1bc19864c18 100644 --- a/pkgs/by-name/ig/igraph/package.nix +++ b/pkgs/by-name/ig/igraph/package.nix @@ -106,13 +106,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.rev}/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/igv/package.nix b/pkgs/by-name/ig/igv/package.nix index a6ea26e64824e..4a0c635864dc1 100644 --- a/pkgs/by-name/ig/igv/package.nix +++ b/pkgs/by-name/ig/igv/package.nix @@ -38,11 +38,11 @@ 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; - maintainers = [ maintainers.mimame ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.mimame ]; }; } diff --git a/pkgs/by-name/ih/ihp-new/package.nix b/pkgs/by-name/ih/ihp-new/package.nix index 1d2914f4af7db..25c6864897f97 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 3ffca17df48f4..d5a3133f5e40a 100644 --- a/pkgs/by-name/ii/iio-sensor-proxy/package.nix +++ b/pkgs/by-name/ii/iio-sensor-proxy/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { (lib.mesonOption "systemdsystemunitdir" "${placeholder "out"}/lib/systemd/system") ]; - 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 02ff350787d0a..428950b0fc7c3 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/ik/ike-scan/package.nix b/pkgs/by-name/ik/ike-scan/package.nix index 01b7ac5ecdc39..25980fd79d3ef 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 rec { }) ]; - 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 = with licenses; [ gpl3Plus ]; - platforms = platforms.linux; - maintainers = with maintainers; [ fab ]; + license = with 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 602aa141527ee..6620d45a06fc2 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-zKa2FP0lBS2XjgPWfyPZ60aHyeAe0uNIFbmuX4Uo1rA="; - 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/il/ilmbase/package.nix b/pkgs/by-name/il/ilmbase/package.nix index 747d8c451b9e9..d62130c789c46 100644 --- a/pkgs/by-name/il/ilmbase/package.nix +++ b/pkgs/by-name/il/ilmbase/package.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation rec { cd IlmBase ''; - meta = with lib; { + meta = { description = " A 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; }; } diff --git a/pkgs/by-name/im/image-roll/package.nix b/pkgs/by-name/im/image-roll/package.nix index 747f1cbd8cd87..e2f7eeb4ee018 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/im/imagelol/package.nix b/pkgs/by-name/im/imagelol/package.nix index 7e663db77ee9f..8dd9e885858f2 100644 --- a/pkgs/by-name/im/imagelol/package.nix +++ b/pkgs/by-name/im/imagelol/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64 ) "-DPNG_ARM_NEON=off"; - 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 ecf5c4c685950..625c7090ae394 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/imaginer/package.nix b/pkgs/by-name/im/imaginer/package.nix index 598d6fb2b93ce..94bd04cc92287 100644 --- a/pkgs/by-name/im/imaginer/package.nix +++ b/pkgs/by-name/im/imaginer/package.nix @@ -59,11 +59,11 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { homepage = "https://github.com/ImaginerApp/Imaginer"; description = "Imaginer with AI"; mainProgram = "imaginer"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ _0xMRTT ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ _0xMRTT ]; }; } diff --git a/pkgs/by-name/im/imapsync/package.nix b/pkgs/by-name/im/imapsync/package.nix index 9a756aadbf5f7..580650d4856fb 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 9a3ddc0a1a5b9..236dab01e8472 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 = "Imath is a 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 ef8493e757405..2beb2ff022671 100644 --- a/pkgs/by-name/im/img-cat/package.nix +++ b/pkgs/by-name/im/img-cat/package.nix @@ -17,11 +17,11 @@ 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; - maintainers = with maintainers; [ penguwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ penguwin ]; mainProgram = "imgcat"; }; } diff --git a/pkgs/by-name/im/img/package.nix b/pkgs/by-name/im/img/package.nix index 71fd68fb0fae6..a2903fe0e153c 100644 --- a/pkgs/by-name/im/img/package.nix +++ b/pkgs/by-name/im/img/package.nix @@ -47,11 +47,11 @@ 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 = with maintainers; [ bryanasdev000 ]; + maintainers = with lib.maintainers; [ bryanasdev000 ]; }; } diff --git a/pkgs/by-name/im/imgcat/package.nix b/pkgs/by-name/im/imgcat/package.nix index aaaa5b0bc0656..150386d26a6aa 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 6b30c5b5d2b42..6a11b4ff29252 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/imgpatchtools/package.nix b/pkgs/by-name/im/imgpatchtools/package.nix index ddb57ba74c8f2..610682bdf2562 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/imgur-screenshot/package.nix b/pkgs/by-name/im/imgur-screenshot/package.nix index c9d29bfe92c60..a52b180698c93 100644 --- a/pkgs/by-name/im/imgur-screenshot/package.nix +++ b/pkgs/by-name/im/imgur-screenshot/package.nix @@ -41,12 +41,12 @@ 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; - maintainers = with maintainers; [ lw ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lw ]; mainProgram = "imgur-screenshot"; }; } diff --git a/pkgs/by-name/im/imgurbash2/package.nix b/pkgs/by-name/im/imgurbash2/package.nix index 10bb01e7690f9..6c3241d0bef5e 100644 --- a/pkgs/by-name/im/imgurbash2/package.nix +++ b/pkgs/by-name/im/imgurbash2/package.nix @@ -33,11 +33,11 @@ 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ abbradar ]; homepage = "https://github.com/ram-on/imgurbash2"; mainProgram = "imgurbash2"; }; diff --git a/pkgs/by-name/im/immudb/package.nix b/pkgs/by-name/im/immudb/package.nix index 76224b1f17588..9672217d1bac1 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 3f08de58dd9ad..d090fa9d1997d 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 8efe8f259ceb6..80a493f246d54 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/imwheel/package.nix b/pkgs/by-name/im/imwheel/package.nix index 3a3dfb0135726..55fffc8aa8eba 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 09963d89646e7..f3e0de95bab73 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 a9e042b0186a0..c90f8401fa06d 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 rec { 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/inchi/package.nix b/pkgs/by-name/in/inchi/package.nix index d738d62e1cd6c..a27434438a2ff 100644 --- a/pkgs/by-name/in/inchi/package.nix +++ b/pkgs/by-name/in/inchi/package.nix @@ -73,10 +73,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/package.nix b/pkgs/by-name/in/inconsolata/package.nix index a2493ed2d2271..3a7f3361443ea 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 ''; - 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/indicator-sound-switcher/package.nix b/pkgs/by-name/in/indicator-sound-switcher/package.nix index 8f46f42b439d3..43c10fa99349d 100644 --- a/pkgs/by-name/in/indicator-sound-switcher/package.nix +++ b/pkgs/by-name/in/indicator-sound-switcher/package.nix @@ -54,12 +54,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/infamousPlugins/package.nix b/pkgs/by-name/in/infamousPlugins/package.nix index 29df008ab9da8..c9e8ed8b8fa9e 100644 --- a/pkgs/by-name/in/infamousPlugins/package.nix +++ b/pkgs/by-name/in/infamousPlugins/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { zita-resampler ]; - meta = with lib; { + meta = { homepage = "https://ssj71.github.io/infamousPlugins"; description = "Collection of open-source LV2 plugins"; longDescription = '' @@ -58,9 +58,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/inflow/package.nix b/pkgs/by-name/in/inflow/package.nix index 32416963105d5..f200bb4f277d3 100644 --- a/pkgs/by-name/in/inflow/package.nix +++ b/pkgs/by-name/in/inflow/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Variance-optimal paragraph formatter"; homepage = "https://github.com/stephen-huan/inflow"; - license = licenses.unlicense; + license = lib.licenses.unlicense; mainProgram = "inflow"; - maintainers = with maintainers; [ fbrs ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ fbrs ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/in/influxdb-cxx/package.nix b/pkgs/by-name/in/influxdb-cxx/package.nix index de1ae626c49b3..143e6821f07ea 100644 --- a/pkgs/by-name/in/influxdb-cxx/package.nix +++ b/pkgs/by-name/in/influxdb-cxx/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "InfluxDB C++ client library"; homepage = "https://github.com/offa/influxdb-cxx"; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/in/infnoise/package.nix b/pkgs/by-name/in/infnoise/package.nix index c596f9e76c796..3ec1840a518d3 100644 --- a/pkgs/by-name/in/infnoise/package.nix +++ b/pkgs/by-name/in/infnoise/package.nix @@ -52,18 +52,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 2ba67a1f6ed33..e31b831faec16 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/inframap/package.nix b/pkgs/by-name/in/inframap/package.nix index ddfe0ce63dcd5..525e73d9f067a 100644 --- a/pkgs/by-name/in/inframap/package.nix +++ b/pkgs/by-name/in/inframap/package.nix @@ -22,10 +22,10 @@ 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"; - 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 33ac44c47dc3c..7e6b599b74aaf 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/inhibridge/package.nix b/pkgs/by-name/in/inhibridge/package.nix index 2f9c47f7e5c8e..c0e36af49adb9 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-uKSbxAsGUR2nYfdtiTR/bgPBQunqYLzx3+CmszNilPQ="; - 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/inklecate/package.nix b/pkgs/by-name/in/inklecate/package.nix index 3c635a6060c1f..00a10e71d0ae5 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/innoextract/package.nix b/pkgs/by-name/in/innoextract/package.nix index 6e145f31300ce..ca6458be4eb2e 100644 --- a/pkgs/by-name/in/innoextract/package.nix +++ b/pkgs/by-name/in/innoextract/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { --prefix PATH : ${lib.makeBinPath [ unar ]} ''; - meta = with lib; { + meta = { description = "Tool to unpack installers created by Inno Setup"; homepage = "https://constexpr.org/innoextract/"; - license = licenses.zlib; - maintainers = with maintainers; [ abbradar ]; - platforms = platforms.unix; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ abbradar ]; + 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 99f7884185f58..23808caf7354a 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 10c48bffe7c05..a55a2b8f39173 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/inputplug/package.nix b/pkgs/by-name/in/inputplug/package.nix index d2441969cc62d..14e44d80ef336 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 4504c41967b60..5ff151b1af059 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,8 +37,8 @@ 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; - maintainers = with maintainers; [ leenaars ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ leenaars ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/in/inshellisense/package.nix b/pkgs/by-name/in/inshellisense/package.nix index 3b811d34c79bf..ffe1a1dc5cf22 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/instead/package.nix b/pkgs/by-name/in/instead/package.nix index d5dd0588c0172..1d5a54fefad88 100644 --- a/pkgs/by-name/in/instead/package.nix +++ b/pkgs/by-name/in/instead/package.nix @@ -83,11 +83,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Simple text adventure interpreter for Unix and Windows"; homepage = "https://instead.syscall.ru/"; license = lib.licenses.mit; platforms = with lib.platforms; linux; - maintainers = with maintainers; [ pSub ]; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/in/insulator2/package.nix b/pkgs/by-name/in/insulator2/package.nix index a3000e0fc5baa..8a872b14e7a2e 100644 --- a/pkgs/by-name/in/insulator2/package.nix +++ b/pkgs/by-name/in/insulator2/package.nix @@ -91,11 +91,11 @@ stdenv.mkDerivation rec { webkitgtk_4_0 ]; - meta = with lib; { + meta = { 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/insync-emblem-icons/package.nix b/pkgs/by-name/in/insync-emblem-icons/package.nix index c6969afe2e676..535eab414440f 100644 --- a/pkgs/by-name/in/insync-emblem-icons/package.nix +++ b/pkgs/by-name/in/insync-emblem-icons/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { platforms = [ "x86_64-linux" ]; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - maintainers = with maintainers; [ hellwolf ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ hellwolf ]; homepage = "https://www.insynchq.com"; description = "This package contains the file manager emblem icons for Insync file manager extensions"; }; diff --git a/pkgs/by-name/in/insync-nautilus/package.nix b/pkgs/by-name/in/insync-nautilus/package.nix index d0e3b3d934e48..f7a845666cad9 100644 --- a/pkgs/by-name/in/insync-nautilus/package.nix +++ b/pkgs/by-name/in/insync-nautilus/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { platforms = [ "x86_64-linux" ]; sourceProvenance = with lib.sourceTypes; [ fromSource ]; - license = licenses.unfree; - maintainers = with maintainers; [ hellwolf ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ hellwolf ]; homepage = "https://www.insynchq.com"; description = "This package contains the Python extension and icons for integrating Insync with Nautilus"; }; diff --git a/pkgs/by-name/in/intel-cmt-cat/package.nix b/pkgs/by-name/in/intel-cmt-cat/package.nix index 0b356aa6d4c78..fd9cac169cf75 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 d0db954fe51d7..654d3f9d526b0 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-media-sdk/package.nix b/pkgs/by-name/in/intel-media-sdk/package.nix index 26a77a7ed94e3..0806bae873a6d 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 ec93f3efe5884..4799a631c646e 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/intel2200BGFirmware/package.nix b/pkgs/by-name/in/intel2200BGFirmware/package.nix index f419d57819ea1..d3cd1936a5601 100644 --- a/pkgs/by-name/in/intel2200BGFirmware/package.nix +++ b/pkgs/by-name/in/intel2200BGFirmware/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Firmware for Intel 2200BG cards"; homepage = "https://ipw2200.sourceforge.net/firmware.php"; - license = licenses.unfreeRedistributableFirmware; - maintainers = with maintainers; [ sternenseemann ]; - platforms = platforms.linux; + license = lib.licenses.unfreeRedistributableFirmware; + maintainers = with lib.maintainers; [ sternenseemann ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/in/intelli-shell/package.nix b/pkgs/by-name/in/intelli-shell/package.nix index c700d066e61be..0afaa8f189e03 100644 --- a/pkgs/by-name/in/intelli-shell/package.nix +++ b/pkgs/by-name/in/intelli-shell/package.nix @@ -43,11 +43,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; [ iogamaster ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ iogamaster ]; mainProgram = "intelli-shell"; }; } diff --git a/pkgs/by-name/in/inter/package.nix b/pkgs/by-name/in/inter/package.nix index 7af136f8c1bca..afe7ecea93800 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 9d5120c87e296..088157fb0bc7c 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; - maintainers = [ maintainers.AndersonTorres ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.AndersonTorres ]; + 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 be844503163c7..7e23bb23378c5 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/intiface-central/package.nix b/pkgs/by-name/in/intiface-central/package.nix index 26da97f6c643d..c8727f03625bf 100644 --- a/pkgs/by-name/in/intiface-central/package.nix +++ b/pkgs/by-name/in/intiface-central/package.nix @@ -70,12 +70,12 @@ flutterPackages.stable.buildFlutterApplication rec { }) ]; - meta = with lib; { + meta = { mainProgram = "intiface_central"; description = "Intiface Central (Buttplug Frontend) Application for Desktop"; homepage = "https://intiface.com/"; - 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/in/intltool/package.nix b/pkgs/by-name/in/intltool/package.nix index e972dc7d5a1ee..ef0d0e0fb197b 100644 --- a/pkgs/by-name/in/intltool/package.nix +++ b/pkgs/by-name/in/intltool/package.nix @@ -45,11 +45,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/invidtui/package.nix b/pkgs/by-name/in/invidtui/package.nix index 5feb30bc693d3..457a800894e65 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 fa1851636dc16..8f28d59410a4c 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 3280b1fab2363..8c81cd2e3020b 100644 --- a/pkgs/by-name/in/invoice2data/package.nix +++ b/pkgs/by-name/in/invoice2data/package.nix @@ -61,11 +61,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/ioccheck/package.nix b/pkgs/by-name/io/ioccheck/package.nix index 220710d015595..24fe8d537821e 100644 --- a/pkgs/by-name/io/ioccheck/package.nix +++ b/pkgs/by-name/io/ioccheck/package.nix @@ -88,11 +88,11 @@ py.pkgs.buildPythonApplication rec { "ioccheck" ]; - meta = with lib; { + meta = { description = "Tool for researching IOCs"; mainProgram = "ioccheck"; homepage = "https://github.com/ranguli/ioccheck"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/io/iodash/package.nix b/pkgs/by-name/io/iodash/package.nix index cc17be915bc81..0ac149d8446dd 100644 --- a/pkgs/by-name/io/iodash/package.nix +++ b/pkgs/by-name/io/iodash/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { 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 c5abb0922e78a..219b92e1a9752 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 57af77aa3a602..18d476be1442e 100644 --- a/pkgs/by-name/io/ion/package.nix +++ b/pkgs/by-name/io/ion/package.nix @@ -36,15 +36,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 a228153ae4ef6..c56bad2c07146 100644 --- a/pkgs/by-name/io/ioping/package.nix +++ b/pkgs/by-name/io/ioping/package.nix @@ -26,11 +26,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 25f0f42108c19..54a25c7ca2338 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/ior/package.nix b/pkgs/by-name/io/ior/package.nix index 3b33d1607b83a..60bfe8bf0e4ea 100644 --- a/pkgs/by-name/io/ior/package.nix +++ b/pkgs/by-name/io/ior/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://ior.readthedocs.io/en/latest/"; description = "Parallel file system I/O performance test"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ bzizou ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ bzizou ]; }; } 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 416af017b6cdc..f4019a4a3cd11 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,9 +72,9 @@ 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; [ + maintainers = with lib.maintainers; [ abustany paveloom ]; diff --git a/pkgs/by-name/io/iosevka/package.nix b/pkgs/by-name/io/iosevka/package.nix index 4b4ce4f1e47e6..f5ae8fb7a0b90 100644 --- a/pkgs/by-name/io/iosevka/package.nix +++ b/pkgs/by-name/io/iosevka/package.nix @@ -134,7 +134,7 @@ buildNpmPackage rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://typeof.net/Iosevka/"; downloadPage = "https://github.com/be5invis/Iosevka/releases"; description = "Versatile typeface for code, from code"; @@ -143,9 +143,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 rileyinman lunik1 diff --git a/pkgs/by-name/io/iotools/package.nix b/pkgs/by-name/io/iotools/package.nix index ba33fda97f5f2..82515fd51f252 100644 --- a/pkgs/by-name/io/iotools/package.nix +++ b/pkgs/by-name/io/iotools/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { install -Dm755 iotools -t $out/bin ''; - meta = with lib; { + meta = { description = "Set of simple command line tools which allow access to hardware device registers"; longDescription = '' @@ -35,8 +35,8 @@ stdenv.mkDerivation rec { operations. ''; homepage = "https://github.com/adurbin/iotools"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ felixsinger ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ felixsinger ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/io/iotop-c/package.nix b/pkgs/by-name/io/iotop-c/package.nix index 4cd9f5a47049c..08cb514e0b3c4 100644 --- a/pkgs/by-name/io/iotop-c/package.nix +++ b/pkgs/by-name/io/iotop-c/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { ln -s $out/usr/share $out/share ''; - 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 6f420219118e0..4e0ba7c00a7b7 100644 --- a/pkgs/by-name/io/iotop/package.nix +++ b/pkgs/by-name/io/iotop/package.nix @@ -23,12 +23,12 @@ python3Packages.buildPythonApplication rec { doCheck = false; - 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/ip/ip2location-c/package.nix b/pkgs/by-name/ip/ip2location-c/package.nix index 929e5772b5727..2d614b3dfc96e 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 ba59cc9bc3d62..c1dc6cce66fce 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 aeb4fc2ea222a..c5bfae63655a3 100644 --- a/pkgs/by-name/ip/ipad_charge/package.nix +++ b/pkgs/by-name/ip/ipad_charge/package.nix @@ -33,7 +33,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 = '' @@ -41,8 +41,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/ipbt/package.nix b/pkgs/by-name/ip/ipbt/package.nix index 70629038d08f7..75fa7c859f8db 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 2e08354371da7..4a95a487b6090 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/ipfetch/package.nix b/pkgs/by-name/ip/ipfetch/package.nix index 7f1e0fea425c1..375db8acdbf19 100644 --- a/pkgs/by-name/ip/ipfetch/package.nix +++ b/pkgs/by-name/ip/ipfetch/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { } ''; - 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 813f40030fa42..f9bcd886bc890 100644 --- a/pkgs/by-name/ip/ipfs-cluster/package.nix +++ b/pkgs/by-name/ip/ipfs-cluster/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { hash = "sha256-CpMnhqRlikKdPT3/tsLpKdKm6icePDsmqEnUEBwvCT0="; }; - 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 cde82f861487c..c04c92ee9f474 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 93af9fef9526e..f27ad5c47d6e2 100644 --- a/pkgs/by-name/ip/ipget/package.nix +++ b/pkgs/by-name/ip/ipget/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { doCheck = false; - 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 42e8a9305614c..b7acea678ca53 100644 --- a/pkgs/by-name/ip/ipgrep/package.nix +++ b/pkgs/by-name/ip/ipgrep/package.nix @@ -29,15 +29,15 @@ 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; - maintainers = with maintainers; [ leenaars ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ leenaars ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ip/iplan/package.nix b/pkgs/by-name/ip/iplan/package.nix index 018ba38d80ee0..c253db10f0181 100644 --- a/pkgs/by-name/ip/iplan/package.nix +++ b/pkgs/by-name/ip/iplan/package.nix @@ -45,12 +45,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/ipmiutil/package.nix b/pkgs/by-name/ip/ipmiutil/package.nix index eb375f64f8909..2fab40a124f79 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/iproute2/package.nix b/pkgs/by-name/ip/iproute2/package.nix index d1b963a26035d..9b09e5cf3a46a 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; [ primeos fpletz globin diff --git a/pkgs/by-name/ip/iprover/package.nix b/pkgs/by-name/ip/iprover/package.nix index afcbae040bccc..a7ed7b94896ec 100644 --- a/pkgs/by-name/ip/iprover/package.nix +++ b/pkgs/by-name/ip/iprover/package.nix @@ -55,14 +55,14 @@ stdenv.mkDerivation rec { 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 gebner ]; - 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 ec01f4699b816..260209d301021 100644 --- a/pkgs/by-name/ip/ipset/package.nix +++ b/pkgs/by-name/ip/ipset/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { 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; }; } diff --git a/pkgs/by-name/ip/iptraf-ng/package.nix b/pkgs/by-name/ip/iptraf-ng/package.nix index 9984136a0676d..d258bda71ce63 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 32352002aa8f7..bc1ea283d6ed1 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/ipv6calc/package.nix b/pkgs/by-name/ip/ipv6calc/package.nix index 23ea837c1f48e..566fccd89227d 100644 --- a/pkgs/by-name/ip/ipv6calc/package.nix +++ b/pkgs/by-name/ip/ipv6calc/package.nix @@ -59,7 +59,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 @@ -70,8 +70,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 e73ecb554a237..8c0138ecabad8 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 67fb7b145025f..7e41f203ade58 100644 --- a/pkgs/by-name/iq/iqtree/package.nix +++ b/pkgs/by-name/iq/iqtree/package.nix @@ -33,12 +33,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 4fa72e8eb8043..68065bb17680c 100644 --- a/pkgs/by-name/iq/iqueue/package.nix +++ b/pkgs/by-name/iq/iqueue/package.nix @@ -28,11 +28,11 @@ 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" ]; - maintainers = [ maintainers.catern ]; + maintainers = [ lib.maintainers.catern ]; }; } diff --git a/pkgs/by-name/ir/ir-standard-fonts/package.nix b/pkgs/by-name/ir/ir-standard-fonts/package.nix index 884d875c9ce6b..34b56079c59f2 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/irccat/package.nix b/pkgs/by-name/ir/irccat/package.nix index e1851f473d184..8afee7754e380 100644 --- a/pkgs/by-name/ir/irccat/package.nix +++ b/pkgs/by-name/ir/irccat/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-IRXyM000ZDiLPHX20lXlx00tkCzBe5PqvdgXAvm0EAw="; - meta = with lib; { + meta = { homepage = "https://github.com/irccloud/irccat"; description = "Send events to IRC channels from scripts and other applications"; mainProgram = "irccat"; - maintainers = with maintainers; [ qyliss ]; - license = licenses.gpl3Only; + maintainers = with lib.maintainers; [ qyliss ]; + license = lib.licenses.gpl3Only; }; } diff --git a/pkgs/by-name/ir/irccloud/package.nix b/pkgs/by-name/ir/irccloud/package.nix index 0d0fc8598b290..46b52eabb89d8 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 3db135fe21ad5..1d6ef18531b63 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 c10e8ce9d678b..a71f85ad01383 100644 --- a/pkgs/by-name/ir/ironbar/package.nix +++ b/pkgs/by-name/ir/ironbar/package.nix @@ -93,12 +93,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/irust/package.nix b/pkgs/by-name/ir/irust/package.nix index 2df1c45e7a4e9..ead151dd10bb7 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 61a484a7f54b5..f6b0bf7bdf6d4 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/iscc/package.nix b/pkgs/by-name/is/iscc/package.nix index cc402d9cbd464..af42dd88d9e20 100644 --- a/pkgs/by-name/is/iscc/package.nix +++ b/pkgs/by-name/is/iscc/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - 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 adb215e1e103c..20f49ca0e3c4f 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 297f40d1b70c5..4f9733dbc3f8d 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 0b9e85e88389d..a1b3db5dbf097 100644 --- a/pkgs/by-name/is/isolyzer/package.nix +++ b/pkgs/by-name/is/isolyzer/package.nix @@ -20,11 +20,11 @@ python3.pkgs.buildPythonApplication rec { six ]; - 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 3f7c2b28b9d6a..67360732537a9 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 7826fc9292976..e7b97ffe11c03 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/isrcsubmit/package.nix b/pkgs/by-name/is/isrcsubmit/package.nix index a679ecea73400..2b24f45b36beb 100644 --- a/pkgs/by-name/is/isrcsubmit/package.nix +++ b/pkgs/by-name/is/isrcsubmit/package.nix @@ -20,11 +20,11 @@ python3Packages.buildPythonApplication rec { discid ]; - meta = with lib; { + meta = { # drutil is required on Darwin, which does not seem to be available in nixpkgs broken = true; # 2022-11-16 description = "Script to submit ISRCs from disc to MusicBrainz"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "http://jonnyjd.github.io/musicbrainz-isrcsubmit/"; maintainers = [ ]; }; diff --git a/pkgs/by-name/is/istioctl/package.nix b/pkgs/by-name/is/istioctl/package.nix index 183d130cd0516..6dffaebaaa0e4 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; [ bryanasdev000 veehaitch ]; diff --git a/pkgs/by-name/it/itchiodl/package.nix b/pkgs/by-name/it/itchiodl/package.nix index a5e1e3e1f0553..6500bb80f91a1 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 842ee8e54a3a1..4fcb243fa5e92 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 = "itd is a 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 3815814c79bf7..d2e3ea986ce34 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/itm-tools/package.nix b/pkgs/by-name/it/itm-tools/package.nix index fa6cd2f9bae22..6d2ba109b5a43 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 rec { 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/itpp/package.nix b/pkgs/by-name/it/itpp/package.nix index e419a181dd684..73266f6d0cc60 100644 --- a/pkgs/by-name/it/itpp/package.nix +++ b/pkgs/by-name/it/itpp/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { ./gtests/itpp_gtests ''; - meta = with lib; { + meta = { description = "IT++ is a C++ library of mathematical, signal processing and communication classes and functions"; mainProgram = "itpp-config"; homepage = "https://itpp.sourceforge.net/"; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; maintainers = [ ]; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/itpp.x86_64-darwin }; diff --git a/pkgs/by-name/it/itsx/package.nix b/pkgs/by-name/it/itsx/package.nix index 0fdc25c2c77b2..a110cd7ec7ab7 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 fc92bb67e6c47..79c3db0daadef 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/iverilog/package.nix b/pkgs/by-name/iv/iverilog/package.nix index 6ae58d945ad13..3f59573bfce85 100644 --- a/pkgs/by-name/iv/iverilog/package.nix +++ b/pkgs/by-name/iv/iverilog/package.nix @@ -84,14 +84,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/ivy/package.nix b/pkgs/by-name/iv/ivy/package.nix index e3a552bd6e4d6..ef7d882e794e5 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 = "ivy, an 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/iwd/package.nix b/pkgs/by-name/iw/iwd/package.nix index 86b4dd7f86deb..6d9677174f22d 100644 --- a/pkgs/by-name/iw/iwd/package.nix +++ b/pkgs/by-name/iw/iwd/package.nix @@ -101,12 +101,12 @@ stdenv.mkDerivation rec { url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git"; }; - meta = with lib; { + meta = { homepage = "https://git.kernel.org/pub/scm/network/wireless/iwd.git"; description = "Wireless daemon for Linux"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ dtzWill fpletz ]; diff --git a/pkgs/by-name/iw/iwona/package.nix b/pkgs/by-name/iw/iwona/package.nix index 49f6ffc134416..dfa6591b3d0c1 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-i-iwona/"; # "[...] 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 5609c70d4c3b8..c18dc532f25e2 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/ix/ix/package.nix b/pkgs/by-name/ix/ix/package.nix index 93e4c68e79516..e9b50cfc6b7f1 100644 --- a/pkgs/by-name/ix/ix/package.nix +++ b/pkgs/by-name/ix/ix/package.nix @@ -33,11 +33,11 @@ resholve.mkDerivation { inputs = [ curl ]; }; - meta = with lib; { + meta = { homepage = "http://ix.io"; description = "Command line pastebin"; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.all; mainProgram = "ix"; }; } diff --git a/pkgs/by-name/j/j/package.nix b/pkgs/by-name/j/j/package.nix index 81871a18e5028..e779d0ec632ce 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/ja/jaaa/package.nix b/pkgs/by-name/ja/jaaa/package.nix index 8bf7477ed0a9a..26ce0a88e0311 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-passthrough/package.nix b/pkgs/by-name/ja/jack-passthrough/package.nix index 67fa11c91e282..7ddef896944a8 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/jack_capture/package.nix b/pkgs/by-name/ja/jack_capture/package.nix index c4fa4d5a0a855..665bdfb30340f 100644 --- a/pkgs/by-name/ja/jack_capture/package.nix +++ b/pkgs/by-name/ja/jack_capture/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { 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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ orivej ]; 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 82b8da7773a9f..a9e144db95edd 100644 --- a/pkgs/by-name/ja/jack_oscrolloscope/package.nix +++ b/pkgs/by-name/ja/jack_oscrolloscope/package.nix @@ -31,11 +31,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/jackass/package.nix b/pkgs/by-name/ja/jackass/package.nix index 6f31b8bcfb8cc..706dd479d39fc 100644 --- a/pkgs/by-name/ja/jackass/package.nix +++ b/pkgs/by-name/ja/jackass/package.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "JackAss is a VST plugin that provides JACK-MIDI support for VST hosts"; longDescription = '' Simply load the plugin in your favourite host to get a JACK-MIDI port. @@ -67,11 +67,11 @@ stdenv.mkDerivation (finalAttrs: { applications. Set enableJackAssWine64 to true to enable this output. ''; homepage = "https://github.com/falkTX/JackAss"; - maintainers = with maintainers; [ PowerUser64 ]; - license = with licenses; [ + maintainers = with lib.maintainers; [ PowerUser64 ]; + license = with lib.licenses; [ mit unfree ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ja/jacktrip/package.nix b/pkgs/by-name/ja/jacktrip/package.nix index c8c98e6fbae12..9ca0359163fd5 100644 --- a/pkgs/by-name/ja/jacktrip/package.nix +++ b/pkgs/by-name/ja/jacktrip/package.nix @@ -56,16 +56,16 @@ stdenv.mkDerivation rec { qmakeFlags = [ "jacktrip.pro" ]; - meta = with lib; { + meta = { description = "Multi-machine audio network performance over the Internet"; mainProgram = "jacktrip"; homepage = "https://jacktrip.github.io/jacktrip/"; - license = with licenses; [ + license = with lib.licenses; [ gpl3 lgpl3 mit ]; - maintainers = [ maintainers.iwanb ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.iwanb ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ja/jacoco/package.nix b/pkgs/by-name/ja/jacoco/package.nix index 7702dc03137fb..4a619e181f4b8 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.epl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/ja/jags/package.nix b/pkgs/by-name/ja/jags/package.nix index f1069c09c8410..2deb7e82eead8 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 360fdf37ea323..1ecfc00347919 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/jamin/package.nix b/pkgs/by-name/ja/jamin/package.nix index ff055c7310491..c180fda94c820 100644 --- a/pkgs/by-name/ja/jamin/package.nix +++ b/pkgs/by-name/ja/jamin/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/jamin --set LADSPA_PATH ${ladspaPlugins}/lib/ladspa ''; - meta = with lib; { + meta = { homepage = "https://jamin.sourceforge.net"; description = "JACK Audio Mastering interface"; - license = licenses.gpl2; - maintainers = [ maintainers.nico202 ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.nico202 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ja/janusgraph/package.nix b/pkgs/by-name/ja/janusgraph/package.nix index 33b6f5e655c18..faa7bde73eeb1 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 0f28afdd5f09e..42f68c2f0666e 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 97ebe677594ea..451980eef9a7a 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 rec { 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/jazz2/package.nix b/pkgs/by-name/ja/jazz2/package.nix index 46fc1886e095f..b0ae146da631a 100644 --- a/pkgs/by-name/ja/jazz2/package.nix +++ b/pkgs/by-name/ja/jazz2/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation (finalAttrs: { package = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Open-source Jazz Jackrabbit 2 reimplementation"; homepage = "https://github.com/deathkiller/jazz2-native"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "jazz2"; - maintainers = with maintainers; [ surfaceflinger ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ surfaceflinger ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/jb/jbake/package.nix b/pkgs/by-name/jb/jbake/package.nix index 31f288d748f4e..4e66fb825ec87 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 d96d1669e926c..aa9f2eabc7cd2 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 = '' @@ -48,8 +48,8 @@ stdenv.mkDerivation rec { downloaded and the java code runs. ''; homepage = "https://www.jbang.dev"; - 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/jbigkit/package.nix b/pkgs/by-name/jb/jbigkit/package.nix index 884468e142074..61b1b3764b294 100644 --- a/pkgs/by-name/jb/jbigkit/package.nix +++ b/pkgs/by-name/jb/jbigkit/package.nix @@ -61,10 +61,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.cl.cam.ac.uk/~mgk25/jbigkit/"; description = "Software implementation of the JBIG1 data compression standard"; - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/jb/jbofihe/package.nix b/pkgs/by-name/jb/jbofihe/package.nix index 199ee632c19cc..331abc5172149 100644 --- a/pkgs/by-name/jb/jbofihe/package.nix +++ b/pkgs/by-name/jb/jbofihe/package.nix @@ -31,10 +31,10 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Parser & analyser for Lojban"; homepage = "https://github.com/lojban/jbofihe"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ chkno ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ chkno ]; }; } diff --git a/pkgs/by-name/jb/jboss_mysql_jdbc/package.nix b/pkgs/by-name/jb/jboss_mysql_jdbc/package.nix index f7559b03b348c..ba4e062660f54 100644 --- a/pkgs/by-name/jb/jboss_mysql_jdbc/package.nix +++ b/pkgs/by-name/jb/jboss_mysql_jdbc/package.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { inherit (mysql_jdbc.meta) description license diff --git a/pkgs/by-name/jb/jbrowse/package.nix b/pkgs/by-name/jb/jbrowse/package.nix index 2985eea88e877..f3dd3fde8d60e 100644 --- a/pkgs/by-name/jb/jbrowse/package.nix +++ b/pkgs/by-name/jb/jbrowse/package.nix @@ -31,12 +31,12 @@ 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; - maintainers = with maintainers; [ benwbooth ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ benwbooth ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/jc/jcal/package.nix b/pkgs/by-name/jc/jcal/package.nix index a2b30410ddd0f..aacf2050eef97 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 8ccf37a79f68e..ed9d9fcd289f8 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; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/jd/jd-diff-patch/package.nix b/pkgs/by-name/jd/jd-diff-patch/package.nix index e69daa1be12a4..ebead817711fa 100644 --- a/pkgs/by-name/jd/jd-diff-patch/package.nix +++ b/pkgs/by-name/jd/jd-diff-patch/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { vendorHash = null; - meta = with lib; { + meta = { description = "Commandline utility and Go library for diffing and patching JSON values"; homepage = "https://github.com/josephburnett/jd"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bryanasdev000 blaggacao ]; diff --git a/pkgs/by-name/jd/jdom/package.nix b/pkgs/by-name/jd/jdom/package.nix index 6e5003b4105a0..baa836aaac028 100644 --- a/pkgs/by-name/jd/jdom/package.nix +++ b/pkgs/by-name/jd/jdom/package.nix @@ -23,10 +23,10 @@ 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; - license = licenses.bsdOriginal; + platforms = lib.platforms.unix; + license = lib.licenses.bsdOriginal; }; } diff --git a/pkgs/by-name/je/jefferson/package.nix b/pkgs/by-name/je/jefferson/package.nix index 62e57693c5328..f6ad5e225f6ab 100644 --- a/pkgs/by-name/je/jefferson/package.nix +++ b/pkgs/by-name/je/jefferson/package.nix @@ -33,11 +33,11 @@ python3.pkgs.buildPythonApplication rec { # upstream has no tests doCheck = false; - 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 45d48bc23ae75..84264e0c47756 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 4e8f5c096065a..ef965ed0ff8f3 100644 --- a/pkgs/by-name/je/jelly/package.nix +++ b/pkgs/by-name/je/jelly/package.nix @@ -22,12 +22,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 94d83f6f7f82b..af09c72062feb 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 6d57a0be86343..59179676b4812 100644 --- a/pkgs/by-name/je/jellyfin-web/package.nix +++ b/pkgs/by-name/je/jellyfin-web/package.nix @@ -59,11 +59,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 a83ce8174b47e..8a3b36f7b4891 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/jellyseerr/package.nix b/pkgs/by-name/je/jellyseerr/package.nix index eb6f823e52d25..19768835c6bfe 100644 --- a/pkgs/by-name/je/jellyseerr/package.nix +++ b/pkgs/by-name/je/jellyseerr/package.nix @@ -71,7 +71,7 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Fork of overseerr for jellyfin support"; homepage = "https://github.com/Fallenbagel/jellyseerr"; longDescription = '' @@ -79,9 +79,9 @@ stdenv.mkDerivation rec { requests for your media library. It is a a fork of Overseerr built to bring support for Jellyfin & Emby media servers! ''; - license = licenses.mit; - maintainers = with maintainers; [ camillemndn ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ camillemndn ]; + platforms = lib.platforms.linux; mainProgram = "jellyseerr"; }; } diff --git a/pkgs/by-name/je/jen/package.nix b/pkgs/by-name/je/jen/package.nix index decc88434dd82..72af2f9c996c7 100644 --- a/pkgs/by-name/je/jen/package.nix +++ b/pkgs/by-name/je/jen/package.nix @@ -30,11 +30,11 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.Security ]; - meta = with lib; { + meta = { description = "Simple CLI generation tool for creating large datasets"; mainProgram = "jen"; homepage = "https://github.com/whitfin/jen"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/je/jextract-21/package.nix b/pkgs/by-name/je/jextract-21/package.nix index 68147eec93c27..ee87170a7011f 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 65c28acc2e4c2..3a60bd3d673c3 100644 --- a/pkgs/by-name/je/jextract/package.nix +++ b/pkgs/by-name/je/jextract/package.nix @@ -43,13 +43,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 = jdk23.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 973c8c5d0d19c..4e77d1d2841a7 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/jfsutils/package.nix b/pkgs/by-name/jf/jfsutils/package.nix index 5902d2383ba46..a0cfb595d06e3 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 7dc6ae4690bc1..03b3898b6105e 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 71ff68df0f759..79e1207a78da1 100644 --- a/pkgs/by-name/jg/jgmenu/package.nix +++ b/pkgs/by-name/jg/jgmenu/package.nix @@ -65,11 +65,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 7e85789f4f210..678f0c0f487b5 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/jigasi/package.nix b/pkgs/by-name/ji/jigasi/package.nix index a0a0ca2b2fa75..45cac7970ad48 100644 --- a/pkgs/by-name/ji/jigasi/package.nix +++ b/pkgs/by-name/ji/jigasi/package.nix @@ -38,15 +38,15 @@ stdenv.mkDerivation { single-node-smoke-test = nixosTests.jitsi-meet; }; - meta = with lib; { + meta = { description = "Server-side application that allows regular SIP clients to join Jitsi Meet conferences"; mainProgram = "jigasi"; longDescription = '' Jitsi Gateway to SIP: a server-side application that allows regular SIP clients to join Jitsi Meet conferences hosted by Jitsi Videobridge. ''; homepage = "https://github.com/jitsi/jigasi"; - license = licenses.asl20; - maintainers = teams.jitsi.members; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = lib.teams.jitsi.members; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ji/jigmo/package.nix b/pkgs/by-name/ji/jigmo/package.nix index 000d0388a5b38..0734fee1ea22e 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/jikespg/package.nix b/pkgs/by-name/ji/jikespg/package.nix index 3651ebe315679..0794c839b64f3 100644 --- a/pkgs/by-name/ji/jikespg/package.nix +++ b/pkgs/by-name/ji/jikespg/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { install -Dm755 -t $out/bin jikespg ''; - meta = with lib; { + meta = { homepage = "https://jikes.sourceforge.net/"; description = "Jikes Parser Generator"; mainProgram = "jikespg"; - platforms = platforms.all; - license = licenses.ipl10; - maintainers = with maintainers; [ pSub ]; + platforms = lib.platforms.all; + license = lib.licenses.ipl10; + maintainers = with lib.maintainers; [ pSub ]; }; } diff --git a/pkgs/by-name/ji/jinja2-cli/package.nix b/pkgs/by-name/ji/jinja2-cli/package.nix index 2b1392b4ecde3..f719dc11b6211 100644 --- a/pkgs/by-name/ji/jinja2-cli/package.nix +++ b/pkgs/by-name/ji/jinja2-cli/package.nix @@ -49,11 +49,11 @@ python3.pkgs.buildPythonApplication rec { yaml = [ pyyaml ]; }; - meta = with lib; { + meta = { description = "CLI for Jinja2"; homepage = "https://github.com/mattrobenolt/jinja2-cli"; - license = licenses.bsd2; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "jinja2"; }; } diff --git a/pkgs/by-name/ji/jiq/package.nix b/pkgs/by-name/ji/jiq/package.nix index 4123eed592126..154975b43941c 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 = "jid on jq - interactive JSON query tool using jq expressions"; mainProgram = "jiq"; maintainers = [ ]; diff --git a/pkgs/by-name/ji/jitsi-excalidraw/package.nix b/pkgs/by-name/ji/jitsi-excalidraw/package.nix index 26b91355a7393..970e698231909 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/jm/jmespath/package.nix b/pkgs/by-name/jm/jmespath/package.nix index eb3c8fbe5901f..d1f9916d6e012 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 = "JMESPath implementation in Go"; 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 1ada5a951ccb8..46cca300776fc 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; - maintainers = [ maintainers.bryanasdev000 ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.bryanasdev000 ]; priority = 1; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/jm/jmtpfs/package.nix b/pkgs/by-name/jm/jmtpfs/package.nix index 5c0540193ba69..abd79b31b874f 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/jn/jnr-posix/package.nix b/pkgs/by-name/jn/jnr-posix/package.nix index ce6dc4400bf5b..0700e3db3c407 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 = "jnr-posix is a 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/jn/jnv/package.nix b/pkgs/by-name/jn/jnv/package.nix index 5ebe8de37333c..4046c3943d2d9 100644 --- a/pkgs/by-name/jn/jnv/package.nix +++ b/pkgs/by-name/jn/jnv/package.nix @@ -26,12 +26,12 @@ rustPlatform.buildRustPackage rec { ] ); - meta = with lib; { + meta = { description = "Interactive JSON filter using jq"; mainProgram = "jnv"; homepage = "https://github.com/ynqa/jnv"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ nealfennimore nshalman ]; diff --git a/pkgs/by-name/jo/jo/package.nix b/pkgs/by-name/jo/jo/package.nix index 1c9bb4365a9e5..6ebc7e8817684 100644 --- a/pkgs/by-name/jo/jo/package.nix +++ b/pkgs/by-name/jo/jo/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "Small utility to create JSON objects"; homepage = "https://github.com/jpmens/jo"; mainProgram = "jo"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.markus1189 ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.markus1189 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/jo/jogl/package.nix b/pkgs/by-name/jo/jogl/package.nix index 5614e73ba0cd5..1e8a87e0aa90a 100644 --- a/pkgs/by-name/jo/jogl/package.nix +++ b/pkgs/by-name/jo/jogl/package.nix @@ -120,11 +120,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 77d69c1b4e94d..0c41b21e0c6c4 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 5551d131f2650..0631c58c6e4e1 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/joomscan/package.nix b/pkgs/by-name/jo/joomscan/package.nix index 5edbd1a98ddac..695e5378d6631 100644 --- a/pkgs/by-name/jo/joomscan/package.nix +++ b/pkgs/by-name/jo/joomscan/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { 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/jost/package.nix b/pkgs/by-name/jo/jost/package.nix index b2b3ddbc2674d..911edf4fe51e0 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 7859858ff8ca4..72337f6ffd45d 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-x61lOwMOOLD3RTdy3Ji+c7zcA1PCn09u75MyrPX/NbE="; - meta = with lib; { + meta = { description = "Rapid note management for the terminal"; homepage = "https://github.com/araekiel/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/joularjx/package.nix b/pkgs/by-name/jo/joularjx/package.nix index df0d66290a8dc..5dcd24baf3d18 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 f78d2a60fb8d3..ac879fc3d2714 100644 --- a/pkgs/by-name/jo/journaldriver/package.nix +++ b/pkgs/by-name/jo/journaldriver/package.nix @@ -27,12 +27,12 @@ rustPlatform.buildRustPackage rec { ]; 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 b7c2a10c41b28..f078d745fa1e1 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 3dca1f8866337..5f45ac274c089 100644 --- a/pkgs/by-name/jo/joycond-cemuhook/package.nix +++ b/pkgs/by-name/jo/joycond-cemuhook/package.nix @@ -29,12 +29,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 f73c944a039fa..fc4d2264c6ec1 100644 --- a/pkgs/by-name/jo/joycond/package.nix +++ b/pkgs/by-name/jo/joycond/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { "/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/joystickwake/package.nix b/pkgs/by-name/jo/joystickwake/package.nix index a5dad0c49c61a..f38245404fa25 100644 --- a/pkgs/by-name/jo/joystickwake/package.nix +++ b/pkgs/by-name/jo/joystickwake/package.nix @@ -25,7 +25,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 = '' @@ -33,8 +33,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 bdba45d5e83f0..181cd6e616f86 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/jp2a/package.nix b/pkgs/by-name/jp/jp2a/package.nix index 7c004b5d5eb41..167a5b9825f2a 100644 --- a/pkgs/by-name/jp/jp2a/package.nix +++ b/pkgs/by-name/jp/jp2a/package.nix @@ -38,13 +38,13 @@ stdenv.mkDerivation rec { installFlags = [ "bashcompdir=\${out}/share/bash-completion/completions" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "https://csl.name/jp2a/"; description = "Small utility that converts JPG images to ASCII"; - license = licenses.gpl2Only; - maintainers = [ maintainers.FlorianFranzen ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.FlorianFranzen ]; + platforms = lib.platforms.unix; mainProgram = "jp2a"; }; } diff --git a/pkgs/by-name/jp/jpcre2/package.nix b/pkgs/by-name/jp/jpcre2/package.nix index 6286efa651646..a39a02ca3dec8 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 dc893d758842d..d30af4f5ba0ad 100644 --- a/pkgs/by-name/jp/jpeg-archive/package.nix +++ b/pkgs/by-name/jp/jpeg-archive/package.nix @@ -48,11 +48,11 @@ 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; - maintainers = [ maintainers.srghma ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.srghma ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/jp/jpegexiforient/package.nix b/pkgs/by-name/jp/jpegexiforient/package.nix index d5bcdc945658a..fa3a998729e9e 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 4deebb1e8be23..16fcdc37ef17a 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 c842b92171237..9eec4fd051588 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; - maintainers = [ maintainers.aristid ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.aristid ]; + 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 96f362b7c9647..7cd81ea76685a 100644 --- a/pkgs/by-name/jp/jpegrescan/package.nix +++ b/pkgs/by-name/jp/jpegrescan/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { 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/jpsxdec/package.nix b/pkgs/by-name/jp/jpsxdec/package.nix index e8e6f380de2db..9ccb0e1c10dd1 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/jqp/package.nix b/pkgs/by-name/jq/jqp/package.nix index eb4fe385a9cbf..1a60ef8f2c354 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/jr/jrsonnet/package.nix b/pkgs/by-name/jr/jrsonnet/package.nix index a2db13c9b42fd..d6b017ea581cc 100644 --- a/pkgs/by-name/jr/jrsonnet/package.nix +++ b/pkgs/by-name/jr/jrsonnet/package.nix @@ -45,11 +45,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; [ figsoda lach ]; diff --git a/pkgs/by-name/js/jsduck/package.nix b/pkgs/by-name/js/jsduck/package.nix index cbfba38ed8c96..d36172df04d8f 100644 --- a/pkgs/by-name/js/jsduck/package.nix +++ b/pkgs/by-name/js/jsduck/package.nix @@ -29,15 +29,15 @@ stdenv.mkDerivation rec { passthru.updateScript = bundlerUpdateScript "jsduck"; - meta = with lib; { + meta = { description = "Simple JavaScript Duckumentation generator"; mainProgram = "jsduck"; homepage = "https://github.com/senchalabs/jsduck"; - license = with licenses; gpl3; - maintainers = with maintainers; [ + license = with lib.licenses; gpl3; + maintainers = with lib.maintainers; [ periklis nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/js/jshon/package.nix b/pkgs/by-name/js/jshon/package.nix index db2b8c6574ab4..daa54d002ec31 100644 --- a/pkgs/by-name/js/jshon/package.nix +++ b/pkgs/by-name/js/jshon/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { 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 635004f8640e4..5b7956af73a7a 100644 --- a/pkgs/by-name/js/jsluice/package.nix +++ b/pkgs/by-name/js/jsluice/package.nix @@ -22,10 +22,10 @@ buildGoModule rec { "-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 e9ee0cda1c667..807ffd9b717bd 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 9722f53dba4ef..5eb48b97621af 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; - maintainers = teams.gnome.members; - platforms = with platforms; unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + 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 7b0f08c523adc..742238e6adeb0 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 8c4883faa1ef1..19fa3ba47588b 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; - maintainers = with maintainers; [ matthewbauer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewbauer ]; }; } diff --git a/pkgs/by-name/js/json2ts/package.nix b/pkgs/by-name/js/json2ts/package.nix index afd374da6e2a0..5797c9125499c 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 9b49c3fd927c5..83d2e4d44eebe 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 b224da20070fd..79e810c5373dc 100644 --- a/pkgs/by-name/js/json_c/package.nix +++ b/pkgs/by-name/js/json_c/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "JSON implementation in C"; longDescription = '' JSON-C implements a reference counting object model that allows you to @@ -33,8 +33,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 0ca65befe5f89..9ebfbfb58fdfb 100644 --- a/pkgs/by-name/js/jsoncpp/package.nix +++ b/pkgs/by-name/js/jsoncpp/package.nix @@ -60,11 +60,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/jsonnet-bundler/package.nix b/pkgs/by-name/js/jsonnet-bundler/package.nix index 4750a17cd0cf1..e33b790b7a3c4 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 19035f75f9aff..c53913fa98d2a 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; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/js/jstest-gtk/package.nix b/pkgs/by-name/js/jstest-gtk/package.nix index 5108dd18c834d..11ed54ad05873 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 rec { 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 rec { to calibrate your joystick. ''; homepage = "https://jstest-gtk.gitlab.io/"; - 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 e4664bd4b0a53..20cb563098a56 100644 --- a/pkgs/by-name/js/jsubfinder/package.nix +++ b/pkgs/by-name/js/jsubfinder/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { 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 62ec3bea30334..cdc674339367c 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 5820a21e5e93a..84353c54bb783 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 a391cac9205b8..44ffff235bcff 100644 --- a/pkgs/by-name/ju/jugglinglab/package.nix +++ b/pkgs/by-name/ju/jugglinglab/package.nix @@ -65,15 +65,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 17e20bdcc2af4..07dcf614e8fe1 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/juju/package.nix b/pkgs/by-name/ju/juju/package.nix index e54327fee5457..14520840fa53e 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 36a92c0527b74..ae03ca3c8ed4b 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 2d9cec42ba95e..fadc47bed00b7 100644 --- a/pkgs/by-name/ju/julius/package.nix +++ b/pkgs/by-name/ju/julius/package.nix @@ -50,15 +50,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/jumanpp/package.nix b/pkgs/by-name/ju/jumanpp/package.nix index 6f0ca2599757a..43523a75f4adf 100644 --- a/pkgs/by-name/ju/jumanpp/package.nix +++ b/pkgs/by-name/ju/jumanpp/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; buildInputs = [ protobuf ] ++ lib.optional stdenv.hostPlatform.isDarwin libiconv; - meta = with lib; { + meta = { description = "Japanese morphological analyser using a recurrent neural network language model (RNNLM)"; mainProgram = "jumanpp"; longDescription = '' @@ -50,8 +50,8 @@ stdenv.mkDerivation rec { language model (RNNLM). ''; homepage = "https://nlp.ist.i.kyoto-u.ac.jp/index.php?JUMAN++"; - license = licenses.asl20; - maintainers = with maintainers; [ mt-caret ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mt-caret ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ju/jump/package.nix b/pkgs/by-name/ju/jump/package.nix index 02b97d03a839e..080af37ee693e 100644 --- a/pkgs/by-name/ju/jump/package.nix +++ b/pkgs/by-name/ju/jump/package.nix @@ -29,7 +29,7 @@ buildGoModule rec { installManPage man/j.1 man/jump.1 ''; - meta = with lib; { + meta = { description = "Navigate directories faster by learning your habits"; longDescription = '' Jump integrates with the shell and learns about your @@ -37,7 +37,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 f16770f3f1c36..4114fa64360be 100644 --- a/pkgs/by-name/ju/jumpnbump/package.nix +++ b/pkgs/by-name/ju/jumpnbump/package.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation rec { 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 40eb38f2fa470..687b163503b4c 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 23f0887f7c238..4da449b1909ab 100644 --- a/pkgs/by-name/ju/junction/package.nix +++ b/pkgs/by-name/ju/junction/package.nix @@ -68,12 +68,12 @@ 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 ] ++ lib.teams.gnome-circle.members; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ hqurve ] ++ lib.teams.gnome-circle.members; + 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 ffbb0524b9210..d8d66a8414ac8 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/jupp/package.nix b/pkgs/by-name/ju/jupp/package.nix index 7ef4c878658eb..0d407e903aefc 100644 --- a/pkgs/by-name/ju/jupp/package.nix +++ b/pkgs/by-name/ju/jupp/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { "--enable-termidx" ]; - meta = with lib; { + meta = { homepage = "http://www.mirbsd.org/jupp.htm"; downloadPage = "https://www.mirbsd.org/MirOS/dist/jupp/"; description = "Portable fork of Joe's editor"; @@ -46,8 +46,8 @@ stdenv.mkDerivation rec { and has a lot of bugs fixed. It is based upon an older version of joe because these behave better overall. ''; - license = licenses.gpl1Only; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = with platforms; unix; + license = lib.licenses.gpl1Only; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/ju/justify/package.nix b/pkgs/by-name/ju/justify/package.nix index 9e2aea2025e65..aec3255a5a37d 100644 --- a/pkgs/by-name/ju/justify/package.nix +++ b/pkgs/by-name/ju/justify/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { 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/jw/jwx/package.nix b/pkgs/by-name/jw/jwx/package.nix index 4f3b16cdebd7d..51f847a3e5e7f 100644 --- a/pkgs/by-name/jw/jwx/package.nix +++ b/pkgs/by-name/jw/jwx/package.nix @@ -19,12 +19,12 @@ buildGoModule rec { sourceRoot = "${src.name}/cmd/jwx"; - meta = with lib; { + meta = { description = " Implementation of various JWx (Javascript Object Signing and Encryption/JOSE) technologies"; mainProgram = "jwx"; homepage = "https://github.com/lestrrat-go/jwx"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ arianvp flokli ]; diff --git a/pkgs/by-name/jx/jxplorer/package.nix b/pkgs/by-name/jx/jxplorer/package.nix index eea1c6a6a7de1..c90a2097a839f 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.caossl; - maintainers = with maintainers; [ benwbooth ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ benwbooth ]; + platforms = lib.platforms.linux; mainProgram = "jxplorer"; }; } diff --git a/pkgs/by-name/k2/k2pdfopt/package.nix b/pkgs/by-name/k2/k2pdfopt/package.nix index 8feb2b25d2b54..c20ec5152d7d4 100644 --- a/pkgs/by-name/k2/k2pdfopt/package.nix +++ b/pkgs/by-name/k2/k2pdfopt/package.nix @@ -227,13 +227,13 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/k2pdfopt --set-default TESSDATA_PREFIX ${tesseract5}/share/tessdata ''; - meta = with lib; { + meta = { description = "Optimizes PDF/DJVU files for mobile e-readers (e.g. the Kindle) and smartphones"; homepage = "http://www.willus.com/k2pdfopt"; changelog = "https://www.willus.com/k2pdfopt/k2pdfopt_version.txt"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ bosu danielfullmer ]; diff --git a/pkgs/by-name/k2/k2tf/package.nix b/pkgs/by-name/k2/k2tf/package.nix index 1bf631353dcbb..2ae43a1270c82 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/k4/k40-whisperer/package.nix b/pkgs/by-name/k4/k40-whisperer/package.nix index fe659cbe19c62..9a937b13f59ee 100644 --- a/pkgs/by-name/k4/k40-whisperer/package.nix +++ b/pkgs/by-name/k4/k40-whisperer/package.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { --prefix PYTHONPATH : $out ''; - meta = with lib; { + meta = { description = '' Control software for the stock K40 Laser controller ''; @@ -70,8 +70,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 0c43141bb7c89..6937a9bafe18e 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 28f364021b604..65000144f3a65 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 = "KACST 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 06a37660017d4..8204fa854f83f 100644 --- a/pkgs/by-name/ka/kaf/package.nix +++ b/pkgs/by-name/ka/kaf/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # Many tests require a running Kafka instance doCheck = false; - 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 d2913e230a884..04dd46debff80 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/kail/package.nix b/pkgs/by-name/ka/kail/package.nix index c252233957636..922c3ff59a9af 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 7dcb250f2b40a..13a42974c5f6d 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 [ openjdk8 ]} ''; - 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 c5623479ae043..1d7e32e9db163 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 adfdc494077b2..e7c7a1c756131 100644 --- a/pkgs/by-name/ka/kalamine/package.nix +++ b/pkgs/by-name/ka/kalamine/package.nix @@ -29,11 +29,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "kalamine" ]; - meta = with lib; { + meta = { description = "Keyboard Layout Maker"; homepage = "https://github.com/OneDeadKey/kalamine/"; - license = licenses.mit; - maintainers = with maintainers; [ iogamaster ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ iogamaster ]; mainProgram = "kalamine"; }; } diff --git a/pkgs/by-name/ka/kamid/package.nix b/pkgs/by-name/ka/kamid/package.nix index 0b8924270b050..5f08c98eebfca 100644 --- a/pkgs/by-name/ka/kamid/package.nix +++ b/pkgs/by-name/ka/kamid/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { makeFlags = [ "AR:=$(AR)" ]; - meta = with lib; { + meta = { description = "FREE, easy-to-use and portable implementation of a 9p file server daemon for UNIX-like systems"; homepage = "https://kamid.omarpolo.com"; - license = licenses.isc; - maintainers = with maintainers; [ heph2 ]; - platforms = platforms.linux; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ heph2 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ka/kana/package.nix b/pkgs/by-name/ka/kana/package.nix index 78902b4c2fca3..b78be50de85b7 100644 --- a/pkgs/by-name/ka/kana/package.nix +++ b/pkgs/by-name/ka/kana/package.nix @@ -64,12 +64,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 4f33ec40c7979..c98ec89e924c1 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 42573489d134a..d2e7deb95be89 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 08df492acd721..84e472385a824 100644 --- a/pkgs/by-name/ka/kanata/package.nix +++ b/pkgs/by-name/ka/kanata/package.nix @@ -62,15 +62,15 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - 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; [ bmanuel linj ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "kanata"; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/ka/kanidm-provision/package.nix b/pkgs/by-name/ka/kanidm-provision/package.nix index 63d7e85ba8a8d..7d11d3378fd19 100644 --- a/pkgs/by-name/ka/kanidm-provision/package.nix +++ b/pkgs/by-name/ka/kanidm-provision/package.nix @@ -16,14 +16,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-tQ3uVsy5Dw4c4CbSeASv1TWkqxVYjl/Cjkr00OQEo9c="; - meta = with lib; { + meta = { description = "A small utility to help with kanidm provisioning"; homepage = "https://github.com/oddlama/kanidm-provision"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ oddlama ]; + maintainers = with lib.maintainers; [ oddlama ]; mainProgram = "kanidm-provision"; }; } diff --git a/pkgs/by-name/ka/kanit-font/package.nix b/pkgs/by-name/ka/kanit-font/package.nix index 37d15748987e0..06598c0238396 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 rec { 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 rec { 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/kapitonov-plugins-pack/package.nix b/pkgs/by-name/ka/kapitonov-plugins-pack/package.nix index ae774134acef6..a121055d61feb 100644 --- a/pkgs/by-name/ka/kapitonov-plugins-pack/package.nix +++ b/pkgs/by-name/ka/kapitonov-plugins-pack/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { zita-resampler ]; - 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/kapowbang/package.nix b/pkgs/by-name/ka/kapowbang/package.nix index d4e8e9cdd66c4..de502bfb78f52 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/kappanhang/package.nix b/pkgs/by-name/ka/kappanhang/package.nix index 8429279cafcd7..a397ebbce6942 100644 --- a/pkgs/by-name/ka/kappanhang/package.nix +++ b/pkgs/by-name/ka/kappanhang/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ pulseaudio ]; - meta = with lib; { + meta = { homepage = "https://github.com/nonoo/kappanhang"; description = "Remote control for Icom radio transceivers"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ mvs ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mvs ]; mainProgram = "kappanhang"; }; } diff --git a/pkgs/by-name/ka/kas/package.nix b/pkgs/by-name/ka/kas/package.nix index 8e9b740622405..65f731ada8d38 100644 --- a/pkgs/by-name/ka/kas/package.nix +++ b/pkgs/by-name/ka/kas/package.nix @@ -33,10 +33,10 @@ python3.pkgs.buildPythonApplication rec { command = "${pname} --version"; }; - 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 bb528e57e6646..c0f4f76126159 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 204d6777b0c4b..b5486fa3f0058 100644 --- a/pkgs/by-name/ka/katago/package.nix +++ b/pkgs/by-name/ka/katago/package.nix @@ -108,12 +108,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/kati/package.nix b/pkgs/by-name/ka/kati/package.nix index 661248987aee7..e956e4798851b 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 8fb3073405a44..5ff7103e7da94 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/ka/kazam/package.nix b/pkgs/by-name/ka/kazam/package.nix index ad4c7a7dcc4d1..45267e976f8b2 100644 --- a/pkgs/by-name/ka/kazam/package.nix +++ b/pkgs/by-name/ka/kazam/package.nix @@ -63,12 +63,12 @@ python3Packages.buildPythonApplication rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Screencasting program created with design in mind"; homepage = "https://github.com/niknah/kazam"; - license = licenses.lgpl3; - platforms = platforms.linux; - maintainers = [ maintainers.domenkozar ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.domenkozar ]; mainProgram = "kazam"; }; } diff --git a/pkgs/by-name/kb/kbd/package.nix b/pkgs/by-name/kb/kbd/package.nix index 4bf9cb4325b9c..d82cbbd0cbad3 100644 --- a/pkgs/by-name/kb/kbd/package.nix +++ b/pkgs/by-name/kb/kbd/package.nix @@ -100,11 +100,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://kbd-project.org/"; description = "Linux keyboard tools and keyboard maps"; - platforms = platforms.linux; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ davidak ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ davidak ]; }; } diff --git a/pkgs/by-name/kb/kbdlight/package.nix b/pkgs/by-name/kb/kbdlight/package.nix index efb971d634fce..4db6a2d50e0b8 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 93fa27fc26ca6..43d5a507ef4e8 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 6a7abdc808778..d933c43b37397 100644 --- a/pkgs/by-name/kb/kbt/package.nix +++ b/pkgs/by-name/kb/kbt/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage rec { xorg.libX11 ]; - meta = with lib; { + meta = { description = "Keyboard tester in terminal"; homepage = "https://github.com/bloznelis/kbt"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "kbt"; }; } diff --git a/pkgs/by-name/kc/kcgi/package.nix b/pkgs/by-name/kc/kcgi/package.nix index 246cc597407f3..36dc765376ac7 100644 --- a/pkgs/by-name/kc/kcgi/package.nix +++ b/pkgs/by-name/kc/kcgi/package.nix @@ -29,13 +29,13 @@ 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; - maintainers = [ maintainers.leenaars ]; + license = lib.licenses.isc; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.leenaars ]; mainProgram = "kfcgi"; }; } diff --git a/pkgs/by-name/kc/kchat/package.nix b/pkgs/by-name/kc/kchat/package.nix index c472bc2eafbe2..5d6834004b3d1 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/kcli/package.nix b/pkgs/by-name/kc/kcli/package.nix index ab609f2d87526..a15a8f94b2b2d 100644 --- a/pkgs/by-name/kc/kcli/package.nix +++ b/pkgs/by-name/kc/kcli/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = with lib; { + meta = { description = "Kafka command line browser"; homepage = "https://github.com/cswank/kcli"; - license = licenses.mit; - maintainers = with maintainers; [ cswank ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cswank ]; broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.goModules --check }; } diff --git a/pkgs/by-name/kc/kconf/package.nix b/pkgs/by-name/kc/kconf/package.nix index 52ed756298ca2..9cf9e3c3c0759 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/kcp/package.nix b/pkgs/by-name/kc/kcp/package.nix index b939e335718e7..b1dcb76bb9712 100644 --- a/pkgs/by-name/kc/kcp/package.nix +++ b/pkgs/by-name/kc/kcp/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - 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/kde-gruvbox/package.nix b/pkgs/by-name/kd/kde-gruvbox/package.nix index 5870e3c3c50da..799d0c2560224 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 rec { 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/kdotool/package.nix b/pkgs/by-name/kd/kdotool/package.nix index 2e34402ccaef4..8dd0d70d2106f 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-like 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/keepalived/package.nix b/pkgs/by-name/ke/keepalived/package.nix index 7e2e8526a649c..270f6d73703f9 100644 --- a/pkgs/by-name/ke/keepalived/package.nix +++ b/pkgs/by-name/ke/keepalived/package.nix @@ -54,11 +54,11 @@ 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 ]; }; } diff --git a/pkgs/by-name/ke/keepass-charactercopy/package.nix b/pkgs/by-name/ke/keepass-charactercopy/package.nix index d06a3f45cdc57..e887849270bdc 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 49da2f97203b4..b150a3f601bb7 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-+kgb9hbCH4Nt80nobTeDrC+LVp1r6EbzUs+t6zlIhtU="; - 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 3ff6d6efe4a92..7f7ca1f53f1cd 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; [ mjanczyk svsdep mgregoire diff --git a/pkgs/by-name/ke/keepass-keetraytotp/package.nix b/pkgs/by-name/ke/keepass-keetraytotp/package.nix index 5326d3614ef81..055756fdd0011 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 bb4f910abf28a..2b5a55d20a0cc 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 7bb649924ca37..7e09f3442dd61 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 c584834311cc7..e1d5bb3960c3f 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 49f8bb2b82d8d..f9cb29b06d636 100644 --- a/pkgs/by-name/ke/keet/package.nix +++ b/pkgs/by-name/ke/keet/package.nix @@ -33,11 +33,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 b9da399e61f0f..701f12acd6221 100644 --- a/pkgs/by-name/ke/kepler/package.nix +++ b/pkgs/by-name/ke/kepler/package.nix @@ -41,11 +41,11 @@ rustPlatform.buildRustPackage rec { 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 901cd6cba8b0e..5dc30fc565174 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 5dcbe23d9eb6d..e7b563a6de298 100644 --- a/pkgs/by-name/ke/kermit/package.nix +++ b/pkgs/by-name/ke/kermit/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation { make -f makefile install ''; - 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 05a25f28ad7c8..7ad7594b1f70a 100644 --- a/pkgs/by-name/ke/kernel-hardening-checker/package.nix +++ b/pkgs/by-name/ke/kernel-hardening-checker/package.nix @@ -15,12 +15,12 @@ python3Packages.buildPythonApplication rec { hash = "sha256-gxDaOb14jFezxe/qHZF3e52o7obVL0WMIKxwIj3j5QY="; }; - 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 ea7e50e76948f..c6870ef1ef741 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 ${pname} 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 5eef5475390ed..744d4f2d7b680 100644 --- a/pkgs/by-name/ke/kexec-tools/package.nix +++ b/pkgs/by-name/ke/kexec-tools/package.nix @@ -46,10 +46,10 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - 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" @@ -58,6 +58,6 @@ stdenv.mkDerivation rec { "sparc-linux" "sparc64-linux" ]; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/by-name/ke/keycard-cli/package.nix b/pkgs/by-name/ke/keycard-cli/package.nix index d301506004056..a1580a1686115 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/keycloak/keycloak-restrict-client-auth/default.nix b/pkgs/by-name/ke/keycloak/keycloak-restrict-client-auth/default.nix index 35b6a01ded3fd..179c9d66ed850 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/keyd/package.nix b/pkgs/by-name/ke/keyd/package.nix index b18f1271a7fa2..7d0709d396741 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 c4b708918c851..761c1daf57a6c 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 fe3380fd0652b..68fe91b03093f 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-controller-mschneider82/package.nix b/pkgs/by-name/ke/keylight-controller-mschneider82/package.nix index daf7309de2b3d..d1accd1c3f5d4 100644 --- a/pkgs/by-name/ke/keylight-controller-mschneider82/package.nix +++ b/pkgs/by-name/ke/keylight-controller-mschneider82/package.nix @@ -42,14 +42,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 d4b9638161747..c6cb1835755d7 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/keymapp/package.nix b/pkgs/by-name/ke/keymapp/package.nix index b5770c5344b1e..52a9649601978 100644 --- a/pkgs/by-name/ke/keymapp/package.nix +++ b/pkgs/by-name/ke/keymapp/package.nix @@ -61,14 +61,14 @@ stdenv.mkDerivation rec { desktopItems = [ desktopItem ]; - meta = with lib; { + meta = { homepage = "https://www.zsa.io/flash/"; description = "Application for ZSA keyboards"; maintainers = with lib.maintainers; [ jankaifer shawn8901 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; license = lib.licenses.unfree; }; } diff --git a/pkgs/by-name/ke/keymapviz/package.nix b/pkgs/by-name/ke/keymapviz/package.nix index 1188ce02597b8..d5e120d62776e 100644 --- a/pkgs/by-name/ke/keymapviz/package.nix +++ b/pkgs/by-name/ke/keymapviz/package.nix @@ -17,11 +17,11 @@ python3.pkgs.buildPythonApplication rec { propagatedBuildInputs = with python3.pkgs; [ regex ]; - meta = with lib; { + meta = { description = "Qmk keymap.c visualizer"; homepage = "https://github.com/yskoht/keymapviz"; - license = licenses.mit; - maintainers = with maintainers; [ lom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lom ]; mainProgram = "keymapviz"; }; } diff --git a/pkgs/by-name/ke/keynav/package.nix b/pkgs/by-name/ke/keynav/package.nix index 3ff04e0146efb..200419bd2b18b 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 036d7cf99e163..0b24c707dc107 100644 --- a/pkgs/by-name/ke/keystone/package.nix +++ b/pkgs/by-name/ke/keystone/package.nix @@ -35,12 +35,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; - maintainers = with maintainers; [ ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.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 5b1468bb4b57a..4f1a6d7b0a288 100644 --- a/pkgs/by-name/ke/keyutils/package.nix +++ b/pkgs/by-name/ke/keyutils/package.nix @@ -64,10 +64,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 ab6174f8dd436..a7aee395f8232 100644 --- a/pkgs/by-name/kg/kgeotag/package.nix +++ b/pkgs/by-name/kg/kgeotag/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { libsForQt5.marble ]; - 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/kh/khmeros/package.nix b/pkgs/by-name/kh/khmeros/package.nix index c867281fd1dd3..0bbd4e4f594ff 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 = "KhmerOS 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 51a110917758f..28e0c4674bcd6 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; - maintainers = with maintainers; [ davidtwco ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ davidtwco ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ki/ki/package.nix b/pkgs/by-name/ki/ki/package.nix index 6c2e6ca89451b..0d248454bb993 100644 --- a/pkgs/by-name/ki/ki/package.nix +++ b/pkgs/by-name/ki/ki/package.nix @@ -62,10 +62,10 @@ python3Packages.buildPythonApplication rec { # CMake needs to be run by pyproject rather than by its hook dontConfigure = true; - meta = with lib; { + meta = { description = "Version control for Anki collections"; homepage = "https://github.com/langfield/ki"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ eljamm ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ eljamm ]; }; } diff --git a/pkgs/by-name/ki/kibi/package.nix b/pkgs/by-name/ki/kibi/package.nix index 3ebac1f709b64..6d7e89f7a3eaa 100644 --- a/pkgs/by-name/ki/kibi/package.nix +++ b/pkgs/by-name/ki/kibi/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { wrapProgram $out/bin/kibi --prefix XDG_DATA_DIRS : "$out/share" ''; - meta = with lib; { + meta = { description = "Text editor in ≤1024 lines of code, written in Rust"; homepage = "https://github.com/ilai-deutel/kibi"; - license = licenses.mit; - maintainers = with maintainers; [ robertodr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ robertodr ]; mainProgram = "kibi"; }; } diff --git a/pkgs/by-name/ki/kickoff/package.nix b/pkgs/by-name/ki/kickoff/package.nix index eb19c1801c047..534b34c80b276 100644 --- a/pkgs/by-name/ki/kickoff/package.nix +++ b/pkgs/by-name/ki/kickoff/package.nix @@ -40,12 +40,12 @@ rustPlatform.buildRustPackage rec { wrapProgram "$out/bin/kickoff" --prefix LD_LIBRARY_PATH : "${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 3c1769bdd2eaa..f975fa0eb9399 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/kiln/package.nix b/pkgs/by-name/ki/kiln/package.nix index d5a4daa89358d..0d3ff2e791636 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 387c2fa69c17c..4ee46a70acf90 100644 --- a/pkgs/by-name/ki/kind/package.nix +++ b/pkgs/by-name/ki/kind/package.nix @@ -51,14 +51,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/kinect-audio-setup/package.nix b/pkgs/by-name/ki/kinect-audio-setup/package.nix index 5534ceb497cee..a56be297b8d02 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/kismet/package.nix b/pkgs/by-name/ki/kismet/package.nix index 0662a1b5e97f6..4d050326001a4 100644 --- a/pkgs/by-name/ki/kismet/package.nix +++ b/pkgs/by-name/ki/kismet/package.nix @@ -111,10 +111,10 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Wireless network sniffer"; homepage = "https://www.kismetwireless.net/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ki/kissat/package.nix b/pkgs/by-name/ki/kissat/package.nix index 0c08689cb5088..26875383dbe15 100644 --- a/pkgs/by-name/ki/kissat/package.nix +++ b/pkgs/by-name/ki/kissat/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "'keep it simple and clean bare metal SAT solver' written in C"; mainProgram = "kissat"; longDescription = '' @@ -57,9 +57,9 @@ stdenv.mkDerivation rec { 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"; }; } diff --git a/pkgs/by-name/ki/kiterunner/package.nix b/pkgs/by-name/ki/kiterunner/package.nix index 8ac6052fa4529..e46c5f02aa8f4 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 0e0e8f874dd3f..b40a4386fd516 100644 --- a/pkgs/by-name/ki/kitsas/package.nix +++ b/pkgs/by-name/ki/kitsas/package.nix @@ -57,12 +57,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/kl/klavaro/package.nix b/pkgs/by-name/kl/klavaro/package.nix index 1873aa38ac64f..13b3415ef4c54 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 3a242ab347296..a4a2f419a7d5e 100644 --- a/pkgs/by-name/kl/klipperscreen/package.nix +++ b/pkgs/by-name/kl/klipperscreen/package.nix @@ -47,11 +47,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 9805ecb6c9830..43210f36be147 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-QOS+D/zD5IlJBlb7vrOoHpP/7xS9En1/MFNwLSBrXOg="; - 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/kl/kluctl/package.nix b/pkgs/by-name/kl/kluctl/package.nix index 743672a9a2766..5ac37aa09b1b1 100644 --- a/pkgs/by-name/kl/kluctl/package.nix +++ b/pkgs/by-name/kl/kluctl/package.nix @@ -48,12 +48,12 @@ buildGoModule rec { --prefix PATH : '${lib.makeBinPath [ python310 ]}' ''; - meta = with lib; { + meta = { description = "Missing glue to put together large Kubernetes deployments"; mainProgram = "kluctl"; homepage = "https://kluctl.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sikmir netthier ]; diff --git a/pkgs/by-name/kl/klystrack/package.nix b/pkgs/by-name/kl/klystrack/package.nix index de92fa4d15096..d23efa13a28b8 100644 --- a/pkgs/by-name/kl/klystrack/package.nix +++ b/pkgs/by-name/kl/klystrack/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { --replace "klystrack %f" "$out/bin/klystrack %f" ''; - meta = with lib; { + meta = { description = "Chiptune tracker"; homepage = "https://kometbomb.github.io/klystrack"; - license = licenses.mit; - maintainers = with maintainers; [ suhr ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ suhr ]; + platforms = lib.platforms.linux; mainProgram = "klystrack"; }; } diff --git a/pkgs/by-name/km/kmeet/package.nix b/pkgs/by-name/km/kmeet/package.nix index 09e2921f17564..f1c2246105ba4 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 671aa6b5d1744..5910ecba1215a 100644 --- a/pkgs/by-name/km/kminion/package.nix +++ b/pkgs/by-name/km/kminion/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "KMinion is a feature-rich Prometheus exporter for Apache Kafka written in Go"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ cafkafk ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + 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 10e38954e7482..a166ba29ab5f3 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 39dd964936999..4cfe90a4499c2 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 c4b696cd255de..9d1ea30b466a6 100644 --- a/pkgs/by-name/km/kmscon/package.nix +++ b/pkgs/by-name/km/kmscon/package.nix @@ -78,12 +78,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "KMS/DRM based System Console"; mainProgram = "kmscon"; homepage = "https://www.freedesktop.org/wiki/Software/kmscon/"; - license = licenses.mit; - maintainers = with maintainers; [ omasanori ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ omasanori ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/km/kmscube/package.nix b/pkgs/by-name/km/kmscube/package.nix index a6c42798a00e8..c873bc4cf91d6 100644 --- a/pkgs/by-name/km/kmscube/package.nix +++ b/pkgs/by-name/km/kmscube/package.nix @@ -41,11 +41,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 238ea9ba372d1..629e3bf929e00 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 5c5b28321ed3f..70df2117d1c35 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 b91d29537a6f2..908b807c3ebcf 100644 --- a/pkgs/by-name/kn/knightos-genkfs/package.nix +++ b/pkgs/by-name/kn/knightos-genkfs/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - 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 5505936497c71..76c51f7166991 100644 --- a/pkgs/by-name/kn/knightos-kcc/package.nix +++ b/pkgs/by-name/kn/knightos-kcc/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { buildInputs = [ boost ]; - meta = with lib; { + meta = { homepage = "https://knightos.org/"; 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 732fc6f8e2b41..15163e83ca9fa 100644 --- a/pkgs/by-name/kn/knightos-kimg/package.nix +++ b/pkgs/by-name/kn/knightos-kimg/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - 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 3d4cc0595feac..a3d62d7403311 100644 --- a/pkgs/by-name/kn/knightos-kpack/package.nix +++ b/pkgs/by-name/kn/knightos-kpack/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "fortify" ]; - 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 100da9137d298..ce0b1d57d97f1 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 850a35df20d24..f60dd9ba75a08 100644 --- a/pkgs/by-name/kn/knightos-mktiupgrade/package.nix +++ b/pkgs/by-name/kn/knightos-mktiupgrade/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - 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 097fffc85698e..037377560f3b5 100644 --- a/pkgs/by-name/kn/knightos-patchrom/package.nix +++ b/pkgs/by-name/kn/knightos-patchrom/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - 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 a04b03e6d10f3..cdd7a01cb1904 100644 --- a/pkgs/by-name/kn/knightos-scas/package.nix +++ b/pkgs/by-name/kn/knightos-scas/package.nix @@ -48,11 +48,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 0b39ebfa09996..169d1a4557437 100644 --- a/pkgs/by-name/kn/knightos-z80e/package.nix +++ b/pkgs/by-name/kn/knightos-z80e/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-Denable-sdl=YES" ]; - 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 a29b3135c9814..9ba7ec293081c 100644 --- a/pkgs/by-name/kn/knossosnet/package.nix +++ b/pkgs/by-name/kn/knossosnet/package.nix @@ -25,11 +25,11 @@ buildDotnetModule rec { runtimeDeps = [ openal ]; - 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/kns/package.nix b/pkgs/by-name/kn/kns/package.nix index 1881d6863eb3e..32aaf64c40b32 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 61ce94997ae68..685309375d0a3 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/kodi-cli/package.nix b/pkgs/by-name/ko/kodi-cli/package.nix index 0d4906806a035..c776d541d8954 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/koji/package.nix b/pkgs/by-name/ko/koji/package.nix index 92fe3802fbae2..2ee09c895c871 100644 --- a/pkgs/by-name/ko/koji/package.nix +++ b/pkgs/by-name/ko/koji/package.nix @@ -33,12 +33,12 @@ rustPlatform.buildRustPackage rec { openssl.dev ]; - meta = with lib; { + meta = { description = "Interactive CLI for creating conventional commits"; homepage = "https://github.com/its-danny/koji"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ ByteSudoer ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ ByteSudoer ]; mainProgram = "koji"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ko/kokkos/package.nix b/pkgs/by-name/ko/kokkos/package.nix index aab67ad549141..9fc77ad54f91d 100644 --- a/pkgs/by-name/ko/kokkos/package.nix +++ b/pkgs/by-name/ko/kokkos/package.nix @@ -34,13 +34,13 @@ 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; [ asl20-llvm ]; - maintainers = with maintainers; [ Madouura ]; - platforms = platforms.unix; + license = with lib.licenses; [ asl20-llvm ]; + maintainers = with lib.maintainers; [ Madouura ]; + 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 678366edb3058..8c46011bb1291 100644 --- a/pkgs/by-name/ko/kolla/package.nix +++ b/pkgs/by-name/ko/kolla/package.nix @@ -68,11 +68,11 @@ pythonPackages.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 = teams.openstack.members ++ [ maintainers.astro ]; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members ++ [ lib.maintainers.astro ]; }; } diff --git a/pkgs/by-name/ko/komorebi/package.nix b/pkgs/by-name/ko/komorebi/package.nix index 8500661395e1c..4bf5bc23d2154 100644 --- a/pkgs/by-name/ko/komorebi/package.nix +++ b/pkgs/by-name/ko/komorebi/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { 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 bad37825a1f46..9434ae2d4df95 100644 --- a/pkgs/by-name/ko/kompose/package.nix +++ b/pkgs/by-name/ko/kompose/package.nix @@ -45,12 +45,12 @@ buildGoModule rec { 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"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ thpham vdemeester ]; diff --git a/pkgs/by-name/ko/kona/package.nix b/pkgs/by-name/ko/kona/package.nix index c163cb8b21174..68ac5b0c0cafe 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/konbucase/package.nix b/pkgs/by-name/ko/konbucase/package.nix index 905f63f5aa518..48b8693690c44 100644 --- a/pkgs/by-name/ko/konbucase/package.nix +++ b/pkgs/by-name/ko/konbucase/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation (finalAttrs: { --replace 'Exec=com.github.ryonakano.konbucase' 'Exec=${placeholder "out"}/bin/konbucase' ''; - meta = with lib; { + meta = { homepage = "https://github.com/ryonakano/konbucase"; description = "Case converting app suitable for coding or typing"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ galaxy ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ galaxy ]; + platforms = lib.platforms.linux; mainProgram = "konbucase"; }; }) diff --git a/pkgs/by-name/ko/kondo/package.nix b/pkgs/by-name/ko/kondo/package.nix index b3332634be478..f7d38d7d93d0d 100644 --- a/pkgs/by-name/ko/kondo/package.nix +++ b/pkgs/by-name/ko/kondo/package.nix @@ -28,11 +28,11 @@ 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; - maintainers = with maintainers; [ Br1ght0ne ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Br1ght0ne ]; mainProgram = "kondo"; }; } diff --git a/pkgs/by-name/ko/konf/package.nix b/pkgs/by-name/ko/konf/package.nix index 90ee378839ed1..0bacb166c7731 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 8500a9f32d143..833a5a7c3f33a 100644 --- a/pkgs/by-name/ko/konsave/package.nix +++ b/pkgs/by-name/ko/konsave/package.nix @@ -24,12 +24,12 @@ python3Packages.buildPythonApplication rec { export HOME=$(mktemp -d) ''; - 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 805677898470d..d2eda6cf0a803 100644 --- a/pkgs/by-name/ko/koodousfinder/package.nix +++ b/pkgs/by-name/ko/koodousfinder/package.nix @@ -32,10 +32,10 @@ python3.pkgs.buildPythonApplication rec { 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 83ac277aabd41..93dbe5707a424 100644 --- a/pkgs/by-name/ko/kooha/package.nix +++ b/pkgs/by-name/ko/kooha/package.nix @@ -68,12 +68,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/kord/package.nix b/pkgs/by-name/ko/kord/package.nix index 319ac891815ad..19505892ffa3a 100644 --- a/pkgs/by-name/ko/kord/package.nix +++ b/pkgs/by-name/ko/kord/package.nix @@ -49,10 +49,10 @@ rustPlatform.buildRustPackage rec { lib.optionals stdenv.hostPlatform.isLinux [ alsa-lib ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.AudioUnit ]; - 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 0ddc05e32e97a..0a8eb8bfe9160 100644 --- a/pkgs/by-name/ko/kore/package.nix +++ b/pkgs/by-name/ko/kore/package.nix @@ -56,11 +56,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 412b4a0fa1526..e5573a6e58e18 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 8ee1ed750260f..df2374d16858f 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 350772dbf7c6c..e350e78430e3b 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 52f9b4f8ed3a5..4fa2a990feb96 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 41792f04b4755..59edd2df47341 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 4286cbc5ba561..6eb3081f9ea19 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 75482a653dcca..64da1ac0071d6 100644 --- a/pkgs/by-name/kr/krakenx/package.nix +++ b/pkgs/by-name/kr/krakenx/package.nix @@ -17,11 +17,11 @@ python3Packages.buildPythonApplication rec { doCheck = false; # there are no tests - meta = with lib; { + meta = { description = "Python script to control NZXT cooler Kraken X52/X62/X72"; homepage = "https://github.com/KsenijaS/krakenx"; - license = licenses.gpl2Only; - maintainers = [ maintainers.willibutz ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.willibutz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/kr/krankerl/package.nix b/pkgs/by-name/kr/krankerl/package.nix index 85054c9d539c1..56cceb6ebcde3 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 8f2e657287549..6b33681fb1543 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/kreative-square-fonts/package.nix b/pkgs/by-name/kr/kreative-square-fonts/package.nix index d27fbea980345..f342dc3f465f1 100644 --- a/pkgs/by-name/kr/kreative-square-fonts/package.nix +++ b/pkgs/by-name/kr/kreative-square-fonts/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Fullwidth scalable monospace font designed specifically to support pseudographics, semigraphics, and private use characters"; homepage = "https://www.kreativekorp.com/software/fonts/ksquare.shtml"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = [ maintainers.linus ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.linus ]; }; } diff --git a/pkgs/by-name/kr/krew/package.nix b/pkgs/by-name/kr/krew/package.nix index 7ad84ac536f2e..25e9d44fa8218 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 25a90fcf9893b..186e655bad545 100644 --- a/pkgs/by-name/kr/krita-plugin-gmic/package.nix +++ b/pkgs/by-name/kr/krita-plugin-gmic/package.nix @@ -46,10 +46,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 ce13f06a9b26e..6a98e95b878af 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/ks/kseexpr/package.nix b/pkgs/by-name/ks/kseexpr/package.nix index 4bf5adf443536..138b6c2b56e8c 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 7ce890468b6b3..f88aa291210c3 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 7036b09986e8b..b446ebc454afa 100644 --- a/pkgs/by-name/ks/ksmbd-tools/package.nix +++ b/pkgs/by-name/ks/ksmbd-tools/package.nix @@ -41,10 +41,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/kssd/package.nix b/pkgs/by-name/ks/kssd/package.nix index 4e9fd39e4e7b3..42db67c337058 100644 --- a/pkgs/by-name/ks/kssd/package.nix +++ b/pkgs/by-name/ks/kssd/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "K-mer substring space decomposition"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/yhg926/public_kssd"; - maintainers = with maintainers; [ unode ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ unode ]; + platforms = lib.platforms.linux; mainProgram = "kssd"; }; }) diff --git a/pkgs/by-name/ks/ksuperkey/package.nix b/pkgs/by-name/ks/ksuperkey/package.nix index 44afd8773aefd..474aa82f2a188 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 8070bd50d09cc..5e2c373ad092f 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/ktfmt/package.nix b/pkgs/by-name/kt/ktfmt/package.nix index 05863a02ff23f..d3a3ff92138f3 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/ktop/package.nix b/pkgs/by-name/kt/ktop/package.nix index 964a44fffe1d2..7b31ac9941736 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 66fcee1889036..4135d62437a09 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/ku/kube-hunter/package.nix b/pkgs/by-name/ku/kube-hunter/package.nix index 47402ae085550..67b17d84191cb 100644 --- a/pkgs/by-name/ku/kube-hunter/package.nix +++ b/pkgs/by-name/ku/kube-hunter/package.nix @@ -53,11 +53,11 @@ 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"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with 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 8ce8a89608404..9d83148515565 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/kubecm/package.nix b/pkgs/by-name/ku/kubecm/package.nix index d67e5b2718b9f..9b22616f63cbe 100644 --- a/pkgs/by-name/ku/kubecm/package.nix +++ b/pkgs/by-name/ku/kubecm/package.nix @@ -24,11 +24,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; [ qjoly ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ qjoly ]; mainProgram = "kubecm"; }; } diff --git a/pkgs/by-name/ku/kubeconform/package.nix b/pkgs/by-name/ku/kubeconform/package.nix index dfef2b5a74b35..dee95a8d384c6 100644 --- a/pkgs/by-name/ku/kubeconform/package.nix +++ b/pkgs/by-name/ku/kubeconform/package.nix @@ -17,11 +17,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 fa9e163e5a733..3bef125087272 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-node-shell/package.nix b/pkgs/by-name/ku/kubectl-node-shell/package.nix index 8b1afed549727..81b9e6e5c8972 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 1cfcb192b3d12..91f3956dca0fe 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 b9a17df7cf663..9fdbf2a58a72a 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/kubefwd/package.nix b/pkgs/by-name/ku/kubefwd/package.nix index de0b6d9003e0a..8307d6ffa8345 100644 --- a/pkgs/by-name/ku/kubefwd/package.nix +++ b/pkgs/by-name/ku/kubefwd/package.nix @@ -23,11 +23,11 @@ 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; - maintainers = with maintainers; [ iogamaster ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ iogamaster ]; mainProgram = "kubefwd"; }; } diff --git a/pkgs/by-name/ku/kubelogin/package.nix b/pkgs/by-name/ku/kubelogin/package.nix index a1fa281a14db0..bb4aa4c58fa27 100644 --- a/pkgs/by-name/ku/kubelogin/package.nix +++ b/pkgs/by-name/ku/kubelogin/package.nix @@ -41,11 +41,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 4b2488f07a4a1..50c6fa599f853 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 339039be21b4d..713c1439ca39e 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 e10eea37c5ca1..2154cdd86ad75 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 9264facf3ae3d..2ffc495ae74ed 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 27027d2bbefd4..9e6c6449fc2c5 100644 --- a/pkgs/by-name/ku/kubernetes-polaris/package.nix +++ b/pkgs/by-name/ku/kubernetes-polaris/package.nix @@ -44,11 +44,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 409947d0ed853..6a7ab03a52204 100644 --- a/pkgs/by-name/ku/kubernix/package.nix +++ b/pkgs/by-name/ku/kubernix/package.nix @@ -24,12 +24,12 @@ rustPlatform.buildRustPackage rec { }; 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 eff7b4624dae7..beb83ed05603d 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; - maintainers = with maintainers; [ blaggacao ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ blaggacao ]; }; } diff --git a/pkgs/by-name/ku/kubetail/package.nix b/pkgs/by-name/ku/kubetail/package.nix index dd34d50425489..ff1c5e5090f40 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 93b4095888489..9b23ce2671cd7 100644 --- a/pkgs/by-name/ku/kubevirt/package.nix +++ b/pkgs/by-name/ku/kubevirt/package.nix @@ -45,11 +45,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 477e380c956c0..4fbaa9c79706e 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/kupfer/package.nix b/pkgs/by-name/ku/kupfer/package.nix index bbd12887f0753..01589474473bc 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/kuttl/package.nix b/pkgs/by-name/ku/kuttl/package.nix index a4f482272ed8b..8108fb6543a14 100644 --- a/pkgs/by-name/ku/kuttl/package.nix +++ b/pkgs/by-name/ku/kuttl/package.nix @@ -26,11 +26,11 @@ 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; - maintainers = with maintainers; [ diegolelis ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ diegolelis ]; mainProgram = "kubectl-kuttl"; }; } diff --git a/pkgs/by-name/kv/kvmtool/package.nix b/pkgs/by-name/kv/kvmtool/package.nix index 5a7fdd6e9ddd7..c94dfe41947ca 100644 --- a/pkgs/by-name/kv/kvmtool/package.nix +++ b/pkgs/by-name/kv/kvmtool/package.nix @@ -31,11 +31,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 1e2e7543141a9..e26f7d5bbff7e 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 0031a33ff4adc..0f1c13640cc72 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 6a926eefa6f09..e27d698799af7 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/l2/l2md/package.nix b/pkgs/by-name/l2/l2md/package.nix index 7313907924f2a..cf7237699ca6c 100644 --- a/pkgs/by-name/l2/l2md/package.nix +++ b/pkgs/by-name/l2/l2md/package.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { 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 rec { 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 6d3b4cc4b53df..801703697fb01 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 = "Lab 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 987b5461611df..2ef0be6c3bff9 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/labelImg/package.nix b/pkgs/by-name/la/labelImg/package.nix index b610920955904..78f79d207114a 100644 --- a/pkgs/by-name/la/labelImg/package.nix +++ b/pkgs/by-name/la/labelImg/package.nix @@ -40,12 +40,12 @@ python3Packages.buildPythonApplication rec { preFixup = '' makeWrapperArgs+=("''${qtWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Graphical image annotation tool and label object bounding boxes in images"; mainProgram = "labelImg"; homepage = "https://github.com/tzutalin/labelImg"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = [ maintainers.cmcdragonkai ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.cmcdragonkai ]; }; } diff --git a/pkgs/by-name/la/lalezar-fonts/package.nix b/pkgs/by-name/la/lalezar-fonts/package.nix index d78245f88f25e..8a1da894e179b 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/lambda-delta/package.nix b/pkgs/by-name/la/lambda-delta/package.nix index 79cad59598016..bea588db44b0f 100644 --- a/pkgs/by-name/la/lambda-delta/package.nix +++ b/pkgs/by-name/la/lambda-delta/package.nix @@ -29,11 +29,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 82cbd92129334..f007b755c2588 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 rec { 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 rec { 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 266dd9a2a4ace..5d40bdbe309dc 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 aa595e94efc2c..b5794732a5c19 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 9d5a1d2f7e9b7..a3d70ca2eb926 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/lanzaboote-tool/package.nix b/pkgs/by-name/la/lanzaboote-tool/package.nix index c13a0b8974df2..c1266f7aa546f 100644 --- a/pkgs/by-name/la/lanzaboote-tool/package.nix +++ b/pkgs/by-name/la/lanzaboote-tool/package.nix @@ -48,12 +48,12 @@ rustPlatform.buildRustPackage rec { sbsigntool ]; - meta = with lib; { + meta = { description = "Lanzaboote UEFI tooling for SecureBoot enablement on NixOS systems"; homepage = "https://github.com/nix-community/lanzaboote"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "lzbt"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ raitobezarius nikstur ]; diff --git a/pkgs/by-name/la/lao/package.nix b/pkgs/by-name/la/lao/package.nix index 921d9c9321714..bcb38d83407e2 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/lash/package.nix b/pkgs/by-name/la/lash/package.nix index c3ec6476b2a4e..edd088d9bf4ed 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 fb1a4e5411c53..795ecb4bc0ec2 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/lastpass-cli/package.nix b/pkgs/by-name/la/lastpass-cli/package.nix index c4c7d48d85dbd..ede35fa01911f 100644 --- a/pkgs/by-name/la/lastpass-cli/package.nix +++ b/pkgs/by-name/la/lastpass-cli/package.nix @@ -50,11 +50,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/laszip_2/package.nix b/pkgs/by-name/la/laszip_2/package.nix index 735e3e9c3836f..ad3438dcfd8d5 100644 --- a/pkgs/by-name/la/laszip_2/package.nix +++ b/pkgs/by-name/la/laszip_2/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Turn quickly bulky LAS files into compact LAZ files without information loss"; homepage = "https://laszip.org"; - license = licenses.lgpl2; - maintainers = [ maintainers.michelk ]; - platforms = platforms.unix; + license = lib.licenses.lgpl2; + maintainers = [ lib.maintainers.michelk ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/la/latexrun/package.nix b/pkgs/by-name/la/latexrun/package.nix index 464fc7dc9c0d7..f845e6718aec8 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/laudanum/package.nix b/pkgs/by-name/la/laudanum/package.nix index 19d0122a86f55..430d83a2f3146 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/lavanda-gtk-theme/package.nix b/pkgs/by-name/la/lavanda-gtk-theme/package.nix index 3a77a82fc7d10..c1b90a3897797 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/layan-gtk-theme/package.nix b/pkgs/by-name/la/layan-gtk-theme/package.nix index c159d831212fa..7156b94859ed1 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 80c8f4bbac3e8..fdf1699d6073f 100644 --- a/pkgs/by-name/la/lazycli/package.nix +++ b/pkgs/by-name/la/lazycli/package.nix @@ -22,11 +22,11 @@ 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "lazycli"; }; } diff --git a/pkgs/by-name/la/lazydocker/package.nix b/pkgs/by-name/la/lazydocker/package.nix index d3b35e9707311..131a60445852d 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 Br1ght0ne ]; diff --git a/pkgs/by-name/la/lazyjj/package.nix b/pkgs/by-name/la/lazyjj/package.nix index b45a4665cdde0..5da8c3048b296 100644 --- a/pkgs/by-name/la/lazyjj/package.nix +++ b/pkgs/by-name/la/lazyjj/package.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage rec { passthru.tests.version = testers.testVersion { package = lazyjj; }; - meta = with lib; { + meta = { description = "TUI for Jujutsu/jj"; homepage = "https://github.com/Cretezy/lazyjj"; mainProgram = "lazyjj"; - license = licenses.asl20; - maintainers = with maintainers; [ colemickens ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ colemickens ]; }; } diff --git a/pkgs/by-name/la/lazymc/package.nix b/pkgs/by-name/la/lazymc/package.nix index 75a6c1536c7fd..1b0b192252ec7 100644 --- a/pkgs/by-name/la/lazymc/package.nix +++ b/pkgs/by-name/la/lazymc/package.nix @@ -31,15 +31,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/lb/lbd/package.nix b/pkgs/by-name/lb/lbd/package.nix index 330d2775c03fd..d7d3193640343 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 c0cdd532a25f5..0aaa994511dac 100644 --- a/pkgs/by-name/lb/lbdb/package.nix +++ b/pkgs/by-name/lb/lbdb/package.nix @@ -63,14 +63,14 @@ stdenv.mkDerivation rec { }) ]; - 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 8785b836f0516..e6a5fa8a71d41 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 b08fa3c465160..ad009ddf512af 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; - maintainers = with maintainers; [ abbradar ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ abbradar ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/lc/lc3tools/package.nix b/pkgs/by-name/lc/lc3tools/package.nix index f1ea373519398..c9ef1484bb24f 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 dc7d018f23983..a82c5ca70be3e 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 af99cc33e17f3..a8486c4dc8fbf 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 ]; - maintainers = teams.sage.members; - platforms = platforms.all; + license = with lib.licenses; [ gpl2 ]; + maintainers = lib.teams.sage.members; + 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 07fe3981db667..b50b2840b2e90 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 81c2971b91035..ef1045cfba3dd 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 dd2c4df711f66..cead2dd380016 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 17af27ccd36be..48a3c81e5c257 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 a4aa2b6451980..d609e63a50678 100644 --- a/pkgs/by-name/ld/ldacbt/package.nix +++ b/pkgs/by-name/ld/ldacbt/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { "-DINSTALL_INCLUDEDIR=${placeholder "dev"}/include" ]; - 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 794eb6ef4819d..f2b39707674f2 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/ldc/bootstrap.nix b/pkgs/by-name/ld/ldc/bootstrap.nix index fcb1f5191de9b..4f40207211c21 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/ldid-procursus/package.nix b/pkgs/by-name/ld/ldid-procursus/package.nix index 1b964935fb242..c49c6b3042d74 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 19495696c14c0..28251a9a41074 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 920587a0e8d7c..0d0d6071f7d3c 100644 --- a/pkgs/by-name/ld/ldns/package.nix +++ b/pkgs/by-name/ld/ldns/package.nix @@ -55,12 +55,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/le/leaf/package.nix b/pkgs/by-name/le/leaf/package.nix index a37a9b1c9c370..16198879f63b2 100644 --- a/pkgs/by-name/le/leaf/package.nix +++ b/pkgs/by-name/le/leaf/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.SystemConfiguration ]; - meta = with lib; { + meta = { description = "Simple system fetch written in rust"; homepage = "https://github.com/IogaMaster/leaf"; - license = licenses.mit; - maintainers = with maintainers; [ iogamaster ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ iogamaster ]; mainProgram = "leaf"; }; } diff --git a/pkgs/by-name/le/lean2/package.nix b/pkgs/by-name/le/lean2/package.nix index f4378b1620cc9..d7189d15d1032 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 gebner ]; diff --git a/pkgs/by-name/le/lean4/package.nix b/pkgs/by-name/le/lean4/package.nix index 5feafb9d29693..705beecd4c4e3 100644 --- a/pkgs/by-name/le/lean4/package.nix +++ b/pkgs/by-name/le/lean4/package.nix @@ -62,13 +62,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.rev}/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 ad63f4492b0e6..03fa8acdacdcc 100644 --- a/pkgs/by-name/le/leanify/package.nix +++ b/pkgs/by-name/le/leanify/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Lightweight lossless file minifier/optimizer"; longDescription = '' Leanify is a lightweight lossless file minifier/optimizer. @@ -51,9 +51,9 @@ stdenv.mkDerivation rec { ''; 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 6c053c8343c2a..b4e5ea1d396d1 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 b73192f0b7881..38cb070a877bd 100644 --- a/pkgs/by-name/le/leatherman/package.nix +++ b/pkgs/by-name/le/leatherman/package.nix @@ -30,12 +30,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-udev-rules/package.nix b/pkgs/by-name/le/ledger-udev-rules/package.nix index c0d7a8f183162..c3ae0285e8db5 100644 --- a/pkgs/by-name/le/ledger-udev-rules/package.nix +++ b/pkgs/by-name/le/ledger-udev-rules/package.nix @@ -23,14 +23,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/ledit/package.nix b/pkgs/by-name/le/ledit/package.nix index f905c2b293125..c2b2d7728441b 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 767467c7ffec1..f7b9bc96c3179 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/leetcode-cli/package.nix b/pkgs/by-name/le/leetcode-cli/package.nix index d1d1442bd5b53..f1caeb5f2ab42 100644 --- a/pkgs/by-name/le/leetcode-cli/package.nix +++ b/pkgs/by-name/le/leetcode-cli/package.nix @@ -53,12 +53,12 @@ rustPlatform.buildRustPackage rec { version = "leetcode ${version}"; }; - meta = with lib; { + meta = { description = "May the code be with you 👻"; longDescription = "Use leetcode.com in command line"; 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 76bd0b5b17e20..c62d76442632d 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/legcord/package.nix b/pkgs/by-name/le/legcord/package.nix index a6bd478b084ab..8729b3b482ff2 100644 --- a/pkgs/by-name/le/legcord/package.nix +++ b/pkgs/by-name/le/legcord/package.nix @@ -81,12 +81,12 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Lightweight, alternative desktop client for Discord"; homepage = "https://legcord.app"; downloadPage = "https://github.com/Legcord/Legcord"; - license = licenses.osl3; - maintainers = with maintainers; [ + license = lib.licenses.osl3; + maintainers = with lib.maintainers; [ wrmilling water-sucks ]; diff --git a/pkgs/by-name/le/legit/package.nix b/pkgs/by-name/le/legit/package.nix index 500b1b8fef6ce..10c7f6a7961ca 100644 --- a/pkgs/by-name/le/legit/package.nix +++ b/pkgs/by-name/le/legit/package.nix @@ -24,11 +24,11 @@ python3Packages.buildPythonApplication rec { # no tests doCheck = false; - 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/lemminx/package.nix b/pkgs/by-name/le/lemminx/package.nix index f8f73a67b8ed6..41e9e2e5e12b4 100644 --- a/pkgs/by-name/le/lemminx/package.nix +++ b/pkgs/by-name/le/lemminx/package.nix @@ -109,11 +109,11 @@ maven.buildMavenPackage rec { sed -i "0,/mvnHash *= *\"[^\"]*\"/{s#mvnHash = \"[^\"]*\"#mvnHash = \"$NEW_MVN_HASH\"#}" ${lemminx} ''; - 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 1d687d237d949..93dc46a8f1bcf 100644 --- a/pkgs/by-name/le/lemon-graph/package.nix +++ b/pkgs/by-name/le/lemon-graph/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { ./remove-register.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 6535e2f1fb1d7..8ab85bd087118 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 c402e8a7d2ae5..726d3ec3700ee 100644 --- a/pkgs/by-name/le/lemonade/package.nix +++ b/pkgs/by-name/le/lemonade/package.nix @@ -27,10 +27,10 @@ buildGoModule rec { 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/lemurs/package.nix b/pkgs/by-name/le/lemurs/package.nix index e2526f3225097..dd08bc9e400bc 100644 --- a/pkgs/by-name/le/lemurs/package.nix +++ b/pkgs/by-name/le/lemurs/package.nix @@ -32,14 +32,14 @@ rustPlatform.buildRustPackage rec { package = lemurs; }; - meta = with lib; { + meta = { description = "Customizable TUI display/login manager written in Rust"; homepage = "https://github.com/coastalwhite/lemurs"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ jeremiahs ]; + maintainers = with lib.maintainers; [ jeremiahs ]; mainProgram = "lemurs"; }; } diff --git a/pkgs/by-name/le/lenpaste/package.nix b/pkgs/by-name/le/lenpaste/package.nix index 757a586b5b381..8098ca9f527b7 100644 --- a/pkgs/by-name/le/lenpaste/package.nix +++ b/pkgs/by-name/le/lenpaste/package.nix @@ -30,11 +30,11 @@ 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; - maintainers = with maintainers; [ vector1dev ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ vector1dev ]; mainProgram = "lenpaste"; }; } diff --git a/pkgs/by-name/le/lepton-eda/package.nix b/pkgs/by-name/le/lepton-eda/package.nix index 4c8d7ccc3453b..e685ec889d419 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 ba48910df32ee..bf62cf7d8b2b4 100644 --- a/pkgs/by-name/le/lepton/package.nix +++ b/pkgs/by-name/le/lepton/package.nix @@ -24,15 +24,15 @@ stdenv.mkDerivation rec { ]; 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/lerpn/package.nix b/pkgs/by-name/le/lerpn/package.nix index ac1d3d2e49cfc..a725d9742111c 100644 --- a/pkgs/by-name/le/lerpn/package.nix +++ b/pkgs/by-name/le/lerpn/package.nix @@ -25,11 +25,11 @@ python3.pkgs.buildPythonApplication { runHook postCheck ''; - 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 e05ad2f9a7d8a..9fe4547fcc35d 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 eb3e53b808199..3f202b38264a4 100644 --- a/pkgs/by-name/le/lesscpy/package.nix +++ b/pkgs/by-name/le/lesscpy/package.nix @@ -22,11 +22,11 @@ python3Packages.buildPythonApplication rec { doCheck = false; # Really weird test failures (`nix-build-python2.css not found`) - 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 5ef005aec7e8c..82839f259bf80 100644 --- a/pkgs/by-name/le/lesspass-cli/package.nix +++ b/pkgs/by-name/le/lesspass-cli/package.nix @@ -43,11 +43,11 @@ buildPythonApplication rec { pytest tests ''; - 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 0fd06e2758de4..80c69898e93cc 100644 --- a/pkgs/by-name/le/lesspipe/package.nix +++ b/pkgs/by-name/le/lesspipe/package.nix @@ -219,7 +219,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 @@ -234,8 +234,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/lesstif/package.nix b/pkgs/by-name/le/lesstif/package.nix index 0312e530c931c..4b9d0a9801c29 100644 --- a/pkgs/by-name/le/lesstif/package.nix +++ b/pkgs/by-name/le/lesstif/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { ./c-xpmpipethrough.patch ]; - meta = with lib; { + meta = { description = "Open source clone of the Motif widget set"; homepage = "https://lesstif.sourceforge.net"; - platforms = platforms.unix; - license = with licenses; [ + platforms = lib.platforms.unix; + license = with lib.licenses; [ gpl2 lgpl2 ]; diff --git a/pkgs/by-name/le/letterpress/package.nix b/pkgs/by-name/le/letterpress/package.nix index d477cf87ae0be..6a08418faafd8 100644 --- a/pkgs/by-name/le/letterpress/package.nix +++ b/pkgs/by-name/le/letterpress/package.nix @@ -73,7 +73,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. @@ -81,9 +81,9 @@ python3Packages.buildPythonApplication rec { High-res output can still be viewed comfortably by lowering the zoom factor. ''; homepage = "https://apps.gnome.org/Letterpress/"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.dawidd6 ] ++ lib.teams.gnome-circle.members; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.dawidd6 ] ++ lib.teams.gnome-circle.members; + 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 b998742f1c454..f1e1b9beeeb45 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 899135413fbc1..f07d03a1271ce 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 94b8cb554920e..c7a227dedbe36 100644 --- a/pkgs/by-name/le/lexend/package.nix +++ b/pkgs/by-name/le/lexend/package.nix @@ -27,11 +27,11 @@ stdenvNoCC.mkDerivation rec { 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 103d44b4763d7..0d14f34c55ff6 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/lf/lftp/package.nix b/pkgs/by-name/lf/lftp/package.nix index 37654dd957d96..5c6f647338574 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 f597fa1c27b1a..cd72aa1b24187 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 rec { 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/lhasa/package.nix b/pkgs/by-name/lh/lhasa/package.nix index ee98f0ac5c614..0721b8cbb530a 100644 --- a/pkgs/by-name/lh/lhasa/package.nix +++ b/pkgs/by-name/lh/lhasa/package.nix @@ -13,17 +13,17 @@ stdenv.mkDerivation rec { sha256 = "sha256-p/yIPDBMUIVi+5P6MHpMNCsMiG/MJl8ouS3Aw5IgxbM="; }; - 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"; - maintainers = [ maintainers.sander ]; + maintainers = [ lib.maintainers.sander ]; mainProgram = "lha"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/lib3270/package.nix b/pkgs/by-name/li/lib3270/package.nix index 78d168d78a351..dd24c933ceeb8 100644 --- a/pkgs/by-name/li/lib3270/package.nix +++ b/pkgs/by-name/li/lib3270/package.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "TN3270 client Library"; homepage = "https://github.com/PerryWerneck/lib3270"; - license = licenses.lgpl3Plus; - maintainers = [ maintainers.vifino ]; + license = lib.licenses.lgpl3Plus; + maintainers = [ lib.maintainers.vifino ]; }; } diff --git a/pkgs/by-name/li/lib3mf/package.nix b/pkgs/by-name/li/lib3mf/package.nix index c332654c2b15e..3cd1ed2b55253 100644 --- a/pkgs/by-name/li/lib3mf/package.nix +++ b/pkgs/by-name/li/lib3mf/package.nix @@ -79,11 +79,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Reference implementation of the 3D Manufacturing Format file standard"; homepage = "https://3mf.io/"; - license = licenses.bsd2; - maintainers = with maintainers; [ gebner ]; - platforms = platforms.all; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ gebner ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libGDSII/package.nix b/pkgs/by-name/li/libGDSII/package.nix index 36d13c9ed8c34..97cacb2160142 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 dda695c1f7472..e95023fc43cae 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 656aca8ddfa8c..81aca42e69b10 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; - maintainers = with maintainers; [ abbradar ]; - platforms = with platforms; linux; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ abbradar ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/li/libabigail/package.nix b/pkgs/by-name/li/libabigail/package.nix index f8f2578089503..9fe7515ad3819 100644 --- a/pkgs/by-name/li/libabigail/package.nix +++ b/pkgs/by-name/li/libabigail/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { patchShebangs tests/ ''; - meta = with lib; { + meta = { description = "ABI Generic Analysis and Instrumentation Library"; homepage = "https://sourceware.org/libabigail/"; - license = licenses.asl20-llvm; + license = lib.licenses.asl20-llvm; 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 a6c8be817e809..7bba4449f9d67 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/libaccounts-glib/package.nix b/pkgs/by-name/li/libaccounts-glib/package.nix index aa4fd5f15009d..9a85b1388e030 100644 --- a/pkgs/by-name/li/libaccounts-glib/package.nix +++ b/pkgs/by-name/li/libaccounts-glib/package.nix @@ -81,10 +81,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/libaec/package.nix b/pkgs/by-name/li/libaec/package.nix index e323b420b980c..da5e31bd6f2f3 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/libamplsolver/package.nix b/pkgs/by-name/li/libamplsolver/package.nix index d6a3e0a35682a..1417b1c607671 100644 --- a/pkgs/by-name/li/libamplsolver/package.nix +++ b/pkgs/by-name/li/libamplsolver/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { 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 76ad3a7734218..45919c448c25b 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/libappimage/package.nix b/pkgs/by-name/li/libappimage/package.nix index 8d2a1013aff80..7d8e4441a77c2 100644 --- a/pkgs/by-name/li/libappimage/package.nix +++ b/pkgs/by-name/li/libappimage/package.nix @@ -77,11 +77,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/libargon2/package.nix b/pkgs/by-name/li/libargon2/package.nix index ca9049503dc7d..0f307f036db15 100644 --- a/pkgs/by-name/li/libargon2/package.nix +++ b/pkgs/by-name/li/libargon2/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { "LIBRARIES=$(LIB_ST)" ]; - 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 e9900a4e4114e..b3ff9d1f89100 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/libasr/package.nix b/pkgs/by-name/li/libasr/package.nix index 7dccc5058e28e..8104d6a359e5e 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/libast/package.nix b/pkgs/by-name/li/libast/package.nix index c7bbce07f1198..0fd53bd465dc4 100644 --- a/pkgs/by-name/li/libast/package.nix +++ b/pkgs/by-name/li/libast/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Library of Assorted Spiffy Things"; mainProgram = "libast-config"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libasyncns/package.nix b/pkgs/by-name/li/libasyncns/package.nix index a13e3733ff96b..f7600800afb13 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 c3e5c301b37c0..d0cb107a5262c 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 a8245cb0fadf6..53435aaabeacc 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 073191c7a9d32..22b6a4dcd5686 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 15a9d11f33b1b..7916a588507a8 100644 --- a/pkgs/by-name/li/libax25/package.nix +++ b/pkgs/by-name/li/libax25/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { "-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/libayatana-common/package.nix b/pkgs/by-name/li/libayatana-common/package.nix index 687917e1bdd3c..4e299af39b13c 100644 --- a/pkgs/by-name/li/libayatana-common/package.nix +++ b/pkgs/by-name/li/libayatana-common/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = with lib; { + meta = { description = "Common functions for Ayatana System Indicators"; homepage = "https://github.com/AyatanaIndicators/libayatana-common"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.linux; pkgConfigModules = [ "libayatana-common" ]; diff --git a/pkgs/by-name/li/libb2/package.nix b/pkgs/by-name/li/libb2/package.nix index 77679c010a36b..e627539ba4625 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 33ce3d6a0ebe8..0f3abdba1ab9d 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 f4a65c01e297b..4b5828b9199e4 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 c894a07eba1f6..190fc006ba2f3 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; - maintainers = with maintainers; [ abbradar ]; - platforms = with platforms; unix; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ abbradar ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/li/libbgcode/package.nix b/pkgs/by-name/li/libbgcode/package.nix index ddfd37c773e24..c50956227b3b8 100644 --- a/pkgs/by-name/li/libbgcode/package.nix +++ b/pkgs/by-name/li/libbgcode/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation { catch2 ]; - 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 ccf75f7e7aab1..a90ab87bc1253 100644 --- a/pkgs/by-name/li/libbladeRF/package.nix +++ b/pkgs/by-name/li/libbladeRF/package.nix @@ -70,11 +70,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 7485e230d677e..df453ebc57fbd 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/libbpkg/package.nix b/pkgs/by-name/li/libbpkg/package.nix index f91d2e738ceb1..70668ce653c9c 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 1f25d4b30f745..99e0bcf3c90d0 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; - maintainers = teams.sage.members; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = lib.teams.sage.members; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libbsd/package.nix b/pkgs/by-name/li/libbsd/package.nix index 0bc9d73d4de88..5619734197dd8 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,9 +56,9 @@ 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 = with maintainers; [ matthewbauer ]; + maintainers = with lib.maintainers; [ matthewbauer ]; }; } diff --git a/pkgs/by-name/li/libcacard/package.nix b/pkgs/by-name/li/libcacard/package.nix index 3dfe6a7445baf..4f080ee3465fd 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/libcap_ng/package.nix b/pkgs/by-name/li/libcap_ng/package.nix index 6435e5b676bfd..31733c3b6d733 100644 --- a/pkgs/by-name/li/libcap_ng/package.nix +++ b/pkgs/by-name/li/libcap_ng/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { "--without-python" ]; - meta = with lib; { + meta = { description = "Library for working with POSIX capabilities"; homepage = "https://people.redhat.com/sgrubb/libcap-ng/"; - platforms = platforms.linux; - license = licenses.lgpl21; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/by-name/li/libcaption/package.nix b/pkgs/by-name/li/libcaption/package.nix index 8218389e43042..cb72e4e6921c9 100644 --- a/pkgs/by-name/li/libcaption/package.nix +++ b/pkgs/by-name/li/libcaption/package.nix @@ -21,11 +21,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/libcbor/package.nix b/pkgs/by-name/li/libcbor/package.nix index 96481722474cd..46fff62cb6476 100644 --- a/pkgs/by-name/li/libcbor/package.nix +++ b/pkgs/by-name/li/libcbor/package.nix @@ -56,10 +56,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 67eaa7eba25ea..902fb5f9d9d05 100644 --- a/pkgs/by-name/li/libccd/package.nix +++ b/pkgs/by-name/li/libccd/package.nix @@ -28,11 +28,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 e944a448710e5..318d96159263b 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 0830491431cb8..0262349831c4e 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/libcerf/package.nix b/pkgs/by-name/li/libcerf/package.nix index cd02eee33e70c..ffdebe7f43720 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; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libchardet/package.nix b/pkgs/by-name/li/libchardet/package.nix index ba922c6f98cf0..ffc51fda5c7f4 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; - maintainers = [ maintainers.abbradar ]; - platforms = platforms.unix; + license = lib.licenses.mpl11; + maintainers = [ lib.maintainers.abbradar ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libchewing/package.nix b/pkgs/by-name/li/libchewing/package.nix index 5fe2d1090e8ab..287af14c2d204 100644 --- a/pkgs/by-name/li/libchewing/package.nix +++ b/pkgs/by-name/li/libchewing/package.nix @@ -21,14 +21,14 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Intelligent Chinese phonetic input method"; homepage = "https://chewing.im/"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ ericsagnes ShamrockLee ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/li/libcint/package.nix b/pkgs/by-name/li/libcint/package.nix index a8460668b9085..3440b50e98c51 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; - maintainers = with maintainers; [ drewrisinger ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ drewrisinger ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libcircle/package.nix b/pkgs/by-name/li/libcircle/package.nix index fc59d955226cc..82001484a009c 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 a175f8128369f..d2dc935aab072 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/libcli/package.nix b/pkgs/by-name/li/libcli/package.nix index 71aca93bf84b8..360627d2f487c 100644 --- a/pkgs/by-name/li/libcli/package.nix +++ b/pkgs/by-name/li/libcli/package.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation rec { "-Wno-error=address" ]; - meta = with lib; { + meta = { description = "Emulate a Cisco-style telnet command-line interface"; homepage = "http://sites.dparrish.com/libcli"; - license = licenses.lgpl21Plus; - platforms = platforms.all; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libcloudproviders/package.nix b/pkgs/by-name/li/libcloudproviders/package.nix index c69a9ecc6cee7..649c27a37d081 100644 --- a/pkgs/by-name/li/libcloudproviders/package.nix +++ b/pkgs/by-name/li/libcloudproviders/package.nix @@ -58,11 +58,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 db0183c7e21a4..ecf506310f4ed 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 1aea861ea1a92..bb15eb70e46e2 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 6eb64381b9790..35774c6e72c9f 100644 --- a/pkgs/by-name/li/libcmis/package.nix +++ b/pkgs/by-name/li/libcmis/package.nix @@ -52,11 +52,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/libcork/package.nix b/pkgs/by-name/li/libcork/package.nix index e5f71c009db1f..164bdd0faf3ea 100644 --- a/pkgs/by-name/li/libcork/package.nix +++ b/pkgs/by-name/li/libcork/package.nix @@ -45,12 +45,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 28f92f6b45fa6..0d77c4a0b4fbb 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/libcpr/package.nix b/pkgs/by-name/li/libcpr/package.nix index 69852a3b150f9..0759bc0776d0c 100644 --- a/pkgs/by-name/li/libcpr/package.nix +++ b/pkgs/by-name/li/libcpr/package.nix @@ -46,11 +46,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/libcpr_1_10_5/package.nix b/pkgs/by-name/li/libcpr_1_10_5/package.nix index 2164dcce331ac..e63730d3fe504 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/libcredis/package.nix b/pkgs/by-name/li/libcredis/package.nix index 28103abe29e67..599c0f4fe45b6 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 3a165303f5ad3..3877c1f19b236 100644 --- a/pkgs/by-name/li/libcrossguid/package.nix +++ b/pkgs/by-name/li/libcrossguid/package.nix @@ -29,12 +29,12 @@ 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; - maintainers = with maintainers; [ edwtjo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ edwtjo ]; homepage = "https://github.com/graeme-hill/crossguid"; - platforms = with platforms; linux; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/li/libcs50/package.nix b/pkgs/by-name/li/libcs50/package.nix index becca7221ef6f..9ac6baa40b2fc 100644 --- a/pkgs/by-name/li/libcs50/package.nix +++ b/pkgs/by-name/li/libcs50/package.nix @@ -24,9 +24,9 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/cs50/libcs50"; description = "CS50 Library for C"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; }; }) diff --git a/pkgs/by-name/li/libcsa/package.nix b/pkgs/by-name/li/libcsa/package.nix index 5308a71d962df..a63ca0f55ea04 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 d055ec74479f7..5ed5530bcbb78 100644 --- a/pkgs/by-name/li/libcsptr/package.nix +++ b/pkgs/by-name/li/libcsptr/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - 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 4e5ea342e3bc5..e3dae03d7d42a 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 e9b459b8aa537..3d6c5d528b621 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; - maintainers = with maintainers; [ carpinchomug ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ carpinchomug ]; }; } diff --git a/pkgs/by-name/li/libcue/package.nix b/pkgs/by-name/li/libcue/package.nix index e21cbea721617..882cdb2bb0903 100644 --- a/pkgs/by-name/li/libcue/package.nix +++ b/pkgs/by-name/li/libcue/package.nix @@ -26,7 +26,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 @@ -34,8 +34,8 @@ stdenv.mkDerivation rec { available. ''; homepage = "https://github.com/lipnitsk/libcue"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ astsmtl ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ astsmtl ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libdatovka/package.nix b/pkgs/by-name/li/libdatovka/package.nix index 3f7bbef3c1a8d..7b78aa88289f7 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 9c22e4a46ca65..4403f1cf1cca2 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 7c54966532148..83073597f64da 100644 --- a/pkgs/by-name/li/libdazzle/package.nix +++ b/pkgs/by-name/li/libdazzle/package.nix @@ -79,7 +79,7 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Library to delight your users with fancy features"; mainProgram = "dazzle-list-counters"; longDescription = '' @@ -90,8 +90,8 @@ stdenv.mkDerivation rec { enough to work for everyone. ''; homepage = "https://gitlab.gnome.org/GNOME/libdazzle"; - license = licenses.gpl3Plus; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libdbi/package.nix b/pkgs/by-name/li/libdbi/package.nix index 44cd2e99f8c10..794ce92bbd878 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 4334f8ba5cb00..f83b551908695 100644 --- a/pkgs/by-name/li/libdbiDrivers/package.nix +++ b/pkgs/by-name/li/libdbiDrivers/package.nix @@ -82,11 +82,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/libdecor/package.nix b/pkgs/by-name/li/libdecor/package.nix index 063ad2f6059ca..492e1d0087342 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/libdicom/package.nix b/pkgs/by-name/li/libdicom/package.nix index b23fc37c56f8f..62fa5bf7b360c 100644 --- a/pkgs/by-name/li/libdicom/package.nix +++ b/pkgs/by-name/li/libdicom/package.nix @@ -44,11 +44,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/libdigidocpp/package.nix b/pkgs/by-name/li/libdigidocpp/package.nix index 3fc8389bc35d9..434ec79cb4373 100644 --- a/pkgs/by-name/li/libdigidocpp/package.nix +++ b/pkgs/by-name/li/libdigidocpp/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { patchelf --add-rpath ${opensc}/lib/pkcs11 $lib/lib/libdigidocpp.so ''; - 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; - maintainers = [ maintainers.jagajaga ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.jagajaga ]; }; } diff --git a/pkgs/by-name/li/libdiscid/package.nix b/pkgs/by-name/li/libdiscid/package.nix index e863863fe6f11..594fe5acd1286 100644 --- a/pkgs/by-name/li/libdiscid/package.nix +++ b/pkgs/by-name/li/libdiscid/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isDarwin "-framework CoreFoundation -framework IOKit"; - meta = with lib; { + meta = { description = "C library for creating MusicBrainz DiscIDs from audio CDs"; homepage = "http://musicbrainz.org/doc/libdiscid"; - maintainers = with maintainers; [ ehmry ]; - license = licenses.lgpl21; - platforms = platforms.all; + maintainers = with lib.maintainers; [ ehmry ]; + 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 a54ee542097ae..327e0f7d932df 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 rec { 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 e2ac2746af6a9..91f591b0b0254 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 = "http://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 0b514a34a2097..a763349517d1b 100644 --- a/pkgs/by-name/li/libdjinterop/package.nix +++ b/pkgs/by-name/li/libdjinterop/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation { 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 47b02a65e0833..6fa1a29138fa1 100644 --- a/pkgs/by-name/li/libdmapsharing/package.nix +++ b/pkgs/by-name/li/libdmapsharing/package.nix @@ -89,11 +89,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"; - maintainers = teams.gnome.members; - license = licenses.lgpl21Plus; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + 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 055c90f7d9c4d..d853a1b26acaf 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/libdsk/package.nix b/pkgs/by-name/li/libdsk/package.nix index 4fd1a7391b860..f88d521b595c2 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-uDRwFS2oF1k/m4biJvkxq+cacB1QlefM0T5bC2h1dd4="; }; - 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 71a7e206860dc..4b5d8921aeb19 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/libdynd/package.nix b/pkgs/by-name/li/libdynd/package.nix index 8bfc3412e3413..d95f971b37542 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/libe-book/package.nix b/pkgs/by-name/li/libe-book/package.nix index a0caf15289786..c1c6c971783d1 100644 --- a/pkgs/by-name/li/libe-book/package.nix +++ b/pkgs/by-name/li/libe-book/package.nix @@ -43,10 +43,10 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-Wno-error=unused-function"; - meta = with lib; { + meta = { description = "Library for import of reflowable e-book formats"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libe57format/package.nix b/pkgs/by-name/li/libe57format/package.nix index bf391abd82d83..5e4a9ba2286ac 100644 --- a/pkgs/by-name/li/libe57format/package.nix +++ b/pkgs/by-name/li/libe57format/package.nix @@ -83,14 +83,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 af477fdc92851..758a6c9db6563 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 b1d23e0f7a9dc..ddd7cb5469832 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; - maintainers = with maintainers; [ gebner ]; - platforms = with platforms; unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ gebner ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/li/libebml/package.nix b/pkgs/by-name/li/libebml/package.nix index e6bd5d29bca29..8d36d583aaf29 100644 --- a/pkgs/by-name/li/libebml/package.nix +++ b/pkgs/by-name/li/libebml/package.nix @@ -27,11 +27,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 c992560630379..0da5c67ef86fe 100644 --- a/pkgs/by-name/li/libebur128/package.nix +++ b/pkgs/by-name/li/libebur128/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { --replace '$'{prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@ ''; - 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 654f9ba462554..73b953f852c37 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/libelfin/package.nix b/pkgs/by-name/li/libelfin/package.nix index a76808dede96e..3e64a21c057e0 100644 --- a/pkgs/by-name/li/libelfin/package.nix +++ b/pkgs/by-name/li/libelfin/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/aclements/libelfin/"; - license = licenses.mit; + license = lib.licenses.mit; description = "C++11 ELF/DWARF parser"; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libemf2svg/package.nix b/pkgs/by-name/li/libemf2svg/package.nix index b1ede82417442..79f11570f87b5 100644 --- a/pkgs/by-name/li/libemf2svg/package.nix +++ b/pkgs/by-name/li/libemf2svg/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { libpng ]; - 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 b9a94a544cab3..76bc7ff99a749 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 = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/li/libepubgen/package.nix b/pkgs/by-name/li/libepubgen/package.nix index 4f02f57598467..e75de3af9e9f7 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 4bcbc3083f756..58263b406920e 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/liberasurecode/package.nix b/pkgs/by-name/li/liberasurecode/package.nix index 058e3e155ab82..dc49a1dc9c9c0 100644 --- a/pkgs/by-name/li/liberasurecode/package.nix +++ b/pkgs/by-name/li/liberasurecode/package.nix @@ -61,11 +61,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; - maintainers = teams.openstack.members; + license = lib.licenses.bsd2; + maintainers = lib.teams.openstack.members; pkgConfigModules = [ "erasurecode-1" ]; }; }) diff --git a/pkgs/by-name/li/liberfa/package.nix b/pkgs/by-name/li/liberfa/package.nix index 7a31b881b1e2a..c87f6ed3c8e1f 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 b6ddf988b36e9..7cfc0c5ef59a4 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 79455a3f0dbef..aebd1d9c47d98 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 46f2f27567f86..212a0eb1eca28 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 453139ad2ac4b..141ef7faffcc3 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 4183c0e5e8154..3748467dcf206 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 67ec18801a040..324b25da918cd 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 = "A 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 e1612b75b231b..285358683767f 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 5d56ee62fe64d..511e2d37af91d 100644 --- a/pkgs/by-name/li/libevdev/package.nix +++ b/pkgs/by-name/li/libevdev/package.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ 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; - maintainers = [ maintainers.amorsillo ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.amorsillo ]; }; } diff --git a/pkgs/by-name/li/libevdevc/package.nix b/pkgs/by-name/li/libevdevc/package.nix index 0eb423dd6720d..eea628fb93302 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/libevdevplus/package.nix b/pkgs/by-name/li/libevdevplus/package.nix index da881c6d8bfab..5920a7dd527d6 100644 --- a/pkgs/by-name/li/libevdevplus/package.nix +++ b/pkgs/by-name/li/libevdevplus/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Easy-to-use event device library in C++"; - license = licenses.mit; - maintainers = with maintainers; [ willibutz ]; - platforms = with platforms; linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ willibutz ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/li/libexecinfo/package.nix b/pkgs/by-name/li/libexecinfo/package.nix index 066a29a580bc2..80f7e2b30b649 100644 --- a/pkgs/by-name/li/libexecinfo/package.nix +++ b/pkgs/by-name/li/libexecinfo/package.nix @@ -52,9 +52,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 31fc243ca2dfc..870ee962aa009 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 5927101d0bcc4..a3f9a73260c4a 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 e6bd0eb7997fc..1b983f597f345 100644 --- a/pkgs/by-name/li/libexsid/package.nix +++ b/pkgs/by-name/li/libexsid/package.nix @@ -38,11 +38,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 ba7b16d087306..b4a188b9d0107 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 621403e3bdc09..721381073b2af 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 9a90ea45bd87f..b0b19847d211b 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/libfaketime/package.nix b/pkgs/by-name/li/libfaketime/package.nix index 9eba7b189c1f1..af77798904551 100644 --- a/pkgs/by-name/li/libfaketime/package.nix +++ b/pkgs/by-name/li/libfaketime/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { nativeCheckInputs = [ perl ]; - meta = with lib; { + meta = { description = "Report faked system time to programs without having to change the system-wide time"; homepage = "https://github.com/wolfcw/libfaketime/"; - license = licenses.gpl2; - platforms = platforms.all; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.bjornfor ]; mainProgram = "faketime"; }; } diff --git a/pkgs/by-name/li/libff/package.nix b/pkgs/by-name/li/libff/package.nix index 3a48a3145a44e..96b14b928ce77 100644 --- a/pkgs/by-name/li/libff/package.nix +++ b/pkgs/by-name/li/libff/package.nix @@ -43,12 +43,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/libfido2/package.nix b/pkgs/by-name/li/libfido2/package.nix index f8e75b6acb8b1..49008dfd83c19 100644 --- a/pkgs/by-name/li/libfido2/package.nix +++ b/pkgs/by-name/li/libfido2/package.nix @@ -63,13 +63,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/libfprint-2-tod1-vfs0090/package.nix b/pkgs/by-name/li/libfprint-2-tod1-vfs0090/package.nix index 7d0d006dbb4c5..15ca0b54eaf2e 100644 --- a/pkgs/by-name/li/libfprint-2-tod1-vfs0090/package.nix +++ b/pkgs/by-name/li/libfprint-2-tod1-vfs0090/package.nix @@ -60,11 +60,11 @@ 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 ]; }; } diff --git a/pkgs/by-name/li/libfprint-tod/package.nix b/pkgs/by-name/li/libfprint-tod/package.nix index 30f2b91864d7d..83367f279c3ff 100644 --- a/pkgs/by-name/li/libfprint-tod/package.nix +++ b/pkgs/by-name/li/libfprint-tod/package.nix @@ -38,12 +38,12 @@ libfprint.overrideAttrs ( patchShebangs ./tests/*.py ./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/libfpx/package.nix b/pkgs/by-name/li/libfpx/package.nix index 08851aa477590..ad28e8af010fc 100644 --- a/pkgs/by-name/li/libfpx/package.nix +++ b/pkgs/by-name/li/libfpx/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "http://www.imagemagick.org"; description = "Library for manipulating FlashPIX images"; license = "Flashpix"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libfreeaptx/package.nix b/pkgs/by-name/li/libfreeaptx/package.nix index 3c7291f060e72..951dc90913fb1 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 940e6ac38ffc7..779caf615aa94 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/libgdamm/package.nix b/pkgs/by-name/li/libgdamm/package.nix index 074a8167e9a07..f7881f5052717 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 = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libgee/package.nix b/pkgs/by-name/li/libgee/package.nix index ef7856de5efab..204a8ed6b08c1 100644 --- a/pkgs/by-name/li/libgee/package.nix +++ b/pkgs/by-name/li/libgee/package.nix @@ -54,11 +54,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; - maintainers = teams.gnome.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.gnome.members; }; }) diff --git a/pkgs/by-name/li/libgen-cli/package.nix b/pkgs/by-name/li/libgen-cli/package.nix index b296e9e140a22..27ed3fae1f797 100644 --- a/pkgs/by-name/li/libgen-cli/package.nix +++ b/pkgs/by-name/li/libgen-cli/package.nix @@ -36,7 +36,7 @@ buildGoModule rec { --zsh <($out/bin/libgen-cli completion zsh) ''; - meta = with lib; { + meta = { homepage = "https://github.com/ciehanski/libgen-cli"; description = "A CLI tool used to access the Library Genesis dataset; written in Go"; longDescription = '' @@ -44,8 +44,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/libgepub/package.nix b/pkgs/by-name/li/libgepub/package.nix index 9d4e8ef50097c..5dfd9c1c696c6 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; - maintainers = teams.gnome.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.gnome.members; }; } diff --git a/pkgs/by-name/li/libgestures/package.nix b/pkgs/by-name/li/libgestures/package.nix index 144a457c1987a..f8a532c6e519a 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 cc0470babd9cd..47a603a06a1b4 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 b292d314c1954..9eec6686cb7e7 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 aad8fec365cde..8fbab7bfbe168 100644 --- a/pkgs/by-name/li/libgit2-glib/package.nix +++ b/pkgs/by-name/li/libgit2-glib/package.nix @@ -78,11 +78,11 @@ stdenv.mkDerivation rec { }; }; - 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; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libgmpris/package.nix b/pkgs/by-name/li/libgmpris/package.nix index c1368abe6ceb8..dfc4c0b425651 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 88db2b779ea1e..4f2b0bfaaad01 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"; - maintainers = teams.gnome.members; - license = licenses.gpl2; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libgnurl/package.nix b/pkgs/by-name/li/libgnurl/package.nix index d1f3ecf8c790a..8e72d0f5d6571 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 cc669b5120305..e7c239a4f0bff 100644 --- a/pkgs/by-name/li/libgourou/package.nix +++ b/pkgs/by-name/li/libgourou/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Implementation of Adobe's ADEPT protocol for ePub/PDF DRM"; homepage = "https://indefero.soutade.fr/p/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 98aa1e319b620..5d0402f99506c 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_1/package.nix b/pkgs/by-name/li/libgpiod_1/package.nix index 444459d660181..52978c129e57d 100644 --- a/pkgs/by-name/li/libgpiod_1/package.nix +++ b/pkgs/by-name/li/libgpiod_1/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { "--prefix=${placeholder "out"}" ] ++ 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 @@ -53,8 +53,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/libgrapheme/package.nix b/pkgs/by-name/li/libgrapheme/package.nix index bde5ddc937c7b..c2143e3107988 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 fb941e531bebd..64c499b98684f 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/libgssglue/package.nix b/pkgs/by-name/li/libgssglue/package.nix index b11c9e3600a59..d0cb8a5942578 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 a32f890d9f5f4..a825f7ab67eca 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 8b8a4cc41e4dd..82c04e72cce48 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 36264b173dfb1..f764010c4b086 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; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libgudev/package.nix b/pkgs/by-name/li/libgudev/package.nix index 6e9007b90945d..8eda81592e354 100644 --- a/pkgs/by-name/li/libgudev/package.nix +++ b/pkgs/by-name/li/libgudev/package.nix @@ -82,11 +82,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Library that provides GObject bindings for libudev"; homepage = "https://gitlab.gnome.org/GNOME/libgudev"; - maintainers = teams.gnome.members; - platforms = platforms.linux; - license = licenses.lgpl2Plus; + maintainers = lib.teams.gnome.members; + 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 9282997335d3c..6f50297bc9186 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 6160e7276c2d2..01aa7ae1f619a 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 a27aa76edcf92..239e5e937fc43 100644 --- a/pkgs/by-name/li/libgweather/package.nix +++ b/pkgs/by-name/li/libgweather/package.nix @@ -120,11 +120,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; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libgxps/package.nix b/pkgs/by-name/li/libgxps/package.nix index 29f5289b5ea21..dca6f2d4b4548 100644 --- a/pkgs/by-name/li/libgxps/package.nix +++ b/pkgs/by-name/li/libgxps/package.nix @@ -61,11 +61,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; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libhangul/package.nix b/pkgs/by-name/li/libhangul/package.nix index f08e47b21d05d..5bb008a3d1116 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/libhomfly/package.nix b/pkgs/by-name/li/libhomfly/package.nix index 9cae6196d83c0..552173695f93d 100644 --- a/pkgs/by-name/li/libhomfly/package.nix +++ b/pkgs/by-name/li/libhomfly/package.nix @@ -27,11 +27,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; - maintainers = teams.sage.members; - platforms = platforms.all; + license = lib.licenses.unlicense; + maintainers = lib.teams.sage.members; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libhsts/package.nix b/pkgs/by-name/li/libhsts/package.nix index 697f71b732ecd..8196d717967bf 100644 --- a/pkgs/by-name/li/libhsts/package.nix +++ b/pkgs/by-name/li/libhsts/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { "dev" ]; - meta = with lib; { + meta = { description = "Library to easily check a domain against the Chromium HSTS Preload list"; mainProgram = "hsts"; homepage = "https://gitlab.com/rockdaboot/libhsts"; - license = with licenses; [ + license = with lib.licenses; [ mit bsd3 ]; diff --git a/pkgs/by-name/li/libhttpserver/package.nix b/pkgs/by-name/li/libhttpserver/package.nix index 64077cab20d32..52366b98a9a85 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/libhv/package.nix b/pkgs/by-name/li/libhv/package.nix index 4eb104dbce543..49f34f8816af2 100644 --- a/pkgs/by-name/li/libhv/package.nix +++ b/pkgs/by-name/li/libhv/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation (finalAttrs: { "-DWITH_KCP=ON" ]; - meta = with lib; { + meta = { description = "C/c++ network library for developing TCP/UDP/SSL/HTTP/WebSocket/MQTT client/server"; homepage = "https://github.com/ithewei/libhv"; - 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/li/libhwy/package.nix b/pkgs/by-name/li/libhwy/package.nix index c282d8420a34e..cf30a6fe94d52 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/libibmad/package.nix b/pkgs/by-name/li/libibmad/package.nix index 40fea53848351..0193047f69b4f 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 1f280e4142cd3..a10ca90384109 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 d0853240ec565..48e9c943568db 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 42d7254f09090..45711fd939d6e 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 d40ebb5567c7f..ea3f1d9231ea0 100644 --- a/pkgs/by-name/li/libieee1284/package.nix +++ b/pkgs/by-name/li/libieee1284/package.nix @@ -54,12 +54,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 6a8fd441cc40f..d4c5ae1005134 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 085915ea352f3..ca726d384d930 100644 --- a/pkgs/by-name/li/libigl/package.nix +++ b/pkgs/by-name/li/libigl/package.nix @@ -22,10 +22,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { cp -r include/igl $out/include ''; - 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/libilbm/package.nix b/pkgs/by-name/li/libilbm/package.nix index 2a8ef532dade7..af3f925729a24 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/libime/package.nix b/pkgs/by-name/li/libime/package.nix index db80dc81742f7..cee227f566f51 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 01a0ea4f8494d..1893f627cee74 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/libindicator/package.nix b/pkgs/by-name/li/libindicator/package.nix index 72bd23985a381..2fa1a94cbd1cf 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 1e8e6959f09bb..d62f2249b5875 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/libinotify-kqueue/package.nix b/pkgs/by-name/li/libinotify-kqueue/package.nix index f797660b0b79a..f952212a30e16 100644 --- a/pkgs/by-name/li/libinotify-kqueue/package.nix +++ b/pkgs/by-name/li/libinotify-kqueue/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { doCheck = true; 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 bc7f391ff1e65..333ffdf6c8071 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; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libipfix/package.nix b/pkgs/by-name/li/libipfix/package.nix index 70f480e0570b2..4ff9250132643 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 = "Libipfix C-library 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 73f14cec3603a..d7bc73b933c49 100644 --- a/pkgs/by-name/li/libipt/package.nix +++ b/pkgs/by-name/li/libipt/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; buildInputs = lib.optional stdenv.hostPlatform.isFreeBSD freebsd.libstdthreads; - meta = with lib; { + meta = { description = "Intel Processor Trace decoder library"; homepage = "https://github.com/intel/libipt"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/li/libiptcdata/package.nix b/pkgs/by-name/li/libiptcdata/package.nix index 3e25f36bd6e51..a0d0cf0744260 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 903dafce1b585..a7706e03247d8 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 f9be0ab0146bc..ff726bc0dc572 100644 --- a/pkgs/by-name/li/libirecovery/package.nix +++ b/pkgs/by-name/li/libirecovery/package.nix @@ -48,7 +48,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 @@ -56,9 +56,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 6067083ef57ab..2e88c120ede38 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 5ca83d7f6edd6..07be0efe99178 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/libitl/package.nix b/pkgs/by-name/li/libitl/package.nix index ce6c87b115ee3..6ca13a6d9c610 100644 --- a/pkgs/by-name/li/libitl/package.nix +++ b/pkgs/by-name/li/libitl/package.nix @@ -18,15 +18,15 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-bhejnA7FfuopR27heliaE/vNd1Rqvnjj3n/vkjmimAw="; }; - 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 5cb6cc0fbd0b4..ecb9a03dca77d 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/libjaylink/package.nix b/pkgs/by-name/li/libjaylink/package.nix index 594726f6efe14..732c8ae6ea46e 100644 --- a/pkgs/by-name/li/libjaylink/package.nix +++ b/pkgs/by-name/li/libjaylink/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { install -Dm644 contrib/99-libjaylink.rules $out/lib/udev/rules.d/libjaylink.rules ''; - meta = with lib; { + meta = { homepage = "https://gitlab.zapb.de/libjaylink/libjaylink"; description = "libjaylink is a 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 8393016e39da6..05845ecf77b90 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/libjpeg_turbo/package.nix b/pkgs/by-name/li/libjpeg_turbo/package.nix index 26baf7f7ed5c5..73ae969010100 100644 --- a/pkgs/by-name/li/libjpeg_turbo/package.nix +++ b/pkgs/by-name/li/libjpeg_turbo/package.nix @@ -117,18 +117,18 @@ stdenv.mkDerivation (finalAttrs: { pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = with lib; { + meta = { homepage = "https://libjpeg-turbo.org/"; description = "Faster (using SIMD) libjpeg implementation"; - license = licenses.ijg; # and some parts under other BSD-style licenses + license = lib.licenses.ijg; # and some parts under other BSD-style licenses pkgConfigModules = [ "libjpeg" "libturbojpeg" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ vcunat kamadorueda ]; - 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 b2e3417c09208..fd978d058c533 100644 --- a/pkgs/by-name/li/libjson-rpc-cpp/package.nix +++ b/pkgs/by-name/li/libjson-rpc-cpp/package.nix @@ -97,13 +97,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 9f27a1a319ada..5bb93c8ad95b4 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 d4ebba5f18423..bec9e3ad97ee5 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 e9860f5867f2c..8e5a550614312 100644 --- a/pkgs/by-name/li/libjxl/package.nix +++ b/pkgs/by-name/li/libjxl/package.nix @@ -165,11 +165,11 @@ stdenv.mkDerivation rec { # https://github.com/NixOS/nixpkgs/pull/204030#issuecomment-1352768690 doCheck = with stdenv; !(hostPlatform.isi686 || isDarwin && isx86_64); - 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/libkate/package.nix b/pkgs/by-name/li/libkate/package.nix index 418e91d7ebb07..a6a06614782fa 100644 --- a/pkgs/by-name/li/libkate/package.nix +++ b/pkgs/by-name/li/libkate/package.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { libpng ]; - meta = with lib; { + meta = { description = "Library for encoding and decoding Kate streams"; longDescription = '' This is libkate, the reference implementation of a codec for the Kate @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { in an Ogg container. It can carry Unicode text, images, and animate them.''; homepage = "https://code.google.com/archive/p/libkate/"; - platforms = platforms.unix; - license = licenses.bsd3; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/li/libkeyfinder/package.nix b/pkgs/by-name/li/libkeyfinder/package.nix index 350f44dea2902..f944835edb083 100644 --- a/pkgs/by-name/li/libkeyfinder/package.nix +++ b/pkgs/by-name/li/libkeyfinder/package.nix @@ -27,10 +27,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/libkkc-data/package.nix b/pkgs/by-name/li/libkkc-data/package.nix index dfd6d86a28998..0b9a71de7b55f 100644 --- a/pkgs/by-name/li/libkkc-data/package.nix +++ b/pkgs/by-name/li/libkkc-data/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { description = "Language model data package for libkkc"; homepage = "https://github.com/ueno/libkkc"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ vanzef ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ vanzef ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libkkc/package.nix b/pkgs/by-name/li/libkkc/package.nix index a329b39739de8..0516f9d23cf30 100644 --- a/pkgs/by-name/li/libkkc/package.nix +++ b/pkgs/by-name/li/libkkc/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { ln -s ${libkkc-data}/lib/libkkc/models $out/share/libkkc/models ''; - meta = with lib; { + meta = { description = "Japanese Kana Kanji conversion input method library"; homepage = "https://github.com/ueno/libkkc"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ vanzef ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ vanzef ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libkrun/package.nix b/pkgs/by-name/li/libkrun/package.nix index 692b989f11c96..df69f23995d59 100644 --- a/pkgs/by-name/li/libkrun/package.nix +++ b/pkgs/by-name/li/libkrun/package.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation (finalAttrs: { mv $out/include $dev/include ''; - meta = with lib; { + meta = { description = "Dynamic library providing Virtualization-based process isolation capabilities"; homepage = "https://github.com/containers/libkrun"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nickcao RossComputerGuy ]; diff --git a/pkgs/by-name/li/libks/package.nix b/pkgs/by-name/li/libks/package.nix index 80d0ce24474a8..75db12e5b3ec7 100644 --- a/pkgs/by-name/li/libks/package.nix +++ b/pkgs/by-name/li/libks/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Foundational support for signalwire C products"; homepage = "https://github.com/signalwire/libks"; maintainers = with lib.maintainers; [ misuzu ]; - 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 e45be78cae0a4..8aa6240aa628e 100644 --- a/pkgs/by-name/li/libksba/package.nix +++ b/pkgs/by-name/li/libksba/package.nix @@ -34,12 +34,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 162167e820f73..e8c4e369d614b 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 dde975fd05e86..3a64a2d0e9955 100644 --- a/pkgs/by-name/li/liblangtag/package.nix +++ b/pkgs/by-name/li/liblangtag/package.nix @@ -67,11 +67,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 905cc1cb9a165..1a8cd073c0ca7 100644 --- a/pkgs/by-name/li/liblaxjson/package.nix +++ b/pkgs/by-name/li/liblaxjson/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Library for parsing JSON config files"; homepage = "https://github.com/andrewrk/liblaxjson"; - 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/liblc3/package.nix b/pkgs/by-name/li/liblc3/package.nix index 0da8995a793ff..453492f52523e 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 4721bd659ce57..e9814416be8f5 100644 --- a/pkgs/by-name/li/liblcf/package.nix +++ b/pkgs/by-name/li/liblcf/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; - 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 75ff37996e75e..38fee736dc36f 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/liblinphone/package.nix b/pkgs/by-name/li/liblinphone/package.nix index f22403a79cb35..45bb94e1a7e9f 100644 --- a/pkgs/by-name/li/liblinphone/package.nix +++ b/pkgs/by-name/li/liblinphone/package.nix @@ -85,11 +85,11 @@ stdenv.mkDerivation rec { ln -s ${belcard}/share/belr/grammars/* $out/share/belr/grammars/ ''; - meta = with lib; { + meta = { homepage = "https://www.linphone.org/technical-corner/liblinphone"; description = "Library for SIP calls and instant messaging"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/by-name/li/liblogging/package.nix b/pkgs/by-name/li/liblogging/package.nix index 8ca62ab2e5d24..0e21cfeb470c3 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/liblognorm/package.nix b/pkgs/by-name/li/liblognorm/package.nix index 68c757de75e8f..38d3676faba8a 100644 --- a/pkgs/by-name/li/liblognorm/package.nix +++ b/pkgs/by-name/li/liblognorm/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-regexp" ]; - meta = with lib; { + meta = { description = "Help to make sense out of syslog data, or, actually, any event data that is present in text form"; homepage = "https://www.liblognorm.com/"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; mainProgram = "lognormalizer"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/liblscp/package.nix b/pkgs/by-name/li/liblscp/package.nix index 97c48cfa2ca21..488c0240495ee 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 9c07075526a88..438647c3086a0 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/libmad/package.nix b/pkgs/by-name/li/libmad/package.nix index f6772748edb72..e516498807205 100644 --- a/pkgs/by-name/li/libmad/package.nix +++ b/pkgs/by-name/li/libmad/package.nix @@ -84,11 +84,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 4a0bb9f0a97df..82f64d389b6e1 100644 --- a/pkgs/by-name/li/libmanette/package.nix +++ b/pkgs/by-name/li/libmanette/package.nix @@ -78,12 +78,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Simple GObject game controller library"; mainProgram = "manette-test"; homepage = "https://gnome.pages.gitlab.gnome.org/libmanette/"; - license = licenses.lgpl21Plus; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libmaxminddb/package.nix b/pkgs/by-name/li/libmaxminddb/package.nix index 539fa33d2c545..5a4eb1584ca66 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-su6nmpb+13rU1sOew0/tg9Rfy3WjHFiVaBPVjc8wsZ8="; }; - meta = with lib; { + meta = { description = "C library for working with MaxMind geolocation DB files"; homepage = "https://github.com/maxmind/libmaxminddb"; - license = licenses.asl20; - maintainers = teams.helsinki-systems.members; + license = lib.licenses.asl20; + maintainers = lib.teams.helsinki-systems.members; 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 a4b9b92e98ccf..282566f5bfda0 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 085798010bd89..cdd0c80ace2a8 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/libmediaart/package.nix b/pkgs/by-name/li/libmediaart/package.nix index 1e84e68401f7a..eff06f0841976 100644 --- a/pkgs/by-name/li/libmediaart/package.nix +++ b/pkgs/by-name/li/libmediaart/package.nix @@ -62,10 +62,10 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Library tasked with managing, extracting and handling media art caches"; - maintainers = teams.gnome.members; - license = licenses.gpl2; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libmicrodns/package.nix b/pkgs/by-name/li/libmicrodns/package.nix index fbf36f3b181ca..1994fd8637572 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/libmilter/package.nix b/pkgs/by-name/li/libmilter/package.nix index c8fe5eed03623..471d7e6bf3b58 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 c30eab86fe5b1..8c25c0f179870 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 2d4630e698235..e304e654e7230 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/libmodbus/package.nix b/pkgs/by-name/li/libmodbus/package.nix index 96e7b0d2b46b5..71e688eb259cb 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 dd5ee10ca5b30..9f8440062eec0 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/libmodule/package.nix b/pkgs/by-name/li/libmodule/package.nix index dbb2505e5c184..91bf111216f06 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/libmowgli/package.nix b/pkgs/by-name/li/libmowgli/package.nix index 2f2575a3a1833..d744dfbf9146b 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/libmp3splt/package.nix b/pkgs/by-name/li/libmp3splt/package.nix index 92d9ee1248305..46037d4258541 100644 --- a/pkgs/by-name/li/libmp3splt/package.nix +++ b/pkgs/by-name/li/libmp3splt/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { configureFlags = [ "--disable-pcre" ]; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/mp3splt/"; description = "Utility to split mp3, ogg vorbis and FLAC files without decoding"; - maintainers = with maintainers; [ bosu ]; - platforms = platforms.unix; - license = licenses.gpl2; + maintainers = with lib.maintainers; [ bosu ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/by-name/li/libmsym/package.nix b/pkgs/by-name/li/libmsym/package.nix index 998cee1f48be8..88b0c8cda38f1 100644 --- a/pkgs/by-name/li/libmsym/package.nix +++ b/pkgs/by-name/li/libmsym/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = " molecular point group symmetry lib"; homepage = "https://github.com/mcodev31/libmsym"; - 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/li/libmtp/package.nix b/pkgs/by-name/li/libmtp/package.nix index d61f1936fb527..28979403df236 100644 --- a/pkgs/by-name/li/libmtp/package.nix +++ b/pkgs/by-name/li/libmtp/package.nix @@ -67,7 +67,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/libmtp/libmtp"; description = "Implementation of Microsoft's Media Transfer Protocol"; longDescription = '' @@ -75,8 +75,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 732db1b4c9b26..3fdb31a44bc1c 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 76a98bb5f2197..03706b8962900 100644 --- a/pkgs/by-name/li/libmypaint/package.nix +++ b/pkgs/by-name/li/libmypaint/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { preConfigure = "./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 67961dc1cf6c4..e5dac672f46fe 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 58bec38657e4e..9a65d164ea51e 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 95ec99a736301..1a824f03efc68 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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ orivej ]; 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 9f4bbb0ebbfc7..d21e5650738e8 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 0bc5de4e4f05a..409a7438aac24 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/libndp/package.nix b/pkgs/by-name/li/libndp/package.nix index 933c0aaa54dd9..8d99227d1df48 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 ec7fd35932df8..07ec9eb8a49d6 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 88906caac71eb..3694463a9b94f 100644 --- a/pkgs/by-name/li/libnest2d/package.nix +++ b/pkgs/by-name/li/libnest2d/package.nix @@ -37,10 +37,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 c8a6c712c1d6b..c34741c295a9f 100644 --- a/pkgs/by-name/li/libnet/package.nix +++ b/pkgs/by-name/li/libnet/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { preConfigure = "./autogen.sh"; - 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 c12e39e9bcb5c..c39c5cc26de20 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 ff200671af0f3..08f7382541ad4 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 93d6d4b861f11..bd10b66db7d7d 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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/li/libnetfilter_queue/package.nix b/pkgs/by-name/li/libnetfilter_queue/package.nix index 86a5ab16235df..eebe5e3cab916 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 1d7560d9e1c51..368b486890bb1 100644 --- a/pkgs/by-name/li/libnfc/package.nix +++ b/pkgs/by-name/li/libnfc/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { "-DLIBNFC_DRIVER_PN532_SPI=OFF" ]; - 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 e1a896d031ece..c902507761c87 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 a2536ad82ac70..5144956991bdf 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 a303b43b8438b..c15e655ca01b4 100644 --- a/pkgs/by-name/li/libnghttp2_asio/package.nix +++ b/pkgs/by-name/li/libnghttp2_asio/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { openssl ]; - meta = with lib; { + meta = { description = "High level HTTP/2 C++ library"; longDescription = '' libnghttp2_asio is C++ library built on top of libnghttp2 @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { 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 18720937e01bb..5a98aad315ab0 100644 --- a/pkgs/by-name/li/libngspice/package.nix +++ b/pkgs/by-name/li/libngspice/package.nix @@ -51,16 +51,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 090637b5e7ade..d7603cc138a69 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 5b73a5963bb74..f14edf80bb738 100644 --- a/pkgs/by-name/li/libnitrokey/package.nix +++ b/pkgs/by-name/li/libnitrokey/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation (finalAttrs: { propagatedBuildInputs = [ hidapi ]; - 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 ec6baa77fcde9..f825d46a920a5 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 84d9210328e63..8d31c56df8cac 100644 --- a/pkgs/by-name/li/libnl-tiny/package.nix +++ b/pkgs/by-name/li/libnl-tiny/package.nix @@ -27,11 +27,11 @@ 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.isc; - maintainers = with maintainers; [ mkg20001 ]; - platforms = platforms.linux; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ mkg20001 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libnotify/package.nix b/pkgs/by-name/li/libnotify/package.nix index 655211524f7ee..f207c7b50e989 100644 --- a/pkgs/by-name/li/libnotify/package.nix +++ b/pkgs/by-name/li/libnotify/package.nix @@ -67,12 +67,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; - maintainers = teams.gnome.members; + license = lib.licenses.lgpl21; + maintainers = lib.teams.gnome.members; 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 3d240a6059655..f90e56c3c0c69 100644 --- a/pkgs/by-name/li/libnova/package.nix +++ b/pkgs/by-name/li/libnova/package.nix @@ -20,12 +20,12 @@ 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; [ hjones2199 ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ hjones2199 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libnsl/package.nix b/pkgs/by-name/li/libnsl/package.nix index d03bc44888deb..d9002493782ff 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 432f75bdd0a65..ed921c924969f 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 c1d197cccedd0..f62fb86d0703d 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/libnvidia-container/package.nix b/pkgs/by-name/li/libnvidia-container/package.nix index c4fe9a0da3ae1..809d5b60debae 100644 --- a/pkgs/by-name/li/libnvidia-container/package.nix +++ b/pkgs/by-name/li/libnvidia-container/package.nix @@ -157,13 +157,13 @@ stdenv.mkDerivation rec { ''; disallowedReferences = [ go ]; - meta = with lib; { + meta = { homepage = "https://github.com/NVIDIA/libnvidia-container"; description = "NVIDIA container runtime library"; - license = licenses.asl20; - platforms = platforms.linux; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; mainProgram = "nvidia-container-cli"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ cpcloud msanft ]; diff --git a/pkgs/by-name/li/libnvme/package.nix b/pkgs/by-name/li/libnvme/package.nix index 3c898afb8a8db..6f9a09a1dc65d 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 12552d6e4c033..12838f1bd4c2a 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/libodfgen/package.nix b/pkgs/by-name/li/libodfgen/package.nix index d48a97088281c..ff01194a607ff 100644 --- a/pkgs/by-name/li/libodfgen/package.nix +++ b/pkgs/by-name/li/libodfgen/package.nix @@ -30,10 +30,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 e1176a1ff2c68..ea0ccc2cfbd88 100644 --- a/pkgs/by-name/li/libofa/package.nix +++ b/pkgs/by-name/li/libofa/package.nix @@ -39,13 +39,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/liboil/package.nix b/pkgs/by-name/li/liboil/package.nix index f9f9cdc5ea93b..29270d59eba2b 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 e1f87d39b180f..a3e439e69734e 100644 --- a/pkgs/by-name/li/libomemo-c/package.nix +++ b/pkgs/by-name/li/libomemo-c/package.nix @@ -21,10 +21,10 @@ stdenv.mkDerivation rec { buildsInputs = [ openssl ]; cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ]; - 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 936d70f32787d..528171330e76c 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 a4abae5338177..7de200a2a4f3f 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; - maintainers = with maintainers; [ orivej ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/li/libopenglrecorder/package.nix b/pkgs/by-name/li/libopenglrecorder/package.nix index 8074cc066d741..dccb4485a1064 100644 --- a/pkgs/by-name/li/libopenglrecorder/package.nix +++ b/pkgs/by-name/li/libopenglrecorder/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { libvorbis ]; - meta = with lib; { + meta = { description = "Library allowing Optional async readback OpenGL frame buffer with optional audio recording"; homepage = "https://github.com/Benau/libopenglrecorder"; - license = licenses.bsd3; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = with platforms; windows ++ linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = with lib.platforms; windows ++ linux; }; } diff --git a/pkgs/by-name/li/libopenmpt-modplug/package.nix b/pkgs/by-name/li/libopenmpt-modplug/package.nix index 4c7a9bf49e219..c3191eb7b0a93 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/libopenraw/package.nix b/pkgs/by-name/li/libopenraw/package.nix index bbf1bf94ef5a9..d7963ecd53bb0 100644 --- a/pkgs/by-name/li/libopenraw/package.nix +++ b/pkgs/by-name/li/libopenraw/package.nix @@ -40,14 +40,14 @@ stdenv.mkDerivation rec { -e "s,GDK_PIXBUF_DIR=.*,GDK_PIXBUF_DIR=$out/lib/gdk-pixbuf-2.0/2.10.0/loaders," ''; - 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 b4229e69ba91e..ff9556304eb1f 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/liboping/package.nix b/pkgs/by-name/li/liboping/package.nix index fefd39aee363f..1fee6400a1461 100644 --- a/pkgs/by-name/li/liboping/package.nix +++ b/pkgs/by-name/li/liboping/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { configureFlags = lib.optional (perl == null) "--with-perl-bindings=no"; - meta = with lib; { + meta = { description = "C library to generate ICMP echo requests (a.k.a. ping packets)"; longDescription = '' liboping is a C library to generate ICMP echo requests, better known as @@ -49,8 +49,8 @@ stdenv.mkDerivation rec { library's abilities. ''; homepage = "http://noping.cc/"; - license = licenses.lgpl21; - platforms = platforms.unix; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/li/libopusenc/package.nix b/pkgs/by-name/li/libopusenc/package.nix index 0c5ee795ad626..973ca7000d350 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/liboqs/package.nix b/pkgs/by-name/li/liboqs/package.nix index ac45816ce2e9d..3f4d2c9c33906 100644 --- a/pkgs/by-name/li/liboqs/package.nix +++ b/pkgs/by-name/li/liboqs/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation (finalAttrs: { "dev" ]; - meta = with lib; { + meta = { description = "C library for prototyping and experimenting with quantum-resistant cryptography"; homepage = "https://openquantumsafe.org"; - license = licenses.mit; - platforms = platforms.all; - maintainers = [ maintainers.sigmanificient ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.sigmanificient ]; }; }) diff --git a/pkgs/by-name/li/libosmo-netif/package.nix b/pkgs/by-name/li/libosmo-netif/package.nix index 89505c6fec64d..2ae15bcd5578f 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 491ba6344c1b6..651dbf9f70fa0 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 53b4a63408ed5..b871f6dbf6181 100644 --- a/pkgs/by-name/li/libosmoabis/package.nix +++ b/pkgs/by-name/li/libosmoabis/package.nix @@ -39,12 +39,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 5085f9308f249..a596e8d2fe278 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/libotr/package.nix b/pkgs/by-name/li/libotr/package.nix index 8a668e0495960..0e605813e6dfb 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 b8b86b0321b38..090733a6480c1 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/libpam-wrapper/package.nix b/pkgs/by-name/li/libpam-wrapper/package.nix index 0dba2ed325392..692d86ffa1961 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 3a8a755654185..a7a6c20103ce1 100644 --- a/pkgs/by-name/li/libpanel/package.nix +++ b/pkgs/by-name/li/libpanel/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = pname; }; }; - meta = with lib; { + meta = { description = "Dock/panel library for GTK 4"; mainProgram = "libpanel-example"; homepage = "https://gitlab.gnome.org/GNOME/libpanel"; - license = licenses.lgpl3Plus; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.lgpl3Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libpcap/package.nix b/pkgs/by-name/li/libpcap/package.nix index 72996ff96cef1..f7757efbb4f71 100644 --- a/pkgs/by-name/li/libpcap/package.nix +++ b/pkgs/by-name/li/libpcap/package.nix @@ -78,12 +78,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/libpinyin/package.nix b/pkgs/by-name/li/libpinyin/package.nix index 9df54306930b8..30560d95cb214 100644 --- a/pkgs/by-name/li/libpinyin/package.nix +++ b/pkgs/by-name/li/libpinyin/package.nix @@ -42,14 +42,14 @@ stdenv.mkDerivation rec { db ]; - meta = with lib; { + meta = { description = "Library for intelligent sentence-based Chinese pinyin input method"; homepage = "https://github.com/libpinyin/libpinyin"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ linsui ericsagnes ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libpipeline/package.nix b/pkgs/by-name/li/libpipeline/package.nix index 3ae4568451f83..af4d705853fc1 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/libplist/package.nix b/pkgs/by-name/li/libplist/package.nix index 1405fc7d7f802..bd4a9dd6b719a 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/libpoly/package.nix b/pkgs/by-name/li/libpoly/package.nix index 815932ca481b2..2a0b4574b8ecd 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/libpseudo/package.nix b/pkgs/by-name/li/libpseudo/package.nix index 23dd33253eda8..c147f479d7c54 100644 --- a/pkgs/by-name/li/libpseudo/package.nix +++ b/pkgs/by-name/li/libpseudo/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { ncurses ]; - meta = with lib; { + meta = { homepage = "http://libpseudo.sourceforge.net/"; description = "Simple, thread-safe messaging between threads"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libpsm2/package.nix b/pkgs/by-name/li/libpsm2/package.nix index e7591afaf2b93..8775dc9312b88 100644 --- a/pkgs/by-name/li/libpsm2/package.nix +++ b/pkgs/by-name/li/libpsm2/package.nix @@ -44,14 +44,14 @@ 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 ]; }; } diff --git a/pkgs/by-name/li/libpst/package.nix b/pkgs/by-name/li/libpst/package.nix index aa52e2daa378e..e8f4837dc1d1c 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/libqalculate/package.nix b/pkgs/by-name/li/libqalculate/package.nix index d4f2af8e42e9d..5a8f8167f3e25 100644 --- a/pkgs/by-name/li/libqalculate/package.nix +++ b/pkgs/by-name/li/libqalculate/package.nix @@ -78,16 +78,16 @@ stdenv.mkDerivation (finalAttrs: { popd ''; - meta = with lib; { + meta = { description = "Advanced calculator library"; homepage = "http://qalculate.github.io"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ gebner doronbehar alyaeanyx ]; mainProgram = "qalc"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/li/libqb/package.nix b/pkgs/by-name/li/libqb/package.nix index 094a1c53790f8..0920535628e88 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 852d76906a66d..154a630f75f2a 100644 --- a/pkgs/by-name/li/libqrtr-glib/package.nix +++ b/pkgs/by-name/li/libqrtr-glib/package.nix @@ -55,11 +55,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"; - maintainers = teams.freedesktop.members; - platforms = platforms.linux; - license = licenses.lgpl2Plus; + maintainers = lib.teams.freedesktop.members; + 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 9df38707bcb34..056e81d22922d 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 3d66848f17731..d94f8af9a0b3f 100644 --- a/pkgs/by-name/li/libraspberrypi/package.nix +++ b/pkgs/by-name/li/libraspberrypi/package.nix @@ -28,17 +28,17 @@ stdenv.mkDerivation rec { "-DVMCS_INSTALL_PREFIX=${placeholder "out"}" ]; - 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/libraw/package.nix b/pkgs/by-name/li/libraw/package.nix index 700092119a7e5..63324ae05289e 100644 --- a/pkgs/by-name/li/libraw/package.nix +++ b/pkgs/by-name/li/libraw/package.nix @@ -45,13 +45,13 @@ stdenv.mkDerivation rec { inherit (python3.pkgs) rawkit; }; - meta = with lib; { + meta = { description = "Library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)"; homepage = "https://www.libraw.org/"; - license = with licenses; [ + license = with lib.licenses; [ cddl lgpl2Plus ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libraw1394/package.nix b/pkgs/by-name/li/libraw1394/package.nix index 628d10710e0f2..205c15950d455 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 bcd94265fb162..9372bf676cffc 100644 --- a/pkgs/by-name/li/librda/package.nix +++ b/pkgs/by-name/li/librda/package.nix @@ -48,13 +48,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 848c2c009f050..932763b20cd21 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; - maintainers = with maintainers; [ cmfwyp ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ cmfwyp ]; + 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 6f766f2df98ad..89e4cb5f7d525 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; - maintainers = with maintainers; [ cmfwyp ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ cmfwyp ]; + 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 2af58d8c92f15..1a1722fda8227 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; - maintainers = with maintainers; [ cmfwyp ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ cmfwyp ]; + 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 c5a0cd73daf04..d8ffdf1c51e2a 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 = "A 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 eb6f10ea8a746..003fc3592d043 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 = "A 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 ebc52708dded3..9431b6c19f799 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 557ae44b2071a..5e3a2cf022792 100644 --- a/pkgs/by-name/li/libredwg/package.nix +++ b/pkgs/by-name/li/libredwg/package.nix @@ -68,11 +68,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/libreelec-dvb-firmware/package.nix b/pkgs/by-name/li/libreelec-dvb-firmware/package.nix index 6841383511f28..da0980598441a 100644 --- a/pkgs/by-name/li/libreelec-dvb-firmware/package.nix +++ b/pkgs/by-name/li/libreelec-dvb-firmware/package.nix @@ -25,11 +25,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "DVB firmware from LibreELEC"; homepage = "https://github.com/LibreELEC/dvb-firmware"; - license = licenses.unfreeRedistributableFirmware; - maintainers = with maintainers; [ kittywitch ]; - platforms = platforms.linux; + license = lib.licenses.unfreeRedistributableFirmware; + maintainers = with lib.maintainers; [ kittywitch ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/librelp/package.nix b/pkgs/by-name/li/librelp/package.nix index 00e8ef09be0a9..ded8c1857a521 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/librespeed-cli/package.nix b/pkgs/by-name/li/librespeed-cli/package.nix index 627686d58d1b6..18e61008ece49 100644 --- a/pkgs/by-name/li/librespeed-cli/package.nix +++ b/pkgs/by-name/li/librespeed-cli/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # Tests have additional requirements doCheck = false; - meta = with lib; { + meta = { description = "Command line client for LibreSpeed"; homepage = "https://github.com/librespeed/speedtest-cli"; - license = with licenses; [ lgpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ lgpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "speedtest-cli"; }; } diff --git a/pkgs/by-name/li/librevenge/package.nix b/pkgs/by-name/li/librevenge/package.nix index db56de87c8443..2836060d94550 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/librist/package.nix b/pkgs/by-name/li/librist/package.nix index 8e19eb0615552..2d4c220627b13 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 68ba8f05c7671..6be682e100c2c 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 b0c6670986a15..cd02a353d335b 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/librtprocess/package.nix b/pkgs/by-name/li/librtprocess/package.nix index 8796373c6776d..71733dbf03aa8 100644 --- a/pkgs/by-name/li/librtprocess/package.nix +++ b/pkgs/by-name/li/librtprocess/package.nix @@ -21,11 +21,11 @@ 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; [ hjones2199 ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ hjones2199 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libsass/package.nix b/pkgs/by-name/li/libsass/package.nix index 0dd16c7535ed9..fab490c41d264 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 9fbb674f5d62d..a024c4e2c00c1 100644 --- a/pkgs/by-name/li/libsbml/package.nix +++ b/pkgs/by-name/li/libsbml/package.nix @@ -46,11 +46,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 adf08d291a73e..5ab969b7f2efc 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 d3a9c6b98b352..931dfd40645bd 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/libscrypt/package.nix b/pkgs/by-name/li/libscrypt/package.nix index 33ed0870466cb..c9f0aab010d4f 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 9ff313c84a65e..f42c0d634f67c 100644 --- a/pkgs/by-name/li/libseccomp/package.nix +++ b/pkgs/by-name/li/libseccomp/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - 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" "loongarch64-linux" @@ -69,6 +69,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 89c493c5a1a37..2fd05439ef667 100644 --- a/pkgs/by-name/li/libsegfault/package.nix +++ b/pkgs/by-name/li/libsegfault/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { 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/libserdes/package.nix b/pkgs/by-name/li/libserdes/package.nix index f42ff147381e1..8ec9a6f0e0779 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 0c4e1f3af4d40..5d8e0c611cfae 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; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libsieve/package.nix b/pkgs/by-name/li/libsieve/package.nix index d922f0ce29a4c..a38db2316a9fa 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 8ad229ef12ba3..b084d3d5ad512 100644 --- a/pkgs/by-name/li/libsignal-ffi/package.nix +++ b/pkgs/by-name/li/libsignal-ffi/package.nix @@ -57,10 +57,10 @@ 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; [ niklaskorz ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ niklaskorz ]; }; } diff --git a/pkgs/by-name/li/libsignal-protocol-c/package.nix b/pkgs/by-name/li/libsignal-protocol-c/package.nix index 7cfa79b425aa9..9a95d744d48e1 100644 --- a/pkgs/by-name/li/libsignal-protocol-c/package.nix +++ b/pkgs/by-name/li/libsignal-protocol-c/package.nix @@ -28,11 +28,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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/li/libsignon-glib/package.nix b/pkgs/by-name/li/libsignon-glib/package.nix index a646c35e6144c..dc50d7888b716 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/libsixel/package.nix b/pkgs/by-name/li/libsixel/package.nix index 76d028ced1e5a..7fc985d72842b 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 e590aa2a9ad2b..fef043b3ed892 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; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libsmbios/package.nix b/pkgs/by-name/li/libsmbios/package.nix index a878b9d154d66..b00c451f2c1eb 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 8c766a1a3eb31..3f28cd6b45ef3 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 1e578eed35a0e..2c02693dd7ee7 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 3a594b8609ab8..734c84088d338 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/libspatialaudio/package.nix b/pkgs/by-name/li/libspatialaudio/package.nix index ef7275e2076e0..4657e6e7a4e53 100644 --- a/pkgs/by-name/li/libspatialaudio/package.nix +++ b/pkgs/by-name/li/libspatialaudio/package.nix @@ -29,11 +29,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.linux; - maintainers = with maintainers; [ krav ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ krav ]; }; } diff --git a/pkgs/by-name/li/libspecbleach/package.nix b/pkgs/by-name/li/libspecbleach/package.nix index fa3823a897d78..6e3013cf2a3b8 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 389334300593c..59553cc4a4894 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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/li/libspiro/package.nix b/pkgs/by-name/li/libspiro/package.nix index 9f3bf740d066b..f7bdff5fb3409 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 7937320acfdab..defb148c1ab0b 100644 --- a/pkgs/by-name/li/libspnav/package.nix +++ b/pkgs/by-name/li/libspnav/package.nix @@ -33,12 +33,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 2ba14980ad54c..2c5a8f63cb55f 100644 --- a/pkgs/by-name/li/libspng/package.nix +++ b/pkgs/by-name/li/libspng/package.nix @@ -53,11 +53,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 b0f5cbc51ce31..36d5ec86c3703 100644 --- a/pkgs/by-name/li/libssh/package.nix +++ b/pkgs/by-name/li/libssh/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { inherit ffmpeg sshping wireshark; }; - meta = with lib; { + meta = { description = "SSH client library"; homepage = "https://libssh.org"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ sander ]; - platforms = platforms.all; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ sander ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libssh2/package.nix b/pkgs/by-name/li/libssh2/package.nix index 0239ca729c6a7..eaef9807c897e 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/libstemmer/package.nix b/pkgs/by-name/li/libstemmer/package.nix index 2df64013e2b6f..dfb2fef23201b 100644 --- a/pkgs/by-name/li/libstemmer/package.nix +++ b/pkgs/by-name/li/libstemmer/package.nix @@ -38,11 +38,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/libsurvive/package.nix b/pkgs/by-name/li/libsurvive/package.nix index 35f649b3d86d6..922757628bc4e 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; - maintainers = with maintainers; [ prusnak ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libsv/package.nix b/pkgs/by-name/li/libsv/package.nix index 4136c64714070..22bcb371b687c 100644 --- a/pkgs/by-name/li/libsv/package.nix +++ b/pkgs/by-name/li/libsv/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Public domain cross-platform semantic versioning in C99"; homepage = "https://github.com/uael/sv"; - license = licenses.unlicense; + license = lib.licenses.unlicense; maintainers = [ lib.maintainers.sigmanificient ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libsvm/package.nix b/pkgs/by-name/li/libsvm/package.nix index 4653352086fe3..3351b4ceed7f4 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 5b6b66cc05122..f58a1427a0ee4 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.farlion ]; }; diff --git a/pkgs/by-name/li/libtap/package.nix b/pkgs/by-name/li/libtap/package.nix index cda5e0d3bf577..c9231fd554934 100644 --- a/pkgs/by-name/li/libtap/package.nix +++ b/pkgs/by-name/li/libtap/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { perl ]; - meta = with lib; { + meta = { description = "Library to implement a test protocol"; longDescription = '' libtap is a library to implement the Test Anything Protocol for @@ -31,8 +31,8 @@ stdenv.mkDerivation rec { branch by Shlomi Fish. ''; homepage = "https://www.shlomifish.org/open-source/projects/libtap/"; - license = licenses.bsd3; - maintainers = [ maintainers.AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.AndersonTorres ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/libtar/package.nix b/pkgs/by-name/li/libtar/package.nix index 0aab9e7b0db7d..42e0f69617f49 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/libtasn1/package.nix b/pkgs/by-name/li/libtasn1/package.nix index 21986252b919f..2535d91e23ee4 100644 --- a/pkgs/by-name/li/libtasn1/package.nix +++ b/pkgs/by-name/li/libtasn1/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { inherit gnutls samba qemu; }; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/libtasn1/"; description = "ASN.1 library"; longDescription = '' @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { other packages. The goal of this implementation is to be highly portable, and only require an ANSI C89 platform. ''; - license = licenses.lgpl2Plus; - platforms = platforms.all; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libtermkey/package.nix b/pkgs/by-name/li/libtermkey/package.nix index 4fe2408d80d66..cb1535034a87c 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 bde18a0519855..70a780a4bc2d8 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 080ead869858d..3b4a0c1d3d24c 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 162b8332c7f5f..2203ff54da17d 100644 --- a/pkgs/by-name/li/libticables2/package.nix +++ b/pkgs/by-name/li/libticables2/package.nix @@ -64,15 +64,15 @@ 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; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ siraben clevor ]; - platforms = with platforms; linux ++ darwin; + 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 c67745e3e771d..9fc0576a6e995 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 5ef5348b79474..15aef7057a3ea 100644 --- a/pkgs/by-name/li/libticonv/package.nix +++ b/pkgs/by-name/li/libticonv/package.nix @@ -28,15 +28,15 @@ stdenv.mkDerivation rec { "--enable-iconv" ] ++ 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; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ siraben clevor ]; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/li/libtifiles2/package.nix b/pkgs/by-name/li/libtifiles2/package.nix index 6e25366044070..cffe9e38c480a 100644 --- a/pkgs/by-name/li/libtifiles2/package.nix +++ b/pkgs/by-name/li/libtifiles2/package.nix @@ -28,15 +28,15 @@ 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; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ siraben clevor ]; - platforms = with platforms; linux ++ darwin; + 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 32476de5d6e7e..608038003dfb8 100644 --- a/pkgs/by-name/li/libtirpc/package.nix +++ b/pkgs/by-name/li/libtirpc/package.nix @@ -40,12 +40,12 @@ 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; longDescription = '' Currently, NFS commands use the SunRPC routines provided by the glibc. These routines do not support IPv6 addresses. Ulrich diff --git a/pkgs/by-name/li/libtommath/package.nix b/pkgs/by-name/li/libtommath/package.nix index 296617e1ee389..4cd227e6f0d8c 100644 --- a/pkgs/by-name/li/libtommath/package.nix +++ b/pkgs/by-name/li/libtommath/package.nix @@ -31,13 +31,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-2_0_x/package.nix b/pkgs/by-name/li/libtorrent-rasterbar-2_0_x/package.nix index 236b930a994db..d7d7f59738f2d 100644 --- a/pkgs/by-name/li/libtorrent-rasterbar-2_0_x/package.nix +++ b/pkgs/by-name/li/libtorrent-rasterbar-2_0_x/package.nix @@ -78,11 +78,11 @@ stdenv.mkDerivation { "-Dpython-bindings=on" ]; - 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 = [ ]; - 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 4deb7b7e261e0..c8a8fc6ee31d0 100644 --- a/pkgs/by-name/li/libtpms/package.nix +++ b/pkgs/by-name/li/libtpms/package.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation rec { "--with-tpm2" ]; - meta = with lib; { + meta = { description = "Libtpms library provides 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 ec5cc5fcb3c12..4195a53661b56 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 d60221e81afdb..2d8e4a68f51eb 100644 --- a/pkgs/by-name/li/libtracefs/package.nix +++ b/pkgs/by-name/li/libtracefs/package.nix @@ -76,12 +76,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 423280978086e..6ad5681d5ddfb 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 9de5e44acad6e..ecb67ab644495 100644 --- a/pkgs/by-name/li/libtsm/package.nix +++ b/pkgs/by-name/li/libtsm/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { --replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@ ''; - 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 dcf975eeb9351..92fac31daea39 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 cb340a6a0e149..9d88c72e47240 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 321a1d0425763..d88ccb968bfd8 100644 --- a/pkgs/by-name/li/libuchardet/package.nix +++ b/pkgs/by-name/li/libuchardet/package.nix @@ -25,12 +25,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 8919d545fa5c9..c907b779e295f 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 375fc20164ac9..e3da8e752fd10 100644 --- a/pkgs/by-name/li/libucontext/package.nix +++ b/pkgs/by-name/li/libucontext/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { makeFlags = [ "DESTDIR=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/kaniini/libucontext"; description = "ucontext implementation featuring glibc-compatible ABI"; - license = licenses.isc; - platforms = platforms.linux; + license = lib.licenses.isc; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libudev0-shim/package.nix b/pkgs/by-name/li/libudev0-shim/package.nix index 55f51b8b412df..b130c0c8bde68 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; - maintainers = with maintainers; [ abbradar ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/li/libudfread/package.nix b/pkgs/by-name/li/libudfread/package.nix index cb42d73721088..0aac862a9be62 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 eebb0f2a01c4c..e5b530a255316 100644 --- a/pkgs/by-name/li/libuecc/package.nix +++ b/pkgs/by-name/li/libuecc/package.nix @@ -17,11 +17,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 430eb6a0fc21c..c2c16b06f725e 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 8ee0a8c796ac2..638dc428dcac7 100644 --- a/pkgs/by-name/li/libui-ng/package.nix +++ b/pkgs/by-name/li/libui-ng/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { 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/libuinputplus/package.nix b/pkgs/by-name/li/libuinputplus/package.nix index 8d1ed42b6ca6a..e6d0f29fd7c17 100644 --- a/pkgs/by-name/li/libuinputplus/package.nix +++ b/pkgs/by-name/li/libuinputplus/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Easy-to-use uinput library in C++"; - license = licenses.mit; - maintainers = with maintainers; [ willibutz ]; - platforms = with platforms; linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ willibutz ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/li/libuldaq/package.nix b/pkgs/by-name/li/libuldaq/package.nix index cb5adc4c45603..13f747e2d7999 100644 --- a/pkgs/by-name/li/libuldaq/package.nix +++ b/pkgs/by-name/li/libuldaq/package.nix @@ -27,15 +27,15 @@ stdenv.mkDerivation rec { buildInputs = [ libusb1 ]; - 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 2ea5d3025a24b..fa6817d8203d7 100644 --- a/pkgs/by-name/li/libunarr/package.nix +++ b/pkgs/by-name/li/libunarr/package.nix @@ -24,11 +24,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 66601e4725743..d7b8d88bc12a5 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; - maintainers = [ maintainers.coroa ]; + license = lib.licenses.zlib; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.coroa ]; }; } diff --git a/pkgs/by-name/li/libunicode/package.nix b/pkgs/by-name/li/libunicode/package.nix index fdf88d026ab23..5ca5a5f773829 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 f705ca9f56c01..c00143ae57cdd 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 744f05c3be226..3c3d430ab41b5 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/libusbp/package.nix b/pkgs/by-name/li/libusbp/package.nix index 7e6a921d3aea1..75385ce6c9912 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 24a41781d447e..c761a96c3b609 100644 --- a/pkgs/by-name/li/libusbsio/package.nix +++ b/pkgs/by-name/li/libusbsio/package.nix @@ -57,12 +57,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 6506d10076423..e56b6129c7cd7 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/libuvc/package.nix b/pkgs/by-name/li/libuvc/package.nix index de1062a5594f2..b985137d57aa7 100644 --- a/pkgs/by-name/li/libuvc/package.nix +++ b/pkgs/by-name/li/libuvc/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { 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/libv3270/package.nix b/pkgs/by-name/li/libv3270/package.nix index 25f3ab61bcbcf..d0945020e90a8 100644 --- a/pkgs/by-name/li/libv3270/package.nix +++ b/pkgs/by-name/li/libv3270/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "3270 Virtual Terminal for GTK"; homepage = "https://github.com/PerryWerneck/libv3270"; changelog = "https://github.com/PerryWerneck/libv3270/blob/master/CHANGELOG"; - license = licenses.lgpl3Plus; - maintainers = [ maintainers.vifino ]; + license = lib.licenses.lgpl3Plus; + maintainers = [ lib.maintainers.vifino ]; }; } diff --git a/pkgs/by-name/li/libva-vdpau-driver/package.nix b/pkgs/by-name/li/libva-vdpau-driver/package.nix index 49f3f92148c8a..d4922b65f1857 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/libvdpau-va-gl/package.nix b/pkgs/by-name/li/libvdpau-va-gl/package.nix index 0f035821e4767..4f38b73c3293e 100644 --- a/pkgs/by-name/li/libvdpau-va-gl/package.nix +++ b/pkgs/by-name/li/libvdpau-va-gl/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/li/libvdwxc/package.nix b/pkgs/by-name/li/libvdwxc/package.nix index 8b4d9b17b2d43..c6393c54f3654 100644 --- a/pkgs/by-name/li/libvdwxc/package.nix +++ b/pkgs/by-name/li/libvdwxc/package.nix @@ -51,14 +51,14 @@ stdenv.mkDerivation rec { 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 c1f1af764b0d9..a7635c8fbb55a 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 2e8bb24fb2cef..3ebfbfcc9658f 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libvibrant/package.nix b/pkgs/by-name/li/libvibrant/package.nix index c6dab911b41ed..3e7579fa56d14 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/libviper/package.nix b/pkgs/by-name/li/libviper/package.nix index 3966eaf40ac54..65cf5978fd4ee 100644 --- a/pkgs/by-name/li/libviper/package.nix +++ b/pkgs/by-name/li/libviper/package.nix @@ -42,10 +42,10 @@ stdenv.mkDerivation rec { gpm ]; - meta = with lib; { + meta = { homepage = "http://libviper.sourceforge.net/"; description = "Simple window creation and management facilities for the console"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libvisio2svg/package.nix b/pkgs/by-name/li/libvisio2svg/package.nix index 35452cc983145..f93bbbb2951be 100644 --- a/pkgs/by-name/li/libvisio2svg/package.nix +++ b/pkgs/by-name/li/libvisio2svg/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { "-DCMAKE_SKIP_BUILD_RPATH=ON" ]; - 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/libvoikko/package.nix b/pkgs/by-name/li/libvoikko/package.nix index 1c48c08fa53f1..794a213c2e6f5 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 dbdd75e275603..f39e0b7a01f3f 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 c5104cafc4335..f69465f009919 100644 --- a/pkgs/by-name/li/libvorbis/package.nix +++ b/pkgs/by-name/li/libvorbis/package.nix @@ -32,11 +32,11 @@ 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; - maintainers = [ maintainers.ehmry ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.ehmry ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libvori/package.nix b/pkgs/by-name/li/libvori/package.nix index 1d431610a006e..8646ef01dc599 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 25304bc909e17..3cbcadb279f31 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 5f183515da980..3b17c1c6ed84f 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 30980297efcdf..d079681af2bc7 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 294ef4ea3472d..a0b8dcc5993ad 100644 --- a/pkgs/by-name/li/libwbxml/package.nix +++ b/pkgs/by-name/li/libwbxml/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { sed -i 's/^SET.*$//' cmake/CMakeLists.txt ''; - 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.linux; - license = licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ mh ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21Plus; }; } diff --git a/pkgs/by-name/li/libwebcam/package.nix b/pkgs/by-name/li/libwebcam/package.nix index d2759838ac5ea..f398068e1a101 100644 --- a/pkgs/by-name/li/libwebcam/package.nix +++ b/pkgs/by-name/li/libwebcam/package.nix @@ -45,10 +45,10 @@ stdenv.mkDerivation rec { ) ''; - 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 c47827091eba2..906c4d390b501 100644 --- a/pkgs/by-name/li/libwebp/package.nix +++ b/pkgs/by-name/li/libwebp/package.nix @@ -81,11 +81,11 @@ stdenv.mkDerivation rec { haskell-webp = haskellPackages.webp; }; - 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 ]; }; } diff --git a/pkgs/by-name/li/libwebsockets/package.nix b/pkgs/by-name/li/libwebsockets/package.nix index dfad04d7f4d18..05a66b72b52e8 100644 --- a/pkgs/by-name/li/libwebsockets/package.nix +++ b/pkgs/by-name/li/libwebsockets/package.nix @@ -68,7 +68,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 @@ -78,13 +78,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 f21551ca02420..8b76b4a866c4a 100644 --- a/pkgs/by-name/li/libwhereami/package.nix +++ b/pkgs/by-name/li/libwhereami/package.nix @@ -29,11 +29,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 d4b26174623a1..56950991d86a2 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 2511289349db0..0fbce09457ed7 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 f0cee5d5c87a0..2a93835198a3d 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 9b2f54b9b883f..a1d0ea11524ba 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/libx86/package.nix b/pkgs/by-name/li/libx86/package.nix index 487c24e18cd65..80c15d892b383 100644 --- a/pkgs/by-name/li/libx86/package.nix +++ b/pkgs/by-name/li/libx86/package.nix @@ -31,13 +31,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 ada07a372ae98..f45040a04e6d0 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 29af5687a1714..eca80d2b7b005 100644 --- a/pkgs/by-name/li/libxc/package.nix +++ b/pkgs/by-name/li/libxc/package.nix @@ -53,12 +53,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 ba935930a2075..f6b7c1b247f03 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 9d9b110d7b24d..445f708dfdbe0 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 5087b9529840c..3bf92e9b19c8d 100644 --- a/pkgs/by-name/li/libxisf/package.nix +++ b/pkgs/by-name/li/libxisf/package.nix @@ -44,11 +44,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/libxklavier/package.nix b/pkgs/by-name/li/libxklavier/package.nix index aacab4527abbb..faf30b909b30b 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 a8700bc8391dc..c070a57d4b198 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/libxls/package.nix b/pkgs/by-name/li/libxls/package.nix index 5a5dee9255d36..052a4ba673b14 100644 --- a/pkgs/by-name/li/libxls/package.nix +++ b/pkgs/by-name/li/libxls/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Extract Cell Data From Excel xls files"; homepage = "https://github.com/libxls/libxls"; - license = licenses.bsd2; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ abbradar ]; mainProgram = "xls2csv"; - platforms = platforms.unix; + platforms = lib.platforms.unix; knownVulnerabilities = [ "CVE-2023-38851" "CVE-2023-38852" diff --git a/pkgs/by-name/li/libxmlb/package.nix b/pkgs/by-name/li/libxmlb/package.nix index 79937718941cc..20dd9488407d9 100644 --- a/pkgs/by-name/li/libxmlb/package.nix +++ b/pkgs/by-name/li/libxmlb/package.nix @@ -76,12 +76,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/libxmp/package.nix b/pkgs/by-name/li/libxmp/package.nix index 5e23cb020685f..fd6810e6f670e 100644 --- a/pkgs/by-name/li/libxmp/package.nix +++ b/pkgs/by-name/li/libxmp/package.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { pname = "libxmp"; version = "4.6.1"; - meta = with lib; { + meta = { description = "Extended module player library"; homepage = "https://xmp.sourceforge.net/"; longDescription = '' @@ -16,8 +16,8 @@ stdenv.mkDerivation rec { over 90 mainstream and obscure module formats including Protracker (MOD), Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT). ''; - license = licenses.lgpl21Plus; - platforms = platforms.all; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.all; }; src = fetchurl { diff --git a/pkgs/by-name/li/libxsmm/package.nix b/pkgs/by-name/li/libxsmm/package.nix index fcb99e8c346cf..ebcdfb6ee79bc 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 fbd13a7cada71..0cf00da4f30d5 100644 --- a/pkgs/by-name/li/libyafaray/package.nix +++ b/pkgs/by-name/li/libyafaray/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { zlib ] ++ 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 9ab641e5543d1..180edb07d305b 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 30b40d0a013e1..4c298f3ed8148 100644 --- a/pkgs/by-name/li/libyang/package.nix +++ b/pkgs/by-name/li/libyang/package.nix @@ -43,7 +43,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 @@ -51,8 +51,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 a35a5a92a490d..cf4142a5f6453 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 06d8a8e87e13b..245b1c0289032 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 9b3bf8c5e3fe6..842cbfc01dfda 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 edfb08994133d..28e35dcc94f77 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 67d4bd43720f8..de4fe76ad35d2 100644 --- a/pkgs/by-name/li/libyuv/package.nix +++ b/pkgs/by-name/li/libyuv/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { --replace "@VERSION@" "$version" ''; - 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/libzapojit/package.nix b/pkgs/by-name/li/libzapojit/package.nix index ace4b1bbf65f4..44d1f7b504aec 100644 --- a/pkgs/by-name/li/libzapojit/package.nix +++ b/pkgs/by-name/li/libzapojit/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "GObject wrapper for the SkyDrive and Hotmail REST APIs"; homepage = "https://gitlab.gnome.org/Archive/libzapojit"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libzbc/package.nix b/pkgs/by-name/li/libzbc/package.nix index d7c00b7b296e3..1b421f6d064b9 100644 --- a/pkgs/by-name/li/libzbc/package.nix +++ b/pkgs/by-name/li/libzbc/package.nix @@ -29,14 +29,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 2276e1dfc4d5a..aab0167fdf1d9 100644 --- a/pkgs/by-name/li/libzbd/package.nix +++ b/pkgs/by-name/li/libzbd/package.nix @@ -31,15 +31,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 ee01bb7a0f224..be527f2598246 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/libzra/package.nix b/pkgs/by-name/li/libzra/package.nix index eff23c6b539f3..60ac6f495cac9 100644 --- a/pkgs/by-name/li/libzra/package.nix +++ b/pkgs/by-name/li/libzra/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { (cd submodule/zstd && patch -Np1 < ${./fix-pkg-config.patch}) ''; - 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 c91618db40cc3..566ff3e79c7bf 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 f2f4af2b5f27c..a9c61c0339797 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-pjH+i7uG3++NLIZ9y+wg4r+TutmZF2+uO501pdPApQs="; - 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 ad12323a4ecc5..884fd68f2d3b7 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/licensor/package.nix b/pkgs/by-name/li/licensor/package.nix index 0e69041844e11..407d32bfb0123 100644 --- a/pkgs/by-name/li/licensor/package.nix +++ b/pkgs/by-name/li/licensor/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { sed "/Copyright (c) 2021/s/2021/$(date +%Y)/" -i tests/integration.rs ''; - meta = with lib; { + meta = { description = "Write licenses to stdout"; homepage = "https://github.com/raftario/licensor"; - license = licenses.mit; - maintainers = with maintainers; [ Br1ght0ne ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Br1ght0ne ]; mainProgram = "licensor"; }; } diff --git a/pkgs/by-name/li/lieer/package.nix b/pkgs/by-name/li/lieer/package.nix index 9e114def82857..bbcff7426b355 100644 --- a/pkgs/by-name/li/lieer/package.nix +++ b/pkgs/by-name/li/lieer/package.nix @@ -34,7 +34,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) @@ -44,8 +44,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/lifecycled/package.nix b/pkgs/by-name/li/lifecycled/package.nix index 8605f701fe1bc..9771b7df0dd2a 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/lifelines/package.nix b/pkgs/by-name/li/lifelines/package.nix index 32aecb3ca405e..43cd8fedb72a2 100644 --- a/pkgs/by-name/li/lifelines/package.nix +++ b/pkgs/by-name/li/lifelines/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { bison ]; - meta = with lib; { + meta = { description = "Genealogy tool with ncurses interface"; homepage = "https://lifelines.github.io/lifelines/"; - license = licenses.mit; - maintainers = with maintainers; [ disassembler ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ disassembler ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/lifeograph/package.nix b/pkgs/by-name/li/lifeograph/package.nix index c44d85c964527..d8873e5eb7e68 100644 --- a/pkgs/by-name/li/lifeograph/package.nix +++ b/pkgs/by-name/li/lifeograph/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { --replace "Exec=" "Exec=$out/bin/" ''; - meta = with lib; { + meta = { homepage = "https://lifeograph.sourceforge.net/wiki/Main_Page"; description = "Lifeograph is an off-line and private journal and note taking application"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; mainProgram = "lifeograph"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } 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 056ab12c8515e..d322188ed60c6 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 632e471c92035..d789afadb0585 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 fbac4f88c2694..1e8166c19f03a 100644 --- a/pkgs/by-name/li/lightdm-mobile-greeter/package.nix +++ b/pkgs/by-name/li/lightdm-mobile-greeter/package.nix @@ -51,12 +51,12 @@ rustPlatform.buildRustPackage rec { } ]; - meta = with lib; { + meta = { description = "Simple log in screen for use on touch screens"; homepage = "https://git.raatty.club/raatty/lightdm-mobile-greeter"; - maintainers = with maintainers; [ colinsane ]; - platforms = platforms.linux; - license = licenses.mit; + maintainers = with lib.maintainers; [ colinsane ]; + 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 67cd39a37d71d..fa7a5e9010a59 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 46a5ff29365ce..d0f4a9de367d3 100644 --- a/pkgs/by-name/li/lightdm-tiny-greeter/package.nix +++ b/pkgs/by-name/li/lightdm-tiny-greeter/package.nix @@ -57,12 +57,12 @@ 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; - maintainers = with maintainers; [ edwtjo ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ edwtjo ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/lightgbm/package.nix b/pkgs/by-name/li/lightgbm/package.nix index c5d0238724d52..09ad427ab223d 100644 --- a/pkgs/by-name/li/lightgbm/package.nix +++ b/pkgs/by-name/li/lightgbm/package.nix @@ -186,12 +186,12 @@ stdenv.mkDerivation rec { fi ''; - meta = with lib; { + meta = { description = "LightGBM is a gradient boosting framework that uses tree based learning algorithms."; mainProgram = "lightgbm"; homepage = "https://github.com/microsoft/LightGBM"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ nviets ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ nviets ]; }; } diff --git a/pkgs/by-name/li/lightning-loop/package.nix b/pkgs/by-name/li/lightning-loop/package.nix index c68648a0ee3d5..dbdeaf7d59290 100644 --- a/pkgs/by-name/li/lightning-loop/package.nix +++ b/pkgs/by-name/li/lightning-loop/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { "-w" ]; - 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 prusnak ]; diff --git a/pkgs/by-name/li/lightning-pool/package.nix b/pkgs/by-name/li/lightning-pool/package.nix index af93ba7c1e83c..d2474ec51c03a 100644 --- a/pkgs/by-name/li/lightning-pool/package.nix +++ b/pkgs/by-name/li/lightning-pool/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Lightning Pool Client"; homepage = "https://github.com/lightninglabs/pool"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ proofofkeags prusnak ]; diff --git a/pkgs/by-name/li/lightspark/package.nix b/pkgs/by-name/li/lightspark/package.nix index 4f73bf561ef21..ecd35ccf2c834 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/lightwalletd/package.nix b/pkgs/by-name/li/lightwalletd/package.nix index 2f3779f337b9d..0bcf74d7261b5 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 b7067502cdb68..c71d0557a861c 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 7a104119faa39..4840b1bbda759 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 32b0bb70bf366..01cf6b2930f56 100644 --- a/pkgs/by-name/li/lilv/package.nix +++ b/pkgs/by-name/li/lilv/package.nix @@ -75,11 +75,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/lime/package.nix b/pkgs/by-name/li/lime/package.nix index 69d1b391987ba..7898468e554c8 100644 --- a/pkgs/by-name/li/lime/package.nix +++ b/pkgs/by-name/li/lime/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { "-DENABLE_UNIT_TESTS=NO" # Do not build test executables ]; - meta = with lib; { + meta = { description = "End-to-end encryption library for instant messaging. Part of the Linphone project"; homepage = "https://www.linphone.org/technical-corner/lime"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/by-name/li/limesurvey/package.nix b/pkgs/by-name/li/limesurvey/package.nix index d9b1d6b029c9f..66e54caa140b9 100644 --- a/pkgs/by-name/li/limesurvey/package.nix +++ b/pkgs/by-name/li/limesurvey/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { smoke-test = nixosTests.limesurvey; }; - 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 c3488092f72fc..3280d14bb892d 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 75675e81c1a6a..a8a2679991fbc 100644 --- a/pkgs/by-name/li/linbox/package.nix +++ b/pkgs/by-name/li/linbox/package.nix @@ -87,12 +87,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; - maintainers = teams.sage.members; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.sage.members; + 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 12bd35d1f31cd..363130d4fcb7d 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 5386172232ea3..a7c7bbc87ac81 100644 --- a/pkgs/by-name/li/lineselect/package.nix +++ b/pkgs/by-name/li/lineselect/package.nix @@ -29,11 +29,11 @@ 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "lineselect"; }; } diff --git a/pkgs/by-name/li/lingeling/package.nix b/pkgs/by-name/li/lingeling/package.nix index 80cc5da336a05..02bc7a4fc9b2b 100644 --- a/pkgs/by-name/li/lingeling/package.nix +++ b/pkgs/by-name/li/lingeling/package.nix @@ -45,11 +45,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/linja-pi-pu-lukin/package.nix b/pkgs/by-name/li/linja-pi-pu-lukin/package.nix index de46fa570e527..98d0ff97a1658 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 c5fed186c67c9..0bbb4f801bc79 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 fbeed583d4859..3011ae584bea8 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 6130c19dbabcc..09daf5580f163 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 e9af8bcaea366..170692cd648b9 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 rec { 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-manual/package.nix b/pkgs/by-name/li/linux-manual/package.nix index 4240654d6b343..b1705d535ca43 100644 --- a/pkgs/by-name/li/linux-manual/package.nix +++ b/pkgs/by-name/li/linux-manual/package.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation rec { test -f $mandir/kmalloc.9 ''; - meta = with lib; { + meta = { homepage = "https://kernel.org/"; description = "Linux kernel API manual pages"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ mvs ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ mvs ]; }; } diff --git a/pkgs/by-name/li/linux-pam/package.nix b/pkgs/by-name/li/linux-pam/package.nix index a1a515097307c..1a907f1ac2248 100644 --- a/pkgs/by-name/li/linux-pam/package.nix +++ b/pkgs/by-name/li/linux-pam/package.nix @@ -81,10 +81,10 @@ stdenv.mkDerivation rec { ; }; - meta = with lib; { + meta = { homepage = "https://github.com/linux-pam/linux-pam"; description = "Pluggable Authentication Modules, a flexible mechanism for authenticating user"; - platforms = platforms.linux; - license = licenses.bsd3; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/li/linux-scripts/package.nix b/pkgs/by-name/li/linux-scripts/package.nix index 479fcafecfd3c..0d45c3b074f1e 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 75ab89eef600d..4f10506fc3e33 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/linuxdoc-tools/package.nix b/pkgs/by-name/li/linuxdoc-tools/package.nix index 34bb2d8475751..f1670e6181dae 100644 --- a/pkgs/by-name/li/linuxdoc-tools/package.nix +++ b/pkgs/by-name/li/linuxdoc-tools/package.nix @@ -75,7 +75,7 @@ stdenv.mkDerivation rec { coreutils ] ++ 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 @@ -86,12 +86,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 3b02c68f1221b..c4cc9e76655e4 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 8543256ec87e6..4bf5a23503afa 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 27bd8cbf2d539..2b5c7580ab2b3 100644 --- a/pkgs/by-name/li/linx-server/package.nix +++ b/pkgs/by-name/li/linx-server/package.nix @@ -25,10 +25,10 @@ buildGoModule rec { 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 c039056cf4986..293f1179e2d76 100644 --- a/pkgs/by-name/li/lipl/package.nix +++ b/pkgs/by-name/li/lipl/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { }; }; - 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "lipl"; }; } diff --git a/pkgs/by-name/li/liquibase_redshift_extension/package.nix b/pkgs/by-name/li/liquibase_redshift_extension/package.nix index 705dbf2b283d6..01d9e6edfa60b 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 84974f233890d..f7438ef718cfa 100644 --- a/pkgs/by-name/li/liquidfun/package.nix +++ b/pkgs/by-name/li/liquidfun/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { cmake -DBOX2D_INSTALL=ON -DBOX2D_BUILD_SHARED=ON -DCMAKE_INSTALL_PREFIX=$out .. ''; - 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 aec6d5f3fd01a..c15d69d07f972 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 3ea393f77409c..1bfa03ce14038 100644 --- a/pkgs/by-name/li/lirc/package.nix +++ b/pkgs/by-name/li/lirc/package.nix @@ -112,11 +112,11 @@ stdenv.mkDerivation rec { "localstatedir=$TMPDIR" ]; - 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 7ccc9e7f9cd3d..a631f70ef566c 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 f99c749ef75d9..a8283bd43d705 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/lite/package.nix b/pkgs/by-name/li/lite/package.nix index fd19d3bd1f83e..856e5445a9aea 100644 --- a/pkgs/by-name/li/lite/package.nix +++ b/pkgs/by-name/li/lite/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { makeWrapper $out/lib/${pname}/lite $out/bin/lite ''; - meta = with lib; { + meta = { description = "Lightweight text editor written in Lua"; homepage = "https://github.com/rxi/lite"; - license = licenses.mit; - maintainers = with maintainers; [ Br1ght0ne ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Br1ght0ne ]; + 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 1dcaf8b4c436e..17c08ea8cbc71 100644 --- a/pkgs/by-name/li/litebrowser/package.nix +++ b/pkgs/by-name/li/litebrowser/package.nix @@ -46,13 +46,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 5277cda5c178f..d9631098e990c 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 f5029dc9b27f5..e267662c0af67 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/litmus/package.nix b/pkgs/by-name/li/litmus/package.nix index 2741576e5a0cf..d804f44feec96 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 f5210ef13d300..455b12c0d3a50 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/live-server/package.nix b/pkgs/by-name/li/live-server/package.nix index 68b3bc24530c7..b903e7d839a5c 100644 --- a/pkgs/by-name/li/live-server/package.nix +++ b/pkgs/by-name/li/live-server/package.nix @@ -33,13 +33,13 @@ rustPlatform.buildRustPackage rec { ] ); - meta = with lib; { + meta = { description = "Local network server with live reload feature for static pages"; downloadPage = "https://github.com/lomirus/live-server/releases"; homepage = "https://github.com/lomirus/live-server"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "live-server"; - maintainers = [ maintainers.philiptaron ]; - platforms = platforms.unix; + maintainers = [ lib.maintainers.philiptaron ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/li/livecaptions/package.nix b/pkgs/by-name/li/livecaptions/package.nix index f78390a8489d7..b7eb324708637 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/livekit-cli/package.nix b/pkgs/by-name/li/livekit-cli/package.nix index ea9716c6fd705..bb1297cf3cc93 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 3bfc888390a5e..d138aa1d2ff69 100644 --- a/pkgs/by-name/li/livekit/package.nix +++ b/pkgs/by-name/li/livekit/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { mv $out/bin/server $out/bin/livekit-server ''; - 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/li/lizardfs/package.nix b/pkgs/by-name/li/lizardfs/package.nix index 533ad1d0eb503..51a6115e1f6a6 100644 --- a/pkgs/by-name/li/lizardfs/package.nix +++ b/pkgs/by-name/li/lizardfs/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { systemdMinimal ]; - meta = with lib; { + meta = { homepage = "https://lizardfs.com"; description = "Highly reliable, scalable and efficient distributed file system"; - platforms = platforms.linux; - license = licenses.gpl3; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ rushmorem shamilton ]; diff --git a/pkgs/by-name/lk/lk-jwt-service/package.nix b/pkgs/by-name/lk/lk-jwt-service/package.nix index 78ea0a5d9af43..9cbf9c61969ea 100644 --- a/pkgs/by-name/lk/lk-jwt-service/package.nix +++ b/pkgs/by-name/lk/lk-jwt-service/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { mv $out/bin/ec-lms $out/bin/lk-jwt-service ''; - meta = with lib; { + meta = { description = "Minimal service to provide LiveKit JWTs using Matrix OpenID Connect"; 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/lklug-sinhala/package.nix b/pkgs/by-name/lk/lklug-sinhala/package.nix index de313a2ca7564..010331be6a930 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 88b70bb29d6b5..63be05c576388 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 8958dff70378e..aa5c7a9ca6bca 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/lm/lmmath/package.nix b/pkgs/by-name/lm/lmmath/package.nix index f043a546a8a32..58db2e36c080c 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 f651b1d9046e3..39c296f67e6de 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/lnav/package.nix b/pkgs/by-name/ln/lnav/package.nix index 2d2378e9df5b3..b419e0f6d4fab 100644 --- a/pkgs/by-name/ln/lnav/package.nix +++ b/pkgs/by-name/ln/lnav/package.nix @@ -74,7 +74,7 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/tstack/lnav"; description = "Logfile Navigator"; longDescription = '' @@ -87,13 +87,13 @@ stdenv.mkDerivation rec { will allow the user to quickly and efficiently zero in on problems. ''; downloadPage = "https://github.com/tstack/lnav/releases"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ dochang symphorien pcasaretto ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "lnav"; }; diff --git a/pkgs/by-name/ln/lnch/package.nix b/pkgs/by-name/ln/lnch/package.nix index 20ecc2a7c8b48..7eee221f02a43 100644 --- a/pkgs/by-name/ln/lnch/package.nix +++ b/pkgs/by-name/ln/lnch/package.nix @@ -22,10 +22,10 @@ buildGoModule rec { "-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 21f768dbd32ba..0030166e3b6f3 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; [ cypherpunk2140 prusnak ]; diff --git a/pkgs/by-name/ln/lndconnect/package.nix b/pkgs/by-name/ln/lndconnect/package.nix index d5105e6fc1c0d..6214af18e4b16 100644 --- a/pkgs/by-name/ln/lndconnect/package.nix +++ b/pkgs/by-name/ln/lndconnect/package.nix @@ -21,12 +21,12 @@ 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"; - maintainers = [ maintainers.d-xo ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.d-xo ]; + 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 a8be86ad8a036..eaa6da614567e 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 c91b680fcbe07..5c4156de3035b 100644 --- a/pkgs/by-name/ln/lndmanage/package.nix +++ b/pkgs/by-name/ln/lndmanage/package.nix @@ -39,11 +39,11 @@ python3Packages.buildPythonApplication rec { export HOME=$(mktemp -d) ''; - 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/lo/loadlibrary/package.nix b/pkgs/by-name/lo/loadlibrary/package.nix index f1412096be202..d7ce17f9f729a 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/loadwatch/package.nix b/pkgs/by-name/lo/loadwatch/package.nix index 95990bc5190de..9409268c69ec8 100644 --- a/pkgs/by-name/lo/loadwatch/package.nix +++ b/pkgs/by-name/lo/loadwatch/package.nix @@ -19,10 +19,10 @@ stdenv.mkDerivation { install loadwatch lw-ctl $out/bin ''; - meta = with lib; { + meta = { description = "Run a program using only idle cycles"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ woffs ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ woffs ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/lo/localproxy/package.nix b/pkgs/by-name/lo/localproxy/package.nix index bd76b84682365..3618a1c5a9a4a 100644 --- a/pkgs/by-name/lo/localproxy/package.nix +++ b/pkgs/by-name/lo/localproxy/package.nix @@ -50,12 +50,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/localtime/package.nix b/pkgs/by-name/lo/localtime/package.nix index 73167bd938bad..2f2769515f0b4 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 ece548fc56c7b..d5bbca6851ddd 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/log4cpp/package.nix b/pkgs/by-name/lo/log4cpp/package.nix index cdccc90195825..f1321e5c1420f 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/log4j-detect/package.nix b/pkgs/by-name/lo/log4j-detect/package.nix index fc576a6042542..e0be6d300f8bf 100644 --- a/pkgs/by-name/lo/log4j-detect/package.nix +++ b/pkgs/by-name/lo/log4j-detect/package.nix @@ -30,10 +30,10 @@ python3.pkgs.buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool to detect the log4j vulnerability"; homepage = "https://github.com/takito1812/log4j-detect"; - license = licenses.unfree; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/lo/log4j-scan/package.nix b/pkgs/by-name/lo/log4j-scan/package.nix index 08e28da2a0d81..43f584b4e57d7 100644 --- a/pkgs/by-name/lo/log4j-scan/package.nix +++ b/pkgs/by-name/lo/log4j-scan/package.nix @@ -36,11 +36,11 @@ python3.pkgs.buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Scanner for finding hosts which are vulnerable for log4j"; mainProgram = "log4j-scan"; homepage = "https://github.com/fullhunt/log4j-scan"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/lo/log4j-sniffer/package.nix b/pkgs/by-name/lo/log4j-sniffer/package.nix index 54f888ef89f52..8c5abd2b1dcf6 100644 --- a/pkgs/by-name/lo/log4j-sniffer/package.nix +++ b/pkgs/by-name/lo/log4j-sniffer/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { git init ''; - meta = with lib; { + meta = { description = "Tool that scans archives to check for vulnerable log4j versions"; mainProgram = "log4j-sniffer"; homepage = "https://github.com/palantir/log4j-sniffer"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/lo/log4j-vuln-scanner/package.nix b/pkgs/by-name/lo/log4j-vuln-scanner/package.nix index 784a3db24ec95..0924f7791e861 100644 --- a/pkgs/by-name/lo/log4j-vuln-scanner/package.nix +++ b/pkgs/by-name/lo/log4j-vuln-scanner/package.nix @@ -22,10 +22,10 @@ buildGoModule rec { mv $out/bin/patcher $out/bin/log4j-vuln-patcher ''; - meta = with lib; { + meta = { description = "Local log4j vulnerability scanner"; homepage = "https://github.com/hillu/local-log4j-vuln-scanner"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/lo/log4jcheck/package.nix b/pkgs/by-name/lo/log4jcheck/package.nix index 7a8c3a429d5ba..f02cc4433e0b1 100644 --- a/pkgs/by-name/lo/log4jcheck/package.nix +++ b/pkgs/by-name/lo/log4jcheck/package.nix @@ -26,11 +26,11 @@ python3.pkgs.buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool to check for vulnerable Log4j (CVE-2021-44228) systems"; homepage = "https://github.com/NorthwaveSecurity/log4jcheck"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "log4jcheck"; }; } diff --git a/pkgs/by-name/lo/log4shell-detector/package.nix b/pkgs/by-name/lo/log4shell-detector/package.nix index 208a18a24b795..1247e268a3031 100644 --- a/pkgs/by-name/lo/log4shell-detector/package.nix +++ b/pkgs/by-name/lo/log4shell-detector/package.nix @@ -32,11 +32,11 @@ python3.pkgs.buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Detector for Log4Shell exploitation attempts"; homepage = "https://github.com/Neo23x0/log4shell-detector"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "log4shell-detector"; }; } diff --git a/pkgs/by-name/lo/log4shib/package.nix b/pkgs/by-name/lo/log4shib/package.nix index 4933c3552fc84..ef90d78fecbda 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/logiops/package.nix b/pkgs/by-name/lo/logiops/package.nix index 3ffaf371d4bf3..ce811d663e0f6 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 99c8415134ccc..7c08fb49023c5 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 16bb1c6ba666b..d4309117acd9f 100644 --- a/pkgs/by-name/lo/logkeys/package.nix +++ b/pkgs/by-name/lo/logkeys/package.nix @@ -38,14 +38,14 @@ stdenv.mkDerivation { preConfigure = "./autogen.sh"; - 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 8e0a4a7852a0e..c296fed3e4ed9 100644 --- a/pkgs/by-name/lo/logmap/package.nix +++ b/pkgs/by-name/lo/logmap/package.nix @@ -26,11 +26,11 @@ python3.pkgs.buildPythonApplication rec { 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/logrotate/package.nix b/pkgs/by-name/lo/logrotate/package.nix index 4eb443134ab05..5f3c87fcc84a7 100644 --- a/pkgs/by-name/lo/logrotate/package.nix +++ b/pkgs/by-name/lo/logrotate/package.nix @@ -34,12 +34,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/logtop/package.nix b/pkgs/by-name/lo/logtop/package.nix index fb756a9c18334..f2b9f68d3511d 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 4bee83fbfe1d6..cc2bfcc74dd2e 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 fbafd989a3081..15fa6e8b21218 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 087c71340fe70..e95f9a72cd528 100644 --- a/pkgs/by-name/lo/lolcode/package.nix +++ b/pkgs/by-name/lo/lolcode/package.nix @@ -30,15 +30,15 @@ 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; - maintainers = [ maintainers.AndersonTorres ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.AndersonTorres ]; mainProgram = "lolcode-lci"; platforms = lib.platforms.unix; }; diff --git a/pkgs/by-name/lo/looking-glass-client/package.nix b/pkgs/by-name/lo/looking-glass-client/package.nix index 973ca6ce4a0a6..ad5de73a6f44b 100644 --- a/pkgs/by-name/lo/looking-glass-client/package.nix +++ b/pkgs/by-name/lo/looking-glass-client/package.nix @@ -136,7 +136,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 @@ -146,9 +146,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/loop/package.nix b/pkgs/by-name/lo/loop/package.nix index 805069f33e099..a9b8ab4488bf0 100644 --- a/pkgs/by-name/lo/loop/package.nix +++ b/pkgs/by-name/lo/loop/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-sceS/2qxiV16VP8E3M39MYnGiCbq0rrnehsV/SuHZl4="; - meta = with lib; { + meta = { description = "UNIX's missing `loop` command"; homepage = "https://github.com/Miserlou/Loop"; - maintainers = with maintainers; [ koral ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ koral ]; + license = lib.licenses.mit; mainProgram = "loop"; }; } diff --git a/pkgs/by-name/lo/lora/package.nix b/pkgs/by-name/lo/lora/package.nix index a062c11e04d0d..970862b782387 100644 --- a/pkgs/by-name/lo/lora/package.nix +++ b/pkgs/by-name/lo/lora/package.nix @@ -30,11 +30,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Lora is a well-balanced contemporary serif with roots in calligraphy"; homepage = "https://github.com/cyrealtype/lora"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ ofalvai ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ofalvai ]; }; } diff --git a/pkgs/by-name/lo/lorien/package.nix b/pkgs/by-name/lo/lorien/package.nix index 345be95749595..c53b78292cfac 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 = "An 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/lottieconverter/package.nix b/pkgs/by-name/lo/lottieconverter/package.nix index 7eef0a30f3161..a5cd909019a0b 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 600082edef213..1ed5050048837 100644 --- a/pkgs/by-name/lo/loudmouth/package.nix +++ b/pkgs/by-name/lo/loudmouth/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation rec { darwin.apple_sdk.frameworks.Foundation ]; - 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 aec0a74eaf187..44214d30b1cef 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/louvain-community/package.nix b/pkgs/by-name/lo/louvain-community/package.nix index 97d0c3e7acd46..9a19418295b33 100644 --- a/pkgs/by-name/lo/louvain-community/package.nix +++ b/pkgs/by-name/lo/louvain-community/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { }; - 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 76900e0acbd89..746d49c6e803e 100644 --- a/pkgs/by-name/lo/lowdown/package.nix +++ b/pkgs/by-name/lo/lowdown/package.nix @@ -114,11 +114,11 @@ stdenv.mkDerivation rec { inherit nix; }; - 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 46b84c7ceadc2..919d7edf8722c 100644 --- a/pkgs/by-name/lo/loxodo/package.nix +++ b/pkgs/by-name/lo/loxodo/package.nix @@ -38,12 +38,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/LPCNet/package.nix b/pkgs/by-name/lp/LPCNet/package.nix index 0d94114f4e6dc..df37f7bf359a4 100644 --- a/pkgs/by-name/lp/LPCNet/package.nix +++ b/pkgs/by-name/lp/LPCNet/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation (finalAttrs: { export LD_LIBRARY_PATH="$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}/build/source/build/src" ''; - meta = with lib; { + meta = { description = "Experimental Neural Net speech coding for FreeDV"; homepage = "https://github.com/drowe67/LPCNet"; - license = licenses.bsd3; - maintainers = with maintainers; [ doronbehar ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ doronbehar ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/lp/lpcnetfreedv/package.nix b/pkgs/by-name/lp/lpcnetfreedv/package.nix index ea1815a5731ea..60ae89d6ad384 100644 --- a/pkgs/by-name/lp/lpcnetfreedv/package.nix +++ b/pkgs/by-name/lp/lpcnetfreedv/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { ln -s ${data} build/lpcnet_${dataVersion}.tgz ''; - meta = with lib; { + meta = { homepage = "https://freedv.org/"; description = "Experimental Neural Net speech coding for FreeDV"; - license = licenses.bsd3; - maintainers = with maintainers; [ mvs ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mvs ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/lp/lprint/package.nix b/pkgs/by-name/lp/lprint/package.nix index ad9585c1d2bec..37ad5e8acd755 100644 --- a/pkgs/by-name/lp/lprint/package.nix +++ b/pkgs/by-name/lp/lprint/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "LPrint 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 = [ ]; }; } diff --git a/pkgs/by-name/lr/lr/package.nix b/pkgs/by-name/lr/lr/package.nix index b4b2807f3f50e..cde2e7fc8562a 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/lrzip/package.nix b/pkgs/by-name/lr/lrzip/package.nix index 4f3b10ad3042f..bf7a9399afbaa 100644 --- a/pkgs/by-name/lr/lrzip/package.nix +++ b/pkgs/by-name/lr/lrzip/package.nix @@ -50,11 +50,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 4b0d5c79cd760..fe1350ad1a5ea 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 0f5d5810f68fb..66b9278c3842b 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-qXx83jtkVzN+ydXjW4Nkz49rhSLbAS2597iuYUDsEo4="; - 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/lsd2dsl/package.nix b/pkgs/by-name/ls/lsd2dsl/package.nix index 73ad7e21a23e0..6e09cac18b0ad 100644 --- a/pkgs/by-name/ls/lsd2dsl/package.nix +++ b/pkgs/by-name/ls/lsd2dsl/package.nix @@ -66,14 +66,14 @@ stdenv.mkDerivation rec { install -Dm755 console/lsd2dsl gui/lsd2dsl-qtgui -t $out/bin ''; - meta = with lib; { + meta = { homepage = "https://rcebits.com/lsd2dsl/"; description = "Lingvo dictionaries decompiler"; longDescription = '' A decompiler for ABBYY Lingvo’s proprietary dictionaries. ''; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ls/lsdvd/package.nix b/pkgs/by-name/ls/lsdvd/package.nix index b8f8c411c021c..8f2ae69322c0c 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 2e3a8cedc6709..465ca111b1b7a 100644 --- a/pkgs/by-name/ls/lshw/package.nix +++ b/pkgs/by-name/ls/lshw/package.nix @@ -49,13 +49,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 dddd828d4069a..7e6edc56fe533 100644 --- a/pkgs/by-name/ls/lsirec/package.nix +++ b/pkgs/by-name/ls/lsirec/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { 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 4268371e5f380..da2ce10872f13 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 9f6a7c26bd8f1..8b10bbcb4e698 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/lsscsi/package.nix b/pkgs/by-name/ls/lsscsi/package.nix index e3fa8ebe2e642..1499ad0b8d32b 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 b77f28542d14f..f668221a4c54b 100644 --- a/pkgs/by-name/ls/lswt/package.nix +++ b/pkgs/by-name/ls/lswt/package.nix @@ -25,12 +25,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 926b212b3a95f..5c81f5aad3af9 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 4204579818ec5..73c6f9e6e83b6 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 0ef345ac3e8f6..c2875e59bdcc6 100644 --- a/pkgs/by-name/lt/ltrace/package.nix +++ b/pkgs/by-name/lt/ltrace/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation rec { 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 03e6a16134e20..620925b2eb6c1 100644 --- a/pkgs/by-name/lt/lttng-tools/package.nix +++ b/pkgs/by-name/lt/lttng-tools/package.nix @@ -32,16 +32,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/lttv/package.nix b/pkgs/by-name/lt/lttv/package.nix index f6f0223d270cf..0c39b0c2c0df8 100644 --- a/pkgs/by-name/lt/lttv/package.nix +++ b/pkgs/by-name/lt/lttv/package.nix @@ -26,17 +26,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 14b54abeb52b2..b6727403f6611 100644 --- a/pkgs/by-name/lt/ltunify/package.nix +++ b/pkgs/by-name/lt/ltunify/package.nix @@ -23,15 +23,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; - maintainers = with maintainers; [ abbradar ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ abbradar ]; + platforms = lib.platforms.linux; mainProgram = "ltunify"; }; } diff --git a/pkgs/by-name/lt/ltwheelconf/package.nix b/pkgs/by-name/lt/ltwheelconf/package.nix index fef9f7445b81a..c85249e16026b 100644 --- a/pkgs/by-name/lt/ltwheelconf/package.nix +++ b/pkgs/by-name/lt/ltwheelconf/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation { cp ltwheelconf $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/thk/LTWheelConf"; description = "Logitech wheels configuration tool"; - license = licenses.gpl3; - maintainers = [ maintainers.ebzzry ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.ebzzry ]; + platforms = lib.platforms.linux; mainProgram = "ltwheelconf"; }; } diff --git a/pkgs/by-name/lu/luaformatter/package.nix b/pkgs/by-name/lu/luaformatter/package.nix index 06bded91452f2..606344a40db81 100644 --- a/pkgs/by-name/lu/luaformatter/package.nix +++ b/pkgs/by-name/lu/luaformatter/package.nix @@ -38,12 +38,12 @@ 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "lua-format"; }; } diff --git a/pkgs/by-name/lu/lucene/package.nix b/pkgs/by-name/lu/lucene/package.nix index f49428ba76f9a..5f6a33a948f3c 100644 --- a/pkgs/by-name/lu/lucene/package.nix +++ b/pkgs/by-name/lu/lucene/package.nix @@ -17,9 +17,9 @@ stdenv.mkDerivation rec { cp -r . $out/ ''; - meta = with lib; { + meta = { description = "Java full-text search engine"; - platforms = platforms.unix; - license = licenses.asl20; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/lu/lucky-cli/package.nix b/pkgs/by-name/lu/lucky-cli/package.nix index 6ee31e492fa03..9777b4580515a 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/luculent/package.nix b/pkgs/by-name/lu/luculent/package.nix index ce460d2c81697..c5d630d3c4e56 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 4d159cb6c44a9..8b11ec690b412 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-czofgV5a9aQoLn4JaBUbytY/aHfgJv3Q8RU2j+fbXo8="; - 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; [ shyim maltejanz ]; diff --git a/pkgs/by-name/lu/lukesmithxyz-st/package.nix b/pkgs/by-name/lu/lukesmithxyz-st/package.nix index 36007d3f8b874..965b45303cc3a 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 rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/LukeSmithxyz/st"; description = "Luke Smith's fork of st"; - license = licenses.mit; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ AndersonTorres ]; + 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 8f286b23454b6..066db1870e382 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/luppp/package.nix b/pkgs/by-name/lu/luppp/package.nix index bd7ab5762a920..fd0256da290b5 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 151b01cb7bda9..1a7c89806bb97 100644 --- a/pkgs/by-name/lu/lutgen/package.nix +++ b/pkgs/by-name/lu/lutgen/package.nix @@ -28,15 +28,15 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/lutgen --bpaf-complete-style-zsh) ''; - 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 18d25c1ab89ef..d414e409a47ad 100644 --- a/pkgs/by-name/lv/lv/package.nix +++ b/pkgs/by-name/lv/lv/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { 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 8b99a2425c4dc..c221ba7c6934b 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 4ad9205e8957b..a5a62c13aed26 100644 --- a/pkgs/by-name/lv/lv2/package.nix +++ b/pkgs/by-name/lv/lv2/package.nix @@ -60,12 +60,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 bbf1ab10b2f89..b4c1e1ea24d10 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 071f4da2b03dc..aede83ef03457 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 bc61cc5b3bfe7..769225e56e251 100644 --- a/pkgs/by-name/lw/lwan/package.nix +++ b/pkgs/by-name/lw/lwan/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { hardeningDisable = lib.optional stdenv.hostPlatform.isMusl "pie"; - 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 @@ -53,8 +53,8 @@ stdenv.mkDerivation rec { support. "; homepage = "https://lwan.ws/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ leenaars ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ leenaars ]; }; } diff --git a/pkgs/by-name/lw/lwc/package.nix b/pkgs/by-name/lw/lwc/package.nix index d9006a5570f61..5da0b454b8bc4 100644 --- a/pkgs/by-name/lw/lwc/package.nix +++ b/pkgs/by-name/lw/lwc/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-X=main.version=${src.rev}" ]; - meta = with lib; { + meta = { description = "Live-updating version of the UNIX wc command"; homepage = "https://github.com/timdp/lwc"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "lwc"; }; } diff --git a/pkgs/by-name/lw/lwgrp/package.nix b/pkgs/by-name/lw/lwgrp/package.nix index a043c27d85125..9ddac9bd3bbb5 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 a7706e3c6f725..cecffc49c4eb8 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; - maintainers = [ maintainers.AndersonTorres ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.AndersonTorres ]; + 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 cc17908a5da11..03c2bb38db785 100644 --- a/pkgs/by-name/lx/lxd-image-server/package.nix +++ b/pkgs/by-name/lx/lxd-image-server/package.nix @@ -46,12 +46,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 99c7a8e3e37f2..f41da234e5942 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 c4011b066d0c5..97b62c339052a 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 f68d37c6109ba..7bf9aba9fca57 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 ac3c251558839..fd7d8ea67ed77 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 b7325099ea308..5f6bb4e237fbb 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 c18c38b639231..deccb26939690 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 b9718c7749a06..ad524d6e0d50b 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; - maintainers = with maintainers; [ davidtwco ]; + platforms = lib.platforms.unix; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ davidtwco ]; }; } diff --git a/pkgs/by-name/ly/lyrebird/package.nix b/pkgs/by-name/ly/lyrebird/package.nix index fa70d065c157f..957ab56468854 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/chxrlt/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 23c13065ae40e..3ff69a39eb762 100644 --- a/pkgs/by-name/lz/lz4/package.nix +++ b/pkgs/by-name/lz/lz4/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Extremely fast compression algorithm"; longDescription = '' Very fast lossless compression algorithm, providing compression speed @@ -60,12 +60,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 a024d4eae0706..4a0be4aaea778 100644 --- a/pkgs/by-name/lz/lzbench/package.nix +++ b/pkgs/by-name/lz/lzbench/package.nix @@ -22,11 +22,11 @@ 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 = licenses.free; - platforms = platforms.all; + license = lib.licenses.free; + platforms = lib.platforms.all; mainProgram = "lzbench"; }; } diff --git a/pkgs/by-name/lz/lzham/package.nix b/pkgs/by-name/lz/lzham/package.nix index 025ac6ab61440..bb6096b6ff684 100644 --- a/pkgs/by-name/lz/lzham/package.nix +++ b/pkgs/by-name/lz/lzham/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { cp ../bin_linux/lzhamtest $out/bin ''; - meta = with lib; { + meta = { description = "Lossless data compression codec with LZMA-like ratios but 1.5x-8x faster decompression speed"; mainProgram = "lzhamtest"; homepage = "https://github.com/richgel999/lzham_codec"; - license = with licenses; [ mit ]; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/lz/lzip/package.nix b/pkgs/by-name/lz/lzip/package.nix index 9609ed801fdc9..2aa41e30af061 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/lzop/package.nix b/pkgs/by-name/lz/lzop/package.nix index 98301c16b54e6..d7dafe6f75456 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/m1/m17-cxx-demod/package.nix b/pkgs/by-name/m1/m17-cxx-demod/package.nix index 631ecb0bb9113..d09e48e172393 100644 --- a/pkgs/by-name/m1/m17-cxx-demod/package.nix +++ b/pkgs/by-name/m1/m17-cxx-demod/package.nix @@ -39,12 +39,12 @@ 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; - maintainers = teams.c3d2.members; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = lib.teams.c3d2.members; # 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 b52e0174e153a..e550ddf59bf4f 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.gpl3Only; + maintainers = lib.teams.minimal-bootstrap.members; 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 73f455091fff4..3dab1ded4a0db 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.gpl3Only; + maintainers = lib.teams.minimal-bootstrap.members; 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 084f02db253cf..51c3818bf779d 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.gpl3Only; + maintainers = lib.teams.minimal-bootstrap.members; 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 30e81e238c699..941ed5354d993 100644 --- a/pkgs/by-name/m3/m33-linux/package.nix +++ b/pkgs/by-name/m3/m33-linux/package.nix @@ -31,12 +31,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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/m4/m4acut/package.nix b/pkgs/by-name/m4/m4acut/package.nix index 22b7fa486048f..9408fd792022c 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 ecdaf447b6bb6..262f8a84407de 100644 --- a/pkgs/by-name/m4/m4ri/package.nix +++ b/pkgs/by-name/m4/m4ri/package.nix @@ -54,11 +54,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; - maintainers = teams.sage.members; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.sage.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/m4/m4rie/package.nix b/pkgs/by-name/m4/m4rie/package.nix index ed424dc6aa212..01c89298f3cc6 100644 --- a/pkgs/by-name/m4/m4rie/package.nix +++ b/pkgs/by-name/m4/m4rie/package.nix @@ -30,15 +30,15 @@ stdenv.mkDerivation rec { autoreconfHook ]; - 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; - maintainers = teams.sage.members; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.sage.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ma/mac-fdisk/package.nix b/pkgs/by-name/ma/mac-fdisk/package.nix index a6e8775e7763c..46f60498d4924 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 rec { 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 784b2397998c2..22d9e3038151d 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 e65e1cca5fcbf..49857d1237e4c 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 f651c2f9d4ce3..d5db4eab4a8a0 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/mackerel-agent/package.nix b/pkgs/by-name/ma/mackerel-agent/package.nix index e64e46c4f9796..0fddd10dd46d7 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/maddy/package.nix b/pkgs/by-name/ma/maddy/package.nix index 73ae23b4b9cfa..ef03cc9eabdee 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 69c60bdab6491..062fc5a413961 100644 --- a/pkgs/by-name/ma/madonctl/package.nix +++ b/pkgs/by-name/ma/madonctl/package.nix @@ -38,10 +38,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/maelstrom/package.nix b/pkgs/by-name/ma/maelstrom/package.nix index 1edeeeb53c0a3..e79606be2187e 100644 --- a/pkgs/by-name/ma/maelstrom/package.nix +++ b/pkgs/by-name/ma/maelstrom/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "Arcade-style game resembling Asteroids"; mainProgram = "maelstrom"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ tmountain ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ tmountain ]; }; } diff --git a/pkgs/by-name/ma/maeparser/package.nix b/pkgs/by-name/ma/maeparser/package.nix index 96d6969178343..1b7b9f6416890 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 a5ff3cd56463c..c05c9248ceced 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 ca1f89388a442..5b0aded430e5d 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 a4217149813f5..71029a1673d95 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/magicrescue/package.nix b/pkgs/by-name/ma/magicrescue/package.nix index 0158a38a7ea3a..6f22b33233bfb 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/magnetic-catppuccin-gtk/package.nix b/pkgs/by-name/ma/magnetic-catppuccin-gtk/package.nix index 7f2dcb4650cc7..acf1ab51e335c 100644 --- a/pkgs/by-name/ma/magnetic-catppuccin-gtk/package.nix +++ b/pkgs/by-name/ma/magnetic-catppuccin-gtk/package.nix @@ -101,11 +101,11 @@ lib.checkListOfEnum "${pname} Valid theme accent(s)" validAccents accent lib.che runHook postInstall ''; - meta = with lib; { + meta = { description = "GTK Theme with Catppuccin colour scheme"; homepage = "https://github.com/Fausto-Korpsvart/Catppuccin-GTK-Theme"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ icy-thought ]; - platforms = platforms.all; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ icy-thought ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ma/maid/package.nix b/pkgs/by-name/ma/maid/package.nix index 7196ebc9514b5..ac57a6b7ce52b 100644 --- a/pkgs/by-name/ma/maid/package.nix +++ b/pkgs/by-name/ma/maid/package.nix @@ -14,11 +14,11 @@ bundlerApp { 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/maiko/package.nix b/pkgs/by-name/ma/maiko/package.nix index 991d7d29a6b0e..15c44b500bd46 100644 --- a/pkgs/by-name/ma/maiko/package.nix +++ b/pkgs/by-name/ma/maiko/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { find . -maxdepth 1 -executable -type f -exec install -Dt $out/bin '{}' \; runHook postInstall ''; - meta = with lib; { + meta = { description = "Medley Interlisp virtual machine"; homepage = "https://interlisp.org/"; changelog = "https://github.com/Interlisp/maiko/releases"; - license = licenses.mit; - maintainers = with maintainers; [ ehmry ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ehmry ]; inherit (xorg.libX11.meta) platforms; }; } diff --git a/pkgs/by-name/ma/mailcap/package.nix b/pkgs/by-name/ma/mailcap/package.nix index 03d4b3401b9ea..6a809eb9e53e2 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 3f222a427293b..22d2f3d1e5fd0 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/mailsend/package.nix b/pkgs/by-name/ma/mailsend/package.nix index de46e1ea12144..1895b7ae158af 100644 --- a/pkgs/by-name/ma/mailsend/package.nix +++ b/pkgs/by-name/ma/mailsend/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "CLI email sending tool"; - license = licenses.bsd3; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; homepage = "https://github.com/muquit/mailsend"; downloadPage = "https://github.com/muquit/mailsend/releases"; mainProgram = "mailsend"; diff --git a/pkgs/by-name/ma/makebootfat/package.nix b/pkgs/by-name/ma/makebootfat/package.nix index a4aeb138ab27b..04562d013aa29 100644 --- a/pkgs/by-name/ma/makebootfat/package.nix +++ b/pkgs/by-name/ma/makebootfat/package.nix @@ -13,12 +13,12 @@ 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; - maintainers = [ maintainers.ehmry ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.ehmry ]; + 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 2e384a7194407..787a4231351ee 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/maker-panel/package.nix b/pkgs/by-name/ma/maker-panel/package.nix index 3726f823f65d7..1e890532d5877 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 f7b0d884da7d6..7977299bd612b 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 33f4a587a7bef..d4133d7071f70 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 171d0d1a09ff1..85ce9c74acc74 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 b5342172d4a26..e92f742baabdb 100644 --- a/pkgs/by-name/ma/malt/package.nix +++ b/pkgs/by-name/ma/malt/package.nix @@ -32,11 +32,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; + license = lib.licenses.cecill-c; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ma/mamba/package.nix b/pkgs/by-name/ma/mamba/package.nix index 5c52999720cbb..e4a081c1c3adb 100644 --- a/pkgs/by-name/ma/mamba/package.nix +++ b/pkgs/by-name/ma/mamba/package.nix @@ -45,14 +45,14 @@ 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 orivej ]; - 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 29be3e9e87bf9..e40d7d66fa3d5 100644 --- a/pkgs/by-name/ma/man-db/package.nix +++ b/pkgs/by-name/ma/man-db/package.nix @@ -120,10 +120,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/man-pages/package.nix b/pkgs/by-name/ma/man-pages/package.nix index 9154a47594200..9537fdea28e8d 100644 --- a/pkgs/by-name/ma/man-pages/package.nix +++ b/pkgs/by-name/ma/man-pages/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { mkdir -p $out/bin ''; - meta = with lib; { + meta = { description = "Linux development manual pages"; homepage = "https://www.kernel.org/doc/man-pages/"; - license = licenses.gpl2Plus; - platforms = with platforms; unix; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; unix; priority = 30; # if a package comes with its own man page, prefer it }; } diff --git a/pkgs/by-name/ma/mandown/package.nix b/pkgs/by-name/ma/mandown/package.nix index a007ef0dd74d4..4b857dbf52d5a 100644 --- a/pkgs/by-name/ma/mandown/package.nix +++ b/pkgs/by-name/ma/mandown/package.nix @@ -15,10 +15,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-eHKivxnbOk3K2JEVIVHhaEds6Gr2TcYUnFuallHRV/0="; - meta = with lib; { + meta = { description = "Markdown to groff (man page) converter"; homepage = "https://gitlab.com/kornelski/mandown"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; diff --git a/pkgs/by-name/ma/manga-cli/package.nix b/pkgs/by-name/ma/manga-cli/package.nix index 9319628ae253f..3f0365b1df884 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 332c1d33ec250..5d8b6af3b60d0 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 699babd5ae4ff..d169769f972a9 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 = "A 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 4880edc5d18be..9639c6ced56db 100644 --- a/pkgs/by-name/ma/manifest-tool/package.nix +++ b/pkgs/by-name/ma/manifest-tool/package.nix @@ -56,11 +56,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 c3ea02a3e5b29..11fd9cc89f3b0 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-45cb0yO/ypGLcvEgPOkN6Py99yqK09xnCmMOLOOYYSA="; - 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; [ iogamaster lecoqjacob ]; diff --git a/pkgs/by-name/ma/manrope/package.nix b/pkgs/by-name/ma/manrope/package.nix index 5835078e16143..4ea05ff9e89ab 100644 --- a/pkgs/by-name/ma/manrope/package.nix +++ b/pkgs/by-name/ma/manrope/package.nix @@ -30,11 +30,11 @@ stdenvNoCC.mkDerivation rec { 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/map-cmd/package.nix b/pkgs/by-name/ma/map-cmd/package.nix index e11af51aa70f7..e78da614fa346 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 1fb76d1b3f1c8..b02f3f0186faf 100644 --- a/pkgs/by-name/ma/mapscii/package.nix +++ b/pkgs/by-name/ma/mapscii/package.nix @@ -18,12 +18,12 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = with lib; { + meta = { description = "MapSCII is a 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/marathi-cursive/package.nix b/pkgs/by-name/ma/marathi-cursive/package.nix index 8ab61de1f1d4f..cb67a6d097007 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 3a1f344e53af8..4741bdcce0e63 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/marble-marcher-ce/package.nix b/pkgs/by-name/ma/marble-marcher-ce/package.nix index b1f0ffa98fd42..91af9268fcbed 100644 --- a/pkgs/by-name/ma/marble-marcher-ce/package.nix +++ b/pkgs/by-name/ma/marble-marcher-ce/package.nix @@ -64,16 +64,16 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "A community-developed version of the original Marble Marcher - a fractal physics game"; mainProgram = "marble-marcher-ce"; homepage = "https://michaelmoroz.itch.io/mmce"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus # Code cc-by-30 # Assets ofl # Fonts ]; - maintainers = with maintainers; [ rampoina ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ rampoina ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ma/marcel/package.nix b/pkgs/by-name/ma/marcel/package.nix index 1e3e1391f488c..577fb7db15b50 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/mari0/package.nix b/pkgs/by-name/ma/mari0/package.nix index deb7d959bc147..4737cec54720c 100644 --- a/pkgs/by-name/ma/mari0/package.nix +++ b/pkgs/by-name/ma/mari0/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { 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 d05d13d150e9c..2257d7dd8e735 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/marisa/package.nix b/pkgs/by-name/ma/marisa/package.nix index 2ff016940d305..9a6be91e3ced9 100644 --- a/pkgs/by-name/ma/marisa/package.nix +++ b/pkgs/by-name/ma/marisa/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/s-yata/marisa-trie"; 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 c84e8c9eed6f0..c1f03ef08af94 100644 --- a/pkgs/by-name/ma/mark/package.nix +++ b/pkgs/by-name/ma/mark/package.nix @@ -34,11 +34,11 @@ 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; [ rguevara84 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rguevara84 ]; }; } diff --git a/pkgs/by-name/ma/markets/package.nix b/pkgs/by-name/ma/markets/package.nix index b06f5fa4fd322..18534550ebc4e 100644 --- a/pkgs/by-name/ma/markets/package.nix +++ b/pkgs/by-name/ma/markets/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { ln -s bitstower-markets $out/bin/markets ''; - meta = with lib; { + meta = { homepage = "https://github.com/bitstower/markets"; description = "Stock, currency and cryptocurrency tracker"; - maintainers = with maintainers; [ qyliss ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ qyliss ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ma/marl/package.nix b/pkgs/by-name/ma/marl/package.nix index d4e796bc5fe68..25b3e466958ce 100644 --- a/pkgs/by-name/ma/marl/package.nix +++ b/pkgs/by-name/ma/marl/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { # Turn on the flag to install after building the library. cmakeFlags = [ "-DMARL_INSTALL=ON" ]; - 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 7ad05f082d0c4..9d42d6c6bdbf1 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; - maintainers = with maintainers; [ gebner ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ gebner ]; + 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 66f9c1398058c..b70aaaabc7d27 100644 --- a/pkgs/by-name/ma/marp-cli/package.nix +++ b/pkgs/by-name/ma/marp-cli/package.nix @@ -22,11 +22,11 @@ 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; - maintainers = with maintainers; [ GuillaumeDesforges ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ GuillaumeDesforges ]; platforms = nodejs.meta.platforms; mainProgram = "marp"; }; diff --git a/pkgs/by-name/ma/mars/package.nix b/pkgs/by-name/ma/mars/package.nix index 5742a01851cb7..70b789c4e7de6 100644 --- a/pkgs/by-name/ma/mars/package.nix +++ b/pkgs/by-name/ma/mars/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { EOF chmod +x "$out/bin/mars" ''; - meta = with lib; { + meta = { homepage = "https://mars-game.sourceforge.net/"; description = "Game about fighting with ships in a 2D space setting"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.astsmtl ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.astsmtl ]; + 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 27b1a42f90f6e..e1e29b7260d88 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 c857ea7ba97bd..ebf7f8e759dba 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 b405d3cc87ea6..669dfd82e44d5 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 2b13462147537..f3d20ee0a6a80 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 6698fe3a93626..7b0781251b103 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 1926bf2547428..3bfb46c1bf82a 100644 --- a/pkgs/by-name/ma/mas/package.nix +++ b/pkgs/by-name/ma/mas/package.nix @@ -32,11 +32,11 @@ stdenvNoCC.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Mac App Store command line interface"; homepage = "https://github.com/mas-cli/mas"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ steinybot zachcoyle ]; diff --git a/pkgs/by-name/ma/massren/package.nix b/pkgs/by-name/ma/massren/package.nix index 0ae0c0c332051..7d09accc18d9b 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/mastodon-archive/package.nix b/pkgs/by-name/ma/mastodon-archive/package.nix index 09bfc3c5eebdd..6d3e70f67aaae 100644 --- a/pkgs/by-name/ma/mastodon-archive/package.nix +++ b/pkgs/by-name/ma/mastodon-archive/package.nix @@ -24,11 +24,11 @@ python3.pkgs.buildPythonApplication rec { # There is no test doCheck = false; - 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/matcha-rss-digest/package.nix b/pkgs/by-name/ma/matcha-rss-digest/package.nix index bdc81f69f9778..bfb2069f364a3 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 990bc77b0762c..0cfc022f3901a 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 24c0e7a42ebc0..40bde5dd1b44d 100644 --- a/pkgs/by-name/ma/materia-theme/package.nix +++ b/pkgs/by-name/ma/materia-theme/package.nix @@ -45,11 +45,11 @@ 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; - maintainers = [ maintainers.mounium ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.mounium ]; }; } diff --git a/pkgs/by-name/ma/material-black-colors/package.nix b/pkgs/by-name/ma/material-black-colors/package.nix index 7f3386f70cd00..7d40703b37202 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 800a245b36f49..447a44d64268a 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 a8dfb57c9cc7e..33559df909b46 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 e1b0214c5c776..6793dd3654bd7 100644 --- a/pkgs/by-name/ma/math-preview/package.nix +++ b/pkgs/by-name/ma/math-preview/package.nix @@ -24,12 +24,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/mathgl/package.nix b/pkgs/by-name/ma/mathgl/package.nix index 45095e7f2bf7f..f344b6db3f1ac 100644 --- a/pkgs/by-name/ma/mathgl/package.nix +++ b/pkgs/by-name/ma/mathgl/package.nix @@ -26,14 +26,14 @@ 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 ]; }; } diff --git a/pkgs/by-name/ma/mathpix-snipping-tool/package.nix b/pkgs/by-name/ma/mathpix-snipping-tool/package.nix index ff4205c90d4f5..e465b61fbaa21 100644 --- a/pkgs/by-name/ma/mathpix-snipping-tool/package.nix +++ b/pkgs/by-name/ma/mathpix-snipping-tool/package.nix @@ -23,11 +23,11 @@ appimageTools.wrapType2 { cp -r ${appimageContents}/usr/share/icons $out/share ''; - meta = with lib; { + meta = { description = "OCR tool to convert pictures to LaTeX"; homepage = "https://mathpix.com/"; - license = licenses.unfree; - maintainers = [ maintainers.hiro98 ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.hiro98 ]; platforms = [ "x86_64-linux" ]; mainProgram = "mathpix-snipping-tool"; }; diff --git a/pkgs/by-name/ma/matrix-brandy/package.nix b/pkgs/by-name/ma/matrix-brandy/package.nix index 13088cec236f5..c8065068361dc 100644 --- a/pkgs/by-name/ma/matrix-brandy/package.nix +++ b/pkgs/by-name/ma/matrix-brandy/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { cp brandy $out/bin ''; - meta = with lib; { + meta = { homepage = "http://brandy.matrixnetwork.co.uk/"; description = "Matrix Brandy BASIC VI for Linux, Windows, MacOSX"; mainProgram = "brandy"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ fiq ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ fiq ]; }; } diff --git a/pkgs/by-name/ma/matrix-conduit/package.nix b/pkgs/by-name/ma/matrix-conduit/package.nix index dfb7691434498..25e10cedd029d 100644 --- a/pkgs/by-name/ma/matrix-conduit/package.nix +++ b/pkgs/by-name/ma/matrix-conduit/package.nix @@ -64,11 +64,11 @@ rustPlatform.buildRustPackage rec { inherit (nixosTests) matrix-conduit; }; - meta = with lib; { + meta = { description = "Matrix homeserver written in Rust"; homepage = "https://conduit.rs/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ pstn pimeys ]; diff --git a/pkgs/by-name/ma/matrix-corporal/package.nix b/pkgs/by-name/ma/matrix-corporal/package.nix index e15c4657a2fad..3900c8a3cd917 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 83f61c4b92ce5..779fb3b075058 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 244ba93eec09e..a9635c4b10d31 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/matterircd/package.nix b/pkgs/by-name/ma/matterircd/package.nix index 6864188869922..7260c514a9c2f 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/mattermost/package.nix b/pkgs/by-name/ma/mattermost/package.nix index 61036a0fdb9ef..d050fa57212bd 100644 --- a/pkgs/by-name/ma/mattermost/package.nix +++ b/pkgs/by-name/ma/mattermost/package.nix @@ -150,14 +150,14 @@ buildGoModule rec { tests.mattermost = nixosTests.mattermost; }; - meta = with lib; { + meta = { description = "Mattermost is an open source platform for secure collaboration across the entire software development lifecycle"; homepage = "https://www.mattermost.org"; - license = with licenses; [ + license = with lib.licenses; [ agpl3Only asl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ryantm numinit kranzes diff --git a/pkgs/by-name/ma/mautrix-googlechat/package.nix b/pkgs/by-name/ma/mautrix-googlechat/package.nix index ba8517720acdc..bbd2513b83fbc 100644 --- a/pkgs/by-name/ma/mautrix-googlechat/package.nix +++ b/pkgs/by-name/ma/mautrix-googlechat/package.nix @@ -67,12 +67,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-whatsapp/package.nix b/pkgs/by-name/ma/mautrix-whatsapp/package.nix index f0b4ec1f0654b..dfb623ebb909f 100644 --- a/pkgs/by-name/ma/mautrix-whatsapp/package.nix +++ b/pkgs/by-name/ma/mautrix-whatsapp/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/tulir/mautrix-whatsapp"; description = "Matrix <-> Whatsapp hybrid puppeting/relaybot 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/maxfetch/package.nix b/pkgs/by-name/ma/maxfetch/package.nix index 4b00627daf086..78a54246453d5 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 325b9ebd23383..502efac342867 100644 --- a/pkgs/by-name/ma/maxflow/package.nix +++ b/pkgs/by-name/ma/maxflow/package.nix @@ -18,11 +18,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 d64e368d31695..e6886554a23cc 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 0af459cfcccca..99b47b1e93bb3 100644 --- a/pkgs/by-name/mb/mbed-cli/package.nix +++ b/pkgs/by-name/mb/mbed-cli/package.nix @@ -30,10 +30,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 ec79289e1d332..16e3da6dfbefa 100644 --- a/pkgs/by-name/mb/mbelib/package.nix +++ b/pkgs/by-name/mb/mbelib/package.nix @@ -20,11 +20,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 = [ ]; }; } diff --git a/pkgs/by-name/mb/mbidled/package.nix b/pkgs/by-name/mb/mbidled/package.nix index 7609ad5f1ce4c..664068600070f 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 69f19859ca115..1adfe9347f03c 100644 --- a/pkgs/by-name/mb/mblaze/package.nix +++ b/pkgs/by-name/mb/mblaze/package.nix @@ -69,11 +69,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/mbpfan/package.nix b/pkgs/by-name/mb/mbpfan/package.nix index 83bf9a2d1dc81..40195b99e452a 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 eeaca80fcbc3b..85a74699e5898 100644 --- a/pkgs/by-name/mb/mbpoll/package.nix +++ b/pkgs/by-name/mb/mbpoll/package.nix @@ -24,11 +24,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/mc/mcabber/package.nix b/pkgs/by-name/mc/mcabber/package.nix index 5475671a45c19..72b0e5ca2a8b7 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 ecbe96e0262b9..3e0a15f016be6 100644 --- a/pkgs/by-name/mc/mcap-cli/package.nix +++ b/pkgs/by-name/mc/mcap-cli/package.nix @@ -43,11 +43,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/mceinject/package.nix b/pkgs/by-name/mc/mceinject/package.nix index 136ce9487cc38..f646b583a18ae 100644 --- a/pkgs/by-name/mc/mceinject/package.nix +++ b/pkgs/by-name/mc/mceinject/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { "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 rec { 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 aee4dcebb9ed0..3f945a7b25311 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-xMXM56ulfKAY2HwRTXTG9h3garxDeu+zthMKSve5seQ="; - 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 b256072b23753..4f53381afd3ac 100644 --- a/pkgs/by-name/mc/mchprs/package.nix +++ b/pkgs/by-name/mc/mchprs/package.nix @@ -45,11 +45,11 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.SystemConfiguration ]; - 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 16ff2f73ff578..0e982a32d04ad 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,7 +78,7 @@ python3.pkgs.buildPythonApplication rec { (including CBR, CBZ, CB7, CBT, LHA and PDF) ''; homepage = "https://sourceforge.net/projects/mcomix/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ thiagokokada ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ thiagokokada ]; }; } diff --git a/pkgs/by-name/mc/mcpp/package.nix b/pkgs/by-name/mc/mcpp/package.nix index 571967e4befe4..8c01ae2e62283 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/mc/mcrl2/package.nix b/pkgs/by-name/mc/mcrl2/package.nix index 3534afcbae257..cfc94fe5f9f86 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 eb84fae7d3fee..ef6ef7bd585c3 100644 --- a/pkgs/by-name/mc/mctc-lib/package.nix +++ b/pkgs/by-name/mc/mctc-lib/package.nix @@ -42,12 +42,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 539bba22f46af..1ea342974e7a8 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 db03704cbf262..57d1e33691a5e 100644 --- a/pkgs/by-name/mc/mcumgr-client/package.nix +++ b/pkgs/by-name/mc/mcumgr-client/package.nix @@ -30,11 +30,11 @@ rustPlatform.buildRustPackage rec { lib.optionals stdenv.hostPlatform.isLinux [ udev ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.IOKit ]; - 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/mda_lv2/package.nix b/pkgs/by-name/md/mda_lv2/package.nix index bbd059f3a5d62..8d772d2b298bd 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 082ddb9d57ba7..d16870a983bda 100644 --- a/pkgs/by-name/md/mdadm4/package.nix +++ b/pkgs/by-name/md/mdadm4/package.nix @@ -75,12 +75,12 @@ stdenv.mkDerivation rec { grep -r $out $out/bin && false || true ''; - 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"; - maintainers = with maintainers; [ ekleog ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ ekleog ]; + 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 17971b1b1c834..aa560dd6d7bf9 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 rec { cargoHash = "sha256-gT3DyQRJWn1HuR6fXeqk8aUPb+jmC+V1McdDN2JGXuI="; - 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-kroki-preprocessor/package.nix b/pkgs/by-name/md/mdbook-kroki-preprocessor/package.nix index 39ef19686f9ed..4b9bf0ea621dc 100644 --- a/pkgs/by-name/md/mdbook-kroki-preprocessor/package.nix +++ b/pkgs/by-name/md/mdbook-kroki-preprocessor/package.nix @@ -34,12 +34,12 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.Security ]; - 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; [ blaggacao matthiasbeyer ]; diff --git a/pkgs/by-name/md/mdbook-man/package.nix b/pkgs/by-name/md/mdbook-man/package.nix index c50808f95c3f9..78629c47509f8 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 rec { cargoHash = "sha256-cR86eFhP9Swh+Ff8FNbAfWpWMkliOAyPwDQ6lRvU+nk="; - 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 35f0e774edcec..7b7d273c76d91 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-TQBjgQaoI88xGdhkffNWRH6aZ99WWbkkpiPu4LqBD3g="; - 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 7342770a8194e..b8af528728cb7 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-FvDvPXA4/dxVOIt1LwesBrWEsjdYcrhHescQVAiggBA="; - 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; [ blaggacao matthiasbeyer ]; diff --git a/pkgs/by-name/md/mdbtools/package.nix b/pkgs/by-name/md/mdbtools/package.nix index 381245fef2c73..d3e1d27cd9ba1 100644 --- a/pkgs/by-name/md/mdbtools/package.nix +++ b/pkgs/by-name/md/mdbtools/package.nix @@ -43,14 +43,14 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = ".mdb (MS Access) format tools"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2 ]; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; inherit (src.meta) homepage; }; } diff --git a/pkgs/by-name/md/mdevctl/package.nix b/pkgs/by-name/md/mdevctl/package.nix index 5e10a5fd188e9..ddc73ae2f0ae9 100644 --- a/pkgs/by-name/md/mdevctl/package.nix +++ b/pkgs/by-name/md/mdevctl/package.nix @@ -33,11 +33,11 @@ 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; - maintainers = with maintainers; [ edwtjo ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ edwtjo ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/md/mdhtml/package.nix b/pkgs/by-name/md/mdhtml/package.nix index 5c58990b162fd..43580a4cd3cb6 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/mdk4/package.nix b/pkgs/by-name/md/mdk4/package.nix index 3a22b961b215b..cb582d3994f05 100644 --- a/pkgs/by-name/md/mdk4/package.nix +++ b/pkgs/by-name/md/mdk4/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation { "SBINDIR=$(PREFIX)/bin" ]; - meta = with lib; { + meta = { description = "Tool that injects data into wireless networks"; homepage = "https://github.com/aircrack-ng/mdk4"; - maintainers = with maintainers; [ moni ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ moni ]; + license = lib.licenses.gpl2Plus; mainProgram = "mdk4"; }; } diff --git a/pkgs/by-name/md/mdp/package.nix b/pkgs/by-name/md/mdp/package.nix index d2b979d83f4fb..da92755dbb9ca 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 f0b2d4fa9114b..4a3df26273d69 100644 --- a/pkgs/by-name/md/mdr/package.nix +++ b/pkgs/by-name/md/mdr/package.nix @@ -25,11 +25,11 @@ 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "mdr"; }; } diff --git a/pkgs/by-name/md/mdsh/package.nix b/pkgs/by-name/md/mdsh/package.nix index 557e5ddf1c335..3dbcb6bcd872b 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-0D1RSUJw7fszc9d4nrp+zCzr9l0xF4Ed8DbK5/O5bEY="; - 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 d33233718e012..a3f207c0f55a6 100644 --- a/pkgs/by-name/md/mdslides/package.nix +++ b/pkgs/by-name/md/mdslides/package.nix @@ -17,11 +17,11 @@ python3Packages.buildPythonApplication rec { doCheck = false; - 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/me/me_cleaner/package.nix b/pkgs/by-name/me/me_cleaner/package.nix index 6957173c7687a..76e64e04c51d0 100644 --- a/pkgs/by-name/me/me_cleaner/package.nix +++ b/pkgs/by-name/me/me_cleaner/package.nix @@ -15,14 +15,14 @@ python3.pkgs.buildPythonPackage rec { sha256 = "1bdj2clm13ir441vn7sv860xsc5gh71ja5lc2wn0gggnff0adxj4"; }; - 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 bbf356cad3e34..c05c711b94f54 100644 --- a/pkgs/by-name/me/mealie/mealie-frontend.nix +++ b/pkgs/by-name/me/mealie/mealie-frontend.nix @@ -51,9 +51,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/measureme/package.nix b/pkgs/by-name/me/measureme/package.nix index 4a0e426d3f6fe..925e528590a56 100644 --- a/pkgs/by-name/me/measureme/package.nix +++ b/pkgs/by-name/me/measureme/package.nix @@ -21,10 +21,10 @@ rustPlatform.buildRustPackage rec { ln -s ${./Cargo.lock} Cargo.lock ''; - 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 1249f4e411e38..8c799c4ab7fe5 100644 --- a/pkgs/by-name/me/media-player-info/package.nix +++ b/pkgs/by-name/me/media-player-info/package.nix @@ -37,11 +37,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 212a1530ccd25..dd63a945056e8 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/mediamtx/package.nix b/pkgs/by-name/me/mediamtx/package.nix index 5a6fd3936a244..e9ec8ee5bf9cf 100644 --- a/pkgs/by-name/me/mediamtx/package.nix +++ b/pkgs/by-name/me/mediamtx/package.nix @@ -50,11 +50,11 @@ buildGoModule rec { inherit (nixosTests) mediamtx; }; - meta = with lib; { + meta = { description = "SRT, WebRTC, RTSP, RTMP, LL-HLS media server and media proxy"; inherit (src.meta) homepage; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "mediamtx"; - maintainers = with maintainers; [ fpletz ]; + maintainers = with lib.maintainers; [ fpletz ]; }; } diff --git a/pkgs/by-name/me/mediasynclite/package.nix b/pkgs/by-name/me/mediasynclite/package.nix index 2b532d229220d..adf67f1e30a11 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/medio/package.nix b/pkgs/by-name/me/medio/package.nix index efbce5c494a34..33d24fce60e0b 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,11 +34,11 @@ 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; [ leenaars 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 7b329f3c712ee..408a4fe99a8c0 100644 --- a/pkgs/by-name/me/medusa/package.nix +++ b/pkgs/by-name/me/medusa/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { libssh2 ]; - meta = with lib; { + meta = { homepage = "https://github.com/jmk-foofus/medusa"; description = "Speedy, parallel, and modular, login brute-forcer"; mainProgram = "medusa"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/by-name/me/meek/package.nix b/pkgs/by-name/me/meek/package.nix index 91e7acd5a6483..41729102c8d07 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 7a0973ff92af7..4b68dc06c7c20 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 642af48e90991..4da9b57037e06 100644 --- a/pkgs/by-name/me/megaglest/package.nix +++ b/pkgs/by-name/me/megaglest/package.nix @@ -151,11 +151,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 84b8953a05566..4ae33b34ddf14 100644 --- a/pkgs/by-name/me/megahit/package.nix +++ b/pkgs/by-name/me/megahit/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { cmakeFlags = lib.optionals stdenv.hostPlatform.isStatic [ "-DSTATIC_BUILD=ON" ]; - 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/megatools/package.nix b/pkgs/by-name/me/megatools/package.nix index 0f303363ca2f9..880e89654ebd4 100644 --- a/pkgs/by-name/me/megatools/package.nix +++ b/pkgs/by-name/me/megatools/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; strictDeps = true; - meta = with lib; { + meta = { description = "Command line client for Mega.co.nz"; homepage = "https://megatools.megous.com/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ viric ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ viric ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/me/mela/package.nix b/pkgs/by-name/me/mela/package.nix index 1bdaf081ac3ac..e28aae4d03b0a 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/melete/package.nix b/pkgs/by-name/me/melete/package.nix index 02465f9176258..5e8e1e5decb57 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 cdbce4957d98a..dba7506872d8d 100644 --- a/pkgs/by-name/me/meletrix-udev-rules/package.nix +++ b/pkgs/by-name/me/meletrix-udev-rules/package.nix @@ -15,10 +15,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/melody/package.nix b/pkgs/by-name/me/melody/package.nix index 6d77b73350e84..25edbae5963f3 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-UpKv7hLPdsitZGgIegy7ZGEQcxGHGIHj2H4Ac7mG+xY="; - 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/meme-bingo-web/package.nix b/pkgs/by-name/me/meme-bingo-web/package.nix index 7a8c7c945e6ff..884d0d893f38e 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 98a643d4754af..c38afd1f9eb72 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 82ca6c3400579..8a2aff252a87f 100644 --- a/pkgs/by-name/me/meme-suite/package.nix +++ b/pkgs/by-name/me/meme-suite/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { python3 ]; - meta = with lib; { + meta = { description = "Motif-based sequence analysis tools"; - 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 a750bc7f5aae1..d3053862135ba 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 ff8704515ffae..12bfe5d2ab993 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 rec { 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 rec { ''; # 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 e030646ce8b41..e7fbc2c739738 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/memtree/package.nix b/pkgs/by-name/me/memtree/package.nix index 7a6ed7a323af0..c35f98c693dc8 100644 --- a/pkgs/by-name/me/memtree/package.nix +++ b/pkgs/by-name/me/memtree/package.nix @@ -37,11 +37,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 dd5ea1063b03c..9641248880337 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 530d0f8f7ab6c..4842df22cbd1f 100644 --- a/pkgs/by-name/me/menulibre/package.nix +++ b/pkgs/by-name/me/menulibre/package.nix @@ -55,12 +55,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 d4b2cef88cbdd..996284f0dff02 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/merecat/package.nix b/pkgs/by-name/me/merecat/package.nix index 2a50a431bfb87..93f62fe0d0658 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 010e34bc23bb9..dd46138b13ca7 100644 --- a/pkgs/by-name/me/meritous/package.nix +++ b/pkgs/by-name/me/meritous/package.nix @@ -46,13 +46,13 @@ stdenv.mkDerivation (finalAttrs: { "fortify" ]; - 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 d34f0eb5b0b03..ca3f1ab9a9f80 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 8f1499eb2b807..e3b44a16d2c7a 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 a3c3066beb937..87f38e6b14d26 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 362d98b0bffab..4c85a8d58276a 100644 --- a/pkgs/by-name/me/mesa-demos/package.nix +++ b/pkgs/by-name/me/mesa-demos/package.nix @@ -63,10 +63,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 b611df378103d..ff629ba1b18fb 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.gpl3Only; + maintainers = lib.teams.minimal-bootstrap.members; 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 18562c71076b5..a7524deb9cc93 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.gpl3Only; + maintainers = lib.teams.minimal-bootstrap.members; inherit (m2libc.meta) platforms; }; }) diff --git a/pkgs/by-name/me/meshoptimizer/package.nix b/pkgs/by-name/me/meshoptimizer/package.nix index e50aa8eb85438..5812a1053f9fe 100644 --- a/pkgs/by-name/me/meshoptimizer/package.nix +++ b/pkgs/by-name/me/meshoptimizer/package.nix @@ -39,15 +39,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 7e6b554455ee0..d1800debe7718 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 rec { 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 0cba7cacf63a0..46e4725965632 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/metals/package.nix b/pkgs/by-name/me/metals/package.nix index 0eff21acb4214..ab8991c784b01 100644 --- a/pkgs/by-name/me/metals/package.nix +++ b/pkgs/by-name/me/metals/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { --add-flags "${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 884aa8ab48143..f38d658ed6373 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 6d997bc327cf0..c34ec30e50781 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 f4599e568112c..4530a3dce4f7b 100644 --- a/pkgs/by-name/me/metapixel/package.nix +++ b/pkgs/by-name/me/metapixel/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation rec { 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/metastore/package.nix b/pkgs/by-name/me/metastore/package.nix index 32d85ff6cc4ea..d2900010b0154 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/meteo/package.nix b/pkgs/by-name/me/meteo/package.nix index bc24c52e249d3..b78279948a686 100644 --- a/pkgs/by-name/me/meteo/package.nix +++ b/pkgs/by-name/me/meteo/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Know the forecast of the next hours & days"; homepage = "https://gitlab.com/bitseater/meteo"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ bobby285271 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ bobby285271 ]; + platforms = lib.platforms.linux; mainProgram = "com.gitlab.bitseater.meteo"; }; } diff --git a/pkgs/by-name/me/meterbridge/package.nix b/pkgs/by-name/me/meterbridge/package.nix index 3d285d4d8bc4e..475ae0eafff7b 100644 --- a/pkgs/by-name/me/meterbridge/package.nix +++ b/pkgs/by-name/me/meterbridge/package.nix @@ -29,12 +29,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 beeaeb4f5ebfb..820ce300b8313 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 a3062131c95fc..869ba4c2000f7 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; - maintainers = with maintainers; [ gebner ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gebner ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/me/metronome/package.nix b/pkgs/by-name/me/metronome/package.nix index 9c78def449318..152b93eb2bc89 100644 --- a/pkgs/by-name/me/metronome/package.nix +++ b/pkgs/by-name/me/metronome/package.nix @@ -61,7 +61,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 @@ -70,9 +70,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 f99e1b0ce3fb4..4b8b8de8a6c97 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-xkncfaqNfgPt5LEQ3JyYXHHq6slOUchomzqwkZCgCOM="; - 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/mfc465cnlpr/package.nix b/pkgs/by-name/mf/mfc465cnlpr/package.nix index 0a86b518db495..dc4841a2fb4ac 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/mfcj6510dw-cupswrapper/package.nix b/pkgs/by-name/mf/mfcj6510dw-cupswrapper/package.nix index eefc4294c4b76..92df006d0f79c 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 46b484e657875..9c8cc02c86cd6 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/mfcuk/package.nix b/pkgs/by-name/mf/mfcuk/package.nix index 8d10b3eb20acd..676d32e7bcb70 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 a753eec1c7abd..3a65f5af04806 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 fb94472150312..d207a97cf2060 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 a384846e7ec1c..f5fd0889b0afc 100644 --- a/pkgs/by-name/mf/mftrace/package.nix +++ b/pkgs/by-name/mf/mftrace/package.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation (finalAttrs: rec { 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: rec { 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 b88c01f605ae8..778bfe86b032b 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/mg/mgmt/package.nix b/pkgs/by-name/mg/mgmt/package.nix index c574e8f2dd618..80528542f03b5 100644 --- a/pkgs/by-name/mg/mgmt/package.nix +++ b/pkgs/by-name/mg/mgmt/package.nix @@ -58,11 +58,11 @@ buildGoModule rec { vendorHash = "sha256-Dtqy4TILN+7JXiHKHDdjzRTsT8jZYG5sPudxhd8znXY="; - meta = with lib; { + meta = { description = "Next generation distributed, event-driven, parallel config management!"; homepage = "https://mgmtconfig.com"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ urandom ]; mainProgram = "mgmt"; }; } diff --git a/pkgs/by-name/mi/mi2ly/package.nix b/pkgs/by-name/mi/mi2ly/package.nix index 56fb4f5b3a877..38f7d67144047 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 8a47f8eff38ee..bf0e853a4ac89 100644 --- a/pkgs/by-name/mi/micro-httpd/package.nix +++ b/pkgs/by-name/mi/micro-httpd/package.nix @@ -19,12 +19,12 @@ 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; - maintainers = with maintainers; [ copumpkin ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ copumpkin ]; mainProgram = "micro_httpd"; }; } diff --git a/pkgs/by-name/mi/microcode-amd/package.nix b/pkgs/by-name/mi/microcode-amd/package.nix index 44399fdb7ca8f..892b27ab49a7a 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/microcom/package.nix b/pkgs/by-name/mi/microcom/package.nix index 8ed6d286b2fad..c094f76cb93a5 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/micromamba/package.nix b/pkgs/by-name/mi/micromamba/package.nix index fa003a4397634..fbc0fc1a3562f 100644 --- a/pkgs/by-name/mi/micromamba/package.nix +++ b/pkgs/by-name/mi/micromamba/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation rec { # "-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON" ]; - meta = with lib; { + meta = { description = "Reimplementation of the conda package manager"; homepage = "https://github.com/mamba-org/mamba"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ mausch ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mausch ]; mainProgram = "micromamba"; }; } diff --git a/pkgs/by-name/mi/micronaut/package.nix b/pkgs/by-name/mi/micronaut/package.nix index 74392e4a4db2e..afc3e8c299691 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/micronucleus/package.nix b/pkgs/by-name/mi/micronucleus/package.nix index 51369ef5a7043..8b2a79eb789de 100644 --- a/pkgs/by-name/mi/micronucleus/package.nix +++ b/pkgs/by-name/mi/micronucleus/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { cp 49-micronucleus.rules $out/lib/udev ''; - meta = with lib; { + meta = { description = "Upload tool for micronucleus"; mainProgram = "micronucleus"; homepage = "https://github.com/micronucleus/micronucleus"; - license = licenses.gpl3; - maintainers = [ maintainers.cab404 ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.cab404 ]; }; } diff --git a/pkgs/by-name/mi/microplane/package.nix b/pkgs/by-name/mi/microplane/package.nix index fcae4cf42b71d..d782c2cc02453 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 fb75f70d01c8a..ba01f87ac2fb6 100644 --- a/pkgs/by-name/mi/micropython/package.nix +++ b/pkgs/by-name/mi/micropython/package.nix @@ -76,12 +76,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 8c78419044384..30edec06a7a36 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 bc2c3d5b17081..b10eab58aef3d 100644 --- a/pkgs/by-name/mi/microserver/package.nix +++ b/pkgs/by-name/mi/microserver/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { with darwin.apple_sdk.frameworks; [ Security ] ); - 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 1ababa6047a5f..561bb721698dd 100644 --- a/pkgs/by-name/mi/microsoft-gsl/package.nix +++ b/pkgs/by-name/mi/microsoft-gsl/package.nix @@ -39,7 +39,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 @@ -47,9 +47,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 b8d1112eee2d7..19601f97a5d16 100644 --- a/pkgs/by-name/mi/mictray/package.nix +++ b/pkgs/by-name/mi/mictray/package.nix @@ -41,15 +41,15 @@ stdenv.mkDerivation rec { 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 d1e3fb1c2b722..e58cf4fdb697e 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 c05218a923bd1..8ae0f33aa1560 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 5712040004b7a..544c4f9218ecf 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; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.all; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/mi/midimonster/package.nix b/pkgs/by-name/mi/midimonster/package.nix index dc92d792535ab..022d55518f7c1 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/midisheetmusic/package.nix b/pkgs/by-name/mi/midisheetmusic/package.nix index 211e012b7e8a2..fbac77eec9963 100644 --- a/pkgs/by-name/mi/midisheetmusic/package.nix +++ b/pkgs/by-name/mi/midisheetmusic/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation { --add-flags $out/bin/.MidiSheetMusic.exe ''; - meta = with lib; { + meta = { description = "Convert MIDI Files to Piano Sheet Music for two hands"; mainProgram = "midisheetmusic.mono.exe"; homepage = "http://midisheetmusic.com"; - license = licenses.gpl2; + license = lib.licenses.gpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mi/midori-unwrapped/package.nix b/pkgs/by-name/mi/midori-unwrapped/package.nix index 70f3d294493dd..4dcf19c1c5b26 100644 --- a/pkgs/by-name/mi/midori-unwrapped/package.nix +++ b/pkgs/by-name/mi/midori-unwrapped/package.nix @@ -55,13 +55,13 @@ stdenv.mkDerivation rec { inherit gtk3; }; - meta = with lib; { + meta = { description = "Lightweight WebKitGTK web browser"; mainProgram = "midori"; homepage = "https://www.midori-browser.org/"; - license = with licenses; [ lgpl21Plus ]; - platforms = with platforms; linux; - maintainers = with maintainers; [ + license = with lib.licenses; [ lgpl21Plus ]; + platforms = with lib.platforms; linux; + maintainers = with lib.maintainers; [ raskin ramkromberg ]; diff --git a/pkgs/by-name/mi/migmix/package.nix b/pkgs/by-name/mi/migmix/package.nix index 7e7bbbcccedfd..0f7a7a1135c4a 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/migra/package.nix b/pkgs/by-name/mi/migra/package.nix index f911232a55d79..21d617ade2fd7 100644 --- a/pkgs/by-name/mi/migra/package.nix +++ b/pkgs/by-name/mi/migra/package.nix @@ -50,10 +50,10 @@ python3.pkgs.buildPythonApplication rec { "tests" ]; - meta = with lib; { + meta = { description = "Like diff but for PostgreSQL schemas"; homepage = "https://github.com/djrobstep/migra"; - license = with licenses; [ unlicense ]; - maintainers = with maintainers; [ soispha ]; + license = with lib.licenses; [ unlicense ]; + maintainers = with lib.maintainers; [ soispha ]; }; } diff --git a/pkgs/by-name/mi/migrate/package.nix b/pkgs/by-name/mi/migrate/package.nix index aceb010875d74..028a123a6f987 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 0476bd0729877..97da8af6e0cbd 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 c6a314d2027b0..81d96cc2c0ff6 100644 --- a/pkgs/by-name/mi/mihomo/package.nix +++ b/pkgs/by-name/mi/mihomo/package.nix @@ -37,11 +37,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/mill/package.nix b/pkgs/by-name/mi/mill/package.nix index 7db92e52beeb7..82c06d3e50ae2 100644 --- a/pkgs/by-name/mi/mill/package.nix +++ b/pkgs/by-name/mi/mill/package.nix @@ -41,9 +41,9 @@ stdenv.mkDerivation (finalAttrs: { $out/bin/mill --help > /dev/null ''; - meta = with lib; { + meta = { homepage = "https://com-lihaoyi.github.io/mill/"; - license = licenses.mit; + license = lib.licenses.mit; description = "Build tool for Scala, Java and more"; mainProgram = "mill"; longDescription = '' @@ -53,7 +53,7 @@ stdenv.mkDerivation (finalAttrs: { SBT, but can also be extended to support any other language or platform via modules (written in Java or Scala) or through an external subprocesses. ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ scalavision zenithal ]; diff --git a/pkgs/by-name/mi/miller/package.nix b/pkgs/by-name/mi/miller/package.nix index 9c25679064536..06d249dfe9b44 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 3abe2766458f2..c2dae20ba7635 100644 --- a/pkgs/by-name/mi/millipixels/package.nix +++ b/pkgs/by-name/mi/millipixels/package.nix @@ -74,11 +74,11 @@ stdenv.mkDerivation rec { } ''; - 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 7a92d86dca137..e7e8b1e98c232 100644 --- a/pkgs/by-name/mi/mimalloc/package.nix +++ b/pkgs/by-name/mi/mimalloc/package.nix @@ -65,12 +65,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 444203ba89014..eec170b7af8b0 100644 --- a/pkgs/by-name/mi/mimeo/package.nix +++ b/pkgs/by-name/mi/mimeo/package.nix @@ -40,12 +40,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 38a843b809e51..a322d985df8d7 100644 --- a/pkgs/by-name/mi/mimetic/package.nix +++ b/pkgs/by-name/mi/mimetic/package.nix @@ -25,11 +25,11 @@ 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; - maintainers = with maintainers; [ leenaars ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ leenaars ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mi/mimir/package.nix b/pkgs/by-name/mi/mimir/package.nix index fbaad66f3da03..a41789baf0d2e 100644 --- a/pkgs/by-name/mi/mimir/package.nix +++ b/pkgs/by-name/mi/mimir/package.nix @@ -59,11 +59,11 @@ buildGoModule rec { "-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"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ happysalada bryanhonof adamcstephens diff --git a/pkgs/by-name/mi/minecraft-server-hibernation/package.nix b/pkgs/by-name/mi/minecraft-server-hibernation/package.nix index e5279d2e3bf2b..7441848fd6154 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 811b99c51045c..9e4d4df5a96ae 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 f4c2974862c91..221efdefc1c46 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-VjIn4k/OuxsXLJ2LOk43LKHo0PrPyMigNOO2VVYZQYw="; - 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 261fcf6cbffff..a25990fdf646b 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 1e76f8a621275..592b8357e1335 100644 --- a/pkgs/by-name/mi/minia/package.nix +++ b/pkgs/by-name/mi/minia/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { rm -rf thirdparty/gatb-core/gatb-core/thirdparty/{hdf5,boost} ''; - 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/miniflux/package.nix b/pkgs/by-name/mi/miniflux/package.nix index 1eb421f1ad5ff..d8fc9ff145323 100644 --- a/pkgs/by-name/mi/miniflux/package.nix +++ b/pkgs/by-name/mi/miniflux/package.nix @@ -40,11 +40,11 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Minimalist and opinionated feed reader"; 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/minilibx/package.nix b/pkgs/by-name/mi/minilibx/package.nix index 01d50ffe3b59b..f237ae7c38faf 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 630fb70febf32..501c18c2ab8ff 100644 --- a/pkgs/by-name/mi/minimap2/package.nix +++ b/pkgs/by-name/mi/minimap2/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { cp minimap2.1 $out/share/man/man1 ''; - meta = with lib; { + meta = { description = "Versatile pairwise aligner for genomic and spliced nucleotide sequences"; mainProgram = "minimap2"; homepage = "https://lh3.github.io/minimap2"; - license = licenses.mit; - platforms = platforms.all; - maintainers = [ maintainers.arcadio ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.arcadio ]; }; } diff --git a/pkgs/by-name/mi/mininet/package.nix b/pkgs/by-name/mi/mininet/package.nix index 8980443d16b07..3903c12dad595 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 3ab53dbac9adf..a2e68d340b657 100644 --- a/pkgs/by-name/mi/minio-certgen/package.nix +++ b/pkgs/by-name/mi/minio-certgen/package.nix @@ -17,11 +17,11 @@ 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; - maintainers = with maintainers; [ bryanasdev000 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bryanasdev000 ]; mainProgram = "certgen"; }; } diff --git a/pkgs/by-name/mi/minio-client/package.nix b/pkgs/by-name/mi/minio-client/package.nix index 4da88715a1401..a4afff9864411 100644 --- a/pkgs/by-name/mi/minio-client/package.nix +++ b/pkgs/by-name/mi/minio-client/package.nix @@ -33,11 +33,11 @@ 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; [ bachp ]; + maintainers = with lib.maintainers; [ bachp ]; 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 abb54413638ad..a2de84801ff6b 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; - maintainers = with maintainers; [ azahi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ azahi ]; }; } diff --git a/pkgs/by-name/mi/minipro/package.nix b/pkgs/by-name/mi/minipro/package.nix index b48a4033690fb..488722a1dbc6e 100644 --- a/pkgs/by-name/mi/minipro/package.nix +++ b/pkgs/by-name/mi/minipro/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { "CFLAGS=-O2" ]; - 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 67f66159c19a1..cf1958daab37c 100644 --- a/pkgs/by-name/mi/minisat/package.nix +++ b/pkgs/by-name/mi/minisat/package.nix @@ -20,14 +20,14 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; buildInputs = [ zlib ]; - meta = with lib; { + meta = { description = "Compact and readable SAT solver"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ gebner 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 5ca244c128b37..69213b0b50425 100644 --- a/pkgs/by-name/mi/miniscript/package.nix +++ b/pkgs/by-name/mi/miniscript/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { 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 8a5eeca9974e0..4aa0d3032a6ff 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 9b11452bdc810..f356a6ebe867c 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 1933def73d62a..c416e33459b86 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/miniupnpc/package.nix b/pkgs/by-name/mi/miniupnpc/package.nix index 378bab7451663..ca02c88f5b842 100644 --- a/pkgs/by-name/mi/miniupnpc/package.nix +++ b/pkgs/by-name/mi/miniupnpc/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { inherit (nixosTests) upnp; }; - meta = with lib; { + meta = { homepage = "https://miniupnp.tuxfamily.org/"; description = "Client that implements the UPnP Internet Gateway Device (IGD) specification"; - platforms = with platforms; linux ++ freebsd ++ darwin; - license = licenses.bsd3; + platforms = with lib.platforms; linux ++ freebsd ++ darwin; + license = lib.licenses.bsd3; mainProgram = "upnpc"; }; } diff --git a/pkgs/by-name/mi/minixml/package.nix b/pkgs/by-name/mi/minixml/package.nix index d978973e7e93a..aba92f7242e41 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 c47b49755916f..aa1dcb753655c 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 6333665f09ddf..8364d4dd35abe 100644 --- a/pkgs/by-name/mi/minizip-ng/package.nix +++ b/pkgs/by-name/mi/minizip-ng/package.nix @@ -64,14 +64,14 @@ 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; [ gebner 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 61e5f7f005d79..1833a99f58b4c 100644 --- a/pkgs/by-name/mi/mint-artwork/package.nix +++ b/pkgs/by-name/mi/mint-artwork/package.nix @@ -39,14 +39,14 @@ stdenv.mkDerivation rec { mv usr/share $out/share ''; - 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; - maintainers = teams.cinnamon.members; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/mi/mint-cursor-themes/package.nix b/pkgs/by-name/mi/mint-cursor-themes/package.nix index 13a908db5170a..225a3b2abd57d 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 rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/mint-cursor-themes/"; description = "Linux Mint cursor themes"; - license = licenses.gpl3Plus; - maintainers = teams.cinnamon.members; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.cinnamon.members; + 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 63692168c2622..8b61df530b1aa 100644 --- a/pkgs/by-name/mi/mint-l-icons/package.nix +++ b/pkgs/by-name/mi/mint-l-icons/package.nix @@ -45,11 +45,11 @@ stdenvNoCC.mkDerivation rec { 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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl3Plus; # from debian/copyright + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/mi/mint-l-theme/package.nix b/pkgs/by-name/mi/mint-l-theme/package.nix index 206d24d91c4c0..5dd6f88b3b3af 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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl3Plus; # from debian/copyright + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/mi/mint-themes/package.nix b/pkgs/by-name/mi/mint-themes/package.nix index aed781c778a8f..6b96997ea733e 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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl3; # from debian/copyright + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/mi/mint-x-icons/package.nix b/pkgs/by-name/mi/mint-x-icons/package.nix index b6a63d8387fd6..58b20c9ef83a7 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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl3Plus; # from debian/copyright + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/mi/mint-y-icons/package.nix b/pkgs/by-name/mi/mint-y-icons/package.nix index a92d6543e6bd8..5e59bb4e964d9 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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl3; # from debian/copyright + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/mi/miraclecast/package.nix b/pkgs/by-name/mi/miraclecast/package.nix index 74a3aff23ecbe..b52b3902b8c5a 100644 --- a/pkgs/by-name/mi/miraclecast/package.nix +++ b/pkgs/by-name/mi/miraclecast/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation { "-Dip-binary=${iproute2}/bin/ip" ]; - meta = with lib; { + meta = { description = "Connect external monitors via Wi-Fi"; homepage = "https://github.com/albfan/miraclecast"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mi/miracode/package.nix b/pkgs/by-name/mi/miracode/package.nix index 0bc5cb3bd05d7..30acf8dcdecc2 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 c01ea18ba8c6f..f0ecf164fec2c 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 be51e320f2264..13c29cf1160e4 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 2ac01fede0eca..fbfaa82629ce0 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/mirrorbits/package.nix b/pkgs/by-name/mi/mirrorbits/package.nix index a5d8bc041b7f8..13506454657a9 100644 --- a/pkgs/by-name/mi/mirrorbits/package.nix +++ b/pkgs/by-name/mi/mirrorbits/package.nix @@ -42,7 +42,7 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "geographical download redirector for distributing files efficiently across a set of mirrors"; homepage = "https://github.com/etix/mirrorbits"; longDescription = '' @@ -53,8 +53,8 @@ buildGoModule rec { the distribution of large-scale Open-Source projects with a lot of traffic. ''; - license = licenses.mit; - maintainers = with maintainers; [ fpletz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fpletz ]; mainProgram = "mirrorbits"; }; } diff --git a/pkgs/by-name/mi/misc-gitology/package.nix b/pkgs/by-name/mi/misc-gitology/package.nix index a8d633d4874fe..2b6c9f735544b 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 21d538cb0b79f..5d585e3a28400 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 a99950d39541c..1349d36d3ff6b 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 626f499f9e156..2a37c22612727 100644 --- a/pkgs/by-name/mi/mission-planner/package.nix +++ b/pkgs/by-name/mi/mission-planner/package.nix @@ -63,7 +63,7 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "ArduPilot ground station"; mainProgram = "mission-planner"; longDescription = '' @@ -72,8 +72,8 @@ stdenv.mkDerivation rec { Plane, Copter and Rover targets. ''; homepage = "https://ardupilot.org/planner/"; - 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/mj/mjpegtools/package.nix b/pkgs/by-name/mj/mjpegtools/package.nix index 741a06ee88d55..659a17c411efe 100644 --- a/pkgs/by-name/mj/mjpegtools/package.nix +++ b/pkgs/by-name/mj/mjpegtools/package.nix @@ -66,11 +66,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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/mj/mjpg-streamer/package.nix b/pkgs/by-name/mj/mjpg-streamer/package.nix index 58af533b24501..1d095d7ad7130 100644 --- a/pkgs/by-name/mj/mjpg-streamer/package.nix +++ b/pkgs/by-name/mj/mjpg-streamer/package.nix @@ -28,12 +28,12 @@ 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; - maintainers = with maintainers; [ gebner ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ gebner ]; mainProgram = "mjpg_streamer"; }; } diff --git a/pkgs/by-name/mk/mkbootimage/package.nix b/pkgs/by-name/mk/mkbootimage/package.nix index 91a70173ae050..1d3fa82b4c9fb 100644 --- a/pkgs/by-name/mk/mkbootimage/package.nix +++ b/pkgs/by-name/mk/mkbootimage/package.nix @@ -38,12 +38,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 b918cb4da0fd0..82be74865edc4 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/mkclean/package.nix b/pkgs/by-name/mk/mkclean/package.nix index 14eee4aa21e6d..db7c0429d8bb6 100644 --- a/pkgs/by-name/mk/mkclean/package.nix +++ b/pkgs/by-name/mk/mkclean/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { mv release/gcc_linux_*/* $out/bin ''; - meta = with lib; { + meta = { description = "Command line tool to clean and optimize Matroska (.mkv / .mka / .mks / .mk3d) and WebM (.webm / .weba) files that have already been muxed"; homepage = "https://www.matroska.org"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ cawilliamson ]; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ cawilliamson ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/mk/mkcue/package.nix b/pkgs/by-name/mk/mkcue/package.nix index d0e2baacf519a..daba3ee1f99cb 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 f073053536ebf..350e8c934ec16 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/mk/mkp224o/package.nix b/pkgs/by-name/mk/mkp224o/package.nix index b6d12752d9ad2..6fcf3bb362dbf 100644 --- a/pkgs/by-name/mk/mkp224o/package.nix +++ b/pkgs/by-name/mk/mkp224o/package.nix @@ -64,11 +64,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 4b644672dd8e2..44ed887af8be5 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 4edbb1acab46f..c39f2cb476ac3 100644 --- a/pkgs/by-name/mk/mktorrent/package.nix +++ b/pkgs/by-name/mk/mktorrent/package.nix @@ -29,15 +29,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 e80d7a5d35af7..d88e63ca371c2 100644 --- a/pkgs/by-name/ml/mlarchive2maildir/package.nix +++ b/pkgs/by-name/ml/mlarchive2maildir/package.nix @@ -23,11 +23,11 @@ python3.pkgs.buildPythonApplication rec { six ]; - 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/mle/package.nix b/pkgs/by-name/ml/mle/package.nix index c11fc690e55b4..203ef415a42c9 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/mlmmj/package.nix b/pkgs/by-name/ml/mlmmj/package.nix index f49a58338cbca..33793cf046824 100644 --- a/pkgs/by-name/ml/mlmmj/package.nix +++ b/pkgs/by-name/ml/mlmmj/package.nix @@ -38,11 +38,11 @@ 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"; - maintainers = [ maintainers.edwtjo ]; - platforms = platforms.linux; - license = licenses.mit; + maintainers = [ lib.maintainers.edwtjo ]; + 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 6691d11440fa6..4b25ad9d7cd57 100644 --- a/pkgs/by-name/ml/mloader/package.nix +++ b/pkgs/by-name/ml/mloader/package.nix @@ -30,10 +30,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/mlocate/package.nix b/pkgs/by-name/ml/mlocate/package.nix index 3a3bd207764f9..a45158f5a366c 100644 --- a/pkgs/by-name/ml/mlocate/package.nix +++ b/pkgs/by-name/ml/mlocate/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { "dbfile=/var/cache/locatedb" ]; - meta = with lib; { + meta = { description = "Merging locate is an utility to index and quickly search for files"; homepage = "https://pagure.io/mlocate"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ml/mlvwm/package.nix b/pkgs/by-name/ml/mlvwm/package.nix index 37224e21ccf3f..3f55d0bb31e18 100644 --- a/pkgs/by-name/ml/mlvwm/package.nix +++ b/pkgs/by-name/ml/mlvwm/package.nix @@ -52,10 +52,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 @@ -64,8 +64,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 46e87a88d32b5..e50beabfaa8a0 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 e4d2b8b254397..f21484bbdc9f7 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; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mm/mm/package.nix b/pkgs/by-name/mm/mm/package.nix index 95e4d00a2e56e..8a52bd0e7cee1 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 c882a4d027dd2..38cf41700fd59 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 7e197e6bbda55..21da9f29bd47c 100644 --- a/pkgs/by-name/mm/mmc-utils/package.nix +++ b/pkgs/by-name/mm/mmc-utils/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation { url = "https://git.kernel.org/pub/scm/utils/mmc/mmc-utils.git"; }; - 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 ca10843f3095c..d28f84d10f020 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/mmg/package.nix b/pkgs/by-name/mm/mmg/package.nix index f9587f9670f51..4c0f9c0c3f200 100644 --- a/pkgs/by-name/mm/mmg/package.nix +++ b/pkgs/by-name/mm/mmg/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { "-DMMG_INSTALL_PRIVATE_HEADERS=ON" ]; - meta = with lib; { + meta = { description = "Open source software for bidimensional and tridimensional remeshing"; homepage = "http://www.mmgtools.org/"; - platforms = platforms.unix; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ mkez ]; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ mkez ]; }; } diff --git a/pkgs/by-name/mm/mmh/package.nix b/pkgs/by-name/mm/mmh/package.nix index 81a34a381ef03..b26bf93447805 100644 --- a/pkgs/by-name/mm/mmh/package.nix +++ b/pkgs/by-name/mm/mmh/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { flex ]; - meta = with lib; { + meta = { description = "Set of electronic mail handling programs"; homepage = "http://marmaro.de/prog/mmh"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; - maintainers = with maintainers; [ kaction ]; + maintainers = with lib.maintainers; [ kaction ]; }; } diff --git a/pkgs/by-name/mm/mmixware/package.nix b/pkgs/by-name/mm/mmixware/package.nix index 3349f3fbc02a6..d07450a57acb4 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/mmsd/package.nix b/pkgs/by-name/mm/mmsd/package.nix index fe594fa662038..b3fb066de9d20 100644 --- a/pkgs/by-name/mm/mmsd/package.nix +++ b/pkgs/by-name/mm/mmsd/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Multimedia Messaging Service Daemon"; homepage = "https://01.org/ofono"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mm/mmseqs2/package.nix b/pkgs/by-name/mm/mmseqs2/package.nix index f54142213e11b..5f3763495fe90 100644 --- a/pkgs/by-name/mm/mmseqs2/package.nix +++ b/pkgs/by-name/mm/mmseqs2/package.nix @@ -85,12 +85,12 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "Ultra fast and sensitive sequence search and clustering suite"; mainProgram = "mmseqs"; homepage = "https://mmseqs.com/"; - 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/mm/mmtf-cpp/package.nix b/pkgs/by-name/mm/mmtf-cpp/package.nix index 99f2287a20f26..becb63750fd17 100644 --- a/pkgs/by-name/mm/mmtf-cpp/package.nix +++ b/pkgs/by-name/mm/mmtf-cpp/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ msgpack ]; - 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/mmutils/package.nix b/pkgs/by-name/mm/mmutils/package.nix index 7b410dc72e179..c870971c9461f 100644 --- a/pkgs/by-name/mm/mmutils/package.nix +++ b/pkgs/by-name/mm/mmutils/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Set of utilities for querying xrandr monitor information"; homepage = "https://github.com/pockata/mmutils"; - license = licenses.isc; - platforms = platforms.unix; + license = lib.licenses.isc; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mm/mmv-go/package.nix b/pkgs/by-name/mm/mmv-go/package.nix index fdc05fdbd68c8..37b30dff9046c 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/mnc/package.nix b/pkgs/by-name/mn/mnc/package.nix index 8186682ad96a5..f0c1a50283260 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 bf8859933505e..8fae8208c6fb3 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/mni_autoreg/package.nix b/pkgs/by-name/mn/mni_autoreg/package.nix index 10bb56265f57e..3cc7b78b5f422 100644 --- a/pkgs/by-name/mn/mni_autoreg/package.nix +++ b/pkgs/by-name/mn/mni_autoreg/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://github.com/BIC-MNI/mni_autoreg"; description = "Tools for automated registration using the MINC image format"; - 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/mn/mnist/package.nix b/pkgs/by-name/mn/mnist/package.nix index 5a54f6403c6a6..a7e60a918548b 100644 --- a/pkgs/by-name/mn/mnist/package.nix +++ b/pkgs/by-name/mn/mnist/package.nix @@ -34,7 +34,7 @@ stdenvNoCC.mkDerivation rec { 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 rec { 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 8d4b6d036eea3..3ae015b32a5e3 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 8794800e5662e..040615af77797 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 789baeb400d1e..1cb8096783c27 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 1fba3f5a3f172..52df3afb62c71 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/mod-arpeggiator-lv2/package.nix b/pkgs/by-name/mo/mod-arpeggiator-lv2/package.nix index 934175349420a..e385d44cda40e 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 rec { 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 804dfe60befb8..73592f1627043 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/modd/package.nix b/pkgs/by-name/mo/modd/package.nix index 28c631528d7b6..e1d466896c1b3 100644 --- a/pkgs/by-name/mo/modd/package.nix +++ b/pkgs/by-name/mo/modd/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-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; - maintainers = with maintainers; [ ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/by-name/mo/modem-manager-gui/package.nix b/pkgs/by-name/mo/modem-manager-gui/package.nix index 9e34201035632..bece7293f5ed2 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 0840191e498f5..8960b79f6175f 100644 --- a/pkgs/by-name/mo/modemmanager/package.nix +++ b/pkgs/by-name/mo/modemmanager/package.nix @@ -127,11 +127,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; - maintainers = teams.freedesktop.members; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.freedesktop.members; + 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 3a73192a3ad44..104b71510da9a 100644 --- a/pkgs/by-name/mo/modern-cpp-kafka/package.nix +++ b/pkgs/by-name/mo/modern-cpp-kafka/package.nix @@ -66,11 +66,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/mods/package.nix b/pkgs/by-name/mo/mods/package.nix index b00f4f552865b..6a478fab24ab3 100644 --- a/pkgs/by-name/mo/mods/package.nix +++ b/pkgs/by-name/mo/mods/package.nix @@ -57,11 +57,11 @@ buildGoModule rec { installShellCompletion mods.{bash,fish,zsh} ''; - meta = with lib; { + meta = { description = "AI on the command line"; homepage = "https://github.com/charmbracelet/mods"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya caarlos0 ]; diff --git a/pkgs/by-name/mo/modsecurity-crs/package.nix b/pkgs/by-name/mo/modsecurity-crs/package.nix index f95bb592e4599..13339cc6c4983 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/modsecurity_standalone/package.nix b/pkgs/by-name/mo/modsecurity_standalone/package.nix index 599d7e1195b02..970f76d2ebf1d 100644 --- a/pkgs/by-name/mo/modsecurity_standalone/package.nix +++ b/pkgs/by-name/mo/modsecurity_standalone/package.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation rec { cp -R * $nginx ''; - meta = with lib; { + meta = { description = "Open source, cross-platform web application firewall (WAF)"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/owasp-modsecurity/ModSecurity"; - maintainers = with maintainers; [ offline ]; + maintainers = with lib.maintainers; [ offline ]; platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/mo/moka-icon-theme/package.nix b/pkgs/by-name/mo/moka-icon-theme/package.nix index 9b03e14793387..085e0f3739062 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 rec { 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 c5dee7a093271..ab7a6aebfcb59 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 7ca292390b954..12959c85825a3 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 0665e0951c1b8..bb3146a705880 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 642d873f9c15a..23dc38b14b613 100644 --- a/pkgs/by-name/mo/molly-brown/package.nix +++ b/pkgs/by-name/mo/molly-brown/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { 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"; - maintainers = with maintainers; [ ehmry ]; - license = licenses.bsd2; + maintainers = with lib.maintainers; [ ehmry ]; + 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 e7feab9566e65..91e4516174a02 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 20688d604de89..d3bf0649c160a 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 2ab6c0769b8e9..de2b399b7630b 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; [ + license = with lib.licenses; [ unfree ]; + maintainers = with lib.maintainers; [ apeyroux freezeboy ]; diff --git a/pkgs/by-name/mo/moltengamepad/package.nix b/pkgs/by-name/mo/moltengamepad/package.nix index e71f746085b31..7180699467ebc 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 820a07d5d9b2d..d64763da58bf6 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/mongoaudit/package.nix b/pkgs/by-name/mo/mongoaudit/package.nix index 931e6f5d1ea74..535213f80a9b9 100644 --- a/pkgs/by-name/mo/mongoaudit/package.nix +++ b/pkgs/by-name/mo/mongoaudit/package.nix @@ -31,11 +31,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/mongoose/package.nix b/pkgs/by-name/mo/mongoose/package.nix index 7e1068164b56c..95c5ec5a28d40 100644 --- a/pkgs/by-name/mo/mongoose/package.nix +++ b/pkgs/by-name/mo/mongoose/package.nix @@ -66,12 +66,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 92932d8e059ac..78023799a0566 100644 --- a/pkgs/by-name/mo/monitorcontrol/package.nix +++ b/pkgs/by-name/mo/monitorcontrol/package.nix @@ -27,15 +27,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 95abd51614f7a..61eea82b5c80e 100644 --- a/pkgs/by-name/mo/monitoring-plugins/package.nix +++ b/pkgs/by-name/mo/monitoring-plugins/package.nix @@ -98,14 +98,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 bbffcba5c745f..9fefdc7edecba 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/mono-addins/package.nix b/pkgs/by-name/mo/mono-addins/package.nix index e20614c683ecc..629fa87c5ec5f 100644 --- a/pkgs/by-name/mo/mono-addins/package.nix +++ b/pkgs/by-name/mo/mono-addins/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { dontStrip = true; - meta = with lib; { + meta = { homepage = "https://www.mono-project.com/archived/monoaddins/"; description = "Generic framework for creating extensible applications"; mainProgram = "mautil"; @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { Mono.Addins is a generic framework for creating extensible applications, and for creating libraries which extend those applications. ''; - platforms = platforms.linux; - license = licenses.mit; + platforms = lib.platforms.linux; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/mo/monocraft/package.nix b/pkgs/by-name/mo/monocraft/package.nix index 85ff3d02f53b5..78876b6a546c0 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 f7e4eb9ff568c..80446b3035e9a 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/mononoki/package.nix b/pkgs/by-name/mo/mononoki/package.nix index 5b8b33144e2f3..d528cb79b2f7b 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/monophony/package.nix b/pkgs/by-name/mo/monophony/package.nix index 2b13dd852402a..8fb687850c0ef 100644 --- a/pkgs/by-name/mo/monophony/package.nix +++ b/pkgs/by-name/mo/monophony/package.nix @@ -68,13 +68,13 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://gitlab.com/zehkira/monophony"; description = "Linux app for streaming music from YouTube"; longDescription = "Monophony is a free and open source Linux app for streaming music from YouTube. It has no ads and does not require an account."; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; mainProgram = "monophony"; - platforms = platforms.linux; - maintainers = with maintainers; [ quadradical ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ quadradical ]; }; } diff --git a/pkgs/by-name/mo/mons/package.nix b/pkgs/by-name/mo/mons/package.nix index 8be9b38aa2d2a..a79fd72786cb1 100644 --- a/pkgs/by-name/mo/mons/package.nix +++ b/pkgs/by-name/mo/mons/package.nix @@ -89,12 +89,12 @@ resholve.mkDerivation rec { "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 cdd11322f13ef..611f00c29005d 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/moon-phases/package.nix b/pkgs/by-name/mo/moon-phases/package.nix index 77cd0a73af7c3..fa9b0dda4e9ab 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-5JKM+GnigkpuX4qeGQAjDz/X48ZxXtCfYVwGco13YRM="; - 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 2083386440968..1d736f3ec7c24 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/moonraker/package.nix b/pkgs/by-name/mo/moonraker/package.nix index 7e4f3bd45acb7..b6f0bf6620eb4 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 245abeac0f5db..25b353d5f3ad4 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 903b178869d6e..3e475305be9c0 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 354f230ba6b2b..bb5188d48b894 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/morewaita-icon-theme/package.nix b/pkgs/by-name/mo/morewaita-icon-theme/package.nix index 47c0fb73fbd40..94c75d10e6ed1 100644 --- a/pkgs/by-name/mo/morewaita-icon-theme/package.nix +++ b/pkgs/by-name/mo/morewaita-icon-theme/package.nix @@ -31,11 +31,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Adwaita style extra icons theme for Gnome Shell"; homepage = "https://github.com/somepaulo/MoreWaita"; - license = with licenses; [ gpl3Only ]; - platforms = platforms.linux; - maintainers = with maintainers; [ pkosel ]; + license = with lib.licenses; [ gpl3Only ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pkosel ]; }; } diff --git a/pkgs/by-name/mo/morph/package.nix b/pkgs/by-name/mo/morph/package.nix index 4e3d9b410c73a..d1b54913cc2fd 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 b4b02d686d5ba..cae9ad3cea8ef 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-XRl71n+rV6MTQMz957K5/25SX9HvYVW6qAuHTdfRLLs="; - 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/mosdepth/package.nix b/pkgs/by-name/mo/mosdepth/package.nix index ab3a5dfab336d..4a39522397211 100644 --- a/pkgs/by-name/mo/mosdepth/package.nix +++ b/pkgs/by-name/mo/mosdepth/package.nix @@ -29,12 +29,12 @@ buildNimPackage (finalAttrs: { }; }; - 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; [ jbedo ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ jbedo ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/mo/moserial/package.nix b/pkgs/by-name/mo/moserial/package.nix index 7fa80d3ce9f4c..14e1605bbd144 100644 --- a/pkgs/by-name/mo/moserial/package.nix +++ b/pkgs/by-name/mo/moserial/package.nix @@ -47,12 +47,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/mosml/package.nix b/pkgs/by-name/mo/mosml/package.nix index 2bd5a6b1c0a0c..8ae2488cef003 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 f7d31d4a24c6d..b1f38ffc1fa8c 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/motion/package.nix b/pkgs/by-name/mo/motion/package.nix index 627596911c9b1..e85cf2a9a07f1 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/mountain-duck/package.nix b/pkgs/by-name/mo/mountain-duck/package.nix index c2ab2ae707ff2..71f9ca43d54f4 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 09021f7662645..982d5bc14ee70 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 5bbee8e4ac020..e66f09f8c9562 100644 --- a/pkgs/by-name/mo/mousai/package.nix +++ b/pkgs/by-name/mo/mousai/package.nix @@ -68,12 +68,12 @@ 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 ] ++ lib.teams.gnome-circle.members; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ] ++ lib.teams.gnome-circle.members; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mo/mousam/package.nix b/pkgs/by-name/mo/mousam/package.nix index 72a29c30bd909..ba19ed0df45d0 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 fb95726bd6578..3021ea373234d 100644 --- a/pkgs/by-name/mo/mouse-actions/package.nix +++ b/pkgs/by-name/mo/mouse-actions/package.nix @@ -39,12 +39,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/mov-cli/package.nix b/pkgs/by-name/mo/mov-cli/package.nix index 3637bd41eb926..7affc2bdcaa97 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/movit/package.nix b/pkgs/by-name/mo/movit/package.nix index e285137e459fc..4b6069d065cfa 100644 --- a/pkgs/by-name/mo/movit/package.nix +++ b/pkgs/by-name/mo/movit/package.nix @@ -53,11 +53,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 f32de2fd5f625..975f41f3c42ab 100644 --- a/pkgs/by-name/mo/mozc/package.nix +++ b/pkgs/by-name/mo/mozc/package.nix @@ -98,14 +98,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; [ gebner ericsagnes pineapplehunter diff --git a/pkgs/by-name/mo/mozlz4a/package.nix b/pkgs/by-name/mo/mozlz4a/package.nix index 8ef0d3ea0c08e..954e609706948 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 = "MozLz4a 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 d9869dc02a6fc..b08a1f3928d0e 100644 --- a/pkgs/by-name/mo/mozphab/package.nix +++ b/pkgs/by-name/mo/mozphab/package.nix @@ -79,7 +79,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 = '' @@ -88,8 +88,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/mp/mp3blaster/package.nix b/pkgs/by-name/mp/mp3blaster/package.nix index 3127c53fe73ce..f2d48f5213767 100644 --- a/pkgs/by-name/mp/mp3blaster/package.nix +++ b/pkgs/by-name/mp/mp3blaster/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { ] ); - meta = with lib; { + meta = { description = "Audio player for the text console"; homepage = "http://www.mp3blaster.org/"; - license = licenses.gpl2; - maintainers = with maintainers; [ earldouglas ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ earldouglas ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/mp/mp3cat/package.nix b/pkgs/by-name/mp/mp3cat/package.nix index a945e50be8d47..e185f38122f59 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 6a98b78348b86..285509afdf532 100644 --- a/pkgs/by-name/mp/mp3fs/package.nix +++ b/pkgs/by-name/mp/mp3fs/package.nix @@ -44,7 +44,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 @@ -54,9 +54,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 d672d58a35632..1d7bd552344d9 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/mp3splt/package.nix b/pkgs/by-name/mp/mp3splt/package.nix index 5721630bef237..4a2a98b97eb0f 100644 --- a/pkgs/by-name/mp/mp3splt/package.nix +++ b/pkgs/by-name/mp/mp3splt/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { "man" ]; - meta = with lib; { + meta = { description = "Utility to split mp3, ogg vorbis and FLAC files without decoding"; homepage = "https://sourceforge.net/projects/mp3splt/"; - license = licenses.gpl2; - maintainers = [ maintainers.bosu ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.bosu ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mp/mpack/package.nix b/pkgs/by-name/mp/mpack/package.nix index 5fc18538ed0ca..78e76c68071e9 100644 --- a/pkgs/by-name/mp/mpack/package.nix +++ b/pkgs/by-name/mp/mpack/package.nix @@ -91,10 +91,10 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Utilities for encoding and decoding binary files in MIME"; - license = licenses.free; - platforms = platforms.linux; - maintainers = with maintainers; [ tomodachi94 ]; + license = lib.licenses.free; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ tomodachi94 ]; }; } diff --git a/pkgs/by-name/mp/mpd-mpris/package.nix b/pkgs/by-name/mp/mpd-mpris/package.nix index 8d7096eed5038..87fc9b42458ff 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 f488d46f4e5bc..b006db0652f1d 100644 --- a/pkgs/by-name/mp/mpd-notification/package.nix +++ b/pkgs/by-name/mp/mpd-notification/package.nix @@ -53,12 +53,12 @@ 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; [ CaitlinDavitt ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ CaitlinDavitt ]; + 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 31a47126dfc46..6777331a99e52 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 c1e9c88bdb5d5..3cb3a3281b1a3 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/mpdcron/package.nix b/pkgs/by-name/mp/mpdcron/package.nix index b3c22a7b80ee7..d409be3c87c1f 100644 --- a/pkgs/by-name/mp/mpdcron/package.nix +++ b/pkgs/by-name/mp/mpdcron/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation { "--with-standard-modules=all" ]; - meta = with lib; { + meta = { description = "Cron like daemon for mpd"; homepage = "http://alip.github.io/mpdcron/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ lovek323 manveru ]; diff --git a/pkgs/by-name/mp/mpdris2/package.nix b/pkgs/by-name/mp/mpdris2/package.nix index c9f6578efbca9..8e65d344a5e33 100644 --- a/pkgs/by-name/mp/mpdris2/package.nix +++ b/pkgs/by-name/mp/mpdris2/package.nix @@ -45,12 +45,12 @@ python3.pkgs.buildPythonApplication rec { pygobject3 ]; - meta = with lib; { + meta = { description = "MPRIS 2 support for mpd"; homepage = "https://github.com/eonpatapon/mpDris2/"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "mpDris2"; }; } diff --git a/pkgs/by-name/mp/mpdscribble/package.nix b/pkgs/by-name/mp/mpdscribble/package.nix index a6d74dabc7ebd..e1c90fe58dabe 100644 --- a/pkgs/by-name/mp/mpdscribble/package.nix +++ b/pkgs/by-name/mp/mpdscribble/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { libgcrypt ] ++ 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/mpfshell/package.nix b/pkgs/by-name/mp/mpfshell/package.nix index 7e4bbdf740ab0..338a6e82692da 100644 --- a/pkgs/by-name/mp/mpfshell/package.nix +++ b/pkgs/by-name/mp/mpfshell/package.nix @@ -24,10 +24,10 @@ python3Packages.buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "mp.mpfshell" ]; - meta = with lib; { + meta = { homepage = "https://github.com/wendlers/mpfshell"; description = "Simple shell based file explorer for ESP8266 Micropython based devices"; mainProgram = "mpfshell"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/mp/mpifileutils/package.nix b/pkgs/by-name/mp/mpifileutils/package.nix index e72da7d2aff44..995ed25215080 100644 --- a/pkgs/by-name/mp/mpifileutils/package.nix +++ b/pkgs/by-name/mp/mpifileutils/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ mpi ]; - 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/mprime/package.nix b/pkgs/by-name/mp/mprime/package.nix index 8cdf5f1b1479f..d511c0b9a78ea 100644 --- a/pkgs/by-name/mp/mprime/package.nix +++ b/pkgs/by-name/mp/mprime/package.nix @@ -70,7 +70,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 @@ -81,7 +81,7 @@ 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" diff --git a/pkgs/by-name/mp/mpris-notifier/package.nix b/pkgs/by-name/mp/mpris-notifier/package.nix index feaca1f895b3c..5d2ef3acb4459 100644 --- a/pkgs/by-name/mp/mpris-notifier/package.nix +++ b/pkgs/by-name/mp/mpris-notifier/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.Security ]; - 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 31b8e0b5aad61..5e467c94d8fae 100644 --- a/pkgs/by-name/mp/mpris-scrobbler/package.nix +++ b/pkgs/by-name/mp/mpris-scrobbler/package.nix @@ -76,12 +76,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/mpv-shim-default-shaders/package.nix b/pkgs/by-name/mp/mpv-shim-default-shaders/package.nix index 1c46eae6d6e04..f036332f63948 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 91d6d33634bd0..d3d0050d96284 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/mpw/package.nix b/pkgs/by-name/mp/mpw/package.nix index 495b1384b8734..a3dc05a4c3a7b 100644 --- a/pkgs/by-name/mp/mpw/package.nix +++ b/pkgs/by-name/mp/mpw/package.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Stateless password management solution"; mainProgram = "mpw"; homepage = "https://masterpasswordapp.com/"; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mq/mq-cli/package.nix b/pkgs/by-name/mq/mq-cli/package.nix index 1e38676165057..2d6c0d4c1ac9f 100644 --- a/pkgs/by-name/mq/mq-cli/package.nix +++ b/pkgs/by-name/mq/mq-cli/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-kZox1QhMPFC5l8mJNxh6C3tiNYMgfmLyWLhkdigEs6Y="; - meta = with lib; { + meta = { description = "CLI tool to manage POSIX message queues"; homepage = "https://github.com/aprilabank/mq-cli"; - license = licenses.mit; - maintainers = with maintainers; [ tazjin ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tazjin ]; + platforms = lib.platforms.linux; mainProgram = "mq"; }; } diff --git a/pkgs/by-name/mq/mqtt_cpp/package.nix b/pkgs/by-name/mq/mqtt_cpp/package.nix index 29e0febea0fdb..051a0a980be25 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/mr/mrbayes/package.nix b/pkgs/by-name/mr/mrbayes/package.nix index b8c899d0bd3ef..64a70846bf457 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 8c613e11e84c6..8b87d66f2cb46 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/mrsh/package.nix b/pkgs/by-name/mr/mrsh/package.nix index b8363b117b142..a8f043059e378 100644 --- a/pkgs/by-name/mr/mrsh/package.nix +++ b/pkgs/by-name/mr/mrsh/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation rec { 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 9c5e89f7bd74b..f48f07963209d 100644 --- a/pkgs/by-name/mr/mrtg/package.nix +++ b/pkgs/by-name/mr/mrtg/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { rrdtool ]; - meta = with lib; { + meta = { description = "Multi Router Traffic Grapher"; homepage = "https://oss.oetiker.ch/mrtg/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ robberer ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ robberer ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mr/mruby/package.nix b/pkgs/by-name/mr/mruby/package.nix index c0d78848697a1..6bb5453f43f8b 100644 --- a/pkgs/by-name/mr/mruby/package.nix +++ b/pkgs/by-name/mr/mruby/package.nix @@ -41,12 +41,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/mr/mrxvt/package.nix b/pkgs/by-name/mr/mrxvt/package.nix index 39ee43c80f9c9..c5a15b33316ce 100644 --- a/pkgs/by-name/mr/mrxvt/package.nix +++ b/pkgs/by-name/mr/mrxvt/package.nix @@ -52,15 +52,15 @@ stdenv.mkDerivation rec { passthru.tests.test = nixosTests.terminal-emulators.mrxvt; - meta = with lib; { + meta = { description = "Lightweight multitabbed feature-rich X11 terminal emulator"; longDescription = " Multitabbed lightweight terminal emulator based on rxvt. Supports transparency, backgroundimages, freetype fonts, ... "; homepage = "https://sourceforge.net/projects/materm"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; maintainers = [ ]; 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/ms/ms-sys/package.nix b/pkgs/by-name/ms/ms-sys/package.nix index 482f7602a40d3..712ee48e76c5b 100644 --- a/pkgs/by-name/ms/ms-sys/package.nix +++ b/pkgs/by-name/ms/ms-sys/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Program for writing Microsoft-compatible boot records"; homepage = "https://ms-sys.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = with platforms; linux; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; linux; mainProgram = "ms-sys"; }; } diff --git a/pkgs/by-name/ms/mscompress/package.nix b/pkgs/by-name/ms/mscompress/package.nix index c6974027cafbb..d639f68949c1a 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 74d04f76e0eb4..3a8e1937943a9 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 afa7ea3581a33..2e74d57a41a76 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 1eefc89e9eccf..f66cef0ff8344 100644 --- a/pkgs/by-name/ms/msgpack-cxx/package.nix +++ b/pkgs/by-name/ms/msgpack-cxx/package.nix @@ -39,11 +39,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/generic.nix b/pkgs/by-name/ms/msgpack/generic.nix index 0e966b6c63ffb..746cdded6024a 100644 --- a/pkgs/by-name/ms/msgpack/generic.nix +++ b/pkgs/by-name/ms/msgpack/generic.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation { stdenv.hostPlatform != stdenv.buildPlatform ) "-DMSGPACK_BUILD_EXAMPLES=OFF"; - meta = with lib; { + meta = { description = "MessagePack implementation for C and C++"; homepage = "https://msgpack.org"; - license = licenses.asl20; - maintainers = with maintainers; [ redbaron ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ redbaron ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ms/msgpuck/package.nix b/pkgs/by-name/ms/msgpuck/package.nix index 41fdca7052def..a452be8ce6f56 100644 --- a/pkgs/by-name/ms/msgpuck/package.nix +++ b/pkgs/by-name/ms/msgpuck/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { pkg-config ]; - 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 e874a2706c7b6..de048828362c9 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/msilbc/package.nix b/pkgs/by-name/ms/msilbc/package.nix index 8addbb00b0266..290857b423faa 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${mediastreamer}/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 232e071fe4dd6..306153e901a61 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 c038dd027ee79..149be31acad7d 100644 --- a/pkgs/by-name/ms/msldapdump/package.nix +++ b/pkgs/by-name/ms/msldapdump/package.nix @@ -38,10 +38,10 @@ python3.pkgs.buildPythonApplication rec { # 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 f52167c3162e9..573364a1d939f 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/msr-tools/package.nix b/pkgs/by-name/ms/msr-tools/package.nix index e725b36f34928..21eb2a706f00c 100644 --- a/pkgs/by-name/ms/msr-tools/package.nix +++ b/pkgs/by-name/ms/msr-tools/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { --replace /usr/sbin $out/bin ''; - meta = with lib; { + meta = { description = "Tool 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 ba2a670356ebf..c83c1bf56158c 100644 --- a/pkgs/by-name/ms/msr/package.nix +++ b/pkgs/by-name/ms/msr/package.nix @@ -31,12 +31,12 @@ 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; - maintainers = with maintainers; [ AndersonTorres ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ AndersonTorres ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/ms/mstore/package.nix b/pkgs/by-name/ms/mstore/package.nix index 642cc75463117..d576a10c8730d 100644 --- a/pkgs/by-name/ms/mstore/package.nix +++ b/pkgs/by-name/ms/mstore/package.nix @@ -40,11 +40,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 31d289bb7bcda..61888685155c9 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 68a1f9bed8ac2..21d65737dd32f 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/mtail/package.nix b/pkgs/by-name/mt/mtail/package.nix index d767d7a34cd6d..6402b5ac5c864 100644 --- a/pkgs/by-name/mt/mtail/package.nix +++ b/pkgs/by-name/mt/mtail/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { # fails on darwin with: write unixgram -> /rsyncd.log: write: message too long doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Tool for extracting metrics from application logs"; homepage = "https://github.com/google/mtail"; - license = licenses.asl20; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nickcao ]; mainProgram = "mtail"; }; } diff --git a/pkgs/by-name/mt/mtdev/package.nix b/pkgs/by-name/mt/mtdev/package.nix index b2f2a25641a1c..1da2deb5850cd 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 3347739d81c39..550bdd8139cf0 100644 --- a/pkgs/by-name/mt/mtdutils/package.nix +++ b/pkgs/by-name/mt/mtdutils/package.nix @@ -63,12 +63,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 7f54649fb3938..1baf090ed5de4 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/mtpfs/package.nix b/pkgs/by-name/mt/mtpfs/package.nix index 707ce295796be..e3bdb418c7724 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 2425226d513ac..ec64794ceaa78 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 2d47a07b2645e..c077acc2086d3 100644 --- a/pkgs/by-name/mt/mtxclient/package.nix +++ b/pkgs/by-name/mt/mtxclient/package.nix @@ -53,16 +53,16 @@ stdenv.mkDerivation rec { spdlog ]; - 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 rnhmjoj ]; - platforms = platforms.all; + platforms = lib.platforms.all; # Should be fixable if a higher clang version is used, see: # https://github.com/NixOS/nixpkgs/pull/85922#issuecomment-619287177 broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/mu/mucommander/package.nix b/pkgs/by-name/mu/mucommander/package.nix index 5116b5e276411..80dd3c7eae5eb 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 69654afc27e32..0d8b1a0e5bb9f 100644 --- a/pkgs/by-name/mu/muffin/package.nix +++ b/pkgs/by-name/mu/muffin/package.nix @@ -119,12 +119,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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/mu/mujs/package.nix b/pkgs/by-name/mu/mujs/package.nix index 78252d6844dea..c6f77892b5612 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 c2bc75898fa1e..a0decf82f7d84 100644 --- a/pkgs/by-name/mu/multicharge/package.nix +++ b/pkgs/by-name/mu/multicharge/package.nix @@ -56,12 +56,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 08fa8c8055d2a..827f05b64efcf 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/multirun/package.nix b/pkgs/by-name/mu/multirun/package.nix index 1ecc3c8f9e9ed..abcdac4a5c443 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/multiviewer-for-f1/package.nix b/pkgs/by-name/mu/multiviewer-for-f1/package.nix index e77069a76c547..5c03382d21969 100644 --- a/pkgs/by-name/mu/multiviewer-for-f1/package.nix +++ b/pkgs/by-name/mu/multiviewer-for-f1/package.nix @@ -93,12 +93,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Unofficial desktop client for F1 TV®"; homepage = "https://multiviewer.app"; downloadPage = "https://multiviewer.app/download"; - license = licenses.unfree; - maintainers = with maintainers; [ babeuh ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ babeuh ]; platforms = [ "x86_64-linux" ]; mainProgram = "multiviewer-for-f1"; }; diff --git a/pkgs/by-name/mu/multus-cni/package.nix b/pkgs/by-name/mu/multus-cni/package.nix index 6db149fca3f7e..85f75ad1999f9 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/muon/package.nix b/pkgs/by-name/mu/muon/package.nix index dc32c0114cfbe..00cda4e603b4d 100644 --- a/pkgs/by-name/mu/muon/package.nix +++ b/pkgs/by-name/mu/muon/package.nix @@ -129,12 +129,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://muon.build/"; description = "Implementation of Meson build system in C99"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; # typical `ar failure` mainProgram = "muon"; }; diff --git a/pkgs/by-name/mu/muonlang/package.nix b/pkgs/by-name/mu/muonlang/package.nix index 5882e2e26f0ec..d3f1bc736eac1 100644 --- a/pkgs/by-name/mu/muonlang/package.nix +++ b/pkgs/by-name/mu/muonlang/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { --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; - maintainers = with maintainers; [ Br1ght0ne ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Br1ght0ne ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/mu/muparserx/package.nix b/pkgs/by-name/mu/muparserx/package.nix index 4c1071eb2c682..780e0199eaf0a 100644 --- a/pkgs/by-name/mu/muparserx/package.nix +++ b/pkgs/by-name/mu/muparserx/package.nix @@ -31,10 +31,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; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/by-name/mu/mupen64plus/package.nix b/pkgs/by-name/mu/mupen64plus/package.nix index 5206d4abc37dd..5012f9a68d10f 100644 --- a/pkgs/by-name/mu/mupen64plus/package.nix +++ b/pkgs/by-name/mu/mupen64plus/package.nix @@ -48,11 +48,11 @@ 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/"; - maintainers = [ maintainers.sander ]; + maintainers = [ lib.maintainers.sander ]; 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 9dc5478f75048..2ba94242a48fb 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 9c92f2933730d..4416d4efe23a5 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-K9B8y9pOHcAOrUCmCB0zW2wy81DTF3K97gPYmAiKwAM="; - 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 ee793d950afcf..3c9e243398f9a 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 thyol ]; diff --git a/pkgs/by-name/mu/museeks/package.nix b/pkgs/by-name/mu/museeks/package.nix index eb551c222a8b9..004e467c53ba4 100644 --- a/pkgs/by-name/mu/museeks/package.nix +++ b/pkgs/by-name/mu/museeks/package.nix @@ -30,12 +30,12 @@ appimageTools.wrapType2 { --replace 'Exec=AppRun' 'Exec=${pname}' ''; - meta = with lib; { + meta = { description = "Simple, clean and cross-platform music player"; homepage = "https://github.com/martpie/museeks"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ zendo ]; + maintainers = with lib.maintainers; [ zendo ]; mainProgram = "museeks"; }; } diff --git a/pkgs/by-name/mu/musl-fts/package.nix b/pkgs/by-name/mu/musl-fts/package.nix index 2e27e29a6af5e..f9b3030a8e82c 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 edac988c36db4..656810408cb7e 100644 --- a/pkgs/by-name/mu/musl-obstack/package.nix +++ b/pkgs/by-name/mu/musl-obstack/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/void-linux/musl-obstack"; description = "An extraction of the obstack functions and macros from GNU libiberty for use with musl-libc"; - platforms = platforms.linux; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.pjjw ]; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.pjjw ]; }; } diff --git a/pkgs/by-name/mu/mustache-go/package.nix b/pkgs/by-name/mu/mustache-go/package.nix index 573974effa3fd..c42aa2bc13e1f 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 69e533a2c7d91..39279cf626ff9 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 976a53aedf522..f6d8a74c8e702 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 75cd0f5671a93..fd56459294818 100644 --- a/pkgs/by-name/mu/mutt-ics/package.nix +++ b/pkgs/by-name/mu/mutt-ics/package.nix @@ -17,11 +17,11 @@ buildPythonApplication rec { propagatedBuildInputs = [ icalendar ]; - 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 cf655f0dd1d0e..01224aa23f765 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 0c84b94a23bcb..15f6a197e2a79 100644 --- a/pkgs/by-name/mu/mutt/package.nix +++ b/pkgs/by-name/mu/mutt/package.nix @@ -124,12 +124,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/muzika/package.nix b/pkgs/by-name/mu/muzika/package.nix index fd537eb1675d3..7116210a7b667 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 c70fa731d003d..05263cecbb9b4 100644 --- a/pkgs/by-name/mv/mvapich/package.nix +++ b/pkgs/by-name/mv/mvapich/package.nix @@ -115,11 +115,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 61fcad72b47d6..0ae6c5aa1e5b5 100644 --- a/pkgs/by-name/mv/mvebu64boot/package.nix +++ b/pkgs/by-name/mv/mvebu64boot/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { 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/mxt-app/package.nix b/pkgs/by-name/mx/mxt-app/package.nix index 2ad09e7bd6596..f6b5d7eea1398 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/mycorrhiza/package.nix b/pkgs/by-name/my/mycorrhiza/package.nix index 9ffd22c450e62..599cc74f27940 100644 --- a/pkgs/by-name/my/mycorrhiza/package.nix +++ b/pkgs/by-name/my/mycorrhiza/package.nix @@ -29,12 +29,12 @@ buildGoModule rec { --prefix PATH : ${lib.makeBinPath [ git ]} ''; - meta = with lib; { + meta = { description = "Filesystem and git-based wiki engine written in Go using mycomarkup as its primary markup language"; homepage = "https://github.com/bouncepaw/mycorrhiza"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ chekoopa ]; - platforms = platforms.linux; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ chekoopa ]; + platforms = lib.platforms.linux; mainProgram = "mycorrhiza"; }; } diff --git a/pkgs/by-name/my/mycrypto/package.nix b/pkgs/by-name/my/mycrypto/package.nix index 04f713d2a30fc..670ddfe2e0ad8 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/mynewt-newtmgr/package.nix b/pkgs/by-name/my/mynewt-newtmgr/package.nix index bf9e547b10407..8fba7a22685e6 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 d941dfc6dcaa5..191a961a6764c 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; - maintainers = with maintainers; [ ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; + 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 9a53d03970915..754e7e706aef5 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 bba8fde3e8671..f49b6cc632910 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 acdd4cb5c6aaa..348c97e097f5f 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 075c39763ae7e..6aa6ed31c7159 100644 --- a/pkgs/by-name/my/mysql84/package.nix +++ b/pkgs/by-name/my/mysql84/package.nix @@ -114,14 +114,14 @@ 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; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ orivej shyim ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/my/mysqltuner/package.nix b/pkgs/by-name/my/mysqltuner/package.nix index ebda96763c015..367c292127f6c 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/myxer/package.nix b/pkgs/by-name/my/myxer/package.nix index 73dbad4c79306..ffc7f222e3a5e 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/n2/package.nix b/pkgs/by-name/n2/n2/package.nix index c9293a57aa47f..2be404194113e 100644 --- a/pkgs/by-name/n2/n2/package.nix +++ b/pkgs/by-name/n2/n2/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-jrIo0N3o2fYe3NgNG33shkMd0rJxi5evtidCL9BcfVc="; - meta = with lib; { + meta = { homepage = "https://github.com/evmar/n2"; description = "Ninja compatible build system"; mainProgram = "n2"; - 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/n2/n2n/package.nix b/pkgs/by-name/n2/n2n/package.nix index 55a7bda111b75..bfd41e8a18000 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/n3/n3/package.nix b/pkgs/by-name/n3/n3/package.nix index 81f6e74ace881..481c43dd9157d 100644 --- a/pkgs/by-name/n3/n3/package.nix +++ b/pkgs/by-name/n3/n3/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://github.com/BIC-MNI/N3"; description = "MRI non-uniformity correction for MINC files"; - 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/na/nacelle/package.nix b/pkgs/by-name/na/nacelle/package.nix index 2ab17a4c87be7..d78c167cd40f6 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/nagelfar/package.nix b/pkgs/by-name/na/nagelfar/package.nix index d0e02c9ee3e18..5c82b8a1bc429 100644 --- a/pkgs/by-name/na/nagelfar/package.nix +++ b/pkgs/by-name/na/nagelfar/package.nix @@ -25,7 +25,7 @@ tcl.mkTclDerivation { install -Dm 755 $src/nagelfar.tcl $out/bin/nagelfar ''; - meta = with lib; { + meta = { homepage = "https://nagelfar.sourceforge.net/"; description = "Static syntax checker (linter) for Tcl"; longDescription = '' @@ -33,8 +33,8 @@ tcl.mkTclDerivation { and is very extendable through its syntax database and plugins. ''; mainProgram = "nagelfar"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = [ maintainers.nat-418 ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.nat-418 ]; }; } diff --git a/pkgs/by-name/na/nahid-fonts/package.nix b/pkgs/by-name/na/nahid-fonts/package.nix index b36b78d752e1b..146c03474cbd1 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/namecoind/package.nix b/pkgs/by-name/na/namecoind/package.nix index ce27b8fadde6d..4f485a33497a0 100644 --- a/pkgs/by-name/na/namecoind/package.nix +++ b/pkgs/by-name/na/namecoind/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { "--with-boost-libdir=${boost.out}/lib" ]; - 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/nanomq/package.nix b/pkgs/by-name/na/nanomq/package.nix index a67679dffd47b..f26a97a910e31 100644 --- a/pkgs/by-name/na/nanomq/package.nix +++ b/pkgs/by-name/na/nanomq/package.nix @@ -133,11 +133,11 @@ stdenv.mkDerivation (finalAttrs: { }); }; - meta = with lib; { + meta = { description = "Ultra-lightweight and blazing-fast MQTT broker for IoT edge"; homepage = "https://nanomq.io/"; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/na/nanomsg/package.nix b/pkgs/by-name/na/nanomsg/package.nix index f1487c0c09550..0df0ee7784625 100644 --- a/pkgs/by-name/na/nanomsg/package.nix +++ b/pkgs/by-name/na/nanomsg/package.nix @@ -33,11 +33,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/nanosaur/package.nix b/pkgs/by-name/na/nanosaur/package.nix index 9bac2d99105fa..9a9ae1cba04d0 100644 --- a/pkgs/by-name/na/nanosaur/package.nix +++ b/pkgs/by-name/na/nanosaur/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { 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. @@ -50,9 +50,9 @@ stdenv.mkDerivation rec { 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/nanosvg/package.nix b/pkgs/by-name/na/nanosvg/package.nix index 64a6ccd0f8885..c88037eee1a65 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 ef6c0ea107d95..57f3d144b56b8 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 b8342a24c22f3..bfa9de0964dd5 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 0b482e0ea97ed..e28bf970a1c58 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/nasin-nanpa/package.nix b/pkgs/by-name/na/nasin-nanpa/package.nix index de98f92b4ad11..abf4f9ad64e3d 100644 --- a/pkgs/by-name/na/nasin-nanpa/package.nix +++ b/pkgs/by-name/na/nasin-nanpa/package.nix @@ -20,7 +20,7 @@ stdenvNoCC.mkDerivation rec { cp $src $out/share/fonts/opentype/nasin-nanpa.otf ''; - meta = with lib; { + meta = { homepage = "https://github.com/ETBCOR/nasin-nanpa"; description = "UCSUR OpenType monospaced font for the Toki Pona writing system, Sitelen Pona"; longDescription = '' @@ -28,8 +28,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; [ somasis ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ somasis ]; }; } diff --git a/pkgs/by-name/na/nasmfmt/package.nix b/pkgs/by-name/na/nasmfmt/package.nix index 850f0303e8257..d183fa03d432f 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 bd548a37bbd84..4e03c2d032c7c 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/national-park-typeface/package.nix b/pkgs/by-name/na/national-park-typeface/package.nix index 8f9bfd3ab148f..5b1f86bbed1db 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 c728826b5bc5c..54f2fd347bd30 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-Am4HmfmhskKxcp1iWod5z3caHwsdo31qCaVi0UxTXAg="; - 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/nats-streaming-server/package.nix b/pkgs/by-name/na/nats-streaming-server/package.nix index 7431132ae47a7..a6af588017ab7 100644 --- a/pkgs/by-name/na/nats-streaming-server/package.nix +++ b/pkgs/by-name/na/nats-streaming-server/package.nix @@ -20,10 +20,10 @@ buildGoModule rec { # tests fail and ask to `go install` doCheck = false; - meta = with lib; { + meta = { description = "NATS Streaming System Server"; - license = licenses.asl20; - maintainers = [ maintainers.swdunlop ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.swdunlop ]; homepage = "https://nats.io/"; mainProgram = "nats-streaming-server"; }; diff --git a/pkgs/by-name/na/natural-docs/package.nix b/pkgs/by-name/na/natural-docs/package.nix index fcffb10de7df6..e6c7a343d3172 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 3af2ef1cc5ad4..8fc78220ef909 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 c43a9505de9f3..bf042c4208de5 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 f501181da5977..23c179c965d53 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; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/na/nautilus/package.nix b/pkgs/by-name/na/nautilus/package.nix index 3a1f30dfb9099..63db8e903a71e 100644 --- a/pkgs/by-name/na/nautilus/package.nix +++ b/pkgs/by-name/na/nautilus/package.nix @@ -124,12 +124,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; - maintainers = teams.gnome.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.gnome.members; mainProgram = "nautilus"; }; }) diff --git a/pkgs/by-name/na/nauty/package.nix b/pkgs/by-name/na/nauty/package.nix index 0963586a049d6..a8739bcfbe993 100644 --- a/pkgs/by-name/na/nauty/package.nix +++ b/pkgs/by-name/na/nauty/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { checkTarget = "checks"; - meta = with lib; { + meta = { description = "Programs for computing automorphism groups of graphs and digraphs"; - license = licenses.asl20; - maintainers = teams.sage.members; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = lib.teams.sage.members; + platforms = lib.platforms.unix; # I'm not sure if the filename will remain the same for future changelog or # if it will track changes to minor releases. Lets see. Better than nothing # in any case. diff --git a/pkgs/by-name/na/navi/package.nix b/pkgs/by-name/na/navi/package.nix index 78ad846cf2d64..3c66386d6f96e 100644 --- a/pkgs/by-name/na/navi/package.nix +++ b/pkgs/by-name/na/navi/package.nix @@ -38,12 +38,12 @@ rustPlatform.buildRustPackage rec { "--skip=test_parse_variable_line" ]; - meta = with lib; { + meta = { description = "Interactive cheatsheet tool for the command-line and application launchers"; homepage = "https://github.com/denisidoro/navi"; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; mainProgram = "navi"; - maintainers = with maintainers; [ cust0dian ]; + maintainers = with lib.maintainers; [ cust0dian ]; }; } diff --git a/pkgs/by-name/nb/nbench/package.nix b/pkgs/by-name/nb/nbench/package.nix index abb8c5a3747e9..afdaa9bd5f46f 100644 --- a/pkgs/by-name/nb/nbench/package.nix +++ b/pkgs/by-name/nb/nbench/package.nix @@ -34,10 +34,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 a958994a4f3b3..a0a8cc57d1eee 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 36ad8bd11e2f1..b47043a31145b 100644 --- a/pkgs/by-name/nb/nbutools/package.nix +++ b/pkgs/by-name/nb/nbutools/package.nix @@ -33,10 +33,10 @@ python3.pkgs.buildPythonApplication rec { # 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/nc/ncdns/package.nix b/pkgs/by-name/nc/ncdns/package.nix index a603b9674f029..6caf29402e402 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/ncftp/package.nix b/pkgs/by-name/nc/ncftp/package.nix index 9ed5733d8925b..b7d7ed2c27ac8 100644 --- a/pkgs/by-name/nc/ncftp/package.nix +++ b/pkgs/by-name/nc/ncftp/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation (finalAttrs: { "--mandir=$(out)/share/man/" ]; - meta = with lib; { + meta = { description = "Command line FTP (File Transfer Protocol) client"; homepage = "https://www.ncftp.com/ncftp/"; - maintainers = with maintainers; [ bjornfor ]; - platforms = platforms.unix; - license = licenses.clArtistic; + maintainers = with lib.maintainers; [ bjornfor ]; + platforms = lib.platforms.unix; + license = lib.licenses.clArtistic; mainProgram = "ncftp"; }; }) diff --git a/pkgs/by-name/nc/ncgopher/package.nix b/pkgs/by-name/nc/ncgopher/package.nix index 95f12be4bb1ce..e441ff771f019 100644 --- a/pkgs/by-name/nc/ncgopher/package.nix +++ b/pkgs/by-name/nc/ncgopher/package.nix @@ -28,12 +28,12 @@ rustPlatform.buildRustPackage rec { sqlite ]; - meta = with lib; { + meta = { description = "Gopher and gemini client for the modern internet"; homepage = "https://github.com/jansc/ncgopher"; - license = licenses.bsd2; - maintainers = with maintainers; [ shamilton ]; - platforms = platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.linux; mainProgram = "ncgopher"; }; } diff --git a/pkgs/by-name/nc/ncmpc/package.nix b/pkgs/by-name/nc/ncmpc/package.nix index caddc5019736f..6cef898312879 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/ncnn/package.nix b/pkgs/by-name/nc/ncnn/package.nix index ed6f8616bafcc..6e3b5b5384469 100644 --- a/pkgs/by-name/nc/ncnn/package.nix +++ b/pkgs/by-name/nc/ncnn/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { protobuf ]; - meta = with lib; { + meta = { description = "ncnn is a high-performance neural network inference framework optimized for the mobile platform"; homepage = "https://github.com/Tencent/ncnn"; - license = licenses.bsd3; - maintainers = with maintainers; [ tilcreator ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ tilcreator ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/nc/ncompress/package.nix b/pkgs/by-name/nc/ncompress/package.nix index 4baac00754eeb..b71b8e4b15792 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 b519d5585e959..35117c5dd0f85 100644 --- a/pkgs/by-name/nc/ncpamixer/package.nix +++ b/pkgs/by-name/nc/ncpamixer/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { make PREFIX=$out USE_WIDE=1 RELEASE=1 build/Makefile ''; - meta = with lib; { + meta = { description = "Terminal mixer for PulseAudio inspired by pavucontrol"; homepage = "https://github.com/fulhax/ncpamixer"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = teams.c3d2.members; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = lib.teams.c3d2.members; mainProgram = "ncpamixer"; }; } diff --git a/pkgs/by-name/nc/ncrack/package.nix b/pkgs/by-name/nc/ncrack/package.nix index 2df00ec4c8942..9b0a40fad9ae0 100644 --- a/pkgs/by-name/nc/ncrack/package.nix +++ b/pkgs/by-name/nc/ncrack/package.nix @@ -36,12 +36,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 7dc9288bbda65..9845006113ae4 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/ndisc6/package.nix b/pkgs/by-name/nd/ndisc6/package.nix index f89a89164b8aa..7ae78945b8b2f 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/ndn-cxx/package.nix b/pkgs/by-name/nd/ndn-cxx/package.nix index 144d79262c84a..05b0394ae52ec 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 52941aa57fce1..812cd1d9403e7 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/ne/ne/package.nix b/pkgs/by-name/ne/ne/package.nix index 83a755ad2735f..9fa5a0485db42 100644 --- a/pkgs/by-name/ne/ne/package.nix +++ b/pkgs/by-name/ne/ne/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Nice editor"; homepage = "https://ne.di.unimi.it/"; longDescription = '' @@ -44,9 +44,9 @@ stdenv.mkDerivation rec { but powerful and fully configurable for the wizard, and most sparing in its resource usage. See the manual for some highlights of ne's features. ''; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ geri1701 ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ geri1701 ]; mainProgram = "ne"; }; } diff --git a/pkgs/by-name/ne/nearcore/package.nix b/pkgs/by-name/ne/nearcore/package.nix index e23315a141a72..04765cb393d51 100644 --- a/pkgs/by-name/ne/nearcore/package.nix +++ b/pkgs/by-name/ne/nearcore/package.nix @@ -53,11 +53,11 @@ rustPlatform.buildRustPackage rec { # fat LTO requires ~3.4GB RAM requiredSystemFeatures = [ "big-parallel" ]; - meta = with lib; { + meta = { 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 71853a3f37696..947fe729a2319 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/neardal/package.nix b/pkgs/by-name/ne/neardal/package.nix index b1aa85d1f173e..7da8abae92c61 100644 --- a/pkgs/by-name/ne/neardal/package.nix +++ b/pkgs/by-name/ne/neardal/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation { "--disable-traces" ]; - meta = with lib; { + meta = { broken = true; # 2022-11-13 description = "C APIs to exchange datas with the NFC daemon 'Neard'"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; homepage = "https://01.org/linux-nfc"; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ne/nedit/package.nix b/pkgs/by-name/ne/nedit/package.nix index f3809053300fb..1b9374c5354c5 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 3d771cd693e5f..c7a8021f6e946 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 8aa5c7b85fea4..4693751399482 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/nemiver/package.nix b/pkgs/by-name/ne/nemiver/package.nix index 198c5ef3fe4b7..f85f62f029a10 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 faa0215419b19..9fe038a1402ff 100644 --- a/pkgs/by-name/ne/nemo-emblems/package.nix +++ b/pkgs/by-name/ne/nemo-emblems/package.nix @@ -29,15 +29,15 @@ python3.pkgs.buildPythonApplication rec { --replace "/usr/share/locale" "${cinnamon-translations}/share/locale" ''; - 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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/ne/nemo-fileroller/package.nix b/pkgs/by-name/ne/nemo-fileroller/package.nix index ae668730829e9..3d62a0c2af3c0 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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/ne/nemo-python/package.nix b/pkgs/by-name/ne/nemo-python/package.nix index a80cf5e60294b..a1e5811c35c1a 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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/ne/nengo-gui/package.nix b/pkgs/by-name/ne/nengo-gui/package.nix index b143a727816a6..4fcc4aa573fe6 100644 --- a/pkgs/by-name/ne/nengo-gui/package.nix +++ b/pkgs/by-name/ne/nengo-gui/package.nix @@ -21,10 +21,10 @@ python3Packages.buildPythonPackage rec { # pyimgur doCheck = false; - meta = with lib; { + meta = { description = "Nengo interactive visualizer"; homepage = "https://nengo.ai/"; - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ arjix ]; + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ arjix ]; }; } diff --git a/pkgs/by-name/ne/neo-cowsay/package.nix b/pkgs/by-name/ne/neo-cowsay/package.nix index 8f3f556c877c2..da748c0e80e69 100644 --- a/pkgs/by-name/ne/neo-cowsay/package.nix +++ b/pkgs/by-name/ne/neo-cowsay/package.nix @@ -26,14 +26,14 @@ 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 ]; - maintainers = with maintainers; [ Br1ght0ne ]; + maintainers = with lib.maintainers; [ Br1ght0ne ]; mainProgram = "cowsay"; }; } diff --git a/pkgs/by-name/ne/neo/package.nix b/pkgs/by-name/ne/neo/package.nix index 1a34e52cac4c5..a912366c2e81b 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/neocities/package.nix b/pkgs/by-name/ne/neocities/package.nix index 3f324fd19d9a4..efb707f8e4ca5 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/neocomp/package.nix b/pkgs/by-name/ne/neocomp/package.nix index 31e7d7de8ec94..ec0612fda027a 100644 --- a/pkgs/by-name/ne/neocomp/package.nix +++ b/pkgs/by-name/ne/neocomp/package.nix @@ -75,14 +75,14 @@ stdenv.mkDerivation rec { "#define MAX_PATH_LENGTH 128" ''; - meta = with lib; { + meta = { homepage = "https://github.com/DelusionalLogic/NeoComp"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ twey moni ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; description = "Fork of Compton, a compositor for X11"; longDescription = '' NeoComp is a (hopefully) fast and (hopefully) simple compositor diff --git a/pkgs/by-name/ne/neofetch/package.nix b/pkgs/by-name/ne/neofetch/package.nix index d8e00c35c0b32..b0b343faadfeb 100644 --- a/pkgs/by-name/ne/neofetch/package.nix +++ b/pkgs/by-name/ne/neofetch/package.nix @@ -65,12 +65,12 @@ stdenvNoCC.mkDerivation rec { "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 293de7c9b0dc3..a7bb3e47d74fa 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-gtk/package.nix b/pkgs/by-name/ne/neovim-gtk/package.nix index 66257fd5949b4..0104960ddbb5c 100644 --- a/pkgs/by-name/ne/neovim-gtk/package.nix +++ b/pkgs/by-name/ne/neovim-gtk/package.nix @@ -41,11 +41,11 @@ rustPlatform.buildRustPackage rec { make PREFIX=$out install-resources ''; - meta = with lib; { + meta = { description = "Gtk ui for neovim"; homepage = "https://github.com/Lyude/neovim-gtk"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ aleksana ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ aleksana ]; mainProgram = "nvim-gtk"; }; } diff --git a/pkgs/by-name/ne/neovim-qt-unwrapped/package.nix b/pkgs/by-name/ne/neovim-qt-unwrapped/package.nix index aa43c0fa7bd3d..19b48bc739db5 100644 --- a/pkgs/by-name/ne/neovim-qt-unwrapped/package.nix +++ b/pkgs/by-name/ne/neovim-qt-unwrapped/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Neovim client library and GUI, in Qt5"; homepage = "https://github.com/equalsraf/neovim-qt"; - license = licenses.isc; + license = lib.licenses.isc; mainProgram = "nvim-qt"; - maintainers = with maintainers; [ peterhoeg ]; + maintainers = with lib.maintainers; [ peterhoeg ]; inherit (neovim.meta) platforms; }; } diff --git a/pkgs/by-name/ne/neovim-remote/package.nix b/pkgs/by-name/ne/neovim-remote/package.nix index 566f323ce2c61..f5aaffef136bd 100644 --- a/pkgs/by-name/ne/neovim-remote/package.nix +++ b/pkgs/by-name/ne/neovim-remote/package.nix @@ -43,12 +43,12 @@ buildPythonApplication rec { export HOME="$(mktemp -d)" ''; - 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 83ada71e8e352..fb67fbb7d1180 100644 --- a/pkgs/by-name/ne/nerd-font-patcher/package.nix +++ b/pkgs/by-name/ne/nerd-font-patcher/package.nix @@ -35,11 +35,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 276a1d9eacd5a..ea93526ccebe2 100644 --- a/pkgs/by-name/ne/nerdfetch/package.nix +++ b/pkgs/by-name/ne/nerdfetch/package.nix @@ -27,12 +27,12 @@ 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"; - 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/net-snmp/package.nix b/pkgs/by-name/ne/net-snmp/package.nix index a8c268e2abb99..fd6f9a70b56e2 100644 --- a/pkgs/by-name/ne/net-snmp/package.nix +++ b/pkgs/by-name/ne/net-snmp/package.nix @@ -108,10 +108,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 = "http://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/netatalk/package.nix b/pkgs/by-name/ne/netatalk/package.nix index b181486b9e493..14fc40bf487f5 100644 --- a/pkgs/by-name/ne/netatalk/package.nix +++ b/pkgs/by-name/ne/netatalk/package.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Apple Filing Protocol Server"; homepage = "http://netatalk.sourceforge.net/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ jcumming ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ jcumming ]; }; }) diff --git a/pkgs/by-name/ne/netbird-dashboard/package.nix b/pkgs/by-name/ne/netbird-dashboard/package.nix index f0013a14f1dde..99bc824300183 100644 --- a/pkgs/by-name/ne/netbird-dashboard/package.nix +++ b/pkgs/by-name/ne/netbird-dashboard/package.nix @@ -26,10 +26,10 @@ 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; [ vrifox ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ vrifox ]; }; } diff --git a/pkgs/by-name/ne/netboot/package.nix b/pkgs/by-name/ne/netboot/package.nix index 2041f5507472c..c3a73c8267f17 100644 --- a/pkgs/by-name/ne/netboot/package.nix +++ b/pkgs/by-name/ne/netboot/package.nix @@ -28,9 +28,9 @@ stdenv.mkDerivation rec { # link: `parseopt.lo' is not a valid libtool object enableParallelBuilding = false; - meta = with lib; { + meta = { description = "Mini PXE server"; - maintainers = [ maintainers.raskin ]; + maintainers = [ lib.maintainers.raskin ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/ne/netbootxyz-efi/package.nix b/pkgs/by-name/ne/netbootxyz-efi/package.nix index bd2fc9fa09d15..0562f1302fa9f 100644 --- a/pkgs/by-name/ne/netbootxyz-efi/package.nix +++ b/pkgs/by-name/ne/netbootxyz-efi/package.nix @@ -13,11 +13,11 @@ fetchurl { url = "https://github.com/netbootxyz/netboot.xyz/releases/download/${version}/netboot.xyz.efi"; sha256 = "sha256-cO8MCkroQ0s/j8wnwwIWfnxEvChLeOZw+gD4wrYBAog="; - meta = with lib; { + meta = { homepage = "https://netboot.xyz/"; description = "Tool to boot OS installers and utilities over the network, to be run from a bootloader"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ne/netbox2netshot/package.nix b/pkgs/by-name/ne/netbox2netshot/package.nix index 24095209c7942..76125cafa74ac 100644 --- a/pkgs/by-name/ne/netbox2netshot/package.nix +++ b/pkgs/by-name/ne/netbox2netshot/package.nix @@ -34,10 +34,10 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.Security ]; - 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-gnu/package.nix b/pkgs/by-name/ne/netcat-gnu/package.nix index f072cf5d21335..a18c15520ee65 100644 --- a/pkgs/by-name/ne/netcat-gnu/package.nix +++ b/pkgs/by-name/ne/netcat-gnu/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation rec { sha256 = "1frjcdkhkpzk0f84hx6hmw5l0ynpmji8vcbaxg8h5k2svyxz0nmm"; }; - meta = with lib; { + meta = { description = "Utility which reads and writes data across network connections"; homepage = "https://netcat.sourceforge.net/"; mainProgram = "netcat"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; maintainers = with lib.maintainers; [ RossComputerGuy ]; }; } diff --git a/pkgs/by-name/ne/netcat-openbsd/package.nix b/pkgs/by-name/ne/netcat-openbsd/package.nix index ebb407027bd20..45de1ff7cd250 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/netcoredbg/package.nix b/pkgs/by-name/ne/netcoredbg/package.nix index f2dc49a184103..a9856cce6b1b7 100644 --- a/pkgs/by-name/ne/netcoredbg/package.nix +++ b/pkgs/by-name/ne/netcoredbg/package.nix @@ -101,13 +101,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 2f7608c36ab7b..23d6dbb59cc2f 100644 --- a/pkgs/by-name/ne/netdiscover/package.nix +++ b/pkgs/by-name/ne/netdiscover/package.nix @@ -26,12 +26,12 @@ 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"; - 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 19e87147f28d2..bb35de0d6d740 100644 --- a/pkgs/by-name/ne/netevent/package.nix +++ b/pkgs/by-name/ne/netevent/package.nix @@ -41,11 +41,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 5ad1bfd5c999b..fd1e92db737a3 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 18d284443d7c8..29b25d9bcaa3c 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 afb13762dc225..fc00cd29eb3fc 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 9397e44d9fd79..848f90803e215 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 6668eeff00f51..3c701018a25d6 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 eb49dcb019f55..598d9992458cc 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 96eb98afd65dc..95e51197408f3 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 3ef68f36551bc..60dffc6036f7f 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/netsniff-ng/package.nix b/pkgs/by-name/ne/netsniff-ng/package.nix index 98fbc042a64c4..d7716aa0bf9ae 100644 --- a/pkgs/by-name/ne/netsniff-ng/package.nix +++ b/pkgs/by-name/ne/netsniff-ng/package.nix @@ -82,7 +82,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 @@ -92,7 +92,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/networkd-dispatcher/package.nix b/pkgs/by-name/ne/networkd-dispatcher/package.nix index d2b9732f87d9a..3f5193a3102c5 100644 --- a/pkgs/by-name/ne/networkd-dispatcher/package.nix +++ b/pkgs/by-name/ne/networkd-dispatcher/package.nix @@ -84,12 +84,12 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - 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/networking-ts-cxx/package.nix b/pkgs/by-name/ne/networking-ts-cxx/package.nix index 86b2b4f3e222c..5e4bda9f41415 100644 --- a/pkgs/by-name/ne/networking-ts-cxx/package.nix +++ b/pkgs/by-name/ne/networking-ts-cxx/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { 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; - maintainers = with maintainers; [ bhipple ]; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ bhipple ]; }; } diff --git a/pkgs/by-name/ne/networkmanager-iodine/package.nix b/pkgs/by-name/ne/networkmanager-iodine/package.nix index 2e6b2970b9242..a6dcf37d8c2a7 100644 --- a/pkgs/by-name/ne/networkmanager-iodine/package.nix +++ b/pkgs/by-name/ne/networkmanager-iodine/package.nix @@ -71,9 +71,9 @@ stdenv.mkDerivation { networkManagerPlugin = "VPN/nm-iodine-service.name"; }; - meta = with lib; { + meta = { description = "NetworkManager's iodine plugin"; inherit (networkmanager.meta) maintainers 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 c27d970885184..a11988b54dd78 100644 --- a/pkgs/by-name/ne/networkmanager-l2tp/package.nix +++ b/pkgs/by-name/ne/networkmanager-l2tp/package.nix @@ -72,12 +72,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; [ abbradar obadz ]; diff --git a/pkgs/by-name/ne/networkmanager-openconnect/package.nix b/pkgs/by-name/ne/networkmanager-openconnect/package.nix index c33ba6644f90f..8397a2bcc9047 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 { networkManagerPlugin = "VPN/nm-openconnect-service.name"; }; - meta = with lib; { + meta = { description = "NetworkManager’s OpenConnect plugin"; inherit (networkmanager.meta) maintainers 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 4a8a13ac39368..0297924ef8535 100644 --- a/pkgs/by-name/ne/networkmanager-sstp/package.nix +++ b/pkgs/by-name/ne/networkmanager-sstp/package.nix @@ -71,9 +71,9 @@ stdenv.mkDerivation rec { networkManagerPlugin = "VPN/nm-sstp-service.name"; }; - meta = with lib; { + meta = { description = "NetworkManager's sstp plugin"; inherit (networkmanager.meta) maintainers platforms; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/ne/networkmanager_dmenu/package.nix b/pkgs/by-name/ne/networkmanager_dmenu/package.nix index 97acb7b35c1a5..bc901790980e5 100644 --- a/pkgs/by-name/ne/networkmanager_dmenu/package.nix +++ b/pkgs/by-name/ne/networkmanager_dmenu/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { description = "Small script to manage NetworkManager connections with dmenu instead of nm-applet"; mainProgram = "networkmanager_dmenu"; homepage = "https://github.com/firecat53/networkmanager-dmenu"; diff --git a/pkgs/by-name/ne/networkmanager_strongswan/package.nix b/pkgs/by-name/ne/networkmanager_strongswan/package.nix index 799c492354105..9b61530bd7d59 100644 --- a/pkgs/by-name/ne/networkmanager_strongswan/package.nix +++ b/pkgs/by-name/ne/networkmanager_strongswan/package.nix @@ -51,9 +51,9 @@ stdenv.mkDerivation rec { networkManagerPlugin = "VPN/nm-strongswan-service.name"; }; - 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/networkmanagerapplet/package.nix b/pkgs/by-name/ne/networkmanagerapplet/package.nix index 252a54c71b3e5..fa75db3c72ec8 100644 --- a/pkgs/by-name/ne/networkmanagerapplet/package.nix +++ b/pkgs/by-name/ne/networkmanagerapplet/package.nix @@ -83,12 +83,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/networkminer/package.nix b/pkgs/by-name/ne/networkminer/package.nix index ff5d917ad7ace..cd3da8518ff66 100644 --- a/pkgs/by-name/ne/networkminer/package.nix +++ b/pkgs/by-name/ne/networkminer/package.nix @@ -71,12 +71,12 @@ buildDotnetModule rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Open Source Network Forensic Analysis Tool (NFAT)"; homepage = "https://www.netresec.com/?page=NetworkMiner"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ emilytrau ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ emilytrau ]; + platforms = lib.platforms.linux; mainProgram = "NetworkMiner"; }; } diff --git a/pkgs/by-name/ne/new-session-manager/package.nix b/pkgs/by-name/ne/new-session-manager/package.nix index 343c84db10d08..e2b8ce9dd8d3e 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/newtonwars/package.nix b/pkgs/by-name/ne/newtonwars/package.nix index 5d0f0ece621e0..9f561b9796660 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 e7487144b5c3a..10ae2ec8f64c3 100644 --- a/pkgs/by-name/ne/nex/package.nix +++ b/pkgs/by-name/ne/nex/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { # 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 e37efbdf95e0b..5c3c0db9702b9 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/nexttrace/package.nix b/pkgs/by-name/ne/nexttrace/package.nix index 42535a4edb192..8088accae31d7 100644 --- a/pkgs/by-name/ne/nexttrace/package.nix +++ b/pkgs/by-name/ne/nexttrace/package.nix @@ -28,11 +28,11 @@ buildGo122Module 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 d49cbfc2613e4..1517311200cda 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/nfs-ganesha/package.nix b/pkgs/by-name/nf/nfs-ganesha/package.nix index c3b65eb372432..4c7300d8623c6 100644 --- a/pkgs/by-name/nf/nfs-ganesha/package.nix +++ b/pkgs/by-name/nf/nfs-ganesha/package.nix @@ -78,12 +78,12 @@ stdenv.mkDerivation rec { install -Dm755 $src/src/tools/mount.9P $tools/bin/mount.9P ''; - 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/nfstrace/package.nix b/pkgs/by-name/nf/nfstrace/package.nix index 11edace296ef4..d082a1192aeff 100644 --- a/pkgs/by-name/nf/nfstrace/package.nix +++ b/pkgs/by-name/nf/nfstrace/package.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation rec { doCheck = false; # requires network access - meta = with lib; { + meta = { homepage = "http://epam.github.io/nfstrace/"; description = "NFS and CIFS tracing/monitoring/capturing/analyzing tool"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; mainProgram = "nfstrace"; }; } diff --git a/pkgs/by-name/ng/ngadmin/package.nix b/pkgs/by-name/ng/ngadmin/package.nix index 751b2f2b96584..1bb3de22ef0a2 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 f475464bd5f48..4737cd933f97d 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 01ab35ff1f9c9..f662c9696f7b4 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 c2d4a9473a20e..63c1c1a3bbf44 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 5c0772047f0fa..028e8e8f8f681 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/nh/nheko/package.nix b/pkgs/by-name/nh/nheko/package.nix index 005c5937388b2..c0cd726dde710 100644 --- a/pkgs/by-name/nh/nheko/package.nix +++ b/pkgs/by-name/nh/nheko/package.nix @@ -83,17 +83,17 @@ stdenv.mkDerivation rec { 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; [ ekleog fpletz rnhmjoj ]; - platforms = platforms.all; + platforms = lib.platforms.all; # Should be fixable if a higher clang version is used, see: # https://github.com/NixOS/nixpkgs/pull/85922#issuecomment-619287177 broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/ni/nibtools/package.nix b/pkgs/by-name/ni/nibtools/package.nix index 84b80b412a797..8a012a18ff5a7 100644 --- a/pkgs/by-name/ni/nibtools/package.nix +++ b/pkgs/by-name/ni/nibtools/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "disk transfer utility for imaging and converting commodore 64 disk images"; homepage = "https://github.com/OpenCBM/nibtools/"; - license = licenses.gpl2; - maintainers = with maintainers; [ matthewcroughan ]; - platforms = platforms.all; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ matthewcroughan ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ni/nicotine-plus/package.nix b/pkgs/by-name/ni/nicotine-plus/package.nix index f5005b8a5d049..c07230d581a4b 100644 --- a/pkgs/by-name/ni/nicotine-plus/package.nix +++ b/pkgs/by-name/ni/nicotine-plus/package.nix @@ -52,7 +52,7 @@ python3Packages.buildPythonApplication rec { ]; 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 @@ -60,8 +60,8 @@ python3Packages.buildPythonApplication rec { 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/nifticlib/package.nix b/pkgs/by-name/ni/nifticlib/package.nix index 9ace77562c626..94840f078cf30 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 f71fa01325861..04cf622c0b5c8 100644 --- a/pkgs/by-name/ni/niftyreg/package.nix +++ b/pkgs/by-name/ni/niftyreg/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; buildInputs = [ zlib ]; - 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 1c7d59328a45b..6781e0788a7f3 100644 --- a/pkgs/by-name/ni/niftyseg/package.nix +++ b/pkgs/by-name/ni/niftyseg/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { zlib ]; - 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; }; } diff --git a/pkgs/by-name/ni/nika-fonts/package.nix b/pkgs/by-name/ni/nika-fonts/package.nix index 165145ff295ab..070851c632edf 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 4a899e7ef6902..5160156dd2430 100644 --- a/pkgs/by-name/ni/nilaway/package.nix +++ b/pkgs/by-name/ni/nilaway/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { 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/nilfs-utils/package.nix b/pkgs/by-name/ni/nilfs-utils/package.nix index 3ce0af6d1fd9f..d49373980135f 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 41307f3202715..98a6cd8541704 100644 --- a/pkgs/by-name/ni/nim-unwrapped-2_2/package.nix +++ b/pkgs/by-name/ni/nim-unwrapped-2_2/package.nix @@ -173,12 +173,12 @@ 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"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ehmry eveeifyeve ]; diff --git a/pkgs/by-name/ni/ninjas2/package.nix b/pkgs/by-name/ni/ninjas2/package.nix index 11cb31f589fa8..4cef27c8055fc 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 61e23a95ec5ec..8af94d092272b 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 00e42aa5a9160..1b7d6e4a3b5b4 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 207efe86b27e4..45cea2aa7ac5d 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 9440d02953351..d644e70ae9dfd 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 91a5595036829..b2f6306e25af4 100644 --- a/pkgs/by-name/ni/nitrokey-udev-rules/package.nix +++ b/pkgs/by-name/ni/nitrokey-udev-rules/package.nix @@ -19,11 +19,11 @@ stdenv.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/nix-bash-completions/package.nix b/pkgs/by-name/ni/nix-bash-completions/package.nix index 71ea4e111dfc1..58f733cdebd4a 100644 --- a/pkgs/by-name/ni/nix-bash-completions/package.nix +++ b/pkgs/by-name/ni/nix-bash-completions/package.nix @@ -52,12 +52,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 10232985c27d7..1f17549f5f5b7 100644 --- a/pkgs/by-name/ni/nix-bisect/package.nix +++ b/pkgs/by-name/ni/nix-bisect/package.nix @@ -27,10 +27,10 @@ python3.pkgs.buildPythonApplication { doCheck = false; - 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 657e768d9db7c..40b3f674d2796 100644 --- a/pkgs/by-name/ni/nix-btm/package.nix +++ b/pkgs/by-name/ni/nix-btm/package.nix @@ -26,10 +26,10 @@ rustPlatform.buildRustPackage rec { ] ); - 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 5bf09afad6e37..eeaa2beb353a9 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-doc/package.nix b/pkgs/by-name/ni/nix-doc/package.nix index d938688022a87..6e44dd536049a 100644 --- a/pkgs/by-name/ni/nix-doc/package.nix +++ b/pkgs/by-name/ni/nix-doc/package.nix @@ -59,13 +59,13 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-CHagzXTG9AfrFd3WmHanQ+YddMgmVxSuB8vK98A1Mlw="; - 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 8d366d221f9fd..d69500f960e00 100644 --- a/pkgs/by-name/ni/nix-health/package.nix +++ b/pkgs/by-name/ni/nix-health/package.nix @@ -37,11 +37,11 @@ rustPlatform.buildRustPackage rec { ] ); - 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; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ srid shivaraj-bh ]; diff --git a/pkgs/by-name/ni/nix-inspect/package.nix b/pkgs/by-name/ni/nix-inspect/package.nix index 808da85fb582c..4eb2f149ed5d6 100644 --- a/pkgs/by-name/ni/nix-inspect/package.nix +++ b/pkgs/by-name/ni/nix-inspect/package.nix @@ -65,12 +65,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-ld/package.nix b/pkgs/by-name/ni/nix-ld/package.nix index 3d47e68637d2a..5c942f9198f60 100644 --- a/pkgs/by-name/ni/nix-ld/package.nix +++ b/pkgs/by-name/ni/nix-ld/package.nix @@ -46,11 +46,11 @@ rustPlatform.buildRustPackage rec { passthru.tests = nixosTests.nix-ld; - meta = with lib; { + meta = { description = "Run unpatched dynamic binaries on NixOS"; homepage = "https://github.com/Mic92/nix-ld"; - license = licenses.mit; - maintainers = with maintainers; [ mic92 ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mic92 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ni/nix-prefetch/package.nix b/pkgs/by-name/ni/nix-prefetch/package.nix index 25c2bab4565e5..3884e1ad83de5 100644 --- a/pkgs/by-name/ni/nix-prefetch/package.nix +++ b/pkgs/by-name/ni/nix-prefetch/package.nix @@ -97,12 +97,12 @@ stdenv.mkDerivation rec { cp -r contrib/hello_rs $out/share/doc/${pname}/contrib ''; - meta = with lib; { + meta = { description = "Prefetch any fetcher function call, e.g. package sources"; - license = licenses.mit; - maintainers = with maintainers; [ msteen ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ msteen ]; homepage = "https://github.com/msteen/nix-prefetch"; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "nix-prefetch"; }; } 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 391735a278362..7df50b5c3a1a9 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-NSLBIvgo5EdCvZq52d+UbAa7K4uOST++2zbhO9DW38E="; - 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 fb811373056f5..5e1e472bea72c 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 294258cc5b270..8aac69f83605f 100644 --- a/pkgs/by-name/ni/nix-serve/package.nix +++ b/pkgs/by-name/ni/nix-serve/package.nix @@ -68,11 +68,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 3cb661703114d..4e1cb54df063a 100644 --- a/pkgs/by-name/ni/nix-store-veritysetup-generator/package.nix +++ b/pkgs/by-name/ni/nix-store-veritysetup-generator/package.nix @@ -34,10 +34,10 @@ rustPlatform.buildRustPackage rec { stripAllList = [ "bin" ]; - 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 ]; }; } diff --git a/pkgs/by-name/ni/nix-tour/package.nix b/pkgs/by-name/ni/nix-tour/package.nix index 53d9124ff4355..3dd10de537961 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 yuu ]; diff --git a/pkgs/by-name/ni/nix-web/package.nix b/pkgs/by-name/ni/nix-web/package.nix index 443ab1f3d5ae0..e9487d1925f39 100644 --- a/pkgs/by-name/ni/nix-web/package.nix +++ b/pkgs/by-name/ni/nix-web/package.nix @@ -53,12 +53,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 ee621f70daf73..d864721339e3f 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/nixdoc/package.nix b/pkgs/by-name/ni/nixdoc/package.nix index 685848d2b63f1..84781920d1988 100644 --- a/pkgs/by-name/ni/nixdoc/package.nix +++ b/pkgs/by-name/ni/nixdoc/package.nix @@ -21,15 +21,15 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ darwin.Security ]; - meta = with lib; { + meta = { description = "Generate documentation for Nix functions"; mainProgram = "nixdoc"; homepage = "https://github.com/nix-community/nixdoc"; - license = [ licenses.gpl3 ]; - maintainers = with maintainers; [ + license = [ lib.licenses.gpl3 ]; + maintainers = with lib.maintainers; [ infinisil hsjobeki ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ni/nixel/package.nix b/pkgs/by-name/ni/nixel/package.nix index fcbfbb5b98d01..9cbc7196ca350 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 1a3cb7797c4b5..357647be62f57 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-bgrt-plymouth/package.nix b/pkgs/by-name/ni/nixos-bgrt-plymouth/package.nix index 1529df96ebeaf..c6e18d3cabcc3 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 b928487c5277d..22e4fc3e59a92 100644 --- a/pkgs/by-name/ni/nixos-firewall-tool/package.nix +++ b/pkgs/by-name/ni/nixos-firewall-tool/package.nix @@ -34,15 +34,15 @@ stdenvNoCC.mkDerivation { shellcheck nixos-firewall-tool ''; - meta = with lib; { + meta = { description = "A 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 eef7650ffb92c..cf9b0abfdfa54 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 9e58c3561c16a..e0fa35ad6fb7c 100644 --- a/pkgs/by-name/ni/nixos-render-docs/package.nix +++ b/pkgs/by-name/ni/nixos-render-docs/package.nix @@ -74,10 +74,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 b41ee3f470556..97ccf9c63a81d 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 146330eaf0d11..7be01f4d41364 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 16f62c1253545..29e26debfbde3 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-yIwCBm46sgrpTt45uCyyS7M6V0ReGUXVu7tyrjdNqeQ="; - 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/nixseparatedebuginfod/package.nix b/pkgs/by-name/ni/nixseparatedebuginfod/package.nix index 6015405f3ec62..aedeccc3954cc 100644 --- a/pkgs/by-name/ni/nixseparatedebuginfod/package.nix +++ b/pkgs/by-name/ni/nixseparatedebuginfod/package.nix @@ -41,12 +41,12 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { description = "Downloads and provides debug symbols and source code for nix derivations to gdb and other debuginfod-capable debuggers as needed"; homepage = "https://github.com/symphorien/nixseparatedebuginfod"; - license = licenses.gpl3Only; - maintainers = [ maintainers.symphorien ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.symphorien ]; + platforms = lib.platforms.linux; mainProgram = "nixseparatedebuginfod"; }; } diff --git a/pkgs/by-name/nl/nlohmann_json/package.nix b/pkgs/by-name/nl/nlohmann_json/package.nix index de18f352ab5f5..eac11be0c33c3 100644 --- a/pkgs/by-name/nl/nlohmann_json/package.nix +++ b/pkgs/by-name/nl/nlohmann_json/package.nix @@ -46,11 +46,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 5ff2677d3d773..1cef7d6849ecf 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 rec { # 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 c142a8ec3281a..13a991261fe71 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 323bcd43fe580..6be7cc7aaf17d 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 f7ddc9cfb86c5..270e34a4ea97b 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 6613dc365e0d3..43d97cd59106d 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 a10611f3a89a9..78cd3a8a57adb 100644 --- a/pkgs/by-name/nn/nng/package.nix +++ b/pkgs/by-name/nn/nng/package.nix @@ -33,12 +33,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 83ec6b718466a..efc70f199f51f 100644 --- a/pkgs/by-name/nn/nnpdf/package.nix +++ b/pkgs/by-name/nn/nnpdf/package.nix @@ -54,12 +54,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 36426f03ea832..75097b20b97c7 100644 --- a/pkgs/by-name/no/nodehun/package.nix +++ b/pkgs/by-name/no/nodehun/package.nix @@ -61,10 +61,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 6c7a28e9f8e7b..35a4d006590d2 100644 --- a/pkgs/by-name/no/noice/package.nix +++ b/pkgs/by-name/no/noice/package.nix @@ -34,12 +34,12 @@ 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; - maintainers = with maintainers; [ iogamaster ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ iogamaster ]; mainProgram = "noice"; }; } diff --git a/pkgs/by-name/no/noip/package.nix b/pkgs/by-name/no/noip/package.nix index a2eb079990ff2..a0653f3e3c525 100644 --- a/pkgs/by-name/no/noip/package.nix +++ b/pkgs/by-name/no/noip/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Dynamic DNS daemon for no-ip accounts"; homepage = "http://noip.com/download?page=linux"; license = lib.licenses.gpl2Plus; maintainers = [ lib.maintainers.iand675 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "noip2"; }; } diff --git a/pkgs/by-name/no/noise-repellent/package.nix b/pkgs/by-name/no/noise-repellent/package.nix index c02b2a565d9d0..528e69be7bd52 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 6399aa99ddb4a..79da33cc71f71 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 lom ]; diff --git a/pkgs/by-name/no/nomad-autoscaler/package.nix b/pkgs/by-name/no/nomad-autoscaler/package.nix index e83fef2c859c2..9819a051d5f45 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 e6717bfd12013..5733fa89dcb56 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 dd848e09826b9..7123277ab283a 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 0e5e0c6154dc9..006c293467d82 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/normaliz/package.nix b/pkgs/by-name/no/normaliz/package.nix index 5c660e5de41c1..b1e3108d42ae3 100644 --- a/pkgs/by-name/no/normaliz/package.nix +++ b/pkgs/by-name/no/normaliz/package.nix @@ -37,12 +37,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 e65c50c699265..3c4b40a118034 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 602297773727b..3080bb9c92968 100644 --- a/pkgs/by-name/no/norminette/package.nix +++ b/pkgs/by-name/no/norminette/package.nix @@ -23,11 +23,11 @@ python3Packages.buildPythonApplication rec { export PYTHONPATH=norminette:$PYTHONPATH ''; - 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/norouter/package.nix b/pkgs/by-name/no/norouter/package.nix index 73b9273e5d64f..996c1e71b3b66 100644 --- a/pkgs/by-name/no/norouter/package.nix +++ b/pkgs/by-name/no/norouter/package.nix @@ -27,14 +27,14 @@ buildGoModule rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { # Doesn't build with Go >=1.21 # https://github.com/norouter/norouter/issues/165 broken = true; description = "Tool to handle unprivileged networking by using multiple loopback addresses"; homepage = "https://github.com/norouter/norouter"; - license = licenses.asl20; - maintainers = with maintainers; [ blaggacao ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ blaggacao ]; mainProgram = "norouter"; }; } diff --git a/pkgs/by-name/no/norwester-font/package.nix b/pkgs/by-name/no/norwester-font/package.nix index acac0b78e1250..d6b365f0029f1 100644 --- a/pkgs/by-name/no/norwester-font/package.nix +++ b/pkgs/by-name/no/norwester-font/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://jamiewilson.io/norwester"; description = "Condensed geometric sans serif by Jamie Wilson"; - maintainers = with maintainers; [ leenaars ]; - license = licenses.ofl; - platforms = platforms.all; + maintainers = with lib.maintainers; [ leenaars ]; + 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 7930a9626b5cd..d5030efb66339 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 364d5154007e1..7f92cf725e7c1 100644 --- a/pkgs/by-name/no/nostui/package.nix +++ b/pkgs/by-name/no/nostui/package.nix @@ -30,12 +30,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-8ciA1FoGdnU+GWRcYJc8zU2FpUgGwTZSZynvAi1luYo="; - 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 80995ce15d941..771d0c4b5d75f 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/notejot/package.nix b/pkgs/by-name/no/notejot/package.nix index d9d3c1a93c6dd..e54931ee1cb33 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ AndersonTorres ]; + 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 7bb3a83df0996..977e3be74e679 100644 --- a/pkgs/by-name/no/noteshrink/package.nix +++ b/pkgs/by-name/no/noteshrink/package.nix @@ -25,11 +25,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/notify-client/package.nix b/pkgs/by-name/no/notify-client/package.nix index 2b034f8f13c99..4cf860c22583b 100644 --- a/pkgs/by-name/no/notify-client/package.nix +++ b/pkgs/by-name/no/notify-client/package.nix @@ -55,12 +55,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 33405ed0f08fc..c30123d572812 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 e235f4f038062..dec0f271062d3 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-sharp/package.nix b/pkgs/by-name/no/notify-sharp/package.nix index 0871187848c69..f705ac8506422 100644 --- a/pkgs/by-name/no/notify-sharp/package.nix +++ b/pkgs/by-name/no/notify-sharp/package.nix @@ -41,9 +41,9 @@ stdenv.mkDerivation rec { sed -i 's#^[ \t]*DOCDIR=.*$#DOCDIR=$out/lib/monodoc#' ./configure.ac ''; - meta = with lib; { + meta = { description = "D-Bus for .NET"; - platforms = platforms.linux; - license = licenses.mit; + platforms = lib.platforms.linux; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/no/notify/package.nix b/pkgs/by-name/no/notify/package.nix index d2a5ae5280ed9..10416d4707550 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 = "Notify 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 261dd74f0cb47..75be85971f5d7 100644 --- a/pkgs/by-name/no/notifymuch/package.nix +++ b/pkgs/by-name/no/notifymuch/package.nix @@ -44,11 +44,11 @@ python3.pkgs.buildPythonApplication rec { 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 78057b67b3d69..f5f3f9ae041fa 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 d2f60b6ae64ae..fb387922e76fd 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 1bb1c050171d2..8b4f15b0b3802 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 73e5ea5e6632b..249b7069289e1 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 967a761e1d40c..d9855137dc788 100644 --- a/pkgs/by-name/no/noto-fonts-cjk-serif/package.nix +++ b/pkgs/by-name/no/noto-fonts-cjk-serif/package.nix @@ -28,7 +28,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 = '' @@ -43,9 +43,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 ]; diff --git a/pkgs/by-name/no/nova-filters/package.nix b/pkgs/by-name/no/nova-filters/package.nix index 09dec37941ec8..9a591c1a51f2f 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 06cade0434354..a42c2163c0b76 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 d46b03f8080a5..9895a1b822f22 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 9d488a5e61af6..00eaf3987655b 100644 --- a/pkgs/by-name/no/novops/package.nix +++ b/pkgs/by-name/no/novops/package.nix @@ -50,11 +50,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 987731c26c5a1..1c9f1bb2795ec 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 f959cfd02c6fd..9dc4ad2cf4a1e 100644 --- a/pkgs/by-name/no/nowplaying-cli/package.nix +++ b/pkgs/by-name/no/nowplaying-cli/package.nix @@ -30,12 +30,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/np2kai/package.nix b/pkgs/by-name/np/np2kai/package.nix index c1290bde9011a..71a789284bc4b 100644 --- a/pkgs/by-name/np/np2kai/package.nix +++ b/pkgs/by-name/np/np2kai/package.nix @@ -222,11 +222,11 @@ stdenv.mkDerivation rec { cd .. ''; - meta = with lib; { + meta = { description = "PC-9801 series emulator"; homepage = "https://github.com/AZO234/NP2kai"; - license = licenses.mit; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.x86; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.x86; }; } diff --git a/pkgs/by-name/np/npins/package.nix b/pkgs/by-name/np/npins/package.nix index 9d0ab7526f7cc..213f63ee35126 100644 --- a/pkgs/by-name/np/npins/package.nix +++ b/pkgs/by-name/np/npins/package.nix @@ -43,12 +43,12 @@ 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 ]; }; passthru.mkSource = callPackage ./source.nix { }; diff --git a/pkgs/by-name/np/npm-lockfile-fix/package.nix b/pkgs/by-name/np/npm-lockfile-fix/package.nix index e9aae5f92a84b..73084a80f9433 100644 --- a/pkgs/by-name/np/npm-lockfile-fix/package.nix +++ b/pkgs/by-name/np/npm-lockfile-fix/package.nix @@ -24,12 +24,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/nq/nqc/package.nix b/pkgs/by-name/nq/nqc/package.nix index 1ff73d14f4042..ab10ff8fcc0dc 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-udev/package.nix b/pkgs/by-name/nr/nrf-udev/package.nix index 01048df4ec61b..40174f7c70ec4 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 4f45b9a47564b..27d7bc6b1f338 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/nrfconnect/package.nix b/pkgs/by-name/nr/nrfconnect/package.nix index c7f7c529f74d6..be35db5de3a35 100644 --- a/pkgs/by-name/nr/nrfconnect/package.nix +++ b/pkgs/by-name/nr/nrfconnect/package.nix @@ -32,12 +32,12 @@ appimageTools.wrapType2 { --replace 'Exec=AppRun' 'Exec=nrfconnect' ''; - meta = with lib; { + meta = { description = "Nordic Semiconductor nRF Connect for Desktop"; homepage = "https://www.nordicsemi.com/Products/Development-tools/nRF-Connect-for-desktop"; - license = licenses.unfree; - platforms = platforms.linux; - maintainers = with maintainers; [ stargate01 ]; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ stargate01 ]; mainProgram = "nrfconnect"; }; } diff --git a/pkgs/by-name/nr/nrg2iso/package.nix b/pkgs/by-name/nr/nrg2iso/package.nix index 8bd8a00d495b8..c56c230cc13d9 100644 --- a/pkgs/by-name/nr/nrg2iso/package.nix +++ b/pkgs/by-name/nr/nrg2iso/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cp -v nrg2iso $out/bin/nrg2iso ''; - meta = with lib; { + meta = { description = "Linux utils for converting CD (or DVD) image generated by Nero Burning Rom to ISO format"; homepage = "http://gregory.kokanosky.free.fr/v4/linux/nrg2iso.en.html"; - license = licenses.gpl2Plus; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; mainProgram = "nrg2iso"; }; } diff --git a/pkgs/by-name/nr/nrpl/package.nix b/pkgs/by-name/nr/nrpl/package.nix index 29ffdc552a521..4b44dd86d020f 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 0c7aa77aca1dd..b31ed5cf6b085 100644 --- a/pkgs/by-name/nr/nrr/package.nix +++ b/pkgs/by-name/nr/nrr/package.nix @@ -39,11 +39,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 d15f1ca7c4132..fc97a718c9eea 100644 --- a/pkgs/by-name/nr/nrsc5/package.nix +++ b/pkgs/by-name/nr/nrsc5/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation { "-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/nsf-ordlista/package.nix b/pkgs/by-name/ns/nsf-ordlista/package.nix index 8972d1317821a..3f75a924544b4 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 c16c9cea6bad1..b960c9b2d680e 100644 --- a/pkgs/by-name/ns/nsis/package.nix +++ b/pkgs/by-name/ns/nsis/package.nix @@ -63,12 +63,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 43f19cf6f7296..7334c9a45b2aa 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 64cba193ce319..cd55f76fbb989 100644 --- a/pkgs/by-name/ns/nsplist/package.nix +++ b/pkgs/by-name/ns/nsplist/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation { flex -o src/NSPlistLexer.cpp <(tail --lines=+17 src/NSPlistLexer.l) ''; - meta = with lib; { - maintainers = with maintainers; [ matthewbauer ]; + meta = { + maintainers = with lib.maintainers; [ matthewbauer ]; 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/nss_ldap/package.nix b/pkgs/by-name/ns/nss_ldap/package.nix index ae4c02f4394fc..5e6702eead583 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 48ecfec520e98..96ebdb2489e7e 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 210fe4a311a7b..a86a20c8eaaaa 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 96e00f37d0b68..f04ca94a95103 100644 --- a/pkgs/by-name/nt/ntbtls/package.nix +++ b/pkgs/by-name/nt/ntbtls/package.nix @@ -34,12 +34,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/ntfy-alertmanager/package.nix b/pkgs/by-name/nt/ntfy-alertmanager/package.nix index ef87df47b46fd..44921de184a17 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-8a6dvBERegpFYFHQGJppz5tlQioQAudCe3/Q7vro+ZI="; - meta = with lib; { + meta = { description = "A 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 f88180473f2ff..a7b1b666bf33b 100644 --- a/pkgs/by-name/nt/ntirpc/package.nix +++ b/pkgs/by-name/nt/ntirpc/package.nix @@ -44,11 +44,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/ntl/package.nix b/pkgs/by-name/nt/ntl/package.nix index 028f0eae34239..0f961752e1f55 100644 --- a/pkgs/by-name/nt/ntl/package.nix +++ b/pkgs/by-name/nt/ntl/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { doCheck = true; # takes some time - meta = with lib; { + meta = { description = "Library for doing Number Theory"; longDescription = '' NTL is a high-performance, portable C++ library providing data @@ -77,8 +77,8 @@ stdenv.mkDerivation rec { homepage = "http://www.shoup.net/ntl/"; # also locally at "${src}/doc/tour-changes.html"; changelog = "https://www.shoup.net/ntl/doc/tour-changes.html"; - maintainers = teams.sage.members; - license = licenses.gpl2Plus; - platforms = platforms.all; + maintainers = lib.teams.sage.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/nt/ntlm-challenger/package.nix b/pkgs/by-name/nt/ntlm-challenger/package.nix index 6de3791b61450..52099f5108f2f 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/ntp/package.nix b/pkgs/by-name/nt/ntp/package.nix index 2d97a87c33b70..0028b4b11a6d8 100644 --- a/pkgs/by-name/nt/ntp/package.nix +++ b/pkgs/by-name/nt/ntp/package.nix @@ -51,14 +51,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 d7b73bcee57e6..305be433de0ff 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 4ff7ddcb2825a..fdcf2dc1f6c1b 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/nudoku/package.nix b/pkgs/by-name/nu/nudoku/package.nix index 76d639d07c1aa..57b30e555cd45 100644 --- a/pkgs/by-name/nu/nudoku/package.nix +++ b/pkgs/by-name/nu/nudoku/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { configureFlags = lib.optional stdenv.hostPlatform.isMusl "--disable-nls"; - meta = with lib; { + meta = { description = "Ncurses based sudoku game"; mainProgram = "nudoku"; homepage = "http://jubalh.github.io/nudoku/"; - license = licenses.gpl3; - platforms = platforms.all; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/nu/nuked-md/package.nix b/pkgs/by-name/nu/nuked-md/package.nix index 41db685d2755f..e0cfa2fde3522 100644 --- a/pkgs/by-name/nu/nuked-md/package.nix +++ b/pkgs/by-name/nu/nuked-md/package.nix @@ -68,16 +68,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 fb7782df00eea..b6f3061d5d415 100644 --- a/pkgs/by-name/nu/nullidentdmod/package.nix +++ b/pkgs/by-name/nu/nullidentdmod/package.nix @@ -22,12 +22,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/num-utils/package.nix b/pkgs/by-name/nu/num-utils/package.nix index fc032d90699ac..9ece5d4761966 100644 --- a/pkgs/by-name/nu/num-utils/package.nix +++ b/pkgs/by-name/nu/num-utils/package.nix @@ -24,11 +24,11 @@ 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; - maintainers = [ maintainers.catern ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.catern ]; }; } diff --git a/pkgs/by-name/nu/numactl/package.nix b/pkgs/by-name/nu/numactl/package.nix index 9621374c45794..be2eab49d29dc 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 f3128b68709d0..63dfe6f559997 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/numatop/package.nix b/pkgs/by-name/nu/numatop/package.nix index 16f5401f88383..fc9999d3d8c62 100644 --- a/pkgs/by-name/nu/numatop/package.nix +++ b/pkgs/by-name/nu/numatop/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Tool for runtime memory locality characterization and analysis of processes and threads on a NUMA system"; mainProgram = "numatop"; homepage = "https://01.org/numatop"; - license = licenses.bsd3; - maintainers = with maintainers; [ dtzWill ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dtzWill ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/nu/numcpp/package.nix b/pkgs/by-name/nu/numcpp/package.nix index e1f49e44dbd51..fc8ae480a6916 100644 --- a/pkgs/by-name/nu/numcpp/package.nix +++ b/pkgs/by-name/nu/numcpp/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation (finalAttrs: { NIX_CFLAGS_COMPILE = "-Wno-error"; - meta = with lib; { + meta = { description = "Templatized Header Only C++ Implementation of the Python NumPy Library"; homepage = "https://github.com/dpilger26/NumCpp"; - license = licenses.mit; - maintainers = with maintainers; [ spalf ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ spalf ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/nu/numdiff/package.nix b/pkgs/by-name/nu/numdiff/package.nix index dc9c37da0e5d0..5d8f728ade2de 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 e2063ad8d797c..abf22d3897948 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 27254bdebf717..8698ddb28a584 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 0b03d2254e3cd..f0bc2c4cebe33 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 f7e49daef61f1..d76823b203a24 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/numworks-epsilon/package.nix b/pkgs/by-name/nu/numworks-epsilon/package.nix index 337322bfb039d..8807f328fdc59 100644 --- a/pkgs/by-name/nu/numworks-epsilon/package.nix +++ b/pkgs/by-name/nu/numworks-epsilon/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - 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 dbea6e4df79d9..43015fae885c7 100644 --- a/pkgs/by-name/nu/numworks-udev-rules/package.nix +++ b/pkgs/by-name/nu/numworks-udev-rules/package.nix @@ -11,11 +11,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 1176313a2805e..25444f9e2404d 100644 --- a/pkgs/by-name/nu/nuraft/package.nix +++ b/pkgs/by-name/nu/nuraft/package.nix @@ -39,11 +39,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/nut/package.nix b/pkgs/by-name/nu/nut/package.nix index 998549a84e96b..7b5fd19bb6f1b 100644 --- a/pkgs/by-name/nu/nut/package.nix +++ b/pkgs/by-name/nu/nut/package.nix @@ -115,7 +115,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 @@ -123,9 +123,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 c5e700a39a588..a08f346f7be93 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 9af6779710d24..89d92a6e6a1da 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; - maintainers = [ maintainers.AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.free; + maintainers = [ lib.maintainers.AndersonTorres ]; + 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 41d042750c3c4..b17bb52a81adc 100644 --- a/pkgs/by-name/nv/nvc/package.nix +++ b/pkgs/by-name/nv/nvc/package.nix @@ -58,12 +58,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/nvi/package.nix b/pkgs/by-name/nv/nvi/package.nix index d8c3fe35c95ff..30f55bfd3db87 100644 --- a/pkgs/by-name/nv/nvi/package.nix +++ b/pkgs/by-name/nv/nvi/package.nix @@ -41,10 +41,10 @@ stdenv.mkDerivation rec { configureScript = "../dist/configure"; configureFlags = [ "vi_cv_path_preserve=/tmp" ]; - meta = with lib; { + meta = { description = "Berkeley Vi Editor"; - license = licenses.free; - platforms = platforms.unix; + license = lib.licenses.free; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/nvi.x86_64-darwin }; } 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 aedeb2b39599c..d2c3f9670ae3e 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-container-toolkit/package.nix b/pkgs/by-name/nv/nvidia-container-toolkit/package.nix index aa4f28e72e83f..07756ed7c0d00 100644 --- a/pkgs/by-name/nv/nvidia-container-toolkit/package.nix +++ b/pkgs/by-name/nv/nvidia-container-toolkit/package.nix @@ -115,11 +115,11 @@ buildGoModule rec { --subst-var-by glibcbin ${lib.getBin glibc} ''; - meta = with lib; { + meta = { homepage = "https://gitlab.com/nvidia/container-toolkit/container-toolkit"; description = "NVIDIA Container Toolkit"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.asl20; + 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 3dfad2f8eff60..b347142c62a55 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 72cd0054518ce..b8daaab5b14c9 100644 --- a/pkgs/by-name/nv/nvidia-texture-tools/package.nix +++ b/pkgs/by-name/nv/nvidia-texture-tools/package.nix @@ -47,11 +47,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 18655c60c69f0..3a4cd22bc701c 100644 --- a/pkgs/by-name/nv/nvimpager/package.nix +++ b/pkgs/by-name/nv/nvimpager/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { }') ''; - meta = with lib; { + meta = { description = "Use neovim as pager"; longDescription = '' Use neovim as a pager to view manpages, diffs, etc with nvim's syntax @@ -59,9 +59,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 39f2da237ed5f..aea7f2cf32978 100644 --- a/pkgs/by-name/nv/nvme-cli/package.nix +++ b/pkgs/by-name/nv/nvme-cli/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; # https://nvmexpress.org/ description = "NVM-Express user space tooling for Linux"; longDescription = '' @@ -49,9 +49,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 beaeea887c395..342323de42b1b 100644 --- a/pkgs/by-name/nv/nvmet-cli/package.nix +++ b/pkgs/by-name/nv/nvmet-cli/package.nix @@ -20,11 +20,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 0c2e29e8a6e0c..c8f2ab97d551d 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 17ef7dea548be..1a326ff8c56ef 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 5b2ecdb95d519..a784ca49fd34e 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-launchers/package.nix b/pkgs/by-name/nw/nwg-launchers/package.nix index 81d371b51710b..9b6f5feb1bd20 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-menu/package.nix b/pkgs/by-name/nw/nwg-menu/package.nix index 1499989b04515..76594a3e61dc0 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 e6718120726c4..c92fd5f14c689 100644 --- a/pkgs/by-name/nw/nwg-wrapper/package.nix +++ b/pkgs/by-name/nw/nwg-wrapper/package.nix @@ -47,11 +47,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 b610921a54716..c8393b7de4071 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 b316eb36bf348..5fae6244b0344 100644 --- a/pkgs/by-name/nx/nx2elf/package.nix +++ b/pkgs/by-name/nx/nx2elf/package.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation rec { 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/ny/nyancat/package.nix b/pkgs/by-name/ny/nyancat/package.nix index e69cf3e6870ab..e69f49da85e34 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 3627cb2fdfebb..17ffd478aa056 100644 --- a/pkgs/by-name/ny/nylon/package.nix +++ b/pkgs/by-name/ny/nylon/package.nix @@ -29,12 +29,12 @@ 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; - maintainers = with maintainers; [ edwtjo ]; - platforms = platforms.linux; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ edwtjo ]; + 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 9ef34e4ddf7af..f7d1498d11672 100644 --- a/pkgs/by-name/ny/nyx/package.nix +++ b/pkgs/by-name/ny/nyx/package.nix @@ -20,11 +20,11 @@ buildPythonApplication rec { # ./run_tests.py returns `TypeError: testFailure() takes exactly 1 argument` doCheck = false; - 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/oa/oak/package.nix b/pkgs/by-name/oa/oak/package.nix index 3584fccfc3945..6cc794ec4a241 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 d1fc3937f93e7..709f93a9ecb9c 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 4754902de053d..1857dd54640ca 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 92c52aa4a9921..2f9fedaf0914c 100644 --- a/pkgs/by-name/oa/oatpp/package.nix +++ b/pkgs/by-name/oa/oatpp/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { # Tests fail on darwin. See https://github.com/NixOS/nixpkgs/pull/105419#issuecomment-735826894 doCheck = !stdenv.hostPlatform.isDarwin; - 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 11422054cf03a..825afed2d0cae 100644 --- a/pkgs/by-name/oa/oauth2-proxy/package.nix +++ b/pkgs/by-name/oa/oauth2-proxy/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # Taken from https://github.com/oauth2-proxy/oauth2-proxy/blob/master/Makefile ldflags = [ "-X main.VERSION=${version}" ]; - 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; - maintainers = teams.serokell.members; + license = lib.licenses.mit; + maintainers = lib.teams.serokell.members; mainProgram = "oauth2-proxy"; }; } diff --git a/pkgs/by-name/oa/oauth2l/package.nix b/pkgs/by-name/oa/oauth2l/package.nix index 9e89203858ab1..98fe8f0258ad8 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 2e3b729cf6ebd..3439275ba5804 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 92da529579a26..31366d762b12a 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 d38525342c417..6e1fcf7b54d5d 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 e5d23c750d8c7..f37f0c8fe0c5b 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 2d3364cc2a832..3d5c2c9995455 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 9b1a0186cfc59..d5794da17d47d 100644 --- a/pkgs/by-name/ob/obexftp/package.nix +++ b/pkgs/by-name/ob/obexftp/package.nix @@ -38,10 +38,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/oc/ocf-resource-agents/package.nix b/pkgs/by-name/oc/ocf-resource-agents/package.nix index b16cfd631d140..7b1fc2bdc5b92 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 fca8f519d0be0..45b1d471d9015 100644 --- a/pkgs/by-name/oc/oci-cli/package.nix +++ b/pkgs/by-name/oc/oci-cli/package.nix @@ -103,13 +103,13 @@ buildPythonApplication rec { " oci_cli " ]; - 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; [ ilian ]; + maintainers = with lib.maintainers; [ ilian ]; }; } 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 3e572473abdee..a5343a1851069 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/oclgrind/package.nix b/pkgs/by-name/oc/oclgrind/package.nix index 6a16389664a1d..19f3e4fa04c39 100644 --- a/pkgs/by-name/oc/oclgrind/package.nix +++ b/pkgs/by-name/oc/oclgrind/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { "-DCLANG_ROOT=${llvmPackages_12.clang-unwrapped}" ]; - meta = with lib; { + meta = { description = "OpenCL device simulator and debugger"; homepage = "https://github.com/jrprice/oclgrind"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ athas ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ athas ]; }; } diff --git a/pkgs/by-name/oc/ocm/package.nix b/pkgs/by-name/oc/ocm/package.nix index f24654a0c479a..0c017543dbddd 100644 --- a/pkgs/by-name/oc/ocm/package.nix +++ b/pkgs/by-name/oc/ocm/package.nix @@ -50,12 +50,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 55f69c7026967..997e4b6311c05 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 ea47d6282d692..962ed2722fb3a 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/ocserv/package.nix b/pkgs/by-name/oc/ocserv/package.nix index f6dbd0116827f..69585bbaef874 100644 --- a/pkgs/by-name/oc/ocserv/package.nix +++ b/pkgs/by-name/oc/ocserv/package.nix @@ -52,10 +52,10 @@ stdenv.mkDerivation rec { libxcrypt ]; - meta = with lib; { + meta = { homepage = "https://gitlab.com/openconnect/ocserv"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; description = "OpenConnect VPN server (ocserv), a server for the OpenConnect VPN client"; - maintainers = with maintainers; [ neverbehave ]; + maintainers = with lib.maintainers; [ neverbehave ]; }; } diff --git a/pkgs/by-name/oc/octomap/package.nix b/pkgs/by-name/oc/octomap/package.nix index cf4e530e425e5..9b0e73d08ff3d 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 e3fd3bc3bdee1..5be11dc6c3f6e 100644 --- a/pkgs/by-name/oc/octoprint/package.nix +++ b/pkgs/by-name/oc/octoprint/package.nix @@ -257,12 +257,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; [ abbradar gebner WhittlesJr diff --git a/pkgs/by-name/oc/octopus-caller/package.nix b/pkgs/by-name/oc/octopus-caller/package.nix index 87fae180408f2..59083e235d069 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/octopus/package.nix b/pkgs/by-name/oc/octopus/package.nix index c735d07e3cf3d..96a9fa4c2c232 100644 --- a/pkgs/by-name/oc/octopus/package.nix +++ b/pkgs/by-name/oc/octopus/package.nix @@ -95,11 +95,11 @@ stdenv.mkDerivation rec { passthru = lib.attrsets.optionalAttrs enableMpi { inherit mpi; }; - meta = with lib; { + meta = { description = "Real-space time dependent density-functional theory code"; homepage = "https://octopus-code.org"; - maintainers = with maintainers; [ markuskowa ]; - license = with licenses; [ + maintainers = with lib.maintainers; [ markuskowa ]; + license = with lib.licenses; [ gpl2Only asl20 lgpl3Plus diff --git a/pkgs/by-name/oc/octosql/package.nix b/pkgs/by-name/oc/octosql/package.nix index 51be01c38baff..438682ee3a439 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/ode/package.nix b/pkgs/by-name/od/ode/package.nix index 75d3441b86702..7fe36c416728d 100644 --- a/pkgs/by-name/od/ode/package.nix +++ b/pkgs/by-name/od/ode/package.nix @@ -24,17 +24,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 40beb4b2a582c..c8d9e926704fc 100644 --- a/pkgs/by-name/od/odin2/package.nix +++ b/pkgs/by-name/od/odin2/package.nix @@ -78,12 +78,12 @@ stdenv.mkDerivation rec { cp -r CLAP/Odin2.clap $out/lib/clap ''; - 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/odoo/package.nix b/pkgs/by-name/od/odoo/package.nix index 46ccb1773b44d..cf972ad3e90ba 100644 --- a/pkgs/by-name/od/odoo/package.nix +++ b/pkgs/by-name/od/odoo/package.nix @@ -98,11 +98,11 @@ python.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Open Source ERP and CRM"; homepage = "https://www.odoo.com/"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ mkg20001 siriobalmelli ]; diff --git a/pkgs/by-name/od/odoo16/package.nix b/pkgs/by-name/od/odoo16/package.nix index 73791dbcfcf1a..deab8ad8a707d 100644 --- a/pkgs/by-name/od/odoo16/package.nix +++ b/pkgs/by-name/od/odoo16/package.nix @@ -94,10 +94,10 @@ python.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Open Source ERP and CRM"; homepage = "https://www.odoo.com/"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ mkg20001 ]; }; } diff --git a/pkgs/by-name/od/odoo17/package.nix b/pkgs/by-name/od/odoo17/package.nix index 698afb37d1039..d9a93422954ad 100644 --- a/pkgs/by-name/od/odoo17/package.nix +++ b/pkgs/by-name/od/odoo17/package.nix @@ -109,11 +109,11 @@ python.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Open Source ERP and CRM"; homepage = "https://www.odoo.com/"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ mkg20001 siriobalmelli ]; diff --git a/pkgs/by-name/od/odp-dpdk/package.nix b/pkgs/by-name/od/odp-dpdk/package.nix index 163d1959c47c2..0827f10f55381 100644 --- a/pkgs/by-name/od/odp-dpdk/package.nix +++ b/pkgs/by-name/od/odp-dpdk/package.nix @@ -54,11 +54,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 e4d51a46932c4..ccef813b83914 100644 --- a/pkgs/by-name/od/odpic/package.nix +++ b/pkgs/by-name/od/odpic/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation { ''} ''; - meta = with lib; { + meta = { description = "Oracle ODPI-C library"; homepage = "https://oracle.github.io/odpi/"; - maintainers = with maintainers; [ mkazulak ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ mkazulak ]; + 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 33bcc22fd52db..b03d7c9edd2a1 100644 --- a/pkgs/by-name/od/odroid-xu3-bootloader/package.nix +++ b/pkgs/by-name/od/odroid-xu3-bootloader/package.nix @@ -33,10 +33,10 @@ 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 = with maintainers; [ abbradar ]; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/od/odyssey/package.nix b/pkgs/by-name/od/odyssey/package.nix index c57bd1c37e56b..9fe188b51ef7e 100644 --- a/pkgs/by-name/od/odyssey/package.nix +++ b/pkgs/by-name/od/odyssey/package.nix @@ -43,10 +43,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 61540a7b6cf9e..5df9d20cd3e4f 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 0243bab6a4583..42d0bc25f721d 100644 --- a/pkgs/by-name/of/offensive-azure/package.nix +++ b/pkgs/by-name/of/offensive-azure/package.nix @@ -47,10 +47,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 4662170b36c0c..2b3f8e6cd4fad 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; - maintainers = [ maintainers.AndersonTorres ]; + license = lib.licenses.ofl; + maintainers = [ lib.maintainers.AndersonTorres ]; }; } diff --git a/pkgs/by-name/of/offlineimap/package.nix b/pkgs/by-name/of/offlineimap/package.nix index 97cc447cedb4c..7e269dcafb0a2 100644 --- a/pkgs/by-name/of/offlineimap/package.nix +++ b/pkgs/by-name/of/offlineimap/package.nix @@ -87,10 +87,10 @@ python3.pkgs.buildPythonApplication rec { passthru.tests.version = testers.testVersion { package = offlineimap; }; - meta = with lib; { + meta = { description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers"; homepage = "http://offlineimap.org"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; mainProgram = "offlineimap"; }; diff --git a/pkgs/by-name/of/offrss/package.nix b/pkgs/by-name/of/offrss/package.nix index 4bc3eb3a8094a..095c9488488d1 100644 --- a/pkgs/by-name/of/offrss/package.nix +++ b/pkgs/by-name/of/offrss/package.nix @@ -47,10 +47,10 @@ stdenv.mkDerivation rec { sha256 = "1akw1x84jj2m9z60cvlvmz21qwlaywmw18pl7lgp3bj5nw6250p6"; }; - meta = with lib; { + meta = { homepage = "http://vicerveza.homeunix.net/~viric/cgi-bin/offrss"; description = "Offline RSS/Atom reader"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; maintainers = [ ]; platforms = lib.platforms.linux; mainProgram = "offrss"; diff --git a/pkgs/by-name/of/offzip/package.nix b/pkgs/by-name/of/offzip/package.nix index 6b422ff435e8a..91432b98215c9 100644 --- a/pkgs/by-name/of/offzip/package.nix +++ b/pkgs/by-name/of/offzip/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { "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/oggvideotools/package.nix b/pkgs/by-name/og/oggvideotools/package.nix index 11916fc4a790d..2a0e2a74427e1 100644 --- a/pkgs/by-name/og/oggvideotools/package.nix +++ b/pkgs/by-name/og/oggvideotools/package.nix @@ -59,10 +59,10 @@ stdenv.mkDerivation rec { libvorbis ]; - meta = with lib; { + meta = { description = "Toolbox for manipulating and creating Ogg video files"; homepage = "http://www.streamnik.de/oggvideotools.html"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; maintainers = [ ]; # Compilation error on Darwin: # error: invalid argument '--std=c++0x' not allowed with 'C' diff --git a/pkgs/by-name/og/ograc/package.nix b/pkgs/by-name/og/ograc/package.nix index aed6c9a232bb7..87d54bcb8ee20 100644 --- a/pkgs/by-name/og/ograc/package.nix +++ b/pkgs/by-name/og/ograc/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage { }; cargoHash = "sha256-HAeEd7HY+hbTUOkIt6aTfvPYLRPtdAcUGvkuBUMjohA="; - 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 ef9985bc51e36..9abf4aa2d6f0d 100644 --- a/pkgs/by-name/og/oguri/package.nix +++ b/pkgs/by-name/og/oguri/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { wayland-protocols ]; - meta = with lib; { + meta = { homepage = "https://github.com/vilhalmer/oguri/"; description = "Very nice animated wallpaper daemon for Wayland compositors"; - license = licenses.mit; - maintainers = with maintainers; [ AndersonTorres ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ AndersonTorres ]; 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 b7f08cffd8852..496984eb01789 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/package.nix b/pkgs/by-name/oh/oh/package.nix index 0277d0194405c..e393093405a34 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 5f2eeb6492b2e..d880386b9a719 100644 --- a/pkgs/by-name/oi/oidc-agent/package.nix +++ b/pkgs/by-name/oi/oidc-agent/package.nix @@ -61,10 +61,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 4be824f00e4c2..b38a18b126e31 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 58ad6883843af..34635a0fdcb8a 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/ok/okolors/package.nix b/pkgs/by-name/ok/okolors/package.nix index 91f972e8cb251..a3c86dbed39c8 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-xRCxpmIocvkg1ErYVqBLHb/jXV2eWeWHg4IO/QsnnF0="; - 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 b898972616589..ee47cccad8df9 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 991c08deb5246..a7cd9ddb0262b 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 a52d3630c6356..c01d5b2393f1f 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 05402cecb1a03..8b3b6cd02a2e0 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/olvid/package.nix b/pkgs/by-name/ol/olvid/package.nix index 85798297b37ce..4b3d9537ddb2f 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/om4/package.nix b/pkgs/by-name/om/om4/package.nix index 078bc8510a4ae..9c6761b040752 100644 --- a/pkgs/by-name/om/om4/package.nix +++ b/pkgs/by-name/om/om4/package.nix @@ -25,17 +25,17 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-m4" ]; - meta = with lib; { + meta = { description = "Portable OpenBSD m4 macro processor"; homepage = "https://github.com/ibara/m4"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 bsd3 isc publicDomain ]; mainProgram = "m4"; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/om/omni-gtk-theme/package.nix b/pkgs/by-name/om/omni-gtk-theme/package.nix index 971a2c4eada7b..ed722f14fe60d 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 2f96914b07028..8f50f26552ec3 100644 --- a/pkgs/by-name/om/omnictl/package.nix +++ b/pkgs/by-name/om/omnictl/package.nix @@ -38,11 +38,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 47a546781e342..f26454ad98f1f 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/omorfi/package.nix b/pkgs/by-name/om/omorfi/package.nix index 24c00b34e7afd..75e2d3ba7d7f5 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/omping/package.nix b/pkgs/by-name/om/omping/package.nix index 4e39e8294d83c..dfc7bb19c699d 100644 --- a/pkgs/by-name/om/omping/package.nix +++ b/pkgs/by-name/om/omping/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Open Multicast Ping (omping) is a tool for testing IPv4/IPv6 multicast connectivity on a LAN"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; inherit (src.meta) homepage; mainProgram = "omping"; }; diff --git a/pkgs/by-name/on/onboard/package.nix b/pkgs/by-name/on/onboard/package.nix index 57fcce1ca6ea1..15545f0fba585 100644 --- a/pkgs/by-name/on/onboard/package.nix +++ b/pkgs/by-name/on/onboard/package.nix @@ -194,10 +194,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 = with maintainers; [ ]; - license = licenses.gpl3; + maintainers = with lib.maintainers; [ ]; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/on/onedrivegui/package.nix b/pkgs/by-name/on/onedrivegui/package.nix index 92ba53477e9ca..73280358be5c3 100644 --- a/pkgs/by-name/on/onedrivegui/package.nix +++ b/pkgs/by-name/on/onedrivegui/package.nix @@ -95,12 +95,12 @@ python3Packages.buildPythonApplication rec { --add-flags $out/${python3Packages.python.sitePackages}/OneDriveGUI.py ''; - meta = with lib; { + meta = { homepage = "https://github.com/bpozdena/OneDriveGUI"; description = "Simple GUI for Linux OneDrive Client, with multi-account support"; mainProgram = "onedrivegui"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ chewblacka ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ chewblacka ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/on/onedriver/package.nix b/pkgs/by-name/on/onedriver/package.nix index 76c5ae58f0c39..62c55a1740b87 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 0f71603ef342b..050bc76770c44 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 f7b57d070b721..b05c01c78c1a4 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 b1392e7b00f7f..636f5a1135fd8 100644 --- a/pkgs/by-name/on/onesixtyone/package.nix +++ b/pkgs/by-name/on/onesixtyone/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { install -D onesixtyone $out/bin/onesixtyone ''; - 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 37c9a05684aae..71f6cb2f9b994 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 4f6e11d6a0ad2..8f667789d2eba 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 39bc5c47ed4c5..7f82795681c6b 100644 --- a/pkgs/by-name/on/onioncircuits/package.nix +++ b/pkgs/by-name/on/onioncircuits/package.nix @@ -38,11 +38,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-cli/package.nix b/pkgs/by-name/on/onlykey-cli/package.nix index df499ea1a69c3..fb45e75d978ce 100644 --- a/pkgs/by-name/on/onlykey-cli/package.nix +++ b/pkgs/by-name/on/onlykey-cli/package.nix @@ -32,11 +32,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/onmetal-image/package.nix b/pkgs/by-name/on/onmetal-image/package.nix index 1ab6200b53701..6b8dafb229a59 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/oobicpl/package.nix b/pkgs/by-name/oo/oobicpl/package.nix index c8d5a85b860e0..d590d272249da 100644 --- a/pkgs/by-name/oo/oobicpl/package.nix +++ b/pkgs/by-name/oo/oobicpl/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { "-DOOBICPL_BUILD_SHARED_LIBS=TRUE" ]; - meta = with lib; { + meta = { homepage = "https://github.com/BIC-MNI/oobicpl"; description = "Brain Imaging Centre object-oriented programming library (and tools)"; - 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/oo/oonf-olsrd2/package.nix b/pkgs/by-name/oo/oonf-olsrd2/package.nix index 8f64185dd51b8..1a8be5893c802 100644 --- a/pkgs/by-name/oo/oonf-olsrd2/package.nix +++ b/pkgs/by-name/oo/oonf-olsrd2/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { cmake ]; - 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/op/opae/package.nix b/pkgs/by-name/op/opae/package.nix index 1606a77b60d82..d58f91faf5be2 100644 --- a/pkgs/by-name/op/opae/package.nix +++ b/pkgs/by-name/op/opae/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DBUILD_ASE=1" ]; - meta = with lib; { + meta = { description = "Open Programmable Acceleration Engine SDK"; homepage = "https://01.org/opae"; - license = licenses.bsd3; + license = lib.licenses.bsd3; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ thoughtpolice ]; + maintainers = with lib.maintainers; [ thoughtpolice ]; # Needs a major update, not compatible with gcc-11. broken = true; }; diff --git a/pkgs/by-name/op/opam2json/package.nix b/pkgs/by-name/op/opam2json/package.nix index 68a35dd36aa73..90ce3f39ab1f4 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 31f00279f8756..0b4a77bd80bde 100644 --- a/pkgs/by-name/op/opcua-commander/package.nix +++ b/pkgs/by-name/op/opcua-commander/package.nix @@ -39,11 +39,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 9df85f40a8240..bd23345f83794 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-fonts/package.nix b/pkgs/by-name/op/open-fonts/package.nix index a0ff9f38ede87..fdce45076a16f 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 1bdb2f2cade42..9645ff4abaa40 100644 --- a/pkgs/by-name/op/open-fprintd/package.nix +++ b/pkgs/by-name/op/open-fprintd/package.nix @@ -51,10 +51,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-isns/package.nix b/pkgs/by-name/op/open-isns/package.nix index 8488668da2b2b..49b61c7611428 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-stage-control/package.nix b/pkgs/by-name/op/open-stage-control/package.nix index 7df60380a38fd..3293a45f9a2fa 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"; }; } diff --git a/pkgs/by-name/op/open-wbo/package.nix b/pkgs/by-name/op/open-wbo/package.nix index 0776d66a8ae2d..b41627ce17d7c 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 = with maintainers; [ gebner ]; - platforms = platforms.unix; - license = licenses.mit; + maintainers = with lib.maintainers; [ gebner ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; homepage = "http://sat.inesc-id.pt/open-wbo/"; }; } diff --git a/pkgs/by-name/op/openapi-tui/package.nix b/pkgs/by-name/op/openapi-tui/package.nix index ec88d90d8a479..4e7b20e76bd91 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/openbgpd/package.nix b/pkgs/by-name/op/openbgpd/package.nix index a6decdcf8ff6f..bfe170b1d394a 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 = "A 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/openboardview/package.nix b/pkgs/by-name/op/openboardview/package.nix index c68764ee1f6af..cf4b5a319bdd4 100644 --- a/pkgs/by-name/op/openboardview/package.nix +++ b/pkgs/by-name/op/openboardview/package.nix @@ -79,12 +79,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/opencbm/package.nix b/pkgs/by-name/op/opencbm/package.nix index 88fc9aa8a15b8..c8a41cafdb65f 100644 --- a/pkgs/by-name/op/opencbm/package.nix +++ b/pkgs/by-name/op/opencbm/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { ncurses ]; - 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 @@ -47,8 +47,8 @@ stdenv.mkDerivation rec { and the XUM1541 devices (a.k.a. "ZoomFloppy"). ''; homepage = "https://spiro.trikaliotis.net/opencbm"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.sander ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sander ]; }; } diff --git a/pkgs/by-name/op/opencc/package.nix b/pkgs/by-name/op/opencc/package.nix index 54360185cd8f9..baebc4b8db66f 100644 --- a/pkgs/by-name/op/opencc/package.nix +++ b/pkgs/by-name/op/opencc/package.nix @@ -42,9 +42,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 @@ -52,7 +52,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/opencl-clang/package.nix b/pkgs/by-name/op/opencl-clang/package.nix index 3a195fc68aa63..a04bc53d70336 100644 --- a/pkgs/by-name/op/opencl-clang/package.nix +++ b/pkgs/by-name/op/opencl-clang/package.nix @@ -115,12 +115,12 @@ stdenv.mkDerivation { inherit passthru; - meta = with lib; { + meta = { homepage = "https://github.com/intel/opencl-clang/"; description = "Clang wrapper library with an OpenCL-oriented API and the ability to compile OpenCL C kernels to SPIR-V modules"; - license = licenses.ncsa; + license = lib.licenses.ncsa; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; # error: invalid value 'CL3.0' in '-cl-std=CL3.0' broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/op/opencorsairlink/package.nix b/pkgs/by-name/op/opencorsairlink/package.nix index d4add4a0e6f49..017bbc8254492 100644 --- a/pkgs/by-name/op/opencorsairlink/package.nix +++ b/pkgs/by-name/op/opencorsairlink/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { }) ]; - 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/openct/package.nix b/pkgs/by-name/op/openct/package.nix index 2b25bf2614c55..90719591c72a9 100644 --- a/pkgs/by-name/op/openct/package.nix +++ b/pkgs/by-name/op/openct/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { mkdir -p $out/etc ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "https://github.com/OpenSC/openct/"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; description = "Drivers for several smart card readers"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/op/openctm/package.nix b/pkgs/by-name/op/openctm/package.nix index bb6bd763ea1dd..239938a9ff097 100644 --- a/pkgs/by-name/op/openctm/package.nix +++ b/pkgs/by-name/op/openctm/package.nix @@ -63,10 +63,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 51714e8bbd389..0e9db65e8f55b 100644 --- a/pkgs/by-name/op/opendbx/package.nix +++ b/pkgs/by-name/op/opendbx/package.nix @@ -39,11 +39,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/opendkim/package.nix b/pkgs/by-name/op/opendkim/package.nix index d61d03069f029..34f137b057b3f 100644 --- a/pkgs/by-name/op/opendkim/package.nix +++ b/pkgs/by-name/op/opendkim/package.nix @@ -47,11 +47,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 = with maintainers; [ abbradar ]; - license = licenses.bsd3; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ abbradar ]; + 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 9dba438fa06ea..dbab328cdbad6 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 ]; - maintainers = teams.helsinki-systems.members; + maintainers = lib.teams.helsinki-systems.members; }; } diff --git a/pkgs/by-name/op/opendune/package.nix b/pkgs/by-name/op/opendune/package.nix index 38727c388ebbe..7f6df84157c48 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/opendungeons/package.nix b/pkgs/by-name/op/opendungeons/package.nix index 7478934a259ca..cb2a2a7a770d8 100644 --- a/pkgs/by-name/op/opendungeons/package.nix +++ b/pkgs/by-name/op/opendungeons/package.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation { "-DOD_TREAT_WARNINGS_AS_ERRORS=FALSE" ]; - meta = with lib; { + meta = { description = "Open source, real time strategy game sharing game elements with the Dungeon Keeper series and Evil Genius"; mainProgram = "opendungeons"; homepage = "https://opendungeons.github.io"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus zlib mit @@ -76,6 +76,6 @@ stdenv.mkDerivation { ofl cc-by-30 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/op/openexrid-unstable/package.nix b/pkgs/by-name/op/openexrid-unstable/package.nix index 02e14959dc877..ed165fb45a97a 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 613cc2fec6715..a28f937015257 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 6654538bd5716..b4013da8fe2e5 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 cd7df6534b051..2c116b27fbe55 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 674ee79287630..16aab8c283820 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 c2ee06353a339..4fead12e27ec5 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/openhmd/package.nix b/pkgs/by-name/op/openhmd/package.nix index f2d8b845d7c28..fd2a1271b009d 100644 --- a/pkgs/by-name/op/openhmd/package.nix +++ b/pkgs/by-name/op/openhmd/package.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation rec { install -D examples/opengl/openglexample $out/bin/openhmd-example-opengl ''; - meta = with lib; { + meta = { homepage = "http://www.openhmd.net"; # https does not work description = "Library API and drivers immersive technology"; longDescription = '' @@ -66,8 +66,8 @@ stdenv.mkDerivation rec { Head-mounted Displays (HMDs), controllers and trackers like Oculus Rift, HTC Vive, Windows Mixed Reality, and etc. ''; - license = licenses.boost; - maintainers = with maintainers; [ oxij ]; - platforms = platforms.unix; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ oxij ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/op/openjk/package.nix b/pkgs/by-name/op/openjk/package.nix index 15b89654ad4eb..a4ffd8101e0be 100644 --- a/pkgs/by-name/op/openjk/package.nix +++ b/pkgs/by-name/op/openjk/package.nix @@ -110,11 +110,11 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Open-source engine for Star Wars Jedi Academy game"; homepage = "https://github.com/JACoders/OpenJK"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ tgunnoe ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ tgunnoe ]; }; } diff --git a/pkgs/by-name/op/openmesh/package.nix b/pkgs/by-name/op/openmesh/package.nix index 2a1e065044a81..f342c4b7ebfe1 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 a570659ec2908..64fdb63e8292e 100644 --- a/pkgs/by-name/op/openmm/package.nix +++ b/pkgs/by-name/op/openmm/package.nix @@ -116,16 +116,16 @@ stdenv.mkDerivation rec { # 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 7a7014f310e6c..a0a2e80ce28d9 100644 --- a/pkgs/by-name/op/openmsx/package.nix +++ b/pkgs/by-name/op/openmsx/package.nix @@ -62,20 +62,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 = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ AndersonTorres ]; + 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 a92a32c151bba..aeff2b4051ea5 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 6d1b867d4f559..196b49f67ab79 100644 --- a/pkgs/by-name/op/openobex/package.nix +++ b/pkgs/by-name/op/openobex/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { --replace '\$'{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/openpam/package.nix b/pkgs/by-name/op/openpam/package.nix index fa68439a5630e..88737b2587abb 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; - maintainers = with maintainers; [ matthewbauer ]; - license = licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ matthewbauer ]; + 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 46c07f2be79b5..6df4582a7a59d 100644 --- a/pkgs/by-name/op/openpgp-ca/package.nix +++ b/pkgs/by-name/op/openpgp-ca/package.nix @@ -57,12 +57,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 331b787bb2fd7..9de63d2a7387f 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/openrct2/package.nix b/pkgs/by-name/op/openrct2/package.nix index 5966b001e0b48..5538bf21104b6 100644 --- a/pkgs/by-name/op/openrct2/package.nix +++ b/pkgs/by-name/op/openrct2/package.nix @@ -141,12 +141,12 @@ stdenv.mkDerivation { + (versionCheck "TITLE_SEQUENCE" title-sequences-version) ); - meta = with lib; { + meta = { description = "Open source re-implementation of RollerCoaster Tycoon 2 (original game required)"; homepage = "https://openrct2.io/"; downloadPage = "https://github.com/OpenRCT2/OpenRCT2/releases"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/by-name/op/openring/package.nix b/pkgs/by-name/op/openring/package.nix index 0d7d7c0b3298f..0c644bdc7167d 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/openrussian-cli/package.nix b/pkgs/by-name/op/openrussian-cli/package.nix index 64c15b8092b78..cc92d12d38e26 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 9eac6e3074da7..ea38b7582b723 100644 --- a/pkgs/by-name/op/opensaml-cpp/package.nix +++ b/pkgs/by-name/op/opensaml-cpp/package.nix @@ -52,12 +52,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/opensbi/package.nix b/pkgs/by-name/op/opensbi/package.nix index 6dabf942c2005..6719359b14824 100644 --- a/pkgs/by-name/op/opensbi/package.nix +++ b/pkgs/by-name/op/opensbi/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { dontStrip = true; dontPatchELF = true; - meta = with lib; { + meta = { description = "RISC-V Open Source Supervisor Binary Interface"; homepage = "https://github.com/riscv-software-src/opensbi"; - license = licenses.bsd2; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ ius nickcao zhaofengli diff --git a/pkgs/by-name/op/opensc/package.nix b/pkgs/by-name/op/opensc/package.nix index 82b371875ce4a..9ef4eae18ab65 100644 --- a/pkgs/by-name/op/opensc/package.nix +++ b/pkgs/by-name/op/opensc/package.nix @@ -87,11 +87,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 e28f9fd4c07d9..7aaeb14ae3890 100644 --- a/pkgs/by-name/op/openscad-lsp/package.nix +++ b/pkgs/by-name/op/openscad-lsp/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { # no tests exist doCheck = false; - meta = with lib; { + meta = { description = "LSP (Language Server Protocol) server for OpenSCAD"; mainProgram = "openscad-lsp"; homepage = "https://github.com/Leathong/openscad-LSP"; - license = licenses.asl20; - maintainers = with maintainers; [ c-h-johnson ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ c-h-johnson ]; }; } diff --git a/pkgs/by-name/op/openseachest/package.nix b/pkgs/by-name/op/openseachest/package.nix index 94b42f0f2bfe0..fbf851bec790f 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 5a0d1ee8a6786..ccb6dc93ba17a 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/openslp/package.nix b/pkgs/by-name/op/openslp/package.nix index 503daabb90bdf..b17ff1c596783 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 8da103bce1d00..d9a7f76fcaecc 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 198c532781342..63e54618770f0 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/opensnitch-ui/package.nix b/pkgs/by-name/op/opensnitch-ui/package.nix index 094625d846de5..1d6df86f2733b 100644 --- a/pkgs/by-name/op/opensnitch-ui/package.nix +++ b/pkgs/by-name/op/opensnitch-ui/package.nix @@ -70,12 +70,12 @@ python311Packages.buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Application firewall"; mainProgram = "opensnitch-ui"; homepage = "https://github.com/evilsocket/opensnitch/wiki"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ onny ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ onny ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/op/opensnitch/package.nix b/pkgs/by-name/op/opensnitch/package.nix index 39b4e6dfad790..44ace02d29a8a 100644 --- a/pkgs/by-name/op/opensnitch/package.nix +++ b/pkgs/by-name/op/opensnitch/package.nix @@ -98,12 +98,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Application firewall"; mainProgram = "opensnitchd"; homepage = "https://github.com/evilsocket/opensnitch/wiki"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ onny ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ onny ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/op/opensoundmeter/package.nix b/pkgs/by-name/op/opensoundmeter/package.nix index 211c01f3e1202..8f544d59a9e38 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 = with maintainers; [ orivej ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/op/opensp/package.nix b/pkgs/by-name/op/opensp/package.nix index bd1e08177a400..2fe17df7dccd7 100644 --- a/pkgs/by-name/op/opensp/package.nix +++ b/pkgs/by-name/op/opensp/package.nix @@ -70,11 +70,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/openspin/package.nix b/pkgs/by-name/op/openspin/package.nix index 93f18f27bc86a..eddd3fa06d89c 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 95f65aa83d79f..d6b657fbcdbda 100644 --- a/pkgs/by-name/op/openswitcher/package.nix +++ b/pkgs/by-name/op/openswitcher/package.nix @@ -71,11 +71,11 @@ 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 ]; }; } diff --git a/pkgs/by-name/op/opentracker/package.nix b/pkgs/by-name/op/opentracker/package.nix index 06a138381228b..079f4fbcfd1cd 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/opentype-sanitizer/package.nix b/pkgs/by-name/op/opentype-sanitizer/package.nix index fdd207cbef2e5..59ed0ebcd0420 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/openvas-smb/package.nix b/pkgs/by-name/op/openvas-smb/package.nix index fd6e14ea407f6..8b6f6917ff942 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/openvmm/package.nix b/pkgs/by-name/op/openvmm/package.nix index 14e659cc14594..d1ff8b4e69457 100644 --- a/pkgs/by-name/op/openvmm/package.nix +++ b/pkgs/by-name/op/openvmm/package.nix @@ -43,12 +43,12 @@ rustPlatform.buildRustPackage rec { }; }; - 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/openzone-cursors/package.nix b/pkgs/by-name/op/openzone-cursors/package.nix index f575ae22a49f5..25ce836530faa 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 f7a1a9a049674..8ee10f046ac87 100644 --- a/pkgs/by-name/op/openzwave/package.nix +++ b/pkgs/by-name/op/openzwave/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { --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 72ee637d98a58..dcc649aa75bf9 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 d78c3463084f1..b30918ebacdf4 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 ae0ffffecc65d..b2d1ae9f2b8fd 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 dc2b6486dbc06..ce0f212247a6f 100644 --- a/pkgs/by-name/op/opshin/package.nix +++ b/pkgs/by-name/op/opshin/package.nix @@ -33,11 +33,11 @@ python3.pkgs.buildPythonApplication rec { "uplc" ]; - meta = with lib; { + meta = { description = "Simple pythonic programming language for Smart Contracts on Cardano"; homepage = "https://opshin.dev"; - license = licenses.mit; - maintainers = with maintainers; [ t4ccer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ t4ccer ]; mainProgram = "opshin"; }; } diff --git a/pkgs/by-name/op/optar/package.nix b/pkgs/by-name/op/optar/package.nix index 0e43288016fd5..c1e23ff2b6962 100644 --- a/pkgs/by-name/op/optar/package.nix +++ b/pkgs/by-name/op/optar/package.nix @@ -31,11 +31,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 37fca666e8578..6cb63347c88d5 100644 --- a/pkgs/by-name/op/optipng/package.nix +++ b/pkgs/by-name/op/optipng/package.nix @@ -47,11 +47,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 d10a43cfa4f86..efe26a8d004f4 100644 --- a/pkgs/by-name/op/opusfile/package.nix +++ b/pkgs/by-name/op/opusfile/package.nix @@ -41,11 +41,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 3f999d9513c8a..e48ac73269a96 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 49b3cd9f574bf..67b2b650f0c81 100644 --- a/pkgs/by-name/oq/oq/package.nix +++ b/pkgs/by-name/oq/oq/package.nix @@ -37,12 +37,12 @@ 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; - maintainers = with maintainers; [ Br1ght0ne ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Br1ght0ne ]; + 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 09fd6c0444b3d..a9350eb6ff40b 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/oranchelo-icon-theme/package.nix b/pkgs/by-name/or/oranchelo-icon-theme/package.nix index 1e52cf5543c2b..967d28d032f58 100644 --- a/pkgs/by-name/or/oranchelo-icon-theme/package.nix +++ b/pkgs/by-name/or/oranchelo-icon-theme/package.nix @@ -43,11 +43,11 @@ stdenvNoCC.mkDerivation rec { done ''; - 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/orca-c/package.nix b/pkgs/by-name/or/orca-c/package.nix index 0696a6683fed9..46a7576e212ff 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/orcania/package.nix b/pkgs/by-name/or/orcania/package.nix index ffd405972c2d2..1a75e8e962498 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 16139e4c6f4c8..26944b5c6ea25 100644 --- a/pkgs/by-name/or/orchard/package.nix +++ b/pkgs/by-name/or/orchard/package.nix @@ -49,11 +49,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/orjail/package.nix b/pkgs/by-name/or/orjail/package.nix index d7c2fa0e563dc..adf7f5a72033e 100644 --- a/pkgs/by-name/or/orjail/package.nix +++ b/pkgs/by-name/or/orjail/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { --replace '--hostname=host ' "" ''; - meta = with lib; { + meta = { description = "Force programs to exclusively use tor network"; mainProgram = "orjail"; homepage = "https://github.com/orjail/orjail"; - license = licenses.wtfpl; - maintainers = with maintainers; [ onny ]; - platforms = platforms.linux; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ onny ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/or/orocos-kdl/package.nix b/pkgs/by-name/or/orocos-kdl/package.nix index 304f1c7de443c..9bef5e8b5803c 100644 --- a/pkgs/by-name/or/orocos-kdl/package.nix +++ b/pkgs/by-name/or/orocos-kdl/package.nix @@ -24,11 +24,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/ortp/package.nix b/pkgs/by-name/or/ortp/package.nix index 3f5ea02d5e1f0..7a43257f3a7d5 100644 --- a/pkgs/by-name/or/ortp/package.nix +++ b/pkgs/by-name/or/ortp/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { buildInputs = [ bctoolbox ]; nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Real-Time Transport Protocol (RFC3550) stack. Part of the Linphone project"; mainProgram = "ortp_tester"; homepage = "https://linphone.org/technical-corner/ortp"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/by-name/or/orz/package.nix b/pkgs/by-name/or/orz/package.nix index 6acd6736266dc..8b041f226cfb7 100644 --- a/pkgs/by-name/or/orz/package.nix +++ b/pkgs/by-name/or/orz/package.nix @@ -35,11 +35,11 @@ rustPlatform.buildRustPackage rec { 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "orz"; }; } diff --git a/pkgs/by-name/os/os-prober/package.nix b/pkgs/by-name/os/os-prober/package.nix index 64e5171dc0a94..3571dc1da7737 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 3a024b86657c1..c0289204ebf39 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 566a14cce6bb7..f720b326a7d3d 100644 --- a/pkgs/by-name/os/oscar/package.nix +++ b/pkgs/by-name/os/oscar/package.nix @@ -50,14 +50,14 @@ stdenv.mkDerivation rec { runHook postInstall ''; - 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/osdlyrics/package.nix b/pkgs/by-name/os/osdlyrics/package.nix index d470003be7510..3070b2b61d35a 100644 --- a/pkgs/by-name/os/osdlyrics/package.nix +++ b/pkgs/by-name/os/osdlyrics/package.nix @@ -79,11 +79,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 4727b3ab1e1e3..a3ca21fb40f00 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/osm2xmap/package.nix b/pkgs/by-name/os/osm2xmap/package.nix index 292b4884711a0..92f81e723de86 100644 --- a/pkgs/by-name/os/osm2xmap/package.nix +++ b/pkgs/by-name/os/osm2xmap/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { boost ]; - meta = with lib; { + meta = { homepage = "https://github.com/sembruk/osm2xmap"; description = "Converter from OpenStreetMap data format to OpenOrienteering Mapper format"; - license = licenses.gpl3; - maintainers = [ maintainers.mpickering ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.mpickering ]; platforms = with lib.platforms; linux; mainProgram = "osm2xmap"; }; diff --git a/pkgs/by-name/os/osmctools/package.nix b/pkgs/by-name/os/osmctools/package.nix index 10026a49e5f24..e815bc0166c9b 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 57257882b8101..2b33131e2bf46 100644 --- a/pkgs/by-name/os/osmid/package.nix +++ b/pkgs/by-name/os/osmid/package.nix @@ -32,11 +32,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 c5bcfc5e08ba4..6f69034e0058b 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 33d9e098290ef..ee56d25313830 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/osqp/package.nix b/pkgs/by-name/os/osqp/package.nix index 0425777a85f83..00e1ff0452af4 100644 --- a/pkgs/by-name/os/osqp/package.nix +++ b/pkgs/by-name/os/osqp/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Quadratic programming solver using operator splitting"; homepage = "https://osqp.org"; - license = licenses.asl20; - maintainers = with maintainers; [ taktoa ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ taktoa ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/os/ossia-score/package.nix b/pkgs/by-name/os/ossia-score/package.nix index c8bedeac4db30..490fb855058a8 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 27e3db46ddda9..ee2033b6d5459 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 59f987917accb..1e0eb299f688b 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/osxsnarf/package.nix b/pkgs/by-name/os/osxsnarf/package.nix index aa4f22baa43e1..e091600803fe9 100644 --- a/pkgs/by-name/os/osxsnarf/package.nix +++ b/pkgs/by-name/os/osxsnarf/package.nix @@ -24,11 +24,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 110d813838453..b4734b7ed334b 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 820df7dac464b..40725797a4b47 100644 --- a/pkgs/by-name/ot/otfcc/package.nix +++ b/pkgs/by-name/ot/otfcc/package.nix @@ -32,12 +32,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 ]; }; } diff --git a/pkgs/by-name/ot/otpauth/package.nix b/pkgs/by-name/ot/otpauth/package.nix index b8ab75997f68b..4d93be7175c65 100644 --- a/pkgs/by-name/ot/otpauth/package.nix +++ b/pkgs/by-name/ot/otpauth/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-lATdsuqSM2EaclhvNN9BmJ6NC2nghDfggRrwvRjF7us="; - 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/ot/otpw/package.nix b/pkgs/by-name/ot/otpw/package.nix index 3bac1ca3eb4e5..4d34009b86d4e 100644 --- a/pkgs/by-name/ot/otpw/package.nix +++ b/pkgs/by-name/ot/otpw/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { "stackprotector" ]; - meta = with lib; { + meta = { description = "One-time password login package"; mainProgram = "otpw-gen"; homepage = "http://www.cl.cam.ac.uk/~mgk25/otpw.html"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ot/otto-matic/package.nix b/pkgs/by-name/ot/otto-matic/package.nix index 717154698f773..7c87f4694c0c8 100644 --- a/pkgs/by-name/ot/otto-matic/package.nix +++ b/pkgs/by-name/ot/otto-matic/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Port of Otto Matic, a 2001 Macintosh game by Pangea Software, for modern operating systems"; homepage = "https://github.com/jorio/OttoMatic"; - license = licenses.cc-by-sa-40; - maintainers = with maintainers; [ lux ]; - platforms = platforms.linux; + license = lib.licenses.cc-by-sa-40; + maintainers = with lib.maintainers; [ lux ]; + platforms = lib.platforms.linux; mainProgram = "OttoMatic"; }; } diff --git a/pkgs/by-name/ou/oui/package.nix b/pkgs/by-name/ou/oui/package.nix index 584de64b926e1..e74b857270847 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 ]; - maintainers = teams.wdz.members; + license = with lib.licenses; [ bsd3 ]; + maintainers = lib.teams.wdz.members; 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 0617756b90cd2..83c8f7f95bb48 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 416bfc9abac98..e933be0c1e781 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 9afc107d91faa..0a67bdfb358b4 100644 --- a/pkgs/by-name/ov/oven-media-engine/package.nix +++ b/pkgs/by-name/ov/oven-media-engine/package.nix @@ -83,12 +83,12 @@ stdenv.mkDerivation rec { install -Dm0644 ../misc/conf_examples/Logger.xml $out/share/examples/edge_conf/Logger.xml ''; - meta = with lib; { + meta = { 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 8100ba20db422..9bc434b4b06b6 100644 --- a/pkgs/by-name/ov/overcommit/package.nix +++ b/pkgs/by-name/ov/overcommit/package.nix @@ -27,16 +27,16 @@ 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; [ Br1ght0ne 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 54bbc8153267c..37554c794ca63 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 b0eabb5f7b14d..cb7eae774d0c5 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 a639a90898eb2..a1dfb1d7f869c 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 36f64a1eeb8fd..e168b18fb9e2c 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-lisp/package.nix b/pkgs/by-name/ow/owl-lisp/package.nix index babd94dc0b3d4..9d9bcb3d1c533 100644 --- a/pkgs/by-name/ow/owl-lisp/package.nix +++ b/pkgs/by-name/ow/owl-lisp/package.nix @@ -26,11 +26,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 73f4755972df4..266cef03f1ae0 100644 --- a/pkgs/by-name/ow/owl/package.nix +++ b/pkgs/by-name/ow/owl/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { libpcap ]; - 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 a7407bc783b59..4e0dbe46eceec 100644 --- a/pkgs/by-name/ow/owncast/package.nix +++ b/pkgs/by-name/ow/owncast/package.nix @@ -46,12 +46,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; [ MayNiklas ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ MayNiklas ]; mainProgram = "owncast"; }; diff --git a/pkgs/by-name/ow/owntracks-recorder/package.nix b/pkgs/by-name/ow/owntracks-recorder/package.nix index 7f11113a5a2c3..861d50d24046f 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/ox/oxefmsynth/package.nix b/pkgs/by-name/ox/oxefmsynth/package.nix index b569dccb8723f..071a03769804d 100644 --- a/pkgs/by-name/ox/oxefmsynth/package.nix +++ b/pkgs/by-name/ox/oxefmsynth/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { install -Dm644 oxevst64.so -t $out/lib/lxvst ''; - meta = with lib; { + meta = { homepage = "https://github.com/oxesoft/oxefmsynth"; description = "Open source VST 2.4 instrument plugin"; - maintainers = [ maintainers.hirenashah ]; + maintainers = [ lib.maintainers.hirenashah ]; platforms = [ "x86_64-linux" ]; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; }; } diff --git a/pkgs/by-name/ox/oxtools/package.nix b/pkgs/by-name/ox/oxtools/package.nix index 171640eaf83c3..1073b43b24ceb 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/p2/p2pool/package.nix b/pkgs/by-name/p2/p2pool/package.nix index e0c94735fd54e..5a821087ac5c6 100644 --- a/pkgs/by-name/p2/p2pool/package.nix +++ b/pkgs/by-name/p2/p2pool/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Decentralized pool for Monero mining"; homepage = "https://github.com/SChernykh/p2pool"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ ratsclub ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ratsclub ]; mainProgram = "p2pool"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/p3/p3x-onenote/package.nix b/pkgs/by-name/p3/p3x-onenote/package.nix index a10c9de5ef66f..4d0b3609d1cb4 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 rec { --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/p9/p910nd/package.nix b/pkgs/by-name/p9/p910nd/package.nix index f4a329b176241..87f9b613d0023 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 2383b1a7eaded..1ec4996f8bfd5 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 37e377ac6b61f..73c8e2c4ca92d 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; - maintainers = with maintainers; [ domenkozar ]; - platforms = platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ domenkozar ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pa/pacemaker/package.nix b/pkgs/by-name/pa/pacemaker/package.nix index 5900f3a9c4d3f..db306f7c79239 100644 --- a/pkgs/by-name/pa/pacemaker/package.nix +++ b/pkgs/by-name/pa/pacemaker/package.nix @@ -96,12 +96,12 @@ stdenv.mkDerivation rec { inherit (nixosTests) pacemaker; }; - meta = with lib; { + meta = { homepage = "https://clusterlabs.org/pacemaker/"; description = "Pacemaker is an 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 1366fdc179d3a..d6b16896a50c3 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 fa97e0e7f48d6..6d54a1773c77f 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 682bc519238ee..77d649db94d96 100644 --- a/pkgs/by-name/pa/packcc/package.nix +++ b/pkgs/by-name/pa/packcc/package.nix @@ -62,7 +62,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: @@ -72,9 +72,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 053aceffa7486..f4f956054a19b 100644 --- a/pkgs/by-name/pa/packet-sd/package.nix +++ b/pkgs/by-name/pa/packet-sd/package.nix @@ -39,10 +39,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"; }; diff --git a/pkgs/by-name/pa/packwiz/package.nix b/pkgs/by-name/pa/packwiz/package.nix index a37e5656abeb0..3631a610842dc 100644 --- a/pkgs/by-name/pa/packwiz/package.nix +++ b/pkgs/by-name/pa/packwiz/package.nix @@ -31,11 +31,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/paco/package.nix b/pkgs/by-name/pa/paco/package.nix index 1aee35c2e486a..9a1223b83a4ce 100644 --- a/pkgs/by-name/pa/paco/package.nix +++ b/pkgs/by-name/pa/paco/package.nix @@ -33,11 +33,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Simple compiled programming language"; mainProgram = "paco"; homepage = "https://github.com/pacolang/paco"; - license = licenses.mit; - maintainers = with maintainers; [ hugolgst ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hugolgst ]; }; } diff --git a/pkgs/by-name/pa/pacparser/package.nix b/pkgs/by-name/pa/pacparser/package.nix index 589c52e36c82e..b4f70e3b80e4d 100644 --- a/pkgs/by-name/pa/pacparser/package.nix +++ b/pkgs/by-name/pa/pacparser/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "Library to parse proxy auto-config (PAC) files"; homepage = "https://pacparser.manugarg.com/"; - license = licenses.lgpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; mainProgram = "pactester"; }; } diff --git a/pkgs/by-name/pa/pacvim/package.nix b/pkgs/by-name/pa/pacvim/package.nix index a9b1aa50d5143..cedf2bb48467f 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 0c7f7dba1c272..c6819481af4ac 100644 --- a/pkgs/by-name/pa/padbuster/package.nix +++ b/pkgs/by-name/pa/padbuster/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { 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 a469b20a2a4bf..7e99b05a44ea6 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/pagemon/package.nix b/pkgs/by-name/pa/pagemon/package.nix index edc7c34c10f6f..39a049ec3ae0f 100644 --- a/pkgs/by-name/pa/pagemon/package.nix +++ b/pkgs/by-name/pa/pagemon/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { "MANDIR=$(out)/share/man/man8" ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Interactive memory/page monitor for Linux"; mainProgram = "pagemon"; @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { pages of memory belonging data, code, heap, stack, anonymous mappings or even swapped-out pages. ''; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pa/pagmo2/package.nix b/pkgs/by-name/pa/pagmo2/package.nix index 1948ad97b4df8..aa9148288a197 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 850732275cb3c..bfe54de08f383 100644 --- a/pkgs/by-name/pa/pagsuite/package.nix +++ b/pkgs/by-name/pa/pagsuite/package.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { scalp ]; - 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/paho-mqtt-c/package.nix b/pkgs/by-name/pa/paho-mqtt-c/package.nix index f8cc322dbf289..d5ebc7e818414 100644 --- a/pkgs/by-name/pa/paho-mqtt-c/package.nix +++ b/pkgs/by-name/pa/paho-mqtt-c/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { (lib.cmakeBool "PAHO_BUILD_SHARED" enableShared) ]; - meta = with lib; { + meta = { description = "Eclipse Paho MQTT C Client Library"; mainProgram = "MQTTVersion"; homepage = "https://www.eclipse.org/paho/"; - license = licenses.epl20; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.epl20; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pa/paho-mqtt-cpp/package.nix b/pkgs/by-name/pa/paho-mqtt-cpp/package.nix index 313288a9144de..94733a33fb4c9 100644 --- a/pkgs/by-name/pa/paho-mqtt-cpp/package.nix +++ b/pkgs/by-name/pa/paho-mqtt-cpp/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeBool "PAHO_BUILD_SHARED" enableShared) ]; - meta = with lib; { + meta = { description = "Eclipse Paho MQTT C++ Client Library"; homepage = "https://www.eclipse.org/paho/"; - license = licenses.epl10; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.epl10; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/pa/pairdrop/package.nix b/pkgs/by-name/pa/pairdrop/package.nix index 9d4fce5c23bac..0a8e993bcaf6d 100644 --- a/pkgs/by-name/pa/pairdrop/package.nix +++ b/pkgs/by-name/pa/pairdrop/package.nix @@ -32,7 +32,7 @@ buildNpmPackage rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Local file sharing in your browser"; mainProgram = "pairdrop"; longDescription = '' @@ -40,7 +40,7 @@ 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; [ dit7ya ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/pa/paleta/package.nix b/pkgs/by-name/pa/paleta/package.nix index e9a26b9274e50..406339b2bd997 100644 --- a/pkgs/by-name/pa/paleta/package.nix +++ b/pkgs/by-name/pa/paleta/package.nix @@ -51,12 +51,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/pam-honeycreds/package.nix b/pkgs/by-name/pa/pam-honeycreds/package.nix index ea0e155e3cc09..cda47380032f8 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 636757cec5ba9..9e310a15739fd 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 2a052547817eb..07339cb6fab5c 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 c464966b0c417..d5ea469e8b660 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 ff5546320ec29..12b2ad73e430d 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; - maintainers = with maintainers; [ mtreca ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ mtreca ]; }; } diff --git a/pkgs/by-name/pa/pam_krb5/package.nix b/pkgs/by-name/pa/pam_krb5/package.nix index bc82835518e4e..3968dd86caf3d 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 8103c0023d970..130ebd77bffc8 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 950ba5ce1fd08..fa78fd1e012e5 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 d562b24c12009..15d29eb055ff8 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 504b31fe7557b..b8a7171178640 100644 --- a/pkgs/by-name/pa/pam_p11/package.nix +++ b/pkgs/by-name/pa/pam_p11/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { libp11 ] ++ 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 326859b3367a1..e56874c9da9f6 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 rec { 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/pa/pam_rssh/package.nix b/pkgs/by-name/pa/pam_rssh/package.nix index a67ec6ddedf43..3358d7211e529 100644 --- a/pkgs/by-name/pa/pam_rssh/package.nix +++ b/pkgs/by-name/pa/pam_rssh/package.nix @@ -65,11 +65,11 @@ rustPlatform.buildRustPackage rec { ssh-add $HOME/.ssh/id_dsa ''; - 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; [ kranzes ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ kranzes ]; }; } diff --git a/pkgs/by-name/pa/pam_tmpdir/package.nix b/pkgs/by-name/pa/pam_tmpdir/package.nix index 083c4eda73cc4..561e0a1c3f005 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/pamix/package.nix b/pkgs/by-name/pa/pamix/package.nix index 1c8ebe94ace83..78854d63f8b7b 100644 --- a/pkgs/by-name/pa/pamix/package.nix +++ b/pkgs/by-name/pa/pamix/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { ncurses ]; - meta = with lib; { + meta = { description = "Pulseaudio terminal mixer"; homepage = "https://github.com/patroclos/PAmix"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ ericsagnes ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ericsagnes ]; mainProgram = "pamix"; }; } diff --git a/pkgs/by-name/pa/pamixer/package.nix b/pkgs/by-name/pa/pamixer/package.nix index cab4a6e0d8af0..469e7c5ce4928 100644 --- a/pkgs/by-name/pa/pamixer/package.nix +++ b/pkgs/by-name/pa/pamixer/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { libpulseaudio ]; - meta = with lib; { + meta = { description = "Pulseaudio command line mixer"; longDescription = '' Features: @@ -45,9 +45,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 42a7165249252..088045b4a05b1 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.linux; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/pa/pan-bindings/package.nix b/pkgs/by-name/pa/pan-bindings/package.nix index 904d5e59e548c..47410471ab222 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 759a2d83d5ab9..e385b862b8423 100644 --- a/pkgs/by-name/pa/panamax/package.nix +++ b/pkgs/by-name/pa/panamax/package.nix @@ -34,14 +34,14 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.SystemConfiguration ]; - 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/pa/pandoc-katex/package.nix b/pkgs/by-name/pa/pandoc-katex/package.nix index fe92876f1c420..4223c0bb865d5 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-Qf+QYOIBmSgax7p5K32SkaDT0MoKUY4TkxLbf/ZbM+U="; - 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 d44b5e94bd2e0..a1b69c1fa97c7 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/panicparse/package.nix b/pkgs/by-name/pa/panicparse/package.nix index f0ab5e64e45e8..a257ec54307e3 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 20b27dac96e5d..519b7955a4f35 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/panopticon/package.nix b/pkgs/by-name/pa/panopticon/package.nix index 9ed89a80d1264..cfc3f351d3af1 100644 --- a/pkgs/by-name/pa/panopticon/package.nix +++ b/pkgs/by-name/pa/panopticon/package.nix @@ -47,7 +47,7 @@ rustPlatform.buildRustPackage rec { makeWrapper $out/share/${pname}/${pname} $out/bin/${pname} ''; - meta = with lib; { + meta = { description = "Libre cross-platform disassembler"; longDescription = '' Panopticon is a cross platform disassembler for reverse @@ -56,8 +56,8 @@ rustPlatform.buildRustPackage rec { Panopticon comes with Qt GUI for browsing and annotating control flow graphs. ''; - license = with licenses; [ gpl3 ]; - maintainers = with maintainers; [ leenaars ]; + license = with lib.licenses; [ gpl3 ]; + maintainers = with lib.maintainers; [ leenaars ]; broken = true; # Added 2024-03-16 }; } diff --git a/pkgs/by-name/pa/pantheon-tweaks/package.nix b/pkgs/by-name/pa/pantheon-tweaks/package.nix index 2d76fdd0b3c4e..61e3ed14280a1 100644 --- a/pkgs/by-name/pa/pantheon-tweaks/package.nix +++ b/pkgs/by-name/pa/pantheon-tweaks/package.nix @@ -57,16 +57,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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; mainProgram = "pantheon-tweaks"; }; } diff --git a/pkgs/by-name/pa/paper-icon-theme/package.nix b/pkgs/by-name/pa/paper-icon-theme/package.nix index 29264499efac3..af443fc6db1c9 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 rec { 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/paper-plane/package.nix b/pkgs/by-name/pa/paper-plane/package.nix index 648acee73db11..a567ac4ef7958 100644 --- a/pkgs/by-name/pa/paper-plane/package.nix +++ b/pkgs/by-name/pa/paper-plane/package.nix @@ -122,7 +122,7 @@ stdenv.mkDerivation { stdenv.cc.isClang && lib.versionAtLeast stdenv.cc.version "16" ) "-Wno-error=incompatible-function-pointer-types"; - meta = with lib; { + meta = { homepage = "https://github.com/paper-plane-developers/paper-plane"; description = "Chat over Telegram on a modern and elegant client"; longDescription = '' @@ -130,9 +130,9 @@ stdenv.mkDerivation { for its user interface and strives to meet the design principles of the GNOME desktop. ''; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ aleksana ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ aleksana ]; mainProgram = "paper-plane"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pa/paperkey/package.nix b/pkgs/by-name/pa/paperkey/package.nix index 1aba2f19ad8fc..a629b0dcbd375 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; [ AndersonTorres 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 5fe69a944eab4..b8ab498c7b157 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/papertrail/package.nix b/pkgs/by-name/pa/papertrail/package.nix index e1baafe00c057..fb3fe86291fd1 100644 --- a/pkgs/by-name/pa/papertrail/package.nix +++ b/pkgs/by-name/pa/papertrail/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation { passthru.tests.version = testers.testVersion { package = papertrail; }; - meta = with lib; { + meta = { description = "Command-line client for Papertrail log management service"; mainProgram = "papertrail"; homepage = "https://github.com/papertrail/papertrail-cli/"; - license = licenses.mit; - maintainers = with maintainers; [ nicknovitski ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nicknovitski ]; platforms = ruby.meta.platforms; }; } diff --git a/pkgs/by-name/pa/paperview/package.nix b/pkgs/by-name/pa/paperview/package.nix index 58673594ae1b9..d22e3afe85748 100644 --- a/pkgs/by-name/pa/paperview/package.nix +++ b/pkgs/by-name/pa/paperview/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { "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 1c4cf77e84279..0a9fb2d6c858e 100644 --- a/pkgs/by-name/pa/papi/package.nix +++ b/pkgs/by-name/pa/papi/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { 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 11c08f69406ab..c1286bb8c1de5 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 326c9eb2ca3ee..ccb9684c0a622 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/paps/package.nix b/pkgs/by-name/pa/paps/package.nix index 935ef85ee3cbb..d7d4a207bacfd 100644 --- a/pkgs/by-name/pa/paps/package.nix +++ b/pkgs/by-name/pa/paps/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { ./autogen.sh ''; - meta = with lib; { + meta = { description = "Pango to PostScript converter"; homepage = "https://github.com/dov/paps"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "paps"; }; } diff --git a/pkgs/by-name/pa/par/package.nix b/pkgs/by-name/pa/par/package.nix index a6167b8c5ed78..df610d4705eb0 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/package.nix b/pkgs/by-name/pa/par2cmdline/package.nix index 6f69f0e48eedc..cefa528d7813d 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 196efc10c641d..0887000a2f5c3 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-T/TjiqBZJINgiuTLWD+JBCUDEQBs2b/hvZn9E2uxkYc="; - 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/paralus-cli/package.nix b/pkgs/by-name/pa/paralus-cli/package.nix index 24961d715afa8..556cda54731af 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 0d3c24cd1c6c0..c9788cbf7ab7c 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/pari-galdata/package.nix b/pkgs/by-name/pa/pari-galdata/package.nix index 9a2e0acb332a4..ad9afcbe27e2a 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; - maintainers = teams.sage.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = lib.teams.sage.members; }; } diff --git a/pkgs/by-name/pa/pari-seadata-small/package.nix b/pkgs/by-name/pa/pari-seadata-small/package.nix index 5056d6992124d..e089679a4763d 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; - maintainers = teams.sage.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = lib.teams.sage.members; }; } diff --git a/pkgs/by-name/pa/parinfer-rust-emacs/package.nix b/pkgs/by-name/pa/parinfer-rust-emacs/package.nix index 1fc1d263a9e91..89f764333b6b0 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-E3x/Jy21qP1onABRmbrq51ZKrlqwiWIwSaqOCh28lKw="; - 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 d300092b1907c..91fa0f63c20ab 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 rec { 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 56080d475222a..6e6db00d09f52 100644 --- a/pkgs/by-name/pa/parlatype/package.nix +++ b/pkgs/by-name/pa/parlatype/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { doCheck = false; - meta = with lib; { + meta = { description = "GNOME audio player for transcription"; mainProgram = "parlatype"; longDescription = '' @@ -75,11 +75,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 8419e81b19f59..7aedd70b51fcf 100644 --- a/pkgs/by-name/pa/parmetis/package.nix +++ b/pkgs/by-name/pa/parmetis/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { make config metis_path=metis gklib_path=metis/GKlib prefix=$out ''; - 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 @@ -39,8 +39,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/parmmg/package.nix b/pkgs/by-name/pa/parmmg/package.nix index 529acf6828a97..99e116939bd37 100644 --- a/pkgs/by-name/pa/parmmg/package.nix +++ b/pkgs/by-name/pa/parmmg/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation { "-Wno-dev" ]; - meta = with lib; { + meta = { description = "Distributed parallelization of 3D volume mesh adaptation"; homepage = "http://www.mmgtools.org/"; - platforms = platforms.unix; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ mkez ]; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ mkez ]; }; } diff --git a/pkgs/by-name/pa/parse-cli-bin/package.nix b/pkgs/by-name/pa/parse-cli-bin/package.nix index a70e398c32086..fc0ca060546a3 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 a059e44a17f0c..a08cb24bd4c45 100644 --- a/pkgs/by-name/pa/parsero/package.nix +++ b/pkgs/by-name/pa/parsero/package.nix @@ -23,11 +23,11 @@ python3Packages.buildPythonApplication rec { # 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 957f88e2b1ba1..7542c98a66998 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 58be43c9be434..1006b7c1c527e 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 51204fd926347..1d2fc9e39b756 100644 --- a/pkgs/by-name/pa/particl-core/package.nix +++ b/pkgs/by-name/pa/particl-core/package.nix @@ -65,7 +65,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 = '' @@ -73,8 +73,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 bee603d35080f..bd247b2662113 100644 --- a/pkgs/by-name/pa/partio/package.nix +++ b/pkgs/by-name/pa/partio/package.nix @@ -61,11 +61,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 847af508fafb0..75790ab39f233 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/passerine/package.nix b/pkgs/by-name/pa/passerine/package.nix index 44aa5146ae73c..16acbcf3769df 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-A+sOT0rloAktDdVXe2HEPK25euh9T7c0rXybZmZpqC0="; - 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 102af396ff4bd..255d03470c0b3 100644 --- a/pkgs/by-name/pa/passes/package.nix +++ b/pkgs/by-name/pa/passes/package.nix @@ -57,13 +57,13 @@ stdenv.mkDerivation (finalAttrs: { zint ]; - 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 61487c4d2ae4f..ed560691487b0 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/passphrase2pgp/package.nix b/pkgs/by-name/pa/passphrase2pgp/package.nix index 001eae79cbbfc..23049732273f3 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/pastebinit/package.nix b/pkgs/by-name/pa/pastebinit/package.nix index d798f11ece567..53a9aa1eb1a38 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 b81ace79d9220..26e344a7d3f5c 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 0352ef2c6cd98..4af3756777ba8 100644 --- a/pkgs/by-name/pa/pat/package.nix +++ b/pkgs/by-name/pa/pat/package.nix @@ -47,15 +47,15 @@ buildGoModule rec { installManPage man/pat-configure.1 man/pat.1 ''; - meta = with lib; { + meta = { description = "Pat is a 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 b8cef0481b4d4..5e16edfe5e57f 100644 --- a/pkgs/by-name/pa/patatt/package.nix +++ b/pkgs/by-name/pa/patatt/package.nix @@ -17,9 +17,9 @@ python3Packages.buildPythonApplication rec { pynacl ]; - 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 = '' @@ -28,7 +28,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 f24d259aa21ce..78f8abe489ad0 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/patray/package.nix b/pkgs/by-name/pa/patray/package.nix index 27b286896253c..60379aea98885 100644 --- a/pkgs/by-name/pa/patray/package.nix +++ b/pkgs/by-name/pa/patray/package.nix @@ -34,11 +34,11 @@ python3.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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ domenkozar ]; mainProgram = "patray"; }; } diff --git a/pkgs/by-name/pa/paulstretch/package.nix b/pkgs/by-name/pa/paulstretch/package.nix index 18648c5e5f306..6d7a9b0b4b4b3 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://hypermammut.sourceforge.net/paulstretch/"; - platforms = platforms.linux; - license = licenses.gpl2; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2; mainProgram = "paulstretch"; }; } diff --git a/pkgs/by-name/pa/pax-rs/package.nix b/pkgs/by-name/pa/pax-rs/package.nix index 8278405f3f399..ba40f909c4a5a 100644 --- a/pkgs/by-name/pa/pax-rs/package.nix +++ b/pkgs/by-name/pa/pax-rs/package.nix @@ -10,15 +10,15 @@ rustPlatform.buildRustPackage rec { pname = "pax-rs"; version = "0.4.0"; - meta = with lib; { + meta = { description = "Fastest JavaScript bundler in the galaxy"; longDescription = '' The fastest JavaScript bundler in the galaxy. Fully supports ECMAScript module syntax (import/export) in addition to CommonJS require(). ''; homepage = "https://github.com/nathan/pax"; - license = licenses.mit; - maintainers = [ maintainers.klntsky ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.klntsky ]; + platforms = lib.platforms.linux; mainProgram = "px"; }; diff --git a/pkgs/by-name/pa/pax-utils/package.nix b/pkgs/by-name/pa/pax-utils/package.nix index 14835781a4cee..e93d7989ee337 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/paxctl/package.nix b/pkgs/by-name/pa/paxctl/package.nix index 8f6741d68acbf..05ea53dea8b45 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 149c334e891b0..648e7ccf58c4a 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; [ copumpkin joachifm ]; diff --git a/pkgs/by-name/pb/pbgopy/package.nix b/pkgs/by-name/pb/pbgopy/package.nix index a58cce6be1158..2d7b8a01a9920 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 52b8f266a6e86..9828c89ac4b1a 100644 --- a/pkgs/by-name/pb/pbm/package.nix +++ b/pkgs/by-name/pb/pbm/package.nix @@ -6,13 +6,13 @@ buildDotnetGlobalTool { nugetHash = "sha256-2MoIpgBDrjbi2nInGxivgjLSnS/iyv01y0Yia8R/Gyc="; - 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 7090d712f7cb6..f8048d91cd066 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/pbrt/package.nix b/pkgs/by-name/pb/pbrt/package.nix index cb9b8d6f05198..4d06f818f6b91 100644 --- a/pkgs/by-name/pb/pbrt/package.nix +++ b/pkgs/by-name/pb/pbrt/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation { ]; buildInputs = [ zlib ]; - meta = with lib; { + meta = { homepage = "https://pbrt.org/"; description = "Renderer described in the third edition of the book 'Physically Based Rendering: From Theory To Implementation'"; - platforms = platforms.linux; - license = licenses.bsd2; - maintainers = [ maintainers.juliendehos ]; + platforms = lib.platforms.linux; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.juliendehos ]; priority = 10; }; } diff --git a/pkgs/by-name/pb/pbzip2/package.nix b/pkgs/by-name/pb/pbzip2/package.nix index 3348f0b85ee39..1bcab7cfc1545 100644 --- a/pkgs/by-name/pb/pbzip2/package.nix +++ b/pkgs/by-name/pb/pbzip2/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=reserved-user-defined-literal"; - 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 4f96d27de10cf..a3b77ae8047f1 100644 --- a/pkgs/by-name/pb/pbzx/package.nix +++ b/pkgs/by-name/pb/pbzx/package.nix @@ -27,11 +27,11 @@ 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; - maintainers = [ maintainers.matthewbauer ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.matthewbauer ]; mainProgram = "pbzx"; }; } diff --git a/pkgs/by-name/pc/pcalc/package.nix b/pkgs/by-name/pc/pcalc/package.nix index 77251404bba42..8ef576e13334f 100644 --- a/pkgs/by-name/pc/pcalc/package.nix +++ b/pkgs/by-name/pc/pcalc/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { 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 0e7d8121d9cdd..8b1fa17bb2716 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 9818b57125a19..32c7279e201c8 100644 --- a/pkgs/by-name/pc/pcapfix/package.nix +++ b/pkgs/by-name/pc/pcapfix/package.nix @@ -15,12 +15,12 @@ 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; - maintainers = [ maintainers.ehmry ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.ehmry ]; + 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 32f31d8fbfc04..85fc08bda97a1 100644 --- a/pkgs/by-name/pc/pcaudiolib/package.nix +++ b/pkgs/by-name/pc/pcaudiolib/package.nix @@ -50,11 +50,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 e81c92f9cd565..7a21f53684aac 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 3d0cc9ef7069f..10f7a80163d3c 100644 --- a/pkgs/by-name/pc/pcb2gcode/package.nix +++ b/pkgs/by-name/pc/pcb2gcode/package.nix @@ -40,7 +40,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. @@ -48,8 +48,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/pcimem/package.nix b/pkgs/by-name/pc/pcimem/package.nix index 4d81dd4d36423..79a698a3732db 100644 --- a/pkgs/by-name/pc/pcimem/package.nix +++ b/pkgs/by-name/pc/pcimem/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { 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/pcm/package.nix b/pkgs/by-name/pc/pcm/package.nix index 1a571fc70e991..41373fb0671ca 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/pcmanfm/package.nix b/pkgs/by-name/pc/pcmanfm/package.nix index b8e8dcda4fc21..6865fe8f73b47 100644 --- a/pkgs/by-name/pc/pcmanfm/package.nix +++ b/pkgs/by-name/pc/pcmanfm/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { configureFlags = optional withGtk3 "--with-gtk=3"; - meta = with lib; { + meta = { homepage = "https://blog.lxde.org/category/pcmanfm/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; description = "File manager with GTK interface"; - maintainers = [ maintainers.ttuegel ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.ttuegel ]; + platforms = lib.platforms.linux; mainProgram = "pcmanfm"; }; } diff --git a/pkgs/by-name/pc/pcmanx-gtk2/package.nix b/pkgs/by-name/pc/pcmanx-gtk2/package.nix index 9e2bea957a66a..9e21a31ae0c62 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 3f4ffd2bd9a97..7e649d9851472 100644 --- a/pkgs/by-name/pc/pcmsolver/package.nix +++ b/pkgs/by-name/pc/pcmsolver/package.nix @@ -52,12 +52,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/pcp/package.nix b/pkgs/by-name/pc/pcp/package.nix index a8d6e1c58ba90..bb58790915927 100644 --- a/pkgs/by-name/pc/pcp/package.nix +++ b/pkgs/by-name/pc/pcp/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-3bkzBQ950Phg4A9p+IjeUx7Xw7eVmUbeYnQViNjghFk="; - meta = with lib; { + meta = { description = "Command line peer-to-peer data transfer tool based on libp2p"; homepage = "https://github.com/dennis-tra/pcp"; - license = licenses.asl20; - maintainers = with maintainers; [ matthewcroughan ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ matthewcroughan ]; + platforms = lib.platforms.linux; mainProgram = "pcp"; }; } diff --git a/pkgs/by-name/pc/pcsc-cyberjack/package.nix b/pkgs/by-name/pc/pcsc-cyberjack/package.nix index 2dad6ad25a96f..7bdde5e55a4e5 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-scm-scl011/package.nix b/pkgs/by-name/pc/pcsc-scm-scl011/package.nix index 3516a415b3b35..aedf6ddf3680c 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/pcstat/package.nix b/pkgs/by-name/pc/pcstat/package.nix index 2b9b2ddb5c2a0..211eb97b6b4b6 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/pdf-quench/package.nix b/pkgs/by-name/pd/pdf-quench/package.nix index b3f396c690eba..bb682fd5b2537 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/pdf2djvu/package.nix b/pkgs/by-name/pd/pdf2djvu/package.nix index e92663ad22397..9ce036685a8d9 100644 --- a/pkgs/by-name/pd/pdf2djvu/package.nix +++ b/pkgs/by-name/pd/pdf2djvu/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { # https://github.com/jwilk/pdf2djvu/commit/373e065faf2f0d868a3700788d20a96e9528bb12 CXXFLAGS = "-std=c++17"; - meta = with lib; { + meta = { description = "Creates djvu files from PDF files"; homepage = "https://jwilk.net/software/pdf2djvu"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "pdf2djvu"; }; } diff --git a/pkgs/by-name/pd/pdf2odt/package.nix b/pkgs/by-name/pd/pdf2odt/package.nix index 408fe656a35ec..49af574ae74fc 100644 --- a/pkgs/by-name/pd/pdf2odt/package.nix +++ b/pkgs/by-name/pd/pdf2odt/package.nix @@ -56,11 +56,11 @@ resholve.mkDerivation rec { ]; }; - 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 0bf8860ec766b..d17209e79df68 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 4cd56f2217c6b..68eae7c483c23 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 a75e19627a359..8605de5574189 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 ead2d258c08ee..38572e36574fa 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 438d0a12e976c..b0c08b9a0ae9b 100644 --- a/pkgs/by-name/pd/pdfcpu/package.nix +++ b/pkgs/by-name/pd/pdfcpu/package.nix @@ -62,11 +62,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 659d9f1e5fcb5..148023e6b117d 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 a24d180f6493a..7cdf764ff33ff 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 321f7ad9f076d..9a56b9647d671 100644 --- a/pkgs/by-name/pd/pdfid/package.nix +++ b/pkgs/by-name/pd/pdfid/package.nix @@ -30,12 +30,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/pdfposter/package.nix b/pkgs/by-name/pd/pdfposter/package.nix index e241327cf2de1..98162fdc054df 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 4568767b200d0..ebc352837a07d 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 34e7c61d3642c..5a878daf51d97 100644 --- a/pkgs/by-name/pd/pdfslicer/package.nix +++ b/pkgs/by-name/pd/pdfslicer/package.nix @@ -50,10 +50,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 90400135bd689..2bbab87af79ab 100644 --- a/pkgs/by-name/pd/pdftag/package.nix +++ b/pkgs/by-name/pd/pdftag/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { poppler ]; - meta = with lib; { + meta = { description = "Edit metadata found in PDFs"; - license = licenses.gpl3; - maintainers = with maintainers; [ leenaars ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ leenaars ]; + platforms = lib.platforms.unix; mainProgram = "pdftag"; }; } diff --git a/pkgs/by-name/pd/pdftoipe/package.nix b/pkgs/by-name/pd/pdftoipe/package.nix index 70e3fc58f3d9f..003ddbf2135bf 100644 --- a/pkgs/by-name/pd/pdftoipe/package.nix +++ b/pkgs/by-name/pd/pdftoipe/package.nix @@ -45,12 +45,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-recursor/package.nix b/pkgs/by-name/pd/pdns-recursor/package.nix index fc4ed4524681f..62997f0a7f4a6 100644 --- a/pkgs/by-name/pd/pdns-recursor/package.nix +++ b/pkgs/by-name/pd/pdns-recursor/package.nix @@ -67,14 +67,14 @@ stdenv.mkDerivation (finalAttrs: { inherit (nixosTests) pdns-recursor ncdns; }; - meta = with lib; { + meta = { description = "Recursive DNS server"; homepage = "https://www.powerdns.com/"; - platforms = platforms.linux; + platforms = lib.platforms.linux; badPlatforms = [ "i686-linux" # a 64-bit time_t is needed ]; - license = licenses.gpl2Only; - maintainers = with maintainers; [ rnhmjoj ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ rnhmjoj ]; }; }) diff --git a/pkgs/by-name/pd/pdns/package.nix b/pkgs/by-name/pd/pdns/package.nix index d9bf21b24e46e..07c9a6f01b79a 100644 --- a/pkgs/by-name/pd/pdns/package.nix +++ b/pkgs/by-name/pd/pdns/package.nix @@ -99,13 +99,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 0a09453b3b386..473a434a39013 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 58e391d071c98..fe081abda7f93 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 a084e5bc28a16..d869f8eef266d 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 54921269b88eb..aa45314f3dcd0 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/peering-manager/package.nix b/pkgs/by-name/pe/peering-manager/package.nix index d90554868467e..3241a745a5e7c 100644 --- a/pkgs/by-name/pe/peering-manager/package.nix +++ b/pkgs/by-name/pe/peering-manager/package.nix @@ -82,12 +82,12 @@ python3.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"; - maintainers = teams.wdz.members; - platforms = platforms.linux; + maintainers = lib.teams.wdz.members; + 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 749948f2ccf23..7ebd5e2c00a8b 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-5u5240PL5cKhnHsT7sRdccrbZBAbRN+fa+FhJP1gX/4=="; - meta = with lib; { + meta = { description = "A 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 924cb4019280f..efdcb359de6c2 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 b244dc8d671ae..100661e83945a 100644 --- a/pkgs/by-name/pe/pell/package.nix +++ b/pkgs/by-name/pe/pell/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { 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/penna/package.nix b/pkgs/by-name/pe/penna/package.nix index b6f433534774c..8e02366a65746 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,11 +34,11 @@ 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; [ leenaars minijackson ]; - license = licenses.cc0; + license = lib.licenses.cc0; }; } diff --git a/pkgs/by-name/pe/perceptualdiff/package.nix b/pkgs/by-name/pe/perceptualdiff/package.nix index 397451a085d8a..f52fbc249a8ee 100644 --- a/pkgs/by-name/pe/perceptualdiff/package.nix +++ b/pkgs/by-name/pe/perceptualdiff/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; buildInputs = [ freeimage ]; - meta = with lib; { + meta = { description = "Program that compares two images using a perceptually based image metric"; homepage = "https://github.com/myint/perceptualdiff"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ uri-canva ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ uri-canva ]; + platforms = lib.platforms.unix; mainProgram = "perceptualdiff"; }; } diff --git a/pkgs/by-name/pe/percollate/package.nix b/pkgs/by-name/pe/percollate/package.nix index 174e4de6d5ee4..c1a17aab7be8b 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 12c62f70e5c95..0730170ac50e0 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_data_converter/package.nix b/pkgs/by-name/pe/perf_data_converter/package.nix index 439536cc6cae9..8f31cfe72b782 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 rec { ''; }; - 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/performous/package.nix b/pkgs/by-name/pe/performous/package.nix index 48732279f2989..456a1cfc35e18 100644 --- a/pkgs/by-name/pe/performous/package.nix +++ b/pkgs/by-name/pe/performous/package.nix @@ -89,12 +89,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/peroxide/package.nix b/pkgs/by-name/pe/peroxide/package.nix index b3cae30ade3f8..59dde8a2b3df9 100644 --- a/pkgs/by-name/pe/peroxide/package.nix +++ b/pkgs/by-name/pe/peroxide/package.nix @@ -28,10 +28,10 @@ buildGo122Module rec { passthru.tests.peroxide = nixosTests.peroxide; - meta = with lib; { + meta = { homepage = "https://github.com/ljanyst/peroxide"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ aidalgol ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ aidalgol ]; description = "Unofficial ProtonMail bridge"; longDescription = '' Peroxide is a fork of the official ProtonMail bridge that aims to be diff --git a/pkgs/by-name/pe/peru/package.nix b/pkgs/by-name/pe/peru/package.nix index 41e31401f4df6..48b83b9c06b2e 100644 --- a/pkgs/by-name/pe/peru/package.nix +++ b/pkgs/by-name/pe/peru/package.nix @@ -25,11 +25,11 @@ python3Packages.buildPythonApplication rec { # No tests in archive doCheck = false; - 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/pesign/package.nix b/pkgs/by-name/pe/pesign/package.nix index a29bee3ba2b6d..13bcfd13cc6ac 100644 --- a/pkgs/by-name/pe/pesign/package.nix +++ b/pkgs/by-name/pe/pesign/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { rm -rf $out/run ''; - meta = with lib; { + meta = { description = "Signing tools for PE-COFF binaries. Compliant with the PE and Authenticode specifications"; homepage = "https://github.com/rhboot/pesign"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ raitobezarius ]; # efivar is currently Linux-only. - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pe/pest-ide-tools/package.nix b/pkgs/by-name/pe/pest-ide-tools/package.nix index 8856bd46bb9d2..fc8765776cd6a 100644 --- a/pkgs/by-name/pe/pest-ide-tools/package.nix +++ b/pkgs/by-name/pe/pest-ide-tools/package.nix @@ -26,11 +26,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/pev/package.nix b/pkgs/by-name/pe/pev/package.nix index 5e9defe2cc650..314aef2165dc7 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 dee493ac1a3c6..80d9152fb490b 100644 --- a/pkgs/by-name/pe/pew/package.nix +++ b/pkgs/by-name/pe/pew/package.nix @@ -28,12 +28,12 @@ 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; - maintainers = with maintainers; [ berdario ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ berdario ]; }; } diff --git a/pkgs/by-name/pf/pferd/package.nix b/pkgs/by-name/pf/pferd/package.nix index 1f563eaaced4f..2cdbcc965a7b3 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 07cca51f09a18..7fd1741590074 100644 --- a/pkgs/by-name/pf/pffft/package.nix +++ b/pkgs/by-name/pf/pffft/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { 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/pfsshell/package.nix b/pkgs/by-name/pf/pfsshell/package.nix index 5ebe0684e3c89..35a2691408869 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 b58493998abc1..0a16bceef0b54 100644 --- a/pkgs/by-name/pg/pg_activity/package.nix +++ b/pkgs/by-name/pg/pg_activity/package.nix @@ -26,11 +26,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 e01a56206c1c7..9ec812e0c63f2 100644 --- a/pkgs/by-name/pg/pg_checksums/package.nix +++ b/pkgs/by-name/pg/pg_checksums/package.nix @@ -37,12 +37,12 @@ stdenv.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 6774bfda4e21a..f36bfd768df17 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; - maintainers = teams.geospatial.members; + license = lib.licenses.asl20; + maintainers = lib.teams.geospatial.members; }; } diff --git a/pkgs/by-name/pg/pg_flame/package.nix b/pkgs/by-name/pg/pg_flame/package.nix index 35f860063d1ab..03d1ab2336461 100644 --- a/pkgs/by-name/pg/pg_flame/package.nix +++ b/pkgs/by-name/pg/pg_flame/package.nix @@ -17,11 +17,11 @@ 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; - maintainers = with maintainers; [ Br1ght0ne ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Br1ght0ne ]; mainProgram = "pg_flame"; }; } diff --git a/pkgs/by-name/pg/pg_tileserv/package.nix b/pkgs/by-name/pg/pg_tileserv/package.nix index 96d5f6eb5caa3..94b2fbe6068a1 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; - maintainers = teams.geospatial.members; + license = lib.licenses.asl20; + maintainers = lib.teams.geospatial.members; }; } diff --git a/pkgs/by-name/pg/pgbackrest/package.nix b/pkgs/by-name/pg/pgbackrest/package.nix index 8ea691c0d4e35..bfa36fb1da02e 100644 --- a/pkgs/by-name/pg/pgbackrest/package.nix +++ b/pkgs/by-name/pg/pgbackrest/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { zstd ]; - meta = with lib; { + meta = { description = "Reliable PostgreSQL backup & restore"; homepage = "https://pgbackrest.org/"; changelog = "https://github.com/pgbackrest/pgbackrest/releases"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "pgbackrest"; - maintainers = with maintainers; [ zaninime ]; + maintainers = with lib.maintainers; [ zaninime ]; }; } diff --git a/pkgs/by-name/pg/pgcat/package.nix b/pkgs/by-name/pg/pgcat/package.nix index 525380e46f24c..3049f91b4c3b7 100644 --- a/pkgs/by-name/pg/pgcat/package.nix +++ b/pkgs/by-name/pg/pgcat/package.nix @@ -36,13 +36,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/pgcopydb/package.nix b/pkgs/by-name/pg/pgcopydb/package.nix index 9cf2992b28baf..1e0dde96f3d38 100644 --- a/pkgs/by-name/pg/pgcopydb/package.nix +++ b/pkgs/by-name/pg/pgcopydb/package.nix @@ -57,13 +57,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Copy a Postgres database to a target Postgres server (pg_dump | pg_restore on steroids"; homepage = "https://github.com/dimitri/pgcopydb"; changelog = "https://github.com/dimitri/pgcopydb/blob/${finalAttrs.src.rev}/CHANGELOG.md"; - license = licenses.postgresql; + license = lib.licenses.postgresql; maintainers = [ ]; mainProgram = "pgcopydb"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/pg/pget/package.nix b/pkgs/by-name/pg/pget/package.nix index 3a7ac72df18d8..5258d6d1362b0 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 259735f228dcc..6d73b2851e390 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ AndersonTorres ]; + 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 702f956d743d9..6bcb97da8f59d 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ AndersonTorres ]; + 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 ddaced12f87ab..00356dbf778e2 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pg/pgfplots/package.nix b/pkgs/by-name/pg/pgfplots/package.nix index 5c6f8a81b99fb..f89dac8601520 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/pg/pgloader/package.nix b/pkgs/by-name/pg/pgloader/package.nix index 1eaca6a9504bb..a16d364480395 100644 --- a/pkgs/by-name/pg/pgloader/package.nix +++ b/pkgs/by-name/pg/pgloader/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/pgloader --prefix LD_LIBRARY_PATH : "${LD_LIBRARY_PATH}" ''; - 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 351214ee02377..4c9b9b3af2580 100644 --- a/pkgs/by-name/pg/pgmanage/package.nix +++ b/pkgs/by-name/pg/pgmanage/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { 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 @@ -44,8 +44,8 @@ stdenv.mkDerivation rec { 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 e741b8db6ce70..730afd752f24c 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/pgpdump/package.nix b/pkgs/by-name/pg/pgpdump/package.nix index 77eaec1928cc3..c81d981d3489d 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; - maintainers = with maintainers; [ primeos ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ primeos ]; }; } diff --git a/pkgs/by-name/pg/pgpkeyserver-lite/package.nix b/pkgs/by-name/pg/pgpkeyserver-lite/package.nix index f15cb0c9b29e6..29391257bb332 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/ph/phantomsocks/package.nix b/pkgs/by-name/ph/phantomsocks/package.nix index 9f93d06139be9..d52d30e23ef33 100644 --- a/pkgs/by-name/ph/phantomsocks/package.nix +++ b/pkgs/by-name/ph/phantomsocks/package.nix @@ -29,15 +29,15 @@ buildGoModule rec { 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 8f692c6837ad6..a7fa6475d1569 100644 --- a/pkgs/by-name/ph/phash/package.nix +++ b/pkgs/by-name/ph/phash/package.nix @@ -42,11 +42,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 29a310d064cba..4db5a9bb47a13 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/phlare/package.nix b/pkgs/by-name/ph/phlare/package.nix index 96c1a33fa74bd..7f705d6d28f2e 100644 --- a/pkgs/by-name/ph/phlare/package.nix +++ b/pkgs/by-name/ph/phlare/package.nix @@ -39,10 +39,10 @@ buildGo122Module rec { "cmd/profilecli" ]; - meta = with lib; { + meta = { description = "Grafana Phlare is an open source database that provides fast, scalable, highly available, and efficient storage and querying of profiling data"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; homepage = "https://grafana.com/oss/phlare"; - maintainers = with maintainers; [ cathalmullan ]; + maintainers = with lib.maintainers; [ cathalmullan ]; }; } diff --git a/pkgs/by-name/ph/phockup/package.nix b/pkgs/by-name/ph/phockup/package.nix index c749974ced485..b3eaf61f0b224 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 9d3a5d1c47f75..b9cd6c4e09d05 100644 --- a/pkgs/by-name/ph/phodav/package.nix +++ b/pkgs/by-name/ph/phodav/package.nix @@ -56,11 +56,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 f74401c3ed8ed..f455c4c9fc1c5 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 fbafa8a010cea..996d3a61b3cd7 100644 --- a/pkgs/by-name/ph/photofield/package.nix +++ b/pkgs/by-name/ph/photofield/package.nix @@ -77,11 +77,11 @@ buildGo122Module { }; }; - 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/photon-rss/package.nix b/pkgs/by-name/ph/photon-rss/package.nix index cb613b044a813..b3116cabbab8d 100644 --- a/pkgs/by-name/ph/photon-rss/package.nix +++ b/pkgs/by-name/ph/photon-rss/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { 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 8be4fbe6b242b..13188edd8e4d7 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 b5953459d4223..1672dda3e9c77 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 898171820c7dd..84439aa27e198 100644 --- a/pkgs/by-name/ph/photoprism/backend.nix +++ b/pkgs/by-name/ph/photoprism/backend.nix @@ -43,10 +43,10 @@ buildGoModule rec { # https://github.com/tensorflow/tensorflow/issues/43847 CGO_LDFLAGS = "-fuse-ld=gold"; - 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 c297335d103a1..335275c189735 100644 --- a/pkgs/by-name/ph/photoprism/frontend.nix +++ b/pkgs/by-name/ph/photoprism/frontend.nix @@ -24,10 +24,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/libtensorflow.nix b/pkgs/by-name/ph/photoprism/libtensorflow.nix index f8dcf84d06177..b77722b13aa20 100644 --- a/pkgs/by-name/ph/photoprism/libtensorflow.nix +++ b/pkgs/by-name/ph/photoprism/libtensorflow.nix @@ -91,14 +91,14 @@ stdenv.mkDerivation rec { cp -r LICENSE THIRD_PARTY_TF_C_LICENSES lib include $out ''; - meta = with lib; { + meta = { homepage = "https://dl.photoprism.app/tensorflow/"; description = "Libtensorflow version for usage with photoprism backend"; platforms = [ "x86_64-linux" "aarch64-linux" ]; - license = licenses.asl20; - maintainers = with maintainers; [ benesim ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ benesim ]; }; } diff --git a/pkgs/by-name/ph/photoprism/package.nix b/pkgs/by-name/ph/photoprism/package.nix index 14c8b832876be..c23ec6c5f5352 100644 --- a/pkgs/by-name/ph/photoprism/package.nix +++ b/pkgs/by-name/ph/photoprism/package.nix @@ -96,12 +96,12 @@ 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"; inherit (libtensorflow.meta) platforms; - 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/phrasendrescher/package.nix b/pkgs/by-name/ph/phrasendrescher/package.nix index 8cb3d0cf91aad..976115d2e83b2 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 4f922cab202bf..361fc5fdecfe0 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 fbd7d5d908b6b..b9948e77389c5 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 70feb3ba5cb04..5915e5369d34d 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 = "A 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/pianobar/package.nix b/pkgs/by-name/pi/pianobar/package.nix index 58a93296f57da..619928c64ce76 100644 --- a/pkgs/by-name/pi/pianobar/package.nix +++ b/pkgs/by-name/pi/pianobar/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { CC = "gcc"; CFLAGS = "-std=c99"; - meta = with lib; { + meta = { description = "Console front-end for Pandora.com"; homepage = "https://6xq.net/pianobar/"; - platforms = platforms.unix; - license = licenses.mit; # expat version + platforms = lib.platforms.unix; + license = lib.licenses.mit; # expat version mainProgram = "pianobar"; }; } diff --git a/pkgs/by-name/pi/pianotrans/package.nix b/pkgs/by-name/pi/pianotrans/package.nix index 3d73cbf97e6c9..93963817f4a30 100644 --- a/pkgs/by-name/pi/pianotrans/package.nix +++ b/pkgs/by-name/pi/pianotrans/package.nix @@ -31,11 +31,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/picat/package.nix b/pkgs/by-name/pi/picat/package.nix index 7aeeb75be2e7f..c726d22f97206 100644 --- a/pkgs/by-name/pi/picat/package.nix +++ b/pkgs/by-name/pi/picat/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation { cp -r ../exs $out/share/examples ''; - meta = with lib; { + meta = { description = "Logic-based programming language"; mainProgram = "picat"; homepage = "http://picat-lang.org/"; - license = licenses.mpl20; + license = lib.licenses.mpl20; platforms = [ "x86_64-linux" "aarch64-linux" @@ -55,7 +55,7 @@ stdenv.mkDerivation { "x86_64-darwin" "aarch64-darwin" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ earldouglas thoughtpolice ]; diff --git a/pkgs/by-name/pi/pico-sdk/package.nix b/pkgs/by-name/pi/pico-sdk/package.nix index 28a1f2ba6d43a..5fda9dfdde04e 100644 --- a/pkgs/by-name/pi/pico-sdk/package.nix +++ b/pkgs/by-name/pi/pico-sdk/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/raspberrypi/pico-sdk"; description = "SDK provides the headers, libraries and build system necessary to write programs for the RP2040-based devices"; - license = licenses.bsd3; - maintainers = with maintainers; [ muscaln ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ muscaln ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/pi/picoc/package.nix b/pkgs/by-name/pi/picoc/package.nix index 24e6fedc9bba4..2ba10f48bc8ba 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 d211fd3afcb6d..d783c04e47141 100644 --- a/pkgs/by-name/pi/picolisp/package.nix +++ b/pkgs/by-name/pi/picolisp/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation { substituteInPlace $out/bin/pil --replace /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 64165d9d06c40..e11248f659d70 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 4f4c16a5fd1f2..d58de39e0be81 100644 --- a/pkgs/by-name/pi/picoprobe-udev-rules/package.nix +++ b/pkgs/by-name/pi/picoprobe-udev-rules/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { 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; - maintainers = with maintainers; [ mglolenstine ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ mglolenstine ]; }; } diff --git a/pkgs/by-name/pi/picosnitch/package.nix b/pkgs/by-name/pi/picosnitch/package.nix index 6d80caf6f6d4e..b0bc6c71b5b9d 100644 --- a/pkgs/by-name/pi/picosnitch/package.nix +++ b/pkgs/by-name/pi/picosnitch/package.nix @@ -32,14 +32,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/picotool/package.nix b/pkgs/by-name/pi/picotool/package.nix index 54a8b4f8e6d9d..ed409b4cf98e7 100644 --- a/pkgs/by-name/pi/picotool/package.nix +++ b/pkgs/by-name/pi/picotool/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { install -Dm444 ../udev/99-picotool.rules -t $out/etc/udev/rules.d ''; - meta = with lib; { + meta = { homepage = "https://github.com/raspberrypi/picotool"; description = "Tool for interacting with RP2040/RP2350 device(s) in BOOTSEL mode, or with an RP2040/RP2350 binary"; mainProgram = "picotool"; - license = licenses.bsd3; - maintainers = with maintainers; [ muscaln ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ muscaln ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pi/pid1/package.nix b/pkgs/by-name/pi/pid1/package.nix index c8ed12bf13fe3..25ce5d5e7627d 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-/KK9U1dgCLglgn/MJ7+sov4EEnY/nluEsz0ooMp6ggI="; - 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/pifpaf/package.nix b/pkgs/by-name/pi/pifpaf/package.nix index 18bdd1d2fa73b..112da0626b2ac 100644 --- a/pkgs/by-name/pi/pifpaf/package.nix +++ b/pkgs/by-name/pi/pifpaf/package.nix @@ -35,11 +35,11 @@ python3.pkgs.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/piglit/package.nix b/pkgs/by-name/pi/piglit/package.nix index 212e692062a0f..9e6b86702b66f 100644 --- a/pkgs/by-name/pi/piglit/package.nix +++ b/pkgs/by-name/pi/piglit/package.nix @@ -76,12 +76,12 @@ stdenv.mkDerivation rec { --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 8562b76e13bf1..d200e63849b27 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 4abc01cfdf726..5212772a7eaf1 100644 --- a/pkgs/by-name/pi/pijul/package.nix +++ b/pkgs/by-name/pi/pijul/package.nix @@ -54,11 +54,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 9288b69ef0a7f..cb4c4907ebe07 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 afb2ddf44aaf7..38e54fa3118b9 100644 --- a/pkgs/by-name/pi/pikchr/package.nix +++ b/pkgs/by-name/pi/pikchr/package.nix @@ -49,12 +49,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/pim6sd/package.nix b/pkgs/by-name/pi/pim6sd/package.nix index de22a71526d86..e6a3d8b42980e 100644 --- a/pkgs/by-name/pi/pim6sd/package.nix +++ b/pkgs/by-name/pi/pim6sd/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { flex ]; - meta = with lib; { + meta = { description = "PIM for IPv6 sparse mode daemon"; homepage = "https://github.com/troglobit/pim6sd"; - license = licenses.bsd3; - maintainers = with maintainers; [ hexa ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ hexa ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/pim6sd.x86_64-darwin }; } diff --git a/pkgs/by-name/pi/pinball/package.nix b/pkgs/by-name/pi/pinball/package.nix index 67f35ab0b1e33..8f61f3a1168a9 100644 --- a/pkgs/by-name/pi/pinball/package.nix +++ b/pkgs/by-name/pi/pinball/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://purl.org/rzr/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 ad8933af0b9aa..201aec03eb1c5 100644 --- a/pkgs/by-name/pi/pinecone/package.nix +++ b/pkgs/by-name/pi/pinecone/package.nix @@ -17,11 +17,11 @@ buildGoModule { 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 aabea86e36b1f..d221a6b0e5b7c 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 6912b47a25546..cd1b668a23869 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 d2c5abf2f8329..9255a41088e9a 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/pingtcp/package.nix b/pkgs/by-name/pi/pingtcp/package.nix index 7b5645bb821f6..4f7e007478358 100644 --- a/pkgs/by-name/pi/pingtcp/package.nix +++ b/pkgs/by-name/pi/pingtcp/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { install -Dm644 {..,$out/share/doc/pingtcp}/README.md ''; - meta = with lib; { + meta = { description = "Measure TCP handshake time"; homepage = "https://github.com/LanetNetwork/pingtcp"; - license = licenses.gpl3; - platforms = platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; mainProgram = "pingtcp"; }; } diff --git a/pkgs/by-name/pi/pingtunnel/package.nix b/pkgs/by-name/pi/pingtunnel/package.nix index 4f142c97a7642..5f66c30347e19 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/pinniped/package.nix b/pkgs/by-name/pi/pinniped/package.nix index 579b40897ad7b..81670cd6718c5 100644 --- a/pkgs/by-name/pi/pinniped/package.nix +++ b/pkgs/by-name/pi/pinniped/package.nix @@ -34,11 +34,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/pinpoint/package.nix b/pkgs/by-name/pi/pinpoint/package.nix index a0afef7c60447..4ee3cb9d8dad6 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 0fc192511c844..956c2bbfe2c24 100644 --- a/pkgs/by-name/pi/pinsel/package.nix +++ b/pkgs/by-name/pi/pinsel/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { mkdir -p $out/bin ''; - meta = with lib; { + meta = { description = "Minimal screenshot annotation tool with lua config"; homepage = "https://github.com/Nooo37/pinsel"; # no license - license = licenses.unfree; - maintainers = with maintainers; [ lom ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ lom ]; mainProgram = "pinsel"; }; } diff --git a/pkgs/by-name/pi/pioasm/package.nix b/pkgs/by-name/pi/pioasm/package.nix index 5abaf4f712fb9..f64a608f25305 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 a5b85c54602e5..6965b40365853 100644 --- a/pkgs/by-name/pi/pioneer/package.nix +++ b/pkgs/by-name/pi/pioneer/package.nix @@ -65,10 +65,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 fe68481031ed5..039d7039aaaeb 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/pipe-rename/package.nix b/pkgs/by-name/pi/pipe-rename/package.nix index 556b3947a60c0..7b35bb6be9b4f 100644 --- a/pkgs/by-name/pi/pipe-rename/package.nix +++ b/pkgs/by-name/pi/pipe-rename/package.nix @@ -28,11 +28,11 @@ 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "renamer"; }; } diff --git a/pkgs/by-name/pi/pipectl/package.nix b/pkgs/by-name/pi/pipectl/package.nix index 9c77e631429e3..680be22d86aa3 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/pipenv/package.nix b/pkgs/by-name/pi/pipenv/package.nix index eada77a14907b..56139a445bcc6 100644 --- a/pkgs/by-name/pi/pipenv/package.nix +++ b/pkgs/by-name/pi/pipenv/package.nix @@ -103,10 +103,10 @@ buildPythonApplication rec { --fish <(_PIPENV_COMPLETE=fish_source $out/bin/pipenv) ''; - meta = with lib; { + meta = { description = "Python Development Workflow for Humans"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ berdario ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ berdario ]; }; } diff --git a/pkgs/by-name/pi/piper-phonemize/package.nix b/pkgs/by-name/pi/piper-phonemize/package.nix index 85d53ee784989..f89bb36cbbf62 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 dcdd1af1a8092..d785d28a59aa4 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 a2a8b951081d7..3c32276b15935 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 94b272eccdbb5..5a984e6fa75c0 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 4dfa47b0cf27c..3ce691924ebfc 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 afa52bfc15686..1392675e0bd66 100644 --- a/pkgs/by-name/pi/pipreqs/package.nix +++ b/pkgs/by-name/pi/pipreqs/package.nix @@ -23,11 +23,11 @@ buildPythonApplication rec { # Tests requires network access. Works fine without sandboxing doCheck = false; - 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 3824efe0016fb..097a8848f50d1 100644 --- a/pkgs/by-name/pi/pirate-get/package.nix +++ b/pkgs/by-name/pi/pirate-get/package.nix @@ -21,12 +21,12 @@ buildPythonApplication rec { pyperclip ]; - 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 b38a4a34e6e86..83742133dd75c 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 221c577744d48..82a1668d01146 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 rec { 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 6682826cbc6d7..114ad6de14076 100644 --- a/pkgs/by-name/pi/pitivi/package.nix +++ b/pkgs/by-name/pi/pitivi/package.nix @@ -96,7 +96,7 @@ python3.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Non-Linear video editor utilizing the power of GStreamer"; homepage = "http://pitivi.org/"; longDescription = '' @@ -104,9 +104,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 227ff18f4b64b..8f3fdf394ba59 100644 --- a/pkgs/by-name/pi/piv-agent/package.nix +++ b/pkgs/by-name/pi/piv-agent/package.nix @@ -35,10 +35,10 @@ buildGoModule rec { buildInputs = if stdenv.hostPlatform.isDarwin then [ darwin.apple_sdk.frameworks.PCSC ] else [ 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 761b3a6b56e8a..5e09aae4f0569 100644 --- a/pkgs/by-name/pi/pix/package.nix +++ b/pkgs/by-name/pi/pix/package.nix @@ -98,12 +98,12 @@ stdenv.mkDerivation rec { gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "${shared-mime-info}/share") ''; - 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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/pi/pixd/package.nix b/pkgs/by-name/pi/pixd/package.nix index 57487c9f5efe9..c3bb33f1b4453 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 92b3886685e9e..79bc76ddec906 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/pixelnuke/package.nix b/pkgs/by-name/pi/pixelnuke/package.nix index 592e6d44b9b84..7e1fbd9027100 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 7bdc3c163f0d2..77e6c696d30c5 100644 --- a/pkgs/by-name/pi/pixelorama/package.nix +++ b/pkgs/by-name/pi/pixelorama/package.nix @@ -88,17 +88,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/pixman/package.nix b/pkgs/by-name/pi/pixman/package.nix index dcf1fad292ebf..feb7d3e5d4739 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 = "http://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 33d95b38ffdae..6e77114a84dd8 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 241208d479678..0dfe0d21629ce 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; - maintainers = with maintainers; [ mglolenstine ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ mglolenstine ]; }; } diff --git a/pkgs/by-name/pk/pkcrack/package.nix b/pkgs/by-name/pk/pkcrack/package.nix index 8422fd49c17ba..aed35346da635 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 70f3f586cc3fb..e280fc9e2c062 100644 --- a/pkgs/by-name/pk/pkcs11-provider/package.nix +++ b/pkgs/by-name/pk/pkcs11-provider/package.nix @@ -84,11 +84,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 73699df0ead2a..c56f442a20795 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 bcd386b134b45..0feb0031f23d7 100644 --- a/pkgs/by-name/pk/pkg-config-unwrapped/package.nix +++ b/pkgs/by-name/pk/pkg-config-unwrapped/package.nix @@ -70,11 +70,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 f1ee76af415c5..91f506cb53111 100644 --- a/pkgs/by-name/pk/pkg/package.nix +++ b/pkgs/by-name/pk/pkg/package.nix @@ -48,12 +48,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 a867c83f5eb1f..c77b2e44addc9 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 6f7e723450c57..b40b9a9dfac3f 100644 --- a/pkgs/by-name/pk/pktgen/package.nix +++ b/pkgs/by-name/pk/pktgen/package.nix @@ -66,11 +66,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 c7e11394511b2..15625219fb469 100644 --- a/pkgs/by-name/pl/planarity/package.nix +++ b/pkgs/by-name/pl/planarity/package.nix @@ -22,12 +22,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; - maintainers = teams.sage.members; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = lib.teams.sage.members; + 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 4419612af2ff6..2903fdf3873cf 100644 --- a/pkgs/by-name/pl/planetary_annihilation/package.nix +++ b/pkgs/by-name/pl/planetary_annihilation/package.nix @@ -102,12 +102,12 @@ 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; - maintainers = [ maintainers.domenkozar ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.domenkozar ]; sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/by-name/pl/plano-theme/package.nix b/pkgs/by-name/pl/plano-theme/package.nix index a19385c8cd997..ddc042ac34e02 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 a17aedefee262..2dbe0e632d5c9 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/plasma-overdose-kde-theme/package.nix b/pkgs/by-name/pl/plasma-overdose-kde-theme/package.nix index 261a1b10e2daf..a833dd701473a 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 c98b169d0c13e..f55f0af6d4a22 100644 --- a/pkgs/by-name/pl/plasticity/package.nix +++ b/pkgs/by-name/pl/plasticity/package.nix @@ -121,13 +121,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 5fa41c3915950..c19c7e5338d0b 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/platinum-searcher/package.nix b/pkgs/by-name/pl/platinum-searcher/package.nix index 76568d9482e01..50fd80576febd 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/platypus/package.nix b/pkgs/by-name/pl/platypus/package.nix index 893377db79a17..639518df1e428 100644 --- a/pkgs/by-name/pl/platypus/package.nix +++ b/pkgs/by-name/pl/platypus/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation { makeWrapper ${python}/bin/python $out/bin/platypus --add-flags "$out/libexec/platypus/bin/Platypus.py" ''; - meta = with lib; { + meta = { description = "Platypus variant caller"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://github.com/andyrimmer/Platypus"; - maintainers = with maintainers; [ jbedo ]; - platforms = platforms.x86_64; + maintainers = with lib.maintainers; [ jbedo ]; + platforms = lib.platforms.x86_64; }; } diff --git a/pkgs/by-name/pl/play-with-mpv/package.nix b/pkgs/by-name/pl/play-with-mpv/package.nix index 32fba102e6800..8c35a02f95265 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 rec { # 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 e4a4b10d1e6df..f47954027a8ca 100644 --- a/pkgs/by-name/pl/playerctl/package.nix +++ b/pkgs/by-name/pl/playerctl/package.nix @@ -45,12 +45,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 664b11dcfd2b7..298b72a52cc3b 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/plecost/package.nix b/pkgs/by-name/pl/plecost/package.nix index 942b0f232665b..83f7011c0e00b 100644 --- a/pkgs/by-name/pl/plecost/package.nix +++ b/pkgs/by-name/pl/plecost/package.nix @@ -36,11 +36,11 @@ python3Packages.buildPythonApplication rec { # Project has no tests doCheck = false; - 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/plemoljp-hs/package.nix b/pkgs/by-name/pl/plemoljp-hs/package.nix index d91f734bc43ea..002efc6fc2456 100644 --- a/pkgs/by-name/pl/plemoljp-hs/package.nix +++ b/pkgs/by-name/pl/plemoljp-hs/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Composite font of IBM Plex Mono, IBM Plex Sans JP and hidden full-width space"; homepage = "https://github.com/yuru7/PlemolJP"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ kachick ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ kachick ]; }; } diff --git a/pkgs/by-name/pl/plemoljp-nf/package.nix b/pkgs/by-name/pl/plemoljp-nf/package.nix index bac1ed0f708f2..cc06cb0039d0e 100644 --- a/pkgs/by-name/pl/plemoljp-nf/package.nix +++ b/pkgs/by-name/pl/plemoljp-nf/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Composite font of IBM Plex Mono, IBM Plex Sans JP and nerd-fonts"; homepage = "https://github.com/yuru7/PlemolJP"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ kachick ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ kachick ]; }; } diff --git a/pkgs/by-name/pl/plemoljp/package.nix b/pkgs/by-name/pl/plemoljp/package.nix index 0efdc6d580896..0d761a59854d8 100644 --- a/pkgs/by-name/pl/plemoljp/package.nix +++ b/pkgs/by-name/pl/plemoljp/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Composite font of IBM Plex Mono and IBM Plex Sans JP"; homepage = "https://github.com/yuru7/PlemolJP"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ kachick ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ kachick ]; }; } diff --git a/pkgs/by-name/pl/plistcpp/package.nix b/pkgs/by-name/pl/plistcpp/package.nix index 4b1aea8d12185..030cb42800672 100644 --- a/pkgs/by-name/pl/plistcpp/package.nix +++ b/pkgs/by-name/pl/plistcpp/package.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation { pugixml ]; - meta = with lib; { - maintainers = with maintainers; [ matthewbauer ]; + meta = { + maintainers = with lib.maintainers; [ matthewbauer ]; 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 691c164f62348..b69ebd30929c3 100644 --- a/pkgs/by-name/pl/plistwatch/package.nix +++ b/pkgs/by-name/pl/plistwatch/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { 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/plocate/package.nix b/pkgs/by-name/pl/plocate/package.nix index 5a38cd82123f6..c4dcb8bff05e4 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/ploticus/package.nix b/pkgs/by-name/pl/ploticus/package.nix index 63f2409da4b82..c957b0fc920ab 100644 --- a/pkgs/by-name/pl/ploticus/package.nix +++ b/pkgs/by-name/pl/ploticus/package.nix @@ -84,7 +84,7 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "Non-interactive software package for producing plots and charts"; longDescription = '' Ploticus is a free, GPL'd, non-interactive @@ -94,9 +94,9 @@ stdenv.mkDerivation (finalAttrs: { statistical capabilities. It allows significant user control over colors, styles, options and details. ''; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ pSub ]; homepage = "https://ploticus.sourceforge.net/"; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; }; }) diff --git a/pkgs/by-name/pl/plots/package.nix b/pkgs/by-name/pl/plots/package.nix index 781309d7aa548..1fb67a0dda0aa 100644 --- a/pkgs/by-name/pl/plots/package.nix +++ b/pkgs/by-name/pl/plots/package.nix @@ -58,7 +58,7 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Graph plotting app for GNOME"; mainProgram = "plots"; longDescription = '' @@ -68,7 +68,7 @@ python3Packages.buildPythonApplication rec { It can display polar equations, and both implicit and explicit Cartesian equations. ''; homepage = "https://github.com/alexhuntley/Plots"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ sund3RRR ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ sund3RRR ]; }; } diff --git a/pkgs/by-name/pl/plugin-torture/package.nix b/pkgs/by-name/pl/plugin-torture/package.nix index 5e116eb6e3ef8..128db871534f4 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 de8c14bf4032a..cfc77503189d2 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 rec { 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 1c838f2456dbd..593e4aa95a476 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 3809e5fccc84c..de3efc02843d1 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 279243c1732b7..b41155374dfec 100644 --- a/pkgs/by-name/pl/pluto/package.nix +++ b/pkgs/by-name/pl/pluto/package.nix @@ -23,12 +23,12 @@ buildGoModule rec { "-X main.version=v${version}" ]; - 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; [ peterromfeldhk kashw2 ]; diff --git a/pkgs/by-name/pl/plymouth/package.nix b/pkgs/by-name/pl/plymouth/package.nix index ae5e4ee2339c4..86e30b48cdee1 100644 --- a/pkgs/by-name/pl/plymouth/package.nix +++ b/pkgs/by-name/pl/plymouth/package.nix @@ -123,11 +123,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; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/pm/pmidi/package.nix b/pkgs/by-name/pm/pmidi/package.nix index e8c6212d99e1b..436d809dcd62b 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 08205cc9fd508..4a567f89b37e5 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/pm/pmtiles/package.nix b/pkgs/by-name/pm/pmtiles/package.nix index c819187e4366c..e82a43f845fa5 100644 --- a/pkgs/by-name/pm/pmtiles/package.nix +++ b/pkgs/by-name/pm/pmtiles/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { mv $out/bin/go-pmtiles $out/bin/pmtiles ''; - meta = with lib; { + meta = { description = "Single-file utility for creating and working with PMTiles archives"; homepage = "https://github.com/protomaps/go-pmtiles"; - license = licenses.bsd3; - maintainers = teams.geospatial.members ++ (with maintainers; [ theaninova ]); + license = lib.licenses.bsd3; + maintainers = lib.teams.geospatial.members ++ (with lib.maintainers; [ theaninova ]); mainProgram = "pmtiles"; }; } diff --git a/pkgs/by-name/pn/pn/package.nix b/pkgs/by-name/pn/pn/package.nix index 9eeec4cde9524..126786fa59852 100644 --- a/pkgs/by-name/pn/pn/package.nix +++ b/pkgs/by-name/pn/pn/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { protobuf ]; - meta = with lib; { + meta = { description = "Libphonenumber command-line wrapper"; mainProgram = "pn"; homepage = "https://github.com/Orange-OpenSource/pn"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = [ maintainers.McSinyx ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.McSinyx ]; }; } diff --git a/pkgs/by-name/pn/pngcheck/package.nix b/pkgs/by-name/pn/pngcheck/package.nix index f6bc2a5f3e468..fb96380cf1a92 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 6fe7c035c61ab..43d746ebdd35e 100644 --- a/pkgs/by-name/pn/pngloss/package.nix +++ b/pkgs/by-name/pn/pngloss/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { 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 c418ecbb9ecd0..f894593450471 100644 --- a/pkgs/by-name/pn/pngnq/package.nix +++ b/pkgs/by-name/pn/pngnq/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { sed -i '/png.h/a \#include ' src/rwpng.c ''; - 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 d87379370d6aa..be2220a84c457 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 e697003b50262..b2952c80f5c50 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 16fc925ba135d..301ec1dcaabee 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/pnmixer/package.nix b/pkgs/by-name/pn/pnmixer/package.nix index 06204e425d25c..78736d5aebc13 100644 --- a/pkgs/by-name/pn/pnmixer/package.nix +++ b/pkgs/by-name/pn/pnmixer/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { pcre ]; - meta = with lib; { + meta = { homepage = "https://github.com/nicklan/pnmixer"; description = "ALSA volume mixer for the system tray"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ campadrenalin romildo ]; diff --git a/pkgs/by-name/pn/pnpm-shell-completion/package.nix b/pkgs/by-name/pn/pnpm-shell-completion/package.nix index 3ec44b2e175d8..90c70becf0979 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 b34c5eed3d016..b8bf361e5cfd2 100644 --- a/pkgs/by-name/po/pocket-casts/package.nix +++ b/pkgs/by-name/po/pocket-casts/package.nix @@ -49,12 +49,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 618adb2ab8d03..92bbc8bef6c6d 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/poco/package.nix b/pkgs/by-name/po/poco/package.nix index 86a8eba7aff37..0d2deb10dcdd4 100644 --- a/pkgs/by-name/po/poco/package.nix +++ b/pkgs/by-name/po/poco/package.nix @@ -61,14 +61,14 @@ 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; [ orivej tomodachi94 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/po/pod2mdoc/package.nix b/pkgs/by-name/po/pod2mdoc/package.nix index 97dcc55908542..1814a9d57cd32 100644 --- a/pkgs/by-name/po/pod2mdoc/package.nix +++ b/pkgs/by-name/po/pod2mdoc/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { install -m 0444 pod2mdoc.1 $out/share/man/man1 ''; - meta = with lib; { + meta = { homepage = "http://mdocml.bsd.lv/"; description = "converter from POD 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 = "pod2mdoc"; }; } diff --git a/pkgs/by-name/po/podiff/package.nix b/pkgs/by-name/po/podiff/package.nix index 0c858d8e43dee..0174c9608b47b 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/poetry2conda/package.nix b/pkgs/by-name/po/poetry2conda/package.nix index ee2c500ad28d3..f8553c93469d0 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 3f07917681f71..3901f051bc936 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-VYF2uhgxUFH/VAy/ttQOULRFFiPRf0D+0WfGlQyYDGc="; - 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 a4adf5a8eba1e..81beed1f60a3d 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 79023583ac223..a2a42a6e9c3b0 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 rec { 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 rec { 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 3a7494e70c434..6cfcda76c8439 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 01abfe0bfcc87..fc6927eeae2a4 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 20ab91317222d..13570c8de3695 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/polenum/package.nix b/pkgs/by-name/po/polenum/package.nix index 728b47ed4e8df..feb792cac8cb3 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 b06be84ccd702..f17c2931ac165 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/polipo/package.nix b/pkgs/by-name/po/polipo/package.nix index f050199942c0a..72df93a2ca0e6 100644 --- a/pkgs/by-name/po/polipo/package.nix +++ b/pkgs/by-name/po/polipo/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { "LOCAL_ROOT=$(out)/share/polipo/www" ]; - meta = with lib; { + meta = { homepage = "http://www.pps.jussieu.fr/~jch/software/polipo/"; description = "Small and fast caching web proxy"; - license = licenses.mit; - maintainers = with maintainers; [ ehmry ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ehmry ]; + platforms = lib.platforms.all; knownVulnerabilities = [ "Unmaintained upstream: https://github.com/jech/polipo/commit/4d42ca1b5849" ]; diff --git a/pkgs/by-name/po/polkit/package.nix b/pkgs/by-name/po/polkit/package.nix index 9ceb10a5bc2d9..df0133d9f4c70 100644 --- a/pkgs/by-name/po/polkit/package.nix +++ b/pkgs/by-name/po/polkit/package.nix @@ -203,15 +203,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 ]; - maintainers = teams.freedesktop.members ++ (with maintainers; [ ]); + maintainers = lib.teams.freedesktop.members ++ (with lib.maintainers; [ ]); }; } diff --git a/pkgs/by-name/po/pololu-tic/package.nix b/pkgs/by-name/po/pololu-tic/package.nix index 9ba193adc77ca..2d012b11a435f 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 addaf26b93230..f043a212fc8b4 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 817c0558fca4a..eb3202c6ea738 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 1aca3360c8175..ad5727e1723c8 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/polygraph/package.nix b/pkgs/by-name/po/polygraph/package.nix index 9629cf098cc2c..31dddf2e20a49 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/polylux2pdfpc/package.nix b/pkgs/by-name/po/polylux2pdfpc/package.nix index a080b2b123e68..fdd83d421a768 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/andreasKroepelin/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/polypane/package.nix b/pkgs/by-name/po/polypane/package.nix index c002a89f57eaa..beb5aeae688ac 100644 --- a/pkgs/by-name/po/polypane/package.nix +++ b/pkgs/by-name/po/polypane/package.nix @@ -29,16 +29,16 @@ appimageTools.wrapType2 { $out/share/icons/hicolor/512x512/apps/${pname}.png ''; - meta = with lib; { + meta = { description = "Browser with unified devtools targeting responsability and accessibility"; longDescription = '' The stand-alone browser for ambitious developers that want to build responsive, accessible and performant websites in a fraction of the time it takes with other browsers. ''; homepage = "https://polypane.app/"; - maintainers = with maintainers; [ zoedsoupe ]; + maintainers = with lib.maintainers; [ zoedsoupe ]; platforms = [ "x86_64-linux" ]; changelog = "https://polypane.app/docs/changelog/"; - license = licenses.unfree; + license = lib.licenses.unfree; }; } diff --git a/pkgs/by-name/po/polytopes_db/package.nix b/pkgs/by-name/po/polytopes_db/package.nix index a46acf47d242d..9832c0341fb48 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; - maintainers = teams.sage.members; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; + maintainers = lib.teams.sage.members; }; } diff --git a/pkgs/by-name/po/pom/package.nix b/pkgs/by-name/po/pom/package.nix index 843012a86335f..58954a7744412 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 990f1bb348e3d..17090aab19b01 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 b19b8c130e3db..2c844ec4d9e65 100644 --- a/pkgs/by-name/po/pomerium/package.nix +++ b/pkgs/by-name/po/pomerium/package.nix @@ -127,12 +127,12 @@ buildGo123Module 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/ponymix/package.nix b/pkgs/by-name/po/ponymix/package.nix index c3072757a57e6..ca3e3590160ab 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; - maintainers = with maintainers; [ ericsagnes ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ericsagnes ]; }; } diff --git a/pkgs/by-name/po/ponysay/package.nix b/pkgs/by-name/po/ponysay/package.nix index fcbc75e181962..045d947ea93e0 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 b8e34f536fab9..57e9378c809e1 100644 --- a/pkgs/by-name/po/pop-gtk-theme/package.nix +++ b/pkgs/by-name/po/pop-gtk-theme/package.nix @@ -56,15 +56,15 @@ stdenv.mkDerivation rec { 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 fd0a63376b7ba..5c63faa3c7941 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/pop-launcher/package.nix b/pkgs/by-name/po/pop-launcher/package.nix index 4e98ec2d33088..097c3ca5ff0a9 100644 --- a/pkgs/by-name/po/pop-launcher/package.nix +++ b/pkgs/by-name/po/pop-launcher/package.nix @@ -71,12 +71,12 @@ rustPlatform.buildRustPackage rec { --replace-fail '/usr/bin/gnome-terminal' 'gnome-terminal' ''; - meta = with lib; { + meta = { description = "Modular IPC-based desktop launcher service"; homepage = "https://github.com/pop-os/launcher"; - platforms = platforms.linux; - license = licenses.mpl20; - maintainers = with maintainers; [ samhug ]; + platforms = lib.platforms.linux; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ samhug ]; mainProgram = "pop-launcher"; }; } diff --git a/pkgs/by-name/po/poppler_data/package.nix b/pkgs/by-name/po/poppler_data/package.nix index 6c11f81ea0afa..3ab3d7d1aee35 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 maintainers = poppler.meta.maintainers; }; } diff --git a/pkgs/by-name/po/popt/package.nix b/pkgs/by-name/po/popt/package.nix index eb9e4f3685ed4..dffe05a33b420 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 b28cee329d493..6ef360da7df88 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 d67b7782867a3..98e74c07924a9 100644 --- a/pkgs/by-name/po/porsmo/package.nix +++ b/pkgs/by-name/po/porsmo/package.nix @@ -41,11 +41,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/posteid-seed-extractor/package.nix b/pkgs/by-name/po/posteid-seed-extractor/package.nix index 3a9976508fe11..eb4dd116e042f 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/posterazor/package.nix b/pkgs/by-name/po/posterazor/package.nix index 300f959bb0f27..041d2876ef8e3 100644 --- a/pkgs/by-name/po/posterazor/package.nix +++ b/pkgs/by-name/po/posterazor/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { cp PosteRazor $out/bin ''; - meta = with lib; { + meta = { homepage = "http://posterazor.sourceforge.net/"; description = "Cuts a raster image into pieces which can afterwards be printed out and assembled to a poster"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = [ maintainers.madjar ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.madjar ]; mainProgram = "PosteRazor"; }; } diff --git a/pkgs/by-name/po/postgres-lsp/package.nix b/pkgs/by-name/po/postgres-lsp/package.nix index b2927a6600cf8..91d72f20bebba 100644 --- a/pkgs/by-name/po/postgres-lsp/package.nix +++ b/pkgs/by-name/po/postgres-lsp/package.nix @@ -29,11 +29,11 @@ rustPlatform.buildRustPackage rec { RUSTC_BOOTSTRAP = 1; # We need rust unstable features - meta = with lib; { + meta = { description = "Language Server for Postgres"; homepage = "https://github.com/supabase/postgres_lsp"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "postgres_lsp"; }; } diff --git a/pkgs/by-name/po/postgrey/package.nix b/pkgs/by-name/po/postgrey/package.nix index 9710debf5b78e..44b5e6ed32f48 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 8e00897e79cd9..a2e2237725174 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 5bb559f49d5b9..aafc3a7863282 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 f100d56d94cff..135aa5a33e89d 100644 --- a/pkgs/by-name/po/postsrsd/package.nix +++ b/pkgs/by-name/po/postsrsd/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { help2man ]; - meta = with lib; { + meta = { homepage = "https://github.com/roehling/postsrsd"; description = "Postfix Sender Rewriting Scheme daemon"; mainProgram = "postsrsd"; - license = licenses.gpl2Plus; - platforms = platforms.all; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/po/posy-cursors/package.nix b/pkgs/by-name/po/posy-cursors/package.nix index 1b1a384b71c6d..e9ffe6b8893dc 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 aeaa1c93d540c..122d60c641eaa 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 ce7a6452380c1..539623f219e2b 100644 --- a/pkgs/by-name/po/potreeconverter/package.nix +++ b/pkgs/by-name/po/potreeconverter/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation rec { 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/pounce/package.nix b/pkgs/by-name/po/pounce/package.nix index 84fac59714c63..5a5c8293381a9 100644 --- a/pkgs/by-name/po/pounce/package.nix +++ b/pkgs/by-name/po/pounce/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://code.causal.agency/june/pounce"; description = "Simple multi-client TLS-only IRC bouncer"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ edef ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ edef ]; }; } diff --git a/pkgs/by-name/po/power-calibrate/package.nix b/pkgs/by-name/po/power-calibrate/package.nix index 5162b39f3f992..c9f1dc43746b9 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/poweralertd/package.nix b/pkgs/by-name/po/poweralertd/package.nix index 4225bd7d74f6d..da95cb22871d5 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 e38ea1713f392..d1a6c24a391fb 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/powerdns-admin/package.nix b/pkgs/by-name/po/powerdns-admin/package.nix index 31f7c15777f47..5edb15a928b72 100644 --- a/pkgs/by-name/po/powerdns-admin/package.nix +++ b/pkgs/by-name/po/powerdns-admin/package.nix @@ -164,12 +164,12 @@ stdenv.mkDerivation { tests = nixosTests.powerdns-admin; }; - meta = with lib; { + meta = { description = "PowerDNS web interface with advanced features"; mainProgram = "powerdns-admin"; homepage = "https://github.com/PowerDNS-Admin/PowerDNS-Admin"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Flakebi zhaofengli ]; diff --git a/pkgs/by-name/po/powerjoular/package.nix b/pkgs/by-name/po/powerjoular/package.nix index 64ecfbfd738d5..9f26fe66ddc18 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 a9f0dc164ac09..09f50ce73bb60 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 cc050d4a3b2e0..50f51acc53e7c 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 b4d5781b55352..e0da8dc9e444e 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/powerstat/package.nix b/pkgs/by-name/po/powerstat/package.nix index 1a4838d5bb487..611066420092b 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 d20287e3e41b6..fb8dfba71b7bb 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.com/MartijnBraam/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 f7f0a04f2181f..783439cf5924f 100644 --- a/pkgs/by-name/pp/pplatex/package.nix +++ b/pkgs/by-name/pp/pplatex/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "A 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/pps-tools/package.nix b/pkgs/by-name/pp/pps-tools/package.nix index 069e5fcf008b6..4c485fa94202b 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 239884dd78d4d..aa17b45d675d1 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 75afbd812f058..9e90980f03eee 100644 --- a/pkgs/by-name/pp/pptpd/package.nix +++ b/pkgs/by-name/pp/pptpd/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { substituteInPlace plugins/Makefile --replace "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/pqiv/package.nix b/pkgs/by-name/pq/pqiv/package.nix index f9d17bc2f9136..9fd7dcfe654cc 100644 --- a/pkgs/by-name/pq/pqiv/package.nix +++ b/pkgs/by-name/pq/pqiv/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation (finalAttrs: { prePatch = "patchShebangs ."; - meta = with lib; { + meta = { description = "Powerful image viewer with minimal UI"; homepage = "https://www.pberndt.com/Programme/Linux/pqiv"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ donovanglover ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ donovanglover ]; + platforms = lib.platforms.linux; mainProgram = "pqiv"; }; }) diff --git a/pkgs/by-name/pq/pql/package.nix b/pkgs/by-name/pq/pql/package.nix index df0424707dc95..64b7e4a1d921e 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 d993ad6b1db03..266ad79c1d431 100644 --- a/pkgs/by-name/pq/pqos-wrapper/package.nix +++ b/pkgs/by-name/pq/pqos-wrapper/package.nix @@ -18,11 +18,11 @@ python3.pkgs.buildPythonApplication rec { makeWrapperArgs = [ "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ intel-cmt-cat ]}" ]; - 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 7f26f0e1c96b9..1a4dd59887b64 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-w0WD+EtVGFMGpS4a2DJrLdbunwF2yiONKQwdcQG2EB0="; - 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/prboom-plus/package.nix b/pkgs/by-name/pr/prboom-plus/package.nix index 9367745fc611d..46b22400a41e7 100644 --- a/pkgs/by-name/pr/prboom-plus/package.nix +++ b/pkgs/by-name/pr/prboom-plus/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { "${soundfont-fluid}/share/soundfonts/FluidR3_GM2-2.sf2" ''; - meta = with lib; { + meta = { homepage = "https://github.com/coelckers/prboom-plus"; description = "Advanced, Vanilla-compatible Doom engine based on PrBoom"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.ashley ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.ashley ]; }; } 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 0352005f0726c..ae545d161d782 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 @@ -41,11 +41,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/pre-commit/package.nix b/pkgs/by-name/pr/pre-commit/package.nix index d071d53f7218e..9bbe5d2c7794b 100644 --- a/pkgs/by-name/pr/pre-commit/package.nix +++ b/pkgs/by-name/pr/pre-commit/package.nix @@ -180,11 +180,11 @@ buildPythonApplication rec { inherit git pre-commit; }; - meta = with lib; { + meta = { description = "Framework for managing and maintaining multi-language pre-commit hooks"; homepage = "https://pre-commit.com/"; - license = licenses.mit; - maintainers = with maintainers; [ borisbabic ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ borisbabic ]; mainProgram = "pre-commit"; }; } diff --git a/pkgs/by-name/pr/precice-config-visualizer/package.nix b/pkgs/by-name/pr/precice-config-visualizer/package.nix index af1a86b366cdc..85b3762f4ddbf 100644 --- a/pkgs/by-name/pr/precice-config-visualizer/package.nix +++ b/pkgs/by-name/pr/precice-config-visualizer/package.nix @@ -22,11 +22,11 @@ python3Packages.buildPythonApplication rec { 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 a8f29b1775418..ac0ed75c81b62 100644 --- a/pkgs/by-name/pr/prelink/package.nix +++ b/pkgs/by-name/pr/prelink/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - 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/preload/package.nix b/pkgs/by-name/pr/preload/package.nix index 252d925cff66c..fc12e5c250e02 100644 --- a/pkgs/by-name/pr/preload/package.nix +++ b/pkgs/by-name/pr/preload/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { make sysconfigdir=$out/etc/conf.d install ''; - meta = with lib; { + meta = { description = "Makes applications run faster by prefetching binaries and shared objects"; homepage = "https://sourceforge.net/projects/preload"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = lib.platforms.linux; mainProgram = "preload"; - maintainers = with maintainers; [ ldprg ]; + maintainers = with lib.maintainers; [ ldprg ]; }; } diff --git a/pkgs/by-name/pr/presage/package.nix b/pkgs/by-name/pr/presage/package.nix index 79d2fafac4852..7c23a99fe1221 100644 --- a/pkgs/by-name/pr/presage/package.nix +++ b/pkgs/by-name/pr/presage/package.nix @@ -68,10 +68,10 @@ stdenv.mkDerivation rec { checkTarget = "check"; - meta = with lib; { + meta = { description = "Intelligent predictive text entry system"; homepage = "https://presage.sourceforge.io/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/pr/present-cli/package.nix b/pkgs/by-name/pr/present-cli/package.nix index 8df4ea1e21fc9..b204e3dcca6f2 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 rec { 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 e2294908b45f5..0e44d4b5dfdac 100644 --- a/pkgs/by-name/pr/present/package.nix +++ b/pkgs/by-name/pr/present/package.nix @@ -37,11 +37,11 @@ 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; - maintainers = with maintainers; [ lom ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lom ]; mainProgram = "present"; }; } diff --git a/pkgs/by-name/pr/pretix-banktool/package.nix b/pkgs/by-name/pr/pretix-banktool/package.nix index fc91c12e97a79..9bc2a680f17cf 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 2cb5569135a58..76d7c03c29643 100644 --- a/pkgs/by-name/pr/pretix/package.nix +++ b/pkgs/by-name/pr/pretix/package.nix @@ -282,10 +282,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 @@ -296,8 +296,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 307ff4114eb7a..24cfc9da7110f 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/pages.nix b/pkgs/by-name/pr/pretix/plugins/pages.nix index 3e7b5eb314e7e..3b2f61e8e84e9 100644 --- a/pkgs/by-name/pr/pretix/plugins/pages.nix +++ b/pkgs/by-name/pr/pretix/plugins/pages.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.nix b/pkgs/by-name/pr/pretix/plugins/passbook.nix index d5ca08315f18a..96b76e1b8344b 100644 --- a/pkgs/by-name/pr/pretix/plugins/passbook.nix +++ b/pkgs/by-name/pr/pretix/plugins/passbook.nix @@ -51,10 +51,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.nix b/pkgs/by-name/pr/pretix/plugins/reluctant-stripe.nix index e61497499488e..b0faf760ee78f 100644 --- a/pkgs/by-name/pr/pretix/plugins/reluctant-stripe.nix +++ b/pkgs/by-name/pr/pretix/plugins/reluctant-stripe.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/stretchgoals.nix b/pkgs/by-name/pr/pretix/plugins/stretchgoals.nix index afdb4616bcd10..e090cd666905b 100644 --- a/pkgs/by-name/pr/pretix/plugins/stretchgoals.nix +++ b/pkgs/by-name/pr/pretix/plugins/stretchgoals.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-avgchart"; - 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.nix b/pkgs/by-name/pr/pretix/plugins/zugferd.nix index bada0bbc9bfdd..64e3774d1af27 100644 --- a/pkgs/by-name/pr/pretix/plugins/zugferd.nix +++ b/pkgs/by-name/pr/pretix/plugins/zugferd.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 1d629216b0d67..68e1eb7881ea2 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 00c3c3e3889df..7cd14e3ff9072 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/prime-server/package.nix b/pkgs/by-name/pr/prime-server/package.nix index 41bd6671019f4..1be2786b24dec 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; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.Thra11 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pr/printrun/package.nix b/pkgs/by-name/pr/printrun/package.nix index 088dc789b0923..ec2254e1eaca9 100644 --- a/pkgs/by-name/pr/printrun/package.nix +++ b/pkgs/by-name/pr/printrun/package.nix @@ -63,10 +63,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; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pr/prisma/package.nix b/pkgs/by-name/pr/prisma/package.nix index 6d1308c8c0ac9..df9c18eeb337a 100644 --- a/pkgs/by-name/pr/prisma/package.nix +++ b/pkgs/by-name/pr/prisma/package.nix @@ -91,11 +91,11 @@ 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 ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aqrln ]; + 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 37ea802f59e20..8e6e4bc1b5c7c 100644 --- a/pkgs/by-name/pr/pritunl-client/package.nix +++ b/pkgs/by-name/pr/pritunl-client/package.nix @@ -155,11 +155,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 31c41e894a0b4..b79b724ede14c 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/procdump/package.nix b/pkgs/by-name/pr/procdump/package.nix index a547f7f69f35a..7cfe672ec757e 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 646245950944a..2bee85823caf8 100644 --- a/pkgs/by-name/pr/process-viewer/package.nix +++ b/pkgs/by-name/pr/process-viewer/package.nix @@ -33,11 +33,11 @@ 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "process_viewer"; }; } diff --git a/pkgs/by-name/pr/procmail/package.nix b/pkgs/by-name/pr/procmail/package.nix index dfb4bdb5a8955..dc1f3d13a356a 100644 --- a/pkgs/by-name/pr/procmail/package.nix +++ b/pkgs/by-name/pr/procmail/package.nix @@ -53,11 +53,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; - maintainers = with maintainers; [ gebner ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ gebner ]; }; } diff --git a/pkgs/by-name/pr/prodigal/package.nix b/pkgs/by-name/pr/prodigal/package.nix index 616ce2f6c5f88..818d00989dae0 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 79ae452d1da29..3b62d9b3dc600 100644 --- a/pkgs/by-name/pr/professor/package.nix +++ b/pkgs/by-name/pr/professor/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { 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 27b1fbbdf6233..b96ebac44a9d2 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 100848d523ab6..4e7745cb23a34 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 146baa6231d4e..92cc650efcf94 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 046798a444aac..3950ce08d39f2 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://www.upperbounds.net"; 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/prometheus-dcgm-exporter/package.nix b/pkgs/by-name/pr/prometheus-dcgm-exporter/package.nix index 02f115756d511..c56b63b5f7d4b 100644 --- a/pkgs/by-name/pr/prometheus-dcgm-exporter/package.nix +++ b/pkgs/by-name/pr/prometheus-dcgm-exporter/package.nix @@ -42,12 +42,12 @@ buildGoModule rec { patchelf --add-needed libnvidia-ml.so "$out/bin/dcgm-exporter" ''; - meta = with lib; { + meta = { description = "NVIDIA GPU metrics exporter for Prometheus leveraging DCGM"; homepage = "https://github.com/NVIDIA/dcgm-exporter"; - license = licenses.asl20; - maintainers = teams.deshaw.members; + license = lib.licenses.asl20; + maintainers = lib.teams.deshaw.members; mainProgram = "dcgm-exporter"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pr/prometheus-deluge-exporter/package.nix b/pkgs/by-name/pr/prometheus-deluge-exporter/package.nix index 1524f5ee3abf8..14ea75144f9dc 100644 --- a/pkgs/by-name/pr/prometheus-deluge-exporter/package.nix +++ b/pkgs/by-name/pr/prometheus-deluge-exporter/package.nix @@ -25,11 +25,11 @@ python3.pkgs.buildPythonApplication rec { "deluge_exporter" ]; - meta = with lib; { + meta = { description = "Prometheus exporter for Deluge"; homepage = "https://github.com/ibizaman/deluge_exporter"; - license = licenses.isc; - maintainers = with maintainers; [ ibizaman ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ ibizaman ]; mainProgram = "deluge-exporter"; }; } diff --git a/pkgs/by-name/pr/prometheus-dnssec-exporter/package.nix b/pkgs/by-name/pr/prometheus-dnssec-exporter/package.nix index 88a9a7ee31388..a351eec0dba4f 100644 --- a/pkgs/by-name/pr/prometheus-dnssec-exporter/package.nix +++ b/pkgs/by-name/pr/prometheus-dnssec-exporter/package.nix @@ -16,10 +16,10 @@ buildGoModule { vendorHash = "sha256-u7X8v7h1aL8B1el4jFzGRKHvnaK+Rz0OCitaC6xgyjw="; - meta = with lib; { + meta = { homepage = "https://github.com/chrj/prometheus-dnssec-exporter"; description = "DNSSEC Exporter for Prometheus"; - license = licenses.mit; - maintainers = with maintainers; [ swendel ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ swendel ]; }; } diff --git a/pkgs/by-name/pr/prometheus-elasticsearch-exporter/package.nix b/pkgs/by-name/pr/prometheus-elasticsearch-exporter/package.nix index 45df05913b85a..087514fa78151 100644 --- a/pkgs/by-name/pr/prometheus-elasticsearch-exporter/package.nix +++ b/pkgs/by-name/pr/prometheus-elasticsearch-exporter/package.nix @@ -16,11 +16,11 @@ buildGoModule rec { vendorHash = "sha256-jbPFxwrXWwxPamMnbBxFvGBrt38YG7N5fTweAYULEYQ="; - meta = with lib; { + meta = { description = "Elasticsearch stats exporter for Prometheus"; mainProgram = "elasticsearch_exporter"; homepage = "https://github.com/prometheus-community/elasticsearch_exporter"; - license = licenses.asl20; - maintainers = teams.deshaw.members; + license = lib.licenses.asl20; + maintainers = lib.teams.deshaw.members; }; } diff --git a/pkgs/by-name/pr/prometheus-frr-exporter/package.nix b/pkgs/by-name/pr/prometheus-frr-exporter/package.nix index a838ad61677aa..0b7cf05529dca 100644 --- a/pkgs/by-name/pr/prometheus-frr-exporter/package.nix +++ b/pkgs/by-name/pr/prometheus-frr-exporter/package.nix @@ -24,7 +24,7 @@ buildGoModule { "-X github.com/prometheus/common/version.Branch=unknown" ]; - meta = with lib; { + meta = { description = "Prometheus exporter for FRR version 3.0+"; longDescription = '' Prometheus exporter for FRR version 3.0+ that collects metrics from the @@ -32,8 +32,8 @@ buildGoModule { Prometheus. ''; homepage = "https://github.com/tynany/frr_exporter"; - license = licenses.mit; - maintainers = with maintainers; [ javaes ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ javaes ]; mainProgram = "frr_exporter"; }; } diff --git a/pkgs/by-name/pr/prometheus-klipper-exporter/package.nix b/pkgs/by-name/pr/prometheus-klipper-exporter/package.nix index db41ced6fd452..2537f98edd75a 100644 --- a/pkgs/by-name/pr/prometheus-klipper-exporter/package.nix +++ b/pkgs/by-name/pr/prometheus-klipper-exporter/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = " Prometheus Exporter for Klipper "; homepage = "https://github.com/scross01/prometheus-klipper-exporter"; - license = licenses.mit; - maintainers = with maintainers; [ wulfsta ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wulfsta ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pr/prometheus-libvirt-exporter/package.nix b/pkgs/by-name/pr/prometheus-libvirt-exporter/package.nix index 44db96cc3948b..64b7c7023fea9 100644 --- a/pkgs/by-name/pr/prometheus-libvirt-exporter/package.nix +++ b/pkgs/by-name/pr/prometheus-libvirt-exporter/package.nix @@ -25,10 +25,10 @@ buildGoModule rec { nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Prometheus metrics exporter for libvirt"; homepage = "https://github.com/Tinkoff/libvirt-exporter"; - license = licenses.asl20; - maintainers = with maintainers; [ farcaller ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ farcaller ]; }; } diff --git a/pkgs/by-name/pr/prometheus-pushgateway/package.nix b/pkgs/by-name/pr/prometheus-pushgateway/package.nix index 5d71ec9da6f50..9dae277c03fe1 100644 --- a/pkgs/by-name/pr/prometheus-pushgateway/package.nix +++ b/pkgs/by-name/pr/prometheus-pushgateway/package.nix @@ -37,11 +37,11 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Allows ephemeral and batch jobs to expose metrics to Prometheus"; mainProgram = "pushgateway"; homepage = "https://github.com/prometheus/pushgateway"; - 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 7515412585fd6..697e6af95225e 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 b92927a19f64f..ab8757df71a0f 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 b3fb0a36629dc..66a9cafdbe595 100644 --- a/pkgs/by-name/pr/proot/package.nix +++ b/pkgs/by-name/pr/proot/package.nix @@ -56,12 +56,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 887c1e2eeec90..dfbd38fa2c2ec 100644 --- a/pkgs/by-name/pr/properties-cpp/package.nix +++ b/pkgs/by-name/pr/properties-cpp/package.nix @@ -51,12 +51,12 @@ 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; - maintainers = with maintainers; [ edwtjo ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ edwtjo ]; + 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 24abc41e7ee3f..156dc0d0f86a7 100644 --- a/pkgs/by-name/pr/prosody-filer/package.nix +++ b/pkgs/by-name/pr/prosody-filer/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/ThomasLeister/prosody-filer"; - maintainers = with maintainers; [ abbradar ]; - license = licenses.mit; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; + 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 b01313b4cddc1..1b2c2fc5d7ede 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 c3d7745326067..988c99b6fe2d4 100644 --- a/pkgs/by-name/pr/proteus/package.nix +++ b/pkgs/by-name/pr/proteus/package.nix @@ -66,12 +66,12 @@ 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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ orivej ]; mainProgram = "Proteus"; }; } diff --git a/pkgs/by-name/pr/proto-contrib/package.nix b/pkgs/by-name/pr/proto-contrib/package.nix index 0581335fe17fe..bc92321bbcb34 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 e35fc7ad1aca1..321109d35e8f8 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-entgrpc/package.nix b/pkgs/by-name/pr/protoc-gen-entgrpc/package.nix index f7eed9ab1c33f..cd3fefb988617 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 0c39bb857a4f6..b7f5392b9c46f 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 e185a6b74ab4f..2df4e08ae0c32 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-prost-crate/package.nix b/pkgs/by-name/pr/protoc-gen-prost-crate/package.nix index 3679c10de1d05..9eed882d9b472 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 098bec2f78903..0cfeedca0b5b3 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 8429f8ba27c16..9de5cd10c7c58 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 53fbba4b13131..9a756790bd5a5 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-08xEPc1GaRIYLbIlSRpfBvSQcs16vduJ7v/NDg7Awfs="; - 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 d103460cee90a..7e32b81629744 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 0e3334885ef4f..56db0985fd148 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 a1072f9578006..8be7d4df1d97f 100644 --- a/pkgs/by-name/pr/protoc-gen-twirp/package.nix +++ b/pkgs/by-name/pr/protoc-gen-twirp/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "protoc-gen-twirp" ]; - meta = with lib; { + meta = { 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 7fb1401a37aa5..fdf660ede4b4f 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 b62de34b0ae40..3039d8c210ea7 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 cf4ed6f0253ed..e42cd6f5ed886 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 2fedd5b4992fc..00253868aeb1b 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 5d6d1cc8330d1..018840b343550 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 6d79950358750..5f690e4e86f46 100644 --- a/pkgs/by-name/pr/protocol/package.nix +++ b/pkgs/by-name/pr/protocol/package.nix @@ -21,11 +21,11 @@ python3.pkgs.buildPythonApplication rec { --replace "scripts=['protocol', 'constants.py', 'specs.py']" "scripts=['protocol'], py_modules=['constants', 'specs']" ''; - 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 0b9b38734c582..89622a8665ef1 100644 --- a/pkgs/by-name/pr/protolint/package.nix +++ b/pkgs/by-name/pr/protolint/package.nix @@ -35,12 +35,12 @@ 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; - maintainers = [ maintainers.zane ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.zane ]; mainProgram = "protolint"; }; } diff --git a/pkgs/by-name/pr/protolock/package.nix b/pkgs/by-name/pr/protolock/package.nix index 663219e3e7198..6abfb5e6f2bbc 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 211c86bd7c072..27aded03f7b94 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 7f6257aeb4042..9ac7a68943b32 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/prover9/package.nix b/pkgs/by-name/pr/prover9/package.nix index ddf47d74d4cae..1fb1c5fc5cd17 100644 --- a/pkgs/by-name/pr/prover9/package.nix +++ b/pkgs/by-name/pr/prover9/package.nix @@ -35,16 +35,16 @@ stdenv.mkDerivation { cp bin/* $out/bin ''; - meta = with lib; { + meta = { homepage = "https://www.cs.unm.edu/~mccune/mace4/"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; description = "Automated theorem prover for first-order and equational logic"; longDescription = '' Prover9 is a resolution/paramodulation automated theorem prover for first-order and equational logic. Prover9 is a successor of the Otter Prover. This is the LADR command-line version. ''; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pr/prox/package.nix b/pkgs/by-name/pr/prox/package.nix index adc0751adb2de..b4549c7a00fbd 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 fff76ceda5680..ce28fee606458 100644 --- a/pkgs/by-name/pr/proximity-sort/package.nix +++ b/pkgs/by-name/pr/proximity-sort/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-0hP6qa8d5CaqtBHCWBJ8UjtVJc6Z0GmL8DvdTWDMM8g="; - 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "proximity-sort"; }; } diff --git a/pkgs/by-name/pr/proxmove/package.nix b/pkgs/by-name/pr/proxmove/package.nix index 8007f2a778743..c6f36cfedf971 100644 --- a/pkgs/by-name/pr/proxmove/package.nix +++ b/pkgs/by-name/pr/proxmove/package.nix @@ -33,12 +33,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/proxychains-ng/package.nix b/pkgs/by-name/pr/proxychains-ng/package.nix index 96d5269f07f6f..992ec7adf3d0b 100644 --- a/pkgs/by-name/pr/proxychains-ng/package.nix +++ b/pkgs/by-name/pr/proxychains-ng/package.nix @@ -25,11 +25,11 @@ 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; [ zenithal ]; - platforms = platforms.linux ++ [ "aarch64-darwin" ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ zenithal ]; + platforms = lib.platforms.linux ++ [ "aarch64-darwin" ]; }; } diff --git a/pkgs/by-name/pr/proxychains/package.nix b/pkgs/by-name/pr/proxychains/package.nix index 04b472fc659b9..2d4f052b9d177 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 ca7ce16a8adce..78fdcfde65ce3 100644 --- a/pkgs/by-name/pr/proxysql/package.nix +++ b/pkgs/by-name/pr/proxysql/package.nix @@ -215,13 +215,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 ]; - maintainers = teams.helsinki-systems.members; - platforms = platforms.unix; + license = with lib.licenses; [ gpl3Only ]; + maintainers = lib.teams.helsinki-systems.members; + 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 94f66bda4ad87..26f341eb82d18 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/prr/package.nix b/pkgs/by-name/pr/prr/package.nix index dc818bfc5afcb..816347a1c0330 100644 --- a/pkgs/by-name/pr/prr/package.nix +++ b/pkgs/by-name/pr/prr/package.nix @@ -30,11 +30,11 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ pkg-config ]; - 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/ps/ps2client/package.nix b/pkgs/by-name/ps/ps2client/package.nix index e090a3d0e8380..90aba329fa6ef 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 a8d4a4a39a580..88e60d4fb24ea 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 ea54787523ad6..918897abdb730 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 dcdceee7cd93e..91aad386b0acf 100644 --- a/pkgs/by-name/ps/psc-package/package.nix +++ b/pkgs/by-name/ps/psc-package/package.nix @@ -68,10 +68,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 29e7ec26bd393..ac7320fb2cb27 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 23316365b9a9d..6158832454c00 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 75bbee8ded2a2..fb10a24d1b6f0 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 573c6e970c9fa..b2cf503423975 100644 --- a/pkgs/by-name/ps/psitop/package.nix +++ b/pkgs/by-name/ps/psitop/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Top for /proc/pressure"; homepage = "https://github.com/jamespwilliams/psitop"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "psitop"; }; } diff --git a/pkgs/by-name/ps/pslib/package.nix b/pkgs/by-name/ps/pslib/package.nix index e11d87fc2db3e..da85e65dc7de3 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 d96dfa9456b7e..18ddf37cf78a9 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/pspg/package.nix b/pkgs/by-name/ps/pspg/package.nix index 7646dac9aef57..aa505b312e3bf 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 1e010d10077ce..5fef1242c3670 100644 --- a/pkgs/by-name/ps/psql2csv/package.nix +++ b/pkgs/by-name/ps/psql2csv/package.nix @@ -40,11 +40,11 @@ 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; - maintainers = with maintainers; [ azahi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ azahi ]; inherit (postgresql.meta) platforms; mainProgram = "psql2csv"; }; diff --git a/pkgs/by-name/ps/psstop/package.nix b/pkgs/by-name/ps/psstop/package.nix index 67968128d828c..0b4d3eb36bfe4 100644 --- a/pkgs/by-name/ps/psstop/package.nix +++ b/pkgs/by-name/ps/psstop/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { buildInputs = [ glib ]; - meta = with lib; { + meta = { homepage = "https://github.com/clearlinux/psstop"; description = "Show processes' memory usage by looking into pss"; # upstream summary - license = licenses.gpl3; - maintainers = with maintainers; [ dtzWill ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ dtzWill ]; mainProgram = "psstop"; }; } diff --git a/pkgs/by-name/ps/pstoedit/package.nix b/pkgs/by-name/ps/pstoedit/package.nix index af1916667b2df..b455395abac1e 100644 --- a/pkgs/by-name/ps/pstoedit/package.nix +++ b/pkgs/by-name/ps/pstoedit/package.nix @@ -61,12 +61,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/pstree/package.nix b/pkgs/by-name/ps/pstree/package.nix index ded439f93cc10..e48e06e946433 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 4a6d36aae7ce8..f1a02567d3406 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-+0eMhOteNK3QTnG0HB3/TYDFmPTztdQ0h3RKBTN0J/o="; - 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 f549ab2e23a5b..21fb9ee12ac46 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 99042320dd607..9d2ba3aa28272 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 be54ec6bda0c3..634bda7b5ee64 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/ptask/package.nix b/pkgs/by-name/pt/ptask/package.nix index 88fff269fc71d..7e70474903c0a 100644 --- a/pkgs/by-name/pt/ptask/package.nix +++ b/pkgs/by-name/pt/ptask/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { --prefix PATH : "${taskwarrior2}/bin" ''; - meta = with lib; { + meta = { homepage = "http://wpitchoune.net/ptask/"; description = "GTK-based GUI for taskwarrior"; mainProgram = "ptask"; - license = licenses.gpl2; - maintainers = [ maintainers.spacefrogg ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.spacefrogg ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pt/pterm/package.nix b/pkgs/by-name/pt/pterm/package.nix index c6d0d35ae75f6..3ef1a4926d54e 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 4887e0ab4f67c..95f084e590675 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 2a4088e25a1c8..3e6fa5342b30d 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 rec { 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.linux; + maintainers = with lib.maintainers; [ shamilton ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pt/ptunnel/package.nix b/pkgs/by-name/pt/ptunnel/package.nix index 1a3e180b876b4..e0202288717da 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 9cd87b629e463..335c4c3b95538 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 590e622c3cc43..eca9974399ad3 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/pugixml/package.nix b/pkgs/by-name/pu/pugixml/package.nix index aa72dc996e3ee..6c10c287451ad 100644 --- a/pkgs/by-name/pu/pugixml/package.nix +++ b/pkgs/by-name/pu/pugixml/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { sed -i -e '/PUGIXML_HAS_LONG_LONG/ s/^\/\///' src/pugiconfig.hpp ''; - meta = with lib; { + meta = { description = "Light-weight, simple and fast XML parser for C++ with XPath support"; homepage = "https://pugixml.org"; - license = licenses.mit; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/pu/pulsarctl/package.nix b/pkgs/by-name/pu/pulsarctl/package.nix index 7743457a21dd9..c17d837231a38 100644 --- a/pkgs/by-name/pu/pulsarctl/package.nix +++ b/pkgs/by-name/pu/pulsarctl/package.nix @@ -66,12 +66,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = " a 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 da9c2d5757da0..be8c76c371a89 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 46a53c17e616e..5a6723f7fb46c 100644 --- a/pkgs/by-name/pu/pulseaudio-dlna/package.nix +++ b/pkgs/by-name/pu/pulseaudio-dlna/package.nix @@ -68,12 +68,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-dlna/zeroconf.nix b/pkgs/by-name/pu/pulseaudio-dlna/zeroconf.nix index 4e2c7dfeebb45..2e5a9eb175107 100644 --- a/pkgs/by-name/pu/pulseaudio-dlna/zeroconf.nix +++ b/pkgs/by-name/pu/pulseaudio-dlna/zeroconf.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { ifaddr ] ++ lib.optionals (pythonOlder "3.5") [ typing ]; - meta = with lib; { + meta = { description = "Pure python implementation of multicast DNS service discovery"; homepage = "https://github.com/jstasiak/python-zeroconf"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; maintainers = [ ]; }; } diff --git a/pkgs/by-name/pu/pulseeffects-legacy/package.nix b/pkgs/by-name/pu/pulseeffects-legacy/package.nix index ed4ea7cd6bbff..9e9c888852477 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 32beb377fc2c4..baa4564126633 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/pulumictl/package.nix b/pkgs/by-name/pu/pulumictl/package.nix index 3cee71a768d58..155696b92f28b 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/pup/package.nix b/pkgs/by-name/pu/pup/package.nix index 7ea3743527fe4..95d028d73350f 100644 --- a/pkgs/by-name/pu/pup/package.nix +++ b/pkgs/by-name/pu/pup/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { 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 10656bfdcee3f..5a3c3fe60e94c 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 = "Pupdate - A thing for updating 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 1167bb654bfde..9c107d7c10ede 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 036dd69c7fc35..bc6901d1c1546 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/pureref/package.nix b/pkgs/by-name/pu/pureref/package.nix index d9ff3269f1627..65ad4e36912e4 100644 --- a/pkgs/by-name/pu/pureref/package.nix +++ b/pkgs/by-name/pu/pureref/package.nix @@ -26,11 +26,11 @@ appimageTools.wrapType1 rec { curl -L "https://www.pureref.com/files/build.php?build=LINUX64.Appimage&version=${version}&downloadKey=$key" --output $out ''; - 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/pw/pw3270/package.nix b/pkgs/by-name/pw/pw3270/package.nix index 2c4f1a3426760..fb033d7b3016b 100644 --- a/pkgs/by-name/pw/pw3270/package.nix +++ b/pkgs/by-name/pw/pw3270/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "3270 Emulator for gtk"; homepage = "https://softwarepublico.gov.br/social/pw3270/"; - license = licenses.lgpl3Plus; - maintainers = [ maintainers.vifino ]; + license = lib.licenses.lgpl3Plus; + maintainers = [ lib.maintainers.vifino ]; mainProgram = "pw3270"; }; } diff --git a/pkgs/by-name/pw/pwgen-secure/package.nix b/pkgs/by-name/pw/pwgen-secure/package.nix index a9827117a9942..6aaf96400698a 100644 --- a/pkgs/by-name/pw/pwgen-secure/package.nix +++ b/pkgs/by-name/pw/pwgen-secure/package.nix @@ -44,11 +44,11 @@ buildPythonApplication rec { # there are no checks doCheck = false; - 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 05585886da8b1..e54cb4d32127d 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 29d1b4c6e5bdc..ac267d3fac93d 100644 --- a/pkgs/by-name/pw/pwnat/package.nix +++ b/pkgs/by-name/pw/pwnat/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { 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/pwndbg/package.nix b/pkgs/by-name/pw/pwndbg/package.nix index a87f63d004513..e91846b6fa251 100644 --- a/pkgs/by-name/pw/pwndbg/package.nix +++ b/pkgs/by-name/pw/pwndbg/package.nix @@ -60,13 +60,13 @@ stdenv.mkDerivation { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Exploit Development and Reverse Engineering with GDB Made Easy"; mainProgram = "pwndbg"; homepage = "https://github.com/pwndbg/pwndbg"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mic92 patryk4815 msanft diff --git a/pkgs/by-name/pw/pwru/package.nix b/pkgs/by-name/pw/pwru/package.nix index 42b8745f50e8f..60ec6aa6dbcdb 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/pwsafe/package.nix b/pkgs/by-name/pw/pwsafe/package.nix index 0ef4f94a3df1f..d030476b7e33d 100644 --- a/pkgs/by-name/pw/pwsafe/package.nix +++ b/pkgs/by-name/pw/pwsafe/package.nix @@ -110,7 +110,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 @@ -120,11 +120,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/pxlib/package.nix b/pkgs/by-name/px/pxlib/package.nix index b0ac6d42e7fe1..f6a162be14baf 100644 --- a/pkgs/by-name/px/pxlib/package.nix +++ b/pkgs/by-name/px/pxlib/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ intltool ]; - meta = with lib; { + meta = { description = "Library to read and write Paradox files"; homepage = "https://pxlib.sourceforge.net/"; - license = licenses.gpl2; - platforms = platforms.all; - maintainers = [ maintainers.winpat ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.winpat ]; }; } diff --git a/pkgs/by-name/px/pxview/package.nix b/pkgs/by-name/px/pxview/package.nix index ea3542adc879a..f226a5e1a4d60 100644 --- a/pkgs/by-name/px/pxview/package.nix +++ b/pkgs/by-name/px/pxview/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { LDFLAGS = "-lm"; hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "Program to convert Paradox databases"; mainProgram = "pxview"; homepage = "https://pxlib.sourceforge.net/pxview/"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = [ maintainers.winpat ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.winpat ]; }; } diff --git a/pkgs/by-name/px/pxz/package.nix b/pkgs/by-name/px/pxz/package.nix index 3e33115975cb5..3b4a9dbbf5cee 100644 --- a/pkgs/by-name/px/pxz/package.nix +++ b/pkgs/by-name/px/pxz/package.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation rec { 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 rec { 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 c8c75cff2ef7a..02b01e7ef1053 100644 --- a/pkgs/by-name/py/py3c/package.nix +++ b/pkgs/by-name/py/py3c/package.nix @@ -35,10 +35,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 3af887e0c0510..b7216131c77c1 100644 --- a/pkgs/by-name/py/pyCA/package.nix +++ b/pkgs/by-name/py/pyCA/package.nix @@ -76,12 +76,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 d1e2e5291dd66..8207934410031 100644 --- a/pkgs/by-name/py/pydf/package.nix +++ b/pkgs/by-name/py/pydf/package.nix @@ -19,11 +19,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/pylint-exit/package.nix b/pkgs/by-name/py/pylint-exit/package.nix index 9095d4456e9da..421e750251d13 100644 --- a/pkgs/by-name/py/pylint-exit/package.nix +++ b/pkgs/by-name/py/pylint-exit/package.nix @@ -32,10 +32,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 b112dce0e9033..dddee15e7b78e 100644 --- a/pkgs/by-name/py/pylode/package.nix +++ b/pkgs/by-name/py/pylode/package.nix @@ -40,12 +40,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/pympress/package.nix b/pkgs/by-name/py/pympress/package.nix index 8c8801fe8cd93..e86318e1931cc 100644 --- a/pkgs/by-name/py/pympress/package.nix +++ b/pkgs/by-name/py/pympress/package.nix @@ -56,11 +56,11 @@ python3Packages.buildPythonApplication rec { doCheck = false; # there are no tests - meta = with lib; { + meta = { description = "Simple yet powerful PDF reader designed for dual-screen presentations"; mainProgram = "pympress"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://cimbali.github.io/pympress/"; - maintainers = [ maintainers.tbenst ]; + maintainers = [ lib.maintainers.tbenst ]; }; } diff --git a/pkgs/by-name/py/pynac/package.nix b/pkgs/by-name/py/pynac/package.nix index 0b9977c559068..9bc67fabbcfe3 100644 --- a/pkgs/by-name/py/pynac/package.nix +++ b/pkgs/by-name/py/pynac/package.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation (finalAttrs: { pkg-config ]; - meta = with lib; { + meta = { description = "Python is Not a CAS -- modified version of Ginac"; longDescription = '' Pynac -- "Python is Not a CAS" is a modified version of Ginac that @@ -61,8 +61,8 @@ stdenv.mkDerivation (finalAttrs: { of the full GiNaC, and it is *only* meant to be used as a Python library. ''; homepage = "http://pynac.org"; - license = licenses.gpl2Plus; - maintainers = teams.sage.members; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.sage.members; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/py/pypi-mirror/package.nix b/pkgs/by-name/py/pypi-mirror/package.nix index d097803701ee6..76e86187588bd 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/pystring/package.nix b/pkgs/by-name/py/pystring/package.nix index 3e885d78d1c60..453ece6107332 100644 --- a/pkgs/by-name/py/pystring/package.nix +++ b/pkgs/by-name/py/pystring/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { 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 8e24c76668053..01453872df385 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 rec { 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; - maintainers = teams.cosmopolitan.members; + platforms = lib.platforms.x86_64; + badPlatforms = lib.platforms.darwin; + license = lib.licenses.isc; + maintainers = lib.teams.cosmopolitan.members; mainProgram = "python.com"; }; } diff --git a/pkgs/by-name/py/pytrainer/package.nix b/pkgs/by-name/py/pytrainer/package.nix index aa075f4f8604a..f66d69eabaed7 100644 --- a/pkgs/by-name/py/pytrainer/package.nix +++ b/pkgs/by-name/py/pytrainer/package.nix @@ -100,15 +100,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 70459afdc3e3a..489df5bd8e67f 100644 --- a/pkgs/by-name/py/pywalfox-native/package.nix +++ b/pkgs/by-name/py/pywalfox-native/package.nix @@ -16,11 +16,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 5fdcae56c47b5..a4aaa91861bd3 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 = "The 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/qa/qalculate-gtk/package.nix b/pkgs/by-name/qa/qalculate-gtk/package.nix index 5366070341857..ad032b3c91084 100644 --- a/pkgs/by-name/qa/qalculate-gtk/package.nix +++ b/pkgs/by-name/qa/qalculate-gtk/package.nix @@ -38,17 +38,17 @@ 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; [ gebner doronbehar alyaeanyx 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 8f34bd7ec63d9..fb773ae5f86eb 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 = with maintainers; [ _4825764518 ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ _4825764518 ]; + license = lib.licenses.gpl2Plus; mainProgram = "qalculate-qt"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/qb/qbe/package.nix b/pkgs/by-name/qb/qbe/package.nix index 194b374e4faf8..3f9faf258dde3 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 7989ebe551d2c..b612350739dc8 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 31121dc707bbe..59527177a0628 100644 --- a/pkgs/by-name/qc/qc/package.nix +++ b/pkgs/by-name/qc/qc/package.nix @@ -41,12 +41,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/qd/qdirstat/package.nix b/pkgs/by-name/qd/qdirstat/package.nix index 04e6ae824f227..73ffbcfdecdc2 100644 --- a/pkgs/by-name/qd/qdirstat/package.nix +++ b/pkgs/by-name/qd/qdirstat/package.nix @@ -56,12 +56,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/qd/qdl/package.nix b/pkgs/by-name/qd/qdl/package.nix index 7edc70d122c79..f36dadb570248 100644 --- a/pkgs/by-name/qd/qdl/package.nix +++ b/pkgs/by-name/qd/qdl/package.nix @@ -33,15 +33,15 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/linux-msm/qdl"; description = "Tool for flashing images to Qualcomm devices"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ muscaln anas ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "qdl"; }; diff --git a/pkgs/by-name/qe/qemacs/package.nix b/pkgs/by-name/qe/qemacs/package.nix index a745ea233978f..3371373f57cc1 100644 --- a/pkgs/by-name/qe/qemacs/package.nix +++ b/pkgs/by-name/qe/qemacs/package.nix @@ -60,10 +60,10 @@ stdenv.mkDerivation rec { 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/qg/qgrep/package.nix b/pkgs/by-name/qg/qgrep/package.nix index dbcd06c4ce670..4de27fa97812d 100644 --- a/pkgs/by-name/qg/qgrep/package.nix +++ b/pkgs/by-name/qg/qgrep/package.nix @@ -46,12 +46,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 84777ff28cdcb..3d7b19d59420a 100644 --- a/pkgs/by-name/qh/qhull/package.nix +++ b/pkgs/by-name/qh/qhull/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ] ++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames; - 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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.qhull; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/qm/qm-dsp/package.nix b/pkgs/by-name/qm/qm-dsp/package.nix index 634029eb900b9..d736f15ca04b0 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/qmk-udev-rules/package.nix b/pkgs/by-name/qm/qmk-udev-rules/package.nix index 8775e8dd37ee7..37e73489880b1 100644 --- a/pkgs/by-name/qm/qmk-udev-rules/package.nix +++ b/pkgs/by-name/qm/qmk-udev-rules/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/qmk/qmk_firmware"; description = "Official QMK udev rules list"; - platforms = platforms.linux; - license = licenses.gpl2Only; - maintainers = with maintainers; [ ekleog ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ ekleog ]; }; } diff --git a/pkgs/by-name/qm/qmk_hid/package.nix b/pkgs/by-name/qm/qmk_hid/package.nix index 2487283451537..2ef2d59db4228 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 45789db4a2bff..f9e2c138e6a59 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/qoi/package.nix b/pkgs/by-name/qo/qoi/package.nix index eeb6c32988d11..7346f0264a999 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/qp/qperf/package.nix b/pkgs/by-name/qp/qperf/package.nix index 4ec27077d5328..e4400af6bfb99 100644 --- a/pkgs/by-name/qp/qperf/package.nix +++ b/pkgs/by-name/qp/qperf/package.nix @@ -47,12 +47,12 @@ 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; - maintainers = with maintainers; [ edwtjo ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ edwtjo ]; }; } diff --git a/pkgs/by-name/qp/qpid-cpp/package.nix b/pkgs/by-name/qp/qpid-cpp/package.nix index 5d69a4c87416f..685bb4c749b5c 100644 --- a/pkgs/by-name/qp/qpid-cpp/package.nix +++ b/pkgs/by-name/qp/qpid-cpp/package.nix @@ -54,11 +54,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 42e442d4ff073..9716ce9b7f656 100644 --- a/pkgs/by-name/qp/qpoases/package.nix +++ b/pkgs/by-name/qp/qpoases/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation (finalAttrs: { "-DBUILD_SHARED_LIBS=ON" ]; - 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.rev}/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 ccb66cc4c5390..4159bd9204e42 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 4b43473a3cf2f..a0e71b961b60a 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/qrscan/package.nix b/pkgs/by-name/qr/qrscan/package.nix index 4bcb3bb0eeaa0..1630b017da3af 100644 --- a/pkgs/by-name/qr/qrscan/package.nix +++ b/pkgs/by-name/qr/qrscan/package.nix @@ -34,12 +34,12 @@ rustPlatform.buildRustPackage rec { "--skip=tests::test_scan_png_file" ]; - meta = with lib; { + meta = { description = "Scan a QR code in the terminal using the system camera or a given image"; mainProgram = "qrscan"; homepage = "https://github.com/sayanarijit/qrscan"; - license = licenses.mit; + license = lib.licenses.mit; broken = stdenv.hostPlatform.isDarwin; - maintainers = [ maintainers.sayanarijit ]; + maintainers = [ lib.maintainers.sayanarijit ]; }; } diff --git a/pkgs/by-name/qr/qrtool/package.nix b/pkgs/by-name/qr/qrtool/package.nix index e8e4374683918..672faef79cd9e 100644 --- a/pkgs/by-name/qr/qrtool/package.nix +++ b/pkgs/by-name/qr/qrtool/package.nix @@ -38,10 +38,10 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/qrtool --generate-completion zsh) ''; - meta = with lib; { - maintainers = with maintainers; [ philiptaron ]; + meta = { + maintainers = with lib.maintainers; [ philiptaron ]; description = "Utility for encoding and decoding QR code images"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://sorairolake.github.io/qrtool/book/index.html"; changelog = "https://sorairolake.github.io/qrtool/book/changelog.html"; mainProgram = "qrtool"; diff --git a/pkgs/by-name/qr/qrupdate/package.nix b/pkgs/by-name/qr/qrupdate/package.nix index d59e9ad1c0c6e..164bd26f547ae 100644 --- a/pkgs/by-name/qr/qrupdate/package.nix +++ b/pkgs/by-name/qr/qrupdate/package.nix @@ -59,11 +59,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/qu/QuadProgpp/package.nix b/pkgs/by-name/qu/QuadProgpp/package.nix index d7306f01ba983..deac0fe4dadc0 100644 --- a/pkgs/by-name/qu/QuadProgpp/package.nix +++ b/pkgs/by-name/qu/QuadProgpp/package.nix @@ -20,15 +20,15 @@ stdenv.mkDerivation { cmake ]; - 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 6b20364913a6e..7969a9cec59ea 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 d4d18a33b833e..614cc056401a4 100644 --- a/pkgs/by-name/qu/quake3e/package.nix +++ b/pkgs/by-name/qu/quake3e/package.nix @@ -83,12 +83,12 @@ stdenv.mkDerivation rec { }) ]; - 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/quantumminigolf/package.nix b/pkgs/by-name/qu/quantumminigolf/package.nix index 1a1674d462069..9f067e5007565 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/package.nix b/pkgs/by-name/qu/quark/package.nix index 0bed342181817..3518ff551b478 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/quattrocento-sans/package.nix b/pkgs/by-name/qu/quattrocento-sans/package.nix index 6493e7511ba87..41fe9a6964c9a 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 7404d720736d1..6963945f65eb6 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/qubes-core-vchan-xen/package.nix b/pkgs/by-name/qu/qubes-core-vchan-xen/package.nix index 6693bd9762b29..af48a540841a8 100644 --- a/pkgs/by-name/qu/qubes-core-vchan-xen/package.nix +++ b/pkgs/by-name/qu/qubes-core-vchan-xen/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { make install DESTDIR=$out PREFIX=/ ''; - meta = with lib; { + meta = { description = "Libraries required for the higher-level Qubes daemons and tools"; homepage = "https://qubes-os.org"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; broken = true; }; diff --git a/pkgs/by-name/qu/quesoglc/package.nix b/pkgs/by-name/qu/quesoglc/package.nix index ff38dc30757a0..cefb8143b82fa 100644 --- a/pkgs/by-name/qu/quesoglc/package.nix +++ b/pkgs/by-name/qu/quesoglc/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { libX11 ]; # FIXME: Configure fails to use system glew. - meta = with lib; { + meta = { description = "Free implementation of the OpenGL Character Renderer"; longDescription = '' QuesoGLC is a free (as in free speech) implementation of the OpenGL @@ -36,8 +36,8 @@ stdenv.mkDerivation rec { platform that supports both FreeType and the OpenGL API. ''; homepage = "https://quesoglc.sourceforge.net/"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ astsmtl ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ astsmtl ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/qu/quich/package.nix b/pkgs/by-name/qu/quich/package.nix index 1af37a17715cd..da25a141fd151 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/quick-lint-js/package.nix b/pkgs/by-name/qu/quick-lint-js/package.nix index 028a40cc96a83..4a2562435cea6 100644 --- a/pkgs/by-name/qu/quick-lint-js/package.nix +++ b/pkgs/by-name/qu/quick-lint-js/package.nix @@ -63,13 +63,13 @@ stdenv.mkDerivation rec { version = testers.testVersion { package = quick-lint-js; }; }; - meta = with lib; { + meta = { description = "Find bugs in Javascript programs"; mainProgram = "quick-lint-js"; homepage = "https://quick-lint-js.com"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ratsclub ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ratsclub ]; + platforms = lib.platforms.all; }; # Expose quick-lint-js-build-tools to nix repl as quick-lint-js.build-tools. diff --git a/pkgs/by-name/qu/quickder/package.nix b/pkgs/by-name/qu/quickder/package.nix index 981fa635a30be..ad9f3e778f559 100644 --- a/pkgs/by-name/qu/quickder/package.nix +++ b/pkgs/by-name/qu/quickder/package.nix @@ -72,11 +72,11 @@ 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; - maintainers = with maintainers; [ leenaars ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ leenaars ]; }; } diff --git a/pkgs/by-name/qu/quickfix/package.nix b/pkgs/by-name/qu/quickfix/package.nix index bd4612c8eec16..873631a4b9b28 100644 --- a/pkgs/by-name/qu/quickfix/package.nix +++ b/pkgs/by-name/qu/quickfix/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { substituteInPlace Makefile --replace 'UnitTest++' ' ' ''; - meta = with lib; { + meta = { description = "QuickFIX C++ Fix Engine Library"; homepage = "http://www.quickfixengine.org"; - license = licenses.free; # similar to BSD 4-clause - maintainers = with maintainers; [ bhipple ]; + license = lib.licenses.free; # similar to BSD 4-clause + maintainers = with lib.maintainers; [ bhipple ]; broken = stdenv.hostPlatform.isAarch64; }; } diff --git a/pkgs/by-name/qu/quickgui/package.nix b/pkgs/by-name/qu/quickgui/package.nix index 2080dc8be4e58..f51b4edc5ab5f 100644 --- a/pkgs/by-name/qu/quickgui/package.nix +++ b/pkgs/by-name/qu/quickgui/package.nix @@ -52,12 +52,12 @@ flutter.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 54ada1f9aff3b..26060b60a041e 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/quickserve/package.nix b/pkgs/by-name/qu/quickserve/package.nix index 8c4535b16c84d..c15d5c02ef33a 100644 --- a/pkgs/by-name/qu/quickserve/package.nix +++ b/pkgs/by-name/qu/quickserve/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Simple HTTP server for quickly sharing files"; homepage = "https://xyne.archlinux.ca/projects/quickserve/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ lassulus ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ lassulus ]; mainProgram = "quickserve"; }; } diff --git a/pkgs/by-name/qu/quicktemplate/package.nix b/pkgs/by-name/qu/quicktemplate/package.nix index 37e6b1e92ecf0..c4bd1beb54cfb 100644 --- a/pkgs/by-name/qu/quicktemplate/package.nix +++ b/pkgs/by-name/qu/quicktemplate/package.nix @@ -17,11 +17,11 @@ 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; - maintainers = with maintainers; [ Madouura ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Madouura ]; mainProgram = "qtc"; }; } diff --git a/pkgs/by-name/qu/quicktun/package.nix b/pkgs/by-name/qu/quicktun/package.nix index ca215dfff275f..996c5c28653e8 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 1bbf69aa63b6c..8748012ccd029 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/quill-log/package.nix b/pkgs/by-name/qu/quill-log/package.nix index ccfa63429aa1f..25c680c3a3d2f 100644 --- a/pkgs/by-name/qu/quill-log/package.nix +++ b/pkgs/by-name/qu/quill-log/package.nix @@ -18,13 +18,13 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://github.com/odygrd/quill"; changelog = "https://github.com/odygrd/quill/blob/master/CHANGELOG.md"; downloadPage = "https://github.com/odygrd/quill"; description = "Asynchronous Low Latency C++17 Logging Library"; - platforms = platforms.all; - license = licenses.mit; - maintainers = [ maintainers.odygrd ]; + platforms = lib.platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.odygrd ]; }; } diff --git a/pkgs/by-name/qu/quill-qr/package.nix b/pkgs/by-name/qu/quill-qr/package.nix index ec31feb4b0133..d9e91cfcac585 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/quintom-cursor-theme/package.nix b/pkgs/by-name/qu/quintom-cursor-theme/package.nix index 037cbc7498885..9ba6e8588fdcb 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 1f6edf2404a72..05a0bb8988138 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/r1/r128gain/package.nix b/pkgs/by-name/r1/r128gain/package.nix index 63b7d312d5bd8..b359d934b40f5 100644 --- a/pkgs/by-name/r1/r128gain/package.nix +++ b/pkgs/by-name/r1/r128gain/package.nix @@ -42,12 +42,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/r5/r53-ddns/package.nix b/pkgs/by-name/r5/r53-ddns/package.nix index 548f5c062886a..45d0ccab3a44d 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-KkyMd94cejWkgg/RJudy1lm/M3lsEJXFGqVTzGIX3qM="; - 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/ra-multiplex/package.nix b/pkgs/by-name/ra/ra-multiplex/package.nix index 0281268ad64a6..6ba98f3532309 100644 --- a/pkgs/by-name/ra/ra-multiplex/package.nix +++ b/pkgs/by-name/ra/ra-multiplex/package.nix @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage rec { --suffix PATH : ${lib.makeBinPath [ rust-analyzer ]} ''; - meta = with lib; { + meta = { description = "Multiplexer for rust-analyzer"; mainProgram = "ra-multiplex"; homepage = "https://github.com/pr2502/ra-multiplex"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ norfair ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ norfair ]; }; } diff --git a/pkgs/by-name/ra/rabbitmq-c/package.nix b/pkgs/by-name/ra/rabbitmq-c/package.nix index 925653d66f823..3d82563c6ae25 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 91b312e2bedc2..e9443d2df6d08 100644 --- a/pkgs/by-name/ra/rabtap/package.nix +++ b/pkgs/by-name/ra/rabtap/package.nix @@ -17,10 +17,10 @@ buildGoModule rec { vendorHash = "sha256-V7AkqmEbwuW2Ni9b00Zd22ugk9ScGWf5wauHcQwG7b0="; - 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 5dce7e17cfc59..4fa12b3ceb61c 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 2f766860a5203..9e1cc20d0f3d4 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 f874642fe91fc..a637708cf1e54 100644 --- a/pkgs/by-name/ra/radioboat/package.nix +++ b/pkgs/by-name/ra/radioboat/package.nix @@ -53,12 +53,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/radsecproxy/package.nix b/pkgs/by-name/ra/radsecproxy/package.nix index a6b0b40cc141b..e81bf4ffb419a 100644 --- a/pkgs/by-name/ra/radsecproxy/package.nix +++ b/pkgs/by-name/ra/radsecproxy/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { "--localstatedir=/var" ]; - meta = with lib; { + meta = { homepage = "https://radsecproxy.github.io/"; description = "Generic RADIUS proxy that supports both UDP and TLS (RadSec) RADIUS transports"; - license = licenses.bsd3; - maintainers = with maintainers; [ sargon ]; - platforms = with platforms; linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sargon ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/ra/radvd/package.nix b/pkgs/by-name/ra/radvd/package.nix index c65f95b634a24..68acad3af7f58 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-canonical/package.nix b/pkgs/by-name/ra/raft-canonical/package.nix index 86c4156fafd5f..fd832616cfa17 100644 --- a/pkgs/by-name/ra/raft-canonical/package.nix +++ b/pkgs/by-name/ra/raft-canonical/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { inherit lxd-lts; }; - meta = with lib; { + meta = { description = '' Fully asynchronous C implementation of the Raft consensus protocol ''; @@ -68,8 +68,8 @@ stdenv.mkDerivation rec { snapshots). ''; homepage = "https://github.com/canonical/raft"; - license = licenses.asl20; - platforms = platforms.linux; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ra/raft-cowsql/package.nix b/pkgs/by-name/ra/raft-cowsql/package.nix index 2ac47e242caf3..895ac86445c49 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; - maintainers = teams.lxc.members; + license = lib.licenses.lgpl3Only; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxc.members; }; } diff --git a/pkgs/by-name/ra/raider/package.nix b/pkgs/by-name/ra/raider/package.nix index 9283c6b443ae8..34063b2fbbe17 100644 --- a/pkgs/by-name/ra/raider/package.nix +++ b/pkgs/by-name/ra/raider/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Permanently delete your files (also named File Shredder)"; longDescription = '' Raider is a shredding program built for the GNOME @@ -63,14 +63,14 @@ stdenv.mkDerivation rec { money and patience required to extract it effectively. ''; homepage = "https://apps.gnome.org/Raider"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "raider"; maintainers = - with maintainers; + with lib.maintainers; [ benediktbroich ] ++ lib.teams.gnome-circle.members; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ra/rain/package.nix b/pkgs/by-name/ra/rain/package.nix index 05b2b0189e8b0..a46bb82207251 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 8f2d92f80ebac..fabbd1fa129f7 100644 --- a/pkgs/by-name/ra/raiseorlaunch/package.nix +++ b/pkgs/by-name/ra/raiseorlaunch/package.nix @@ -20,12 +20,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/rancher/package.nix b/pkgs/by-name/ra/rancher/package.nix index 0f95095f780fb..5ce50c0452340 100644 --- a/pkgs/by-name/ra/rancher/package.nix +++ b/pkgs/by-name/ra/rancher/package.nix @@ -34,11 +34,11 @@ buildGoModule rec { $out/bin/rancher | grep ${version} > /dev/null ''; - meta = with lib; { + meta = { description = "Rancher Command Line Interface (CLI) is a unified tool for interacting with your Rancher Server"; mainProgram = "rancher"; homepage = "https://github.com/rancher/cli"; - license = licenses.asl20; - maintainers = with maintainers; [ bryanasdev000 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bryanasdev000 ]; }; } diff --git a/pkgs/by-name/ra/rancid/package.nix b/pkgs/by-name/ra/rancid/package.nix index a6ed377ebc295..1eea19d67fcb3 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/randtype/package.nix b/pkgs/by-name/ra/randtype/package.nix index af2b91eb6b1ce..2468636bfc018 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/rang/package.nix b/pkgs/by-name/ra/rang/package.nix index 61b6fa19afe07..0e037f2e5a37b 100644 --- a/pkgs/by-name/ra/rang/package.nix +++ b/pkgs/by-name/ra/rang/package.nix @@ -14,10 +14,10 @@ stdenv.mkDerivation rec { sha256 = "0v2pz0l2smagr3j4abjccshg4agaccfz79m5ayvrvqq5d4rlds0s"; }; nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "A Minimal, Header only Modern c++ library for terminal goodies"; homepage = "https://agauniyal.github.io/rang/"; - license = licenses.unlicense; - maintainers = [ maintainers.HaoZeke ]; + license = lib.licenses.unlicense; + maintainers = [ lib.maintainers.HaoZeke ]; }; } diff --git a/pkgs/by-name/ra/rankwidth/package.nix b/pkgs/by-name/ra/rankwidth/package.nix index 4b3a8c3d21e75..3cb49f124a7bb 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 ]; - maintainers = teams.sage.members; - platforms = platforms.unix; + license = with lib.licenses; [ gpl2Plus ]; + maintainers = lib.teams.sage.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ra/rapidxml/package.nix b/pkgs/by-name/ra/rapidxml/package.nix index 7d695b8b60c96..03b0f267261e5 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 2e57198c43d21..8617daf1c7f45 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/rappel/package.nix b/pkgs/by-name/ra/rappel/package.nix index e8f00c133b439..ec3f3aa4b3ded 100644 --- a/pkgs/by-name/ra/rappel/package.nix +++ b/pkgs/by-name/ra/rappel/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/yrp604/rappel"; description = "Pretty janky assembly REPL"; mainProgram = "rappel"; - license = licenses.bsdOriginal; - maintainers = [ maintainers.pamplemousse ]; - platforms = platforms.linux; + license = lib.licenses.bsdOriginal; + maintainers = [ lib.maintainers.pamplemousse ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ra/rar2fs/package.nix b/pkgs/by-name/ra/rar2fs/package.nix index 0671159ab88ef..f46400be16d41 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 31a10c9531c48..655abf31b7eae 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/rargs/package.nix b/pkgs/by-name/ra/rargs/package.nix index 1b465e5071b51..d93a3298c8bfe 100644 --- a/pkgs/by-name/ra/rargs/package.nix +++ b/pkgs/by-name/ra/rargs/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { doCheck = false; # `rargs`'s test depends on the deprecated `assert_cli` crate, which in turn is not in Nixpkgs - meta = with lib; { + meta = { description = "xargs + awk with pattern matching support"; homepage = "https://github.com/lolabout/rargs"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ pblkt ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ pblkt ]; mainProgram = "rargs"; }; } diff --git a/pkgs/by-name/ra/raspberrypi-eeprom/package.nix b/pkgs/by-name/ra/raspberrypi-eeprom/package.nix index da57e13f89bbc..8b517a351ee74 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/raspberrypiWirelessFirmware/package.nix b/pkgs/by-name/ra/raspberrypiWirelessFirmware/package.nix index a8d4dc74c6013..6cadaa7b471d4 100644 --- a/pkgs/by-name/ra/raspberrypiWirelessFirmware/package.nix +++ b/pkgs/by-name/ra/raspberrypiWirelessFirmware/package.nix @@ -53,11 +53,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Firmware for builtin Wifi/Bluetooth devices in the Raspberry Pi 3+ and Zero W"; homepage = "https://github.com/RPi-Distro/firmware-nonfree"; - license = licenses.unfreeRedistributableFirmware; - platforms = platforms.linux; - maintainers = with maintainers; [ lopsided98 ]; + license = lib.licenses.unfreeRedistributableFirmware; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ lopsided98 ]; }; } diff --git a/pkgs/by-name/ra/ratchet/package.nix b/pkgs/by-name/ra/ratchet/package.nix index 6f94432e5b078..830f341c279e4 100644 --- a/pkgs/by-name/ra/ratchet/package.nix +++ b/pkgs/by-name/ra/ratchet/package.nix @@ -56,13 +56,13 @@ buildGoModule rec { execution = callPackage ./tests.nix { }; }; - meta = with lib; { + meta = { description = "Tool for securing CI/CD workflows with version pinning"; mainProgram = "ratchet"; downloadPage = "https://github.com/sethvargo/ratchet"; homepage = "https://github.com/sethvargo/ratchet"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cameronraysmith ryanccn ]; diff --git a/pkgs/by-name/ra/ratman/package.nix b/pkgs/by-name/ra/ratman/package.nix index 9541f42714fd2..36d4c668d0625 100644 --- a/pkgs/by-name/ra/ratman/package.nix +++ b/pkgs/by-name/ra/ratman/package.nix @@ -99,11 +99,11 @@ rustPlatform.buildRustPackage rec { cp -r ${dashboard.dist} 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 736b0971e4edd..f4c1ac637b518 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 9bfb9b38bba6a..2a823ea75d8f8 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 77e6b356a339f..cfdc883e019ed 100644 --- a/pkgs/by-name/ra/ratox/package.nix +++ b/pkgs/by-name/ra/ratox/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "FIFO based tox client"; mainProgram = "ratox"; homepage = "http://ratox.2f30.org/"; - license = licenses.isc; - maintainers = with maintainers; [ ehmry ]; - platforms = platforms.linux; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ ehmry ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ra/ratt/package.nix b/pkgs/by-name/ra/ratt/package.nix index 525f1b7f95d98..474133931d634 100644 --- a/pkgs/by-name/ra/ratt/package.nix +++ b/pkgs/by-name/ra/ratt/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # tests try to access the internet to scrape websites doCheck = false; - 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/rauc/package.nix b/pkgs/by-name/ra/rauc/package.nix index 369b0683b8be1..4cc23099f5531 100644 --- a/pkgs/by-name/ra/rauc/package.nix +++ b/pkgs/by-name/ra/rauc/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { (lib.mesonOption "dbussystemservicedir" "${placeholder "out"}/share/dbus-1/system-services") ]; - meta = with lib; { + meta = { description = "Safe and secure software updates for embedded Linux"; homepage = "https://rauc.io"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ emantor ]; - platforms = with platforms; linux; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ emantor ]; + platforms = with lib.platforms; linux; mainProgram = "rauc"; }; } diff --git a/pkgs/by-name/ra/ravedude/package.nix b/pkgs/by-name/ra/ravedude/package.nix index 2ee907a4a4fbd..c7485e32fc03a 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 c011ddb809994..f8eea38f80f44 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 74090f0d1fad0..f07f9836e0d17 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/rb/rbdoom-3-bfg/package.nix b/pkgs/by-name/rb/rbdoom-3-bfg/package.nix index 137be74c7a0d9..520ed1fe33d30 100644 --- a/pkgs/by-name/rb/rbdoom-3-bfg/package.nix +++ b/pkgs/by-name/rb/rbdoom-3-bfg/package.nix @@ -79,12 +79,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/rc/rcm/package.nix b/pkgs/by-name/rc/rcm/package.nix index d8c923fbfcfda..ec1d8cff7b151 100644 --- a/pkgs/by-name/rc/rcm/package.nix +++ b/pkgs/by-name/rc/rcm/package.nix @@ -21,14 +21,14 @@ 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 AndersonTorres ]; - 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 48fd4373a3f83..2e58b7cb2d5ef 100644 --- a/pkgs/by-name/rc/rcon/package.nix +++ b/pkgs/by-name/rc/rcon/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { pcre ]; - 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 59dfbd99fbc7c..18fce68c440e1 100644 --- a/pkgs/by-name/rc/rconc/package.nix +++ b/pkgs/by-name/rc/rconc/package.nix @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-rSN/wm52ZhJ8JUEUC51Xv5eIpwvOR3LvTdFjGl64VVk="; - 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/rc/rcu/package.nix b/pkgs/by-name/rc/rcu/package.nix index 5fb9220ede666..e688244da2955 100644 --- a/pkgs/by-name/rc/rcu/package.nix +++ b/pkgs/by-name/rc/rcu/package.nix @@ -164,12 +164,12 @@ python3Packages.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { mainProgram = "rcu"; description = "All-in-one offline/local management software for reMarkable e-paper tablets"; homepage = "http://www.davisr.me/projects/rcu/"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ OPNA2608 ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ OPNA2608 ]; hydraPlatforms = [ ]; # requireFile used as src }; } diff --git a/pkgs/by-name/rd/rdap/package.nix b/pkgs/by-name/rd/rdap/package.nix index a5fefe708662a..88c7b05b581fe 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/rdfind/package.nix b/pkgs/by-name/rd/rdfind/package.nix index 579dee9a3bd43..4a3722ab6d3cb 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 a28a8f27ad3bc..2dd8661829fd3 100644 --- a/pkgs/by-name/rd/rdiff-backup/package.nix +++ b/pkgs/by-name/rd/rdiff-backup/package.nix @@ -27,12 +27,12 @@ pypkgs.buildPythonApplication rec { # no tests from pypi doCheck = false; - 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/rdocker/package.nix b/pkgs/by-name/rd/rdocker/package.nix index 9e5f04133e808..a4c1751dec293 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 c9327a4944301..ca257089bc8c5 100644 --- a/pkgs/by-name/rd/rdrview/package.nix +++ b/pkgs/by-name/rd/rdrview/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation { 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 5e783454a87f6..34cf6370b0c60 100644 --- a/pkgs/by-name/rd/rdwatool/package.nix +++ b/pkgs/by-name/rd/rdwatool/package.nix @@ -39,11 +39,11 @@ python3.pkgs.buildPythonApplication rec { "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-isearch/package.nix b/pkgs/by-name/re/re-isearch/package.nix index 0789820c33e65..56516ef4bb403 100644 --- a/pkgs/by-name/re/re-isearch/package.nix +++ b/pkgs/by-name/re/re-isearch/package.nix @@ -51,10 +51,10 @@ stdenv.mkDerivation rec { cp ../lib/*.so $out/lib/ ''; - meta = with lib; { + meta = { description = "Novel multimodal search and retrieval engine"; homepage = "https://github.com/re-Isearch/"; - license = licenses.asl20; - maintainers = [ maintainers.astro ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.astro ]; }; } diff --git a/pkgs/by-name/re/re2/package.nix b/pkgs/by-name/re/re2/package.nix index 278d63702ed2f..67466a857792d 100644 --- a/pkgs/by-name/re/re2/package.nix +++ b/pkgs/by-name/re/re2/package.nix @@ -58,19 +58,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 02859a9bc8139..c2a8b792540db 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/reactphysics3d/package.nix b/pkgs/by-name/re/reactphysics3d/package.nix index b91c49b1f5eec..553d2bb46a361 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 09224699b0b87..652bfc03027cb 100644 --- a/pkgs/by-name/re/read-edid/package.nix +++ b/pkgs/by-name/re/read-edid/package.nix @@ -26,11 +26,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-cli/package.nix b/pkgs/by-name/re/readability-cli/package.nix index 8dd2190a180ad..26e2adacecb5d 100644 --- a/pkgs/by-name/re/readability-cli/package.nix +++ b/pkgs/by-name/re/readability-cli/package.nix @@ -35,10 +35,10 @@ buildNpmPackage rec { --zsh <(SHELL=zsh $out/bin/readable --completion) ''; - meta = with lib; { + meta = { description = "Firefox Reader Mode in your terminal - get useful text from a web page using Mozilla's Readability library"; homepage = "https://gitlab.com/gardenappl/readability-cli"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; mainProgram = "readable"; }; diff --git a/pkgs/by-name/re/readability-extractor/package.nix b/pkgs/by-name/re/readability-extractor/package.nix index f884c24913888..94152e28e0a8b 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/readosm/package.nix b/pkgs/by-name/re/readosm/package.nix index a97e21d8f4efb..300e0af2e3142 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 250880231b79a..b7dab7c9a0ee3 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 rec { --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 34a5583cfa5d2..33fdd691dfbc0 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 6e0cd13ee84e9..d9d23897090ca 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/reap/package.nix b/pkgs/by-name/re/reap/package.nix index 4dfe7e175ea15..c345f82f84415 100644 --- a/pkgs/by-name/re/reap/package.nix +++ b/pkgs/by-name/re/reap/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { 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/reaverwps-t6x/package.nix b/pkgs/by-name/re/reaverwps-t6x/package.nix index 880d33b773d41..2102c06847035 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 ee4e491d72198..3e8913810bdcf 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 0852d24fba54c..e0026932750e6 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/recastnavigation/package.nix b/pkgs/by-name/re/recastnavigation/package.nix index ef5f55978adf9..f9060fa377522 100644 --- a/pkgs/by-name/re/recastnavigation/package.nix +++ b/pkgs/by-name/re/recastnavigation/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { libGLU ]; - meta = with lib; { + meta = { homepage = "https://github.com/recastnavigation/recastnavigation"; description = "Navigation-mesh Toolset for Games"; mainProgram = "RecastDemo"; - license = licenses.zlib; - maintainers = with maintainers; [ marius851000 ]; - platforms = platforms.all; + license = lib.licenses.zlib; + maintainers = with lib.maintainers; [ marius851000 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/re/recoverdm/package.nix b/pkgs/by-name/re/recoverdm/package.nix index 9a244bd15ac12..483b9d26273d0 100644 --- a/pkgs/by-name/re/recoverdm/package.nix +++ b/pkgs/by-name/re/recoverdm/package.nix @@ -46,13 +46,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 a4b28e3bc834e..c9a005f52c651 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 4327759425c86..bf96afe9d4ed3 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 47760d4020257..4f2f7e51e128b 100644 --- a/pkgs/by-name/re/recutils/package.nix +++ b/pkgs/by-name/re/recutils/package.nix @@ -73,7 +73,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 = '' @@ -81,8 +81,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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/re/red/package.nix b/pkgs/by-name/re/red/package.nix index 38b84f4f16995..43b7340b0ce87 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/redfang/package.nix b/pkgs/by-name/re/redfang/package.nix index a55d954d84448..b2fed2a6c3071 100644 --- a/pkgs/by-name/re/redfang/package.nix +++ b/pkgs/by-name/re/redfang/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { buildInputs = [ bluez ]; - meta = with lib; { + meta = { description = "Small proof-of-concept application to find non discoverable bluetooth devices"; homepage = "https://gitlab.com/kalilinux/packages/redfang"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ moni ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ moni ]; mainProgram = "fang"; }; } diff --git a/pkgs/by-name/re/redhat-official-fonts/package.nix b/pkgs/by-name/re/redhat-official-fonts/package.nix index 5460860d712c8..b545a6b3e0144 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-plus-plus/package.nix b/pkgs/by-name/re/redis-plus-plus/package.nix index 656dd94c9249b..a64ba84f923e8 100644 --- a/pkgs/by-name/re/redis-plus-plus/package.nix +++ b/pkgs/by-name/re/redis-plus-plus/package.nix @@ -40,11 +40,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/redli/package.nix b/pkgs/by-name/re/redli/package.nix index 6a915ea5e73cc..bc0f3d329b758 100644 --- a/pkgs/by-name/re/redli/package.nix +++ b/pkgs/by-name/re/redli/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-6zCkor/fQXKw2JxOKyVjsdsSI6BT7beAs4P0AlSXupE="; - meta = with lib; { + meta = { description = "Humane alternative to the Redis-cli and TLS"; homepage = "https://github.com/IBM-Cloud/redli"; - license = licenses.asl20; - maintainers = with maintainers; [ tchekda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tchekda ]; mainProgram = "redli"; }; } diff --git a/pkgs/by-name/re/redo-apenwarr/package.nix b/pkgs/by-name/re/redo-apenwarr/package.nix index 30a6feafbf131..f022bf3cfb6a5 100644 --- a/pkgs/by-name/re/redo-apenwarr/package.nix +++ b/pkgs/by-name/re/redo-apenwarr/package.nix @@ -77,14 +77,14 @@ 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; [ andrewchambers 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 f7588b18515f0..5a6715e61a01a 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/redo-sh/package.nix b/pkgs/by-name/re/redo-sh/package.nix index 9222bd0e6c722..08ee5eed20b44 100644 --- a/pkgs/by-name/re/redo-sh/package.nix +++ b/pkgs/by-name/re/redo-sh/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Redo implementation in Bourne Shell"; homepage = "http://news.dieweltistgarnichtso.net/bin/redo-sh.html"; - license = licenses.agpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.agpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/by-name/re/redoflacs/package.nix b/pkgs/by-name/re/redoflacs/package.nix index 3c9dd24957aa7..ac6eabf75b92e 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 42e796dc95b43..f31d38bc97aa9 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 fbe1b8051078e..e7323cc390537 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 98a73424f9ca1..d42c5a9140891 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/refind/package.nix b/pkgs/by-name/re/refind/package.nix index c9d351eaaae65..3767834f891e8 100644 --- a/pkgs/by-name/re/refind/package.nix +++ b/pkgs/by-name/re/refind/package.nix @@ -155,7 +155,7 @@ stdenv.mkDerivation rec { uefiCdrom = nixosTests.boot.uefiCdrom; }; - meta = with lib; { + meta = { description = "Graphical {,U}EFI boot manager"; longDescription = '' rEFInd is a graphical boot manager for EFI- and UEFI-based @@ -173,13 +173,13 @@ stdenv.mkDerivation rec { Linux kernels that provide EFI stub support. ''; homepage = "http://refind.sourceforge.net/"; - maintainers = with maintainers; [ chewblacka ]; + maintainers = with lib.maintainers; [ chewblacka ]; platforms = [ "i686-linux" "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 36c9487c65161..79980f7d0871d 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 74ae4397f4f55..d5a4ed5217427 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 bb41cfea37a7a..f34b0dfb356d6 100644 --- a/pkgs/by-name/re/reftools/package.nix +++ b/pkgs/by-name/re/reftools/package.nix @@ -21,10 +21,10 @@ buildGoModule rec { 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 a551cd8897b86..ff0cd7ff015c8 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 9669e621aab08..d52d4663b0d3c 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/regclient/package.nix b/pkgs/by-name/re/regclient/package.nix index a3efc83b06cef..e6f2572688b68 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 4279b9cb58856..d78648215454a 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 f9b15784b2091..e2664002b18f5 100644 --- a/pkgs/by-name/re/regex-cli/package.nix +++ b/pkgs/by-name/re/regex-cli/package.nix @@ -15,14 +15,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-5uxy2iAIUh60QjEPtkOP7A86ha4CY5+1QgzdIsEKPIs="; - 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/re/regexploit/package.nix b/pkgs/by-name/re/regexploit/package.nix index 0ed524edd4fa7..e3e89132e4692 100644 --- a/pkgs/by-name/re/regexploit/package.nix +++ b/pkgs/by-name/re/regexploit/package.nix @@ -27,10 +27,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 8ca42ead79a66..7a037994ac5f4 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 09254c6734a9a..cd7d0fd77bd6d 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/regpg/package.nix b/pkgs/by-name/re/regpg/package.nix index 690ae917b2f22..76fa7ed313c7a 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 82f615ea1dd64..f91bc019ea702 100644 --- a/pkgs/by-name/re/regripper/package.nix +++ b/pkgs/by-name/re/regripper/package.nix @@ -45,12 +45,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 b115c57a6a756..4697204e691e4 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 = "Reindeer is a tool which takes Rust Cargo dependencies and generates Buck build rules"; 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/remctl/package.nix b/pkgs/by-name/re/remctl/package.nix index b354440de81af..ac2f43afe5fe0 100644 --- a/pkgs/by-name/re/remctl/package.nix +++ b/pkgs/by-name/re/remctl/package.nix @@ -52,11 +52,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; - maintainers = teams.deshaw.members; + license = lib.licenses.mit; + maintainers = lib.teams.deshaw.members; }; }) diff --git a/pkgs/by-name/re/remind/package.nix b/pkgs/by-name/re/remind/package.nix index 1682646ca5e1f..5603fcd4cb884 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 a89fa590c20de..1942569fb810a 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-JUyIbg1SxQ7pdqypGv7Kz2MM0ZwL3M9YJekO9oSftLM="; - 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/remnote/package.nix b/pkgs/by-name/re/remnote/package.nix index 761efd08df0a4..91d69428dc113 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 d04d0e23ec11a..42102376e8746 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 8f7db02232068..af1ebefddd89b 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-bt5KUgNDgWX7CVHvX5c0uYqoxGRDbGbae52+mpnBEZU="; - 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/remotebox/package.nix b/pkgs/by-name/re/remotebox/package.nix index 8919dd4624630..a167a9afdc275 100644 --- a/pkgs/by-name/re/remotebox/package.nix +++ b/pkgs/by-name/re/remotebox/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation rec { cp -pv packagers-readme/*.desktop $out/share/applications ''; - meta = with lib; { + meta = { description = "VirtualBox client with remote management"; homepage = "http://remotebox.knobgoblin.org.uk/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; longDescription = '' VirtualBox is traditionally considered to be a virtualization solution aimed at the desktop. While it is certainly possible to install @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { RemoteBox aims to fill this gap by providing a graphical VirtualBox client which is able to manage a VirtualBox server installation. ''; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "remotebox"; }; } diff --git a/pkgs/by-name/re/ren-find/package.nix b/pkgs/by-name/re/ren-find/package.nix index 7f1fef94380b3..9f070b4077a6a 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 rec { cargoHash = "sha256-pUy8850v4m9P5OuL15qxmDDQYYyae9HFXRbg3b4f3Lw="; - 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 a14365c764e75..da4884ab4c0c8 100644 --- a/pkgs/by-name/re/rename/package.nix +++ b/pkgs/by-name/re/rename/package.nix @@ -14,14 +14,14 @@ perlPackages.buildPerlPackage rec { rev = "v${version}"; sha256 = "SK6wS3IxjCftuDiiZU27TFnn9GVd137zmzvGH88cNLI="; }; - 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 ]; - 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 1b3f49fa5d685..ae7e0b565016d 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 3caff4d410178..47a121b3a5483 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 332a3ec505289..f91b1c683356b 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 rec { cargoHash = "sha256-ch+RMLc+xogL0gkrnw+n+bmUVIcixdPTaNPHPuJ0/EI="; - 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 3a8782691f0c9..abfda8cae88eb 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/repocheck/package.nix b/pkgs/by-name/re/repocheck/package.nix index da0bd687ef750..9ec1a6ce69ac4 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 e3f94b5374eea..bf6ad8bdcb82f 100644 --- a/pkgs/by-name/re/repro-get/package.nix +++ b/pkgs/by-name/re/repro-get/package.nix @@ -67,11 +67,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 d00a691ff6366..bc5b2437c4496 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/reredirect/package.nix b/pkgs/by-name/re/reredirect/package.nix index afe82bddc0a2f..b0fe3430743e6 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/resgate/package.nix b/pkgs/by-name/re/resgate/package.nix index 160c7b42d8c62..80ffa9e738765 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/resolv_wrapper/package.nix b/pkgs/by-name/re/resolv_wrapper/package.nix index 197978a47b7c8..e75d947627305 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 71a3580064ad3..d0e6e2dc55473 100644 --- a/pkgs/by-name/re/resolve-march-native/package.nix +++ b/pkgs/by-name/re/resolve-march-native/package.nix @@ -21,12 +21,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 4e642c2d736c1..92804709e2753 100644 --- a/pkgs/by-name/re/resonance/package.nix +++ b/pkgs/by-name/re/resonance/package.nix @@ -84,12 +84,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/responder/package.nix b/pkgs/by-name/re/responder/package.nix index d1b2ec9cad119..993ef0b57d0cd 100644 --- a/pkgs/by-name/re/responder/package.nix +++ b/pkgs/by-name/re/responder/package.nix @@ -46,12 +46,12 @@ python3.pkgs.buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "LLMNR, NBT-NS and MDNS poisoner, with built-in HTTP/SMB/MSSQL/FTP/LDAP rogue authentication server"; mainProgram = "responder"; homepage = "https://github.com/lgandx/Responder"; changelog = "https://github.com/lgandx/Responder/blob/master/CHANGELOG.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/re/restic-integrity/package.nix b/pkgs/by-name/re/restic-integrity/package.nix index 0d4be3d8410cd..10ee3ca79b202 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-ua2YQdevf1MalqeNvAAgtlESwN5gA+N3FCQUiKd0wMM="; - 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/restinio/package.nix b/pkgs/by-name/re/restinio/package.nix index 0d267b42cc1fd..ea1be482d7d07 100644 --- a/pkgs/by-name/re/restinio/package.nix +++ b/pkgs/by-name/re/restinio/package.nix @@ -75,12 +75,12 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; enableParallelChecking = false; - 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/restool/package.nix b/pkgs/by-name/re/restool/package.nix index 09a18b327a577..a874d0518b1f3 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 80587208efc2f..7e7e17b17ccc2 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 78d8836a55923..8fb0ef50293e8 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-r0wq1KGZA5b4eIQsp+dz8Inw8AQA62BK7vgfYlViIrY="; - 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/retrofe/package.nix b/pkgs/by-name/re/retrofe/package.nix index adfeed89ed97d..8af05ac92bac5 100644 --- a/pkgs/by-name/re/retrofe/package.nix +++ b/pkgs/by-name/re/retrofe/package.nix @@ -99,11 +99,11 @@ 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; - maintainers = with maintainers; [ hrdinka ]; - platforms = with platforms; linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ hrdinka ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/re/retry/package.nix b/pkgs/by-name/re/retry/package.nix index 2adc778d53db4..2c2bff8c829a2 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 = "Retry a command 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/reversal-icon-theme/package.nix b/pkgs/by-name/re/reversal-icon-theme/package.nix index c56104e4c2889..8970a8ecf8d82 100644 --- a/pkgs/by-name/re/reversal-icon-theme/package.nix +++ b/pkgs/by-name/re/reversal-icon-theme/package.nix @@ -82,11 +82,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/rewritefs/package.nix b/pkgs/by-name/re/rewritefs/package.nix index 03638fb5cf57c..da94531ea7d85 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 = "A 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 38254cae5c6a6..f66a6263ff6f8 100644 --- a/pkgs/by-name/rf/rfc-bibtex/package.nix +++ b/pkgs/by-name/rf/rfc-bibtex/package.nix @@ -26,11 +26,11 @@ 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/rg/rgxg/package.nix b/pkgs/by-name/rg/rgxg/package.nix index eac1b2d99c529..49fff3ab5d9dd 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 d3213be96915e..c587a24faa7af 100644 --- a/pkgs/by-name/rh/rHttp/package.nix +++ b/pkgs/by-name/rh/rHttp/package.nix @@ -17,11 +17,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 ce2b518dc9046..26033cac66c06 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-HmBh2qbO/HuNPfHKifq41IB5ResnGka2iaAsnwppm9s="; - 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/rh/rhash/package.nix b/pkgs/by-name/rh/rhash/package.nix index 9daddbfce993e..d1ea7a60bb273 100644 --- a/pkgs/by-name/rh/rhash/package.nix +++ b/pkgs/by-name/rh/rhash/package.nix @@ -51,11 +51,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/rhodium-libre/package.nix b/pkgs/by-name/rh/rhodium-libre/package.nix index d39f806ee24de..c948e39da9018 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 2490bc1599ee2..801c2a01793dd 100644 --- a/pkgs/by-name/rh/rhythmbox/package.nix +++ b/pkgs/by-name/rh/rhythmbox/package.nix @@ -115,11 +115,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; - maintainers = [ maintainers.rasendubi ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.rasendubi ]; }; } diff --git a/pkgs/by-name/ri/richgo/package.nix b/pkgs/by-name/ri/richgo/package.nix index 04e4a6b689b7d..65ef16f63e86e 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 edd07a226950e..92e68970b69ca 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 73b0558334bc4..9cc9b2945ecdc 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_c_client/package.nix b/pkgs/by-name/ri/riemann_c_client/package.nix index e4b2898d77edd..1db6f3e7f20a3 100644 --- a/pkgs/by-name/ri/riemann_c_client/package.nix +++ b/pkgs/by-name/ri/riemann_c_client/package.nix @@ -53,12 +53,12 @@ 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.lgpl3Plus; - maintainers = with maintainers; [ pradeepchhetri ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ pradeepchhetri ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ri/ries/package.nix b/pkgs/by-name/ri/ries/package.nix index fe6a93b028260..d94835916aa3e 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 459ea2da6b081..806015e793ed1 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 45ce5373184c4..29f3bbbb79428 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 rec { 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/rimgo/package.nix b/pkgs/by-name/ri/rimgo/package.nix index 9a97990bee566..e088b69a49939 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/ringracers/package.nix b/pkgs/by-name/ri/ringracers/package.nix index 8cb144d870cc5..7dfb0773e6a49 100644 --- a/pkgs/by-name/ri/ringracers/package.nix +++ b/pkgs/by-name/ri/ringracers/package.nix @@ -85,12 +85,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Kart racing video game based on Sonic Robo Blast 2 (SRB2), itself based on a modified version of Doom Legacy"; homepage = "https://kartkrew.org"; - platforms = platforms.linux; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ donovanglover thehans255 ]; diff --git a/pkgs/by-name/ri/ripmime/package.nix b/pkgs/by-name/ri/ripmime/package.nix index b4e302618ee99..66d99f0c900d7 100644 --- a/pkgs/by-name/ri/ripmime/package.nix +++ b/pkgs/by-name/ri/ripmime/package.nix @@ -25,11 +25,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/ripunzip/package.nix b/pkgs/by-name/ri/ripunzip/package.nix index 5071f03953dd0..cd72060e46342 100644 --- a/pkgs/by-name/ri/ripunzip/package.nix +++ b/pkgs/by-name/ri/ripunzip/package.nix @@ -49,7 +49,7 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { description = "Tool to unzip files in parallel"; mainProgram = "ripunzip"; homepage = "https://github.com/google/ripunzip"; @@ -57,6 +57,6 @@ rustPlatform.buildRustPackage rec { mit asl20 ]; - maintainers = [ maintainers.lesuisse ]; + maintainers = [ lib.maintainers.lesuisse ]; }; } diff --git a/pkgs/by-name/ri/ristate/package.nix b/pkgs/by-name/ri/ristate/package.nix index cce06401a2ae0..1985376c5d22f 100644 --- a/pkgs/by-name/ri/ristate/package.nix +++ b/pkgs/by-name/ri/ristate/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-HTfRWvE3m7XZhZDj5bEkrQI3pD6GNiKd2gJtMjRQ8Rw="; - 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 cdf942f4e1d1c..466c29254250a 100644 --- a/pkgs/by-name/ri/rivalcfg/package.nix +++ b/pkgs/by-name/ri/rivalcfg/package.nix @@ -38,11 +38,11 @@ python3Packages.buildPythonPackage rec { rm "$tmpudev" ''; - 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 06f4b4007ca5e..6bf693c78cde0 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 d10b3c3bde504..2406643150f96 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 eb30df877c5f8..c204ee0cb2ea7 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 f13113238467f..3b1ef4865843a 100644 --- a/pkgs/by-name/rk/rkbin/package.nix +++ b/pkgs/by-name/rk/rkbin/package.nix @@ -29,11 +29,11 @@ stdenv.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 2d30a55f54981..b52b0bc14b684 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 6c06584d79683..b71c329c162ca 100644 --- a/pkgs/by-name/rk/rkdeveloptool/package.nix +++ b/pkgs/by-name/rk/rkdeveloptool/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation { # main.cpp:1568:36: error: '%s' directive output may be truncated writing up to 557 bytes into a region of size 5 CPPFLAGS = lib.optionals stdenv.cc.isGNU [ "-Wno-error=format-truncation" ]; - 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/rk/rkflashtool/package.nix b/pkgs/by-name/rk/rkflashtool/package.nix index edece60a45b3e..98da9c33a41e1 100644 --- a/pkgs/by-name/rk/rkflashtool/package.nix +++ b/pkgs/by-name/rk/rkflashtool/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { cp rkunpack rkcrc rkflashtool rkparameters rkparametersblock rkunsign rkmisc $out/bin ''; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/rkflashtool/"; description = "Tools for flashing Rockchip devices"; - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/by-name/rk/rkrlv2/package.nix b/pkgs/by-name/rk/rkrlv2/package.nix index f4f297884ea96..7a8f1e7618f53 100644 --- a/pkgs/by-name/rk/rkrlv2/package.nix +++ b/pkgs/by-name/rk/rkrlv2/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { libsndfile ]; - meta = with lib; { + meta = { description = "Rakarrak effects ported to LV2"; homepage = "https://github.com/ssj71/rkrlv2"; - license = licenses.gpl2Only; - maintainers = [ maintainers.joelmo ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.joelmo ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isAarch64; # g++: error: unrecognized command line option '-mfpmath=sse' }; } diff --git a/pkgs/by-name/rl/rlaunch/package.nix b/pkgs/by-name/rl/rlaunch/package.nix index 0d454daa41ed3..4d8e7afad45eb 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/rlottie/package.nix b/pkgs/by-name/rl/rlottie/package.nix index 5c23b1bf9f9b0..772c316714b3f 100644 --- a/pkgs/by-name/rl/rlottie/package.nix +++ b/pkgs/by-name/rl/rlottie/package.nix @@ -41,16 +41,16 @@ stdenv.mkDerivation rec { 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 5d465fac34726..6b672a68d139e 100644 --- a/pkgs/by-name/rl/rlwrap/package.nix +++ b/pkgs/by-name/rl/rlwrap/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { 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"; - 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 b9f7f30138a28..cd3618ec57641 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 9467a1f58405e..396394aa8f1e6 100644 --- a/pkgs/by-name/rm/rmate-sh/package.nix +++ b/pkgs/by-name/rm/rmate-sh/package.nix @@ -39,7 +39,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 @@ -48,9 +48,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 be0d53852c3e9..d5c9bdf2a2c4a 100644 --- a/pkgs/by-name/rm/rmfakecloud/package.nix +++ b/pkgs/by-name/rm/rmfakecloud/package.nix @@ -41,11 +41,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 30d2d86942e13..4a2ffea04bc2e 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/rmtrash/package.nix b/pkgs/by-name/rm/rmtrash/package.nix index 68f889ed20f6a..b2c1c3d1b804c 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/rn/rnix-hashes/package.nix b/pkgs/by-name/rn/rnix-hashes/package.nix index 12144247e290a..ac216fc654dc5 100644 --- a/pkgs/by-name/rn/rnix-hashes/package.nix +++ b/pkgs/by-name/rn/rnix-hashes/package.nix @@ -26,12 +26,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-p6W9NtOKzVViyFq5SQvnIsik7S3mqUqxI/05OiC+P+Q="; - meta = with lib; { + meta = { description = "Nix Hash Converter"; mainProgram = "rnix-hashes"; homepage = "https://github.com/numtide/rnix-hashes"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rizary SuperSandro2000 ]; diff --git a/pkgs/by-name/rn/rnv/package.nix b/pkgs/by-name/rn/rnv/package.nix index 80e53c99370f2..e875b8ee542fa 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/roboto-mono/package.nix b/pkgs/by-name/ro/roboto-mono/package.nix index 3c71e0f217141..2e992c7bc2737 100644 --- a/pkgs/by-name/ro/roboto-mono/package.nix +++ b/pkgs/by-name/ro/roboto-mono/package.nix @@ -71,7 +71,7 @@ stdenv.mkDerivation { outputHashMode = "recursive"; outputHash = "0fkx2z97k29n1392bf76iwdyz44yp86hmqah7ai6bikzlia38qa0"; - meta = with lib; { + meta = { homepage = "https://www.google.com/fonts/specimen/Roboto+Mono"; description = "Google Roboto Mono fonts"; longDescription = '' @@ -85,8 +85,8 @@ stdenv.mkDerivation { wider glyphs are adjusted for weight. Curved caps like 'C' and 'O' take on the straighter sides from Roboto Condensed. ''; - 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/roboto-serif/package.nix b/pkgs/by-name/ro/roboto-serif/package.nix index 7a4bc9a186e91..d56d902adf477 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/robustirc-bridge/package.nix b/pkgs/by-name/ro/robustirc-bridge/package.nix index 32907b1894af8..ecf30a33e49d6 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 410563c4150ef..70ee8b627bf38 100644 --- a/pkgs/by-name/ro/roc-toolkit/package.nix +++ b/pkgs/by-name/ro/roc-toolkit/package.nix @@ -78,11 +78,11 @@ stdenv.mkDerivation rec { ] ); - 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/rocksndiamonds/package.nix b/pkgs/by-name/ro/rocksndiamonds/package.nix index e820bcdfbfa90..5b3ff650d0679 100644 --- a/pkgs/by-name/ro/rocksndiamonds/package.nix +++ b/pkgs/by-name/ro/rocksndiamonds/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Scrolling tile-based arcade style puzzle game"; mainProgram = "rocksndiamonds"; homepage = "https://www.artsoft.org/rocksndiamonds/"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/ro/rofi-blezz/package.nix b/pkgs/by-name/ro/rofi-blezz/package.nix index 65908a2fe9c15..9e2fc32da9c42 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-bluetooth/package.nix b/pkgs/by-name/ro/rofi-bluetooth/package.nix index 5e1fe1b8e0610..2146906c5f21b 100644 --- a/pkgs/by-name/ro/rofi-bluetooth/package.nix +++ b/pkgs/by-name/ro/rofi-bluetooth/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Rofi-based interface to connect to bluetooth devices and display status info"; homepage = "https://github.com/nickclyde/rofi-bluetooth"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ MoritzBoehme ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ MoritzBoehme ]; mainProgram = "rofi-bluetooth"; - platforms = platforms.linux; + 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 a7a97beec45e0..93f2c186ebe5b 100644 --- a/pkgs/by-name/ro/rofi-calc/package.nix +++ b/pkgs/by-name/ro/rofi-calc/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { sed "s|qalc_binary = \"qalc\"|qalc_binary = \"${libqalculate}/bin/qalc\"|" -i src/calc.c ''; - 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 76bd8da4488ae..54945ed090012 100644 --- a/pkgs/by-name/ro/rofi-file-browser/package.nix +++ b/pkgs/by-name/ro/rofi-file-browser/package.nix @@ -39,10 +39,10 @@ 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; [ jluttine ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/by-name/ro/rofi-menugen/package.nix b/pkgs/by-name/ro/rofi-menugen/package.nix index 925fc9ce19773..4c648b137897d 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 rec { 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 2756758e349d7..156a2e0beb653 100644 --- a/pkgs/by-name/ro/rofi-mpd/package.nix +++ b/pkgs/by-name/ro/rofi-mpd/package.nix @@ -25,12 +25,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 6746cfdbf4ca5..ef79772cdbba2 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 e7d1bceb3129d..8b38b569e5c38 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 267a9b63759a0..7da276ed3266f 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 rec { 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 120aa98614919..fe7f42cc014df 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 f6b12a6f788bf..8854b2564f7af 100644 --- a/pkgs/by-name/ro/rolespec/package.nix +++ b/pkgs/by-name/ro/rolespec/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { 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 rec { 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/roogle/package.nix b/pkgs/by-name/ro/roogle/package.nix index 26cb21501157a..0f23659fb392a 100644 --- a/pkgs/by-name/ro/roogle/package.nix +++ b/pkgs/by-name/ro/roogle/package.nix @@ -22,14 +22,14 @@ rustPlatform.buildRustPackage rec { cp -r assets $out/share/roogle ''; - 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/ro/roomeqwizard/package.nix b/pkgs/by-name/ro/roomeqwizard/package.nix index f5aa37186d5be..5b7462e6005b2 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; [ orivej zaninime ]; diff --git a/pkgs/by-name/ro/root5/package.nix b/pkgs/by-name/ro/root5/package.nix index 375fff26a01c8..1143558444ef7 100644 --- a/pkgs/by-name/ro/root5/package.nix +++ b/pkgs/by-name/ro/root5/package.nix @@ -181,12 +181,12 @@ stdenv.mkDerivation rec { setupHook = ./setup-hook.sh; - meta = with lib; { + meta = { homepage = "https://root.cern.ch/"; description = "Data analysis framework"; - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = !stdenv.hostPlatform.isx86_64 || stdenv.cc.isClang or false; - maintainers = with maintainers; [ veprbl ]; - license = licenses.lgpl21; + maintainers = with lib.maintainers; [ veprbl ]; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/by-name/ro/rootbar/package.nix b/pkgs/by-name/ro/rootbar/package.nix index b4f5446672cc6..5742d207710ab 100644 --- a/pkgs/by-name/ro/rootbar/package.nix +++ b/pkgs/by-name/ro/rootbar/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { 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 rec { 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ AndersonTorres ]; + 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 63ad234b0f17f..fc84a7f1bd1ef 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 95cc80d6811f2..3d4f0f9e9da76 100644 --- a/pkgs/by-name/ro/rosa/package.nix +++ b/pkgs/by-name/ro/rosa/package.nix @@ -57,10 +57,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 d29bbc9888d63..9978ec5e3a947 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 bdc2a459b3c2a..257d53272766e 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 b2aef432e2a9d..2bcb3397f9b13 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 rec { 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/rosie/package.nix b/pkgs/by-name/ro/rosie/package.nix index 5330b757686ee..48aaf35dfb681 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/rot8/package.nix b/pkgs/by-name/ro/rot8/package.nix index 01ee4f820847b..33610f350008f 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-KDg6Ggnm6Cl/1fXqNcc7/jRFJ6KTLVGveJ6Fs3NLlHE="; - 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 70708d1238807..689df53b1c429 100644 --- a/pkgs/by-name/ro/rotate-backups/package.nix +++ b/pkgs/by-name/ro/rotate-backups/package.nix @@ -30,11 +30,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/rote/package.nix b/pkgs/by-name/ro/rote/package.nix index b139fae6c0989..bb57b90c13c5e 100644 --- a/pkgs/by-name/ro/rote/package.nix +++ b/pkgs/by-name/ro/rote/package.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Our Own Terminal Emulation Library"; mainProgram = "rote-config"; longDescription = '' @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { screen when you need to. ''; homepage = "https://rote.sourceforge.net/"; - license = licenses.lgpl21; - platforms = platforms.linux; + license = lib.licenses.lgpl21; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ro/round/package.nix b/pkgs/by-name/ro/round/package.nix index dc55727a2b093..76ca759aa1b87 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 = "Round image corners from CLI"; 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 4fa521cf79874..0d3d6f55119f4 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 743b224c07fa9..0a6b079bfa54e 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 28ca44711b1e9..cb77020b7217f 100644 --- a/pkgs/by-name/ro/route159/package.nix +++ b/pkgs/by-name/ro/route159/package.nix @@ -26,14 +26,14 @@ 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; [ leenaars 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 434491ae88be7..e744b20c5cbc2 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/routersploit/package.nix b/pkgs/by-name/ro/routersploit/package.nix index 0ff779a6de1dd..03890c992e2e6 100644 --- a/pkgs/by-name/ro/routersploit/package.nix +++ b/pkgs/by-name/ro/routersploit/package.nix @@ -46,11 +46,11 @@ python3.pkgs.buildPythonApplication rec { "tests/test_module_info.py" ]; - meta = with lib; { + meta = { description = "Exploitation Framework for Embedded Devices"; homepage = "https://github.com/threat9/routersploit"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "rsf"; }; } diff --git a/pkgs/by-name/ro/routino/package.nix b/pkgs/by-name/ro/routino/package.nix index adffbdb9fd5e8..efef1a2d3192c 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/rowhammer-test/package.nix b/pkgs/by-name/ro/rowhammer-test/package.nix index 6d888b3149bd1..f2b57d288b4f4 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/rp/rpPPPoE/package.nix b/pkgs/by-name/rp/rpPPPoE/package.nix index 940ada94fac89..d2b4491e1e526 100644 --- a/pkgs/by-name/rp/rpPPPoE/package.nix +++ b/pkgs/by-name/rp/rpPPPoE/package.nix @@ -37,11 +37,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 f1dadd3a78579..31fd9975e6078 100644 --- a/pkgs/by-name/rp/rpcbind/package.nix +++ b/pkgs/by-name/rp/rpcbind/package.nix @@ -42,12 +42,12 @@ 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 = with maintainers; [ abbradar ]; + maintainers = with lib.maintainers; [ abbradar ]; longDescription = '' Universal addresses to RPC program number mapper. ''; diff --git a/pkgs/by-name/rp/rpcs3/package.nix b/pkgs/by-name/rp/rpcs3/package.nix index 07b0de1f79339..7019a0fff1eee 100644 --- a/pkgs/by-name/rp/rpcs3/package.nix +++ b/pkgs/by-name/rp/rpcs3/package.nix @@ -138,16 +138,16 @@ stdenv.mkDerivation { 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; [ abbradar neonfuz ilian zane ]; - 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 89331a7dff9d7..ba3e1b2bd6af6 100644 --- a/pkgs/by-name/rp/rpcsvc-proto/package.nix +++ b/pkgs/by-name/rp/rpcsvc-proto/package.nix @@ -50,7 +50,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 = '' @@ -58,8 +58,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 7484ba694e2cb..bfbe026798839 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; - maintainers = with maintainers; [ lom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lom ]; }; } diff --git a/pkgs/by-name/rp/rpiplay/package.nix b/pkgs/by-name/rp/rpiplay/package.nix index dc43891fed886..c9901d934f97e 100644 --- a/pkgs/by-name/rp/rpiplay/package.nix +++ b/pkgs/by-name/rp/rpiplay/package.nix @@ -52,13 +52,13 @@ stdenv.mkDerivation rec { gst_all_1.gst-plugins-ugly ]; - 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 099d34f37cb21..c13dc2e5e636e 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 63b14942e5de8..6aabad0726cf1 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; - maintainers = with maintainers; [ copumpkin ]; - platforms = platforms.linux; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ copumpkin ]; + 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 9914bc433dbed..81b247b0cca04 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 71630ed687c11..fce39b0ce5b65 100644 --- a/pkgs/by-name/rp/rpmextract/package.nix +++ b/pkgs/by-name/rp/rpmextract/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation { }; }; - meta = with lib; { + meta = { description = "Script to extract RPM archives"; - platforms = platforms.all; - license = licenses.gpl2Only; - maintainers = with maintainers; [ abbradar ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ abbradar ]; mainProgram = "rpmextract"; }; } diff --git a/pkgs/by-name/rq/rq/package.nix b/pkgs/by-name/rq/rq/package.nix index b128d2c7e30ae..492d80d447ca8 100644 --- a/pkgs/by-name/rq/rq/package.nix +++ b/pkgs/by-name/rq/rq/package.nix @@ -30,12 +30,12 @@ rustPlatform.buildRustPackage rec { VERGEN_SEMVER = version; - meta = with lib; { + meta = { description = "Tool for doing record analysis and transformation"; mainProgram = "rq"; homepage = "https://github.com/dflemstr/rq"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ aristid Br1ght0ne figsoda diff --git a/pkgs/by-name/rq/rqlite/package.nix b/pkgs/by-name/rq/rqlite/package.nix index 1c564dfc37320..eec1e7c89f364 100644 --- a/pkgs/by-name/rq/rqlite/package.nix +++ b/pkgs/by-name/rq/rqlite/package.nix @@ -34,10 +34,10 @@ buildGoModule rec { # Tests are in a different subPackage which fails trying to access the network doCheck = false; - meta = with lib; { + meta = { description = "Lightweight, distributed relational database built on SQLite"; homepage = "https://github.com/rqlite/rqlite"; - license = licenses.mit; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/rr/rrootage/package.nix b/pkgs/by-name/rr/rrootage/package.nix index 819a560d2b871..ce38f0c317231 100644 --- a/pkgs/by-name/rr/rrootage/package.nix +++ b/pkgs/by-name/rr/rrootage/package.nix @@ -73,11 +73,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-git-fsmonitor/package.nix b/pkgs/by-name/rs/rs-git-fsmonitor/package.nix index 77ebac70578ab..9e175387849ad 100644 --- a/pkgs/by-name/rs/rs-git-fsmonitor/package.nix +++ b/pkgs/by-name/rs/rs-git-fsmonitor/package.nix @@ -25,10 +25,10 @@ rustPlatform.buildRustPackage rec { wrapProgram $out/bin/rs-git-fsmonitor --prefix PATH ":" "${lib.makeBinPath [ watchman ]}" ; ''; - meta = with lib; { + meta = { description = "Fast git core.fsmonitor hook written in Rust"; homepage = "https://github.com/jgavris/rs-git-fsmonitor"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "rs-git-fsmonitor"; }; diff --git a/pkgs/by-name/rs/rs-tftpd/package.nix b/pkgs/by-name/rs/rs-tftpd/package.nix index a4cb82b779ef8..547d605fef47f 100644 --- a/pkgs/by-name/rs/rs-tftpd/package.nix +++ b/pkgs/by-name/rs/rs-tftpd/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "TFTP Server Daemon implemented in Rust"; homepage = "https://github.com/altugbakan/rs-tftpd"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; mainProgram = "tftpd"; }; } diff --git a/pkgs/by-name/rs/rsbep/package.nix b/pkgs/by-name/rs/rsbep/package.nix index 0327871f807e5..ada9a9991005d 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 ecc2f2f6ae58f..241d8008746ec 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-/uAxIV7eroJNGsLl4T/6RskoTIWKu5Cgmv48eMkDZQw="; - 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 1945db62b9175..916e0360df238 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 ebb47ead1c54a..7af0c92ec4643 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-3rDPk+lPRrDrE2iqHAOi7zhyc+xYPXkM9P4Bu0JUL40="; - 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 82a6e55aaea47..1d23448319012 100644 --- a/pkgs/by-name/rs/rshim-user-space/package.nix +++ b/pkgs/by-name/rs/rshim-user-space/package.nix @@ -64,7 +64,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 @@ -74,8 +74,8 @@ 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; [ nikstur ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ nikstur ]; }; } diff --git a/pkgs/by-name/rs/rsign2/package.nix b/pkgs/by-name/rs/rsign2/package.nix index b548c092495a4..a16871622e820 100644 --- a/pkgs/by-name/rs/rsign2/package.nix +++ b/pkgs/by-name/rs/rsign2/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-xqNFJFNV9mIVxzyQvhv5QwHVcXLuH76VYFAsgp5hW+w="; - meta = with lib; { + meta = { description = "Command-line tool to sign files and verify signatures"; homepage = "https://github.com/jedisct1/rsign2"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "rsign"; }; } diff --git a/pkgs/by-name/rs/rslint/package.nix b/pkgs/by-name/rs/rslint/package.nix index 667f3e491daa6..6814bdc500417 100644 --- a/pkgs/by-name/rs/rslint/package.nix +++ b/pkgs/by-name/rs/rslint/package.nix @@ -24,10 +24,10 @@ rustPlatform.buildRustPackage rec { "rslint_lsp" ]; - meta = with lib; { + meta = { description = "Fast, customizable, and easy to use JavaScript and TypeScript linter"; homepage = "https://rslint.org"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/rs/rsmangler/package.nix b/pkgs/by-name/rs/rsmangler/package.nix index 32b0e65677ed0..31aa87e7c445a 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/rsnapshot/package.nix b/pkgs/by-name/rs/rsnapshot/package.nix index 012ad55a41344..d7b60cb86d875 100644 --- a/pkgs/by-name/rs/rsnapshot/package.nix +++ b/pkgs/by-name/rs/rsnapshot/package.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation rec { "/usr/bin/pod2man" "${perl}/bin/pod2man" ''; - meta = with lib; { + meta = { description = "Filesystem snapshot utility for making backups of local and remote systems"; homepage = "https://rsnapshot.org/"; license = lib.licenses.gpl2Plus; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/rs/rspamd/package.nix b/pkgs/by-name/rs/rspamd/package.nix index 1288743c3c1fc..2acff81af191e 100644 --- a/pkgs/by-name/rs/rspamd/package.nix +++ b/pkgs/by-name/rs/rspamd/package.nix @@ -90,16 +90,16 @@ 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 globin 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 fff9a2e9665a8..a0d7f8e3a7eb1 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: rec { 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 8593786f8beec..fb491b924e06a 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/rsstail/package.nix b/pkgs/by-name/rs/rsstail/package.nix index a2c7d2d2e7047..0f1a76fd54019 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 988484237490a..af773f4565d27 100644 --- a/pkgs/by-name/rs/rst2html5/package.nix +++ b/pkgs/by-name/rs/rst2html5/package.nix @@ -28,11 +28,11 @@ python3.pkgs.buildPythonPackage rec { pythonImportsCheck = [ "rst2html5" ]; - meta = with lib; { + meta = { description = "Converts ReSTructuredText to (X)HTML5"; homepage = "https://rst2html5.readthedocs.io/"; - license = licenses.mit; - maintainers = with maintainers; [ AndersonTorres ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ AndersonTorres ]; mainProgram = "rst2html5"; }; } diff --git a/pkgs/by-name/rt/rt-tests/package.nix b/pkgs/by-name/rt/rt-tests/package.nix index 692763c6d74a4..1ffaf8d55f187 100644 --- a/pkgs/by-name/rt/rt-tests/package.nix +++ b/pkgs/by-name/rt/rt-tests/package.nix @@ -32,11 +32,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/rt5677-firmware/package.nix b/pkgs/by-name/rt/rt5677-firmware/package.nix index 675e42660adaf..8da4230929fa5 100644 --- a/pkgs/by-name/rt/rt5677-firmware/package.nix +++ b/pkgs/by-name/rt/rt5677-firmware/package.nix @@ -19,10 +19,10 @@ stdenvNoCC.mkDerivation { cp ./firmware/rt5677_elf_vad $out/lib/firmware ''; - meta = with lib; { + meta = { description = "Firmware for Realtek rt5677 device"; - license = licenses.unfreeRedistributableFirmware; - maintainers = [ maintainers.zohl ]; - platforms = platforms.linux; + license = lib.licenses.unfreeRedistributableFirmware; + maintainers = [ lib.maintainers.zohl ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/rt/rtfm/package.nix b/pkgs/by-name/rt/rtfm/package.nix index 3bf066ff18f0e..3ebaa13df980d 100644 --- a/pkgs/by-name/rt/rtfm/package.nix +++ b/pkgs/by-name/rt/rtfm/package.nix @@ -84,11 +84,11 @@ crystal.buildCrystalPackage rec { done ''; - 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 ]; + maintainers = with lib.maintainers; [ sund3RRR ]; }; } diff --git a/pkgs/by-name/rt/rtg-tools/package.nix b/pkgs/by-name/rt/rtg-tools/package.nix index 3fe57e0e80aee..8f9f689245cda 100644 --- a/pkgs/by-name/rt/rtg-tools/package.nix +++ b/pkgs/by-name/rt/rtg-tools/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { sed -i '/USER_JAVA_OPTS=$RTG_JAVA_OPTS/a mkdir -p $HOME/.config/rtg-tools' installer/rtg ''; - meta = with lib; { + meta = { homepage = "https://github.com/RealTimeGenomics/rtg-tools"; description = "Useful utilities for dealing with VCF files and sequence data, especially vcfeval"; - license = licenses.bsd2; + license = lib.licenses.bsd2; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ apraga ]; + maintainers = with lib.maintainers; [ apraga ]; }; } diff --git a/pkgs/by-name/rt/rtkit/package.nix b/pkgs/by-name/rt/rtkit/package.nix index 53c5fe6f8235b..071e1c61b3bc2 100644 --- a/pkgs/by-name/rt/rtkit/package.nix +++ b/pkgs/by-name/rt/rtkit/package.nix @@ -53,14 +53,14 @@ stdenv.mkDerivation rec { "-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 87a6ccfc9e7c8..573f4cdd000c4 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/rtl8192su-firmware/package.nix b/pkgs/by-name/rt/rtl8192su-firmware/package.nix index 1d6642deabb5d..c0dfcd79760df 100644 --- a/pkgs/by-name/rt/rtl8192su-firmware/package.nix +++ b/pkgs/by-name/rt/rtl8192su-firmware/package.nix @@ -30,11 +30,11 @@ stdenvNoCC.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Firmware for Realtek RTL8188SU/RTL8191SU/RTL8192SU"; homepage = "https://github.com/chunkeey/rtl8192su"; - license = licenses.unfreeRedistributableFirmware; - maintainers = with maintainers; [ mic92 ]; - platforms = with platforms; linux; + license = lib.licenses.unfreeRedistributableFirmware; + maintainers = with lib.maintainers; [ mic92 ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/rt/rtl8761b-firmware/package.nix b/pkgs/by-name/rt/rtl8761b-firmware/package.nix index 56ffafe1e9a2b..846370547e13d 100644 --- a/pkgs/by-name/rt/rtl8761b-firmware/package.nix +++ b/pkgs/by-name/rt/rtl8761b-firmware/package.nix @@ -24,10 +24,10 @@ stdenvNoCC.mkDerivation { $out/lib/firmware/rtl_bt/rtl8761b_config.bin ''; - meta = with lib; { + meta = { description = "Firmware for Realtek RTL8761b"; - license = licenses.unfreeRedistributableFirmware; - maintainers = with maintainers; [ milibopp ]; - platforms = with platforms; linux; + license = lib.licenses.unfreeRedistributableFirmware; + maintainers = with lib.maintainers; [ milibopp ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/rt/rtl_433/package.nix b/pkgs/by-name/rt/rtl_433/package.nix index cb77ea75658d9..a42155ba1bec6 100644 --- a/pkgs/by-name/rt/rtl_433/package.nix +++ b/pkgs/by-name/rt/rtl_433/package.nix @@ -33,15 +33,15 @@ stdenv.mkDerivation rec { doCheck = true; - 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 8e39dc0c959d7..276cd0a4ea76b 100644 --- a/pkgs/by-name/rt/rtlcss/package.nix +++ b/pkgs/by-name/rt/rtlcss/package.nix @@ -20,11 +20,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/rtrlib/package.nix b/pkgs/by-name/rt/rtrlib/package.nix index 03cb328651b83..aa60dd0c798c9 100644 --- a/pkgs/by-name/rt/rtrlib/package.nix +++ b/pkgs/by-name/rt/rtrlib/package.nix @@ -29,11 +29,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 3e30aa0dd5926..4a37daa35e442 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-aHK9KBzRbU2IYr7vOdlz0Aw4iYGjD6VedbWPE/V7AVc="; - 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 cc8d057d86511..a6ce229e5d7be 100644 --- a/pkgs/by-name/rt/rttr/package.nix +++ b/pkgs/by-name/rt/rttr/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { "-DBUILD_PACKAGE=OFF" ]; - 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/ru/rubber/package.nix b/pkgs/by-name/ru/rubber/package.nix index e2febe3d0b939..fda0d10765dd4 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/rubyripper/package.nix b/pkgs/by-name/ru/rubyripper/package.nix index 453f171ae9010..ea3a76fd898ba 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/rucksack/package.nix b/pkgs/by-name/ru/rucksack/package.nix index c6d84a6f29619..4caca00db6450 100644 --- a/pkgs/by-name/ru/rucksack/package.nix +++ b/pkgs/by-name/ru/rucksack/package.nix @@ -24,14 +24,14 @@ stdenv.mkDerivation rec { freeimage ]; - meta = with lib; { + meta = { description = "Texture packer and resource bundler"; platforms = [ "i686-linux" "x86_64-linux" ]; # fails on Darwin and AArch64 homepage = "https://github.com/andrewrk/rucksack"; - license = licenses.mit; - maintainers = [ maintainers.andrewrk ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.andrewrk ]; }; } diff --git a/pkgs/by-name/ru/run/package.nix b/pkgs/by-name/ru/run/package.nix index 759f97102aca8..2cf0b4e3650e7 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 Br1ght0ne ]; diff --git a/pkgs/by-name/ru/rund/package.nix b/pkgs/by-name/ru/rund/package.nix index 93ebb751e7d34..4a53f9ffea480 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/runiq/package.nix b/pkgs/by-name/ru/runiq/package.nix index ba807d84b2ef3..9c48c0db1c873 100644 --- a/pkgs/by-name/ru/runiq/package.nix +++ b/pkgs/by-name/ru/runiq/package.nix @@ -27,11 +27,11 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.Security ]; - 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/ru/rust-analyzer-unwrapped/package.nix b/pkgs/by-name/ru/rust-analyzer-unwrapped/package.nix index 53aa4fb327f24..9f936c6c72047 100644 --- a/pkgs/by-name/ru/rust-analyzer-unwrapped/package.nix +++ b/pkgs/by-name/ru/rust-analyzer-unwrapped/package.nix @@ -71,14 +71,14 @@ rustPlatform.buildRustPackage rec { # tests.neovim-lsp = callPackage ./test-neovim-lsp.nix { }; }; - meta = with lib; { + meta = { description = "Modular compiler frontend 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 fb0d0b8bb8f38..60f8296f5415c 100644 --- a/pkgs/by-name/ru/rust-audit-info/package.nix +++ b/pkgs/by-name/ru/rust-audit-info/package.nix @@ -15,14 +15,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-bKrdgz6dyv/PF5JXMq7uvsh7SsK/qEd2W7tm6+YYlxg="; - 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/ru/rust-code-analysis/package.nix b/pkgs/by-name/ru/rust-code-analysis/package.nix index ecb56299faa92..1a16467763ed7 100644 --- a/pkgs/by-name/ru/rust-code-analysis/package.nix +++ b/pkgs/by-name/ru/rust-code-analysis/package.nix @@ -16,14 +16,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-axrtFZQOm1/UUBq1CDFkaZCks1mWoLWmfajDfsqSBmY="; - 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "rust-code-analysis-cli"; }; } diff --git a/pkgs/by-name/ru/rust-petname/package.nix b/pkgs/by-name/ru/rust-petname/package.nix index 8f9a1a4463d8d..720854c9e0c77 100644 --- a/pkgs/by-name/ru/rust-petname/package.nix +++ b/pkgs/by-name/ru/rust-petname/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-R1Xahr9R4G8Tr2cGRJ2oydVaLohPz2VM6tnbtE8Hysk="; - meta = with lib; { + meta = { description = "Generate human readable random names"; homepage = "https://github.com/allenap/rust-petname"; - license = licenses.asl20; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "petname"; }; } diff --git a/pkgs/by-name/ru/rustc-demangle/package.nix b/pkgs/by-name/ru/rustc-demangle/package.nix index edb6be2d7321e..351804dbde053 100644 --- a/pkgs/by-name/ru/rustc-demangle/package.nix +++ b/pkgs/by-name/ru/rustc-demangle/package.nix @@ -36,15 +36,15 @@ rustPlatform.buildRustPackage rec { cp -R crates/capi/include $out ''; - meta = with lib; { + meta = { description = "Rust symbol demangling"; homepage = "https://github.com/alexcrichton/rustc-demangle"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; # upstream supports other platforms, but maintainer can only test on linux - platforms = platforms.linux; - maintainers = with maintainers; [ _1000teslas ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ _1000teslas ]; }; } diff --git a/pkgs/by-name/ru/rustdesk-flutter/package.nix b/pkgs/by-name/ru/rustdesk-flutter/package.nix index 0c6ecb9a6bd32..2773026f42454 100644 --- a/pkgs/by-name/ru/rustdesk-flutter/package.nix +++ b/pkgs/by-name/ru/rustdesk-flutter/package.nix @@ -241,12 +241,12 @@ flutter319.buildFlutterApplication rec { }) ]; - meta = with lib; { + meta = { description = "Virtual / remote desktop infrastructure for everyone! Open source TeamViewer / Citrix alternative"; homepage = "https://rustdesk.com"; - license = licenses.agpl3Only; - maintainers = teams.helsinki-systems.members; + license = lib.licenses.agpl3Only; + maintainers = lib.teams.helsinki-systems.members; mainProgram = "rustdesk"; - platforms = platforms.linux; # should work on darwin as well but I have no machine to test with + platforms = lib.platforms.linux; # should work on darwin as well but I have no machine to test with }; } diff --git a/pkgs/by-name/ru/rustfilt/package.nix b/pkgs/by-name/ru/rustfilt/package.nix index 351cfa9af57d8..faefc6330933c 100644 --- a/pkgs/by-name/ru/rustfilt/package.nix +++ b/pkgs/by-name/ru/rustfilt/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-rs2EWcvTxLVeJ0t+jLM75s+K72t+hqKzwy3oAdCZ8BE="; - meta = with lib; { + meta = { description = "Demangle Rust symbol names using rustc-demangle"; homepage = "https://github.com/luser/rustfilt"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ wykurz ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ wykurz ]; mainProgram = "rustfilt"; }; } diff --git a/pkgs/by-name/ru/rusti-cal/package.nix b/pkgs/by-name/ru/rusti-cal/package.nix index 2d31a44fedf95..d1b4274de8586 100644 --- a/pkgs/by-name/ru/rusti-cal/package.nix +++ b/pkgs/by-name/ru/rusti-cal/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.Foundation ]; - 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 8b83c212e4f15..2853450faa627 100644 --- a/pkgs/by-name/ru/rustls-ffi/package.nix +++ b/pkgs/by-name/ru/rustls-ffi/package.nix @@ -70,7 +70,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" ]; @@ -79,6 +79,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 e07f2b5802595..f5235e313d489 100644 --- a/pkgs/by-name/ru/rustplayer/package.nix +++ b/pkgs/by-name/ru/rustplayer/package.nix @@ -45,11 +45,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/rusty-psn/package.nix b/pkgs/by-name/ru/rusty-psn/package.nix index 5945caf102bf3..a8b50e22b311b 100644 --- a/pkgs/by-name/ru/rusty-psn/package.nix +++ b/pkgs/by-name/ru/rusty-psn/package.nix @@ -91,12 +91,12 @@ rustPlatform.buildRustPackage rec { }); desktopItems = lib.optionals withGui [ desktopItem ]; - meta = with lib; { + meta = { description = "Simple tool to grab updates for PS3 games, directly from Sony's servers using their updates API"; homepage = "https://github.com/RainbowCookie32/rusty-psn/"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ AngryAnt ]; + maintainers = with lib.maintainers; [ AngryAnt ]; mainProgram = "rusty-psn"; }; } diff --git a/pkgs/by-name/ru/ruwudu/package.nix b/pkgs/by-name/ru/ruwudu/package.nix index e4decd04df993..5ae35b8209811 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/rw/rw/package.nix b/pkgs/by-name/rw/rw/package.nix index 70372c31894e1..d4fc0abff6230 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 7369a086f79ca..e92317f3170a7 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 f62b18cb9c9c3..823780abf966b 100644 --- a/pkgs/by-name/rw/rwedid/package.nix +++ b/pkgs/by-name/rw/rwedid/package.nix @@ -33,7 +33,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. @@ -41,8 +41,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 3f564a6476e03..328ba63f0d6f3 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 Br1ght0ne ]; diff --git a/pkgs/by-name/ry/ryujinx-greemdev/package.nix b/pkgs/by-name/ry/ryujinx-greemdev/package.nix index 1c69a3d92262d..9e6655a8d7a21 100644 --- a/pkgs/by-name/ry/ryujinx-greemdev/package.nix +++ b/pkgs/by-name/ry/ryujinx-greemdev/package.nix @@ -127,7 +127,7 @@ buildDotnetModule rec { passthru.updateScript = ./updater.sh; - meta = with lib; { + meta = { homepage = "https://github.com/GreemDev/Ryujinx"; changelog = "https://github.com/GreemDev/Ryujinx/wiki/Changelog"; description = "Experimental Nintendo Switch Emulator written in C# (QoL fork)"; @@ -139,8 +139,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 kekschen diff --git a/pkgs/by-name/ry/ryzen-monitor-ng/package.nix b/pkgs/by-name/ry/ryzen-monitor-ng/package.nix index 044331da9e47e..7a90bf59b362c 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 3f6a9206a24ac..b72bb86267c53 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 cd2c4b42ba7a3..b40fbad1defec 100644 --- a/pkgs/by-name/rz/rzip/package.nix +++ b/pkgs/by-name/rz/rzip/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=implicit-int"; - 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 070b44544dd4b..f7f09ca9126c6 100644 --- a/pkgs/by-name/s-/s-tui/package.nix +++ b/pkgs/by-name/s-/s-tui/package.nix @@ -27,10 +27,10 @@ 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; + license = lib.licenses.gpl2Plus; maintainers = [ ]; 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 b607fcc861f6a..08643b7d61be3 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/s3/s3backer/package.nix b/pkgs/by-name/s3/s3backer/package.nix index 51945c40b1089..39a4a8bd4ab38 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 fb5b8e8237e66..95e2a46b3bb40 100644 --- a/pkgs/by-name/s3/s3bro/package.nix +++ b/pkgs/by-name/s3/s3bro/package.nix @@ -33,11 +33,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/s4/s4cmd/package.nix b/pkgs/by-name/s4/s4cmd/package.nix index 0d6686908390a..b78d4db448676 100644 --- a/pkgs/by-name/s4/s4cmd/package.nix +++ b/pkgs/by-name/s4/s4cmd/package.nix @@ -33,10 +33,10 @@ python3Packages.buildPythonApplication rec { # Test suite requires an S3 bucket doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/bloomreach/s4cmd"; description = "Super S3 command line tool"; - license = licenses.asl20; - maintainers = [ maintainers.bhipple ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.bhipple ]; }; } diff --git a/pkgs/by-name/s5/s5cmd/package.nix b/pkgs/by-name/s5/s5cmd/package.nix index c89e914ab8b59..d3a0d3c4b6ba9 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 464bb51eb7a12..2c68995682f35 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 3d1991b98a882..dd80c82c41182 100644 --- a/pkgs/by-name/sa/sabnzbd/package.nix +++ b/pkgs/by-name/sa/sabnzbd/package.nix @@ -103,11 +103,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 314aee13dec78..e0e0fdd52e5de 100644 --- a/pkgs/by-name/sa/sacad/package.nix +++ b/pkgs/by-name/sa/sacad/package.nix @@ -36,10 +36,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 edea63ac742c1..0ff053d517195 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 65d04693b08ec..4abbcb99996e1 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 e9158630269cd..43b6804b38229 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 70bade379cd77..a3ea0053cf83b 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/safeeyes/package.nix b/pkgs/by-name/sa/safeeyes/package.nix index 4400848d7b32d..3d5318bda89e6 100644 --- a/pkgs/by-name/sa/safeeyes/package.nix +++ b/pkgs/by-name/sa/safeeyes/package.nix @@ -75,12 +75,12 @@ 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; - maintainers = with maintainers; [ srghma ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ srghma ]; + 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 507f1bbcdd450..4542a4585aa72 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 f55a9288b0200..ba013a1d0e11d 100644 --- a/pkgs/by-name/sa/sage/python-modules/sage-docbuild.nix +++ b/pkgs/by-name/sa/sage/python-modules/sage-docbuild.nix @@ -28,10 +28,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; - maintainers = teams.sage.members; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.sage.members; }; } 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 29dea0671ea24..9210f6662e14b 100644 --- a/pkgs/by-name/sa/sage/python-modules/sage-setup.nix +++ b/pkgs/by-name/sa/sage/python-modules/sage-setup.nix @@ -22,10 +22,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; - maintainers = teams.sage.members; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.sage.members; }; } diff --git a/pkgs/by-name/sa/sage/sage.nix b/pkgs/by-name/sa/sage/sage.nix index e909d1ef58e01..b761974edf4f5 100644 --- a/pkgs/by-name/sa/sage/sage.nix +++ b/pkgs/by-name/sa/sage/sage.nix @@ -59,12 +59,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; - maintainers = teams.sage.members; - platforms = platforms.linux ++ [ "aarch64-darwin" ]; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.sage.members; + 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 ed31393e365ee..b593a23efc608 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/sahel-fonts/package.nix b/pkgs/by-name/sa/sahel-fonts/package.nix index 30d09d2fa36fc..ea644339f9435 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 62e2da16fe4c2..a678cf0473908 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 530cba04b078c..92a8de13fdf7e 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/saleae-logic-2/package.nix b/pkgs/by-name/sa/saleae-logic-2/package.nix index 6a447c5876608..a2494f617bbcb 100644 --- a/pkgs/by-name/sa/saleae-logic-2/package.nix +++ b/pkgs/by-name/sa/saleae-logic-2/package.nix @@ -68,12 +68,12 @@ appimageTools.wrapType2 { libxcrypt-legacy ]; - meta = with lib; { + meta = { homepage = "https://www.saleae.com/"; 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/sambamba/package.nix b/pkgs/by-name/sa/sambamba/package.nix index 9cf37daf1606e..cc81785bd15bb 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 fba9560557c30..aa45b3f7a573d 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 0489423d9fefd..c232c1fe3fdb4 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 b5df4039595fb..d495c73317851 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/sampler/package.nix b/pkgs/by-name/sa/sampler/package.nix index ec2e35728b1c3..ec8ced9096015 100644 --- a/pkgs/by-name/sa/sampler/package.nix +++ b/pkgs/by-name/sa/sampler/package.nix @@ -39,11 +39,11 @@ buildGoModule rec { darwin.apple_sdk.frameworks.OpenAL ]; - 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 6149f13578a02..df30de46a75d7 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/sanctity/package.nix b/pkgs/by-name/sa/sanctity/package.nix index 531181ed266a9..4749891c16b08 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-co58YBeFjP9DKzxDegQI7txuJ1smqJxdlRLae+Ppwh0="; - 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 b5918209a6e80..711bc79994b97 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 f7c0ed3ea8ac2..fdc5f471168a6 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-ZSmublTne8YZM8irowPedgEr2fzPzwt1QGWU+BBTAzA="; }; - 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 6a01474c0f65d..15f62548ab23e 100644 --- a/pkgs/by-name/sa/sanoid/package.nix +++ b/pkgs/by-name/sa/sanoid/package.nix @@ -89,14 +89,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/sassc/package.nix b/pkgs/by-name/sa/sassc/package.nix index eabf0ef0c347f..2338153ae352c 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 604b316301780..fcbc353d2ff37 100644 --- a/pkgs/by-name/sa/sasutils/package.nix +++ b/pkgs/by-name/sa/sasutils/package.nix @@ -25,10 +25,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 73aad9079f755..f548403c1b653 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 374e52b7ebcc3..8f0ece7c2ac6e 100644 --- a/pkgs/by-name/sa/saunafs/package.nix +++ b/pkgs/by-name/sa/saunafs/package.nix @@ -67,11 +67,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/sb/sbc/package.nix b/pkgs/by-name/sb/sbc/package.nix index cb86445c7b0c9..efefc306d3761 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/sbctl/package.nix b/pkgs/by-name/sb/sbctl/package.nix index a9b33ea9f479d..a2feb1a983816 100644 --- a/pkgs/by-name/sb/sbctl/package.nix +++ b/pkgs/by-name/sb/sbctl/package.nix @@ -57,17 +57,17 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Secure Boot key manager"; mainProgram = "sbctl"; homepage = "https://github.com/Foxboron/sbctl"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raitobezarius Scrumplex ]; # go-uefi do not support darwin at the moment: # see upstream on https://github.com/Foxboron/go-uefi/issues/13 - platforms = platforms.linux; + 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 fb73c7c0d625c..6f84761359dd6 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 rec { 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/sbs/package.nix b/pkgs/by-name/sb/sbs/package.nix index 55baf84c37491..ae34c53593693 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 0064476b70364..37cc16b4d5662 100644 --- a/pkgs/by-name/sb/sbsigntool/package.nix +++ b/pkgs/by-name/sb/sbsigntool/package.nix @@ -56,10 +56,10 @@ stdenv.mkDerivation rec { ./configure --prefix=$out ''; - 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 ]; @@ -67,6 +67,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/sc68/package.nix b/pkgs/by-name/sc/sc68/package.nix index 7a5f7e781ed14..5f6c272009e5e 100644 --- a/pkgs/by-name/sc/sc68/package.nix +++ b/pkgs/by-name/sc/sc68/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { 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-update/package.nix b/pkgs/by-name/sc/scala-update/package.nix index 451447617cb73..7d66793ec0d8a 100644 --- a/pkgs/by-name/sc/scala-update/package.nix +++ b/pkgs/by-name/sc/scala-update/package.nix @@ -47,10 +47,10 @@ buildGraalvmNativeImage { $out/bin/${baseName} --version | grep -q "${version}" ''; - meta = with lib; { + meta = { description = "Update your Scala dependencies interactively"; homepage = "https://github.com/kitlangton/scala-update"; - license = licenses.asl20; - maintainers = [ maintainers.rtimush ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.rtimush ]; }; } diff --git a/pkgs/by-name/sc/scalafmt/package.nix b/pkgs/by-name/sc/scalafmt/package.nix index 108b93e5cb62d..c96fbc789fee3 100644 --- a/pkgs/by-name/sc/scalafmt/package.nix +++ b/pkgs/by-name/sc/scalafmt/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation { $out/bin/${baseName} --version | grep -q "${version}" ''; - meta = with lib; { + meta = { description = "Opinionated code formatter for Scala"; homepage = "http://scalameta.org/scalafmt"; - license = licenses.asl20; - maintainers = [ maintainers.markus1189 ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.markus1189 ]; mainProgram = "scalafmt"; }; } diff --git a/pkgs/by-name/sc/scaleway-cli/package.nix b/pkgs/by-name/sc/scaleway-cli/package.nix index acf6a9fd26d34..1b2bcacac9613 100644 --- a/pkgs/by-name/sc/scaleway-cli/package.nix +++ b/pkgs/by-name/sc/scaleway-cli/package.nix @@ -56,11 +56,11 @@ buildGoModule rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Interact with Scaleway API from the command line"; homepage = "https://github.com/scaleway/scaleway-cli"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickhu techknowlogick kashw2 diff --git a/pkgs/by-name/sc/scalingo/package.nix b/pkgs/by-name/sc/scalingo/package.nix index 8300ad167c365..d2a02ae8ccbf0 100644 --- a/pkgs/by-name/sc/scalingo/package.nix +++ b/pkgs/by-name/sc/scalingo/package.nix @@ -25,13 +25,13 @@ buildGoModule rec { rm $out/bin/dists ''; - 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 7cbdd41caa4f6..4b2400011cb5a 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/scanmem/package.nix b/pkgs/by-name/sc/scanmem/package.nix index 42f665e2093a0..92581ee5144b6 100644 --- a/pkgs/by-name/sc/scanmem/package.nix +++ b/pkgs/by-name/sc/scanmem/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { runHook postFixup ''; - meta = with lib; { + meta = { homepage = "https://github.com/scanmem/scanmem"; description = "Memory scanner for finding and poking addresses in executing processes"; maintainers = [ ]; - platforms = platforms.linux; - license = licenses.gpl3; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/by-name/sc/scaphandre/package.nix b/pkgs/by-name/sc/scaphandre/package.nix index 31146c6697223..7a3586d9c19c2 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"; }; } diff --git a/pkgs/by-name/sc/scc/package.nix b/pkgs/by-name/sc/scc/package.nix index f3494d5bd31fd..5b411641d4480 100644 --- a/pkgs/by-name/sc/scc/package.nix +++ b/pkgs/by-name/sc/scc/package.nix @@ -19,14 +19,14 @@ 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 Br1ght0ne ]; - 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 d562af3fe8fcc..82ff9f3e229d1 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 = "scd2html generates HTML from scdoc source files"; homepage = "https://git.sr.ht/~bitfehler/scd2html"; - license = licenses.mit; - maintainers = with maintainers; [ ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.linux; mainProgram = "scd2html"; }; } diff --git a/pkgs/by-name/sc/schema2ldif/package.nix b/pkgs/by-name/sc/schema2ldif/package.nix index 3fe969008dca1..e93d12b9c1975 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/scheme-bytestructures/package.nix b/pkgs/by-name/sc/scheme-bytestructures/package.nix index 3ba94982174f9..6a205d1074b80 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 c4e9dfffe78c8..f95a06bb98191 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 rec { 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 72cdfe8fc9082..f08440f1bf5a9 100644 --- a/pkgs/by-name/sc/scheme48/package.nix +++ b/pkgs/by-name/sc/scheme48/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { ]; }; - 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 7b1b887a8c3aa..ef9ed41bf55f7 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/scid-vs-pc/package.nix b/pkgs/by-name/sc/scid-vs-pc/package.nix index e1cf8503ae681..7874ad44711a6 100644 --- a/pkgs/by-name/sc/scid-vs-pc/package.nix +++ b/pkgs/by-name/sc/scid-vs-pc/package.nix @@ -60,11 +60,11 @@ tcl.mkTclDerivation rec { ]; }; - meta = with lib; { + meta = { description = "Chess database with play and training functionality"; homepage = "https://scidvspc.sourceforge.net/"; license = lib.licenses.gpl2Only; - 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 fcd996cf36816..38b0a2d2d78d7 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/NerdyPepper/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 a382474d9ce4d..57228d00e3032 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/scion-bootstrapper/package.nix b/pkgs/by-name/sc/scion-bootstrapper/package.nix index 20e4817ac574e..aa9d442a323a6 100644 --- a/pkgs/by-name/sc/scion-bootstrapper/package.nix +++ b/pkgs/by-name/sc/scion-bootstrapper/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { mv $out/bin/bootstrapper $out/bin/scion-bootstrapper ''; - meta = with lib; { + meta = { description = "bootstrapper for SCION network configuration"; homepage = "https://github.com/netsec-ethz/bootstrapper"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ matthewcroughan sarcasticadmin ]; diff --git a/pkgs/by-name/sc/scitokens-cpp/package.nix b/pkgs/by-name/sc/scitokens-cpp/package.nix index c46f9758890bd..377c6cc3aa289 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 rec { sqlite ]; - meta = with lib; { + meta = { homepage = "https://github.com/scitokens/scitokens-cpp/"; description = "A 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 73f1a164128fe..ab8d39b7a3183 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 dabc7226af316..aa661877d4594 100644 --- a/pkgs/by-name/sc/scmpuff/package.nix +++ b/pkgs/by-name/sc/scmpuff/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { command = "scmpuff version"; }; - meta = with lib; { + meta = { description = "Add numbered shortcuts to common git commands"; homepage = "https://github.com/mroth/scmpuff"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; mainProgram = "scmpuff"; }; } diff --git a/pkgs/by-name/sc/scorched3d/package.nix b/pkgs/by-name/sc/scorched3d/package.nix index da9b404812ebb..31e900bf1c557 100644 --- a/pkgs/by-name/sc/scorched3d/package.nix +++ b/pkgs/by-name/sc/scorched3d/package.nix @@ -66,11 +66,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 - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; # maybe more + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/sc/scout/package.nix b/pkgs/by-name/sc/scout/package.nix index e0935322b2745..3d93bb09c9e4c 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 ad8cb9d4a65a2..df2434dfc50f0 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 2c63f34bec4a4..d17b2a8a60b3d 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 3eaff20baebee..a1dcf26bdf596 100644 --- a/pkgs/by-name/sc/screego/package.nix +++ b/pkgs/by-name/sc/screego/package.nix @@ -74,11 +74,11 @@ buildGo123Module 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 141eca8d82c7f..a93e4c8edb185 100644 --- a/pkgs/by-name/sc/screen-pipe/package.nix +++ b/pkgs/by-name/sc/screen-pipe/package.nix @@ -78,11 +78,11 @@ rustPlatform.buildRustPackage rec { doCheck = false; # Tests fail to build - meta = with lib; { + meta = { 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/screenfetch/package.nix b/pkgs/by-name/sc/screenfetch/package.nix index 12185ee31bd1e..8aaef982dcfb2 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 5a7a5698c1611..b6765b64af3ca 100644 --- a/pkgs/by-name/sc/screenkey/package.nix +++ b/pkgs/by-name/sc/screenkey/package.nix @@ -59,12 +59,12 @@ python3.pkgs.buildPythonApplication rec { --replace 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; - maintainers = [ maintainers.rasendubi ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.rasendubi ]; mainProgram = "screenkey"; }; } diff --git a/pkgs/by-name/sc/scriptaculous/package.nix b/pkgs/by-name/sc/scriptaculous/package.nix index dc2d4f0c811cb..2a295021f47df 100644 --- a/pkgs/by-name/sc/scriptaculous/package.nix +++ b/pkgs/by-name/sc/scriptaculous/package.nix @@ -22,7 +22,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 @@ -32,7 +32,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/scrot/package.nix b/pkgs/by-name/sc/scrot/package.nix index 8a8bebc041e2d..5eb79f3ea522d 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 25523e6d971da..fc8d88c5828f0 100644 --- a/pkgs/by-name/sc/scrounge-ntfs/package.nix +++ b/pkgs/by-name/sc/scrounge-ntfs/package.nix @@ -17,12 +17,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 b65e9bfb65b43..7f5223a316729 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 28ae3a4bdcf30..c885c0f150f99 100644 --- a/pkgs/by-name/sc/scryer-prolog/package.nix +++ b/pkgs/by-name/sc/scryer-prolog/package.nix @@ -31,12 +31,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 b4d46c2be725e..4007017ca5223 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 d6d9d1a2ca22f..c22d4ba8cf708 100644 --- a/pkgs/by-name/sc/scsh/package.nix +++ b/pkgs/by-name/sc/scsh/package.nix @@ -25,12 +25,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/sct/package.nix b/pkgs/by-name/sc/sct/package.nix index 38bd267341b8d..f5e4ab4132c6b 100644 --- a/pkgs/by-name/sc/sct/package.nix +++ b/pkgs/by-name/sc/sct/package.nix @@ -28,14 +28,14 @@ stdenv.mkDerivation rec { 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.publicDomain; - platforms = with platforms; linux ++ freebsd ++ openbsd; + license = lib.licenses.publicDomain; + platforms = with lib.platforms; linux ++ freebsd ++ openbsd; }; } diff --git a/pkgs/by-name/sc/scudcloud/package.nix b/pkgs/by-name/sc/scudcloud/package.nix index 36764bdb7ab4a..3121cc14b2ad3 100644 --- a/pkgs/by-name/sc/scudcloud/package.nix +++ b/pkgs/by-name/sc/scudcloud/package.nix @@ -21,11 +21,11 @@ python3Packages.buildPythonPackage rec { jsmin ]; - meta = with lib; { + meta = { description = "Non-official desktop client for Slack"; homepage = "https://github.com/raelgc/scudcloud"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ volhovm ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ volhovm ]; }; } diff --git a/pkgs/by-name/sd/SDL2_sound/package.nix b/pkgs/by-name/sd/SDL2_sound/package.nix index 9ec2ec4e3cff9..34988b1fb62a8 100644 --- a/pkgs/by-name/sd/SDL2_sound/package.nix +++ b/pkgs/by-name/sd/SDL2_sound/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { CoreAudio ]; - meta = with lib; { + meta = { description = "SDL2 sound library"; mainProgram = "playsound"; - platforms = platforms.unix; - license = licenses.zlib; + platforms = lib.platforms.unix; + license = lib.licenses.zlib; homepage = "https://www.icculus.org/SDL_sound/"; }; } diff --git a/pkgs/by-name/sd/sd-local/package.nix b/pkgs/by-name/sd/sd-local/package.nix index 374efe41885ad..71dd187fd5477 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 1458f5635c152..86408e05d4f79 100644 --- a/pkgs/by-name/sd/sd-mux-ctrl/package.nix +++ b/pkgs/by-name/sd/sd-mux-ctrl/package.nix @@ -36,15 +36,15 @@ stdenv.mkDerivation rec { --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 dea6aa1ed3ee3..1cac346518003 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 e1773891ed8dc..9f4781dfbbca0 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/sdl-jstest/package.nix b/pkgs/by-name/sd/sdl-jstest/package.nix index 2d2bd48387a3f..5ee90c5ba0092 100644 --- a/pkgs/by-name/sd/sdl-jstest/package.nix +++ b/pkgs/by-name/sd/sdl-jstest/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation { git ]; - meta = with lib; { + meta = { homepage = "https://github.com/Grumbel/sdl-jstest"; description = "Simple SDL joystick test application for the console"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/sd/sdlookup/package.nix b/pkgs/by-name/sd/sdlookup/package.nix index 9b41119a58126..f1297a2e8b6e4 100644 --- a/pkgs/by-name/sd/sdlookup/package.nix +++ b/pkgs/by-name/sd/sdlookup/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { 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 e6908ff96fad3..50b24c0cc4caf 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/se/seabird/package.nix b/pkgs/by-name/se/seabird/package.nix index 5c9ff436fe6cc..f520bb58e8b5d 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-server/libevhtp.nix b/pkgs/by-name/se/seafile-server/libevhtp.nix index 8eb1b3e22ff52..4089838c6d32e 100644 --- a/pkgs/by-name/se/seafile-server/libevhtp.nix +++ b/pkgs/by-name/se/seafile-server/libevhtp.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { "-DEVHTP_BUILD_SHARED=ON" ]; - meta = with lib; { + meta = { description = "Create extremely-fast and secure embedded HTTP servers with ease"; homepage = "https://github.com/criticalstack/libevhtp"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ greizgh schmittlauch melvyn2 diff --git a/pkgs/by-name/se/seafile-server/package.nix b/pkgs/by-name/se/seafile-server/package.nix index 0c030b9d8e272..93ac7e6a19f88 100644 --- a/pkgs/by-name/se/seafile-server/package.nix +++ b/pkgs/by-name/se/seafile-server/package.nix @@ -87,12 +87,12 @@ stdenv.mkDerivation { inherit (nixosTests) seafile; }; - meta = with lib; { + meta = { description = "File syncing and sharing software with file encryption and group sharing, emphasis on reliability and high performance"; homepage = "https://github.com/haiwen/seafile-server"; - license = licenses.agpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ greizgh schmittlauch melvyn2 diff --git a/pkgs/by-name/se/seafile-shared/package.nix b/pkgs/by-name/se/seafile-shared/package.nix index 4e9f5c40d3f32..72142b4ccbb88 100644 --- a/pkgs/by-name/se/seafile-shared/package.nix +++ b/pkgs/by-name/se/seafile-shared/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { homepage = "https://github.com/haiwen/seafile"; description = "Shared components of Seafile: seafile-daemon, libseafile, libseafile python bindings, manuals, and icons"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ greizgh schmittlauch ]; diff --git a/pkgs/by-name/se/seahorse/package.nix b/pkgs/by-name/se/seahorse/package.nix index 1abdef69c7345..8375a7e359403 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"; - maintainers = teams.gnome.members; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/se/seahub/package.nix b/pkgs/by-name/se/seahub/package.nix index b1df123cd8147..3ea66f6585f60 100644 --- a/pkgs/by-name/se/seahub/package.nix +++ b/pkgs/by-name/se/seahub/package.nix @@ -74,15 +74,15 @@ python3.pkgs.buildPythonApplication rec { inherit seafile-server; }; - meta = with lib; { + meta = { description = "Web end of seafile server"; homepage = "https://github.com/haiwen/seahub"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ greizgh schmittlauch melvyn2 ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/se/searxng/package.nix b/pkgs/by-name/se/searxng/package.nix index b77b4143a6a5d..926a8b8faf7a1 100644 --- a/pkgs/by-name/se/searxng/package.nix +++ b/pkgs/by-name/se/searxng/package.nix @@ -85,12 +85,12 @@ python3.pkgs.toPythonModule ( }; }; - 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 c190a458fbce9..9cc3bd1c2dd6f 100644 --- a/pkgs/by-name/se/seashells/package.nix +++ b/pkgs/by-name/se/seashells/package.nix @@ -17,7 +17,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"; @@ -25,7 +25,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 34bb25e5704e6..346341a57981a 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/seaweedfs/package.nix b/pkgs/by-name/se/seaweedfs/package.nix index 2c7b531854fbd..09ef6802bdcaa 100644 --- a/pkgs/by-name/se/seaweedfs/package.nix +++ b/pkgs/by-name/se/seaweedfs/package.nix @@ -52,15 +52,15 @@ buildGoModule rec { command = "weed version"; }; - meta = with lib; { + meta = { description = "Simple and highly scalable distributed file system"; homepage = "https://github.com/chrislusf/seaweedfs"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ azahi cmacrae wozeparrot ]; mainProgram = "weed"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/se/seclists/package.nix b/pkgs/by-name/se/seclists/package.nix index b38841e4418e5..60f97925373ad 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 5af8747119028..9f8b070b1e8da 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 b2c5ac868c242..186aea873ab1e 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/sedutil/package.nix b/pkgs/by-name/se/sedutil/package.nix index 5b731b9620692..0b3b10f0eda3e 100644 --- a/pkgs/by-name/se/sedutil/package.nix +++ b/pkgs/by-name/se/sedutil/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "DTA sedutil Self encrypting drive software"; homepage = "https://www.drivetrust.com"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/se/seehecht/package.nix b/pkgs/by-name/se/seehecht/package.nix index c40578d7f950e..f11ce9306949c 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 a26145cc5f1ff..1afaf09c43583 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/selfoss/package.nix b/pkgs/by-name/se/selfoss/package.nix index 11542c6ddfbc1..395825f3e20ff 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 3d15b6dd502ca..7a12447728c6b 100644 --- a/pkgs/by-name/se/selinux-python/package.nix +++ b/pkgs/by-name/se/selinux-python/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - 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 ]; - 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 62e5f2761fcbb..39224fc092b60 100644 --- a/pkgs/by-name/se/selinux-sandbox/package.nix +++ b/pkgs/by-name/se/selinux-sandbox/package.nix @@ -75,11 +75,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/semiphemeral/package.nix b/pkgs/by-name/se/semiphemeral/package.nix index 6dbacb7d50d69..75f3bc8105f65 100644 --- a/pkgs/by-name/se/semiphemeral/package.nix +++ b/pkgs/by-name/se/semiphemeral/package.nix @@ -25,11 +25,11 @@ python3.pkgs.buildPythonApplication rec { colorama ]; - meta = with lib; { + meta = { description = "Automatically delete your old tweets, except for the ones you want to keep"; homepage = "https://github.com/micahflee/semiphemeral"; - license = licenses.mit; - maintainers = with maintainers; [ amanjeev ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ amanjeev ]; mainProgram = "semiphemeral"; }; } diff --git a/pkgs/by-name/se/semodule-utils/package.nix b/pkgs/by-name/se/semodule-utils/package.nix index 9c9343ead745a..cf7a3ccbd81e1 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 6dc1e3b7097d8..e97f374a5f4dc 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 a73fea385575e..225736cacbf55 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 5ad4b74439bea..ad6ee832918d0 100644 --- a/pkgs/by-name/se/sendme/package.nix +++ b/pkgs/by-name/se/sendme/package.nix @@ -26,14 +26,14 @@ rustPlatform.buildRustPackage rec { ] ); - 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 8e9f0cb0ad401..972d34c247aa7 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 249c11cf7ad5e..dea4410df3aeb 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 ab46ecbc6e473..1c061378a1db4 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 67067dd955fec..0ec30144cb6ca 100644 --- a/pkgs/by-name/se/sentencepiece/package.nix +++ b/pkgs/by-name/se/sentencepiece/package.nix @@ -36,11 +36,11 @@ 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 ]; }; } diff --git a/pkgs/by-name/se/senv/package.nix b/pkgs/by-name/se/senv/package.nix index d7fd3e766918e..0c1368f3d055c 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 53f6c2acd53b2..aad2b998f147b 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 1b049a4bc7e06..47765676e34f6 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-EzEomz9GVcirx+Uk1Ygmmb1/GkdUS9aBStLxuNzjHAU="; - 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/seqtk/package.nix b/pkgs/by-name/se/seqtk/package.nix index 5e223163500b7..1b6f5a827a2fb 100644 --- a/pkgs/by-name/se/seqtk/package.nix +++ b/pkgs/by-name/se/seqtk/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { mkdir -p "$out/bin" ''; - meta = with lib; { + meta = { description = "Toolkit for processing sequences in FASTA/Q formats"; mainProgram = "seqtk"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/lh3/seqtk"; - platforms = platforms.all; - maintainers = with maintainers; [ bwlang ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ bwlang ]; }; } diff --git a/pkgs/by-name/se/sequoia-chameleon-gnupg/package.nix b/pkgs/by-name/se/sequoia-chameleon-gnupg/package.nix index 5a522c3dfd037..f01b1adae8610 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 cb821998d2e33..4f8722e6ba519 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 23033872d848e..cd4db9e9773f3 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/serfdom/package.nix b/pkgs/by-name/se/serfdom/package.nix index 1abb60f71748a..28c45162c7d8b 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,7 +39,7 @@ buildGoModule rec { that is lightweight, highly available, and fault tolerant. ''; homepage = "https://www.serf.io"; - license = licenses.mpl20; - maintainers = with maintainers; [ pradeepchhetri ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ pradeepchhetri ]; }; } diff --git a/pkgs/by-name/se/serialdv/package.nix b/pkgs/by-name/se/serialdv/package.nix index 655831830da17..a7350098b6e2c 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 8e8d367d73f00..9edfd494cd6e1 100644 --- a/pkgs/by-name/se/serie/package.nix +++ b/pkgs/by-name/se/serie/package.nix @@ -34,11 +34,11 @@ rustPlatform.buildRustPackage rec { passthru.tests.version = testers.testVersion { package = serie; }; - meta = with lib; { + meta = { description = "A 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 a121a4826d6ea..49ab61f32cf61 100644 --- a/pkgs/by-name/se/serpent/package.nix +++ b/pkgs/by-name/se/serpent/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { mv serpent $out/bin ''; - meta = with lib; { + meta = { description = "Compiler for the Serpent language for Ethereum"; mainProgram = "serpent"; longDescription = '' @@ -41,8 +41,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/service-wrapper/package.nix b/pkgs/by-name/se/service-wrapper/package.nix index 31e272b7edae2..8a32f54062168 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 122eb602072b7..28aee79715b88 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/setools/package.nix b/pkgs/by-name/se/setools/package.nix index 47cd6fcbcc19b..a9e29ff32bcf3 100644 --- a/pkgs/by-name/se/setools/package.nix +++ b/pkgs/by-name/se/setools/package.nix @@ -45,10 +45,10 @@ python3.pkgs.buildPythonApplication rec { export SEPOL="${lib.getLib libsepol}/lib/libsepol.a" ''; - meta = with lib; { + meta = { description = "SELinux Policy Analysis Tools"; homepage = "https://github.com/SELinuxProject/setools"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/se/setroot/package.nix b/pkgs/by-name/se/setroot/package.nix index 7bb722ffdb15f..5c103540f7633 100644 --- a/pkgs/by-name/se/setroot/package.nix +++ b/pkgs/by-name/se/setroot/package.nix @@ -39,12 +39,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; - maintainers = [ maintainers.vyp ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.vyp ]; + platforms = lib.platforms.unix; mainProgram = "setroot"; }; } diff --git a/pkgs/by-name/se/seturgent/package.nix b/pkgs/by-name/se/seturgent/package.nix index 1b3dbbc647bc2..bd335a5d64dce 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 821b23bf025c2..9c56ead9ebd17 100644 --- a/pkgs/by-name/se/seventeenlands/package.nix +++ b/pkgs/by-name/se/seventeenlands/package.nix @@ -23,11 +23,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 41b134e7d61a9..43f4933378870 100644 --- a/pkgs/by-name/se/sewer/package.nix +++ b/pkgs/by-name/se/sewer/package.nix @@ -19,10 +19,10 @@ python3Packages.buildPythonApplication rec { tldextract ]; - 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 608f044ceb5fd..995efd54f03ae 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/sf/sfizz/package.nix b/pkgs/by-name/sf/sfizz/package.nix index 39b35f4e664d4..c57c17d6ec7fd 100644 --- a/pkgs/by-name/sf/sfizz/package.nix +++ b/pkgs/by-name/sf/sfizz/package.nix @@ -76,12 +76,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/sfztools/sfizz"; description = "SFZ jack client and LV2 plugin"; - license = licenses.bsd2; - maintainers = [ maintainers.magnetophon ]; - platforms = platforms.all; - badPlatforms = platforms.darwin; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.all; + badPlatforms = lib.platforms.darwin; }; } diff --git a/pkgs/by-name/sf/sfm/package.nix b/pkgs/by-name/sf/sfm/package.nix index 55ba36cf83aba..738d70db87ed3 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 c7e9cde3ad1ea..b0cdc4eaa7c9c 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 c0274be1de797..69b9c653c75a7 100644 --- a/pkgs/by-name/sf/sftpman/package.nix +++ b/pkgs/by-name/sf/sftpman/package.nix @@ -19,12 +19,12 @@ python3Packages.buildPythonApplication rec { $out/bin/sftpman help ''; - meta = with lib; { + meta = { homepage = "https://github.com/spantaleev/sftpman"; description = "Application that handles sshfs/sftp file systems mounting"; - license = licenses.gpl3; - platforms = platforms.unix; - maintainers = with maintainers; [ contrun ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ contrun ]; mainProgram = "sftpman"; }; } diff --git a/pkgs/by-name/sf/sfxr/package.nix b/pkgs/by-name/sf/sfxr/package.nix index 5f2fe5e75d87e..9fdf777c81653 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 c50f9985dbb2f..e0fe8dfc8881d 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 a5951ab87eafd..deb2d0c029d5f 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 106dfb788e825..2658be5957fd9 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 be069dead65bb..7010591f52715 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/sg/sgrep/package.nix b/pkgs/by-name/sg/sgrep/package.nix index 4c93b1b6954e2..f096845a9f6f7 100644 --- a/pkgs/by-name/sg/sgrep/package.nix +++ b/pkgs/by-name/sg/sgrep/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { [[ $result = 1 ]] ''; - meta = with lib; { + meta = { homepage = "https://www.cs.helsinki.fi/u/jjaakkol/sgrep.html"; description = "Grep for structured text formats such as XML"; mainProgram = "sgrep"; @@ -41,8 +41,8 @@ stdenv.mkDerivation rec { SGML, XML and HTML files and filtering text streams using structural criteria. ''; - platforms = platforms.unix; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ eigengrau ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ eigengrau ]; }; } diff --git a/pkgs/by-name/sh/sha1collisiondetection/package.nix b/pkgs/by-name/sh/sha1collisiondetection/package.nix index 4f65e3034f161..113b6ce3cd7f6 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; - maintainers = with maintainers; [ leenaars ]; - license = licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ leenaars ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/sh/sha2wordlist/package.nix b/pkgs/by-name/sh/sha2wordlist/package.nix index e84c045284e6a..f82e70c0646ef 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/shab/package.nix b/pkgs/by-name/sh/shab/package.nix index ee4fca701e4b4..c793df638327e 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 8676e7310ffa5..2e85acf12fbe9 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/shadered/package.nix b/pkgs/by-name/sh/shadered/package.nix index ff9d322b98548..8d3faf7a957e8 100644 --- a/pkgs/by-name/sh/shadered/package.nix +++ b/pkgs/by-name/sh/shadered/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-Wno-error=format-security"; - meta = with lib; { + meta = { description = "Lightweight, cross-platform & full-featured shader IDE"; homepage = "https://github.com/dfranx/SHADERed"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ Scriptkiddi ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ Scriptkiddi ]; broken = true; }; } diff --git a/pkgs/by-name/sh/shadershark/package.nix b/pkgs/by-name/sh/shadershark/package.nix index a9fc8bb1384db..76967ac90cafd 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 6a4f1bad37a11..2735f0dc10799 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 b0219c46f26b8..7b1595c7bb9ef 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/shadowfox/package.nix b/pkgs/by-name/sh/shadowfox/package.nix index 3fb2b145bff52..201f7536d7971 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/shadowsocks-libev/package.nix b/pkgs/by-name/sh/shadowsocks-libev/package.nix index 9b75597b95b06..69e50ba383052 100644 --- a/pkgs/by-name/sh/shadowsocks-libev/package.nix +++ b/pkgs/by-name/sh/shadowsocks-libev/package.nix @@ -75,15 +75,15 @@ stdenv.mkDerivation rec { cp lib/* $out/lib ''; - meta = with lib; { + meta = { description = "Lightweight secured SOCKS5 proxy"; longDescription = '' Shadowsocks-libev is a lightweight secured SOCKS5 proxy for embedded devices and low-end boxes. It is a port of Shadowsocks created by @clowwindy, which is maintained by @madeye and @linusyang. ''; homepage = "https://github.com/shadowsocks/shadowsocks-libev"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sh/shadowsocks-v2ray-plugin/package.nix b/pkgs/by-name/sh/shadowsocks-v2ray-plugin/package.nix index b1192385c714a..30e28007f72a1 100644 --- a/pkgs/by-name/sh/shadowsocks-v2ray-plugin/package.nix +++ b/pkgs/by-name/sh/shadowsocks-v2ray-plugin/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { vendorHash = "sha256-3/1te41U4QQTMeoA1y43QMfJyiM5JhaLE0ORO8ZO7W8="; - meta = with lib; { + meta = { description = "Yet another SIP003 plugin for shadowsocks, based on v2ray"; homepage = "https://github.com/shadowsocks/v2ray-plugin/"; - license = licenses.mit; - maintainers = [ maintainers.ahrzb ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ahrzb ]; mainProgram = "v2ray-plugin"; }; } diff --git a/pkgs/by-name/sh/shanggu-fonts/package.nix b/pkgs/by-name/sh/shanggu-fonts/package.nix index 8de63b3266e97..b948748483aab 100644 --- a/pkgs/by-name/sh/shanggu-fonts/package.nix +++ b/pkgs/by-name/sh/shanggu-fonts/package.nix @@ -63,11 +63,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/shared-mime-info/package.nix b/pkgs/by-name/sh/shared-mime-info/package.nix index fe45a0287b987..ab97b93923e0c 100644 --- a/pkgs/by-name/sh/shared-mime-info/package.nix +++ b/pkgs/by-name/sh/shared-mime-info/package.nix @@ -47,12 +47,12 @@ 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 = teams.freedesktop.members ++ [ maintainers.mimame ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.freedesktop.members ++ [ lib.maintainers.mimame ]; mainProgram = "update-mime-database"; }; } diff --git a/pkgs/by-name/sh/shared_desktop_ontologies/package.nix b/pkgs/by-name/sh/shared_desktop_ontologies/package.nix index f5aea74954704..07a45453b4a94 100644 --- a/pkgs/by-name/sh/shared_desktop_ontologies/package.nix +++ b/pkgs/by-name/sh/shared_desktop_ontologies/package.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://oscaf.sourceforge.net/"; description = "Ontologies necessary for the Nepomuk semantic desktop"; longDescription = '' @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { ontologies such as RDF and RDFS as well as the Nepomuk ontologies which are used by projects like KDE or Strigi. ''; - platforms = platforms.all; - maintainers = [ maintainers.sander ]; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.sander ]; }; } diff --git a/pkgs/by-name/sh/sharing/package.nix b/pkgs/by-name/sh/sharing/package.nix index 9292ebf5c8942..9ef50b2990151 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 df23130742fc2..52cfab5e28f38 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/shc/package.nix b/pkgs/by-name/sh/shc/package.nix index a56a282f716fc..bc2c656e4911a 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/shell-genie/package.nix b/pkgs/by-name/sh/shell-genie/package.nix index bc02cbabbf531..ffec70d754f8e 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/shell-hist/package.nix b/pkgs/by-name/sh/shell-hist/package.nix index f906d7a9b8100..a431da16bd0f4 100644 --- a/pkgs/by-name/sh/shell-hist/package.nix +++ b/pkgs/by-name/sh/shell-hist/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-V/smviEa7b+2vyY2dn9MpbITnXw0HpOtPF/RPYB2TKw="; - meta = with lib; { + meta = { description = "Inspect your shell history"; homepage = "https://github.com/jamesmunns/shell-hist"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; - maintainers = [ maintainers.spacekookie ]; + maintainers = [ lib.maintainers.spacekookie ]; mainProgram = "shell-hist"; }; } diff --git a/pkgs/by-name/sh/shellharden/package.nix b/pkgs/by-name/sh/shellharden/package.nix index 7d385ad357b40..cad52c7af0a15 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 5ac4dac1fc480..c34bf5e232ede 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 c50570333c91e..df62310d07448 100644 --- a/pkgs/by-name/sh/shellnoob/package.nix +++ b/pkgs/by-name/sh/shellnoob/package.nix @@ -28,11 +28,11 @@ stdenvNoCC.mkDerivation rec { 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 b1a263c3fddc2..0ae367e83b3da 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/sherpa/package.nix b/pkgs/by-name/sh/sherpa/package.nix index 883ae291fb14d..cfcecf26df9e3 100644 --- a/pkgs/by-name/sh/sherpa/package.nix +++ b/pkgs/by-name/sh/sherpa/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { "--enable-pythia" ]; - meta = with lib; { + meta = { description = "Simulation of High-Energy Reactions of PArticles in lepton-lepton, lepton-photon, photon-photon, lepton-hadron and hadron-hadron collisions"; - license = licenses.gpl2; + license = lib.licenses.gpl2; homepage = "https://gitlab.com/sherpa-team/sherpa"; - platforms = platforms.unix; - maintainers = with maintainers; [ veprbl ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ veprbl ]; # never built on aarch64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; }; diff --git a/pkgs/by-name/sh/shfm/package.nix b/pkgs/by-name/sh/shfm/package.nix index 0bd635d4b84a2..c7e3413df7b92 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ AndersonTorres ]; + 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 8235c088300be..cb4c4fbf449ef 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 a58723db25f9b..89e598aee9169 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 0b36bfc8cd8cd..4cdf2e4c9dd0d 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 4a300718c737b..2edeaef997107 100644 --- a/pkgs/by-name/sh/shibboleth-sp/package.nix +++ b/pkgs/by-name/sh/shibboleth-sp/package.nix @@ -58,11 +58,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 c9c2116b0999c..47627ef606b18 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 c9107390d5756..903fd51e4edfc 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 606db18f04c3f..61f91932823e0 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 99590098f8283..1139500ac08c1 100644 --- a/pkgs/by-name/sh/shisho/package.nix +++ b/pkgs/by-name/sh/shisho/package.nix @@ -43,7 +43,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"; @@ -56,7 +56,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 3f57bed763cf5..ab1e66873696d 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 787371f121124..bbbfc8c7fa41d 100644 --- a/pkgs/by-name/sh/shncpd/package.nix +++ b/pkgs/by-name/sh/shncpd/package.nix @@ -21,12 +21,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 63ce139be6008..c2579ab20d222 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 9bdd79ea15552..96d2877e8995e 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; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ azahi ]; + 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 cbe076825c217..fa96e89189e08 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/shotgun/package.nix b/pkgs/by-name/sh/shotgun/package.nix index 3d30c48578590..e35b7176047be 100644 --- a/pkgs/by-name/sh/shotgun/package.nix +++ b/pkgs/by-name/sh/shotgun/package.nix @@ -17,15 +17,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-P6riJgnEe+bNP3cUKNCfIkgKM44XGYSDADnU6w7CFDA="; - 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; [ figsoda 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 6b4a07da910fb..62aa90b7d3b7b 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 272e607725a74..bbd8120160248 100644 --- a/pkgs/by-name/sh/shotwell/package.nix +++ b/pkgs/by-name/sh/shotwell/package.nix @@ -94,12 +94,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 3fc5da619ee81..fd5827533fc18 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/shrikhand/package.nix b/pkgs/by-name/sh/shrikhand/package.nix index 585f7303bc8ce..1e99ebad76ff1 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 426b4e93cf378..786e7fc1bff81 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 1b9e10619e449..34a5e6fd84fd4 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 671bcb5f17a34..63cb3ed46efa5 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 3ba076eeccea6..4f31bae2b559e 100644 --- a/pkgs/by-name/sh/shutter/package.nix +++ b/pkgs/by-name/sh/shutter/package.nix @@ -101,12 +101,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/sienna/package.nix b/pkgs/by-name/si/sienna/package.nix index e1a5a39f12ff2..d336427039cb6 100644 --- a/pkgs/by-name/si/sienna/package.nix +++ b/pkgs/by-name/si/sienna/package.nix @@ -52,13 +52,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Fast-paced one button platformer"; mainProgram = "sienna"; homepage = "https://tangramgames.dk/games/sienna"; - maintainers = with maintainers; [ leenaars ]; - platforms = platforms.linux; - license = licenses.free; + maintainers = with lib.maintainers; [ leenaars ]; + platforms = lib.platforms.linux; + license = lib.licenses.free; }; } diff --git a/pkgs/by-name/si/sieve-connect/package.nix b/pkgs/by-name/si/sieve-connect/package.nix index 8a576bd7be3f5..ca4e11bd13f8c 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 0fe1069b70205..4cef60276af51 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 594edec88205a..f4a5cbaca13cf 100644 --- a/pkgs/by-name/si/sigal/package.nix +++ b/pkgs/by-name/si/sigal/package.nix @@ -52,12 +52,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; [ domenkozar matthiasbeyer ]; diff --git a/pkgs/by-name/si/sigi/package.nix b/pkgs/by-name/si/sigi/package.nix index ba92c47224c63..eb990844b5ac3 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/signaldctl/package.nix b/pkgs/by-name/si/signaldctl/package.nix index 59e1984f4d717..3111acd235e80 100644 --- a/pkgs/by-name/si/signaldctl/package.nix +++ b/pkgs/by-name/si/signaldctl/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Golang library for communicating with signald"; mainProgram = "signaldctl"; homepage = "https://signald.org/signaldctl/"; - license = licenses.gpl3; - maintainers = with maintainers; [ colinsane ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ colinsane ]; }; } diff --git a/pkgs/by-name/si/signify/package.nix b/pkgs/by-name/si/signify/package.nix index 33b188a92261b..fb1f8f6cc99f0 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/signwriting/package.nix b/pkgs/by-name/si/signwriting/package.nix index 46a92e0454098..8be44d199ce17 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/sigslot/package.nix b/pkgs/by-name/si/sigslot/package.nix index 244d56e91cc0b..e543c8061fafa 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 0935e9900b364..298b3d7639e1b 100644 --- a/pkgs/by-name/si/sigtop/package.nix +++ b/pkgs/by-name/si/sigtop/package.nix @@ -21,11 +21,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 a0ebb704137ea..ac60c408e659c 100644 --- a/pkgs/by-name/si/sigutils/package.nix +++ b/pkgs/by-name/si/sigutils/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { 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 9fea0e378f9cf..ef83aec266756 100644 --- a/pkgs/by-name/si/siji/package.nix +++ b/pkgs/by-name/si/siji/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { "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 2b0a24c0bbdf4..f8085dc0de1f3 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 4f323d7544aaf..3a46d3456d3ce 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 71a4398560684..d77733d52b912 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 1df9d25c8c37f..5646207404b1b 100644 --- a/pkgs/by-name/si/silenthound/package.nix +++ b/pkgs/by-name/si/silenthound/package.nix @@ -34,11 +34,11 @@ python3.pkgs.buildPythonApplication rec { # 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 31920757f9525..cbf16646c6a0a 100644 --- a/pkgs/by-name/si/silicon/package.nix +++ b/pkgs/by-name/si/silicon/package.nix @@ -63,14 +63,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-searcher/package.nix b/pkgs/by-name/si/silver-searcher/package.nix index 2c225bdd585fb..3545925c23625 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/simdjson/package.nix b/pkgs/by-name/si/simdjson/package.nix index 6025070694c3f..832e9dd9ab59b 100644 --- a/pkgs/by-name/si/simdjson/package.nix +++ b/pkgs/by-name/si/simdjson/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { "-DCMAKE_CXX_FLAGS=-mpower8-vector" ]; - meta = with lib; { + meta = { homepage = "https://simdjson.org/"; description = "Parsing gigabytes of JSON per second"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ chessai ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ chessai ]; }; } diff --git a/pkgs/by-name/si/simdutf/package.nix b/pkgs/by-name/si/simdutf/package.nix index d15bd3ffebd5e..e0c5785b5e4d7 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; [ rewine ]; + maintainers = with lib.maintainers; [ rewine ]; 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 a3bc4d4bdbc63..3c055996c2697 100644 --- a/pkgs/by-name/si/simg2img/package.nix +++ b/pkgs/by-name/si/simg2img/package.nix @@ -35,12 +35,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 232f5b31eeda4..4e3362db5d24a 100644 --- a/pkgs/by-name/si/simgear/package.nix +++ b/pkgs/by-name/si/simgear/package.nix @@ -65,11 +65,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 7f019e0c2450a..4438e0cd104cc 100644 --- a/pkgs/by-name/si/simgrid/package.nix +++ b/pkgs/by-name/si/simgrid/package.nix @@ -132,7 +132,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 @@ -143,12 +143,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 7b0b349cd254c..4226cd51f0d18 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = with platforms; unix; + license = with lib.licenses; mit; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = with lib.platforms; unix; }; } # TODO: install documentation diff --git a/pkgs/by-name/si/simp1e-cursors/package.nix b/pkgs/by-name/si/simp1e-cursors/package.nix index 394f362cd5628..eb8dca40d5e02 100644 --- a/pkgs/by-name/si/simp1e-cursors/package.nix +++ b/pkgs/by-name/si/simp1e-cursors/package.nix @@ -39,11 +39,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Aesthetic cursor theme for Linux desktops"; homepage = "https://gitlab.com/cursors/simp1e"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ natto1784 ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ natto1784 ]; }; } diff --git a/pkgs/by-name/si/simp_le/package.nix b/pkgs/by-name/si/simp_le/package.nix index 9b6cd8fe5c9ca..a3e929568ea60 100644 --- a/pkgs/by-name/si/simp_le/package.nix +++ b/pkgs/by-name/si/simp_le/package.nix @@ -41,14 +41,14 @@ python3Packages.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; [ gebner 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 77cc2f2611b68..86be94cad4da0 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 ab5b5f74b072b..97ad1fe35b7d1 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 97dfd36492e08..6ef75de21b896 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 e963955a255f9..007a3864d0b06 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 190257b16e926..8ab9f14a5ba28 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/simplenes/package.nix b/pkgs/by-name/si/simplenes/package.nix index 9745808d35211..495b51c92e75c 100644 --- a/pkgs/by-name/si/simplenes/package.nix +++ b/pkgs/by-name/si/simplenes/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { cp ./SimpleNES $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/amhndu/SimpleNES"; description = "NES emulator written in C++"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "SimpleNES"; }; } diff --git a/pkgs/by-name/si/simpleproxy/package.nix b/pkgs/by-name/si/simpleproxy/package.nix index 54dbcb2bec673..5334494e8b39d 100644 --- a/pkgs/by-name/si/simpleproxy/package.nix +++ b/pkgs/by-name/si/simpleproxy/package.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { sha256 = "1my9g4vp19dikx3fsbii4ichid1bs9b9in46bkg05gbljhj340f6"; }; - 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/simplotask/package.nix b/pkgs/by-name/si/simplotask/package.nix index 9c7e426b5d8b2..f425e8640a72c 100644 --- a/pkgs/by-name/si/simplotask/package.nix +++ b/pkgs/by-name/si/simplotask/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { installManPage *.1 ''; - meta = with lib; { + meta = { description = "Tool for effortless deployment and configuration management"; homepage = "https://spot.umputun.dev/"; - maintainers = with maintainers; [ sikmir ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; + license = lib.licenses.mit; mainProgram = "spot"; }; } diff --git a/pkgs/by-name/si/sing-geosite/package.nix b/pkgs/by-name/si/sing-geosite/package.nix index f8be5c3357c1c..80efa47f84e06 100644 --- a/pkgs/by-name/si/sing-geosite/package.nix +++ b/pkgs/by-name/si/sing-geosite/package.nix @@ -42,10 +42,10 @@ buildGoModule { runHook postInstall ''; - meta = with lib; { + meta = { description = "community managed domain list"; homepage = "https://github.com/SagerNet/sing-geosite"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ linsui ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ linsui ]; }; } diff --git a/pkgs/by-name/si/sink-rotate/package.nix b/pkgs/by-name/si/sink-rotate/package.nix index 058289484f855..41434d89d63ba 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/sioclient/package.nix b/pkgs/by-name/si/sioclient/package.nix index fcf5a02ef7b38..aba41ab7613b6 100644 --- a/pkgs/by-name/si/sioclient/package.nix +++ b/pkgs/by-name/si/sioclient/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation { websocketpp ]; - meta = with lib; { + meta = { description = "C++11 implementation of Socket.IO client"; homepage = "https://github.com/socketio/socket.io-client-cpp"; - 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/si/sipcalc/package.nix b/pkgs/by-name/si/sipcalc/package.nix index 3c17aabd32d8e..17ea8f37cc894 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/sipp/package.nix b/pkgs/by-name/si/sipp/package.nix index 7ad501f87bdbe..050a2a588f336 100644 --- a/pkgs/by-name/si/sipp/package.nix +++ b/pkgs/by-name/si/sipp/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { openssl ] ++ lib.optional (stdenv.hostPlatform.isLinux) lksctp-tools; - meta = with lib; { + meta = { homepage = "http://sipp.sf.net"; description = "SIPp testing tool"; mainProgram = "sipp"; - license = licenses.gpl3; - platforms = platforms.unix; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/si/sipsak/package.nix b/pkgs/by-name/si/sipsak/package.nix index 9302326748fc8..575ddd63fe173 100644 --- a/pkgs/by-name/si/sipsak/package.nix +++ b/pkgs/by-name/si/sipsak/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { hash = "sha256-y9P6t3xjazRNT6lDZAx+CttdyXruC6Q14b8XF9loeU4="; }; - meta = with lib; { + meta = { homepage = "https://github.com/sipwise/sipsak"; description = "SIP Swiss army knife"; license = lib.licenses.gpl2Plus; - maintainers = with maintainers; [ sheenobu ]; - platforms = with platforms; unix; + maintainers = with lib.maintainers; [ sheenobu ]; + platforms = with lib.platforms; unix; mainProgram = "sipsak"; }; diff --git a/pkgs/by-name/si/siril/package.nix b/pkgs/by-name/si/siril/package.nix index 7e4e3e11fca2d..c211fe0b2a8f6 100644 --- a/pkgs/by-name/si/siril/package.nix +++ b/pkgs/by-name/si/siril/package.nix @@ -86,12 +86,12 @@ stdenv.mkDerivation rec { cd nixbld ''; - meta = with lib; { + meta = { homepage = "https://www.siril.org/"; description = "Astrophotographic image processing tool"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; changelog = "https://gitlab.com/free-astro/siril/-/blob/HEAD/ChangeLog"; - maintainers = with maintainers; [ hjones2199 ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ hjones2199 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/si/sirius/package.nix b/pkgs/by-name/si/sirius/package.nix index 9d1b48d4171cc..f52b17f064c51 100644 --- a/pkgs/by-name/si/sirius/package.nix +++ b/pkgs/by-name/si/sirius/package.nix @@ -164,11 +164,11 @@ stdenv.mkDerivation rec { mpiCheckPhaseHook ]; - 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 921850dfe86d7..5346ba0cba770 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 5e773b75e9e90..b8c3a61d8a96b 100644 --- a/pkgs/by-name/si/sitelen-seli-kiwen/package.nix +++ b/pkgs/by-name/si/sitelen-seli-kiwen/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - 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/si/sitespeed-io/package.nix b/pkgs/by-name/si/sitespeed-io/package.nix index 886fe060694dd..ca3d19f182450 100644 --- a/pkgs/by-name/si/sitespeed-io/package.nix +++ b/pkgs/by-name/si/sitespeed-io/package.nix @@ -94,11 +94,11 @@ buildNpmPackage rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Open source tool that helps you monitor, analyze and optimize your website speed and performance"; homepage = "https://sitespeed.io"; - license = licenses.mit; - maintainers = with maintainers; [ misterio77 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ misterio77 ]; platforms = lib.unique (geckodriver.meta.platforms ++ chromedriver.meta.platforms); mainProgram = "sitespeed-io"; }; diff --git a/pkgs/by-name/sj/sjasmplus/package.nix b/pkgs/by-name/sj/sjasmplus/package.nix index 51ef3793cc03f..d478f84d4ec1e 100644 --- a/pkgs/by-name/sj/sjasmplus/package.nix +++ b/pkgs/by-name/sj/sjasmplus/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://z00m128.github.io/sjasmplus/"; description = "Z80 assembly language cross compiler. It is based on the SjASM source code by Sjoerd Mastijn"; mainProgram = "sjasmplus"; - license = licenses.bsd3; - platforms = platforms.all; - maintainers = with maintainers; [ electrified ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ electrified ]; }; } diff --git a/pkgs/by-name/sk/skeu/package.nix b/pkgs/by-name/sk/skeu/package.nix index 6790521ca9717..1c4616be2a462 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/skippy-xd/package.nix b/pkgs/by-name/sk/skippy-xd/package.nix index 782dbd1ec0e61..2997c609f121e 100644 --- a/pkgs/by-name/sk/skippy-xd/package.nix +++ b/pkgs/by-name/sk/skippy-xd/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { preInstall = '' sed -e "s@/etc/xdg@$out&@" -i Makefile ''; - meta = with lib; { + meta = { description = "Expose-style compositing-based standalone window switcher"; homepage = "https://github.com/felixfung/skippy-xd"; - 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/by-name/sk/skypeexport/package.nix b/pkgs/by-name/sk/skypeexport/package.nix index 430d45c731c6c..c3df5974a3620 100644 --- a/pkgs/by-name/sk/skypeexport/package.nix +++ b/pkgs/by-name/sk/skypeexport/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation (finalAttrs: { preConfigure = "cd src/SkypeExport/_gccbuild/linux"; installPhase = "install -Dt $out/bin SkypeExport"; - meta = with lib; { + meta = { description = "Export Skype history to HTML"; mainProgram = "SkypeExport"; homepage = "https://github.com/Temptin/SkypeExport"; - license = licenses.gpl2; - platforms = platforms.unix; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/sk/skytemple/package.nix b/pkgs/by-name/sk/skytemple/package.nix index 918275e1e341c..f127c5f61af6f 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 a4b14dab2db37..26ca88312452f 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/slack-term/package.nix b/pkgs/by-name/sl/slack-term/package.nix index 8d2e09808bea7..9459e59d511d7 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/sleek/package.nix b/pkgs/by-name/sl/sleek/package.nix index d7d959ec1b7da..46b230483bb4b 100644 --- a/pkgs/by-name/sl/sleek/package.nix +++ b/pkgs/by-name/sl/sleek/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { cargoLock.lockFile = ./Cargo.lock; - 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 b9f655d04633c..cf631d94365cb 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/slic3r/package.nix b/pkgs/by-name/sl/slic3r/package.nix index 1790d103d986a..cf62a54e2b2e6 100644 --- a/pkgs/by-name/sl/slic3r/package.nix +++ b/pkgs/by-name/sl/slic3r/package.nix @@ -120,7 +120,7 @@ stdenv.mkDerivation rec { cp "$desktopItem"/share/applications/* "$out/share/applications/" ''; - meta = with lib; { + meta = { description = "G-code generator for 3D printers"; mainProgram = "slic3r"; longDescription = '' @@ -129,8 +129,8 @@ stdenv.mkDerivation rec { slices (layers), generates toolpaths to fill them and calculates the amount of material to be extruded.''; homepage = "https://slic3r.org/"; - license = licenses.agpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ bjornfor ]; + license = lib.licenses.agpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ bjornfor ]; }; } diff --git a/pkgs/by-name/sl/slop/package.nix b/pkgs/by-name/sl/slop/package.nix index 3233dfe822bf1..07112ec1fc3c2 100644 --- a/pkgs/by-name/sl/slop/package.nix +++ b/pkgs/by-name/sl/slop/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { libSM ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Queries a selection from the user and prints to stdout"; platforms = lib.platforms.linux; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; mainProgram = "slop"; }; diff --git a/pkgs/by-name/sl/slowhttptest/package.nix b/pkgs/by-name/sl/slowhttptest/package.nix index 1bb1d18a96788..c54fa3e508e6d 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/slrn/package.nix b/pkgs/by-name/sl/slrn/package.nix index 78de45eb99049..4353006535d44 100644 --- a/pkgs/by-name/sl/slrn/package.nix +++ b/pkgs/by-name/sl/slrn/package.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { openssl ]; - meta = with lib; { + meta = { description = "Slrn (S-Lang read news) newsreader"; homepage = "https://slrn.sourceforge.net/index.html"; - license = licenses.gpl2; - platforms = with platforms; linux; + license = lib.licenses.gpl2; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/sl/slurm-nm/package.nix b/pkgs/by-name/sl/slurm-nm/package.nix index cee4e5ee8f75b..b6948e814588a 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; + license = lib.licenses.gpl2Plus; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ mikaelfangel ]; + 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 0dc9c42d4b8c0..21c8d77b67eaf 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 072328288f4a4..78d8a4304ab0d 100644 --- a/pkgs/by-name/sl/slurm-spank-x11/package.nix +++ b/pkgs/by-name/sl/slurm-spank-x11/package.nix @@ -30,12 +30,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 957fb3043ed6c..78b28e685a3eb 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 a65b19f456704..ca2bbf6f1a610 100644 --- a/pkgs/by-name/sm/smartcrop/package.nix +++ b/pkgs/by-name/sm/smartcrop/package.nix @@ -22,11 +22,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Find good image crops for arbitrary crop sizes"; homepage = "https://github.com/muesli/smartcrop"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "smartcrop"; }; } diff --git a/pkgs/by-name/sm/smartdns/package.nix b/pkgs/by-name/sm/smartdns/package.nix index c7b0f7ecd6306..c75e544d01ef9 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 = "A 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/smartgithg/package.nix b/pkgs/by-name/sm/smartgithg/package.nix index df3322024973d..dfe1989c56823 100644 --- a/pkgs/by-name/sm/smartgithg/package.nix +++ b/pkgs/by-name/sm/smartgithg/package.nix @@ -100,12 +100,12 @@ stdenv.mkDerivation rec { keywords = [ "git" ]; }; - meta = with lib; { + meta = { description = "GUI for Git, Mercurial, Subversion"; homepage = "https://www.syntevo.com/smartgit/"; changelog = "https://www.syntevo.com/smartgit/changelog.txt"; - license = licenses.unfree; - platforms = platforms.linux; + license = lib.licenses.unfree; + platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ jraygauthier ]; }; } diff --git a/pkgs/by-name/sm/smarty3-i18n/package.nix b/pkgs/by-name/sm/smarty3-i18n/package.nix index cd7e2ac511c84..e010955f65d64 100644 --- a/pkgs/by-name/sm/smarty3-i18n/package.nix +++ b/pkgs/by-name/sm/smarty3-i18n/package.nix @@ -21,11 +21,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 1e0b41001e6cf..92472655fb603 100644 --- a/pkgs/by-name/sm/smarty3/package.nix +++ b/pkgs/by-name/sm/smarty3/package.nix @@ -21,7 +21,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 @@ -30,7 +30,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 89b42204c16fc..9c9629000df33 100644 --- a/pkgs/by-name/sm/smassh/package.nix +++ b/pkgs/by-name/sm/smassh/package.nix @@ -44,12 +44,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 f1f40f0f5439e..321a93600796a 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 0171ab87d7548..43ce0fe0011cd 100644 --- a/pkgs/by-name/sm/smbscan/package.nix +++ b/pkgs/by-name/sm/smbscan/package.nix @@ -33,11 +33,11 @@ python3.pkgs.buildPythonApplication rec { 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 17a0d5685b7ed..d959b9740b553 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/smcroute/package.nix b/pkgs/by-name/sm/smcroute/package.nix index 8b1dd8420ca1e..379b6dd69cb61 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 a267d9905aac9..941cfb25fefa9 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 8a76da58bd4b0..99ea0f6cf2bcd 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 2b7d6ffc38122..e792dd2d2ef8a 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/smlfut/package.nix b/pkgs/by-name/sm/smlfut/package.nix index 21938595b3015..d60a009b1ddfe 100644 --- a/pkgs/by-name/sm/smlfut/package.nix +++ b/pkgs/by-name/sm/smlfut/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { 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 6a77c6878e7b1..501695466bb72 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 4fdeb5a47b242..e004729556c75 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 = "Smooth Class Library"; 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 925b59f3a44ae..778b7776e8f52 100644 --- a/pkgs/by-name/sm/smpeg2/package.nix +++ b/pkgs/by-name/sm/smpeg2/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://icculus.org/smpeg/"; description = "SDL2 MPEG Player Library"; - license = licenses.lgpl2; - platforms = platforms.unix; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.lgpl2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/sm/smu/package.nix b/pkgs/by-name/sm/smu/package.nix index dbbd80702aa09..1dee66625e471 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 c7745d1a5ceea..419fa762302f1 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 = "Smug - 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 05c3423f71106..546b988bfee09 100644 --- a/pkgs/by-name/sm/smuview/package.nix +++ b/pkgs/by-name/sm/smuview/package.nix @@ -51,13 +51,13 @@ stdenv.mkDerivation rec { libsForQt5.qwt ] ++ lib.optionals stdenv.hostPlatform.isLinux [ bluez ]; - 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 be2b251a97f34..f699ddd9a6bb0 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; - maintainers = with maintainers; [ ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sn/snabb/package.nix b/pkgs/by-name/sn/snabb/package.nix index 2adae8cc4dd83..f9a8fa47bb513 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 0d3856a9d5b59..6b5d948edb2a8 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 a482cfbe38060..9ddebf49f54f3 100644 --- a/pkgs/by-name/sn/snallygaster/package.nix +++ b/pkgs/by-name/sn/snallygaster/package.nix @@ -31,11 +31,11 @@ python3Packages.buildPythonApplication rec { "--ignore=tests/test_codingstyle.py" ]; - meta = with lib; { + meta = { description = "Tool to scan for secret files on HTTP servers"; homepage = "https://github.com/hannob/snallygaster"; - 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 1beca5d3e06d3..65e543a90fb4a 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; - maintainers = with maintainers; [ freezeboy ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ freezeboy ]; + 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 9236487769116..25db1d9f27d82 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 = "An 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 83789dfa31bee..13649111e64d3 100644 --- a/pkgs/by-name/sn/snapper-gui/package.nix +++ b/pkgs/by-name/sn/snapper-gui/package.nix @@ -43,7 +43,7 @@ python3Packages.buildPythonApplication rec { snapper ]; - meta = with lib; { + meta = { description = "Graphical interface for snapper"; mainProgram = "snapper-gui"; longDescription = '' @@ -53,8 +53,8 @@ python3Packages.buildPythonApplication rec { 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 cb6c6e559b892..371ff3a52d139 100644 --- a/pkgs/by-name/sn/snappy/package.nix +++ b/pkgs/by-name/sn/snappy/package.nix @@ -61,10 +61,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 895c16ff61d93..f14c4079f7492 100644 --- a/pkgs/by-name/sn/snapshot/package.nix +++ b/pkgs/by-name/sn/snapshot/package.nix @@ -84,12 +84,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"; - maintainers = teams.gnome.members; - license = licenses.gpl3Plus; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + 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 e3b1673a9180b..846b068e55ff0 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/snd/package.nix b/pkgs/by-name/sn/snd/package.nix index 3859ee06543df..1832ba367623a 100644 --- a/pkgs/by-name/sn/snd/package.nix +++ b/pkgs/by-name/sn/snd/package.nix @@ -45,11 +45,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 e54024a8ec2e0..b92fc1c562b3e 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 c9936abc1931a..fb0191c05529a 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 38316a5dcfc76..c182776bb2ac4 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/sniproxy/package.nix b/pkgs/by-name/sn/sniproxy/package.nix index 9714d6de36d19..393c90075e5ad 100644 --- a/pkgs/by-name/sn/sniproxy/package.nix +++ b/pkgs/by-name/sn/sniproxy/package.nix @@ -32,15 +32,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 07ae89fa3c04f..915bf2d904389 100644 --- a/pkgs/by-name/sn/snis-unwrapped/package.nix +++ b/pkgs/by-name/sn/snis-unwrapped/package.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation { "models" ]; - 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; [ alyaeanyx ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ alyaeanyx ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sn/snmpcheck/package.nix b/pkgs/by-name/sn/snmpcheck/package.nix index c02787b68f0ff..3834b96dd4216 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 4fda12fcaa524..ff8f7c61f311d 100644 --- a/pkgs/by-name/sn/snobol4/package.nix +++ b/pkgs/by-name/sn/snobol4/package.nix @@ -68,15 +68,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 d57f48e36a0e1..55ab5f89d6e08 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 2ad183f5f5b70..ad89ee5f213ab 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 2bb684d10e8df..9c1babda2aac7 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 77444ca17d970..4301e3527c3a5 100644 --- a/pkgs/by-name/sn/snowblind/package.nix +++ b/pkgs/by-name/sn/snowblind/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { 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/snowmachine/package.nix b/pkgs/by-name/sn/snowmachine/package.nix index 3001cacf82629..0938545db5d04 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/snzip/package.nix b/pkgs/by-name/sn/snzip/package.nix index 8010d22eb06fb..590a965ace6b9 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/soapyremote/package.nix b/pkgs/by-name/so/soapyremote/package.nix index 7fe21410cf502..2ae7297fbb0f0 100644 --- a/pkgs/by-name/so/soapyremote/package.nix +++ b/pkgs/by-name/so/soapyremote/package.nix @@ -34,12 +34,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/soapysdrplay/package.nix b/pkgs/by-name/so/soapysdrplay/package.nix index bd462c61069bb..26613cb26d42b 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/socat/package.nix b/pkgs/by-name/so/socat/package.nix index 2efbe1244772d..8bd27f25178b2 100644 --- a/pkgs/by-name/so/socat/package.nix +++ b/pkgs/by-name/so/socat/package.nix @@ -44,11 +44,11 @@ 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 ]; + platforms = lib.platforms.unix; + license = with lib.licenses; [ gpl2Only ]; maintainers = [ ]; 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 696ed2d71fb2f..bc49233c98025 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 3b80ffff7e058..a9e516588b85c 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/socklog/package.nix b/pkgs/by-name/so/socklog/package.nix index 1a50a47c40126..124a739385b18 100644 --- a/pkgs/by-name/so/socklog/package.nix +++ b/pkgs/by-name/so/socklog/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "System and kernel logging services"; homepage = "https://smarden.org/socklog/"; - license = licenses.publicDomain; - platforms = platforms.unix; - maintainers = [ maintainers.joachifm ]; + license = lib.licenses.publicDomain; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.joachifm ]; }; } diff --git a/pkgs/by-name/so/sof-tools/package.nix b/pkgs/by-name/so/sof-tools/package.nix index a48693df45c2d..5150254340226 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/sokol/package.nix b/pkgs/by-name/so/sokol/package.nix index 22d84ceaa478e..a17a98cf6c209 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 dc8decfef0626..cfcb06867de0c 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/solana-cli/package.nix b/pkgs/by-name/so/solana-cli/package.nix index f9b41352a791e..d0e41f8a64b83 100644 --- a/pkgs/by-name/so/solana-cli/package.nix +++ b/pkgs/by-name/so/solana-cli/package.nix @@ -119,16 +119,16 @@ 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 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; passthru.updateScript = nix-update-script { }; diff --git a/pkgs/by-name/so/solarc-gtk-theme/package.nix b/pkgs/by-name/so/solarc-gtk-theme/package.nix index 04ae6fd250465..3062aedc3d0ef 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 d3c8d113f75c2..e3bd587138511 100644 --- a/pkgs/by-name/so/solfege/package.nix +++ b/pkgs/by-name/so/solfege/package.nix @@ -83,12 +83,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 orivej anthonyroussel diff --git a/pkgs/by-name/so/solicurses/package.nix b/pkgs/by-name/so/solicurses/package.nix index df7211b9ebb61..df68b6260ee6f 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 b7756af73687c..b79ed1d4c5d5e 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 e1c3a9868cc56..f944966ba7908 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/somafm-cli/package.nix b/pkgs/by-name/so/somafm-cli/package.nix index 7a9042b6836b0..79bbb6a1feb17 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/somatic-sniper/package.nix b/pkgs/by-name/so/somatic-sniper/package.nix index e979fcee2cb75..c6b47c407fdb6 100644 --- a/pkgs/by-name/so/somatic-sniper/package.nix +++ b/pkgs/by-name/so/somatic-sniper/package.nix @@ -28,13 +28,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = false; - meta = with lib; { + meta = { description = "Identify single nucleotide positions that are different between tumor and normal"; mainProgram = "bam-somaticsniper"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/genome/somatic-sniper"; - maintainers = with maintainers; [ jbedo ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ jbedo ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/so/somebar/package.nix b/pkgs/by-name/so/somebar/package.nix index 95436d5547b61..484cf1a296b72 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/songrec/package.nix b/pkgs/by-name/so/songrec/package.nix index 7709d6058cbb7..1d31b96ad3a7e 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 488224eb2724f..3f2e2dc50dd03 100644 --- a/pkgs/by-name/so/sonic/package.nix +++ b/pkgs/by-name/so/sonic/package.nix @@ -34,12 +34,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 631bb95df67a8..71dfa8ce9b945 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; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/so/sonixd/package.nix b/pkgs/by-name/so/sonixd/package.nix index 1d991ef384055..839bea79ef466 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/sonobus/package.nix b/pkgs/by-name/so/sonobus/package.nix index e752dddf7b6a5..60e0821a85745 100644 --- a/pkgs/by-name/so/sonobus/package.nix +++ b/pkgs/by-name/so/sonobus/package.nix @@ -75,12 +75,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "High-quality network audio streaming"; homepage = "https://sonobus.net/"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ PowerUser64 ]; - platforms = platforms.unix; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ PowerUser64 ]; + platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; mainProgram = "sonobus"; }; diff --git a/pkgs/by-name/so/sonota/package.nix b/pkgs/by-name/so/sonota/package.nix index 5bc4e99a1c6e5..e0e22511dbf07 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 0682713cf1c56..df6bcb46ec45f 100644 --- a/pkgs/by-name/so/sony-headphones-client/package.nix +++ b/pkgs/by-name/so/sony-headphones-client/package.nix @@ -78,12 +78,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/sooperlooper/package.nix b/pkgs/by-name/so/sooperlooper/package.nix index 2dd184be7ecf3..4058af5897271 100644 --- a/pkgs/by-name/so/sooperlooper/package.nix +++ b/pkgs/by-name/so/sooperlooper/package.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Live looping sampler capable of immediate loop recording, overdubbing, multiplying, reversing and more"; longDescription = '' It allows for multiple simultaneous multi-channel loops limited only by your computer's available memory. @@ -79,8 +79,8 @@ stdenv.mkDerivation rec { and the engine can be run standalone on a computer without a monitor. ''; homepage = "https://sonosaurus.com/sooperlooper/"; - 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/so/sopwith/package.nix b/pkgs/by-name/so/sopwith/package.nix index 16e29f88fbf02..f8b06a6c1f832 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 baf38880f80e6..f5ce63494a56d 100644 --- a/pkgs/by-name/so/sorcer/package.nix +++ b/pkgs/by-name/so/sorcer/package.nix @@ -45,12 +45,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 aeda79e8a4a58..27aba39d05aff 100644 --- a/pkgs/by-name/so/sord/package.nix +++ b/pkgs/by-name/so/sord/package.nix @@ -45,14 +45,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 e744793eb6b21..ef3da0ccc89ff 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/sortmerna/package.nix b/pkgs/by-name/so/sortmerna/package.nix index 57db2720d0004..5bb573cccc3cd 100644 --- a/pkgs/by-name/so/sortmerna/package.nix +++ b/pkgs/by-name/so/sortmerna/package.nix @@ -57,13 +57,13 @@ stdenv.mkDerivation rec { sed -e '1i #include ' -i include/kseq_load.hpp ''; - meta = with lib; { + meta = { description = "Tools for filtering, mapping, and OTU-picking from shotgun genomics data"; mainProgram = "sortmerna"; - license = licenses.lgpl3; - platforms = platforms.x86_64; + license = lib.licenses.lgpl3; + platforms = lib.platforms.x86_64; homepage = "https://bioinfo.lifl.fr/RNA/sortmerna/"; - maintainers = with maintainers; [ luispedro ]; + maintainers = with lib.maintainers; [ luispedro ]; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/so/souffle/package.nix b/pkgs/by-name/so/souffle/package.nix index d0f8a16c7342b..91a2e9128d87d 100644 --- a/pkgs/by-name/so/souffle/package.nix +++ b/pkgs/by-name/so/souffle/package.nix @@ -91,16 +91,16 @@ 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 copumpkin 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 426ee4cfaa083..0e72aeaf84543 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 58882f5291bb0..43263a9e5c542 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 b92990e07b25b..7c28074bced82 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 606341847a0ef..1e94a0a831899 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/so/soundfont-generaluser/package.nix b/pkgs/by-name/so/soundfont-generaluser/package.nix index df1a24af95895..5f840b318af84 100644 --- a/pkgs/by-name/so/soundfont-generaluser/package.nix +++ b/pkgs/by-name/so/soundfont-generaluser/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { install -Dm644 GeneralUser*.sf2 $out/share/soundfonts/GeneralUser-GS.sf2 ''; - meta = with lib; { + meta = { description = "SoundFont bank featuring 259 instrument presets and 11 drum kits"; homepage = "https://www.schristiancollins.com/generaluser.php"; - license = licenses.generaluser; - platforms = platforms.all; + license = lib.licenses.generaluser; + 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 d0f8833873ffb..79d171957b1d8 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/soundtouch/package.nix b/pkgs/by-name/so/soundtouch/package.nix index 12540494e9756..4ffb80fb2d1d2 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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ orivej ]; mainProgram = "soundstretch"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/so/soundtracker/package.nix b/pkgs/by-name/so/soundtracker/package.nix index 4fb702a11eb22..02fc6bf139fc4 100644 --- a/pkgs/by-name/so/soundtracker/package.nix +++ b/pkgs/by-name/so/soundtracker/package.nix @@ -65,7 +65,7 @@ stdenv.mkDerivation (finalAttrs: { libsndfile ] ++ lib.optional stdenv.hostPlatform.isLinux alsa-lib; - meta = with lib; { + meta = { description = "Music tracking tool similar in design to the DOS program FastTracker and the Amiga legend ProTracker"; longDescription = '' SoundTracker is a pattern-oriented music editor (similar to the DOS @@ -76,9 +76,9 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "http://www.soundtracker.org/"; downloadPage = "https://sourceforge.net/projects/soundtracker/files/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; - hydraPlatforms = platforms.linux; # sdl-config times out on darwin + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; + hydraPlatforms = lib.platforms.linux; # sdl-config times out on darwin }; }) diff --git a/pkgs/by-name/so/source-sans-pro/package.nix b/pkgs/by-name/so/source-sans-pro/package.nix index 645d984ae6e89..c0657001bf7e5 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"; - 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 64c28e7a4e051..4164f6a45cb92 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 1a12a8d2fcd4d..761430c55b497 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 fbbe7f40865d2..10d5173a4e99c 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 16eaa9e42e6ab..1d0b21134e6c5 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/soxt/package.nix b/pkgs/by-name/so/soxt/package.nix index f94c07c912a1c..0cdce4ba43f41 100644 --- a/pkgs/by-name/so/soxt/package.nix +++ b/pkgs/by-name/so/soxt/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation { libXmu ]; - meta = with lib; { + meta = { homepage = "https://bitbucket.org/Coin3D/coin/wiki/Home"; - license = licenses.bsd3; + license = lib.licenses.bsd3; description = "GUI binding for using Open Inventor with Xt/Motif"; - maintainers = with maintainers; [ tmplt ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ tmplt ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sp/spaceFM/package.nix b/pkgs/by-name/sp/spaceFM/package.nix index da44ad45380ce..ab0e8f0ff0c51 100644 --- a/pkgs/by-name/sp/spaceFM/package.nix +++ b/pkgs/by-name/sp/spaceFM/package.nix @@ -85,7 +85,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 @@ -93,9 +93,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; [ jagajaga obadz ]; diff --git a/pkgs/by-name/sp/spacebar/package.nix b/pkgs/by-name/sp/spacebar/package.nix index 535b8d5876d81..b254d9c27e453 100644 --- a/pkgs/by-name/sp/spacebar/package.nix +++ b/pkgs/by-name/sp/spacebar/package.nix @@ -27,11 +27,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 a0262defe9ae1..abcda7c2dc3ff 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/sparsehash/package.nix b/pkgs/by-name/sp/sparsehash/package.nix index 413884e6017ee..029ca2e6f88db 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 db651ea8bb252..3b01bc25674bd 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 rec { 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/spatialite-gui/package.nix b/pkgs/by-name/sp/spatialite-gui/package.nix index 3db1671858c1b..45cd12b467d79 100644 --- a/pkgs/by-name/sp/spatialite-gui/package.nix +++ b/pkgs/by-name/sp/spatialite-gui/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { rm -fr $out/share ''; - meta = with lib; { + meta = { description = "Graphical user interface for SpatiaLite"; homepage = "https://www.gaia-gis.it/fossil/spatialite_gui"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = teams.geospatial.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.geospatial.members; mainProgram = "spatialite_gui"; }; } diff --git a/pkgs/by-name/sp/spatialite_tools/package.nix b/pkgs/by-name/sp/spatialite_tools/package.nix index ab23d29b84162..47d2f6637aaf2 100644 --- a/pkgs/by-name/sp/spatialite_tools/package.nix +++ b/pkgs/by-name/sp/spatialite_tools/package.nix @@ -51,16 +51,16 @@ stdenv.mkDerivation rec { version = "${libspatialite.version}"; }; - meta = with lib; { + meta = { description = "Complete sqlite3-compatible CLI front-end for libspatialite"; homepage = "https://www.gaia-gis.it/fossil/spatialite-tools"; - license = with licenses; [ + license = with lib.licenses; [ mpl11 gpl2Plus lgpl21Plus ]; - platforms = platforms.unix; - maintainers = with maintainers; [ dotlambda ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ dotlambda ]; mainProgram = "spatialite_tool"; }; } diff --git a/pkgs/by-name/sp/spawn_fcgi/package.nix b/pkgs/by-name/sp/spawn_fcgi/package.nix index 1daf28bb0a17e..9fe0228607296 100644 --- a/pkgs/by-name/sp/spawn_fcgi/package.nix +++ b/pkgs/by-name/sp/spawn_fcgi/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { ./autogen.sh ''; - 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 738779b2325b4..e4223cffcb0cf 100644 --- a/pkgs/by-name/sp/spdk/package.nix +++ b/pkgs/by-name/sp/spdk/package.nix @@ -89,11 +89,11 @@ stdenv.mkDerivation rec { # otherwise does not find strncpy when compiling env.NIX_LDFLAGS = "-lbsd"; - 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 = with maintainers; [ orivej ]; + maintainers = with lib.maintainers; [ orivej ]; }; } 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 84f9dcbf66127..d348804f541e0 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/speakersafetyd/package.nix b/pkgs/by-name/sp/speakersafetyd/package.nix index d68654742dd97..a52d301c5246e 100644 --- a/pkgs/by-name/sp/speakersafetyd/package.nix +++ b/pkgs/by-name/sp/speakersafetyd/package.nix @@ -38,15 +38,15 @@ rustPlatform.buildRustPackage rec { dontCargoInstall = true; - meta = with lib; { + meta = { description = "Userspace daemon written in Rust that implements an analogue of the Texas Instruments Smart Amp speaker protection model"; mainProgram = "speakersafetyd"; homepage = "https://github.com/AsahiLinux/speakersafetyd"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ flokli yuka ]; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sp/specr-transpile/package.nix b/pkgs/by-name/sp/specr-transpile/package.nix index 56e6b46a15e2a..9b2d08e3d9043 100644 --- a/pkgs/by-name/sp/specr-transpile/package.nix +++ b/pkgs/by-name/sp/specr-transpile/package.nix @@ -15,14 +15,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-pD+Llzt4ekkQgKGidEL6jIbbFpuqjuFTmQM29FtReTY="; - 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/sp/spectmorph/package.nix b/pkgs/by-name/sp/spectmorph/package.nix index 2ba089063922f..0281d9c3623ac 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 fc3a1512923ee..b1b5f572ab54d 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/spectre-cli/package.nix b/pkgs/by-name/sp/spectre-cli/package.nix index bafb0a70f6ca9..e167c858f2e07 100644 --- a/pkgs/by-name/sp/spectre-cli/package.nix +++ b/pkgs/by-name/sp/spectre-cli/package.nix @@ -63,12 +63,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 427b53abfec42..491fbaaff0a0b 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/speedread/package.nix b/pkgs/by-name/sp/speedread/package.nix index ac277bdf09b66..4bd4b43884f05 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 1045173353b3a..ce2b8c6200e0a 100644 --- a/pkgs/by-name/sp/spfft/package.nix +++ b/pkgs/by-name/sp/spfft/package.nix @@ -74,11 +74,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-protocol/package.nix b/pkgs/by-name/sp/spice-protocol/package.nix index a249a4ce38d8b..c1361cdb527ba 100644 --- a/pkgs/by-name/sp/spice-protocol/package.nix +++ b/pkgs/by-name/sp/spice-protocol/package.nix @@ -25,11 +25,11 @@ 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; - maintainers = with maintainers; [ bluescreen303 ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bluescreen303 ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sp/spicetify-cli/package.nix b/pkgs/by-name/sp/spicetify-cli/package.nix index 524d761d7cbc1..864d971237546 100644 --- a/pkgs/by-name/sp/spicetify-cli/package.nix +++ b/pkgs/by-name/sp/spicetify-cli/package.nix @@ -41,11 +41,11 @@ buildGoModule rec { passthru.tests.version = testers.testVersion { package = spicetify-cli; }; - meta = with lib; { + meta = { description = "Command-line tool to customize Spotify client"; homepage = "https://github.com/spicetify/cli"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.mdarocha ]; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.mdarocha ]; mainProgram = "spicetify"; }; } diff --git a/pkgs/by-name/sp/spicy-parser-generator/package.nix b/pkgs/by-name/sp/spicy-parser-generator/package.nix index bd42478db9a79..4bbbe868379a2 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 76db750204813..b6372b2054f83 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 8eb988bc9ce58..03a7e91bf63dd 100644 --- a/pkgs/by-name/sp/spike/package.nix +++ b/pkgs/by-name/sp/spike/package.nix @@ -43,14 +43,14 @@ stdenv.mkDerivation rec { 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 c0952a504d391..0f3b483b3cffd 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 71fa19fb9949e..02051698e6655 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 = "A 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-headers/package.nix b/pkgs/by-name/sp/spirv-headers/package.nix index f03f327f5a1b2..f7e72442c381c 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 rec { 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 dd4bb0b766276..ccd9b62dfb18e 100644 --- a/pkgs/by-name/sp/spirv-llvm-translator/package.nix +++ b/pkgs/by-name/sp/spirv-llvm-translator/package.nix @@ -147,12 +147,12 @@ stdenv.mkDerivation { -change @rpath/libLLVMSPIRVLib.dylib $out/lib/libLLVMSPIRVLib.dylib ''; - 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 ]; }; } diff --git a/pkgs/by-name/sp/spirv-tools/package.nix b/pkgs/by-name/sp/spirv-tools/package.nix index cd7b3bdc82541..d960b75c35117 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 rec { --replace '$'{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 a0016e08ee542..d0b97efe1f5ec 100644 --- a/pkgs/by-name/sp/spla/package.nix +++ b/pkgs/by-name/sp/spla/package.nix @@ -81,10 +81,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 a151bc05c48e6..a292d9c9955d4 100644 --- a/pkgs/by-name/sp/splat/package.nix +++ b/pkgs/by-name/sp/splat/package.nix @@ -57,13 +57,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "SPLAT! is an 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"; - maintainers = with maintainers; [ ehmry ]; - platforms = platforms.x86_64; + maintainers = with lib.maintainers; [ ehmry ]; + platforms = lib.platforms.x86_64; }; } diff --git a/pkgs/by-name/sp/spleen/package.nix b/pkgs/by-name/sp/spleen/package.nix index c2b7afe24f1a4..eadf8cfa37916 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 47f8f2d24c7e8..dbf889ce677f8 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/spnavcfg/package.nix b/pkgs/by-name/sp/spnavcfg/package.nix index c89f590b29019..66d767d206644 100644 --- a/pkgs/by-name/sp/spnavcfg/package.nix +++ b/pkgs/by-name/sp/spnavcfg/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation (finalAttrs: { libX11 ]; - meta = with lib; { + meta = { homepage = "https://spacenav.sourceforge.net/"; description = "Interactive configuration GUI for space navigator input devices"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ gebner ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ gebner ]; mainProgram = "spnavcfg"; }; }) diff --git a/pkgs/by-name/sp/spooftooph/package.nix b/pkgs/by-name/sp/spooftooph/package.nix index 91af880da0bed..34f2341b7138f 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 c2d895e5e9fcd..96d2f2222652e 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; - maintainers = with maintainers; [ gebner ]; - platforms = platforms.unix; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ gebner ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sp/spotify-tray/package.nix b/pkgs/by-name/sp/spotify-tray/package.nix index ee10a96697f82..b3d57a26225ce 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/spruce/package.nix b/pkgs/by-name/sp/spruce/package.nix index 7e84b075cfaeb..af29fc711dfbf 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 c9296162f0142..6e44865ea4a43 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 58fd3a9dfa258..c824fb94e424f 100644 --- a/pkgs/by-name/sq/sq/package.nix +++ b/pkgs/by-name/sq/sq/package.nix @@ -47,12 +47,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 8378d8d83177e..80f3441297dc8 100644 --- a/pkgs/by-name/sq/sqlboiler-crdb/package.nix +++ b/pkgs/by-name/sq/sqlboiler-crdb/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { 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 15bd89c81f8fd..4a7d5c24d390b 100644 --- a/pkgs/by-name/sq/sqlcheck/package.nix +++ b/pkgs/by-name/sq/sqlcheck/package.nix @@ -32,12 +32,12 @@ 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 = platforms.all; + license = lib.licenses.asl20; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sq/sqlite-vec/package.nix b/pkgs/by-name/sq/sqlite-vec/package.nix index b2e465096dcdb..97817b03cc21b 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-web/package.nix b/pkgs/by-name/sq/sqlite-web/package.nix index b379e426f1996..fb4f122c5e0b5 100644 --- a/pkgs/by-name/sq/sqlite-web/package.nix +++ b/pkgs/by-name/sq/sqlite-web/package.nix @@ -22,11 +22,11 @@ python3Packages.buildPythonApplication rec { # no tests in repository doCheck = false; - 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 2d2ce1dd9024d..15b768cbe29b1 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/sqls/package.nix b/pkgs/by-name/sq/sqls/package.nix index 473beadb4be04..13d3e55ad6ccf 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/sqsh/package.nix b/pkgs/by-name/sq/sqsh/package.nix index 42c2cf884ee56..e6b4be0fae517 100644 --- a/pkgs/by-name/sq/sqsh/package.nix +++ b/pkgs/by-name/sq/sqsh/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { patchFlags = [ "-p0" ]; - meta = with lib; { + meta = { description = "Command line tool for querying Sybase/MSSQL databases"; mainProgram = "sqsh"; longDescription = '' @@ -58,8 +58,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/squashfsTools/package.nix b/pkgs/by-name/sq/squashfsTools/package.nix index 8629b8f539433..6fd2f1d6c6833 100644 --- a/pkgs/by-name/sq/squashfsTools/package.nix +++ b/pkgs/by-name/sq/squashfsTools/package.nix @@ -63,12 +63,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/squid/package.nix b/pkgs/by-name/sq/squid/package.nix index c03043400d758..c7c9242beb74d 100644 --- a/pkgs/by-name/sq/squid/package.nix +++ b/pkgs/by-name/sq/squid/package.nix @@ -77,12 +77,12 @@ stdenv.mkDerivation (finalAttrs: { done ''; - 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 ]; knownVulnerabilities = [ "Squid has multiple unresolved security vulnerabilities, for more information see https://megamansec.github.io/Squid-Security-Audit/" ]; diff --git a/pkgs/by-name/sq/squirreldisk/package.nix b/pkgs/by-name/sq/squirreldisk/package.nix index ae1bc3d5f718d..3f60ac0d54bbd 100644 --- a/pkgs/by-name/sq/squirreldisk/package.nix +++ b/pkgs/by-name/sq/squirreldisk/package.nix @@ -107,11 +107,11 @@ rustPlatform.buildRustPackage rec { }) ]; - meta = with lib; { + meta = { 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 = "squirreldisk"; }; } diff --git a/pkgs/by-name/sr/sr2t/package.nix b/pkgs/by-name/sr/sr2t/package.nix index e49303258a165..6d270415f5099 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 96eaf54390ecc..569ef2870b344 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; [ rewine ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rewine ]; }; } diff --git a/pkgs/by-name/sr/srandrd/package.nix b/pkgs/by-name/sr/srandrd/package.nix index 564770f9c0618..61580b1379c43 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 b92c4d2f67e9b..06d0ec4d117cf 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 3d2b1aae3e0c5..7cd10a4b8f69b 100644 --- a/pkgs/by-name/sr/srb2/package.nix +++ b/pkgs/by-name/sr/srb2/package.nix @@ -116,12 +116,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 72d9c153de33a..5a6f2411827ab 100644 --- a/pkgs/by-name/sr/srb2kart/package.nix +++ b/pkgs/by-name/sr/srb2kart/package.nix @@ -96,12 +96,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "SRB2Kart is a 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/srecord/package.nix b/pkgs/by-name/sr/srecord/package.nix index 153c8003d2574..f6d9ea8bb236e 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 05b1786304af0..1f4255d9b3cc6 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/srm/package.nix b/pkgs/by-name/sr/srm/package.nix index ccecb22418e13..55c7863e739b6 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,8 +27,8 @@ stdenv.mkDerivation { of deleted information, even if the machine is compromised. ''; homepage = "https://srm.sourceforge.net"; - license = licenses.mit; - maintainers = with maintainers; [ edwtjo ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ edwtjo ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sr/srsran/package.nix b/pkgs/by-name/sr/srsran/package.nix index f20c76ae2f6c4..625064b9e842f 100644 --- a/pkgs/by-name/sr/srsran/package.nix +++ b/pkgs/by-name/sr/srsran/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DENABLE_WERROR=OFF" ]; - 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 47d1d58419e24..91d04ee5e4b2d 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 = "srt live server for low latency"; - 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 a0b4490a094d3..00d5de2a6d0ff 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 rec { 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 6dfb61849ad61..146a1dce38ebf 100644 --- a/pkgs/by-name/sr/srt/package.nix +++ b/pkgs/by-name/sr/srt/package.nix @@ -44,11 +44,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 6d3262407817e..6cdcc3a1bf71e 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 975a38408c37a..153de397326ed 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 806af21e4f070..c907e29b3ed94 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/ssh-chat/package.nix b/pkgs/by-name/ss/ssh-chat/package.nix index a6592121aae9a..b5f80d1614c33 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; - maintainers = with maintainers; [ ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/by-name/ss/ssh-ident/package.nix b/pkgs/by-name/ss/ssh-ident/package.nix index 9fad4154a6bc0..4234e8da4e677 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 b371c87929904..282f4a36a8757 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 7a9add923ca0d..7b9293b41b548 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-to-age/package.nix b/pkgs/by-name/ss/ssh-to-age/package.nix index 7393c859f69b8..bdf304700acab 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 208dfc5148aa1..e74a2aa54bb4f 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 dc83804f6d717..b6e7ad60e0112 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 ca13fe9d84ba2..3ae56b7d0b2c1 100644 --- a/pkgs/by-name/ss/ssh-tpm-agent/package.nix +++ b/pkgs/by-name/ss/ssh-tpm-agent/package.nix @@ -27,12 +27,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 9aef78f688779..d4afde2868bf8 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 3927b72ce3d29..09bb31d572ccd 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/sshguard/package.nix b/pkgs/by-name/ss/sshguard/package.nix index 7ce9c6cf5b2af..f29379a20f331 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 2b5da221ea76b..a7683ab90835d 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 a10bc9b21633f..1e08fd389ddcd 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 11ff5b8cd9ff1..dcb0a5c884b16 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 0a9eb06350bc6..09d6b318a6181 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 850a7739eb667..2b3f2f1feec85 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 c06e6308c2735..7c40ee7d485e3 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 77823ef9a6c89..37355fe60c033 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/ssldump/package.nix b/pkgs/by-name/ss/ssldump/package.nix index 7aafa270a432c..7bff3acd8738e 100644 --- a/pkgs/by-name/ss/ssldump/package.nix +++ b/pkgs/by-name/ss/ssldump/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { openssl ]; - meta = with lib; { + meta = { description = "SSLv3/TLS network protocol analyzer"; homepage = "https://ssldump.sourceforge.net"; license = "BSD-style"; - 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 f2cd0599cc849..b2803b871dadc 100644 --- a/pkgs/by-name/ss/sslh/package.nix +++ b/pkgs/by-name/ss/sslh/package.nix @@ -57,14 +57,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/package.nix b/pkgs/by-name/ss/sslmate/package.nix index 19987e1d08f71..3ab092cab9dae 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 = [ maintainers.domenkozar ]; + maintainers = [ lib.maintainers.domenkozar ]; 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 3f1a8fd9e8b7f..6e762d6b1b3ad 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=${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 e613ec7c0b7ae..ef3dae4c9113e 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 b25351bfb37f5..3da74e0063f3f 100644 --- a/pkgs/by-name/ss/ssocr/package.nix +++ b/pkgs/by-name/ss/ssocr/package.nix @@ -26,12 +26,12 @@ 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; - maintainers = [ maintainers.kroell ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.kroell ]; mainProgram = "ssocr"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ss/sss-cli/package.nix b/pkgs/by-name/ss/sss-cli/package.nix index 0c7db346097f0..a4a28cec5012f 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-nKb0J9ym3ZYC80KemwQwT5vVtQUngYD4/091hAIYAiU="; - 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 5e0b35de75c5c..aab260902cd75 100644 --- a/pkgs/by-name/ss/sss_code/package.nix +++ b/pkgs/by-name/ss/sss_code/package.nix @@ -38,14 +38,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 9f1b12a5dc0e4..0b111be996a23 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 5325b37a5c519..acf3ee90fff9a 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 e7a4349989500..9074fd10bc080 100644 --- a/pkgs/by-name/ss/sstp/package.nix +++ b/pkgs/by-name/ss/sstp/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { 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 17376013b34c8..5d377c32417bc 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 64cbc1d4745ab..48f46ba578d72 100644 --- a/pkgs/by-name/st/sta/package.nix +++ b/pkgs/by-name/st/sta/package.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ autoreconfHook ]; - 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 @@ -27,11 +27,11 @@ 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; - badPlatforms = platforms.darwin; + platforms = lib.platforms.all; + badPlatforms = lib.platforms.darwin; mainProgram = "sta"; }; } diff --git a/pkgs/by-name/st/stabber/package.nix b/pkgs/by-name/st/stabber/package.nix index a2d3a8c6587ee..e5827a678e10c 100644 --- a/pkgs/by-name/st/stabber/package.nix +++ b/pkgs/by-name/st/stabber/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation { libmicrohttpd ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Security ]; - 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/stacs/package.nix b/pkgs/by-name/st/stacs/package.nix index 7cc6c87151c0e..8164bae4cd540 100644 --- a/pkgs/by-name/st/stacs/package.nix +++ b/pkgs/by-name/st/stacs/package.nix @@ -34,11 +34,11 @@ python3.pkgs.buildPythonApplication rec { "stacs" ]; - meta = with lib; { + meta = { description = "Static token and credential scanner"; mainProgram = "stacs"; homepage = "https://github.com/stacscan/stacs"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/st/stagit/package.nix b/pkgs/by-name/st/stagit/package.nix index 03a038da51bb2..84f20d46d41ce 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 c2ce921da8e77..8fa8808c735a4 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 8ac7add6d2aeb..d017bb807a352 100644 --- a/pkgs/by-name/st/stanc/package.nix +++ b/pkgs/by-name/st/stanc/package.nix @@ -28,11 +28,11 @@ ocamlPackages.buildDunePackage rec { yojson ]; - 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/star-history/package.nix b/pkgs/by-name/st/star-history/package.nix index da9d1bafd0570..cebbbc5fff757 100644 --- a/pkgs/by-name/st/star-history/package.nix +++ b/pkgs/by-name/st/star-history/package.nix @@ -27,14 +27,14 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.SystemConfiguration ]; - 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "star-history"; }; } diff --git a/pkgs/by-name/st/star/package.nix b/pkgs/by-name/st/star/package.nix index 7b2d3405afd55..571b8bccfb6c2 100644 --- a/pkgs/by-name/st/star/package.nix +++ b/pkgs/by-name/st/star/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Spliced Transcripts Alignment to a Reference"; homepage = "https://github.com/alexdobin/STAR"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; platforms = [ "x86_64-linux" ]; - maintainers = [ maintainers.arcadio ]; + maintainers = [ lib.maintainers.arcadio ]; }; } diff --git a/pkgs/by-name/st/stardust/package.nix b/pkgs/by-name/st/stardust/package.nix index 53d67ab628d0a..24536fbe16b75 100644 --- a/pkgs/by-name/st/stardust/package.nix +++ b/pkgs/by-name/st/stardust/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { --replace '#define PACKAGE ""' '#define PACKAGE "stardust"' ''; - meta = with lib; { + meta = { description = "Space flight simulator"; mainProgram = "stardust"; - 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/st/starfetch/package.nix b/pkgs/by-name/st/starfetch/package.nix index 34694aa951360..e56f34df5bc79 100644 --- a/pkgs/by-name/st/starfetch/package.nix +++ b/pkgs/by-name/st/starfetch/package.nix @@ -34,12 +34,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 362abbd11d168..bff9f6a665e29 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 = with maintainers; [ yuu ]; - license = licenses.lgpl3Only; + maintainers = with lib.maintainers; [ yuu ]; + license = lib.licenses.lgpl3Only; }; } diff --git a/pkgs/by-name/st/starry/package.nix b/pkgs/by-name/st/starry/package.nix index fc5b7fb2b6584..1bb03636d4ff3 100644 --- a/pkgs/by-name/st/starry/package.nix +++ b/pkgs/by-name/st/starry/package.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.Security ]; - meta = with lib; { + meta = { description = "Current stars history tells only half the story"; homepage = "https://github.com/Canop/starry"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "starry"; }; } diff --git a/pkgs/by-name/st/static-server/package.nix b/pkgs/by-name/st/static-server/package.nix index 57527d9e3c2c5..fbd8068a1a6cd 100644 --- a/pkgs/by-name/st/static-server/package.nix +++ b/pkgs/by-name/st/static-server/package.nix @@ -49,11 +49,11 @@ 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "static-server"; }; } diff --git a/pkgs/by-name/st/statifier/package.nix b/pkgs/by-name/st/statifier/package.nix index 763e1f6a759f1..0cdc195d7fda6 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 8c965a73220d3..b121f1317ead0 100644 --- a/pkgs/by-name/st/statik/package.nix +++ b/pkgs/by-name/st/statik/package.nix @@ -27,11 +27,11 @@ 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; - maintainers = with maintainers; [ Madouura ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Madouura ]; }; } diff --git a/pkgs/by-name/st/station/package.nix b/pkgs/by-name/st/station/package.nix index 7e9391b6866f1..d50699bc67d44 100644 --- a/pkgs/by-name/st/station/package.nix +++ b/pkgs/by-name/st/station/package.nix @@ -32,10 +32,10 @@ appimageTools.wrapType2 rec { --replace 'Exec=AppRun' 'Exec=${pname}' ''; - meta = with lib; { + meta = { description = "Single place for all of your web applications"; homepage = "https://getstation.com"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "x86_64-linux" ]; maintainers = [ ]; mainProgram = "station"; diff --git a/pkgs/by-name/st/statix/package.nix b/pkgs/by-name/st/statix/package.nix index 8aa5d23e4c93a..9a7f8bac0c430 100644 --- a/pkgs/by-name/st/statix/package.nix +++ b/pkgs/by-name/st/statix/package.nix @@ -27,12 +27,12 @@ rustPlatform.buildRustPackage rec { # tests are failing on darwin doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Lints and suggestions for the nix programming language"; homepage = "https://github.com/nerdypepper/statix"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "statix"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ figsoda nerdypepper ]; diff --git a/pkgs/by-name/st/status-im/package.nix b/pkgs/by-name/st/status-im/package.nix index e027265882df6..f3e09bce7f966 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 40b79f6259bc3..9398bb8e7d354 100644 --- a/pkgs/by-name/st/stb/package.nix +++ b/pkgs/by-name/st/stb/package.nix @@ -41,11 +41,11 @@ 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 = licenses.publicDomain; - platforms = platforms.all; + license = lib.licenses.publicDomain; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/st/stderred/package.nix b/pkgs/by-name/st/stderred/package.nix index b237853616859..a4abb4dba30ce 100644 --- a/pkgs/by-name/st/stderred/package.nix +++ b/pkgs/by-name/st/stderred/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { sourceRoot = "${src.name}/src"; - meta = with lib; { + meta = { description = "stderr in red"; 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 56b1bcd5a7b28..00fb7a3ec5e7a 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 812c71f5c68e5..8f7ac38a168d7 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 664ff5f465860..42b9db2e642b8 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-BneC0zFcyMntCePpnxF9bRTK6vTMnqUvHMEcqoHd9Ds="; - 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 7290d0a5330ab..5ceac740a400a 100644 --- a/pkgs/by-name/st/steam-devices-udev-rules/package.nix +++ b/pkgs/by-name/st/steam-devices-udev-rules/package.nix @@ -29,11 +29,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-tui/package.nix b/pkgs/by-name/st/steam-tui/package.nix index e21e353737d54..4f63aee5d7029 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; [ lom dmadisetti ]; diff --git a/pkgs/by-name/st/steamcmd/package.nix b/pkgs/by-name/st/steamcmd/package.nix index 5eda455f61ed5..25bcd8353f3dd 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/steamcontroller/package.nix b/pkgs/by-name/st/steamcontroller/package.nix index 92f3fcb1aff34..38ce558e7b20f 100644 --- a/pkgs/by-name/st/steamcontroller/package.nix +++ b/pkgs/by-name/st/steamcontroller/package.nix @@ -32,11 +32,11 @@ buildPythonApplication { doCheck = false; pythonImportsCheck = [ "steamcontroller" ]; - meta = with lib; { + meta = { description = "Standalone Steam controller driver"; homepage = "https://github.com/ynsta/steamcontroller"; - license = licenses.mit; - maintainers = with maintainers; [ rnhmjoj ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rnhmjoj ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/st/steamos-devkit/package.nix b/pkgs/by-name/st/steamos-devkit/package.nix index 206619d4e65f4..009090232fc84 100644 --- a/pkgs/by-name/st/steamos-devkit/package.nix +++ b/pkgs/by-name/st/steamos-devkit/package.nix @@ -126,11 +126,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 039641dfa92ab..ff6767ae5eb23 100644 --- a/pkgs/by-name/st/steamtinkerlaunch/package.nix +++ b/pkgs/by-name/st/steamtinkerlaunch/package.nix @@ -97,12 +97,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 86cb3cfb4bb71..5877a8e248c28 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = with platforms; unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ AndersonTorres ]; + 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 12416129daa6b..0c55d95bb319a 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.isx86_64 && stdenv.isLinux; - meta = with lib; { + meta = { broken = stdenv.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/step-kms-plugin/package.nix b/pkgs/by-name/st/step-kms-plugin/package.nix index 8f6eb6af9fdb6..a1bb80246dc3e 100644 --- a/pkgs/by-name/st/step-kms-plugin/package.nix +++ b/pkgs/by-name/st/step-kms-plugin/package.nix @@ -42,11 +42,11 @@ buildGoModule rec { "-X github.com/smallstep/step-kms-plugin/cmd.Version=${version}" ]; - 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"; # can't find pcsclite header files broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/st/stepmania/package.nix b/pkgs/by-name/st/stepmania/package.nix index f978d8c62bba4..15f48879d2515 100644 --- a/pkgs/by-name/st/stepmania/package.nix +++ b/pkgs/by-name/st/stepmania/package.nix @@ -80,12 +80,12 @@ stdenv.mkDerivation { install -Dm444 $src/stepmania.desktop -t $out/share/applications ''; - meta = with lib; { + meta = { homepage = "https://www.stepmania.com/"; description = "Free dance and rhythm game for Windows, Mac, and Linux"; - platforms = platforms.linux; - license = licenses.mit; # expat version - maintainers = with maintainers; [ h7x4 ]; + platforms = lib.platforms.linux; + license = lib.licenses.mit; # expat version + maintainers = with lib.maintainers; [ h7x4 ]; mainProgram = "stepmania"; }; } diff --git a/pkgs/by-name/st/stepreduce/package.nix b/pkgs/by-name/st/stepreduce/package.nix index 4dc1eb389f866..06ba4bf7fb82a 100644 --- a/pkgs/by-name/st/stepreduce/package.nix +++ b/pkgs/by-name/st/stepreduce/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Reduces STEP file size by removing redundancy"; homepage = "https://gitlab.com/sethhillbrand/stepreduce"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ evils ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ evils ]; mainProgram = "stepreduce"; }; } diff --git a/pkgs/by-name/st/stereotool/package.nix b/pkgs/by-name/st/stereotool/package.nix index 210a3f62ad4cf..20d02603da4ca 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 9d628fdc44344..b2fc9525ad69b 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 6ef1afe79ce0b..33a0eae98245d 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 8fc848008d0a0..7b197ef755680 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/stig/package.nix b/pkgs/by-name/st/stig/package.nix index 7c6dec75cee63..25692563cb34f 100644 --- a/pkgs/by-name/st/stig/package.nix +++ b/pkgs/by-name/st/stig/package.nix @@ -61,10 +61,10 @@ python310Packages.buildPythonApplication rec { # https://github.com/rndusr/stig/issues/214#issuecomment-1995651219 dontUsePytestCheck = true; - meta = with lib; { + meta = { description = "TUI and CLI for the BitTorrent client Transmission"; homepage = "https://github.com/rndusr/stig"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/by-name/st/stilo-themes/package.nix b/pkgs/by-name/st/stilo-themes/package.nix index 8ee4cb2678454..988994bfa932f 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 b9a1b795ce190..26e308768f067 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 729518d971710..791edc6df848b 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 b3b1ea303ab78..d55d18c4b60f0 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/stm32flash/package.nix b/pkgs/by-name/st/stm32flash/package.nix index 7787dc9c05f4c..04bd951034aac 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 4c55857b02f10..cf24162d58d35 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 7374b0c97831f..03bd26dd710db 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 50216db2b95e6..07af991e426f6 100644 --- a/pkgs/by-name/st/stockfish/package.nix +++ b/pkgs/by-name/st/stockfish/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://stockfishchess.org/"; description = "Strong open source chess engine"; mainProgram = "stockfish"; @@ -72,7 +72,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 @@ -84,7 +84,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 6065059b5ee09..1d012d998b1de 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 5f38e47644b41..392e49c7f0b66 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 d93eaebf3c755..db0aa64276e02 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 a285c847a6fbe..7c8b394f03e3b 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/storj-uplink/package.nix b/pkgs/by-name/st/storj-uplink/package.nix index 75b4238c6333a..70dd55ee58149 100644 --- a/pkgs/by-name/st/storj-uplink/package.nix +++ b/pkgs/by-name/st/storj-uplink/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Command-line tool for Storj"; homepage = "https://storj.io"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; mainProgram = "uplink"; - maintainers = with maintainers; [ felipeqq2 ]; + maintainers = with lib.maintainers; [ felipeqq2 ]; }; } diff --git a/pkgs/by-name/st/storrent/package.nix b/pkgs/by-name/st/storrent/package.nix index 873885eb4417c..841411ef02a5c 100644 --- a/pkgs/by-name/st/storrent/package.nix +++ b/pkgs/by-name/st/storrent/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-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/strace-analyzer/package.nix b/pkgs/by-name/st/strace-analyzer/package.nix index 5c257e53cd10c..ad69ccd0285f4 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/st/strace/package.nix b/pkgs/by-name/st/strace/package.nix index 6e4978a6577f0..46e8af687490e 100644 --- a/pkgs/by-name/st/strace/package.nix +++ b/pkgs/by-name/st/strace/package.nix @@ -43,15 +43,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 d38088428f799..5f2a4962a8827 100644 --- a/pkgs/by-name/st/stratis-cli/package.nix +++ b/pkgs/by-name/st/stratis-cli/package.nix @@ -44,11 +44,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 018eb7feaf694..50293e17858af 100644 --- a/pkgs/by-name/st/stratisd/package.nix +++ b/pkgs/by-name/st/stratisd/package.nix @@ -126,11 +126,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 843390d848fd5..bf1709a6af4ce 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 e1f95c5ebf613..a13ba5712746c 100644 --- a/pkgs/by-name/st/streamcontroller/package.nix +++ b/pkgs/by-name/st/streamcontroller/package.nix @@ -180,12 +180,12 @@ stdenv.mkDerivation rec { websocket-client ]); - 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 5f264606e8a49..4d3f877568f70 100644 --- a/pkgs/by-name/st/streamrip/package.nix +++ b/pkgs/by-name/st/streamrip/package.nix @@ -68,11 +68,11 @@ 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; - maintainers = with maintainers; [ paveloom ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ paveloom ]; mainProgram = "rip"; }; } diff --git a/pkgs/by-name/st/streamripper/package.nix b/pkgs/by-name/st/streamripper/package.nix index 50ec647755abb..614ed327eadcd 100644 --- a/pkgs/by-name/st/streamripper/package.nix +++ b/pkgs/by-name/st/streamripper/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { "AR:=$(AR)" ]; - 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/strelka/package.nix b/pkgs/by-name/st/strelka/package.nix index a7470394213c3..dc11a59f41436 100644 --- a/pkgs/by-name/st/strelka/package.nix +++ b/pkgs/by-name/st/strelka/package.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { popd ''; - meta = with lib; { + meta = { description = "Germline and small variant caller"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://github.com/Illumina/strelka"; - maintainers = with maintainers; [ jbedo ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ jbedo ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/st/stress/package.nix b/pkgs/by-name/st/stress/package.nix index 6aee23949676d..c8c67c74f3990 100644 --- a/pkgs/by-name/st/stress/package.nix +++ b/pkgs/by-name/st/stress/package.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Simple workload generator for POSIX systems. It imposes a configurable amount of CPU, memory, I/O, and disk stress on the system"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; mainProgram = "stress"; }; } diff --git a/pkgs/by-name/st/stretchly/package.nix b/pkgs/by-name/st/stretchly/package.nix index b921992f6817a..05fee95d98f28 100644 --- a/pkgs/by-name/st/stretchly/package.nix +++ b/pkgs/by-name/st/stretchly/package.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation (finalAttrs: { categories = [ "Utility" ]; }; - meta = with lib; { + meta = { description = "Break time reminder app"; longDescription = '' stretchly is a cross-platform electron app that reminds you to take @@ -73,9 +73,9 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://hovancik.net/stretchly"; downloadPage = "https://hovancik.net/stretchly/downloads/"; - license = licenses.bsd2; - maintainers = with maintainers; [ _1000101 ]; - platforms = platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ _1000101 ]; + platforms = lib.platforms.linux; mainProgram = "stretchly"; }; }) diff --git a/pkgs/by-name/st/structorizer/package.nix b/pkgs/by-name/st/structorizer/package.nix index c29d388c0c845..d8ee15f02a431 100644 --- a/pkgs/by-name/st/structorizer/package.nix +++ b/pkgs/by-name/st/structorizer/package.nix @@ -109,12 +109,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/stumpish/package.nix b/pkgs/by-name/st/stumpish/package.nix index 519d02ea597ac..09d1b906c1469 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 01e36817f2b28..acd949e384f59 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 580378ad350c4..9783af0b81454 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 = "STUNTMAN - an 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/stw/package.nix b/pkgs/by-name/st/stw/package.nix index 3f73693a3a334..2455e37b8d9fc 100644 --- a/pkgs/by-name/st/stw/package.nix +++ b/pkgs/by-name/st/stw/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { "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 d045a889a016d..9ca9b3a0d84f4 100644 --- a/pkgs/by-name/st/stxxl/package.nix +++ b/pkgs/by-name/st/stxxl/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { inherit parallelSupport; }; - 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 6ab7d2a5ab11d..4b1757779af21 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/styx/package.nix b/pkgs/by-name/st/styx/package.nix index bc9825efdbabe..7d991701ec909 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 = with maintainers; [ ericsagnes ]; + maintainers = with lib.maintainers; [ ericsagnes ]; 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 c65562b5c2485..fd5b5e6a5dfe6 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 0cfeddd572dbb..46e60d67af96f 100644 --- a/pkgs/by-name/su/sub-batch/package.nix +++ b/pkgs/by-name/su/sub-batch/package.nix @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage rec { wrapProgram "$out/bin/sub-batch" --prefix PATH : "${lib.makeBinPath [ alass ]}" ''; - 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/subberthehut/package.nix b/pkgs/by-name/su/subberthehut/package.nix index 3dd753b787618..aafc3a3bbabaa 100644 --- a/pkgs/by-name/su/subberthehut/package.nix +++ b/pkgs/by-name/su/subberthehut/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { install -Dm644 bash_completion $out/share/bash-completion/completions/subberthehut ''; - meta = with lib; { + meta = { homepage = "https://github.com/mus65/subberthehut"; description = "OpenSubtitles.org downloader"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ jqueiroz ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ jqueiroz ]; mainProgram = "subberthehut"; }; } diff --git a/pkgs/by-name/su/subedit/package.nix b/pkgs/by-name/su/subedit/package.nix index 6537bc913e327..78d8ed3b1827e 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 d748a3c69a252..101f12db87fdc 100644 --- a/pkgs/by-name/su/subfinder/package.nix +++ b/pkgs/by-name/su/subfinder/package.nix @@ -33,7 +33,7 @@ buildGoModule rec { "-s" ]; - meta = with lib; { + meta = { description = "Subdomain discovery tool"; longDescription = '' SubFinder is a subdomain discovery tool that discovers valid @@ -41,8 +41,8 @@ buildGoModule rec { useful for bug bounties and safe for penetration testing. ''; homepage = "https://github.com/projectdiscovery/subfinder"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fpletz Br1ght0ne Misaka13514 diff --git a/pkgs/by-name/su/subjs/package.nix b/pkgs/by-name/su/subjs/package.nix index 9bc455593bba1..67af077f3e7c6 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 914d2b0e48a2e..e724db1cb1c26 100644 --- a/pkgs/by-name/su/subread/package.nix +++ b/pkgs/by-name/su/subread/package.nix @@ -30,11 +30,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 a24f96ad735c0..d273a00ab860b 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 14efc8ed1ddea..cf3868f514d04 100644 --- a/pkgs/by-name/su/substudy/package.nix +++ b/pkgs/by-name/su/substudy/package.nix @@ -42,11 +42,11 @@ 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 = "http://www.randomhacks.net/substudy"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "substudy"; - maintainers = with maintainers; [ paveloom ]; + maintainers = with lib.maintainers; [ paveloom ]; }; } diff --git a/pkgs/by-name/su/subtitlecomposer/package.nix b/pkgs/by-name/su/subtitlecomposer/package.nix index 09a9ff32d277c..d5afdb5b33cc7 100644 --- a/pkgs/by-name/su/subtitlecomposer/package.nix +++ b/pkgs/by-name/su/subtitlecomposer/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { sonnet ]); - meta = with lib; { + meta = { homepage = "https://apps.kde.org/subtitlecomposer"; description = "Open source text-based subtitle editor"; longDescription = '' @@ -53,9 +53,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/subtitlr/package.nix b/pkgs/by-name/su/subtitlr/package.nix index ffcb31ed21aec..9c63b5de18cce 100644 --- a/pkgs/by-name/su/subtitlr/package.nix +++ b/pkgs/by-name/su/subtitlr/package.nix @@ -34,11 +34,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/subunit/package.nix b/pkgs/by-name/su/subunit/package.nix index a40e846e4fd32..1f35818a4cdfa 100644 --- a/pkgs/by-name/su/subunit/package.nix +++ b/pkgs/by-name/su/subunit/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { postFixup = "wrapPythonPrograms"; - meta = with lib; { + meta = { description = "Streaming protocol for test results"; mainProgram = "subunit-diff"; homepage = "https://launchpad.net/subunit"; - license = licenses.asl20; - platforms = platforms.all; + license = lib.licenses.asl20; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/su/suidChroot/package.nix b/pkgs/by-name/su/suidChroot/package.nix index a19d0e7de06e5..b527200f51ce1 100644 --- a/pkgs/by-name/su/suidChroot/package.nix +++ b/pkgs/by-name/su/suidChroot/package.nix @@ -18,9 +18,9 @@ stdenv.mkDerivation rec { sed -i -e '/chmod u+s/d' Makefile ''; - meta = with lib; { + meta = { description = "Setuid-safe wrapper for chroot"; - license = licenses.gpl2Plus; - platforms = with platforms; unix; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/su/suitesparse-graphblas/package.nix b/pkgs/by-name/su/suitesparse-graphblas/package.nix index 5d0d7097260e2..b4e9c8c90aed5 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 af4a2bc77b4d1..997cee8cd39fb 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 22c7889e70ffb..2d4aa42e60a69 100644 --- a/pkgs/by-name/su/sumo/package.nix +++ b/pkgs/by-name/su/sumo/package.nix @@ -82,7 +82,7 @@ stdenv.mkDerivation rec { libXrender ]); - meta = with lib; { + meta = { description = "SUMO traffic simulator"; longDescription = '' Eclipse SUMO is an open source, highly @@ -92,7 +92,7 @@ stdenv.mkDerivation rec { tools for scenario creation. ''; homepage = "https://github.com/eclipse/sumo"; - license = licenses.epl20; - maintainers = with maintainers; [ mtreca ]; + license = lib.licenses.epl20; + maintainers = with lib.maintainers; [ mtreca ]; }; } diff --git a/pkgs/by-name/su/sundtek/package.nix b/pkgs/by-name/su/sundtek/package.nix index b560a975c0d9e..733b36702a357 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/sunshine/package.nix b/pkgs/by-name/su/sunshine/package.nix index 0ee8b47422e8f..7ca217d2ee3b3 100644 --- a/pkgs/by-name/su/sunshine/package.nix +++ b/pkgs/by-name/su/sunshine/package.nix @@ -215,12 +215,12 @@ stdenv'.mkDerivation rec { updateScript = ./updater.sh; }; - meta = with lib; { + meta = { description = "Sunshine is a Game stream host for Moonlight"; homepage = "https://github.com/LizardByte/Sunshine"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "sunshine"; - maintainers = with maintainers; [ devusb ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ devusb ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/su/sunxi-tools/package.nix b/pkgs/by-name/su/sunxi-tools/package.nix index 4bf58e3ed202d..82fa001de5dd4 100644 --- a/pkgs/by-name/su/sunxi-tools/package.nix +++ b/pkgs/by-name/su/sunxi-tools/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { "install-misc" ]; - meta = with lib; { + meta = { description = "Tools for Allwinner SoC devices"; homepage = "http://linux-sunxi.org/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ elitak ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ elitak ]; }; } diff --git a/pkgs/by-name/su/supabase-cli/package.nix b/pkgs/by-name/su/supabase-cli/package.nix index 4b2d44aafbbcc..b5a0a0bd269ab 100644 --- a/pkgs/by-name/su/supabase-cli/package.nix +++ b/pkgs/by-name/su/supabase-cli/package.nix @@ -48,11 +48,11 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - 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 5e1d283264f73..7b0c86893c093 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 46d2bd9bb0c63..57f7b2362a987 100644 --- a/pkgs/by-name/su/superTux/package.nix +++ b/pkgs/by-name/su/superTux/package.nix @@ -64,12 +64,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 49ac6669c58ab..46dc6b6d1e415 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 498988b15a6b4..fd967af2d4f8c 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 e0d76bac985b5..7859b1940d717 100644 --- a/pkgs/by-name/su/supergfxctl/package.nix +++ b/pkgs/by-name/su/supergfxctl/package.nix @@ -36,11 +36,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/superhtml/package.nix b/pkgs/by-name/su/superhtml/package.nix index 8844a03e9416f..c516c8a9649e2 100644 --- a/pkgs/by-name/su/superhtml/package.nix +++ b/pkgs/by-name/su/superhtml/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { ln -s ${callPackage ./deps.nix { }} $ZIG_GLOBAL_CACHE_DIR/p ''; - meta = with lib; { + meta = { description = "HTML Language Server and Templating Language Library"; homepage = "https://github.com/kristoff-it/superhtml"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "superhtml"; - maintainers = with maintainers; [ petertriho ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ petertriho ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/su/supertag/package.nix b/pkgs/by-name/su/supertag/package.nix index fe79aaf586819..b8ea24f79c642 100644 --- a/pkgs/by-name/su/supertag/package.nix +++ b/pkgs/by-name/su/supertag/package.nix @@ -38,7 +38,7 @@ rustPlatform.buildRustPackage rec { # The test are requiring extended permissions. doCheck = false; - meta = with lib; { + meta = { description = "Tag-based filesystem"; longDescription = '' Supertag is a tag-based filesystem, written in Rust, for Linux and MacOS. @@ -48,11 +48,11 @@ rustPlatform.buildRustPackage rec { as objects that can be filtered by folders. ''; homepage = "https://github.com/amoffat/supertag"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; platforms = [ "i686-linux" "x86_64-linux" ]; - maintainers = with maintainers; [ oxzi ]; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/by-name/su/supervise/package.nix b/pkgs/by-name/su/supervise/package.nix index 5df506576e4e1..5e19a9a57c3d2 100644 --- a/pkgs/by-name/su/supervise/package.nix +++ b/pkgs/by-name/su/supervise/package.nix @@ -14,11 +14,11 @@ 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; maintainers = with lib.maintainers; [ catern ]; }; } diff --git a/pkgs/by-name/su/surf-display/package.nix b/pkgs/by-name/su/surf-display/package.nix index ca70c40a43473..82abc8d1a26ef 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/surface-control/package.nix b/pkgs/by-name/su/surface-control/package.nix index aee2dd5bf0bb8..0ca679c2b9e42 100644 --- a/pkgs/by-name/su/surface-control/package.nix +++ b/pkgs/by-name/su/surface-control/package.nix @@ -43,12 +43,12 @@ rustPlatform.buildRustPackage rec { --replace "/usr/bin/chown" "${coreutils}/bin/chown" ''; - meta = with lib; { + meta = { description = "Control various aspects of Microsoft Surface devices on Linux from the Command-Line"; homepage = "https://github.com/linux-surface/surface-control"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "surface"; }; } diff --git a/pkgs/by-name/su/surge-XT/package.nix b/pkgs/by-name/su/surge-XT/package.nix index 395a06019316c..8fdd9373e22d3 100644 --- a/pkgs/by-name/su/surge-XT/package.nix +++ b/pkgs/by-name/su/surge-XT/package.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation rec { export XDG_DOCUMENTS_DIR=$(mktemp -d) ''; - meta = with lib; { + meta = { description = "LV2 & VST3 synthesizer plug-in (previously released as Vember Audio Surge)"; homepage = "https://surge-synthesizer.github.io"; - license = licenses.gpl3; + license = lib.licenses.gpl3; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ magnetophon orivej ]; diff --git a/pkgs/by-name/su/surge-cli/package.nix b/pkgs/by-name/su/surge-cli/package.nix index 0431c69f04d78..dec1b1f290894 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/surreal-engine/package.nix b/pkgs/by-name/su/surreal-engine/package.nix index 71376ed3d3eb9..8480c48ab619d 100644 --- a/pkgs/by-name/su/surreal-engine/package.nix +++ b/pkgs/by-name/su/surreal-engine/package.nix @@ -64,12 +64,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/package.nix b/pkgs/by-name/su/surrealdb/package.nix index ebab4440a2601..8d2143e34d4e1 100644 --- a/pkgs/by-name/su/surrealdb/package.nix +++ b/pkgs/by-name/su/surrealdb/package.nix @@ -66,12 +66,12 @@ rustPlatform.buildRustPackage rec { command = "surreal version"; }; - meta = with lib; { + meta = { description = "Scalable, distributed, collaborative, document-graph database, for the realtime web"; homepage = "https://surrealdb.com/"; mainProgram = "surreal"; - license = licenses.bsl11; - maintainers = with maintainers; [ + license = lib.licenses.bsl11; + maintainers = with lib.maintainers; [ sikmir happysalada siriobalmelli diff --git a/pkgs/by-name/su/surrealist/package.nix b/pkgs/by-name/su/surrealist/package.nix index 371dcab6dbe55..b79093dc68e41 100644 --- a/pkgs/by-name/su/surrealist/package.nix +++ b/pkgs/by-name/su/surrealist/package.nix @@ -127,12 +127,12 @@ stdenv.mkDerivation (finalAttrs: { --set WEBKIT_DISABLE_COMPOSITING_MODE 1 ''; - meta = with lib; { + meta = { description = "Surrealist is the ultimate way to visually manage your SurrealDB database"; homepage = "https://surrealdb.com/surrealist"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "surrealist"; - maintainers = with maintainers; [ frankp ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ frankp ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/su/suscan/package.nix b/pkgs/by-name/su/suscan/package.nix index 0c052705cc267..55956ed45755b 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/sv/svgcleaner/package.nix b/pkgs/by-name/sv/svgcleaner/package.nix index aa9f98b6481d1..e3389b55d00eb 100644 --- a/pkgs/by-name/sv/svgcleaner/package.nix +++ b/pkgs/by-name/sv/svgcleaner/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-SZWmJGiCc/FevxMWJpa8xKVz/rbll52oNbFtqPpz74g="; - 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; - maintainers = with maintainers; [ yuu ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ yuu ]; mainProgram = "svgcleaner"; }; } diff --git a/pkgs/by-name/sv/sview/package.nix b/pkgs/by-name/sv/sview/package.nix index 7f62b2195278b..2604ba7ed0cee 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 33f39c11f926c..26924f534ef5c 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 = "A 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 da278e226a9e8..3526350fea262 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-vDpuIWB5pbhYrFgQ1ogALMJpZvy8ETZtneX1fjpjl+0="; - 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 486bcf53f6e3a..43c75f801e4b5 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 7664f04335757..1e27f619fe95b 100644 --- a/pkgs/by-name/sv/svox/package.nix +++ b/pkgs/by-name/sv/svox/package.nix @@ -26,12 +26,12 @@ 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; - maintainers = with maintainers; [ abbradar ]; + platforms = lib.platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ abbradar ]; mainProgram = "pico2wave"; }; } diff --git a/pkgs/by-name/sv/svrcore/package.nix b/pkgs/by-name/sv/svrcore/package.nix index f78f7f918e60e..cc702b2001300 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/svu/package.nix b/pkgs/by-name/sv/svu/package.nix index 012adee06657f..d31de10ff2f50 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 f78dd09b46a49..fa5bcd560a578 100644 --- a/pkgs/by-name/sw/swagger-cli/package.nix +++ b/pkgs/by-name/sw/swagger-cli/package.nix @@ -21,11 +21,11 @@ buildNpmPackage rec { npm run bump ''; - 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/swaggerhole/package.nix b/pkgs/by-name/sw/swaggerhole/package.nix index 3f07eb76b5d8a..3c412bc0976e1 100644 --- a/pkgs/by-name/sw/swaggerhole/package.nix +++ b/pkgs/by-name/sw/swaggerhole/package.nix @@ -29,11 +29,11 @@ python3.pkgs.buildPythonApplication rec { "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 55fd6459ae51a..f51d0b7b4d532 100644 --- a/pkgs/by-name/sw/swaglyrics/package.nix +++ b/pkgs/by-name/sw/swaglyrics/package.nix @@ -61,11 +61,11 @@ python3.pkgs.buildPythonApplication rec { "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 7e31e49cef115..f4d8510d0e571 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/swapview/package.nix b/pkgs/by-name/sw/swapview/package.nix index b15b9d6d062dc..cd0e084555883 100644 --- a/pkgs/by-name/sw/swapview/package.nix +++ b/pkgs/by-name/sw/swapview/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-v3Fd08s70YX7pEIWYcgpC2daerfZhtzth4haKfUy0Q8="; - 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 5ee833114a458..85648b1a2573a 100644 --- a/pkgs/by-name/sw/swarm/package.nix +++ b/pkgs/by-name/sw/swarm/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.free; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ abbradar ]; }; } 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 e4ae54623fbc1..61220a9de1b55 100644 --- a/pkgs/by-name/sw/sway-audio-idle-inhibit/package.nix +++ b/pkgs/by-name/sw/sway-audio-idle-inhibit/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation (finalAttrs: { wayland-protocols ]; - 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 a38583a1d1e3a..31b4efb19d362 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-uGjNneIfhI49gGnH/MPTzXWjBJPdnAFggZZQfovBxDM="; - 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-scratch/package.nix b/pkgs/by-name/sw/sway-scratch/package.nix index 210a08de811ee..66adbd84b68c0 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/swaycons/package.nix b/pkgs/by-name/sw/swaycons/package.nix index 28c8faeace167..94318f6d21677 100644 --- a/pkgs/by-name/sw/swaycons/package.nix +++ b/pkgs/by-name/sw/swaycons/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-cdZ7DpH//c9TulvPYd6aaXpQHYC1b+T7BrxAyr56Pf0="; - 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 50f30c1c73cf2..74af506470775 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 9023cb5af80e2..158f3474f62dc 100644 --- a/pkgs/by-name/sw/swayidle/package.nix +++ b/pkgs/by-name/sw/swayidle/package.nix @@ -49,16 +49,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; [ primeos ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ primeos ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sw/swaykbdd/package.nix b/pkgs/by-name/sw/swaykbdd/package.nix index 07d73adb07cde..f8939ab1e22de 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 42c59876ecb1b..6f9c023b06dcb 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/swaymux/package.nix b/pkgs/by-name/sw/swaymux/package.nix index 47b075aa16b3c..e2e3443a5cb3d 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 b9223980ecef9..9f0384f18fa7d 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 1b4d736f56cab..38dc0ef8e2799 100644 --- a/pkgs/by-name/sw/swayosd/package.nix +++ b/pkgs/by-name/sw/swayosd/package.nix @@ -69,15 +69,15 @@ stdenv.mkDerivation rec { --replace /bin/chmod ${coreutils}/bin/chmod ''; - 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 85a92cbdd4cd4..c3977d136f3fc 100644 --- a/pkgs/by-name/sw/swayrbar/package.nix +++ b/pkgs/by-name/sw/swayrbar/package.nix @@ -34,12 +34,12 @@ 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; - maintainers = with maintainers; [ ]; + license = with lib.licenses; [ gpl3Plus ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ]; mainProgram = "swayrbar"; }; } diff --git a/pkgs/by-name/sw/swaysettings/package.nix b/pkgs/by-name/sw/swaysettings/package.nix index 099b9eb3c694a..2bc89f3d6e858 100644 --- a/pkgs/by-name/sw/swaysettings/package.nix +++ b/pkgs/by-name/sw/swaysettings/package.nix @@ -69,15 +69,15 @@ stdenv.mkDerivation rec { patchShebangs build-aux/meson/postinstall.py ''; - meta = with lib; { + meta = { description = "GUI for configuring your sway desktop"; longDescription = '' Sway settings enables easy configuration of a sway desktop environment such as selection of application or icon themes. ''; homepage = "https://github.com/ErikReider/SwaySettings"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = [ maintainers.aacebedo ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.aacebedo ]; }; } diff --git a/pkgs/by-name/sw/swayws/package.nix b/pkgs/by-name/sw/swayws/package.nix index 90752a14da04a..e0e3eb4d88f8e 100644 --- a/pkgs/by-name/sw/swayws/package.nix +++ b/pkgs/by-name/sw/swayws/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { # swayws does not have any tests doCheck = false; - meta = with lib; { + meta = { description = "Sway workspace tool which allows easy moving of workspaces to and from outputs"; mainProgram = "swayws"; homepage = "https://gitlab.com/w0lff/swayws"; - license = licenses.mit; - maintainers = [ maintainers.atila ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.atila ]; }; } diff --git a/pkgs/by-name/sw/swaywsr/package.nix b/pkgs/by-name/sw/swaywsr/package.nix index cdec0aab22ab7..7d15cab47e460 100644 --- a/pkgs/by-name/sw/swaywsr/package.nix +++ b/pkgs/by-name/sw/swaywsr/package.nix @@ -25,7 +25,7 @@ rustPlatform.buildRustPackage rec { # 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 rec { 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/swc/package.nix b/pkgs/by-name/sw/swc/package.nix index 2355bb8801892..cc133cbb1d350 100644 --- a/pkgs/by-name/sw/swc/package.nix +++ b/pkgs/by-name/sw/swc/package.nix @@ -21,12 +21,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-/Ku0W+L2mqVYDSkd2zRqM7UhHueXya4zjewp/xO/XlQ"; - meta = with lib; { + meta = { description = "Rust-based platform for the Web"; mainProgram = "swc"; homepage = "https://github.com/swc-project/swc"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dit7ya kashw2 ]; diff --git a/pkgs/by-name/sw/sweet-folders/package.nix b/pkgs/by-name/sw/sweet-folders/package.nix index dbbe7a949992b..90df9287ccfe8 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 6b99c8769c3b4..17ef294c93a64 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 51763fb1b974f..c77d9fa80fb0e 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 94318d062cdc4..6943d4d6e7e90 100644 --- a/pkgs/by-name/sw/swego/package.nix +++ b/pkgs/by-name/sw/swego/package.nix @@ -27,15 +27,15 @@ buildGoModule rec { "-s" ]; - meta = with lib; { + meta = { description = "Simple Webserver"; longDescription = '' Swiss army knife Webserver in Golang. Similar to the Python SimpleHTTPServer but with many features. ''; homepage = "https://github.com/nodauf/Swego"; - license = with licenses; [ gpl2Only ]; - maintainers = with maintainers; [ fab ]; + license = with 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/swh_lv2/package.nix b/pkgs/by-name/sw/swh_lv2/package.nix index 6e74700ef6242..8ad6c4ce19ee9 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 b929684511f99..022f31cbdfdef 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 a79747c0d86e3..4ccd313d352bd 100644 --- a/pkgs/by-name/sw/swiften/package.nix +++ b/pkgs/by-name/sw/swiften/package.nix @@ -83,12 +83,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/swiftshader/package.nix b/pkgs/by-name/sw/swiftshader/package.nix index 6bae629c60301..de463dc952dcd 100644 --- a/pkgs/by-name/sw/swiftshader/package.nix +++ b/pkgs/by-name/sw/swiftshader/package.nix @@ -49,13 +49,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "A high-performance CPU-based implementation of the Vulkan 1.3 graphics API"; homepage = "https://opensource.google/projects/swiftshader"; - license = licenses.asl20; + license = lib.licenses.asl20; # Should be possible to support Darwin by changing the install phase with # 's/Linux/Darwin/' and 's/so/dylib/' or something similar. - platforms = with platforms; linux; + platforms = with lib.platforms; linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sx/sx-go/package.nix b/pkgs/by-name/sx/sx-go/package.nix index 18679532f6176..393f07a6477d6 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 9eb73919e1b46..2d2000a48176a 100644 --- a/pkgs/by-name/sy/sycl-info/package.nix +++ b/pkgs/by-name/sy/sycl-info/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { # 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; - maintainers = with maintainers; [ davidtwco ]; + platforms = lib.platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ davidtwco ]; }; } diff --git a/pkgs/by-name/sy/symbolic-preview/package.nix b/pkgs/by-name/sy/symbolic-preview/package.nix index e49a98c028643..af4ea9f2abbd3 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/symfpu/package.nix b/pkgs/by-name/sy/symfpu/package.nix index f4ba9d4f45588..d154b93bc9238 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 = "A (concrete or symbolic) implementation of IEEE-754 / SMT-LIB floating-point"; 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 c5709e86c1100..3ad9d9ce6e8b3 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/symmetrica/package.nix b/pkgs/by-name/sy/symmetrica/package.nix index e578ccc91e8cd..b4e6bc62c90f3 100644 --- a/pkgs/by-name/sy/symmetrica/package.nix +++ b/pkgs/by-name/sy/symmetrica/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Collection of routines for representation theory and combinatorics"; - license = licenses.isc; - maintainers = teams.sage.members; - platforms = platforms.unix; + license = lib.licenses.isc; + maintainers = lib.teams.sage.members; + platforms = lib.platforms.unix; homepage = "https://gitlab.com/sagemath/symmetrica"; }; } diff --git a/pkgs/by-name/sy/sympa/package.nix b/pkgs/by-name/sy/sympa/package.nix index 83018f0c72e0d..9b70f06637172 100644 --- a/pkgs/by-name/sy/sympa/package.nix +++ b/pkgs/by-name/sy/sympa/package.nix @@ -117,14 +117,14 @@ 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 mmilata ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sy/synapse-admin/package.nix b/pkgs/by-name/sy/synapse-admin/package.nix index e3423b60cf218..57a7fd776df10 100644 --- a/pkgs/by-name/sy/synapse-admin/package.nix +++ b/pkgs/by-name/sy/synapse-admin/package.nix @@ -54,12 +54,12 @@ mkYarnPackage rec { dontFixup = true; dontInstall = true; - meta = with lib; { + meta = { description = "Admin UI for Synapse Homeservers"; homepage = "https://github.com/Awesome-Technologies/synapse-admin"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mkg20001 ma27 ]; diff --git a/pkgs/by-name/sy/synapse/package.nix b/pkgs/by-name/sy/synapse/package.nix index 0ab4e2326c5c7..61d0f8509f912 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/syncall/package.nix b/pkgs/by-name/sy/syncall/package.nix index 9cfcd9599b05d..0e40a2e0612c9 100644 --- a/pkgs/by-name/sy/syncall/package.nix +++ b/pkgs/by-name/sy/syncall/package.nix @@ -65,11 +65,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "syncall" ]; - meta = with lib; { + meta = { description = "Bi-directional synchronization between services such as Taskwarrior, Google Calendar, Notion, Asana, and more"; homepage = "https://github.com/bergercookie/syncall"; - license = licenses.mit; - maintainers = with maintainers; [ raitobezarius ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raitobezarius ]; # Upstream issue making it practically unusable: # https://github.com/bergercookie/syncall/issues/99 broken = true; diff --git a/pkgs/by-name/sy/syncterm/package.nix b/pkgs/by-name/sy/syncterm/package.nix index 12aff4b8ccb22..19b4cbf325ce1 100644 --- a/pkgs/by-name/sy/syncterm/package.nix +++ b/pkgs/by-name/sy/syncterm/package.nix @@ -66,15 +66,15 @@ stdenv.mkDerivation rec { SDL2 ]; # Both of these are dlopen()'ed at runtime. - meta = with lib; { + meta = { # error: unsupported option '-fsanitize=safe-stack' for target 'x86_64-apple-darwin' broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) || stdenv.hostPlatform.isDarwin; homepage = "https://syncterm.bbsdev.net/"; description = "BBS terminal emulator"; mainProgram = "syncterm"; - maintainers = with maintainers; [ embr ]; - platforms = platforms.unix; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ embr ]; + platforms = lib.platforms.unix; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/sy/syntax/package.nix b/pkgs/by-name/sy/syntax/package.nix index 8dffc4b6ed9ea..d7ff7b75c5eae 100644 --- a/pkgs/by-name/sy/syntax/package.nix +++ b/pkgs/by-name/sy/syntax/package.nix @@ -20,11 +20,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/syscall_limiter/package.nix b/pkgs/by-name/sy/syscall_limiter/package.nix index 97a279431df4f..bfd98efece8f8 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/sysklogd/package.nix b/pkgs/by-name/sy/sysklogd/package.nix index b5608c51e3788..5619faee44a86 100644 --- a/pkgs/by-name/sy/sysklogd/package.nix +++ b/pkgs/by-name/sy/sysklogd/package.nix @@ -44,9 +44,9 @@ stdenv.mkDerivation rec { preInstall = "mkdir -p $out/share/man/man5/ $out/share/man/man8/ $out/sbin"; - meta = with lib; { + meta = { description = "System logging daemon"; - platforms = platforms.linux; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/sy/syslinux/package.nix b/pkgs/by-name/sy/syslinux/package.nix index 9e2e10f061bc5..197a58d635352 100644 --- a/pkgs/by-name/sy/syslinux/package.nix +++ b/pkgs/by-name/sy/syslinux/package.nix @@ -136,10 +136,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 1d1dffb6875a5..6081f44677488 100644 --- a/pkgs/by-name/sy/system-syzygy/package.nix +++ b/pkgs/by-name/sy/system-syzygy/package.nix @@ -49,12 +49,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 b604f006cd4b5..a5c86179c20c3 100644 --- a/pkgs/by-name/sy/system76-firmware/package.nix +++ b/pkgs/by-name/sy/system76-firmware/package.nix @@ -51,11 +51,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 e4fc5166a8244..6e0770569b91c 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 d8e0ebe89d585..955497a9fa8b8 100644 --- a/pkgs/by-name/sy/system76-scheduler/package.nix +++ b/pkgs/by-name/sy/system76-scheduler/package.nix @@ -42,16 +42,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 ce599973c5725..821eeeaf3e59e 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 ef1c7a362fe52..3eee17fd65d50 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 2d9e8cf282780..46d3de77379d2 100644 --- a/pkgs/by-name/sy/systemd-journal2gelf/package.nix +++ b/pkgs/by-name/sy/systemd-journal2gelf/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { 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; [ fadenb fpletz ]; diff --git a/pkgs/by-name/sy/systemd-lock-handler/package.nix b/pkgs/by-name/sy/systemd-lock-handler/package.nix index edb4a9028c5bb..79fbce5a06994 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/sz/szyszka/package.nix b/pkgs/by-name/sz/szyszka/package.nix index caccd45c1f233..0cddaa6ccf129 100644 --- a/pkgs/by-name/sz/szyszka/package.nix +++ b/pkgs/by-name/sz/szyszka/package.nix @@ -60,11 +60,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/t1/t1lib/package.nix b/pkgs/by-name/t1/t1lib/package.nix index 6bb91c9d19784..a6d53f6cc7d6d 100644 --- a/pkgs/by-name/t1/t1lib/package.nix +++ b/pkgs/by-name/t1/t1lib/package.nix @@ -62,13 +62,13 @@ stdenv.mkDerivation rec { chmod +x $out/lib/*.so.* ''; - meta = with lib; { + meta = { homepage = "http://www.t1lib.org/"; description = "Type 1 font rasterizer library for UNIX/X11"; - license = with licenses; [ + license = with lib.licenses; [ gpl2 lgpl2 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/t1/t1utils/package.nix b/pkgs/by-name/t1/t1utils/package.nix index 243e35d8c9087..2d6b761af141a 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 d5e07eb4bbde9..f0778491b3ec4 100644 --- a/pkgs/by-name/t4/t4kcommon/package.nix +++ b/pkgs/by-name/t4/t4kcommon/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { libxml2 ]; - meta = with lib; { + meta = { description = "Library of code shared between tuxmath and tuxtype"; homepage = "https://github.com/tux4kids/t4kcommon"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.aanderse ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.aanderse ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ta/tab/package.nix b/pkgs/by-name/ta/tab/package.nix index e719593d8ae08..1c1fad4f1027e 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 53c7e5c187526..3326898505e07 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/tabula-java/package.nix b/pkgs/by-name/ta/tabula-java/package.nix index c0ec2ee26bee4..7bac5951d1d74 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 a818498b627bc..890bf46da84bc 100644 --- a/pkgs/by-name/ta/tacacsplus/package.nix +++ b/pkgs/by-name/ta/tacacsplus/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { libnsl ]; - 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 d093812a5ce76..3be96ad867889 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 2f44619d21b49..a456ac8608148 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/package.nix b/pkgs/by-name/ta/taglib/package.nix index 684a37f0172fb..b1f8a97990c48 100644 --- a/pkgs/by-name/ta/taglib/package.nix +++ b/pkgs/by-name/ta/taglib/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { homepage = "https://taglib.org/"; description = "Library for reading and editing audio file metadata"; mainProgram = "taglib-config"; @@ -42,11 +42,11 @@ stdenv.mkDerivation (finalAttrs: { files, Ogg Vorbis comments and ID3 tags and Vorbis comments in FLAC, MPC, Speex, WavPack, TrueAudio, WAV, AIFF, MP4 and ASF files. ''; - license = with licenses; [ + license = with lib.licenses; [ lgpl3 mpl11 ]; - maintainers = with maintainers; [ ttuegel ]; + maintainers = with lib.maintainers; [ ttuegel ]; pkgConfigModules = [ "taglib" "taglib_c" diff --git a/pkgs/by-name/ta/taglib_extras/package.nix b/pkgs/by-name/ta/taglib_extras/package.nix index 163f9afe3805f..6f9cdf5e7f8c9 100644 --- a/pkgs/by-name/ta/taglib_extras/package.nix +++ b/pkgs/by-name/ta/taglib_extras/package.nix @@ -25,10 +25,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 6910a8f1900d7..947af1e5fd3ef 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 13ec01f5900d1..1905c6be097e0 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-vdmr5n4M+Qe/jzjNdg+sy7q2osTivxmLG+xMTMkEFm4="; - 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 61b2945dd18e5..d13ff04f38c22 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; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + 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 b588cadc12922..31d61829a534e 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/tailer/package.nix b/pkgs/by-name/ta/tailer/package.nix index d9899b7d2cac6..c4c1617b75281 100644 --- a/pkgs/by-name/ta/tailer/package.nix +++ b/pkgs/by-name/ta/tailer/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "CLI tool to insert lines when command output stops"; homepage = "https://github.com/hionay/tailer"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "tailer"; }; } diff --git a/pkgs/by-name/ta/tailor-gui/package.nix b/pkgs/by-name/ta/tailor-gui/package.nix index ab26609fb7dd3..9eb3da09c05a2 100644 --- a/pkgs/by-name/ta/tailor-gui/package.nix +++ b/pkgs/by-name/ta/tailor-gui/package.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation { gtk4 ]; - meta = with lib; { + meta = { description = "Rust GUI for interacting with hardware from TUXEDO Computers"; mainProgram = "tailor_gui"; longDescription = '' @@ -60,11 +60,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-gitops-pusher/package.nix b/pkgs/by-name/ta/tailscale-gitops-pusher/package.nix index 2585741a4814a..d75213b5b41a2 100644 --- a/pkgs/by-name/ta/tailscale-gitops-pusher/package.nix +++ b/pkgs/by-name/ta/tailscale-gitops-pusher/package.nix @@ -27,11 +27,11 @@ buildGo123Module { "-X tailscale.com/version.shortStamp=${tailscale.version}" ]; - meta = with lib; { + meta = { homepage = "https://tailscale.com"; description = "Allows users to use a GitOps flow for managing Tailscale ACLs"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "gitops-pusher"; - maintainers = teams.cyberus.members; + maintainers = lib.teams.cyberus.members; }; } diff --git a/pkgs/by-name/ta/tailscale-nginx-auth/package.nix b/pkgs/by-name/ta/tailscale-nginx-auth/package.nix index 5a5f8e3544479..d30c1e8ec6dc1 100644 --- a/pkgs/by-name/ta/tailscale-nginx-auth/package.nix +++ b/pkgs/by-name/ta/tailscale-nginx-auth/package.nix @@ -27,11 +27,11 @@ buildGo123Module { install -D -m0444 -t $out/lib/systemd/system ./cmd/nginx-auth/tailscale.nginx-auth.socket ''; - meta = with lib; { + meta = { homepage = "https://tailscale.com"; description = "Tool that allows users to use Tailscale Whois authentication with NGINX as a reverse proxy"; - license = licenses.bsd3; + license = lib.licenses.bsd3; mainProgram = "tailscale.nginx-auth"; - maintainers = with maintainers; [ phaer ]; + maintainers = with lib.maintainers; [ phaer ]; }; } diff --git a/pkgs/by-name/ta/tailscale-systray/package.nix b/pkgs/by-name/ta/tailscale-systray/package.nix index 9bff3c33a57eb..56f0b6df9d066 100644 --- a/pkgs/by-name/ta/tailscale-systray/package.nix +++ b/pkgs/by-name/ta/tailscale-systray/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { 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-language-server/package.nix b/pkgs/by-name/ta/tailwindcss-language-server/package.nix index fd56c58586af5..63726653bb462 100644 --- a/pkgs/by-name/ta/tailwindcss-language-server/package.nix +++ b/pkgs/by-name/ta/tailwindcss-language-server/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tailwind CSS Language Server"; homepage = "https://github.com/tailwindlabs/tailwindcss-intellisense"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; mainProgram = "tailwindcss-language-server"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ta/taizen/package.nix b/pkgs/by-name/ta/taizen/package.nix index 1554295613f4b..b8cf7a8c68109 100644 --- a/pkgs/by-name/ta/taizen/package.nix +++ b/pkgs/by-name/ta/taizen/package.nix @@ -43,11 +43,11 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.Security ]; - meta = with lib; { + meta = { description = "curses based mediawiki browser"; homepage = "https://github.com/nerdypepper/taizen"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "taizen"; }; } diff --git a/pkgs/by-name/ta/takao/package.nix b/pkgs/by-name/ta/takao/package.nix index 6b9a13961dad7..98455a392919e 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 648d5e3b48648..2dd21484405a4 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 2a9395a1c41ad..7f8bfcd435a72 100644 --- a/pkgs/by-name/ta/talloc/package.nix +++ b/pkgs/by-name/ta/talloc/package.nix @@ -76,11 +76,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 d48f43af76504..655cc0fc2dd91 100644 --- a/pkgs/by-name/ta/talosctl/package.nix +++ b/pkgs/by-name/ta/talosctl/package.nix @@ -43,11 +43,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 254d1b8a036be..7d559a437cb2b 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 5c7fb003ba3d0..b4c849573e593 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 ${pname}.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/tamsyn/package.nix b/pkgs/by-name/ta/tamsyn/package.nix index 32b2bb91bfebf..a8019b47d0de3 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 632054b9e4d70..dbec84fbc9818 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/tangerine/package.nix b/pkgs/by-name/ta/tangerine/package.nix index 933114e62d7d4..6b645b097cdd3 100644 --- a/pkgs/by-name/ta/tangerine/package.nix +++ b/pkgs/by-name/ta/tangerine/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { SDL2 ]; - 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 3fb877a9a9a7c..15cf5da03b55c 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 28875a45c51f5..c8033f045c4fa 100644 --- a/pkgs/by-name/ta/tangram/package.nix +++ b/pkgs/by-name/ta/tangram/package.nix @@ -88,14 +88,14 @@ 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; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; maintainers = - with maintainers; + with lib.maintainers; [ austinbutler chuangzhu diff --git a/pkgs/by-name/ta/taplo/package.nix b/pkgs/by-name/ta/taplo/package.nix index 4336cf5d2f76f..7550bfcc978a3 100644 --- a/pkgs/by-name/ta/taplo/package.nix +++ b/pkgs/by-name/ta/taplo/package.nix @@ -36,11 +36,11 @@ rustPlatform.buildRustPackage rec { buildFeatures = lib.optional withLsp "lsp"; - meta = with lib; { + meta = { description = "TOML toolkit written in Rust"; homepage = "https://taplo.tamasfe.dev"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "taplo"; }; } diff --git a/pkgs/by-name/ta/taproot-assets/package.nix b/pkgs/by-name/ta/taproot-assets/package.nix index a91bf5c2aa7b7..303cec0b5ae29 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 Taro protocol specification"; homepage = "https://github.com/lightninglabs/taro"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/by-name/ta/tapview/package.nix b/pkgs/by-name/ta/tapview/package.nix index bd9918eb7b750..981e56635eebd 100644 --- a/pkgs/by-name/ta/tapview/package.nix +++ b/pkgs/by-name/ta/tapview/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { makeFlags = [ "prefix=$(out)" ]; - meta = with lib; { + meta = { description = "Minimalist pure consumer for TAP (Test Anything Protocol)"; mainProgram = "tapview"; homepage = "https://gitlab.com/esr/tapview"; - license = licenses.bsd2; - platforms = platforms.all; - maintainers = with maintainers; [ pamplemousse ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pamplemousse ]; }; } diff --git a/pkgs/by-name/ta/tar2ext4/package.nix b/pkgs/by-name/ta/tar2ext4/package.nix index c33f254122318..3fffbfa83104e 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/tarantool/package.nix b/pkgs/by-name/ta/tarantool/package.nix index b38fce77c26a7..e98d7309ca924 100644 --- a/pkgs/by-name/ta/tarantool/package.nix +++ b/pkgs/by-name/ta/tarantool/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { "-DTARANTOOL_VERSION=${version}.builtByNix" # expects the commit hash as well ]; - meta = with lib; { + meta = { description = "In-memory computing platform consisting of a database and an application server"; homepage = "https://www.tarantool.io/"; - license = licenses.bsd2; + license = lib.licenses.bsd2; mainProgram = "tarantool"; - maintainers = with maintainers; [ dit7ya ]; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/ta/target-isns/package.nix b/pkgs/by-name/ta/target-isns/package.nix index aac984c348070..8b9ee3fda6639 100644 --- a/pkgs/by-name/ta/target-isns/package.nix +++ b/pkgs/by-name/ta/target-isns/package.nix @@ -32,12 +32,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/targetcli/package.nix b/pkgs/by-name/ta/targetcli/package.nix index 9498717b22d6d..a3bd32938dfc0 100644 --- a/pkgs/by-name/ta/targetcli/package.nix +++ b/pkgs/by-name/ta/targetcli/package.nix @@ -40,11 +40,11 @@ python3.pkgs.buildPythonApplication rec { inherit (nixosTests) iscsi-root; }; - meta = with lib; { + meta = { description = "Command shell for managing the Linux LIO kernel target"; homepage = "https://github.com/open-iscsi/targetcli-fb"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ta/tarsnapper/package.nix b/pkgs/by-name/ta/tarsnapper/package.nix index b1afa06f6008b..1c49ca75a357c 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 02d7cd8e70cc8..107c8649a2785 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-w1MNsMSGONsAAjyvAHjio2K88j1sqyP1Aqmw3EMya+c="; - 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/tartan/package.nix b/pkgs/by-name/ta/tartan/package.nix index d4e2a4f03286c..ba1bfcb20ee1d 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 48e8c181afaf8..77cada301c2b0 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-xZ3Ki1HLzF7A1+83GQNTBgRjn802Z9ZAKENKB5CykCc="; - 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/taskjuggler/package.nix b/pkgs/by-name/ta/taskjuggler/package.nix index 32c5ab91ede4e..abddd388f6177 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 37c5f5b0bc2c9..12c3b63d79819 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 8507256139e9f..c1160ef22e996 100644 --- a/pkgs/by-name/ta/taskopen/package.nix +++ b/pkgs/by-name/ta/taskopen/package.nix @@ -43,12 +43,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/tasks/package.nix b/pkgs/by-name/ta/tasks/package.nix index 068eb2c2ba937..3d6490f31f043 100644 --- a/pkgs/by-name/ta/tasks/package.nix +++ b/pkgs/by-name/ta/tasks/package.nix @@ -87,12 +87,12 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Simple task management application for the COSMIC desktop"; homepage = "https://github.com/edfloreshz/tasks"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ GaetanLepage ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ GaetanLepage ]; + platforms = lib.platforms.linux; mainProgram = "tasks"; }; } diff --git a/pkgs/by-name/ta/tasksh/package.nix b/pkgs/by-name/ta/tasksh/package.nix index 55a4f6f7e8541..dddcae60b1922 100644 --- a/pkgs/by-name/ta/tasksh/package.nix +++ b/pkgs/by-name/ta/tasksh/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { buildInputs = [ readline ]; nativeBuildInputs = [ cmake ]; - 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 ae326ac013392..fb31c67caa8c4 100644 --- a/pkgs/by-name/ta/taskspooler/package.nix +++ b/pkgs/by-name/ta/taskspooler/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { --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 de2cdc50fe712..3a9403813ab68 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 ba4a34ab062c4..2aed10d9f9a18 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 151a2f1341600..16d2bf7511f00 100644 --- a/pkgs/by-name/ta/taskwarrior2/package.nix +++ b/pkgs/by-name/ta/taskwarrior2/package.nix @@ -56,15 +56,15 @@ 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 ]; 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 745d7638e5bac..dcbb912ca118f 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/tayga/package.nix b/pkgs/by-name/ta/tayga/package.nix index bc60524649389..adaeb7c5c2327 100644 --- a/pkgs/by-name/ta/tayga/package.nix +++ b/pkgs/by-name/ta/tayga/package.nix @@ -21,7 +21,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 @@ -31,9 +31,9 @@ stdenv.mkDerivation (finalAttrs: { for networks where dedicated NAT64 hardware would be overkill. ''; homepage = "http://www.litech.org/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 f1190af01cd27..fab39803b42f5 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; [ rewine ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rewine ]; }; } diff --git a/pkgs/by-name/tc/tcat/package.nix b/pkgs/by-name/tc/tcat/package.nix index 25c826e703261..ed041e0c0e535 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/tcp-cutter/package.nix b/pkgs/by-name/tc/tcp-cutter/package.nix index 9ca1a2dd1399d..76275acd20582 100644 --- a/pkgs/by-name/tc/tcp-cutter/package.nix +++ b/pkgs/by-name/tc/tcp-cutter/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { install -D -m 0755 cutter $out/bin/tcp-cutter ''; - meta = with lib; { + meta = { description = "TCP/IP Connection cutting on Linux Firewalls and Routers"; homepage = "http://www.digitage.co.uk/digitage/software/linux-security/cutter"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = [ maintainers.offline ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.offline ]; mainProgram = "tcp-cutter"; }; } diff --git a/pkgs/by-name/tc/tcpcrypt/package.nix b/pkgs/by-name/tc/tcpcrypt/package.nix index bf9552a1ee458..4b1a77e12a568 100644 --- a/pkgs/by-name/tc/tcpcrypt/package.nix +++ b/pkgs/by-name/tc/tcpcrypt/package.nix @@ -44,11 +44,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/tcpdump/package.nix b/pkgs/by-name/tc/tcpdump/package.nix index 4c46ced1dec55..39d223fb4bfb1 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 fa6769438c2b9..d70bf0621e210 100644 --- a/pkgs/by-name/tc/tcpflow/package.nix +++ b/pkgs/by-name/tc/tcpflow/package.nix @@ -47,7 +47,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 @@ -55,12 +55,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 47628d34656ed..d1c8366e460aa 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/tcptrack/package.nix b/pkgs/by-name/tc/tcptrack/package.nix index 2c54223cc75cf..319cd056e6e93 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/tdfgo/package.nix b/pkgs/by-name/td/tdfgo/package.nix index 07e0d2721c6c4..798207f7684b3 100644 --- a/pkgs/by-name/td/tdfgo/package.nix +++ b/pkgs/by-name/td/tdfgo/package.nix @@ -17,13 +17,13 @@ buildGoModule rec { 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 3eca5012ea1f3..e96c08f72d708 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/tdns-cli/package.nix b/pkgs/by-name/td/tdns-cli/package.nix index 2683afb4491e2..069a68f041563 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 rec { cargoHash = "sha256-uRny+l/LaQPjF5AnbxgKFLdjuAxcez1BqsL4g54KAwU="; - 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 017f72e44fac4..9f5a23e8ec56c 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 72a8455a41692..baf30b1fe073c 100644 --- a/pkgs/by-name/te/tea/package.nix +++ b/pkgs/by-name/te/tea/package.nix @@ -18,11 +18,11 @@ buildGoModule rec { vendorHash = "sha256-nb0lQEAaIYlGpodFQLhMk/24DmTgg5K3zQ4s/XY+Z1w="; - 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 3d029f8e8ece2..2705044e27f4e 100644 --- a/pkgs/by-name/te/tealdeer/package.nix +++ b/pkgs/by-name/te/tealdeer/package.nix @@ -39,15 +39,15 @@ rustPlatform.buildRustPackage rec { "--skip test_update_cache" ]; - meta = with lib; { + meta = { description = "Very fast implementation of tldr in Rust"; homepage = "https://github.com/dbrgn/tealdeer"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ davidak newam mfrw ]; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/by-name/te/teavpn2/package.nix b/pkgs/by-name/te/teavpn2/package.nix index 98c35cc2fcbac..487ab7cf1cfe3 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/tebreak/package.nix b/pkgs/by-name/te/tebreak/package.nix index 47587b1a8c22c..ca465b2284e4a 100644 --- a/pkgs/by-name/te/tebreak/package.nix +++ b/pkgs/by-name/te/tebreak/package.nix @@ -46,12 +46,12 @@ python3.pkgs.buildPythonApplication rec { ${python3.interpreter} checktest.py ''; - meta = with lib; { + meta = { description = "Find and characterise transposable element insertions"; mainProgram = "tebreak"; homepage = "https://github.com/adamewing/tebreak"; - license = licenses.mit; - maintainers = with maintainers; [ jbedo ]; - platforms = platforms.x86_64; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jbedo ]; + platforms = lib.platforms.x86_64; }; } diff --git a/pkgs/by-name/te/techmino/ccloader.nix b/pkgs/by-name/te/techmino/ccloader.nix index ff312555d7918..010ecf59e6db0 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 9b97740337a21..fd805ef21d503 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/tecnoballz/package.nix b/pkgs/by-name/te/tecnoballz/package.nix index 82ca81b832938..a8df434d8aa24 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/ted/package.nix b/pkgs/by-name/te/ted/package.nix index 78edd65d50963..2c4d67ef551f6 100644 --- a/pkgs/by-name/te/ted/package.nix +++ b/pkgs/by-name/te/ted/package.nix @@ -95,7 +95,7 @@ stdenv.mkDerivation rec { libpaper ]; - meta = with lib; { + meta = { description = "An easy rich text processor"; longDescription = '' Ted is a text processor running under X Windows on Unix/Linux systems. @@ -110,9 +110,9 @@ stdenv.mkDerivation rec { Acrobat PDF converter. ''; homepage = "https://nllgg.nl/Ted/"; - license = licenses.gpl2Only; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; - maintainers = with maintainers; [ obadz ]; + maintainers = with lib.maintainers; [ obadz ]; }; } diff --git a/pkgs/by-name/te/teensy-cmake-macros/package.nix b/pkgs/by-name/te/teensy-cmake-macros/package.nix index 85365cd63f8e1..a735fd676df59 100644 --- a/pkgs/by-name/te/teensy-cmake-macros/package.nix +++ b/pkgs/by-name/te/teensy-cmake-macros/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - 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 ab668e7527d68..9288d335dfeca 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/tegaki-zinnia-japanese/package.nix b/pkgs/by-name/te/tegaki-zinnia-japanese/package.nix index ab4a8ef28c9ee..d93cd71b061d5 100644 --- a/pkgs/by-name/te/tegaki-zinnia-japanese/package.nix +++ b/pkgs/by-name/te/tegaki-zinnia-japanese/package.nix @@ -14,12 +14,12 @@ stdenv.mkDerivation { sha256 = "1nmg9acxhcqly9gwkyb9m0hpy76fll91ywk4b1q4xms0ajxip1h7"; }; - meta = with lib; { + meta = { description = "Japanese handwriting model for the Zinnia engine"; homepage = "http://tegaki.org/"; - license = licenses.lgpl21; - platforms = platforms.unix; - maintainers = [ maintainers.gebner ]; + license = lib.licenses.lgpl21; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.gebner ]; }; nativeBuildInputs = [ unzip ]; diff --git a/pkgs/by-name/te/telepathy-farstream/package.nix b/pkgs/by-name/te/telepathy-farstream/package.nix index e011327e6755e..4ef90c492e847 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-gabble/package.nix b/pkgs/by-name/te/telepathy-gabble/package.nix index 560d83c604bb8..4a3e627ae78f8 100644 --- a/pkgs/by-name/te/telepathy-gabble/package.nix +++ b/pkgs/by-name/te/telepathy-gabble/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; doCheck = true; - meta = with lib; { + meta = { description = "Jabber/XMPP connection manager for the Telepathy framework"; mainProgram = "telepathy-gabble-xmpp-console"; homepage = "https://telepathy.freedesktop.org/components/telepathy-gabble/"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/te/telepathy-glib/package.nix b/pkgs/by-name/te/telepathy-glib/package.nix index a04cf25b7bcdc..d369a952b22a1 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-logger/package.nix b/pkgs/by-name/te/telepathy-logger/package.nix index e60aca4e8bf08..b4319eb593dc0 100644 --- a/pkgs/by-name/te/telepathy-logger/package.nix +++ b/pkgs/by-name/te/telepathy-logger/package.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation rec { --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" ''; - meta = with lib; { + meta = { description = "Logger service for Telepathy framework"; homepage = "https://telepathy.freedesktop.org/components/telepathy-logger/"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/te/telepathy-mission-control/package.nix b/pkgs/by-name/te/telepathy-mission-control/package.nix index 616b138ffde8c..e1040e183210d 100644 --- a/pkgs/by-name/te/telepathy-mission-control/package.nix +++ b/pkgs/by-name/te/telepathy-mission-control/package.nix @@ -56,11 +56,11 @@ 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; }; } diff --git a/pkgs/by-name/te/telepresence2/package.nix b/pkgs/by-name/te/telepresence2/package.nix index 196b04983ca28..5ad36a120ad9b 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 ]; diff --git a/pkgs/by-name/te/telescope/package.nix b/pkgs/by-name/te/telescope/package.nix index 9082b908317b9..eff7c781770bd 100644 --- a/pkgs/by-name/te/telescope/package.nix +++ b/pkgs/by-name/te/telescope/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { "HOSTCC=${buildPackages.stdenv.cc}/bin/${buildPackages.stdenv.cc.targetPrefix}cc" ]; - meta = with lib; { + meta = { description = "Telescope is a w3m-like browser for Gemini"; homepage = "https://www.telescope-browser.org/"; - license = licenses.isc; - maintainers = with maintainers; [ heph2 ]; - platforms = platforms.unix; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ heph2 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/te/televido/package.nix b/pkgs/by-name/te/televido/package.nix index bf82f2a107c90..e1be76a05efaf 100644 --- a/pkgs/by-name/te/televido/package.nix +++ b/pkgs/by-name/te/televido/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { desktop-file-utils ]; - meta = with lib; { + meta = { description = "Viewer for German-language public broadcasting live streams and archives"; homepage = "https://github.com/d-k-bo/televido"; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = "televido"; - maintainers = with maintainers; [ seineeloquenz ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ seineeloquenz ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/te/teller/package.nix b/pkgs/by-name/te/teller/package.nix index 21eb39d6558a2..818d9f65b6b21 100644 --- a/pkgs/by-name/te/teller/package.nix +++ b/pkgs/by-name/te/teller/package.nix @@ -44,12 +44,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 cef7a7a343052..f503ae55489ac 100644 --- a/pkgs/by-name/te/template-glib/package.nix +++ b/pkgs/by-name/te/template-glib/package.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation rec { }; }; - 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; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/te/tempo/package.nix b/pkgs/by-name/te/tempo/package.nix index e9c48eb9505f5..4568313e9f765 100644 --- a/pkgs/by-name/te/tempo/package.nix +++ b/pkgs/by-name/te/tempo/package.nix @@ -40,10 +40,10 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "High volume, minimal dependency trace storage"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://grafana.com/oss/tempo/"; - maintainers = with maintainers; [ willibutz ]; + maintainers = with lib.maintainers; [ willibutz ]; }; } diff --git a/pkgs/by-name/te/temporalite/package.nix b/pkgs/by-name/te/temporalite/package.nix index 578f81790a26a..0a1bc5c78df42 100644 --- a/pkgs/by-name/te/temporalite/package.nix +++ b/pkgs/by-name/te/temporalite/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { --replace "TestMTLSConfig" "SkipMTLSConfig" ''; - meta = with lib; { + meta = { description = "Experimental distribution of Temporal that runs as a single process"; mainProgram = "temporalite"; homepage = "https://github.com/temporalio/temporalite"; - license = licenses.mit; - maintainers = with maintainers; [ lucperkins ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lucperkins ]; }; } diff --git a/pkgs/by-name/te/tenacity/package.nix b/pkgs/by-name/te/tenacity/package.nix index 645549e63b36e..f4a34c89a2d15 100644 --- a/pkgs/by-name/te/tenacity/package.nix +++ b/pkgs/by-name/te/tenacity/package.nix @@ -152,12 +152,12 @@ stdenv.mkDerivation rec { "-DCMAKE_SKIP_BUILD_RPATH=ON" ]; - meta = with lib; { + meta = { description = "Sound editor with graphical UI"; mainProgram = "tenacity"; homepage = "https://tenacityaudio.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ irenes ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ irenes ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/te/tenderness/package.nix b/pkgs/by-name/te/tenderness/package.nix index 59d0fa5f6114b..a5e1c97180d3f 100644 --- a/pkgs/by-name/te/tenderness/package.nix +++ b/pkgs/by-name/te/tenderness/package.nix @@ -26,14 +26,14 @@ 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; [ leenaars 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 9832e910d0785..233fa5f9007c2 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-3SdOUSSerTnA9VHZEmFt1LiatLwC7Dq4k/MKstE8x80="; - 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/tennix/package.nix b/pkgs/by-name/te/tennix/package.nix index ab6e4596aaef8..a6bb0536d8f2c 100644 --- a/pkgs/by-name/te/tennix/package.nix +++ b/pkgs/by-name/te/tennix/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { ./configure --prefix $out ''; - meta = with lib; { + meta = { homepage = "https://icculus.org/tennix/"; description = "Classic Championship Tour 2011"; mainProgram = "tennix"; - 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/te/tensorman/package.nix b/pkgs/by-name/te/tensorman/package.nix index 03e372ac0b0d6..2089e446506d7 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-y/AE2jTVetqBBExBlPEB0LwIVk+LjB2i0ZjijLPs9js="; - 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/tera-cli/package.nix b/pkgs/by-name/te/tera-cli/package.nix index 8c90c78113068..c0cbb48ae8749 100644 --- a/pkgs/by-name/te/tera-cli/package.nix +++ b/pkgs/by-name/te/tera-cli/package.nix @@ -16,12 +16,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-aG0J9hnkGvz42gOczU3uF3GsmKZWgrLtx8lXOkDwt0c="; - meta = with lib; { + meta = { description = "Command line utility to render templates from json|toml|yaml and ENV, using the tera templating engine"; homepage = "https://github.com/chevdor/tera-cli"; - license = licenses.mit; - maintainers = with maintainers; [ _365tuwe ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ _365tuwe ]; mainProgram = "tera"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/te/tere/package.nix b/pkgs/by-name/te/tere/package.nix index a0af183e197f1..3a8a27342181e 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 b5139a1af97e4..06c3d8f25cbc0 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 f0f797b75f54b..2c6e0943419e7 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 6741ffdb44704..eac4ca2b82109 100644 --- a/pkgs/by-name/te/termcolor/package.nix +++ b/pkgs/by-name/te/termcolor/package.nix @@ -32,11 +32,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 342781555a54f..4bf12bf902c10 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 332e22a195dc9..892d55e032b34 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 60853bfc40986..1f4e97ec2715e 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 f3e7cec81db3e..46d762bfbdf0e 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 74932e87cad8b..c2e225491bf25 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/terminus_font_ttf/package.nix b/pkgs/by-name/te/terminus_font_ttf/package.nix index a68c7952c1142..e674d8803e2e7 100644 --- a/pkgs/by-name/te/terminus_font_ttf/package.nix +++ b/pkgs/by-name/te/terminus_font_ttf/package.nix @@ -26,14 +26,14 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Clean fixed width TTF font"; longDescription = '' Monospaced bitmap font designed for long work with computers (TTF version, mainly for Java applications) ''; homepage = "https://files.ax86.net/terminus-ttf"; - license = licenses.ofl; + license = lib.licenses.ofl; maintainers = [ ]; }; } diff --git a/pkgs/by-name/te/termplay/package.nix b/pkgs/by-name/te/termplay/package.nix index 79fcd6f03687b..c634cb3841194 100644 --- a/pkgs/by-name/te/termplay/package.nix +++ b/pkgs/by-name/te/termplay/package.nix @@ -36,12 +36,12 @@ rustPlatform.buildRustPackage rec { wrapProgram $out/bin/termplay --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" ''; - meta = with lib; { + meta = { description = "Play an image/video in your terminal"; homepage = "https://jd91mzm2.github.io/termplay/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "termplay"; }; } diff --git a/pkgs/by-name/te/termshark/package.nix b/pkgs/by-name/te/termshark/package.nix index 4e8439fa03292..3e14bd7b83ebe 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 df4dfd3020f48..bae83fd490710 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-Q1FTVaFZzJJNQg6FDOaPpRCpPgw2EPQsnb8o6dSoVWw="; - 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 7d898ae942170..a8c1d96a757a6 100644 --- a/pkgs/by-name/te/termsonic/package.nix +++ b/pkgs/by-name/te/termsonic/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { 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 9726eeb444747..f3824f5a4461e 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 5ab5b9b2907a2..dbac95f96fb88 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 09b13dd744593..e2754e99cd9e5 100644 --- a/pkgs/by-name/te/termtekst/package.nix +++ b/pkgs/by-name/te/termtekst/package.nix @@ -28,7 +28,7 @@ python3Packages.buildPythonApplication rec { --replace "locale.setlocale" "#locale.setlocale" ''; - meta = with lib; { + meta = { description = "Console NOS Teletekst viewer in Python"; mainProgram = "tt"; longDescription = '' @@ -38,8 +38,8 @@ python3Packages.buildPythonApplication rec { as a workaround the braille set is abused to approximate the graphics. ''; - license = licenses.mit; - maintainers = with maintainers; [ leenaars ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ leenaars ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/te/termtosvg/package.nix b/pkgs/by-name/te/termtosvg/package.nix index 8904dc581a14c..760d8989eca7d 100644 --- a/pkgs/by-name/te/termtosvg/package.nix +++ b/pkgs/by-name/te/termtosvg/package.nix @@ -19,10 +19,10 @@ python3Packages.buildPythonApplication rec { wcwidth ]; - 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 9cc16d1e198fc..a5244c96ce069 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/terraform-docs/package.nix b/pkgs/by-name/te/terraform-docs/package.nix index 33c9620d541b9..13b830a15de6f 100644 --- a/pkgs/by-name/te/terraform-docs/package.nix +++ b/pkgs/by-name/te/terraform-docs/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { installShellCompletion terraform-docs.{bash,fish,zsh} ''; - 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; [ zimbatm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm ]; }; } diff --git a/pkgs/by-name/te/terraform-inventory/package.nix b/pkgs/by-name/te/terraform-inventory/package.nix index aeec2b66e1f57..6c61f93067c1c 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-local/package.nix b/pkgs/by-name/te/terraform-local/package.nix index 34f636cb9e55c..1a1b51ca1ebc0 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 385aca330aaa7..ac0130d231050 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 25d9083c861b4..69dcc0a6831a9 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; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/te/terranix/package.nix b/pkgs/by-name/te/terranix/package.nix index 65f1d715154c7..e80c9e3c1bbe7 100644 --- a/pkgs/by-name/te/terranix/package.nix +++ b/pkgs/by-name/te/terranix/package.nix @@ -33,11 +33,11 @@ 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; [ mrVanDalo ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ mrVanDalo ]; }; } diff --git a/pkgs/by-name/te/terrapin-scanner/package.nix b/pkgs/by-name/te/terrapin-scanner/package.nix index ab4e3cf6d4cdc..89cea44120439 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 babfa76a6051c..5129241700cd3 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/tes3cmd/package.nix b/pkgs/by-name/te/tes3cmd/package.nix index 2c7b244cb8ff4..6b23ac4d8a83a 100644 --- a/pkgs/by-name/te/tes3cmd/package.nix +++ b/pkgs/by-name/te/tes3cmd/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { 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 21c22f3a2cc0d..4f5c1e016d72d 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://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/test-drive/package.nix b/pkgs/by-name/te/test-drive/package.nix index 5737fd3136549..57c4e3445fcbd 100644 --- a/pkgs/by-name/te/test-drive/package.nix +++ b/pkgs/by-name/te/test-drive/package.nix @@ -31,14 +31,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 26197d6df2a6d..324b3f235422f 100644 --- a/pkgs/by-name/te/testssl/package.nix +++ b/pkgs/by-name/te/testssl/package.nix @@ -45,15 +45,15 @@ 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; - maintainers = with maintainers; [ etu ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ etu ]; mainProgram = "testssl.sh"; }; } diff --git a/pkgs/by-name/te/tetraproc/package.nix b/pkgs/by-name/te/tetraproc/package.nix index 915954bea5770..685f6d43f448f 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/tevent/package.nix b/pkgs/by-name/te/tevent/package.nix index ef2a8dd47d3d0..7be723fab1fe9 100644 --- a/pkgs/by-name/te/tevent/package.nix +++ b/pkgs/by-name/te/tevent/package.nix @@ -67,10 +67,10 @@ stdenv.mkDerivation rec { # module, which works correctly in all cases. PYTHON_CONFIG = "/invalid"; - 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 1a526edaf90de..eb4423bb066e2 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 cf08d8f9c2b82..14c465f065e9d 100644 --- a/pkgs/by-name/te/tewisay/package.nix +++ b/pkgs/by-name/te/tewisay/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { 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 ]; - maintainers = with maintainers; [ Madouura ]; + license = with lib.licenses; [ cc0 ]; + maintainers = with lib.maintainers; [ Madouura ]; mainProgram = "tewisay"; }; } diff --git a/pkgs/by-name/te/texi2html/package.nix b/pkgs/by-name/te/texi2html/package.nix index 5d3a09642116c..e7526fcc34527 100644 --- a/pkgs/by-name/te/texi2html/package.nix +++ b/pkgs/by-name/te/texi2html/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Perl script which converts Texinfo source files to HTML output"; mainProgram = "texi2html"; homepage = "https://www.nongnu.org/texi2html/"; - license = licenses.gpl2; - maintainers = [ maintainers.marcweber ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.marcweber ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/te/texi2mdoc/package.nix b/pkgs/by-name/te/texi2mdoc/package.nix index ba806fede6a44..ec930d10e88c6 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/text-engine/package.nix b/pkgs/by-name/te/text-engine/package.nix index 434cdbb783269..915a211d445ed 100644 --- a/pkgs/by-name/te/text-engine/package.nix +++ b/pkgs/by-name/te/text-engine/package.nix @@ -45,14 +45,14 @@ stdenv.mkDerivation rec { libxml2 ]; - meta = with lib; { + meta = { description = "Rich text framework for GTK"; mainProgram = "text-engine-demo"; homepage = "https://github.com/mjakeman/text-engine"; - license = with licenses; [ + license = with lib.licenses; [ mpl20 lgpl21Plus ]; - maintainers = with maintainers; [ foo-dogsquared ]; + maintainers = with lib.maintainers; [ foo-dogsquared ]; }; } diff --git a/pkgs/by-name/te/textplots/package.nix b/pkgs/by-name/te/textplots/package.nix index add6164cddd14..4bf9baf3bc866 100644 --- a/pkgs/by-name/te/textplots/package.nix +++ b/pkgs/by-name/te/textplots/package.nix @@ -17,11 +17,11 @@ 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "textplots"; }; } diff --git a/pkgs/by-name/te/textql/package.nix b/pkgs/by-name/te/textql/package.nix index 5fd051922ed72..a08950a086a79 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/textual-paint/package.nix b/pkgs/by-name/te/textual-paint/package.nix index a512c4e173b71..5f140aa520766 100644 --- a/pkgs/by-name/te/textual-paint/package.nix +++ b/pkgs/by-name/te/textual-paint/package.nix @@ -71,11 +71,11 @@ python.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "textual_paint" ]; - meta = with lib; { + meta = { description = "TUI image editor inspired by MS Paint"; homepage = "https://github.com/1j01/textual-paint"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "textual-paint"; }; } diff --git a/pkgs/by-name/te/texture-synthesis/package.nix b/pkgs/by-name/te/texture-synthesis/package.nix index d7ff4b6e401bf..d8276d6e1b76c 100644 --- a/pkgs/by-name/te/texture-synthesis/package.nix +++ b/pkgs/by-name/te/texture-synthesis/package.nix @@ -26,14 +26,14 @@ 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "texture-synthesis"; }; } diff --git a/pkgs/by-name/tf/tf-summarize/package.nix b/pkgs/by-name/tf/tf-summarize/package.nix index 29da31f6e66b4..3e5f2536eba1b 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 37b1ac9bfe2e5..4d8237951d94a 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 97eb4ba2054af..be4f0a2c742de 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 bbf820716b88d..70f4adbec980f 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. @@ -48,7 +48,7 @@ buildGoModule rec { * Strip out server side fields when piping kubectl get $R -o yaml | tfk8s --strip ''; homepage = "https://github.com/jrhouston/tfk8s/"; - maintainers = with maintainers; [ bryanasdev000 ]; + maintainers = with lib.maintainers; [ bryanasdev000 ]; mainProgram = "tfk8s"; }; } diff --git a/pkgs/by-name/tf/tfswitch/package.nix b/pkgs/by-name/tf/tfswitch/package.nix index 5622d2c5b0d74..176867fa47da4 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 = "A 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 8a41255c83983..f48ba95a8ce96 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 rec { 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/tg/tgswitch/package.nix b/pkgs/by-name/tg/tgswitch/package.nix index bfa533b26815d..2c9b30b358521 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/th/thc-ipv6/package.nix b/pkgs/by-name/th/thc-ipv6/package.nix index c28e42efb7646..d252cb05fe2e6 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/the-powder-toy/package.nix b/pkgs/by-name/th/the-powder-toy/package.nix index 6f71e976eeff6..d87979c93cd23 100644 --- a/pkgs/by-name/th/the-powder-toy/package.nix +++ b/pkgs/by-name/th/the-powder-toy/package.nix @@ -61,12 +61,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; [ abbradar siraben ]; diff --git a/pkgs/by-name/th/theano/package.nix b/pkgs/by-name/th/theano/package.nix index f3050f15c2606..972924099bf87 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 97c56847006a6..db972a61d5346 100644 --- a/pkgs/by-name/th/theft/package.nix +++ b/pkgs/by-name/th/theft/package.nix @@ -31,12 +31,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/theme-jade1/package.nix b/pkgs/by-name/th/theme-jade1/package.nix index 9486940a6046f..eb4483b777bc1 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 25bd7ccbb554e..dba23e14ad37e 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 653bf7b148a60..fe5866fa7cc02 100644 --- a/pkgs/by-name/th/theme-sh/package.nix +++ b/pkgs/by-name/th/theme-sh/package.nix @@ -38,12 +38,12 @@ 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "theme.sh"; }; } diff --git a/pkgs/by-name/th/theme-vertex/package.nix b/pkgs/by-name/th/theme-vertex/package.nix index 7ff73b4cbe8c2..85674ea45398a 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 c62d5a5875ffa..4a362e3b1ab8d 100644 --- a/pkgs/by-name/th/themechanger/package.nix +++ b/pkgs/by-name/th/themechanger/package.nix @@ -51,7 +51,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"; @@ -60,8 +60,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/thepeg/package.nix b/pkgs/by-name/th/thepeg/package.nix index 32d72e288e87e..2c5229c69ca34 100644 --- a/pkgs/by-name/th/thepeg/package.nix +++ b/pkgs/by-name/th/thepeg/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Toolkit for High Energy Physics Event Generation"; 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; }; } diff --git a/pkgs/by-name/th/thermald/package.nix b/pkgs/by-name/th/thermald/package.nix index 590b813f66441..d04aa9454a325 100644 --- a/pkgs/by-name/th/thermald/package.nix +++ b/pkgs/by-name/th/thermald/package.nix @@ -66,16 +66,16 @@ 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" ]; - maintainers = with maintainers; [ abbradar ]; + maintainers = with lib.maintainers; [ abbradar ]; mainProgram = "thermald"; }; } diff --git a/pkgs/by-name/th/thicket/package.nix b/pkgs/by-name/th/thicket/package.nix index 2388281a9ce88..882488ce28eb9 100644 --- a/pkgs/by-name/th/thicket/package.nix +++ b/pkgs/by-name/th/thicket/package.nix @@ -22,11 +22,11 @@ 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; - maintainers = with maintainers; [ Br1ght0ne ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Br1ght0ne ]; mainProgram = "thicket"; }; } diff --git a/pkgs/by-name/th/thiefmd/package.nix b/pkgs/by-name/th/thiefmd/package.nix index 45ecb8651d6df..0436b86f8dc55 100644 --- a/pkgs/by-name/th/thiefmd/package.nix +++ b/pkgs/by-name/th/thiefmd/package.nix @@ -60,13 +60,13 @@ stdenv.mkDerivation rec { webkitgtk_4_1 ]; - meta = with lib; { + meta = { description = "Markdown & Fountain editor that helps with organization and management"; homepage = "https://thiefmd.com"; downloadPage = "https://github.com/kmwallio/ThiefMD"; mainProgram = "com.github.kmwallio.thiefmd"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ aleksana ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ aleksana ]; }; } diff --git a/pkgs/by-name/th/thin-provisioning-tools/package.nix b/pkgs/by-name/th/thin-provisioning-tools/package.nix index 0a1910c406665..32e3a66797ce9 100644 --- a/pkgs/by-name/th/thin-provisioning-tools/package.nix +++ b/pkgs/by-name/th/thin-provisioning-tools/package.nix @@ -67,11 +67,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 608e59c20f784..33555f5ccf300 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 584446db00f82..d2ae7ea8ae32f 100644 --- a/pkgs/by-name/th/thokr/package.nix +++ b/pkgs/by-name/th/thokr/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-gEpmXyLmw6bX3enA3gNVtXNMlkQl6J/8AwJQSY0RtFw="; - meta = with lib; { + meta = { description = "Typing tui with visualized results and historical logging"; homepage = "https://github.com/thatvegandev/thokr"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "thokr"; }; } diff --git a/pkgs/by-name/th/threema-desktop/package.nix b/pkgs/by-name/th/threema-desktop/package.nix index 1ed7fe3c93503..efaa662ff137a 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 = [ ]; platforms = [ "x86_64-linux" ]; diff --git a/pkgs/by-name/th/thud/package.nix b/pkgs/by-name/th/thud/package.nix index 6e867d7ce43cb..fca2d32c133ae 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 f4f4015c8ed4f..0af373e446694 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 1f8583b81d746..08c6ca77d5d9c 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 c95dd5d670a5d..50f8b2be618b0 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/tidb/package.nix b/pkgs/by-name/ti/tidb/package.nix index 6a1bf3cde948b..b7b116ca8215e 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/tidyp/package.nix b/pkgs/by-name/ti/tidyp/package.nix index 0bcc6af535abb..36b63cdcfdd20 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 f3a7f06dca1da..3dad83a45948d 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 a61389c9b4867..8f5e90a023acb 100644 --- a/pkgs/by-name/ti/tig/package.nix +++ b/pkgs/by-name/ti/tig/package.nix @@ -76,18 +76,18 @@ 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 domenkozar 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/tile38/package.nix b/pkgs/by-name/ti/tile38/package.nix index 174d2a4f22962..7abad70d7d194 100644 --- a/pkgs/by-name/ti/tile38/package.nix +++ b/pkgs/by-name/ti/tile38/package.nix @@ -28,14 +28,14 @@ buildGoModule rec { "-X github.com/tidwall/tile38/core.Version=${version}" ]; - meta = with lib; { + meta = { description = "Real-time Geospatial and Geofencing"; longDescription = '' Tile38 is an in-memory geolocation data store, spatial index, and realtime geofence. It supports a variety of object types including lat/lon points, bounding boxes, XYZ tiles, Geohashes, and GeoJSON. ''; homepage = "https://tile38.com/"; - license = licenses.mit; - maintainers = teams.geospatial.members; + license = lib.licenses.mit; + maintainers = lib.teams.geospatial.members; }; } diff --git a/pkgs/by-name/ti/tiledb/package.nix b/pkgs/by-name/ti/tiledb/package.nix index ca15cf16221e1..e9a673765cbbb 100644 --- a/pkgs/by-name/ti/tiledb/package.nix +++ b/pkgs/by-name/ti/tiledb/package.nix @@ -124,11 +124,11 @@ stdenv.mkDerivation rec { install_name_tool -add_rpath ${tbb}/lib $out/lib/libtiledb.dylib ''; - meta = with lib; { + meta = { description = "TileDB allows you to manage the massive dense and sparse multi-dimensional array data"; homepage = "https://github.com/TileDB-Inc/TileDB"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ rakesh4g ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ rakesh4g ]; }; } diff --git a/pkgs/by-name/ti/tilix/package.nix b/pkgs/by-name/ti/tilix/package.nix index 4ede51c57fcdf..d46c6a5a0935f 100644 --- a/pkgs/by-name/ti/tilix/package.nix +++ b/pkgs/by-name/ti/tilix/package.nix @@ -64,15 +64,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 2991c2bfcd274..cc4074191d057 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/time-ghc-modules/package.nix b/pkgs/by-name/ti/time-ghc-modules/package.nix index e4dbe40b46cde..a0a55a7895627 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 091ad288ddc26..df8cdcbf7b75d 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 feda76a76bc63..6692090e76485 100644 --- a/pkgs/by-name/ti/timelimit/package.nix +++ b/pkgs/by-name/ti/timelimit/package.nix @@ -23,12 +23,12 @@ 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "timelimit"; }; } diff --git a/pkgs/by-name/ti/timeline/package.nix b/pkgs/by-name/ti/timeline/package.nix index a3ca865e83e69..a204754926dc4 100644 --- a/pkgs/by-name/ti/timeline/package.nix +++ b/pkgs/by-name/ti/timeline/package.nix @@ -91,16 +91,16 @@ python3.pkgs.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { homepage = "https://thetimelineproj.sourceforge.net/"; changelog = "https://thetimelineproj.sourceforge.net/changelog.html"; description = "Display and navigate information on a timeline"; mainProgram = "timeline"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Only cc-by-sa-30 ]; - platforms = with platforms; unix; - maintainers = with maintainers; [ davidak ]; + platforms = with lib.platforms; unix; + maintainers = with lib.maintainers; [ davidak ]; }; } diff --git a/pkgs/by-name/ti/timer/package.nix b/pkgs/by-name/ti/timer/package.nix index c5b78c80b3f02..8cfe76a64edfa 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 f30b25165dace..6424001b4a817 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-parallel-copy/package.nix b/pkgs/by-name/ti/timescaledb-parallel-copy/package.nix index 9d855cbff76ea..74c17aa2fecb8 100644 --- a/pkgs/by-name/ti/timescaledb-parallel-copy/package.nix +++ b/pkgs/by-name/ti/timescaledb-parallel-copy/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-muxtr80EjnRoHG/TCEQwrBwlnARsfqWoYlR0HavMe6U="; - meta = with lib; { + meta = { description = "Bulk, parallel insert of CSV records into PostgreSQL"; mainProgram = "timescaledb-parallel-copy"; homepage = "https://github.com/timescale/timescaledb-parallel-copy"; - license = licenses.asl20; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/ti/timescaledb-tune/package.nix b/pkgs/by-name/ti/timescaledb-tune/package.nix index 1c17f31484dfb..97b6bd5532e78 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 a00326bacda27..edef16696bf2e 100644 --- a/pkgs/by-name/ti/timetagger_cli/package.nix +++ b/pkgs/by-name/ti/timetagger_cli/package.nix @@ -24,11 +24,11 @@ python3.pkgs.buildPythonApplication rec { # Project has no tests doCheck = false; - 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/timeular/package.nix b/pkgs/by-name/ti/timeular/package.nix index e3174edfb4986..a0dbf2ce1f111 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 54bd274b4c970..84903d1f89ce0 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/timezonemap/package.nix b/pkgs/by-name/ti/timezonemap/package.nix index e886d8646cbb8..bf0e4a0d6ce99 100644 --- a/pkgs/by-name/ti/timezonemap/package.nix +++ b/pkgs/by-name/ti/timezonemap/package.nix @@ -67,11 +67,11 @@ stdenv.mkDerivation rec { 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/tini/package.nix b/pkgs/by-name/ti/tini/package.nix index 0779a1ac627cd..475f11382d2b6 100644 --- a/pkgs/by-name/ti/tini/package.nix +++ b/pkgs/by-name/ti/tini/package.nix @@ -22,11 +22,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/tint2/package.nix b/pkgs/by-name/ti/tint2/package.nix index 1c55cb009fe65..523005596e319 100644 --- a/pkgs/by-name/ti/tint2/package.nix +++ b/pkgs/by-name/ti/tint2/package.nix @@ -85,11 +85,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { homepage = "https://gitlab.com/nick87720z/tint2"; description = "Simple panel/taskbar unintrusive and light (memory, cpu, aestetic)"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ti/tintin/package.nix b/pkgs/by-name/ti/tintin/package.nix index 8e5f13f43d8c7..19db84231c399 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-cuda-nn/package.nix b/pkgs/by-name/ti/tiny-cuda-nn/package.nix index e6768fd6b6942..f01689f53fc68 100644 --- a/pkgs/by-name/ti/tiny-cuda-nn/package.nix +++ b/pkgs/by-name/ti/tiny-cuda-nn/package.nix @@ -170,12 +170,12 @@ stdenv.mkDerivation (finalAttrs: { inherit cudaPackages; }; - meta = with lib; { + meta = { description = "Lightning fast C++/CUDA neural network framework"; homepage = "https://github.com/NVlabs/tiny-cuda-nn"; - license = licenses.bsd3; - maintainers = with maintainers; [ connorbaker ]; - platforms = platforms.linux; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ connorbaker ]; + platforms = lib.platforms.linux; # g++: error: unrecognized command-line option '-mf16c' broken = stdenv.hostPlatform.isAarch64; }; diff --git a/pkgs/by-name/ti/tinyalsa/package.nix b/pkgs/by-name/ti/tinyalsa/package.nix index e21bf9f0b8847..5e73688aecb23 100644 --- a/pkgs/by-name/ti/tinyalsa/package.nix +++ b/pkgs/by-name/ti/tinyalsa/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { "-Wno-error=sign-compare" ]; - meta = with lib; { + meta = { homepage = "https://github.com/tinyalsa/tinyalsa"; description = "Tiny library to interface with ALSA in the Linux kernel"; - license = licenses.mit; - maintainers = with maintainers; [ ]; - platforms = with platforms; linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/ti/tinycbor/package.nix b/pkgs/by-name/ti/tinycbor/package.nix index 36add6430e24f..d1c294a6ee615 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 39398fb79c6ba..d04b63cdcb352 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 9907e1f50d2ac..09a36f13b9bcb 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/tinymembench/package.nix b/pkgs/by-name/ti/tinymembench/package.nix index 0dc6f5a7fd102..3cc8e956c88a6 100644 --- a/pkgs/by-name/ti/tinymembench/package.nix +++ b/pkgs/by-name/ti/tinymembench/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { 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 a48259172c459..551f6ea5f14d9 100644 --- a/pkgs/by-name/ti/tinyobjloader/package.nix +++ b/pkgs/by-name/ti/tinyobjloader/package.nix @@ -25,11 +25,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 2e2c0776a80eb..2194a2c16dc83 100644 --- a/pkgs/by-name/ti/tinyprog/package.nix +++ b/pkgs/by-name/ti/tinyprog/package.nix @@ -32,11 +32,11 @@ buildPythonApplication rec { nativeBuildInputs = [ setuptools-scm ]; - 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/tinyscheme/package.nix b/pkgs/by-name/ti/tinyscheme/package.nix index 4d6f5dca769b4..55228ec2e0392 100644 --- a/pkgs/by-name/ti/tinyscheme/package.nix +++ b/pkgs/by-name/ti/tinyscheme/package.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Lightweight Scheme implementation"; longDescription = '' TinyScheme is a lightweight Scheme interpreter that implements as large a @@ -77,9 +77,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 0727406f509fb..09cd51313f52b 100644 --- a/pkgs/by-name/ti/tinysparql/package.nix +++ b/pkgs/by-name/ti/tinysparql/package.nix @@ -188,13 +188,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"; - maintainers = teams.gnome.members; - license = licenses.gpl2Plus; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; pkgConfigModules = [ "tracker-sparql-3.0" "tinysparql-3.0" diff --git a/pkgs/by-name/ti/tinystatus/package.nix b/pkgs/by-name/ti/tinystatus/package.nix index f5043e6452388..92d30581c84d0 100644 --- a/pkgs/by-name/ti/tinystatus/package.nix +++ b/pkgs/by-name/ti/tinystatus/package.nix @@ -61,12 +61,12 @@ stdenvNoCC.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Static HTML status page generator written in pure shell"; mainProgram = "tinystatus"; homepage = "https://github.com/bderenzo/tinystatus"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ matthewcroughan ]; }; } diff --git a/pkgs/by-name/ti/tio/package.nix b/pkgs/by-name/ti/tio/package.nix index af2329ed87994..844d2e89a2642 100644 --- a/pkgs/by-name/ti/tio/package.nix +++ b/pkgs/by-name/ti/tio/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation (finalAttrs: { bash-completion ]; - 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/tippecanoe/package.nix b/pkgs/by-name/ti/tippecanoe/package.nix index f4e1bdb7b32d5..619179ee49ca0 100644 --- a/pkgs/by-name/ti/tippecanoe/package.nix +++ b/pkgs/by-name/ti/tippecanoe/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation (finalAttrs: { version = "v${finalAttrs.version}"; }; - meta = with lib; { + meta = { description = "Build vector tilesets from large collections of GeoJSON features"; homepage = "https://github.com/felt/tippecanoe"; - license = licenses.bsd2; - maintainers = teams.geospatial.members; - platforms = platforms.unix; + license = lib.licenses.bsd2; + maintainers = lib.teams.geospatial.members; + platforms = lib.platforms.unix; mainProgram = "tippecanoe"; }; }) diff --git a/pkgs/by-name/ti/tiptop/package.nix b/pkgs/by-name/ti/tiptop/package.nix index 6ebb325232880..91d51ce370acd 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 d3aacec4e45a2..431e2e54abdf3 100644 --- a/pkgs/by-name/ti/tiscamera/package.nix +++ b/pkgs/by-name/ti/tiscamera/package.nix @@ -133,11 +133,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/titanion/package.nix b/pkgs/by-name/ti/titanion/package.nix index 2235d32c51483..18c9dd18b99f3 100644 --- a/pkgs/by-name/ti/titanion/package.nix +++ b/pkgs/by-name/ti/titanion/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation (finalAttrs: { cp -r sounds images $out/share/games/titanion/ ''; - meta = with lib; { + meta = { homepage = "http://www.asahi-net.or.jp/~cs8k-cyu/windows/ttn_e.html"; description = "Strike down super high-velocity swooping insects"; mainProgram = "titanion"; - 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/ti/tiv/package.nix b/pkgs/by-name/ti/tiv/package.nix index b2347948d2e83..aeb33bc62b6b3 100644 --- a/pkgs/by-name/ti/tiv/package.nix +++ b/pkgs/by-name/ti/tiv/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { --prefix PATH : ${lib.makeBinPath [ imagemagick ]} ''; - meta = with lib; { + meta = { homepage = "https://github.com/stefanhaustein/TerminalImageViewer"; description = "Small C++ program to display images in a (modern) terminal using RGB ANSI codes and unicode block graphics characters"; mainProgram = "tiv"; - license = licenses.asl20; - maintainers = with maintainers; [ magnetophon ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ magnetophon ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/ti/tivodecode/package.nix b/pkgs/by-name/ti/tivodecode/package.nix index 0d794b27ae778..93c4fcdce6211 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 2ada4ad71cb6e..901115b919ef1 100644 --- a/pkgs/by-name/tk/tkey-ssh-agent/package.nix +++ b/pkgs/by-name/tk/tkey-ssh-agent/package.nix @@ -33,11 +33,11 @@ buildGoModule rec { }; }; - 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/"; - license = licenses.gpl2; - maintainers = with maintainers; [ bbigras ]; - platforms = platforms.all; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ bbigras ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/tk/tkman/package.nix b/pkgs/by-name/tk/tkman/package.nix index 8515ee91a567c..c39c1b0fa6fad 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 97f2d05efe668..feddb1a353349 100644 --- a/pkgs/by-name/tk/tkrzw/package.nix +++ b/pkgs/by-name/tk/tkrzw/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { doCheck = false; # memory intensive - meta = with lib; { + meta = { description = "Set of implementations of DBM"; homepage = "https://dbmx.net/tkrzw/"; - maintainers = with maintainers; [ ehmry ]; - license = licenses.asl20; - platforms = platforms.all; + maintainers = with lib.maintainers; [ ehmry ]; + 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 1beac87e9267e..977dc531dab9a 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/tlmi-auth/package.nix b/pkgs/by-name/tl/tlmi-auth/package.nix index 8ae56a545fc56..0e3c70a58161b 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 2d829c518a688..b3e57569868d1 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 d0e7e6c776551..87af4fe72f486 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/tm/package.nix b/pkgs/by-name/tm/tm/package.nix index 45208fa353996..9f0fad4d2b2cb 100644 --- a/pkgs/by-name/tm/tm/package.nix +++ b/pkgs/by-name/tm/tm/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { sed -i 's@/usr/bin/install@install@g ; s/gcc/cc/g' Makefile ''; - meta = with lib; { + meta = { description = "Terminal mixer - multiplexer for the i/o of terminal applications"; homepage = "http://vicerveza.homeunix.net/~viric/soft/tm"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "tm"; }; } diff --git a/pkgs/by-name/tm/tmate-ssh-server/package.nix b/pkgs/by-name/tm/tmate-ssh-server/package.nix index 9023cb1a48c95..02bf6c7850641 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 6966b5072a667..06dcbdb1d7fc0 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 478f7222fbae4..12f5ce53ecb16 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,9 +37,9 @@ stdenv.mkDerivation rec { performant. ''; homepage = "https://github.com/M4444/TMatrix"; - license = licenses.gpl2; - platforms = platforms.all; - maintainers = with maintainers; [ Br1ght0ne ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ Br1ght0ne ]; mainProgram = "tmatrix"; }; } diff --git a/pkgs/by-name/tm/tmpmail/package.nix b/pkgs/by-name/tm/tmpmail/package.nix index a7fe5fe237da8..69f7504d2e59e 100644 --- a/pkgs/by-name/tm/tmpmail/package.nix +++ b/pkgs/by-name/tm/tmpmail/package.nix @@ -44,11 +44,11 @@ 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; - maintainers = [ maintainers.lom ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.lom ]; mainProgram = "tmpmail"; }; } diff --git a/pkgs/by-name/tm/tmpwatch/package.nix b/pkgs/by-name/tm/tmpwatch/package.nix index f871cc50ae494..964cfff7c5130 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 53fdc8e1be0fb..7ce89a73eba94 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-xpanes/package.nix b/pkgs/by-name/tm/tmux-xpanes/package.nix index 0c1825c93a41c..4aabc36999324 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 a92d54c7e92b4..f564b9e9e9941 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/tn/tnat64/package.nix b/pkgs/by-name/tn/tnat64/package.nix index 7cc0d998c408c..5817b838a1563 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 bc46515c44d03..0c5df0849902d 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/tntdb/package.nix b/pkgs/by-name/tn/tntdb/package.nix index a3192d6c2b8cf..c2793b669e937 100644 --- a/pkgs/by-name/tn/tntdb/package.nix +++ b/pkgs/by-name/tn/tntdb/package.nix @@ -37,11 +37,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 2e69aca6bf2ad..fdef0a329a650 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 783098ee8be82..7e36db73e88d6 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/todiff/package.nix b/pkgs/by-name/to/todiff/package.nix index 08af4224fd1ea..030b87f0c1f94 100644 --- a/pkgs/by-name/to/todiff/package.nix +++ b/pkgs/by-name/to/todiff/package.nix @@ -19,10 +19,10 @@ rustPlatform.buildRustPackage rec { checkFeatures = [ "integration_tests" ]; - meta = with lib; { + meta = { description = "Human-readable diff for todo.txt files"; homepage = "https://github.com/Ekleog/todiff"; - maintainers = with maintainers; [ ekleog ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ ekleog ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/to/todo/package.nix b/pkgs/by-name/to/todo/package.nix index 222eef329a7d4..a235e5cea46f7 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 b00b94bfcd08f..9efc5fc846ac4 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/todoist-electron/package.nix b/pkgs/by-name/to/todoist-electron/package.nix index 5c00493166f87..61dfb963b1457 100644 --- a/pkgs/by-name/to/todoist-electron/package.nix +++ b/pkgs/by-name/to/todoist-electron/package.nix @@ -39,12 +39,12 @@ appimageTools.wrapAppImage { --replace 'Exec=AppRun' "Exec=$out/bin/${pname} --" ''; - meta = with lib; { + meta = { homepage = "https://todoist.com"; description = "Official Todoist electron app"; platforms = [ "x86_64-linux" ]; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ kylesferrazza pokon548 ]; diff --git a/pkgs/by-name/to/tofi/package.nix b/pkgs/by-name/to/tofi/package.nix index 36833e6b80758..9e1f96c067022 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 42d0b343a69d7..55de424cc74b9 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 e90142608042a..a3b457a1da1c7 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-ShJ7dbd3oNo3qZJ5+ut+NfLF9j8kPPZy9yC2zl/s56k="; - 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 98c2707f0d324..0a655a1d12951 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/tome4/package.nix b/pkgs/by-name/to/tome4/package.nix index b65139f8a3741..3c0ec5af5ac17 100644 --- a/pkgs/by-name/to/tome4/package.nix +++ b/pkgs/by-name/to/tome4/package.nix @@ -93,12 +93,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tales of Maj'eyal (rogue-like game)"; mainProgram = "tome4"; homepage = "https://te4.org/"; - license = licenses.gpl3; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ peterhoeg ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/to/toml-f/package.nix b/pkgs/by-name/to/toml-f/package.nix index 74f0574f1bbde..e55b6d84a02e8 100644 --- a/pkgs/by-name/to/toml-f/package.nix +++ b/pkgs/by-name/to/toml-f/package.nix @@ -37,14 +37,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 5ab7cf5a592e0..1637badb94688 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-laOM7LpmsCpLcm4kPRsJiXHoKR58RCuQxVO5Z78beWI="; - 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 d173ad659d4b3..6e9d73fae2929 100644 --- a/pkgs/by-name/to/toml2nix/package.nix +++ b/pkgs/by-name/to/toml2nix/package.nix @@ -19,14 +19,14 @@ 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/to/tomlc99/package.nix b/pkgs/by-name/to/tomlc99/package.nix index 5b38094432a20..5ad281440dbec 100644 --- a/pkgs/by-name/to/tomlc99/package.nix +++ b/pkgs/by-name/to/tomlc99/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { "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; - maintainers = with maintainers; [ ]; - platforms = with platforms; unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/to/tomlplusplus/package.nix b/pkgs/by-name/to/tomlplusplus/package.nix index 713eab450d1a7..6eb98199ef5c5 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/toolong/package.nix b/pkgs/by-name/to/toolong/package.nix index fe120fbead870..1bbd72faabfa5 100644 --- a/pkgs/by-name/to/toolong/package.nix +++ b/pkgs/by-name/to/toolong/package.nix @@ -35,11 +35,11 @@ python311Packages.buildPythonApplication rec { command = "${lib.getExe toolong} --version"; }; - meta = with lib; { + meta = { description = "Terminal application to view, tail, merge, and search log files (plus JSONL)"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/textualize/toolong"; - maintainers = with maintainers; [ sigmanificient ]; + maintainers = with lib.maintainers; [ sigmanificient ]; mainProgram = "tl"; }; } diff --git a/pkgs/by-name/to/top-git/package.nix b/pkgs/by-name/to/top-git/package.nix index 77f034c748c3a..e00e49c25e681 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/topfew-rs/package.nix b/pkgs/by-name/to/topfew-rs/package.nix index 8a47b04c45d7b..b1a4c44440281 100644 --- a/pkgs/by-name/to/topfew-rs/package.nix +++ b/pkgs/by-name/to/topfew-rs/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-j+afSwDHau7H20siYtid7l8tq+iS24KJBsNZAEdNJlI="; - meta = with lib; { + meta = { description = "Rust implementation of Tim Bray's topfew tool"; homepage = "https://github.com/djc/topfew-rs"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "tf"; }; } diff --git a/pkgs/by-name/to/topfew/package.nix b/pkgs/by-name/to/topfew/package.nix index a4853fda5d23e..a5cb1a414653d 100644 --- a/pkgs/by-name/to/topfew/package.nix +++ b/pkgs/by-name/to/topfew/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { installManPage doc/tf.1 ''; - meta = with lib; { + meta = { description = "Finds the fields (or combinations of fields) which appear most often in a stream of records"; homepage = "https://github.com/timbray/topfew"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "tf"; }; } diff --git a/pkgs/by-name/to/topicctl/package.nix b/pkgs/by-name/to/topicctl/package.nix index 36814b7d6a45d..bfb89951ef0c8 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/torctl/package.nix b/pkgs/by-name/to/torctl/package.nix index d184953e8560c..a06ac455af79e 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/torrent7z/package.nix b/pkgs/by-name/to/torrent7z/package.nix index 43a03143bec1b..85850a3560c4a 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 f3a98d48e04fc..c5625996d724f 100644 --- a/pkgs/by-name/to/torus-trooper/package.nix +++ b/pkgs/by-name/to/torus-trooper/package.nix @@ -72,12 +72,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/totem-pl-parser/package.nix b/pkgs/by-name/to/totem-pl-parser/package.nix index bb565d494e897..6ecdf818281d0 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"; - maintainers = teams.gnome.members; - license = licenses.lgpl2; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + license = lib.licenses.lgpl2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/to/touchegg/package.nix b/pkgs/by-name/to/touchegg/package.nix index d286414fc51d0..98e5d4632b50d 100644 --- a/pkgs/by-name/to/touchegg/package.nix +++ b/pkgs/by-name/to/touchegg/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/JoseExposito/touchegg"; description = "Linux multi-touch gesture recognizer"; mainProgram = "touchegg"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/by-name/to/tox-node/package.nix b/pkgs/by-name/to/tox-node/package.nix index e09d4fc754e38..b6e9829ca25d0 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 48063d333ceab..d50eb950d030c 100644 --- a/pkgs/by-name/to/toxvpn/package.nix +++ b/pkgs/by-name/to/toxvpn/package.nix @@ -43,16 +43,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/tp/tp-auto-kbbl/package.nix b/pkgs/by-name/tp/tp-auto-kbbl/package.nix index ecfccd0bdc76a..f7cf952d34460 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; - maintainers = with maintainers; [ ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; + 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 185d33fccdf3c..6e43ef8a8d459 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 dbaa37f5047dc..4f87a2526875b 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/tpm-tools/package.nix b/pkgs/by-name/tp/tpm-tools/package.nix index abfc81a93d59a..62a0556639558 100644 --- a/pkgs/by-name/tp/tpm-tools/package.nix +++ b/pkgs/by-name/tp/tpm-tools/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { opencryptoki ]; - meta = with lib; { + meta = { description = "Management tools for TPM hardware"; longDescription = '' tpm-tools is an open-source package designed to enable user and @@ -44,8 +44,8 @@ stdenv.mkDerivation rec { Module (TPM), similar to a smart card environment. ''; homepage = "https://sourceforge.net/projects/trousers/files/tpm-tools/"; - license = licenses.cpl10; - maintainers = [ maintainers.ak ]; - platforms = platforms.unix; + license = lib.licenses.cpl10; + maintainers = [ lib.maintainers.ak ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/tp/tpm2-abrmd/package.nix b/pkgs/by-name/tp/tpm2-abrmd/package.nix index 52c34e8806813..80a02ca3676c3 100644 --- a/pkgs/by-name/tp/tpm2-abrmd/package.nix +++ b/pkgs/by-name/tp/tpm2-abrmd/package.nix @@ -59,12 +59,12 @@ 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; [ matthiasbeyer ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/by-name/tp/tpm2-openssl/package.nix b/pkgs/by-name/tp/tpm2-openssl/package.nix index 48c04e25fb4fb..2f543c92a0dfd 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-pkcs11/package.nix b/pkgs/by-name/tp/tpm2-pkcs11/package.nix index 3cf57622a92ea..bfa5e3fc53481 100644 --- a/pkgs/by-name/tp/tpm2-pkcs11/package.nix +++ b/pkgs/by-name/tp/tpm2-pkcs11/package.nix @@ -113,11 +113,11 @@ stdenv.mkDerivation rec { --prefix PATH : ${lib.makeBinPath [ tpm2-tools ]} ''; - meta = with lib; { + meta = { description = "PKCS#11 interface for TPM2 hardware"; homepage = "https://github.com/tpm2-software/tpm2-pkcs11"; - license = licenses.bsd2; - platforms = platforms.linux; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; maintainers = [ ]; mainProgram = "tpm2_ptool"; }; diff --git a/pkgs/by-name/tp/tpm2-tools/package.nix b/pkgs/by-name/tp/tpm2-tools/package.nix index 88a20e99b1d24..3d4dbfc9d0fc6 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; [ tomfitzhenry ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ tomfitzhenry ]; }; } diff --git a/pkgs/by-name/tq/tqsl/package.nix b/pkgs/by-name/tq/tqsl/package.nix index 61ea5efac0687..af4c2e4c8aae7 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; - maintainers = [ maintainers.dpflug ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.dpflug ]; }; } diff --git a/pkgs/by-name/tr/tracebox/package.nix b/pkgs/by-name/tr/tracebox/package.nix index 7a373f49796e1..8af2ef9597935 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/tracefilegen/package.nix b/pkgs/by-name/tr/tracefilegen/package.nix index 5abd2d63032a6..2fd4b3d0d4b80 100644 --- a/pkgs/by-name/tr/tracefilegen/package.nix +++ b/pkgs/by-name/tr/tracefilegen/package.nix @@ -27,13 +27,13 @@ stdenv.mkDerivation rec { cp -ar $src/Documentation/html $out/share/doc/${pname}-${version}/. ''; - 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 0e135186ace20..faff0616911a0 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/trackballs/package.nix b/pkgs/by-name/tr/trackballs/package.nix index 1b21058149a16..56e3f4e331178 100644 --- a/pkgs/by-name/tr/trackballs/package.nix +++ b/pkgs/by-name/tr/trackballs/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { libGL ]; - meta = with lib; { + meta = { homepage = "https://trackballs.github.io/"; description = "3D Marble Madness clone"; mainProgram = "trackballs"; - platforms = platforms.linux; + platforms = lib.platforms.linux; # Music is licensed under Ethymonics Free Music License. - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/tr/tradcpp/package.nix b/pkgs/by-name/tr/tradcpp/package.nix index bba9e0501e907..f81280bba8098 100644 --- a/pkgs/by-name/tr/tradcpp/package.nix +++ b/pkgs/by-name/tr/tradcpp/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { ./aarch64.patch ]; - meta = with lib; { + meta = { description = "Traditional (K&R-style) C macro preprocessor"; mainProgram = "tradcpp"; - platforms = platforms.all; - license = licenses.bsd2; + platforms = lib.platforms.all; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/by-name/tr/traefik-certs-dumper/package.nix b/pkgs/by-name/tr/traefik-certs-dumper/package.nix index f86409a9e17ce..1ed478a57c3aa 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-CmqeIQk7lAENMDNWAG7XylnXRXvgyRN5GMt0ilwJX0U="; 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 df86de2717dd1..eb1b428cbaa83 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 f4a36a4110b18..5a3fccf15b6fc 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/transcode/package.nix b/pkgs/by-name/tr/transcode/package.nix index d64d4f760b335..fda082c0ababe 100644 --- a/pkgs/by-name/tr/transcode/package.nix +++ b/pkgs/by-name/tr/transcode/package.nix @@ -62,10 +62,10 @@ stdenv.mkDerivation rec { # `audio'; tcextract-extract_ac3.o:/build/transcode-1.1.7/import/extract_ac3.c:337: first defined here env.NIX_CFLAGS_COMPILE = "-fcommon"; - meta = with lib; { + meta = { description = "Suite of command line utilities for transcoding video and audio codecs, and for converting between different container formats"; homepage = "http://www.transcoding.org/"; - license = licenses.lgpl2Plus; - platforms = platforms.linux; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/tr/transcrypt/package.nix b/pkgs/by-name/tr/transcrypt/package.nix index 08c7deb5a2196..2efa8bb0d99e3 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 360621b974333..1816430c7d6c8 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 a4551be0f8c63..c0e2e764fa376 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/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/translate-shell/package.nix b/pkgs/by-name/tr/translate-shell/package.nix index 132ce92697eb0..36bb37c3b6a71 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 4249331b2b080..cdff857afc055 100644 --- a/pkgs/by-name/tr/translatelocally/package.nix +++ b/pkgs/by-name/tr/translatelocally/package.nix @@ -83,12 +83,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 7aadbb804d437..238953c256772 100644 --- a/pkgs/by-name/tr/transmission-rss/package.nix +++ b/pkgs/by-name/tr/transmission-rss/package.nix @@ -36,11 +36,11 @@ rustPlatform.buildRustPackage rec { 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 c0aa05da5e6ce..6a95a48d70f32 100644 --- a/pkgs/by-name/tr/trash-cli/package.nix +++ b/pkgs/by-name/tr/trash-cli/package.nix @@ -67,12 +67,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 b48ed167fa6a0..e1e3ce54a3a4e 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 12d76e61e5df8..cc599d78e4b14 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 4ddf8f3972630..26a5fa08f18f4 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 f9a0fe9adcb17..a3a29c708bb14 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/trellis/package.nix b/pkgs/by-name/tr/trellis/package.nix index f69007967b2de..f26baabd67bf2 100644 --- a/pkgs/by-name/tr/trellis/package.nix +++ b/pkgs/by-name/tr/trellis/package.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation rec { $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 rec { 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/tremc/package.nix b/pkgs/by-name/tr/tremc/package.nix index adfdebdee7378..393c430c68ea5 100644 --- a/pkgs/by-name/tr/tremc/package.nix +++ b/pkgs/by-name/tr/tremc/package.nix @@ -58,11 +58,11 @@ python3Packages.buildPythonApplication rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { description = "Curses interface for transmission"; mainProgram = "tremc"; homepage = "https://github.com/tremc/tremc"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ kashw2 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ kashw2 ]; }; } diff --git a/pkgs/by-name/tr/trexio/package.nix b/pkgs/by-name/tr/trexio/package.nix index d215faec0ab6d..63002509d08e8 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/trf/package.nix b/pkgs/by-name/tr/trf/package.nix index 3bd1f19bbec6d..61c91ce0be8ae 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/tridactyl-native/package.nix b/pkgs/by-name/tr/tridactyl-native/package.nix index c97b8cad33650..06420474bd6f1 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 47b1d72d672c6..8faec8340e8ad 100644 --- a/pkgs/by-name/tr/triehash/package.nix +++ b/pkgs/by-name/tr/triehash/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { 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; - maintainers = with maintainers; [ AndersonTorres ]; + license = with lib.licenses; mit; + maintainers = with lib.maintainers; [ AndersonTorres ]; 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 ae189e2ca5058..8b202356c3325 100644 --- a/pkgs/by-name/tr/trigger-control/package.nix +++ b/pkgs/by-name/tr/trigger-control/package.nix @@ -70,12 +70,12 @@ stdenv.mkDerivation (finalAttrs: { --prefix PATH : ${lib.makeBinPath [ zenity ]} ''; - 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 a70060e36e6a9..94d31c36868aa 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/trillian-im/package.nix b/pkgs/by-name/tr/trillian-im/package.nix index 1f89d57294d8d..cd6785519d9fc 100644 --- a/pkgs/by-name/tr/trillian-im/package.nix +++ b/pkgs/by-name/tr/trillian-im/package.nix @@ -69,11 +69,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 0f65953ea0e02..3af22c828af27 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 43c1730325c61..43abecd04563c 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 77231e48edda7..a10c600f5183f 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/triton/package.nix b/pkgs/by-name/tr/triton/package.nix index 3d3a383bfda07..8a06f443d5b69 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 09098810b63eb..2052a278168f4 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/trousers/package.nix b/pkgs/by-name/tr/trousers/package.nix index 0cff55be007de..9876479a11a57 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/trunk-ng/package.nix b/pkgs/by-name/tr/trunk-ng/package.nix index 8c914af48f3eb..d6428f10d2789 100644 --- a/pkgs/by-name/tr/trunk-ng/package.nix +++ b/pkgs/by-name/tr/trunk-ng/package.nix @@ -45,11 +45,11 @@ rustPlatform.buildRustPackage rec { .${stdenv.hostPlatform.parsed.kernel.name} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); - 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 abda881970aee..1d16a8dc11575 100644 --- a/pkgs/by-name/tr/trunk/package.nix +++ b/pkgs/by-name/tr/trunk/package.nix @@ -24,14 +24,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-m09ZV0Z4bNyAfO6XNiDKyqMeqv2/tx4vpQnWlesCW2A="; - 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; [ + maintainers = with lib.maintainers; [ freezeboy ctron ]; - license = with licenses; [ asl20 ]; + license = with lib.licenses; [ asl20 ]; }; } diff --git a/pkgs/by-name/tr/trx/package.nix b/pkgs/by-name/tr/trx/package.nix index 726b8e7615e7b..f02bd318221a5 100644 --- a/pkgs/by-name/tr/trx/package.nix +++ b/pkgs/by-name/tr/trx/package.nix @@ -31,11 +31,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/try/package.nix b/pkgs/by-name/tr/try/package.nix index 996bfa12f0e1b..0be5a93c20f69 100644 --- a/pkgs/by-name/tr/try/package.nix +++ b/pkgs/by-name/tr/try/package.nix @@ -27,12 +27,12 @@ stdenvNoCC.mkDerivation rec { } runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/binpash/try"; description = "Lets you run a command and inspect its effects before changing your live system"; mainProgram = "try"; - maintainers = with maintainers; [ pasqui23 ]; - license = with licenses; [ mit ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ pasqui23 ]; + license = with lib.licenses; [ mit ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ts/ts/package.nix b/pkgs/by-name/ts/ts/package.nix index fa1fc15ada522..98a08d3ed3b10 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/tsduck/package.nix b/pkgs/by-name/ts/tsduck/package.nix index d708d70689e54..49452f5e2f31a 100644 --- a/pkgs/by-name/ts/tsduck/package.nix +++ b/pkgs/by-name/ts/tsduck/package.nix @@ -82,12 +82,12 @@ stdenv.mkDerivation rec { "install-devel" ]; - meta = with lib; { + meta = { description = "MPEG Transport Stream Toolkit"; homepage = "https://github.com/tsduck/tsduck"; - license = licenses.bsd2; - maintainers = with maintainers; [ siriobalmelli ]; - platforms = platforms.all; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ siriobalmelli ]; + platforms = lib.platforms.all; # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/ts/tsocks/package.nix b/pkgs/by-name/ts/tsocks/package.nix index 03faca1336f47..820cb0a7a17d8 100644 --- a/pkgs/by-name/ts/tsocks/package.nix +++ b/pkgs/by-name/ts/tsocks/package.nix @@ -34,13 +34,13 @@ 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; - maintainers = with maintainers; [ edwtjo ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ edwtjo ]; + 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 de4ad64d9ad5a..229f74f4aa61d 100644 --- a/pkgs/by-name/ts/tsukae/package.nix +++ b/pkgs/by-name/ts/tsukae/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { 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 5fc11d572ce3f..92ea344298182 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 @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { install -D plugins/auth_ldap/init.php $out/auth_ldap/init.php ''; - 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-theme-feedly/package.nix b/pkgs/by-name/tt/tt-rss-theme-feedly/package.nix index 18e14aae380d3..bb2d418f9721b 100644 --- a/pkgs/by-name/tt/tt-rss-theme-feedly/package.nix +++ b/pkgs/by-name/tt/tt-rss-theme-feedly/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { cp -ra feedly *.css $out ''; - 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/tt2020/package.nix b/pkgs/by-name/tt/tt2020/package.nix index 3ac3c7ce948f2..025e30cb1dd03 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/ttchat/package.nix b/pkgs/by-name/tt/ttchat/package.nix index 893abb63c4f01..bc4484797ef77 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 2f3765f8a3b5a..9aaaf06e81d66 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/ttop/package.nix b/pkgs/by-name/tt/ttop/package.nix index 549ba705b98f2..28818e9a2d1b5 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; [ figsoda sikmir ]; diff --git a/pkgs/by-name/tt/ttwatch/package.nix b/pkgs/by-name/tt/ttwatch/package.nix index 03913b58134b7..8562564ab297d 100644 --- a/pkgs/by-name/tt/ttwatch/package.nix +++ b/pkgs/by-name/tt/ttwatch/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation { chmod +x $out/bin/ttbin2mysports ''; - 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 702e9264cd7f2..75d01a941cd27 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 rec { 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 1847050236b14..51942d35eff20 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/tty-solitaire/package.nix b/pkgs/by-name/tt/tty-solitaire/package.nix index 2116103fc0966..51f22d095b8bc 100644 --- a/pkgs/by-name/tt/tty-solitaire/package.nix +++ b/pkgs/by-name/tt/tty-solitaire/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Klondike Solitaire in your ncurses terminal"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/mpereira/tty-solitaire"; platforms = ncurses.meta.platforms; - maintainers = [ maintainers.AndersonTorres ]; + maintainers = [ lib.maintainers.AndersonTorres ]; mainProgram = "ttysolitaire"; }; } diff --git a/pkgs/by-name/tt/ttygif/package.nix b/pkgs/by-name/tt/ttygif/package.nix index 90989ad99b733..32cc7640a38da 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 d98e3a27acc70..8f3de9dc0345b 100644 --- a/pkgs/by-name/tt/ttylog/package.nix +++ b/pkgs/by-name/tt/ttylog/package.nix @@ -18,15 +18,15 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - 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/ttyplot/package.nix b/pkgs/by-name/tt/ttyplot/package.nix index 3e332e4d9dccb..3ec75c8d9a97b 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/tuc/package.nix b/pkgs/by-name/tu/tuc/package.nix index f2e8266f69580..ca07588b8d4e5 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-NbqmXptLmqLd6QizRB1bIM53Rdj010Hy3JqSuLQ4H24="; - 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 856d1222d1775..18ba90f3041b9 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 fa0fb7097139a..a81e6eac154fe 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/tuic/package.nix b/pkgs/by-name/tu/tuic/package.nix index 17fbd99fd0bf3..b59762209b6b9 100644 --- a/pkgs/by-name/tu/tuic/package.nix +++ b/pkgs/by-name/tu/tuic/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage rec { # doc test will fail in this version checkFlags = [ "--skip=lib" ]; - meta = with lib; { + meta = { homepage = "https://github.com/EAimTY/tuic"; description = "Delicately-TUICed 0-RTT proxy protocol"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = with maintainers; [ oluceps ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ oluceps ]; }; } diff --git a/pkgs/by-name/tu/tuir/package.nix b/pkgs/by-name/tu/tuir/package.nix index e193ea2d9ecfc..cc63417e88d3e 100644 --- a/pkgs/by-name/tu/tuir/package.nix +++ b/pkgs/by-name/tu/tuir/package.nix @@ -42,12 +42,12 @@ buildPythonApplication rec { six ]; - 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; [ Br1ght0ne matthiasbeyer brokenpip3 diff --git a/pkgs/by-name/tu/tumiki-fighters/package.nix b/pkgs/by-name/tu/tumiki-fighters/package.nix index f89c6f5275b87..0e042567c8636 100644 --- a/pkgs/by-name/tu/tumiki-fighters/package.nix +++ b/pkgs/by-name/tu/tumiki-fighters/package.nix @@ -75,12 +75,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/tun2socks/package.nix b/pkgs/by-name/tu/tun2socks/package.nix index c35c0887baa0f..2073e9ad2db64 100644 --- a/pkgs/by-name/tu/tun2socks/package.nix +++ b/pkgs/by-name/tu/tun2socks/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-X github.com/xjasonlyu/tun2socks/v2/internal/version.GitCommit=v${version}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/xjasonlyu/tun2socks"; description = "tun2socks - powered by gVisor TCP/IP stack"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ nickcao ]; mainProgram = "tun2socks"; }; } diff --git a/pkgs/by-name/tu/tuna/package.nix b/pkgs/by-name/tu/tuna/package.nix index 18b907aacb139..c229d964c802e 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/tuner/package.nix b/pkgs/by-name/tu/tuner/package.nix index 6b09c43515396..13e4c1d1aa096 100644 --- a/pkgs/by-name/tu/tuner/package.nix +++ b/pkgs/by-name/tu/tuner/package.nix @@ -58,13 +58,13 @@ stdenv.mkDerivation rec { gst_all_1.gst-plugins-ugly ]; - meta = with lib; { + meta = { homepage = "https://github.com/louis77/tuner"; description = "App to discover and play internet radio stations"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "com.github.louis77.tuner"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ abbe aleksana ]; diff --git a/pkgs/by-name/tu/tuntox/package.nix b/pkgs/by-name/tu/tuntox/package.nix index 8dd1864b00f8a..56fa85a6cb4b7 100644 --- a/pkgs/by-name/tu/tuntox/package.nix +++ b/pkgs/by-name/tu/tuntox/package.nix @@ -87,14 +87,14 @@ stdenv.mkDerivation rec { doCheck = false; - meta = with lib; { + meta = { description = "Tunnel TCP connections over the Tox protocol"; mainProgram = "tuntox"; homepage = "https://github.com/gjedeer/tuntox"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ willcohen ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/tu/tunwg/package.nix b/pkgs/by-name/tu/tunwg/package.nix index 3616c023fea84..3c368b460413a 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 4bccae8ee432d..bfec4aacfb565 100644 --- a/pkgs/by-name/tu/tup/package.nix +++ b/pkgs/by-name/tu/tup/package.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation rec { setupHook = ./setup-hook.sh; - meta = with lib; { + meta = { description = "Fast, file-based build system"; mainProgram = "tup"; longDescription = '' @@ -80,8 +80,8 @@ stdenv.mkDerivation rec { your project rather than on your build system. ''; homepage = "https://gittup.org/tup/"; - license = licenses.gpl2; - maintainers = with maintainers; [ ehmry ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ ehmry ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/tu/tuptime/package.nix b/pkgs/by-name/tu/tuptime/package.nix index 02b01ff4a4557..66fa4d43f9cea 100644 --- a/pkgs/by-name/tu/tuptime/package.nix +++ b/pkgs/by-name/tu/tuptime/package.nix @@ -49,13 +49,13 @@ 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; - maintainers = [ maintainers.evils ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.evils ]; mainProgram = "tuptime"; }; } diff --git a/pkgs/by-name/tu/turso-cli/package.nix b/pkgs/by-name/tu/turso-cli/package.nix index b050c1ef68d7a..864a5a788f1bc 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 = "This is the command line interface (CLI) to 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 86b153d13f9ac..5c6a582616f9d 100644 --- a/pkgs/by-name/tu/turtle-build/package.nix +++ b/pkgs/by-name/tu/turtle-build/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Z9PCnFrUgvF9anfShfU9U7iYISDpzAuJudLq/wN4ONU="; - 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "turtle"; }; } diff --git a/pkgs/by-name/tu/tusk/package.nix b/pkgs/by-name/tu/tusk/package.nix index 2dc7e6290f60b..862dde5bb5d2e 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 4e2cc64c3dac9..40b749f4d82e7 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/tuxmux/package.nix b/pkgs/by-name/tu/tuxmux/package.nix index 709ca9d31bee5..acf31cdb645b5 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 3a30f42e13889..3f6625ac3c704 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; - maintainers = [ maintainers.aanderse ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.aanderse ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/tv/tvm/package.nix b/pkgs/by-name/tv/tvm/package.nix index d1d18d891eb09..6de36917e6377 100644 --- a/pkgs/by-name/tv/tvm/package.nix +++ b/pkgs/by-name/tv/tvm/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { # not mangle the legitimate use of the opt/ folder. dontFixCmake = true; - 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 72ef463bd954c..d9a0ce85a95d8 100644 --- a/pkgs/by-name/tv/tvnamer/package.nix +++ b/pkgs/by-name/tv/tvnamer/package.nix @@ -45,11 +45,11 @@ pypkgs.buildPythonApplication rec { # no tests from pypi doCheck = false; - 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 02e9dea8eeaf9..584f4802f36c4 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 a974d8467d6b0..5d82117ee99bc 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 e17e0cafe28a6..020700eef2e26 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 5c621073915b4..d92a4df721606 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-94pfhVZ0CNMn+lCl5O+wOyE+D6fVXbH4NAPx92nMNbM="; - 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/twitch-cli/package.nix b/pkgs/by-name/tw/twitch-cli/package.nix index 64b0ee6fd2478..9f7164ff0b20e 100644 --- a/pkgs/by-name/tw/twitch-cli/package.nix +++ b/pkgs/by-name/tw/twitch-cli/package.nix @@ -41,11 +41,11 @@ buildGoModule rec { version = "${pname}/${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/twolame/package.nix b/pkgs/by-name/tw/twolame/package.nix index 7d7aef89fa83b..2d52616695871 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; - maintainers = with maintainers; [ AndersonTorres ]; + license = with lib.licenses; [ lgpl2Plus ]; + platforms = with lib.platforms; unix; + maintainers = with lib.maintainers; [ AndersonTorres ]; }; } diff --git a/pkgs/by-name/tx/txt2man/package.nix b/pkgs/by-name/tx/txt2man/package.nix index 9e80d82264916..e603b0730d757 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 0268c7b708fb3..72444e4cd8ec7 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 12b46863c8e76..10b5ed1dc93b8 100644 --- a/pkgs/by-name/ty/tydra/package.nix +++ b/pkgs/by-name/ty/tydra/package.nix @@ -30,11 +30,11 @@ 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; - maintainers = with maintainers; [ Br1ght0ne ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Br1ght0ne ]; mainProgram = "tydra"; }; } diff --git a/pkgs/by-name/ty/tym/package.nix b/pkgs/by-name/ty/tym/package.nix index 84ed87d4f2ad9..7cc8c26df31d4 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 9ff09b79688ab..eb78482de14f4 100644 --- a/pkgs/by-name/ty/typer/package.nix +++ b/pkgs/by-name/ty/typer/package.nix @@ -22,11 +22,11 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Typing test in your terminal"; homepage = "https://github.com/maaslalani/typer"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "typer"; }; } diff --git a/pkgs/by-name/ty/typespeed/package.nix b/pkgs/by-name/ty/typespeed/package.nix index 385a80165babc..cb9eb5f16e358 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/typora/package.nix b/pkgs/by-name/ty/typora/package.nix index c0d60b0061b15..c9da400b40ceb 100644 --- a/pkgs/by-name/ty/typora/package.nix +++ b/pkgs/by-name/ty/typora/package.nix @@ -125,11 +125,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Markdown editor, a markdown reader"; homepage = "https://typora.io/"; - license = licenses.unfree; - maintainers = with maintainers; [ npulidomateo ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ npulidomateo ]; platforms = [ "x86_64-linux" ]; mainProgram = "typora"; }; diff --git a/pkgs/by-name/ty/typst-live/package.nix b/pkgs/by-name/ty/typst-live/package.nix index f38ba0db7f1cf..cd26fb09a6585 100644 --- a/pkgs/by-name/ty/typst-live/package.nix +++ b/pkgs/by-name/ty/typst-live/package.nix @@ -32,11 +32,11 @@ 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "typst-live"; }; } diff --git a/pkgs/by-name/tz/tz/package.nix b/pkgs/by-name/tz/tz/package.nix index 7ddeb2d399e1e..6511b901095b8 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-lcCra4LyebkmelvBs0Dd2mn6R64Q5MaUWc5AP8V9pec="; - 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/u0/u001-font/package.nix b/pkgs/by-name/u0/u001-font/package.nix index 0033dc5442436..19fe7e1b689ce 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 rec { 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 6c3089dbf74fb..d54d224b1eabd 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 62a2e2777379b..3d21e0b8d8ffe 100644 --- a/pkgs/by-name/u9/u9fs/package.nix +++ b/pkgs/by-name/u9/u9fs/package.nix @@ -20,12 +20,12 @@ 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; - maintainers = [ maintainers.ehmry ]; - platforms = platforms.unix; + license = lib.licenses.dtoa; + maintainers = [ lib.maintainers.ehmry ]; + 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 441c2e8fc2f4e..5f217c7ed319d 100644 --- a/pkgs/by-name/ua/ua/package.nix +++ b/pkgs/by-name/ua/ua/package.nix @@ -31,10 +31,10 @@ buildGoModule rec { "-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 1769fc8ba77ec..7770212279f8b 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 8dcdd62844fe0..6b41abe9e5b53 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 6c53ae93e32b6..5101718ec1da5 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 24450ee9ccd24..7da71d9ff3726 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.isDarwin; }; } diff --git a/pkgs/by-name/ub/ubertooth/package.nix b/pkgs/by-name/ub/ubertooth/package.nix index f9f22d4db6733..83b9b72e65a49 100644 --- a/pkgs/by-name/ub/ubertooth/package.nix +++ b/pkgs/by-name/ub/ubertooth/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { "-DUDEV_RULES_GROUP=${udevGroup}" ]; - 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/ubuntu-classic/package.nix b/pkgs/by-name/ub/ubuntu-classic/package.nix index edb10821d7711..7752660ac3b7c 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 c74bc57395a54..59ddf9255242a 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 a9e00422dff04..2c43cf7b34e44 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/ubuntu-themes/package.nix b/pkgs/by-name/ub/ubuntu-themes/package.nix index b152bcb0501e1..3dcae01538fad 100644 --- a/pkgs/by-name/ub/ubuntu-themes/package.nix +++ b/pkgs/by-name/ub/ubuntu-themes/package.nix @@ -68,14 +68,14 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Ubuntu monochrome and Suru icon themes, Ambiance and Radiance themes, and Ubuntu artwork"; homepage = "https://launchpad.net/ubuntu-themes"; - license = with licenses; [ + license = with lib.licenses; [ cc-by-sa-40 gpl3 ]; - platforms = platforms.linux; - maintainers = [ maintainers.romildo ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ub/ubus/package.nix b/pkgs/by-name/ub/ubus/package.nix index 5c28c5aab3a52..1593e8d00d2ef 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/ucblogo/package.nix b/pkgs/by-name/uc/ucblogo/package.nix index 0bf3a7de28da6..d4cb1520e63c7 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 7c93a36f1b626..fdb3ad1edc327 100644 --- a/pkgs/by-name/uc/ucc/package.nix +++ b/pkgs/by-name/uc/ucc/package.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation rec { moveToOutput bin/ucc_info $dev ''; - meta = with lib; { + meta = { description = "Collective communication operations API"; 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 232262a17a206..aa1ca85ea13a6 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 d6318106a3fe8..c71e26d785caf 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 a80896b15c92b..4dd8cc5c05771 100644 --- a/pkgs/by-name/uc/uclient/package.nix +++ b/pkgs/by-name/uc/uclient/package.nix @@ -29,13 +29,13 @@ 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; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/uc/ucode/package.nix b/pkgs/by-name/uc/ucode/package.nix index 8395bff407fc3..3323a3371428b 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.linux; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.isc; + platforms = lib.platforms.linux; + 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 6058f6e92eebf..f1908ed4c39cd 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/ucx/package.nix b/pkgs/by-name/uc/ucx/package.nix index 87fb2eaaf824e..56a51d4259b44 100644 --- a/pkgs/by-name/uc/ucx/package.nix +++ b/pkgs/by-name/uc/ucx/package.nix @@ -104,11 +104,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Unified Communication X library"; homepage = "https://www.openucx.org"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = [ maintainers.markuskowa ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.markuskowa ]; }; } diff --git a/pkgs/by-name/ud/uddup/package.nix b/pkgs/by-name/ud/uddup/package.nix index 00045852ee985..750a98b2a208f 100644 --- a/pkgs/by-name/ud/uddup/package.nix +++ b/pkgs/by-name/ud/uddup/package.nix @@ -28,11 +28,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 eb21aab56c843..2c4d3bfc73d40 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.linux; - maintainers = with maintainers; [ mkg20001 ]; + license = lib.licenses.free; + platforms = lib.platforms.linux; + 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 0d454cb339a68..0e38bbd0c1459 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 e325ce5e39dbc..2dac51afe2627 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 d30a5b8c767c6..37b4e2b76840a 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; - maintainers = with maintainers; [ ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ud/udftools/package.nix b/pkgs/by-name/ud/udftools/package.nix index 4d908eccb03c5..093e027911c50 100644 --- a/pkgs/by-name/ud/udftools/package.nix +++ b/pkgs/by-name/ud/udftools/package.nix @@ -43,10 +43,10 @@ stdenv.mkDerivation rec { sed -i -e "s@/usr/sbin/pktsetup@$out/sbin/pktsetup@" $out/lib/udev/rules.d/80-pktsetup.rules ''; - meta = with lib; { + meta = { description = "UDF tools"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/ud/udict/package.nix b/pkgs/by-name/ud/udict/package.nix index 121e30e664ed8..9693b9da05a73 100644 --- a/pkgs/by-name/ud/udict/package.nix +++ b/pkgs/by-name/ud/udict/package.nix @@ -38,10 +38,10 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.Security ]; - 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/udis86/package.nix b/pkgs/by-name/ud/udis86/package.nix index e0121bbbd8479..2a0486a2d9cfa 100644 --- a/pkgs/by-name/ud/udis86/package.nix +++ b/pkgs/by-name/ud/udis86/package.nix @@ -42,14 +42,14 @@ stdenv.mkDerivation rec { "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/udns/package.nix b/pkgs/by-name/ud/udns/package.nix index abc1d21d27f4e..be9458bbeb123 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 3367597e688c9..58878c9cc5cee 100644 --- a/pkgs/by-name/ud/udpreplay/package.nix +++ b/pkgs/by-name/ud/udpreplay/package.nix @@ -17,15 +17,15 @@ stdenv.mkDerivation rec { hash = "sha256-kF9a3pjQbFKf25NKyK7uSq0AAO6JK7QeChLhm9Z3wEA="; }; - 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 c541797022a43..5d85461eea7ee 100644 --- a/pkgs/by-name/ud/udunits/package.nix +++ b/pkgs/by-name/ud/udunits/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { 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 rec { 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/ueberzugpp/package.nix b/pkgs/by-name/ue/ueberzugpp/package.nix index 6d44c5905b938..77055ddab5bef 100644 --- a/pkgs/by-name/ue/ueberzugpp/package.nix +++ b/pkgs/by-name/ue/ueberzugpp/package.nix @@ -94,14 +94,14 @@ stdenv.mkDerivation rec { "-DENABLE_X11=OFF" ]; - meta = with lib; { + meta = { description = "Drop in replacement for ueberzug written in C++"; homepage = "https://github.com/jstkdng/ueberzugpp"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ aleksana wegank ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ue/uefi-run/package.nix b/pkgs/by-name/ue/uefi-run/package.nix index ba0650cdcfea7..0d81c3678c878 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-s1Kbc3JHoYy0UJwNfSunIdQ3xHjlQaut/Cb0JSYyB9g="; - 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 d93f9650dc8fc..9a6e8c4f8721a 100644 --- a/pkgs/by-name/ue/uefisettings/package.nix +++ b/pkgs/by-name/ue/uefisettings/package.nix @@ -26,12 +26,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 f5c92580fc6bb..0565cda0923c7 100644 --- a/pkgs/by-name/ue/uemacs/package.nix +++ b/pkgs/by-name/ue/uemacs/package.nix @@ -32,16 +32,16 @@ stdenv.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.linux; - maintainers = with maintainers; [ networkexception ]; + platforms = lib.platforms.linux; + 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 935c638d76e4c..2d58ddc10db4e 100644 --- a/pkgs/by-name/ue/ueviewer/package.nix +++ b/pkgs/by-name/ue/ueviewer/package.nix @@ -88,13 +88,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 c830b3ac9dfb0..8af9d3a4b6126 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 fd1aa0aad2a71..3c4ca7c32b144 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 cda04712302ff..b45ffb07e292f 100644 --- a/pkgs/by-name/ug/uget-integrator/package.nix +++ b/pkgs/by-name/ug/uget-integrator/package.nix @@ -38,12 +38,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 fd90e58161b1e..bf867708e76d3 100644 --- a/pkgs/by-name/ug/uget/package.nix +++ b/pkgs/by-name/ug/uget/package.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { aria2 != null ) ''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 @@ -69,9 +69,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/ugtrain/package.nix b/pkgs/by-name/ug/ugtrain/package.nix index c355dfbb30f18..8e9b55be005c6 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/uhexen2/package.nix b/pkgs/by-name/uh/uhexen2/package.nix index 4ac7dd2236aea..783c3cfa70da4 100644 --- a/pkgs/by-name/uh/uhexen2/package.nix +++ b/pkgs/by-name/uh/uhexen2/package.nix @@ -65,7 +65,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Cross-platform port of Hexen II game"; longDescription = '' @@ -75,8 +75,8 @@ stdenv.mkDerivation rec { 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/uhttpmock/package.nix b/pkgs/by-name/uh/uhttpmock/package.nix index 191347e72259a..248097a010eae 100644 --- a/pkgs/by-name/uh/uhttpmock/package.nix +++ b/pkgs/by-name/uh/uhttpmock/package.nix @@ -52,11 +52,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 cab0f0b466f5a..4b58f5cef59bb 100644 --- a/pkgs/by-name/uh/uhttpmock_1_0/package.nix +++ b/pkgs/by-name/uh/uhttpmock_1_0/package.nix @@ -53,11 +53,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; - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/uh/uhub/package.nix b/pkgs/by-name/uh/uhub/package.nix index 44053edfc6d0d..08e2202110607 100644 --- a/pkgs/by-name/uh/uhub/package.nix +++ b/pkgs/by-name/uh/uhub/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { "-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; - maintainers = [ maintainers.ehmry ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.ehmry ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/uh/uhubctl/package.nix b/pkgs/by-name/uh/uhubctl/package.nix index bd4ce7a1be24c..e33866652cf86 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 c26c7b2e6007c..e750d2ce7ef62 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 bb21fb1f45f88..a6c019682060d 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 = with maintainers; [ gebner ]; - platforms = platforms.unix; - license = licenses.agpl3Only; + maintainers = with lib.maintainers; [ gebner ]; + platforms = lib.platforms.unix; + license = lib.licenses.agpl3Only; mainProgram = "uivonim"; }; } diff --git a/pkgs/by-name/ul/ulauncher/package.nix b/pkgs/by-name/ul/ulauncher/package.nix index 22c4e096f3de6..4a08c97e5a409 100644 --- a/pkgs/by-name/ul/ulauncher/package.nix +++ b/pkgs/by-name/ul/ulauncher/package.nix @@ -116,13 +116,13 @@ python3Packages.buildPythonApplication rec { updateScript = nix-update-script { }; }; - 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 sebtm ]; 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 559fd4adfbb1a..451b0e5d255c7 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 522601052787d..cb345bc50e862 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 c95ca2ec1db68..eeb5867b1765f 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 4bf46c62e5577..978fd9d6a1d8e 100644 --- a/pkgs/by-name/ul/ultrastardx/package.nix +++ b/pkgs/by-name/ul/ultrastardx/package.nix @@ -81,12 +81,12 @@ 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; [ Profpatsch ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ Profpatsch ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/um/umoci/package.nix b/pkgs/by-name/um/umoci/package.nix index 8f74acd0dd705..5725518a3fd47 100644 --- a/pkgs/by-name/um/umoci/package.nix +++ b/pkgs/by-name/um/umoci/package.nix @@ -37,11 +37,11 @@ buildGoModule rec { installManPage doc/man/*.[1-9] ''; - meta = with lib; { + meta = { description = "umoci modifies Open Container images"; homepage = "https://umo.ci"; - license = licenses.asl20; - maintainers = with maintainers; [ zokrezyl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ zokrezyl ]; mainProgram = "umoci"; }; } diff --git a/pkgs/by-name/um/umoria/package.nix b/pkgs/by-name/um/umoria/package.nix index 9e56a85f1d420..dd00c66074ef7 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/umpire/package.nix b/pkgs/by-name/um/umpire/package.nix index 6ba2b7027d67d..360a1a165db2b 100644 --- a/pkgs/by-name/um/umpire/package.nix +++ b/pkgs/by-name/um/umpire/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { (lib.cmakeFeature "CMAKE_CUDA_ARCHITECTURES" cudaPackages.flags.cmakeCudaArchitecturesString) ]; - meta = with lib; { + meta = { description = "Application-focused API for memory management on NUMA & GPU architectures"; homepage = "https://github.com/LLNL/Umpire"; - maintainers = with maintainers; [ sheepforce ]; - license = with licenses; [ mit ]; + maintainers = with lib.maintainers; [ sheepforce ]; + license = with lib.licenses; [ mit ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/um/umr/package.nix b/pkgs/by-name/um/umr/package.nix index 5f612bb93438c..fcd742b19e851 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/um/umurmur/package.nix b/pkgs/by-name/um/umurmur/package.nix index d2e5aa0498969..9d026c8a2d2b8 100644 --- a/pkgs/by-name/um/umurmur/package.nix +++ b/pkgs/by-name/um/umurmur/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { "--enable-shmapi" ]; - meta = with lib; { + meta = { description = "Minimalistic Murmur (Mumble server)"; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://github.com/umurmur/umurmur"; - platforms = platforms.all; + platforms = lib.platforms.all; # never built on aarch64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; mainProgram = "umurmurd"; diff --git a/pkgs/by-name/un/unbook/package.nix b/pkgs/by-name/un/unbook/package.nix index 3c50f83d5a5eb..ba8e87a1cbe87 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/unclutter-xfixes/package.nix b/pkgs/by-name/un/unclutter-xfixes/package.nix index 4c04befe01c16..9ea4b47c05946 100644 --- a/pkgs/by-name/un/unclutter-xfixes/package.nix +++ b/pkgs/by-name/un/unclutter-xfixes/package.nix @@ -45,9 +45,9 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Rewrite of unclutter using the X11 Xfixes extension"; - platforms = platforms.unix; + platforms = lib.platforms.unix; license = lib.licenses.mit; maintainers = [ ]; mainProgram = "unclutter"; diff --git a/pkgs/by-name/un/unconvert/package.nix b/pkgs/by-name/un/unconvert/package.nix index aab3ac49168fd..3149341857ada 100644 --- a/pkgs/by-name/un/unconvert/package.nix +++ b/pkgs/by-name/un/unconvert/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - 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 8d9c67b7c2f27..8625ca6643eb0 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 6eef53d3b98b5..82541764edb8e 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 93a358db67fbe..9e125d750ab10 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 rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://undefined-medium.com/"; description = "Pixel grid-based monospace typeface"; longDescription = '' @@ -29,7 +29,7 @@ stdenvNoCC.mkDerivation rec { 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/undistract-me/package.nix b/pkgs/by-name/un/undistract-me/package.nix index 2bc59f15d3b0a..503df3b34c514 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 rec { 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 47d58a552366c..133a969d21c83 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 2d5d1b3d1b9e0..0f992a48cac43 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 = "A 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/unfurl/package.nix b/pkgs/by-name/un/unfurl/package.nix index ccca02140d70d..71d040ce18fb5 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/un/uni-sync/package.nix b/pkgs/by-name/un/uni-sync/package.nix index 3625fcf2d5780..898880adf5eb1 100644 --- a/pkgs/by-name/un/uni-sync/package.nix +++ b/pkgs/by-name/un/uni-sync/package.nix @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-DdmjP0h15cXkHJZxvOcINgoZ/EhTgu/7iYb+bgsIXxU="; - 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 7c3aa2a186bd6..268f46c1f8194 100644 --- a/pkgs/by-name/un/uni-vga/package.nix +++ b/pkgs/by-name/un/uni-vga/package.nix @@ -68,10 +68,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/unicap/package.nix b/pkgs/by-name/un/unicap/package.nix index 4f47bf22a7a88..0933d1927dbbb 100644 --- a/pkgs/by-name/un/unicap/package.nix +++ b/pkgs/by-name/un/unicap/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { sed -e 's@/etc/udev@'"$out"'/&@' -i data/Makefile.* ''; - meta = with lib; { + meta = { description = "Universal video capture API"; homepage = "https://www.unicap-imaging.org/"; - 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/by-name/un/unicode-character-database/package.nix b/pkgs/by-name/un/unicode-character-database/package.nix index 48e17bdd6654c..6e19f22d1a204 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/unicode-emoji/package.nix b/pkgs/by-name/un/unicode-emoji/package.nix index 7751b455393a4..b4568653a3e8c 100644 --- a/pkgs/by-name/un/unicode-emoji/package.nix +++ b/pkgs/by-name/un/unicode-emoji/package.nix @@ -55,10 +55,10 @@ symlinkJoin { passthru = srcs; - meta = with lib; { + meta = { description = "Unicode Emoji Data Files"; homepage = "https://home.unicode.org/emoji/"; - 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/unicode-paracode/package.nix b/pkgs/by-name/un/unicode-paracode/package.nix index f2d6e7cb8d29c..f86283ae7384c 100644 --- a/pkgs/by-name/un/unicode-paracode/package.nix +++ b/pkgs/by-name/un/unicode-paracode/package.nix @@ -38,11 +38,11 @@ python3Packages.buildPythonApplication rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Display unicode character properties"; homepage = "https://github.com/garabik/unicode"; - license = licenses.gpl3; - maintainers = [ maintainers.woffs ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.woffs ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/un/unicon-lang/package.nix b/pkgs/by-name/un/unicon-lang/package.nix index 21352007c9744..e634238fcd665 100644 --- a/pkgs/by-name/un/unicon-lang/package.nix +++ b/pkgs/by-name/un/unicon-lang/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation { cp -r bin $out/ ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "Very high level, goal-directed, object-oriented, general purpose applications language"; maintainers = [ ]; - platforms = platforms.linux; - license = licenses.gpl2; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2; homepage = "http://unicon.org"; }; } diff --git a/pkgs/by-name/un/unifdef/package.nix b/pkgs/by-name/un/unifdef/package.nix index d3a8bf96ae743..dcb51da6539ba 100644 --- a/pkgs/by-name/un/unifdef/package.nix +++ b/pkgs/by-name/un/unifdef/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { "DESTDIR=" ]; - meta = with lib; { + meta = { homepage = "https://dotat.at/prog/unifdef/"; description = "Selectively remove C preprocessor conditionals"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/un/unifiedpush-common-proxies/package.nix b/pkgs/by-name/un/unifiedpush-common-proxies/package.nix index 14952cad65667..531f18548324f 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/unihan-database/package.nix b/pkgs/by-name/un/unihan-database/package.nix index 1cabda4b99ddc..8328570887588 100644 --- a/pkgs/by-name/un/unihan-database/package.nix +++ b/pkgs/by-name/un/unihan-database/package.nix @@ -29,10 +29,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/unimatrix/package.nix b/pkgs/by-name/un/unimatrix/package.nix index 69ff40f2c2f02..163c825120d91 100644 --- a/pkgs/by-name/un/unimatrix/package.nix +++ b/pkgs/by-name/un/unimatrix/package.nix @@ -27,11 +27,11 @@ python3Packages.buildPythonApplication rec { 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/unionfs-fuse/package.nix b/pkgs/by-name/un/unionfs-fuse/package.nix index fe9b3ff7fd331..a19a1281abe6d 100644 --- a/pkgs/by-name/un/unionfs-fuse/package.nix +++ b/pkgs/by-name/un/unionfs-fuse/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { substituteInPlace $out/sbin/mount.unionfs-fuse --replace unionfs $out/bin/unionfs ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "FUSE UnionFS implementation"; homepage = "https://github.com/rpodgorny/unionfs-fuse"; - license = licenses.bsd3; - platforms = platforms.unix; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/un/universal-ctags/package.nix b/pkgs/by-name/un/universal-ctags/package.nix index abc808c3ba45a..820c86d523a46 100644 --- a/pkgs/by-name/un/universal-ctags/package.nix +++ b/pkgs/by-name/un/universal-ctags/package.nix @@ -77,7 +77,7 @@ stdenv.mkDerivation (finalAttrs: { "units" ]; - meta = with lib; { + meta = { homepage = "https://docs.ctags.io/en/latest/"; description = "Maintained ctags implementation"; longDescription = '' @@ -86,9 +86,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; - maintainers = [ maintainers.AndersonTorres ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.AndersonTorres ]; + 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 aacd8e29394f2..08faab74c0d87 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 62787cb2228b8..15393de858d5d 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 52ccbc26a416d..bfa543fe0948f 100644 --- a/pkgs/by-name/un/unixbench/package.nix +++ b/pkgs/by-name/un/unixbench/package.nix @@ -106,12 +106,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 99645317ce232..5516714dc4988 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/unnethack/package.nix b/pkgs/by-name/un/unnethack/package.nix index 892f29b822726..f07f9b7754ac0 100644 --- a/pkgs/by-name/un/unnethack/package.nix +++ b/pkgs/by-name/un/unnethack/package.nix @@ -81,12 +81,12 @@ stdenv.mkDerivation rec { chmod +x $out/bin/unnethack ''; - meta = with lib; { + meta = { description = "Fork of NetHack"; mainProgram = "unnethack"; homepage = "https://unnethack.wordpress.com/"; license = "nethack"; - platforms = platforms.all; - maintainers = with maintainers; [ abbradar ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/un/unoconv/package.nix b/pkgs/by-name/un/unoconv/package.nix index 0291fc19c1dd7..d372ceefab0bf 100644 --- a/pkgs/by-name/un/unoconv/package.nix +++ b/pkgs/by-name/un/unoconv/package.nix @@ -39,12 +39,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/unp/package.nix b/pkgs/by-name/un/unp/package.nix index 8c5f1e48c2a47..e37f2fbf5e15b 100644 --- a/pkgs/by-name/un/unp/package.nix +++ b/pkgs/by-name/un/unp/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation { --prefix PATH : ${lib.makeBinPath runtime_bins} ''; - meta = with lib; { + meta = { description = "Command line tool for unpacking archives easily"; homepage = "https://packages.qa.debian.org/u/unp.html"; - license = with licenses; [ gpl2Only ]; - maintainers = [ maintainers.timor ]; - platforms = platforms.all; + license = with lib.licenses; [ gpl2Only ]; + maintainers = [ lib.maintainers.timor ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/un/unparam/package.nix b/pkgs/by-name/un/unparam/package.nix index 2f36ffff605cb..b0be2146a524b 100644 --- a/pkgs/by-name/un/unparam/package.nix +++ b/pkgs/by-name/un/unparam/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { 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/unrar/package.nix b/pkgs/by-name/un/unrar/package.nix index 745cdd1003a8b..aafb8007c6f38 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 0359448a9c606..ec986657c2413 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 422f9e9d3199b..d0dc26fe72dd2 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/unsilence/package.nix b/pkgs/by-name/un/unsilence/package.nix index a746adf6bd92f..c3d49278b5a45 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 282c5e13eb350..c30e4b779a5a9 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/untie/package.nix b/pkgs/by-name/un/untie/package.nix index 9dee6d7e422da..6dc9e55868b5a 100644 --- a/pkgs/by-name/un/untie/package.nix +++ b/pkgs/by-name/un/untie/package.nix @@ -14,12 +14,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Tool to run processes untied from some of the namespaces"; mainProgram = "untie"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; }; passthru = { diff --git a/pkgs/by-name/un/untrunc-anthwlock/package.nix b/pkgs/by-name/un/untrunc-anthwlock/package.nix index 547dc69cb65ec..bd9dd27c98684 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 3d8fd5c8f7a58..647c84bc51eca 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-hCtkR20+xs1UHZP7oJVpJACVGcMQLQmSS1QE2tmIVhs="; - 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/unzoo/package.nix b/pkgs/by-name/un/unzoo/package.nix index 0b2fb186b629e..cf19bdb2614c9 100644 --- a/pkgs/by-name/un/unzoo/package.nix +++ b/pkgs/by-name/un/unzoo/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/museoa/unzoo/"; description = "Manipulate archives of files in Zoo compressed form"; - license = licenses.publicDomain; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.all; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.all; mainProgram = "unzoo"; }; } diff --git a/pkgs/by-name/un/unzrip/package.nix b/pkgs/by-name/un/unzrip/package.nix index fbd233b600679..5093bc418bcf5 100644 --- a/pkgs/by-name/un/unzrip/package.nix +++ b/pkgs/by-name/un/unzrip/package.nix @@ -27,11 +27,11 @@ rustPlatform.buildRustPackage rec { zstd ]; - meta = with lib; { + meta = { description = "Unzip implementation, support for parallel decompression, automatic detection encoding"; homepage = "https://github.com/quininer/unzrip"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "unzrip"; }; } diff --git a/pkgs/by-name/up/up/package.nix b/pkgs/by-name/up/up/package.nix index a25f1406e436e..cc99407ee1afd 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/updfparser/package.nix b/pkgs/by-name/up/updfparser/package.nix index 93f6143964b09..b6c6a93a02381 100644 --- a/pkgs/by-name/up/updfparser/package.nix +++ b/pkgs/by-name/up/updfparser/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Very simple PDF parser"; homepage = "https://indefero.soutade.fr/p/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/updog/package.nix b/pkgs/by-name/up/updog/package.nix index 772dcf8b87881..8497cd6f251e7 100644 --- a/pkgs/by-name/up/updog/package.nix +++ b/pkgs/by-name/up/updog/package.nix @@ -25,11 +25,11 @@ python3Packages.buildPythonApplication rec { $out/bin/updog --help > /dev/null ''; - meta = with lib; { + meta = { description = "Updog is a replacement for Python's SimpleHTTPServer"; mainProgram = "updog"; homepage = "https://github.com/sc0tfree/updog"; - license = licenses.mit; - maintainers = with maintainers; [ ethancedwards8 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ethancedwards8 ]; }; } diff --git a/pkgs/by-name/up/upiano/package.nix b/pkgs/by-name/up/upiano/package.nix index 3c6dda83a42f1..8818de3687154 100644 --- a/pkgs/by-name/up/upiano/package.nix +++ b/pkgs/by-name/up/upiano/package.nix @@ -35,11 +35,11 @@ python3.pkgs.buildPythonApplication rec { "upiano" ]; - meta = with lib; { + meta = { description = "Piano in your terminal"; homepage = "https://github.com/eliasdorneles/upiano"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "upiano"; }; } diff --git a/pkgs/by-name/up/upnp-router-control/package.nix b/pkgs/by-name/up/upnp-router-control/package.nix index a837a922b060a..cd8997088d9e1 100644 --- a/pkgs/by-name/up/upnp-router-control/package.nix +++ b/pkgs/by-name/up/upnp-router-control/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { gupnp_1_6 ]; - meta = with lib; { + meta = { # also https://gitlab.gnome.org/DnaX/upnp-router-control homepage = "https://launchpad.net/upnp-router-control"; description = "Access some parameters of the router and manage port forwarding"; @@ -46,9 +46,9 @@ stdenv.mkDerivation (finalAttrs: { the network speed, the external IP and the model name. It can manage port forwarding through a simple GUI interface. ''; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; mainProgram = "upnp-router-control"; }; }) diff --git a/pkgs/by-name/up/upower-notify/package.nix b/pkgs/by-name/up/upower-notify/package.nix index f93fcce1237a2..e2121adfa0aff 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/uppaal/package.nix b/pkgs/by-name/up/uppaal/package.nix index f61425fbad559..f8e8d3fa46a50 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 f563ea93a1700..191b525e107f1 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/upscayl/package.nix b/pkgs/by-name/up/upscayl/package.nix index 358e1cb6ec14c..220b2d5bcdb13 100644 --- a/pkgs/by-name/up/upscayl/package.nix +++ b/pkgs/by-name/up/upscayl/package.nix @@ -43,12 +43,12 @@ appimageTools.wrapType2 { --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime=true}}" ''; - meta = with lib; { + meta = { description = "Free and Open Source AI Image Upscaler"; homepage = "https://upscayl.github.io/"; - maintainers = with maintainers; [ icy-thought ]; - license = licenses.agpl3Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ icy-thought ]; + license = lib.licenses.agpl3Plus; + platforms = lib.platforms.linux; mainProgram = "upscayl"; }; } diff --git a/pkgs/by-name/up/upspin/package.nix b/pkgs/by-name/up/upspin/package.nix index 4148d30da9f15..19eaacf72a485 100644 --- a/pkgs/by-name/up/upspin/package.nix +++ b/pkgs/by-name/up/upspin/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # 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/uptimed/package.nix b/pkgs/by-name/up/uptimed/package.nix index adfdb5b0e3348..c1833fcdbb1db 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/upx/package.nix b/pkgs/by-name/up/upx/package.nix index 6063ceb136222..7d5d40f4e2616 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/uq/package.nix b/pkgs/by-name/uq/uq/package.nix index 7941059209555..f0b0cec802812 100644 --- a/pkgs/by-name/uq/uq/package.nix +++ b/pkgs/by-name/uq/uq/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-hBV+mqN4rnHGKAVRtlk2VFml/T9YQxzGTvGK2jcCwNw="; - meta = with lib; { + meta = { description = "Simple, user-friendly alternative to sort | uniq"; homepage = "https://github.com/lostutils/uq"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar matthiasbeyer ]; diff --git a/pkgs/by-name/uq/uqmi/package.nix b/pkgs/by-name/uq/uqmi/package.nix index 6ee2d0f28f044..2f94ebb850def 100644 --- a/pkgs/by-name/uq/uqmi/package.nix +++ b/pkgs/by-name/uq/uqmi/package.nix @@ -43,12 +43,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 6ba24343cee2c..17c34cec6a6da 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/urdfdom-headers/package.nix b/pkgs/by-name/ur/urdfdom-headers/package.nix index e1d0ed250c2d4..8f2a1940e4896 100644 --- a/pkgs/by-name/ur/urdfdom-headers/package.nix +++ b/pkgs/by-name/ur/urdfdom-headers/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { validatePkgConfig ]; - meta = with lib; { + meta = { description = "URDF (U-Robot Description Format) headers provides core data structure headers for URDF"; homepage = "https://github.com/ros/urdfdom_headers"; - 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/ur/urdfdom/package.nix b/pkgs/by-name/ur/urdfdom/package.nix index 6407c1b42d2f2..ca9b8d568211d 100644 --- a/pkgs/by-name/ur/urdfdom/package.nix +++ b/pkgs/by-name/ur/urdfdom/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { ]; propagatedBuildInputs = [ urdfdom-headers ]; - meta = with lib; { + meta = { description = "Provides core data structures and a simple XML parser for populating the class data structures from an URDF file"; homepage = "https://github.com/ros/urdfdom"; - 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/ur/urjtag/package.nix b/pkgs/by-name/ur/urjtag/package.nix index 31ab002965399..ed1a021e73c5d 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 = with maintainers; [ AndersonTorres ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ur/urlencode/package.nix b/pkgs/by-name/ur/urlencode/package.nix index 54c89485d1c7d..044fdad09b33a 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-UPw+/wVOEM+kciOr70P+gdMCxtCKQ/SXsNAWA44v4v8="; - 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 315ce0d163438..be96d46b18923 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-JDDxarFROBhdi76mY6udn++lReKLdju/JBpj3JhGdQA="; - 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/urlwatch/package.nix b/pkgs/by-name/ur/urlwatch/package.nix index b484e07e2e5d0..8c9b5dcff87ee 100644 --- a/pkgs/by-name/ur/urlwatch/package.nix +++ b/pkgs/by-name/ur/urlwatch/package.nix @@ -34,12 +34,12 @@ python3Packages.buildPythonApplication rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Tool for monitoring webpages for updates"; mainProgram = "urlwatch"; homepage = "https://thp.io/2008/urlwatch/"; - 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 20bbf66a86eba..379ed7392de99 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 9f1ee36f59a67..8c38afc3e3868 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; - maintainers = with maintainers; [ CrazedProgrammer ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ CrazedProgrammer ]; + platforms = lib.platforms.all; }; passthru = { diff --git a/pkgs/by-name/ur/uroboros/package.nix b/pkgs/by-name/ur/uroboros/package.nix index c798631aaf5ea..7b9116306e509 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 38b623f3f9358..4d7eecb8f5d1e 100644 --- a/pkgs/by-name/ur/ursadb/package.nix +++ b/pkgs/by-name/ur/ursadb/package.nix @@ -31,12 +31,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; }; }) diff --git a/pkgs/by-name/us/usb-reset/package.nix b/pkgs/by-name/us/usb-reset/package.nix index bbe78a56a5ba8..25fd29171a963 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 rec { "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; - maintainers = [ maintainers.evils ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.evils ]; + platforms = lib.platforms.all; mainProgram = "usb-reset"; }; } diff --git a/pkgs/by-name/us/usbguard/package.nix b/pkgs/by-name/us/usbguard/package.nix index 9c2c6a2a495b6..4f5386fe15413 100644 --- a/pkgs/by-name/us/usbguard/package.nix +++ b/pkgs/by-name/us/usbguard/package.nix @@ -74,7 +74,7 @@ stdenv.mkDerivation rec { passthru.tests = nixosTests.usbguard; - meta = with lib; { + meta = { description = "USBGuard software framework helps to protect your computer against BadUSB"; longDescription = '' USBGuard is a software framework for implementing USB device authorization @@ -83,8 +83,8 @@ stdenv.mkDerivation rec { it is a USB device whitelisting tool. ''; homepage = "https://usbguard.github.io/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.tnias ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.tnias ]; }; } diff --git a/pkgs/by-name/us/usbmuxd/package.nix b/pkgs/by-name/us/usbmuxd/package.nix index bf0ac9051ef27..020e7e0fa4e22 100644 --- a/pkgs/by-name/us/usbmuxd/package.nix +++ b/pkgs/by-name/us/usbmuxd/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system" ]; - meta = with lib; { + meta = { homepage = "https://github.com/libimobiledevice/usbmuxd"; description = "Socket daemon to multiplex connections from and to iOS devices"; longDescription = '' @@ -50,8 +50,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 c8ba1fd312609..8db89942efdf4 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 703c8e4deb55d..986938a0ee0a1 100644 --- a/pkgs/by-name/us/usbrip/package.nix +++ b/pkgs/by-name/us/usbrip/package.nix @@ -36,12 +36,12 @@ python3.pkgs.buildPythonApplication rec { 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/usbsdmux/package.nix b/pkgs/by-name/us/usbsdmux/package.nix index d50dff5fe10f8..9a0fa04d0c1f8 100644 --- a/pkgs/by-name/us/usbsdmux/package.nix +++ b/pkgs/by-name/us/usbsdmux/package.nix @@ -27,11 +27,11 @@ python3Packages.buildPythonApplication rec { install -Dm0444 -t $out/lib/udev/rules.d/ contrib/udev/99-usbsdmux.rules ''; - meta = with lib; { + meta = { description = "Control software for the LXA USB-SD-Mux"; homepage = "https://github.com/linux-automation/usbsdmux"; - license = licenses.lgpl21; - maintainers = with maintainers; [ emantor ]; - platforms = with platforms; linux; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ emantor ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/us/usbtop/package.nix b/pkgs/by-name/us/usbtop/package.nix index 0db9ee630354e..a95c40b30ee7c 100644 --- a/pkgs/by-name/us/usbtop/package.nix +++ b/pkgs/by-name/us/usbtop/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { boost ]; - meta = with lib; { + meta = { homepage = "https://github.com/aguinet/usbtop"; description = "Top utility that shows an estimated instantaneous bandwidth on USB buses and devices"; mainProgram = "usbtop"; maintainers = [ ]; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/us/usbview/package.nix b/pkgs/by-name/us/usbview/package.nix index 2fa506a18b821..6e9d69fe1238e 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 bf6c1b58f8dbc..342f282e538c2 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 ed2271e0df694..e86e667df9474 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 rec { 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 9d5e72f1f2c65..98723955b270b 100644 --- a/pkgs/by-name/us/usrsctp/package.nix +++ b/pkgs/by-name/us/usrsctp/package.nix @@ -39,11 +39,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/usync/package.nix b/pkgs/by-name/us/usync/package.nix index 872aa26187b7d..4ed00b45f267d 100644 --- a/pkgs/by-name/us/usync/package.nix +++ b/pkgs/by-name/us/usync/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { 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 9ec4f95c71217..4bbf02109de80 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 = "UT: 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/uthash/package.nix b/pkgs/by-name/ut/uthash/package.nix index 439324f8c009d..0cb2dc49b1b1f 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 85e1e65086b89..17197c75cc349 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 58aff9b45cf04..a16a31db52dba 100644 --- a/pkgs/by-name/ut/utox/package.nix +++ b/pkgs/by-name/ut/utox/package.nix @@ -64,12 +64,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/utterly-round-plasma-style/package.nix b/pkgs/by-name/ut/utterly-round-plasma-style/package.nix index 60137219288c9..170be356e700d 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 rec { 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 5f6bdfe368bf8..24c36befbac19 100644 --- a/pkgs/by-name/uu/uuu/package.nix +++ b/pkgs/by-name/uu/uuu/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation (finalAttrs: { cat <($out/bin/uuu -udev) > $out/lib/udev/rules.d/70-uuu.rules ''; - 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 8d2132a762c85..317893cd6af0b 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 91fa8a0eabf4a..dbb6ee5f290c9 100644 --- a/pkgs/by-name/uv/uvcdynctrl/package.nix +++ b/pkgs/by-name/uv/uvcdynctrl/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation { done ''; - 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 eb5df76c90c2b..a311c1778d4d3 100644 --- a/pkgs/by-name/uw/uw-ttyp0/package.nix +++ b/pkgs/by-name/uw/uw-ttyp0/package.nix @@ -97,14 +97,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 fea7e9cd0107a..c11cd5cdae0bc 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 7c2095f259599..213c703c44cd2 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 16e8b2315face..2c568c9f43490 100644 --- a/pkgs/by-name/uw/uwufetch/package.nix +++ b/pkgs/by-name/uw/uwufetch/package.nix @@ -51,12 +51,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 128b590ee80ba..941776add30d5 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-1BoB7K/dWy3AbogvHIDLrdPD7K54EISvn4RVU5RLTi4="; 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 b7439e413c9a4..885afc8767722 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-k42qnHQY9bfSjyGGtaqKdIxlvU/C7TiN8sD0AiRQmVU="; }; vendorHash = "sha256-NLh14rXRci4hgDkBJVJDIDvobndB7KYRKAX7UjyqSsg="; - 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/v4l2-relayd/package.nix b/pkgs/by-name/v4/v4l2-relayd/package.nix index 8d056f3a00e2a..29e5ba30ffdff 100644 --- a/pkgs/by-name/v4/v4l2-relayd/package.nix +++ b/pkgs/by-name/v4/v4l2-relayd/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { preConfigure = "./autogen.sh --prefix=$out"; - meta = with lib; { + meta = { description = "Streaming relay for v4l2loopback using GStreamer"; mainProgram = "v4l2-relayd"; homepage = "https://git.launchpad.net/v4l2-relayd"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ betaboon ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ betaboon ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/v4/v4l2-to-ndi/package.nix b/pkgs/by-name/v4/v4l2-to-ndi/package.nix index 4912c362692b5..9e7bceca7f807 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 564460b104bc0..3bd0ae01e10c8 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 fb52d3ebc0c9c..2b840573911bd 100644 --- a/pkgs/by-name/va/vagrant/package.nix +++ b/pkgs/by-name/va/vagrant/package.nix @@ -131,11 +131,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 87d67a44acf48..fd87734907c7c 100644 --- a/pkgs/by-name/va/vala-language-server/package.nix +++ b/pkgs/by-name/va/vala-language-server/package.nix @@ -50,12 +50,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 8a2d5d2220d8a..83ee79e1c305c 100644 --- a/pkgs/by-name/va/vala-lint/package.nix +++ b/pkgs/by-name/va/vala-lint/package.nix @@ -53,16 +53,16 @@ stdenv.mkDerivation rec { }; }; - 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; mainProgram = "io.elementary.vala-lint"; }; } diff --git a/pkgs/by-name/va/vale-ls/package.nix b/pkgs/by-name/va/vale-ls/package.nix index e5d69ccf4a72c..8ec8a2bd0e576 100644 --- a/pkgs/by-name/va/vale-ls/package.nix +++ b/pkgs/by-name/va/vale-ls/package.nix @@ -58,12 +58,12 @@ rustPlatform.buildRustPackage rec { --prefix PATH : ${lib.makeBinPath [ vale ]} ''; - meta = with lib; { + meta = { description = "LSP implementation for the Vale command-line tool"; homepage = "https://github.com/errata-ai/vale-ls"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "vale-ls"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ foo-dogsquared jansol ]; diff --git a/pkgs/by-name/va/valijson/package.nix b/pkgs/by-name/va/valijson/package.nix index 0c928e81f08b1..68ac935170768 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/valum/package.nix b/pkgs/by-name/va/valum/package.nix index e2dec1824b57c..27f83e20015d3 100644 --- a/pkgs/by-name/va/valum/package.nix +++ b/pkgs/by-name/va/valum/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { fcgi ]; - meta = with lib; { + meta = { homepage = "https://github.com/valum-framework/valum"; description = "Web micro-framework written in Vala"; - license = licenses.lgpl3; - platforms = platforms.linux; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; maintainers = [ ]; # Likely broken by GLib 2.74 switch to PCRE 2. # https://github.com/valum-framework/valum/issues/238 diff --git a/pkgs/by-name/va/valuta/package.nix b/pkgs/by-name/va/valuta/package.nix index 05a2a0ff7ba8a..cfceaf0470237 100644 --- a/pkgs/by-name/va/valuta/package.nix +++ b/pkgs/by-name/va/valuta/package.nix @@ -61,12 +61,12 @@ 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 ] ++ lib.teams.gnome-circle.members; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ arthsmn ] ++ lib.teams.gnome-circle.members; 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 e7d538d1af06c..7ee46deb45c0c 100644 --- a/pkgs/by-name/va/vamp-plugin-sdk/package.nix +++ b/pkgs/by-name/va/vamp-plugin-sdk/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { "RANLIB:=$(RANLIB)" ] ++ 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 b6ff58b83557d..eb728e3877dfa 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 41ae1a11ccee9..cb4ee66667e8e 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 b426d111c7998..2c8567845711a 100644 --- a/pkgs/by-name/va/vapoursynth/editor.nix +++ b/pkgs/by-name/va/vapoursynth/editor.nix @@ -64,12 +64,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 f2b57cddf493c..3cc7b621d048d 100644 --- a/pkgs/by-name/va/vapoursynth/package.nix +++ b/pkgs/by-name/va/vapoursynth/package.nix @@ -102,12 +102,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/varia/package.nix b/pkgs/by-name/va/varia/package.nix index c5c6ee6230f69..5895cd1de774e 100644 --- a/pkgs/by-name/va/varia/package.nix +++ b/pkgs/by-name/va/varia/package.nix @@ -58,12 +58,12 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Simple download manager based on aria2 and libadwaita"; homepage = "https://giantpinkrobots.github.io/varia"; - license = licenses.mpl20; + license = lib.licenses.mpl20; mainProgram = "varia"; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/va/vault-medusa/package.nix b/pkgs/by-name/va/vault-medusa/package.nix index 9697eb60bcfab..e333dda9c2573 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 5b81c36426b3c..2d1ac5467d548 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 3aa6170f57b16..a5b32ddb5dd05 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/vb/vbam/package.nix b/pkgs/by-name/vb/vbam/package.nix index a52c273ec56f2..976830230238a 100644 --- a/pkgs/by-name/vb/vbam/package.nix +++ b/pkgs/by-name/vb/vbam/package.nix @@ -59,10 +59,10 @@ stdenv.mkDerivation rec { "-DENABLE_SDL='true'" ]; - meta = with lib; { + meta = { description = "Merge of the original Visual Boy Advance forks"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ lassulus netali ]; diff --git a/pkgs/by-name/vb/vbetool/package.nix b/pkgs/by-name/vb/vbetool/package.nix index 9cf71be3c8529..d5394d15335ae 100644 --- a/pkgs/by-name/vb/vbetool/package.nix +++ b/pkgs/by-name/vb/vbetool/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { configureFlags = [ "LDFLAGS=-lpci" ]; - meta = with lib; { + meta = { description = "Video BIOS execution tool"; homepage = "https://www.codon.org.uk/~mjg59/vbetool/"; - maintainers = [ maintainers.raskin ]; - platforms = platforms.linux; - license = licenses.gpl2Only; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; mainProgram = "vbetool"; }; } diff --git a/pkgs/by-name/vb/vboot_reference/package.nix b/pkgs/by-name/vb/vboot_reference/package.nix index 3489f6c20ef75..25e2ba5ed6e0b 100644 --- a/pkgs/by-name/vb/vboot_reference/package.nix +++ b/pkgs/by-name/vb/vboot_reference/package.nix @@ -66,10 +66,10 @@ stdenv.mkDerivation rec { cp -r tests/devkeys* $out/share/vboot/ ''; - meta = with lib; { + meta = { description = "Chrome OS partitioning and kernel signing tools"; - license = licenses.bsd3; - platforms = platforms.linux; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/vc/vcal/package.nix b/pkgs/by-name/vc/vcal/package.nix index 1efc9ee6af6bb..0facbd56be487 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 af77f7532c309..23a5df4a28bae 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 d3b1bb1301ec0..c2bddb843e4e0 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/vcg/package.nix b/pkgs/by-name/vc/vcg/package.nix index 7fe6f3832f869..c050a312fe2c6 100644 --- a/pkgs/by-name/vc/vcg/package.nix +++ b/pkgs/by-name/vc/vcg/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { find $out -name \*.h -exec sed -i 's, $out/etc/udev/rules.d/92-viia.rules ''; - meta = with lib; { + meta = { description = "Yet another keyboard configurator"; homepage = "https://caniusevia.com/"; - license = licenses.gpl3; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.gpl3; + 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 40821c700d632..84be8c2ed8fb9 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/victor-mono/package.nix b/pkgs/by-name/vi/victor-mono/package.nix index 9ae2a77db05c3..7702c81cb644c 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/vidmerger/package.nix b/pkgs/by-name/vi/vidmerger/package.nix index 28f5fdff031ad..eabf6abec54e0 100644 --- a/pkgs/by-name/vi/vidmerger/package.nix +++ b/pkgs/by-name/vi/vidmerger/package.nix @@ -31,14 +31,14 @@ rustPlatform.buildRustPackage rec { ffmpeg ]; - meta = with lib; { + meta = { description = "Merge video & audio files via CLI"; homepage = "https://github.com/TGotwig/vidmerger"; - license = with licenses; [ + license = with lib.licenses; [ mit commons-clause ]; - maintainers = with maintainers; [ ByteSudoer ]; + maintainers = with lib.maintainers; [ ByteSudoer ]; mainProgram = "vidmerger"; }; } diff --git a/pkgs/by-name/vi/viennarna/package.nix b/pkgs/by-name/vi/viennarna/package.nix index 6219ac9a591a4..5a51f2ffe1ee8 100644 --- a/pkgs/by-name/vi/viennarna/package.nix +++ b/pkgs/by-name/vi/viennarna/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { "--with-kinwalker" ]; - meta = with lib; { + meta = { description = "Prediction and comparison of RNA secondary structures"; homepage = "https://www.tbi.univie.ac.at/RNA/"; - license = licenses.unfree; - maintainers = with maintainers; [ prusnak ]; - platforms = platforms.unix; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ prusnak ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/vi/viking/package.nix b/pkgs/by-name/vi/viking/package.nix index 6b40ded8b652d..8d068d9b24ee7 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-language-server/package.nix b/pkgs/by-name/vi/vim-language-server/package.nix index 7e192164ffa44..f09921ec890f2 100644 --- a/pkgs/by-name/vi/vim-language-server/package.nix +++ b/pkgs/by-name/vi/vim-language-server/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation (finalAttrs: { export NODE_OPTIONS=--openssl-legacy-provider ''; - meta = with lib; { + meta = { description = "VImScript language server, LSP for vim script"; homepage = "https://github.com/iamcco/vim-language-server"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; mainProgram = "vim-language-server"; }; }) diff --git a/pkgs/by-name/vi/vim-startuptime/package.nix b/pkgs/by-name/vi/vim-startuptime/package.nix index e3b58b92316d7..7cd1cf1dcdf09 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/vim-vint/package.nix b/pkgs/by-name/vi/vim-vint/package.nix index 52edbdf0d289e..be5ff8df3e358 100644 --- a/pkgs/by-name/vi/vim-vint/package.nix +++ b/pkgs/by-name/vi/vim-vint/package.nix @@ -35,12 +35,12 @@ buildPythonApplication rec { sed -i 's/mock == 1.0.1/mock/g' setup.py ''; - meta = with lib; { + meta = { description = "Fast and Highly Extensible Vim script Language Lint implemented by Python"; homepage = "https://github.com/Kuniwak/vint"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "vint"; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/vi/vimcats/package.nix b/pkgs/by-name/vi/vimcats/package.nix index da2bd69d0aba4..3424628aee83e 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 = "A 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 e131eb0e044f9..61929aba15776 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/vimiv-qt/package.nix b/pkgs/by-name/vi/vimiv-qt/package.nix index f11716993ce53..f1e1593cc2dd5 100644 --- a/pkgs/by-name/vi/vimiv-qt/package.nix +++ b/pkgs/by-name/vi/vimiv-qt/package.nix @@ -49,12 +49,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-cursor-theme/package.nix b/pkgs/by-name/vi/vimix-cursor-theme/package.nix index a030580e7ff44..22a95e5e9dbcd 100644 --- a/pkgs/by-name/vi/vimix-cursor-theme/package.nix +++ b/pkgs/by-name/vi/vimix-cursor-theme/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation rec { cp -dr --no-preserve='ownership' dist-white/* $out/share/icons/Vimix-Cursors-White ''; - meta = with lib; { + meta = { description = "X-cursor theme inspired by Materia design and based on capitaine-cursors"; homepage = "https://github.com/vinceliuice/Vimix-cursors"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ redxtech ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ redxtech ]; }; } diff --git a/pkgs/by-name/vi/vimix-cursors/package.nix b/pkgs/by-name/vi/vimix-cursors/package.nix index 665938ae02e47..210877d2c77ba 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-icon-theme/package.nix b/pkgs/by-name/vi/vimix-icon-theme/package.nix index 9c0e0d9b9f7f3..012f938f00b51 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 3a546b764f97d..f18fc98310e13 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 bff4c550b940d..c8d473c7e8f5f 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-rYQxIttuGBGEkYkFtSBl8ce1I/Akm6FxeITJcaIeP6M="; - 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 a402a54fac89f..bc50a0c01ad78 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/vintagestory/package.nix b/pkgs/by-name/vi/vintagestory/package.nix index 361550405f88f..6a484b60bec2b 100644 --- a/pkgs/by-name/vi/vintagestory/package.nix +++ b/pkgs/by-name/vi/vintagestory/package.nix @@ -93,11 +93,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "In-development indie sandbox game about innovation and exploration"; homepage = "https://www.vintagestory.at/"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ artturin gigglesquid ]; diff --git a/pkgs/by-name/vi/vips/package.nix b/pkgs/by-name/vi/vips/package.nix index 61ac85da0971d..3cec6b64b0c95 100644 --- a/pkgs/by-name/vi/vips/package.nix +++ b/pkgs/by-name/vi/vips/package.nix @@ -150,12 +150,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { changelog = "https://github.com/libvips/libvips/blob/${finalAttrs.src.rev}/ChangeLog"; homepage = "https://www.libvips.org/"; description = "Image processing system for large images"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ kovirobi anthonyroussel ]; @@ -163,7 +163,7 @@ stdenv.mkDerivation (finalAttrs: { "vips" "vips-cpp" ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "vips"; }; }) diff --git a/pkgs/by-name/vi/vipsdisp/package.nix b/pkgs/by-name/vi/vipsdisp/package.nix index 80dcef083886d..6276a58d90899 100644 --- a/pkgs/by-name/vi/vipsdisp/package.nix +++ b/pkgs/by-name/vi/vipsdisp/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { # No tests implemented. doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/jcupitt/vipsdisp"; description = "Tiny image viewer with libvips"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "vipsdisp"; - maintainers = with maintainers; [ foo-dogsquared ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ foo-dogsquared ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/vi/virglrenderer/package.nix b/pkgs/by-name/vi/virglrenderer/package.nix index fc9f165f6369a..0a7000b6507c3 100644 --- a/pkgs/by-name/vi/virglrenderer/package.nix +++ b/pkgs/by-name/vi/virglrenderer/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Virtual 3D GPU library that allows a qemu guest to use the host GPU for accelerated 3D rendering"; mainProgram = "virgl_test_server"; homepage = "https://virgil3d.github.io/"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = [ maintainers.xeji ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.xeji ]; }; } diff --git a/pkgs/by-name/vi/virt-viewer/package.nix b/pkgs/by-name/vi/virt-viewer/package.nix index 253c5fab2e91e..5b2f8e4862938 100644 --- a/pkgs/by-name/vi/virt-viewer/package.nix +++ b/pkgs/by-name/vi/virt-viewer/package.nix @@ -103,14 +103,14 @@ stdenv.mkDerivation rec { patchShebangs build-aux/post_install.py ''; - meta = with lib; { + meta = { 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; }; passthru = { updateInfo = { diff --git a/pkgs/by-name/vi/virt-what/package.nix b/pkgs/by-name/vi/virt-what/package.nix index b06b0761a24be..e5d69872b0fb5 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/virtualpg/package.nix b/pkgs/by-name/vi/virtualpg/package.nix index 79b184516650f..f51a53d7831e6 100644 --- a/pkgs/by-name/vi/virtualpg/package.nix +++ b/pkgs/by-name/vi/virtualpg/package.nix @@ -27,15 +27,15 @@ stdenv.mkDerivation rec { sqlite ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Kerberos ]; - 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 edf173026d901..c47a205f10e10 100644 --- a/pkgs/by-name/vi/vis/package.nix +++ b/pkgs/by-name/vi/vis/package.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "A 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; }; } diff --git a/pkgs/by-name/vi/visual-hexdiff/package.nix b/pkgs/by-name/vi/visual-hexdiff/package.nix index d4665c986fac9..cee0446001f30 100644 --- a/pkgs/by-name/vi/visual-hexdiff/package.nix +++ b/pkgs/by-name/vi/visual-hexdiff/package.nix @@ -46,12 +46,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 4f9be9a5654f9..d463ed0c4957b 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,9 +50,9 @@ stdenv.mkDerivation rec { SE platform. ''; homepage = "https://visualvm.github.io"; - license = licenses.gpl2ClasspathPlus; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.gpl2ClasspathPlus; + 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 c95140f48fead..9ef9541bd14ab 100644 --- a/pkgs/by-name/vi/vit/package.nix +++ b/pkgs/by-name/vi/vit/package.nix @@ -36,12 +36,12 @@ buildPythonApplication rec { export TERM=''${TERM-linux} ''; - 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/viu/package.nix b/pkgs/by-name/vi/viu/package.nix index ef28b02e8c1d9..2755401b24649 100644 --- a/pkgs/by-name/vi/viu/package.nix +++ b/pkgs/by-name/vi/viu/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { buildFeatures = lib.optional withSixel "sixel"; buildInputs = lib.optional withSixel libsixel; - meta = with lib; { + meta = { description = "Command-line application to view images from the terminal written in Rust"; homepage = "https://github.com/atanunq/viu"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ chuangzhu sigmanificient ]; diff --git a/pkgs/by-name/vi/vivictpp/package.nix b/pkgs/by-name/vi/vivictpp/package.nix index 97bba1a68e7a8..a988635169ea7 100644 --- a/pkgs/by-name/vi/vivictpp/package.nix +++ b/pkgs/by-name/vi/vivictpp/package.nix @@ -76,12 +76,12 @@ stdenv.mkDerivation { patchShebangs . ''; - meta = with lib; { + meta = { description = "Easy to use tool for subjective comparison of the visual quality of different encodings of the same video source"; homepage = "https://github.com/vivictorg/vivictpp"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ tilpner ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ tilpner ]; mainProgram = "vivictpp"; }; } diff --git a/pkgs/by-name/vi/vivid/package.nix b/pkgs/by-name/vi/vivid/package.nix index 6696abe9bc21d..8c801c948ebcc 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-B1PYLUtBcx35NkU/NR+CmM8bF0hfJWmu11vsovFwR+c="; - 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 63cbc2615b6b4..662fa8b579686 100644 --- a/pkgs/by-name/vi/viw/package.nix +++ b/pkgs/by-name/vi/viw/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { install -Dm 644 -t $out/share/doc/${pname} 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; - maintainers = with maintainers; [ AndersonTorres ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ AndersonTorres ]; mainProgram = "viw"; }; } diff --git a/pkgs/by-name/vi/vix/package.nix b/pkgs/by-name/vi/vix/package.nix index 84cebdb170177..8cf3d4c80236d 100644 --- a/pkgs/by-name/vi/vix/package.nix +++ b/pkgs/by-name/vi/vix/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation { buildInputs = [ SDL ]; - meta = with lib; { + meta = { description = "Visual Interface heXadecimal dump"; homepage = "http://actinid.org/vix/"; - license = licenses.gpl3; - maintainers = [ maintainers.ehmry ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.ehmry ]; 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 15ba18a3f10c0..f5d6a5c185818 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/vkbasalt-cli/package.nix b/pkgs/by-name/vk/vkbasalt-cli/package.nix index 3c66ba9c0781c..571dec8998459 100644 --- a/pkgs/by-name/vk/vkbasalt-cli/package.nix +++ b/pkgs/by-name/vk/vkbasalt-cli/package.nix @@ -23,10 +23,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 85047758ca29d..cb6ea5239dd76 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 08b964d2a53a1..afb0358d712ab 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 faf940bfc0629..865352ad2530a 100644 --- a/pkgs/by-name/vk/vkeybd/package.nix +++ b/pkgs/by-name/vk/vkeybd/package.nix @@ -36,11 +36,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/vk/vkmark/package.nix b/pkgs/by-name/vk/vkmark/package.nix index fde8e189455d6..55d55aecc674c 100644 --- a/pkgs/by-name/vk/vkmark/package.nix +++ b/pkgs/by-name/vk/vkmark/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Extensible Vulkan benchmarking suite"; homepage = "https://github.com/vkmark/vkmark"; - license = with licenses; [ lgpl21Plus ]; - platforms = platforms.linux; - maintainers = with maintainers; [ muscaln ]; + license = with lib.licenses; [ lgpl21Plus ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ muscaln ]; mainProgram = "vkmark"; }; } diff --git a/pkgs/by-name/vl/vlan/package.nix b/pkgs/by-name/vl/vlan/package.nix index f2aee7bad060d..25ea40962d68e 100644 --- a/pkgs/by-name/vl/vlan/package.nix +++ b/pkgs/by-name/vl/vlan/package.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation rec { cp vconfig.8 $out/share/man/man8/ ''; - meta = with lib; { + meta = { description = "User mode programs to enable VLANs on Ethernet devices"; - 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 44cd0ab758ba0..d73a25beca39c 100644 --- a/pkgs/by-name/vl/vlang/package.nix +++ b/pkgs/by-name/vl/vlang/package.nix @@ -119,15 +119,15 @@ 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; [ Madouura 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 40081ec71fd76..631b275befa97 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 a0d13df609a3c..ac82ccaec579f 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 9a0507089d02e..530d2d511c9db 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/${pname} 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/vn/vnstat/package.nix b/pkgs/by-name/vn/vnstat/package.nix index 77635f2fd991f..1d0fd8df439e8 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; - maintainers = with maintainers; [ evils ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ evils ]; }; } diff --git a/pkgs/by-name/vo/vo-aacenc/package.nix b/pkgs/by-name/vo/vo-aacenc/package.nix index 62560180785f9..f5d7b95899663 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 2bc9e4db4f12c..7c0094da3dfcc 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/void/package.nix b/pkgs/by-name/vo/void/package.nix index 9f45138b2d29f..a2c2c10ea7a98 100644 --- a/pkgs/by-name/vo/void/package.nix +++ b/pkgs/by-name/vo/void/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-4LLm8EIGR9YJyVlSLRsQmBJc0QZaxBQafE4VLsDyAfI="; - meta = with lib; { + meta = { description = "Terminal-based personal organizer"; homepage = "https://github.com/spacejam/void"; - license = licenses.gpl3; - maintainers = with maintainers; [ spacekookie ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ spacekookie ]; mainProgram = "void"; }; } diff --git a/pkgs/by-name/vo/vokoscreen-ng/package.nix b/pkgs/by-name/vo/vokoscreen-ng/package.nix index 07bf209d68cec..17868fcf09a56 100644 --- a/pkgs/by-name/vo/vokoscreen-ng/package.nix +++ b/pkgs/by-name/vo/vokoscreen-ng/package.nix @@ -62,15 +62,15 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "User friendly Open Source screencaster for Linux and Windows"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://github.com/vkohaupt/vokoscreenNG"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ shamilton dietmarw ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "vokoscreenNG"; }; } diff --git a/pkgs/by-name/vo/volantes-cursors/package.nix b/pkgs/by-name/vo/volantes-cursors/package.nix index 026d4bf3ae935..85fc0f90678ae 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/volctl/package.nix b/pkgs/by-name/vo/volctl/package.nix index 9be2580032c4b..670c63ca5d59a 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 ecba4223280e0..88309e89c184a 100644 --- a/pkgs/by-name/vo/volk/package.nix +++ b/pkgs/by-name/vo/volk/package.nix @@ -37,11 +37,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 d0c780d687bad..ca464aa40d00f 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 b798445a71ba8..30a8cf0146bea 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 c8925b4ce9a41..cbc5c45f5b8b6 100644 --- a/pkgs/by-name/vo/volumeicon/package.nix +++ b/pkgs/by-name/vo/volumeicon/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { alsa-lib ]; - 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 b878e0b9d13b8..e7e73141f09f9 100644 --- a/pkgs/by-name/vo/voms/package.nix +++ b/pkgs/by-name/vo/voms/package.nix @@ -84,12 +84,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 f4f6a63c2ca34..fa17d4835505a 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-/z4qBBY/Htlv55vNKj2c1frWsUFTRweJh/G0T2jHLr4="; - 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/vorbisgain/package.nix b/pkgs/by-name/vo/vorbisgain/package.nix index 6775b8d500fd3..66d7125dde03d 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/vo/vowpal-wabbit/package.nix b/pkgs/by-name/vo/vowpal-wabbit/package.nix index dec53f1606100..b8a3590b40cc0 100644 --- a/pkgs/by-name/vo/vowpal-wabbit/package.nix +++ b/pkgs/by-name/vo/vowpal-wabbit/package.nix @@ -61,15 +61,15 @@ stdenv.mkDerivation rec { "-DVW_EIGEN_SYS_DEP=ON" ]; - meta = with lib; { + meta = { description = "Machine learning system focused on online reinforcement learning"; homepage = "https://github.com/VowpalWabbit/vowpal_wabbit/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; longDescription = '' Machine learning system which pushes the frontier of machine learning with techniques such as online, hashing, allreduce, reductions, learning2search, active, and interactive and reinforcement learning ''; - maintainers = with maintainers; [ jackgerrits ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ jackgerrits ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/vp/vpsfree-client/package.nix b/pkgs/by-name/vp/vpsfree-client/package.nix index 65da8d4c03184..88ead7a02f76a 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 4f24c8cd9d258..b826f998d2165 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/vrrtest/package.nix b/pkgs/by-name/vr/vrrtest/package.nix index c1ee21a55e7ec..8f2fa61f44a6b 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 8427013f45b22..ad7aae7bebf02 100644 --- a/pkgs/by-name/vs/vsc-leetcode-cli/package.nix +++ b/pkgs/by-name/vs/vsc-leetcode-cli/package.nix @@ -19,11 +19,11 @@ buildNpmPackage { dontNpmBuild = 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 228cf96966a4c..dc9909dce8258 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 a5fce89e1c4c8..eb9f534b513a8 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 79c85ed7b03ca..1ed1dcfc05f28 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 ba63b8d51be2d..4642eccc88501 100644 --- a/pkgs/by-name/vt/vtable-dumper/package.nix +++ b/pkgs/by-name/vt/vtable-dumper/package.nix @@ -19,12 +19,12 @@ 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; - maintainers = [ maintainers.bhipple ]; - platforms = platforms.all; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.bhipple ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/vu/vulkan-extension-layer/package.nix b/pkgs/by-name/vu/vulkan-extension-layer/package.nix index 5abe48cbf00aa..c9479e4d92a08 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-helper/package.nix b/pkgs/by-name/vu/vulkan-helper/package.nix index 30dc0250943bc..19b0f6a374c6b 100644 --- a/pkgs/by-name/vu/vulkan-helper/package.nix +++ b/pkgs/by-name/vu/vulkan-helper/package.nix @@ -28,12 +28,12 @@ rustPlatform.buildRustPackage rec { 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; - maintainers = with maintainers; [ aidalgol ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aidalgol ]; + platforms = lib.platforms.linux; mainProgram = "vulkan-helper"; }; } diff --git a/pkgs/by-name/vu/vulkan-tools-lunarg/package.nix b/pkgs/by-name/vu/vulkan-tools-lunarg/package.nix index e8bac27836ebd..f9897a2a22c10 100644 --- a/pkgs/by-name/vu/vulkan-tools-lunarg/package.nix +++ b/pkgs/by-name/vu/vulkan-tools-lunarg/package.nix @@ -87,15 +87,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-utility-libraries/package.nix b/pkgs/by-name/vu/vulkan-utility-libraries/package.nix index 6d966b41716c6..def84f0208416 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 9aaebeb5b4ed5..6b0b186daecb4 100644 --- a/pkgs/by-name/vu/vulkan-validation-layers/package.nix +++ b/pkgs/by-name/vu/vulkan-validation-layers/package.nix @@ -79,11 +79,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Official Khronos Vulkan validation layers"; homepage = "https://github.com/KhronosGroup/Vulkan-ValidationLayers"; - 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/vu/vulkan-validation-layers/robin-hood-hashing.nix b/pkgs/by-name/vu/vulkan-validation-layers/robin-hood-hashing.nix index 3b36912bc5f7b..76a73bcda8f2c 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.linux; - license = licenses.mit; + platforms = lib.platforms.linux; + 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 8e511707dd96a..6dc34cb9d0499 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 89b361bbff781..ce3b002e07862 100644 --- a/pkgs/by-name/vu/vulnix/package.nix +++ b/pkgs/by-name/vu/vulnix/package.nix @@ -62,11 +62,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/vw/vwm/package.nix b/pkgs/by-name/vw/vwm/package.nix index 3bd8bedd80876..4efb1968a1156 100644 --- a/pkgs/by-name/vw/vwm/package.nix +++ b/pkgs/by-name/vw/vwm/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { libvterm ]; - meta = with lib; { + meta = { homepage = "https://vwm.sourceforge.net/"; description = "Dynamic window manager for the console"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "vwm"; }; } diff --git a/pkgs/by-name/wa/wabt/package.nix b/pkgs/by-name/wa/wabt/package.nix index fd764b2b29cf1..849cbba0f3284 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,8 +41,8 @@ stdenv.mkDerivation rec { * wasm2c: convert a WebAssembly binary file to a C source and header ''; homepage = "https://github.com/WebAssembly/wabt"; - license = licenses.asl20; - maintainers = with maintainers; [ ekleog ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ekleog ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wa/wad/package.nix b/pkgs/by-name/wa/wad/package.nix index c1e21ab8261af..7d4a85a4857c7 100644 --- a/pkgs/by-name/wa/wad/package.nix +++ b/pkgs/by-name/wa/wad/package.nix @@ -29,7 +29,7 @@ python3.pkgs.buildPythonApplication rec { "wad" ]; - meta = with lib; { + meta = { description = "Tool for detecting technologies used by web applications"; mainProgram = "wad"; longDescription = '' @@ -40,10 +40,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 544e9f90e9764..ff5908b3b857e 100644 --- a/pkgs/by-name/wa/waffle/package.nix +++ b/pkgs/by-name/wa/waffle/package.nix @@ -85,12 +85,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/wait4x/package.nix b/pkgs/by-name/wa/wait4x/package.nix index 53be1b07c4fa7..1d41415000d14 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 = "Wait4X allows you to wait for a port or a service to enter the requested state"; homepage = "https://github.com/atkrad/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/waitron/package.nix b/pkgs/by-name/wa/waitron/package.nix index c72a117c772cc..c2c74c370d02b 100644 --- a/pkgs/by-name/wa/waitron/package.nix +++ b/pkgs/by-name/wa/waitron/package.nix @@ -24,7 +24,7 @@ buildGoModule rec { ./staticfiles-directory.patch ]; - meta = with lib; { + meta = { description = "Tool to manage network booting of machines"; longDescription = '' Waitron is used to build machines (primarily bare-metal, but anything that @@ -32,9 +32,9 @@ buildGoModule rec { specified inventory sources. ''; homepage = "https://github.com/ns1/waitron"; - license = licenses.asl20; - maintainers = with maintainers; [ guibert ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ guibert ]; + platforms = lib.platforms.linux; broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.goModules --check }; } diff --git a/pkgs/by-name/wa/wakeonlan/package.nix b/pkgs/by-name/wa/wakeonlan/package.nix index 7a5c51ed39957..bd2ff6fbaeff8 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 94798ae0ba75c..8112d9ab54e31 100644 --- a/pkgs/by-name/wa/wal-g/package.nix +++ b/pkgs/by-name/wa/wal-g/package.nix @@ -48,9 +48,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 46d9d91300e9e..2878c1e876990 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-MTM7zR5OYHbzAm07FTLvXVnESARg50/BZrB2bl+LtXM="; - 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 75903295a9d9e..1010ec8e732bb 100644 --- a/pkgs/by-name/wa/walker/package.nix +++ b/pkgs/by-name/wa/walker/package.nix @@ -39,12 +39,12 @@ buildGoModule rec { gtk4-layer-shell ]; - 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 6d65c6c5ea4cb..a55bef9d5a909 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/wander/package.nix b/pkgs/by-name/wa/wander/package.nix index db55f3ce2c27b..c357ce5e09329 100644 --- a/pkgs/by-name/wa/wander/package.nix +++ b/pkgs/by-name/wa/wander/package.nix @@ -32,11 +32,11 @@ 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"; - maintainers = teams.c3d2.members; + maintainers = lib.teams.c3d2.members; mainProgram = "wander"; }; } diff --git a/pkgs/by-name/wa/wannier90/package.nix b/pkgs/by-name/wa/wannier90/package.nix index 631fcd276de42..11cdadd501a3b 100644 --- a/pkgs/by-name/wa/wannier90/package.nix +++ b/pkgs/by-name/wa/wannier90/package.nix @@ -67,11 +67,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 b84487479af25..8f45f79ffa74e 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 017928c610bde..d7ae5cc1f8032 100644 --- a/pkgs/by-name/wa/wapm/package.nix +++ b/pkgs/by-name/wa/wapm/package.nix @@ -39,11 +39,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 7618dff32643b..1b7af59b63c0a 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 69baa283fa046..ed8d174f49d0f 100644 --- a/pkgs/by-name/wa/wargus/stratagus.nix +++ b/pkgs/by-name/wa/wargus/stratagus.nix @@ -46,11 +46,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/warmux/package.nix b/pkgs/by-name/wa/warmux/package.nix index c3115ad02d7e7..9bca7a5962990 100644 --- a/pkgs/by-name/wa/warmux/package.nix +++ b/pkgs/by-name/wa/warmux/package.nix @@ -70,11 +70,11 @@ stdenv.mkDerivation { ]; enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Ballistics turn-based battle game between teams - unofficial copy"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; - license = with licenses; [ + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; + license = with lib.licenses; [ gpl2Plus ufl ]; diff --git a/pkgs/by-name/wa/warp-terminal/package.nix b/pkgs/by-name/wa/warp-terminal/package.nix index 7aebef84c432c..8802c3497c90a 100644 --- a/pkgs/by-name/wa/warp-terminal/package.nix +++ b/pkgs/by-name/wa/warp-terminal/package.nix @@ -106,18 +106,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; [ emilytrau imadnyc donteatoreo johnrtitor ]; - platforms = platforms.darwin ++ [ + platforms = lib.platforms.darwin ++ [ "x86_64-linux" "aarch64-linux" ]; diff --git a/pkgs/by-name/wa/warpinator/package.nix b/pkgs/by-name/wa/warpinator/package.nix index 7904703899403..1f1bdeffda3b6 100644 --- a/pkgs/by-name/wa/warpinator/package.nix +++ b/pkgs/by-name/wa/warpinator/package.nix @@ -90,11 +90,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; - maintainers = teams.cinnamon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/wa/warzone2100/package.nix b/pkgs/by-name/wa/warzone2100/package.nix index 972c3a4e2505b..fbde1a90480a4 100644 --- a/pkgs/by-name/wa/warzone2100/package.nix +++ b/pkgs/by-name/wa/warzone2100/package.nix @@ -124,7 +124,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 = '' @@ -139,12 +139,12 @@ 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; [ astsmtl 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/wash-cli/package.nix b/pkgs/by-name/wa/wash-cli/package.nix index aed9801132d01..7b449e84c90c9 100644 --- a/pkgs/by-name/wa/wash-cli/package.nix +++ b/pkgs/by-name/wa/wash-cli/package.nix @@ -48,11 +48,11 @@ rustPlatform.buildRustPackage rec { # Tests require the internet and don't work when running in nix doCheck = false; - meta = with lib; { + meta = { description = "wasmCloud Shell (wash) CLI tool"; homepage = "https://wasmcloud.com/"; mainProgram = "wash"; - license = licenses.asl20; - maintainers = with maintainers; [ bloveless ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bloveless ]; }; } diff --git a/pkgs/by-name/wa/wasm-pack/package.nix b/pkgs/by-name/wa/wasm-pack/package.nix index d030c4ee388cf..2f073c5c9421b 100644 --- a/pkgs/by-name/wa/wasm-pack/package.nix +++ b/pkgs/by-name/wa/wasm-pack/package.nix @@ -35,14 +35,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 4af4babdd2bcf..7c3e14ece2615 100644 --- a/pkgs/by-name/wa/wasm-tools/package.nix +++ b/pkgs/by-name/wa/wasm-tools/package.nix @@ -32,11 +32,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 0f820505e78ae..7342011a21aa4 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/wasmserve/package.nix b/pkgs/by-name/wa/wasmserve/package.nix index 8369096b78dd7..7efafaf3926d0 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/wasynth/package.nix b/pkgs/by-name/wa/wasynth/package.nix index 7f3f132cceb4c..c739e24bf63bf 100644 --- a/pkgs/by-name/wa/wasynth/package.nix +++ b/pkgs/by-name/wa/wasynth/package.nix @@ -29,7 +29,7 @@ rustPlatform.buildRustPackage rec { rm $out/bin/{luajit,luau}_translate ''; - meta = with lib; { + meta = { description = "WebAssembly translation tools for various languages"; longDescription = '' Wasynth provides the following WebAssembly translation tools: @@ -37,7 +37,7 @@ rustPlatform.buildRustPackage rec { * wasm2luau: translate WebAssembly Luau source code ''; homepage = "https://github.com/Rerumu/Wasynth"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ wackbyte ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ wackbyte ]; }; } diff --git a/pkgs/by-name/wa/watershot/package.nix b/pkgs/by-name/wa/watershot/package.nix index 6ae8a28ba0ea8..971af38a13a26 100644 --- a/pkgs/by-name/wa/watershot/package.nix +++ b/pkgs/by-name/wa/watershot/package.nix @@ -39,12 +39,12 @@ rustPlatform.buildRustPackage rec { --prefix PATH : ${lib.makeBinPath [ grim ]} ''; - meta = with lib; { - platforms = with platforms; linux; + meta = { + platforms = with lib.platforms; linux; description = "Simple wayland native screenshot tool"; mainProgram = "watershot"; homepage = "https://github.com/Kirottu/watershot"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ lord-valen ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ lord-valen ]; }; } diff --git a/pkgs/by-name/wa/watson/package.nix b/pkgs/by-name/wa/watson/package.nix index 93c5974e7bdfd..9f2d84be66ea2 100644 --- a/pkgs/by-name/wa/watson/package.nix +++ b/pkgs/by-name/wa/watson/package.nix @@ -48,12 +48,12 @@ buildPythonApplication rec { ]; nativeBuildInputs = [ installShellFiles ]; - meta = with lib; { + meta = { homepage = "https://tailordev.github.io/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 d5da2ca88f7f2..42c4144bf34b7 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 5844537db2526..501c956a6a7e1 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,8 +35,8 @@ stdenv.mkDerivation { You can then upload these with e.g. nxt-python. ''; homepage = "https://bricxcc.sourceforge.net/"; - license = licenses.mpl11; - maintainers = with maintainers; [ leenaars ]; - platforms = with platforms; linux; + license = lib.licenses.mpl11; + maintainers = with lib.maintainers; [ leenaars ]; + 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 7bb884ee0a9b3..0f076760524dd 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 cf7e7da82f90e..3ae0552c94af2 100644 --- a/pkgs/by-name/wa/wayback-machine-archiver/package.nix +++ b/pkgs/by-name/wa/wayback-machine-archiver/package.nix @@ -29,11 +29,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 3750a15b05b27..bb1c83b850d1d 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/waybar-mpris/package.nix b/pkgs/by-name/wa/waybar-mpris/package.nix index 93f957db33ddb..4ee2a61b2651e 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/wayfreeze/package.nix b/pkgs/by-name/wa/wayfreeze/package.nix index a9df0cb2c318f..59b67cad67bc2 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/wayidle/package.nix b/pkgs/by-name/wa/wayidle/package.nix index ebe51dd5e100a..2ef5fecfb2e96 100644 --- a/pkgs/by-name/wa/wayidle/package.nix +++ b/pkgs/by-name/wa/wayidle/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-PohfLmUoK+2a7Glnje4Rbym2rvzydUJAYW+edOj7qeo="; - meta = with lib; { + meta = { description = "Execute a program when a Wayland compositor reports being N seconds idle"; homepage = "https://git.sr.ht/~whynothugo/wayidle"; - license = licenses.isc; - maintainers = with maintainers; [ tomfitzhenry ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ tomfitzhenry ]; mainProgram = "wayidle"; - 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 0292b42e5a5b3..32858e77ae03b 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 60e20ed60d018..5eb7c3d4d036a 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-utils/package.nix b/pkgs/by-name/wa/wayland-utils/package.nix index c938f9a0dfa12..4df1a560aa403 100644 --- a/pkgs/by-name/wa/wayland-utils/package.nix +++ b/pkgs/by-name/wa/wayland-utils/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { wayland-protocols ]; - meta = with lib; { + meta = { description = "Wayland utilities (wayland-info)"; longDescription = '' A collection of Wayland related utilities: @@ -42,9 +42,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; [ primeos ]; + license = lib.licenses.mit; # Expat version + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ primeos ]; mainProgram = "wayland-info"; }; } diff --git a/pkgs/by-name/wa/waylevel/package.nix b/pkgs/by-name/wa/waylevel/package.nix index 615f22f92bf90..9a91b02a2b230 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 c201f0a63e687..51eeed5f06f2d 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 5cb339592e663..53feb277f0fbb 100644 --- a/pkgs/by-name/wa/waylyrics/package.nix +++ b/pkgs/by-name/wa/waylyrics/package.nix @@ -64,18 +64,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 bbb3cf9bc11db..ca6cbef8b93e1 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 c9cde3d6f3531..28123d17d7bb0 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-QlxXbfeWJdCythYRRLSpJbTzKkwrL4kmAfyL3tRt194="; - 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 43100b4f1a649..1b5afd78ca15d 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 4c2c10049bceb..b7a662b2287c7 100644 --- a/pkgs/by-name/wa/wayst/package.nix +++ b/pkgs/by-name/wa/wayst/package.nix @@ -84,12 +84,12 @@ stdenv.mkDerivation rec { 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 91c9f24b9dbb1..f5ce4a250d11e 100644 --- a/pkgs/by-name/wb/wb32-dfu-updater/package.nix +++ b/pkgs/by-name/wb/wb32-dfu-updater/package.nix @@ -20,15 +20,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 eb3a0655f8058..213551c31eeaf 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/wcc/package.nix b/pkgs/by-name/wc/wcc/package.nix index 3754246df189c..99b9e43e23b37 100644 --- a/pkgs/by-name/wc/wcc/package.nix +++ b/pkgs/by-name/wc/wcc/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/endrazine/wcc"; description = "Witchcraft compiler collection: tools to convert and script ELF files"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ orivej ]; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/by-name/wc/wcpg/package.nix b/pkgs/by-name/wc/wcpg/package.nix index f905a6373b343..4472c09c2f743 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/wc/wcslib/package.nix b/pkgs/by-name/wc/wcslib/package.nix index 66374aab784ae..335df5d659ced 100644 --- a/pkgs/by-name/wc/wcslib/package.nix +++ b/pkgs/by-name/wc/wcslib/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { "man" ]; - meta = with lib; { + meta = { homepage = "https://www.atnf.csiro.au/people/mcalabre/WCS/"; description = "World Coordinate System library for astronomy"; longDescription = '' @@ -31,8 +31,8 @@ stdenv.mkDerivation rec { and their conversion to image coordinate systems. This is the standard library for this purpose in astronomy. ''; - maintainers = with maintainers; [ hjones2199 ]; - license = licenses.lgpl3Plus; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ hjones2199 ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wd/wdfs/package.nix b/pkgs/by-name/wd/wdfs/package.nix index 72c81823fcb9a..e1192b91120b7 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 52751e243336e..142fd19aaece2 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 0f74c294abfa3..f9c767d8d0688 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-dtvP930ChiDRT60xq6xBDU6k+zHnkrAkxkKz2FxlzRs="; }; - meta = with lib; { + meta = { description = "Graphical application for configuring displays in Wayland compositors"; homepage = "https://github.com/luispabon/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/wdomirror/package.nix b/pkgs/by-name/wd/wdomirror/package.nix index d7e96d6513785..c65782f25257c 100644 --- a/pkgs/by-name/wd/wdomirror/package.nix +++ b/pkgs/by-name/wd/wdomirror/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation { --replace "werror=true" "werror=false" ''; - meta = with lib; { + meta = { description = "Mirrors an output of a wlroots compositor to a window"; homepage = "https://github.com/progandy/wdomirror"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ jpas ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ jpas ]; mainProgram = "wdomirror"; }; } diff --git a/pkgs/by-name/wd/wdt/package.nix b/pkgs/by-name/wd/wdt/package.nix index 62f4759f87fe3..750436c0c435c 100644 --- a/pkgs/by-name/wd/wdt/package.nix +++ b/pkgs/by-name/wd/wdt/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation { }; }; - 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 ccafa275f0b7f..ef3be3ab14b59 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 8f11d236ecba3..bcb6e32a76b20 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 b70aa20dba6a4..c0d3ab325329d 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 2eee886bc7290..560854660e2be 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 8ce9dd3dd3a2b..f74aaa3812d97 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 b9af144572269..de0f26683cccd 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 c89dbded735c6..437656f3f5302 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 rec { --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 rec { 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 0604bf8f47557..2cac79a71569e 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/applications/networking/instant-messengers/webex/default.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/webfontkitgenerator/package.nix b/pkgs/by-name/we/webfontkitgenerator/package.nix index 9359c11fdcdad..fd89bdded6dcf 100644 --- a/pkgs/by-name/we/webfontkitgenerator/package.nix +++ b/pkgs/by-name/we/webfontkitgenerator/package.nix @@ -68,12 +68,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Webfont Kit Generator is a simple utility that allows you to generate woff, woff2 and the necessary CSS boilerplate from non-web font formats (otf & ttf)"; mainProgram = "webfontkitgenerator"; homepage = "https://apps.gnome.org/app/com.rafaelmardojai.WebfontKitGenerator"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ benediktbroich ] ++ lib.teams.gnome-circle.members; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ benediktbroich ] ++ lib.teams.gnome-circle.members; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/we/webfs/package.nix b/pkgs/by-name/we/webfs/package.nix index 02862c43e0275..7e5a0d357422a 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/weblate/package.nix b/pkgs/by-name/we/weblate/package.nix index fc672746baf29..8c3f02c16ce80 100644 --- a/pkgs/by-name/we/weblate/package.nix +++ b/pkgs/by-name/we/weblate/package.nix @@ -164,14 +164,14 @@ python.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { description = "Web based translation tool with tight version control integration"; homepage = "https://weblate.org/"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus mit ]; - platforms = platforms.linux; - maintainers = with maintainers; [ erictapen ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/by-name/we/webmesh/package.nix b/pkgs/by-name/we/webmesh/package.nix index 053669528c11d..7e255635d14dd 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/webmetro/package.nix b/pkgs/by-name/we/webmetro/package.nix index 12c60fe280500..ab6e551f45c4a 100644 --- a/pkgs/by-name/we/webmetro/package.nix +++ b/pkgs/by-name/we/webmetro/package.nix @@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-6LfJ5rI7Y+ziEIMxPpKxOS+VSrKuKohEcqIK7xdKhNg="; - meta = with lib; { + meta = { description = "Simple relay server for broadcasting a WebM stream"; longDescription = '' Webmetro is a simple relay server for broadcasting a WebM stream @@ -27,8 +27,8 @@ rustPlatform.buildRustPackage rec { (compatibly-encoded) webm files can be chained together without clients needing to reconnect. ''; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ leenaars ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ leenaars ]; mainProgram = "webmetro"; }; } diff --git a/pkgs/by-name/we/webp-pixbuf-loader/package.nix b/pkgs/by-name/we/webp-pixbuf-loader/package.nix index 9448088c08c6c..d38471b590d17 100644 --- a/pkgs/by-name/we/webp-pixbuf-loader/package.nix +++ b/pkgs/by-name/we/webp-pixbuf-loader/package.nix @@ -65,11 +65,11 @@ 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 = teams.gnome.members ++ [ maintainers.cwyc ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.gnome.members ++ [ lib.maintainers.cwyc ]; }; } diff --git a/pkgs/by-name/we/websocketd/package.nix b/pkgs/by-name/we/websocketd/package.nix index 78e5db1f1ed92..70ffbb006593a 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 6b933480b0ba8..d8ce07b84f071 100644 --- a/pkgs/by-name/we/websocketpp/package.nix +++ b/pkgs/by-name/we/websocketpp/package.nix @@ -18,11 +18,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 ad5d289f727a9..50ee708b73d43 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/webwormhole/package.nix b/pkgs/by-name/we/webwormhole/package.nix index f5a7f58a99803..178d806dd00c9 100644 --- a/pkgs/by-name/we/webwormhole/package.nix +++ b/pkgs/by-name/we/webwormhole/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { 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/weevely/package.nix b/pkgs/by-name/we/weevely/package.nix index ba72ac83cfb56..d81b3dcc74ba8 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 107ff1421bc71..a19cdb584b1ad 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 a8ca4c2422dee..57bfe482654d0 100644 --- a/pkgs/by-name/we/weidu/package.nix +++ b/pkgs/by-name/we/weidu/package.nix @@ -64,12 +64,12 @@ 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 both Darwin and Windows - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/we/wemux/package.nix b/pkgs/by-name/we/wemux/package.nix index af160816c27f0..2485dd62256c7 100644 --- a/pkgs/by-name/we/wemux/package.nix +++ b/pkgs/by-name/we/wemux/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { 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 0d25f819d5b68..7294bd3a6718c 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 8c31cb0b22a06..3336d3e3bb2f2 100644 --- a/pkgs/by-name/we/weston/package.nix +++ b/pkgs/by-name/we/weston/package.nix @@ -131,7 +131,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 @@ -144,10 +144,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; [ primeos qyliss ]; diff --git a/pkgs/by-name/we/wev/package.nix b/pkgs/by-name/we/wev/package.nix index b758b17d0744a..cef28f7bdc63d 100644 --- a/pkgs/by-name/we/wev/package.nix +++ b/pkgs/by-name/we/wev/package.nix @@ -39,16 +39,16 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~sircmpwn/wev"; description = "Wayland event viewer"; longDescription = '' This is a tool for debugging events on a Wayland window, analogous to the X11 tool xev. ''; - license = licenses.mit; - maintainers = with maintainers; [ primeos ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ primeos ]; + platforms = lib.platforms.linux; mainProgram = "wev"; }; } diff --git a/pkgs/by-name/we/wezterm/package.nix b/pkgs/by-name/we/wezterm/package.nix index 569beaa62bef2..b689882e4a4f2 100644 --- a/pkgs/by-name/we/wezterm/package.nix +++ b/pkgs/by-name/we/wezterm/package.nix @@ -148,12 +148,12 @@ rustPlatform.buildRustPackage rec { updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; }; - meta = with lib; { + meta = { description = "GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust"; homepage = "https://wezfurlong.org/wezterm"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "wezterm"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ mimame SuperSandro2000 thiagokokada diff --git a/pkgs/by-name/wf/wfa2-lib/package.nix b/pkgs/by-name/wf/wfa2-lib/package.nix index eae3514a8d5dd..53afb60b385c5 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-friendly-peer-names/package.nix b/pkgs/by-name/wg/wg-friendly-peer-names/package.nix index e37780f3ac4ae..0cc09c2d9d824 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/wgautomesh/package.nix b/pkgs/by-name/wg/wgautomesh/package.nix index f3b80cfd5b23a..985b12dee6c29 100644 --- a/pkgs/by-name/wg/wgautomesh/package.nix +++ b/pkgs/by-name/wg/wgautomesh/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-HZ1VImsfxRd0sFN/vKAKgwIV2eio2GiEz+6c1+dCmdk="; - 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 2c0b81cf65dd7..863f829da3618 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-txE00e8n9JJ89G1Exp/k8LTv36+MkGduCjqL7mHXuoQ="; - 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/wget2/package.nix b/pkgs/by-name/wg/wget2/package.nix index 07f3a999ee6ce..d7c25ebb61076 100644 --- a/pkgs/by-name/wg/wget2/package.nix +++ b/pkgs/by-name/wg/wget2/package.nix @@ -97,7 +97,7 @@ stdenv.mkDerivation rec { (lib.withFeatureAs sslSupport "ssl" "openssl") ]; - meta = with lib; { + meta = { description = "Successor of GNU Wget, a file and recursive website downloader"; longDescription = '' Designed and written from scratch it wraps around libwget, that provides the basic @@ -108,11 +108,11 @@ stdenv.mkDerivation rec { ''; homepage = "https://gitlab.com/gnuwget/wget2"; # wget2 GPLv3+; libwget LGPLv3+ - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl3Plus ]; - maintainers = with maintainers; [ SuperSandro2000 ]; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; mainProgram = "wget2"; }; } diff --git a/pkgs/by-name/wg/wgo/package.nix b/pkgs/by-name/wg/wgo/package.nix index c6c007e6e3398..6e8a914840394 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 80b7f6d0e7cd2..c83247b3cf4c9 100644 --- a/pkgs/by-name/wg/wgpu-utils/package.nix +++ b/pkgs/by-name/wg/wgpu-utils/package.nix @@ -59,14 +59,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 ff4b74ad48353..e3b8bff02199c 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; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ azahi ]; + 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 7acf9236830dc..465bb56208b60 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/when/package.nix b/pkgs/by-name/wh/when/package.nix index d52a42fdf01af..4554caff5b972 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 5758abeccc66e..5153f47540b58 100644 --- a/pkgs/by-name/wh/whereami/package.nix +++ b/pkgs/by-name/wh/whereami/package.nix @@ -38,14 +38,14 @@ stdenv.mkDerivation rec { 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 1d9019d97773f..4de36a9d1dcd8 100644 --- a/pkgs/by-name/wh/whipper/package.nix +++ b/pkgs/by-name/wh/whipper/package.nix @@ -117,11 +117,11 @@ 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; }; } diff --git a/pkgs/by-name/wh/whisper/package.nix b/pkgs/by-name/wh/whisper/package.nix index 1e274675e1e63..7c4305d76e6b5 100644 --- a/pkgs/by-name/wh/whisper/package.nix +++ b/pkgs/by-name/wh/whisper/package.nix @@ -41,12 +41,12 @@ 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; homepage = "https://github.com/refresh-bio/whisper"; - maintainers = with maintainers; [ jbedo ]; - platforms = platforms.x86_64; + maintainers = with lib.maintainers; [ jbedo ]; + platforms = lib.platforms.x86_64; }; } diff --git a/pkgs/by-name/wh/whitebophir/package.nix b/pkgs/by-name/wh/whitebophir/package.nix index 5457e64f5267e..555f8f77c8114 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 4eae52fabac3a..5b2537ce2d2a0 100644 --- a/pkgs/by-name/wh/whitesur-icon-theme/package.nix +++ b/pkgs/by-name/wh/whitesur-icon-theme/package.nix @@ -72,12 +72,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/whsniff/package.nix b/pkgs/by-name/wh/whsniff/package.nix index b1f19f2bbb0a5..9086776f04780 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/wifi-qr/package.nix b/pkgs/by-name/wi/wifi-qr/package.nix index dcd90f5767584..f6bb446fc6f87 100644 --- a/pkgs/by-name/wi/wifi-qr/package.nix +++ b/pkgs/by-name/wi/wifi-qr/package.nix @@ -79,12 +79,12 @@ stdenvNoCC.mkDerivation { runHook postFixup ''; - meta = with lib; { + meta = { description = "WiFi password sharing via QR codes"; homepage = "https://github.com/kokoye2007/wifi-qr"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ ambroisie ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ ambroisie ]; mainProgram = "wifi-qr"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wi/wifish/package.nix b/pkgs/by-name/wi/wifish/package.nix index cc2b979c342a4..7221202135c21 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = with platforms; linux; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/wi/wifite2/package.nix b/pkgs/by-name/wi/wifite2/package.nix index 9fc4fd21db478..97bab21032ef3 100644 --- a/pkgs/by-name/wi/wifite2/package.nix +++ b/pkgs/by-name/wi/wifite2/package.nix @@ -71,13 +71,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 f1c97794c7144..3a725c6f5de49 100644 --- a/pkgs/by-name/wi/wiggle/package.nix +++ b/pkgs/by-name/wi/wiggle/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { patchShebangs . ''; - meta = with lib; { + meta = { homepage = "https://blog.neil.brown.name/category/wiggle/"; description = "Tool for applying patches with conflicts"; mainProgram = "wiggle"; @@ -47,8 +47,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 54ca0efb8d18f..1de0f2ee9d969 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 4fa1dddaf12a6..37c9c931cf99f 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/wike/package.nix b/pkgs/by-name/wi/wike/package.nix index 45546a31ded64..9493e83f82efe 100644 --- a/pkgs/by-name/wi/wike/package.nix +++ b/pkgs/by-name/wi/wike/package.nix @@ -68,12 +68,12 @@ python3.pkgs.buildPythonApplication rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Wikipedia Reader for the GNOME Desktop"; homepage = "https://github.com/hugolabe/Wike"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ samalws ] ++ lib.teams.gnome-circle.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ samalws ] ++ lib.teams.gnome-circle.members; mainProgram = "wike"; }; } diff --git a/pkgs/by-name/wi/wily/package.nix b/pkgs/by-name/wi/wily/package.nix index eb2ed523fee33..e9a2609537866 100644 --- a/pkgs/by-name/wi/wily/package.nix +++ b/pkgs/by-name/wi/wily/package.nix @@ -32,12 +32,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 1dc0a55cbdfbd..700088a6ef317 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; - maintainers = teams.helsinki-systems.members; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.helsinki-systems.members; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/wi/wimlib/package.nix b/pkgs/by-name/wi/wimlib/package.nix index 3f62c7d4351e2..e1747a2c127ef 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/windowchef/package.nix b/pkgs/by-name/wi/windowchef/package.nix index e74e4c063751d..0d8062a43ab83 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 c6eeaced25097..033538af950d8 100644 --- a/pkgs/by-name/wi/windowlab/package.nix +++ b/pkgs/by-name/wi/windowlab/package.nix @@ -38,12 +38,12 @@ 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; - maintainers = with maintainers; [ ehmry ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ ehmry ]; + 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 7cdda913ff2f7..2507dd07187d6 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 1baf11642eb7f..ce4242c7a1b92 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 9152b850216c4..4c0f196cb7160 100644 --- a/pkgs/by-name/wi/wineasio/package.nix +++ b/pkgs/by-name/wi/wineasio/package.nix @@ -50,14 +50,14 @@ multiStdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/wineasio/wineasio"; 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 f50da741c1d31..10bda694c331c 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 rec { }; }; - meta = with lib; { + meta = { description = "Ayatana Compatibility Indicator for Wingpanel"; homepage = "https://github.com/Lafydev/wingpanel-indicator-ayatana"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = teams.pantheon.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/by-name/wi/wingpanel-indicator-namarupa/package.nix b/pkgs/by-name/wi/wingpanel-indicator-namarupa/package.nix index 2b824ecd88162..183019f1e6a3d 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 rec { }; }; - meta = with lib; { + meta = { description = "Wingpanel Namarupa Indicator (Ayatana support)"; homepage = "https://github.com/lenemter/wingpanel-indicator-namarupa"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = teams.pantheon.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/by-name/wi/wipefreespace/package.nix b/pkgs/by-name/wi/wipefreespace/package.nix index 111453bc57656..5008a86a57944 100644 --- a/pkgs/by-name/wi/wipefreespace/package.nix +++ b/pkgs/by-name/wi/wipefreespace/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { export LDFLAGS="-L${jfsutils}/lib -L${reiser4progs}/lib" ''; - meta = with lib; { + meta = { description = "Program which will securely wipe the free space"; homepage = "https://wipefreespace.sourceforge.io"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ catap ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ catap ]; mainProgram = "wipefreespace"; }; } diff --git a/pkgs/by-name/wi/wire/package.nix b/pkgs/by-name/wi/wire/package.nix index de9274ebed351..d93d35bdc110c 100644 --- a/pkgs/by-name/wi/wire/package.nix +++ b/pkgs/by-name/wi/wire/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/google/wire"; description = "Code generation tool that automates connecting components using dependency injection"; mainProgram = "wire"; - license = licenses.asl20; - maintainers = with maintainers; [ svrana ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ svrana ]; }; } diff --git a/pkgs/by-name/wi/wireless-regdb/package.nix b/pkgs/by-name/wi/wireless-regdb/package.nix index 38a358121d713..54bdf28015e47 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 = "http://wireless.kernel.org/en/developers/Regulatory/"; - 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 3ded4b7f2bfea..1c079bc1105df 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 5f62939d11110..320af8c6ee22d 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 7e487a528a14d..c53974b66281b 100644 --- a/pkgs/by-name/wi/wireworld/package.nix +++ b/pkgs/by-name/wi/wireworld/package.nix @@ -49,10 +49,10 @@ stdenv.mkDerivation rec { 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/wiringpi/package.nix b/pkgs/by-name/wi/wiringpi/package.nix index 57d72b67bcbf4..baf5644cf242b 100644 --- a/pkgs/by-name/wi/wiringpi/package.nix +++ b/pkgs/by-name/wi/wiringpi/package.nix @@ -78,11 +78,11 @@ symlinkJoin { passthru.wiringPiD passthru.gpio ]; - meta = with lib; { + meta = { description = "Gordon's Arduino wiring-like WiringPi Library for the Raspberry Pi (Unofficial Mirror for WiringPi bindings)"; homepage = "https://github.com/WiringPi/WiringPi"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ doronbehar ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ doronbehar ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wi/wiseunpacker/package.nix b/pkgs/by-name/wi/wiseunpacker/package.nix index f5c9690a757f2..47fd6ddd1529a 100644 --- a/pkgs/by-name/wi/wiseunpacker/package.nix +++ b/pkgs/by-name/wi/wiseunpacker/package.nix @@ -32,10 +32,10 @@ buildDotnetModule rec { 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 2281e124ce393..f5eed9e4bbd1c 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 8dac08abc2fd9..4f325217fdb20 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/witnessme/package.nix b/pkgs/by-name/wi/witnessme/package.nix index 4f2ca939af4c3..2fdddd70c6e1b 100644 --- a/pkgs/by-name/wi/witnessme/package.nix +++ b/pkgs/by-name/wi/witnessme/package.nix @@ -70,11 +70,11 @@ python3.pkgs.buildPythonApplication rec { "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 424547aa8d045..c6d8aa231072a 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/wl/wl-clip-persist/package.nix b/pkgs/by-name/wl/wl-clip-persist/package.nix index cfa8eced287fc..ba5ff96c29217 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 02366c77c095a..c9a92d6f7e322 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 45e310684489f..d206ec3f2b2ae 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-color-picker/package.nix b/pkgs/by-name/wl/wl-color-picker/package.nix index 3f128e6bdd67e..91f6908dde9b2 100644 --- a/pkgs/by-name/wl/wl-color-picker/package.nix +++ b/pkgs/by-name/wl/wl-color-picker/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { ln -s $out/usr/bin/wl-color-picker $out/bin/wl-color-picker ''; - meta = with lib; { + meta = { description = "Wayland color picker that also works on wlroots"; homepage = "https://github.com/jgmdev/wl-color-picker"; - license = licenses.mit; - maintainers = with maintainers; [ onny ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ onny ]; + platforms = lib.platforms.linux; mainProgram = "wl-color-picker"; }; } diff --git a/pkgs/by-name/wl/wl-gammactl/package.nix b/pkgs/by-name/wl/wl-gammactl/package.nix index dc9e38a531c3e..99e3a24f3df8f 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 rec { 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 2f6f15f5badb2..90c977c0857bd 100644 --- a/pkgs/by-name/wl/wl-mirror/package.nix +++ b/pkgs/by-name/wl/wl-mirror/package.nix @@ -71,11 +71,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/wl-screenrec/package.nix b/pkgs/by-name/wl/wl-screenrec/package.nix index 8091a3f3d7efd..9d7b53174b3fc 100644 --- a/pkgs/by-name/wl/wl-screenrec/package.nix +++ b/pkgs/by-name/wl/wl-screenrec/package.nix @@ -34,12 +34,12 @@ rustPlatform.buildRustPackage rec { doCheck = false; # tests use host compositor, etc - meta = with lib; { + meta = { description = "High performance wlroots screen recording, featuring hardware encoding"; homepage = "https://github.com/russelltg/wl-screenrec"; - license = licenses.asl20; - platforms = platforms.linux; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; mainProgram = "wl-screenrec"; - maintainers = with maintainers; [ colemickens ]; + maintainers = with lib.maintainers; [ colemickens ]; }; } diff --git a/pkgs/by-name/wl/wla-dx/package.nix b/pkgs/by-name/wl/wla-dx/package.nix index c0e871b853b04..52b9c341f63de 100644 --- a/pkgs/by-name/wl/wla-dx/package.nix +++ b/pkgs/by-name/wl/wla-dx/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://www.villehelin.com/wla.html"; description = "Yet Another GB-Z80/Z80/6502/65C02/6510/65816/HUC6280/SPC-700 Multi Platform Cross Assembler Package"; - license = licenses.gpl2; - maintainers = with maintainers; [ matthewbauer ]; - platforms = platforms.all; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ matthewbauer ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/wl/wlc/package.nix b/pkgs/by-name/wl/wlc/package.nix index bcd091840c5a1..40ab4ddbe78a6 100644 --- a/pkgs/by-name/wl/wlc/package.nix +++ b/pkgs/by-name/wl/wlc/package.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pytestCheckHook ]; - 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 3fb526f199e63..b75de4eb5957a 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 9defe3798e249..b0ac5f417658c 100644 --- a/pkgs/by-name/wl/wleave/package.nix +++ b/pkgs/by-name/wl/wleave/package.nix @@ -61,12 +61,12 @@ rustPlatform.buildRustPackage rec { --zsh <(cat completions/_wleave) ''; - meta = with lib; { + meta = { description = "Wayland-native logout script written in GTK3"; 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 00899a219751e..ad5283f31fbf0 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 a01b20da36c92..c94f14f4e978d 100644 --- a/pkgs/by-name/wl/wllvm/package.nix +++ b/pkgs/by-name/wl/wllvm/package.nix @@ -13,11 +13,11 @@ python3Packages.buildPythonApplication rec { hash = "sha256-PgV6V18FyezIZpqMQEbyv98MaVM7h7T7/Kvg3yMMwzE="; }; - 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/wlopm/package.nix b/pkgs/by-name/wl/wlopm/package.nix index b1b746120c792..e9e785b36eb63 100644 --- a/pkgs/by-name/wl/wlopm/package.nix +++ b/pkgs/by-name/wl/wlopm/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Simple client implementing zwlr-output-power-management-v1"; homepage = "https://git.sr.ht/~leon_plickat/wlopm"; mainProgram = "wlopm"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ arjan-s ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ arjan-s ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wl/wlprop/package.nix b/pkgs/by-name/wl/wlprop/package.nix index b6c0dd2d613ae..ceea98ba89e33 100644 --- a/pkgs/by-name/wl/wlprop/package.nix +++ b/pkgs/by-name/wl/wlprop/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { ''; 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; - maintainers = with maintainers; [ ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.linux; mainProgram = "wlprop"; }; } diff --git a/pkgs/by-name/wl/wlr-randr/package.nix b/pkgs/by-name/wl/wlr-randr/package.nix index 4064d5538bbfc..852ca78c99e8d 100644 --- a/pkgs/by-name/wl/wlr-randr/package.nix +++ b/pkgs/by-name/wl/wlr-randr/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "Xrandr clone for wlroots compositors"; homepage = "https://git.sr.ht/~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 54f6a209abf6d..ae0f0307270bf 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 810c196e8a7d9..d7ed65e671f92 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/wl/wlvncc/package.nix b/pkgs/by-name/wl/wlvncc/package.nix index 1717989b7deb7..a066500487575 100644 --- a/pkgs/by-name/wl/wlvncc/package.nix +++ b/pkgs/by-name/wl/wlvncc/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation { zlib ]; - meta = with lib; { + meta = { description = "Wayland Native VNC Client"; homepage = "https://github.com/any1/wlvncc"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ teutat3s ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ teutat3s ]; + platforms = lib.platforms.linux; mainProgram = "wlvncc"; }; } diff --git a/pkgs/by-name/wm/wmderlandc/package.nix b/pkgs/by-name/wm/wmderlandc/package.nix index f1ce7beb9552a..87e63dec41993 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 faa58a57799ad..d94c62b988f1c 100644 --- a/pkgs/by-name/wm/wmenu/package.nix +++ b/pkgs/by-name/wm/wmenu/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { 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; [ eken ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ eken ]; mainProgram = "wmenu"; }; } diff --git a/pkgs/by-name/wm/wmfs/package.nix b/pkgs/by-name/wm/wmfs/package.nix index fafac60f1c21d..6f17819533f15 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/wml/package.nix b/pkgs/by-name/wm/wml/package.nix index 3ad1b6c6922f2..05f150d88d5b9 100644 --- a/pkgs/by-name/wm/wml/package.nix +++ b/pkgs/by-name/wm/wml/package.nix @@ -83,10 +83,10 @@ perlPackages.buildPerlPackage { installTargets = [ "install" ]; - meta = with lib; { + meta = { homepage = "https://www.shlomifish.org/open-source/projects/website-meta-language/"; description = "Off-line HTML generation toolkit for Unix"; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wm/wmutils-core/package.nix b/pkgs/by-name/wm/wmutils-core/package.nix index 5f35c29dbb427..781e921ebb6b9 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-libwm/package.nix b/pkgs/by-name/wm/wmutils-libwm/package.nix index 723e78772e888..4045dbe9bf705 100644 --- a/pkgs/by-name/wm/wmutils-libwm/package.nix +++ b/pkgs/by-name/wm/wmutils-libwm/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Small library for X window manipulation"; homepage = "https://github.com/wmutils/libwm"; - license = licenses.isc; - maintainers = with maintainers; [ bhougland ]; - platforms = platforms.unix; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ bhougland ]; + 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 00142588d2e76..d61b4e26edde9 100644 --- a/pkgs/by-name/wm/wmutils-opt/package.nix +++ b/pkgs/by-name/wm/wmutils-opt/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { 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/woeusb-ng/package.nix b/pkgs/by-name/wo/woeusb-ng/package.nix index 408440e0f8be3..e42112df65dce 100644 --- a/pkgs/by-name/wo/woeusb-ng/package.nix +++ b/pkgs/by-name/wo/woeusb-ng/package.nix @@ -47,11 +47,11 @@ buildPythonApplication rec { # Unable to access the X Display, is $DISPLAY set properly? doCheck = false; - meta = with lib; { + meta = { description = "Tool to create a Windows USB stick installer from a real Windows DVD or image"; homepage = "https://github.com/WoeUSB/WoeUSB-ng"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ stunkymonkey ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ stunkymonkey ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wo/woeusb/package.nix b/pkgs/by-name/wo/woeusb/package.nix index 8382ad157ec9c..92673ffbd7876 100644 --- a/pkgs/by-name/wo/woeusb/package.nix +++ b/pkgs/by-name/wo/woeusb/package.nix @@ -80,12 +80,12 @@ stdenv.mkDerivation rec { [ "$out_version" = '${version}' ] ''; - meta = with lib; { + meta = { description = "Create bootable USB disks from Windows ISO images"; homepage = "https://github.com/WoeUSB/WoeUSB"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ bjornfor ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ bjornfor ]; + platforms = lib.platforms.linux; mainProgram = "woeusb"; }; } diff --git a/pkgs/by-name/wo/woff2/package.nix b/pkgs/by-name/wo/woff2/package.nix index ef5a9a5e006c1..3026d26e8c18a 100644 --- a/pkgs/by-name/wo/woff2/package.nix +++ b/pkgs/by-name/wo/woff2/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { sed 's@^if (NOT BUILD_SHARED_LIBS)$@if (TRUE)@g' -i CMakeLists.txt ''; - meta = with lib; { + meta = { description = "Webfont compression reference code"; homepage = "https://github.com/google/woff2"; - license = licenses.mit; - maintainers = [ maintainers.hrdinka ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.hrdinka ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wo/wofi/package.nix b/pkgs/by-name/wo/wofi/package.nix index 0dba9c4add9a9..009dd96487171 100644 --- a/pkgs/by-name/wo/wofi/package.nix +++ b/pkgs/by-name/wo/wofi/package.nix @@ -43,12 +43,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 ffc0ff554326c..1b8dcf65dd347 100644 --- a/pkgs/by-name/wo/wol/package.nix +++ b/pkgs/by-name/wo/wol/package.nix @@ -24,12 +24,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.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wo/wolf-shaper/package.nix b/pkgs/by-name/wo/wolf-shaper/package.nix index d4e234fc6173f..02f091782ef2d 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 e44f30213899f..f80159bcd77fd 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/wolfstoneextract/package.nix b/pkgs/by-name/wo/wolfstoneextract/package.nix index 75f55a6ca475b..4f779d08633d1 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/woof/package.nix b/pkgs/by-name/wo/woof/package.nix index 054ff86e56234..1ee5f5b2ff30c 100644 --- a/pkgs/by-name/wo/woof/package.nix +++ b/pkgs/by-name/wo/woof/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://www.home.unix-ag.org/simon/woof.html"; description = "Web Offer One File - Command-line utility to easily exchange files over a local network"; license = lib.licenses.gpl2Plus; platforms = lib.platforms.unix; - maintainers = with maintainers; [ matthiasbeyer ]; + maintainers = with lib.maintainers; [ matthiasbeyer ]; mainProgram = "woof"; }; } diff --git a/pkgs/by-name/wo/wooting-udev-rules/package.nix b/pkgs/by-name/wo/wooting-udev-rules/package.nix index 0bdd12f32028d..574b07bfab0c4 100644 --- a/pkgs/by-name/wo/wooting-udev-rules/package.nix +++ b/pkgs/by-name/wo/wooting-udev-rules/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation rec { 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; license = "unknown"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ davidtwco returntoreality ]; diff --git a/pkgs/by-name/wo/wordgrinder/package.nix b/pkgs/by-name/wo/wordgrinder/package.nix index 9f7d84c9bb37d..a71b151fe85cf 100644 --- a/pkgs/by-name/wo/wordgrinder/package.nix +++ b/pkgs/by-name/wo/wordgrinder/package.nix @@ -67,11 +67,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/work-sans/package.nix b/pkgs/by-name/wo/work-sans/package.nix index 34fb1f8ae9e62..6d8970dcf8f70 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 8f1322c323e98..430ce6eacd183 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 50d37cb9f653f..22ed930af24ad 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 646a4975ec8cc..ef45a8a8d7c71 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 9b658084b87b5..ba3a8286062a0 100644 --- a/pkgs/by-name/wo/wownero/package.nix +++ b/pkgs/by-name/wo/wownero/package.nix @@ -90,7 +90,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 @@ -103,8 +103,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/wp/wp4nix/package.nix b/pkgs/by-name/wp/wp4nix/package.nix index 25810bd6d318e..fe8be46c0acb9 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/wpaperd/package.nix b/pkgs/by-name/wp/wpaperd/package.nix index e6a8e1dd3ad79..04f17b123c2c7 100644 --- a/pkgs/by-name/wp/wpaperd/package.nix +++ b/pkgs/by-name/wp/wpaperd/package.nix @@ -30,7 +30,7 @@ rustPlatform.buildRustPackage rec { libxkbcommon ]; - meta = with lib; { + meta = { description = "Minimal wallpaper daemon for Wayland"; longDescription = '' It allows the user to choose a different image for each output (aka for each monitor) @@ -39,9 +39,9 @@ rustPlatform.buildRustPackage rec { displayed will be changed with another random one. ''; homepage = "https://github.com/danyspin97/wpaperd"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ DPDmancul fsnkty ]; diff --git a/pkgs/by-name/wp/wpm/package.nix b/pkgs/by-name/wp/wpm/package.nix index 63e9a06d3da9a..341803d564340 100644 --- a/pkgs/by-name/wp/wpm/package.nix +++ b/pkgs/by-name/wp/wpm/package.nix @@ -20,11 +20,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 c6aedc564b4c7..531997a5fac31 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/${pname} ''; - 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 829992ed8fbba..7da4ddd1cb794 100644 --- a/pkgs/by-name/wp/wprs/package.nix +++ b/pkgs/by-name/wp/wprs/package.nix @@ -46,10 +46,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/wr/wrap/package.nix b/pkgs/by-name/wr/wrap/package.nix index 946c41e15ddac..959ce9e054645 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 0e22b8c651efb..968a9075f8b72 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 f952481f828db..6d84d081839d8 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 46b3433bf845f..495c3c0e74957 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/ws/wsdd/package.nix b/pkgs/by-name/ws/wsdd/package.nix index 2db79f2e9c336..807e03e5f47d1 100644 --- a/pkgs/by-name/ws/wsdd/package.nix +++ b/pkgs/by-name/ws/wsdd/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { tests.samba-wsdd = nixosTests.samba-wsdd; }; - meta = with lib; { + meta = { homepage = "https://github.com/christgau/wsdd"; description = "Web Service Discovery (WSD) host daemon for SMB/Samba"; - maintainers = with maintainers; [ izorkin ]; - license = licenses.mit; - platforms = platforms.all; + maintainers = with lib.maintainers; [ izorkin ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; mainProgram = "wsdd"; }; } diff --git a/pkgs/by-name/ws/wshowkeys/package.nix b/pkgs/by-name/ws/wshowkeys/package.nix index 72777ca9e575f..5fd641159953f 100644 --- a/pkgs/by-name/ws/wshowkeys/package.nix +++ b/pkgs/by-name/ws/wshowkeys/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { libxkbcommon ]; - meta = with lib; { + meta = { description = "Displays keys being pressed on a Wayland session"; longDescription = '' Displays keypresses on screen on supported Wayland compositors (requires @@ -51,14 +51,14 @@ stdenv.mkDerivation rec { setuid binary (use "programs.wshowkeys.enable = true;"). ''; homepage = "https://github.com/ammgws/wshowkeys"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Only mit ]; # Some portions of the code are taken from Sway which is MIT licensed. # TODO: gpl3Only or gpl3Plus (ask upstream)? - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ primeos berbiche ]; diff --git a/pkgs/by-name/ws/wsl-open/package.nix b/pkgs/by-name/ws/wsl-open/package.nix index bf92ea0b30581..8a6d603abf65f 100644 --- a/pkgs/by-name/ws/wsl-open/package.nix +++ b/pkgs/by-name/ws/wsl-open/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { installManPage wsl-open.1 ''; - meta = with lib; { + meta = { description = "Open files with xdg-open from Windows Subsystem for Linux (WSL) in Windows applications"; homepage = "https://gitlab.com/4U6U57/wsl-open"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; mainProgram = "wsl-open"; }; } diff --git a/pkgs/by-name/ws/wslay/package.nix b/pkgs/by-name/ws/wslay/package.nix index 85f3294ebabe9..01cd194923a38 100644 --- a/pkgs/by-name/ws/wslay/package.nix +++ b/pkgs/by-name/ws/wslay/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { export DYLD_LIBRARY_PATH=$(pwd)/lib/.libs ''; - meta = with lib; { + meta = { homepage = "https://tatsuhiro-t.github.io/wslay/"; description = "WebSocket library in C"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ pingiun ]; - platforms = platforms.unix; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ pingiun ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ws/wsmancli/package.nix b/pkgs/by-name/ws/wsmancli/package.nix index 4f2ac4aaf3a9c..a6a742b4583f1 100644 --- a/pkgs/by-name/ws/wsmancli/package.nix +++ b/pkgs/by-name/ws/wsmancli/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { touch AUTHORS NEWS README ''; - meta = with lib; { + meta = { description = "Openwsman command-line client"; longDescription = '' Openwsman provides a command-line tool, wsman, to perform basic diff --git a/pkgs/by-name/ws/wsysmon/package.nix b/pkgs/by-name/ws/wsysmon/package.nix index 76ffb4ab5964c..206f547e0d407 100644 --- a/pkgs/by-name/ws/wsysmon/package.nix +++ b/pkgs/by-name/ws/wsysmon/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { spdlog ]; - meta = with lib; { + meta = { description = "Windows task manager clone for Linux"; homepage = "https://github.com/SlyFabi/WSysMon"; - license = [ licenses.mit ]; - platforms = platforms.linux; - maintainers = with maintainers; [ totoroot ]; + license = [ lib.licenses.mit ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ totoroot ]; mainProgram = "WSysMon"; }; } diff --git a/pkgs/by-name/wt/wtwitch/package.nix b/pkgs/by-name/wt/wtwitch/package.nix index cf9d198778577..617c1471eb0c5 100644 --- a/pkgs/by-name/wt/wtwitch/package.nix +++ b/pkgs/by-name/wt/wtwitch/package.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation rec { } ''; - meta = with lib; { + meta = { description = "Terminal user interface for Twitch"; homepage = "https://github.com/krathalan/wtwitch"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ urandom ]; - platforms = platforms.all; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ urandom ]; + platforms = lib.platforms.all; mainProgram = "wtwitch"; }; } diff --git a/pkgs/by-name/wt/wtype/package.nix b/pkgs/by-name/wt/wtype/package.nix index e1ebaf728d3a4..6d8f07bce6600 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 d672360512503..54dc670339e22 100644 --- a/pkgs/by-name/wu/wuzz/package.nix +++ b/pkgs/by-name/wu/wuzz/package.nix @@ -27,11 +27,11 @@ 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; - maintainers = with maintainers; [ pradeepchhetri ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ pradeepchhetri ]; mainProgram = "wuzz"; }; } diff --git a/pkgs/by-name/wv/wvkbd/package.nix b/pkgs/by-name/wv/wvkbd/package.nix index 0901ee9bf69e4..1ee01ad0bbd08 100644 --- a/pkgs/by-name/wv/wvkbd/package.nix +++ b/pkgs/by-name/wv/wvkbd/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { ]; installFlags = [ "PREFIX=$(out)" ]; - 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"; }; } diff --git a/pkgs/by-name/ww/wwcd/package.nix b/pkgs/by-name/ww/wwcd/package.nix index 82c3aaca384bb..4923c134652ae 100644 --- a/pkgs/by-name/ww/wwcd/package.nix +++ b/pkgs/by-name/ww/wwcd/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { 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 5b40cd47a5c98..2c236f8f1ca75 100644 --- a/pkgs/by-name/wx/wxGTK31/package.nix +++ b/pkgs/by-name/wx/wxGTK31/package.nix @@ -112,7 +112,7 @@ stdenv.mkDerivation rec { inherit compat28 compat30 unicode; }; - meta = with lib; { + meta = { homepage = "https://www.wxwidgets.org/"; description = "Cross-Platform C++ GUI Library"; longDescription = '' @@ -125,8 +125,8 @@ stdenv.mkDerivation rec { multithreading, image loading and saving in a variety of popular formats, database support, HTML viewing and printing, and much more. ''; - license = licenses.wxWindows; - maintainers = with maintainers; [ tfmoraes ]; - platforms = platforms.unix; + license = lib.licenses.wxWindows; + maintainers = with lib.maintainers; [ tfmoraes ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wx/wxGTK32/package.nix b/pkgs/by-name/wx/wxGTK32/package.nix index a1e2ca6b7a5db..f82f44ad60aa4 100644 --- a/pkgs/by-name/wx/wxGTK32/package.nix +++ b/pkgs/by-name/wx/wxGTK32/package.nix @@ -128,7 +128,7 @@ stdenv.mkDerivation rec { inherit compat28 compat30 unicode; }; - meta = with lib; { + meta = { homepage = "https://www.wxwidgets.org/"; description = "Cross-Platform C++ GUI Library"; longDescription = '' @@ -141,8 +141,8 @@ stdenv.mkDerivation rec { multithreading, image loading and saving in a variety of popular formats, database support, HTML viewing and printing, and much more. ''; - license = licenses.wxWindows; - maintainers = with maintainers; [ tfmoraes ]; - platforms = platforms.unix; + license = lib.licenses.wxWindows; + maintainers = with lib.maintainers; [ tfmoraes ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/wx/wxformbuilder/package.nix b/pkgs/by-name/wx/wxformbuilder/package.nix index 3a90c0d8e22d8..14a7a9ca23fef 100644 --- a/pkgs/by-name/wx/wxformbuilder/package.nix +++ b/pkgs/by-name/wx/wxformbuilder/package.nix @@ -63,15 +63,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 6252ff7d5f247..f97e6f128594e 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 9945303ccf6e2..7947d3776b43e 100644 --- a/pkgs/by-name/wx/wxsqlite3/package.nix +++ b/pkgs/by-name/wx/wxsqlite3/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { wxGTK32 ]; - 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 8a64e7fec2b8d..7717c287cfe49 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/wyvern/package.nix b/pkgs/by-name/wy/wyvern/package.nix index 53f50ca809031..8460625b4fb40 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 4be1a04606347..bfa49b5ca45ad 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 86a17d34cb0c9..bcbe4ef74a85c 100644 --- a/pkgs/by-name/x1/x11_ssh_askpass/package.nix +++ b/pkgs/by-name/x1/x11_ssh_askpass/package.nix @@ -46,10 +46,10 @@ stdenv.mkDerivation rec { "install.man" ]; - 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/x11idle/package.nix b/pkgs/by-name/x1/x11idle/package.nix index 3bafab5b6a48a..536e243d73fff 100644 --- a/pkgs/by-name/x1/x11idle/package.nix +++ b/pkgs/by-name/x1/x11idle/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { gcc -lXss -lX11 $src -o $out/bin/x11idle ''; - meta = with lib; { + meta = { description = '' Compute consecutive idle time for current X11 session with millisecond resolution ''; @@ -35,9 +35,9 @@ stdenv.mkDerivation rec { Idle time passes when the user does not act, i.e. when the user doesn't move the mouse or use the keyboard. ''; homepage = "https://orgmode.org/"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.swflint ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.swflint ]; mainProgram = "x11idle"; }; } diff --git a/pkgs/by-name/x1/x11spice/package.nix b/pkgs/by-name/x1/x11spice/package.nix index d4d4fb272cc4f..4a226f70050d4 100644 --- a/pkgs/by-name/x1/x11spice/package.nix +++ b/pkgs/by-name/x1/x11spice/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { 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 5331f43e37d9e..334accddd2327 100644 --- a/pkgs/by-name/x1/x11vnc/package.nix +++ b/pkgs/by-name/x1/x11vnc/package.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation rec { sed -i -e '/^\tXdummy.c\ \\$/,$d' -e 's/\tx11vnc_loop\ \\/\tx11vnc_loop/' misc/Makefile.am ''; - meta = with lib; { + meta = { description = "VNC server connected to a real X11 screen"; homepage = "https://github.com/LibVNC/x11vnc/"; - 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/x2goserver/package.nix b/pkgs/by-name/x2/x2goserver/package.nix index f253d3649382b..0d24e75929414 100644 --- a/pkgs/by-name/x2/x2goserver/package.nix +++ b/pkgs/by-name/x2/x2goserver/package.nix @@ -149,11 +149,11 @@ stdenv.mkDerivation rec { 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 436066e5f7bfa..1fb4dedfa83ab 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 93ccc98b2d524..bd6b0086669cd 100644 --- a/pkgs/by-name/x2/x2x/package.nix +++ b/pkgs/by-name/x2/x2x/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { 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/x3/x3270/package.nix b/pkgs/by-name/x3/x3270/package.nix index f1e182b28817f..c8cda2b443590 100644 --- a/pkgs/by-name/x3/x3270/package.nix +++ b/pkgs/by-name/x3/x3270/package.nix @@ -77,10 +77,10 @@ stdenv.mkDerivation rec { darwin.apple_sdk.frameworks.Security ]; - meta = with lib; { + meta = { description = "IBM 3270 terminal emulator for the X Window System"; homepage = "https://x3270.bgp.nu/index.html"; - license = licenses.bsd3; - maintainers = [ maintainers.anna328p ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.anna328p ]; }; } diff --git a/pkgs/by-name/x4/x42-avldrums/package.nix b/pkgs/by-name/x4/x42-avldrums/package.nix index b17474141d7db..a5d68af672785 100644 --- a/pkgs/by-name/x4/x42-avldrums/package.nix +++ b/pkgs/by-name/x4/x42-avldrums/package.nix @@ -37,15 +37,15 @@ 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 orivej ]; - 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 9ac13dc861461..33166b3cfc5ad 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 = with maintainers; [ orivej ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ orivej ]; + 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 d327058c33d12..f94ae901d1171 100644 --- a/pkgs/by-name/x4/x42-plugins/package.nix +++ b/pkgs/by-name/x4/x42-plugins/package.nix @@ -65,14 +65,14 @@ 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 orivej ]; - 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 3f20b207094de..f79ce2ec52361 100644 --- a/pkgs/by-name/xa/Xaw3d/package.nix +++ b/pkgs/by-name/xa/Xaw3d/package.nix @@ -42,9 +42,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 7b47143d9661e..b18cbc4f69062 100644 --- a/pkgs/by-name/xa/xapp/package.nix +++ b/pkgs/by-name/xa/xapp/package.nix @@ -96,11 +96,11 @@ stdenv.mkDerivation rec { # Fix gtk3 module target dir. Proper upstream solution should be using define_variable. env.PKG_CONFIG_GTK__3_0_LIBDIR = "${placeholder "out"}/lib"; - meta = with lib; { + meta = { homepage = "https://github.com/linuxmint/xapp"; description = "Cross-desktop libraries and common resources"; - license = licenses.lgpl3; - platforms = platforms.linux; - maintainers = teams.cinnamon.members; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/by-name/xa/xastir/package.nix b/pkgs/by-name/xa/xastir/package.nix index 60310fd119ad6..fe3a327ee9990 100644 --- a/pkgs/by-name/xa/xastir/package.nix +++ b/pkgs/by-name/xa/xastir/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { postPatch = "patchShebangs ."; - meta = with lib; { + meta = { description = "Graphical APRS client"; homepage = "https://xastir.org"; - license = licenses.gpl2; - maintainers = [ maintainers.ehmry ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.ehmry ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xa/xautoclick/package.nix b/pkgs/by-name/xa/xautoclick/package.nix index fb1861842d174..49650d5d00ce2 100644 --- a/pkgs/by-name/xa/xautoclick/package.nix +++ b/pkgs/by-name/xa/xautoclick/package.nix @@ -49,10 +49,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/xb/xbase/package.nix b/pkgs/by-name/xb/xbase/package.nix index 7f3afa0b159b7..306d2e567775e 100644 --- a/pkgs/by-name/xb/xbase/package.nix +++ b/pkgs/by-name/xb/xbase/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "http://linux.techass.com/projects/xdb/"; description = "C++ class library formerly known as XDB"; - platforms = platforms.linux; - license = licenses.lgpl2; + platforms = lib.platforms.linux; + license = lib.licenses.lgpl2; }; } diff --git a/pkgs/by-name/xb/xbattbar/package.nix b/pkgs/by-name/xb/xbattbar/package.nix index 1775107fc7449..15ae27c03a337 100644 --- a/pkgs/by-name/xb/xbattbar/package.nix +++ b/pkgs/by-name/xb/xbattbar/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { install -m 0755 xbattbar-check-sys $out/libexec/ ''; - meta = with lib; { + meta = { description = "Display battery status in X11"; homepage = "https://salsa.debian.org/debian/xbattbar"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = [ maintainers.q3k ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.q3k ]; mainProgram = "xbattbar"; }; } diff --git a/pkgs/by-name/xb/xboard/package.nix b/pkgs/by-name/xb/xboard/package.nix index fd12bb7f053f5..0cd935aed8710 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 92a31720ad950..981403284884a 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 ed5332d99058e..f29f986f98168 100644 --- a/pkgs/by-name/xb/xborders/package.nix +++ b/pkgs/by-name/xb/xborders/package.nix @@ -49,12 +49,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/xb/xbps/package.nix b/pkgs/by-name/xb/xbps/package.nix index 75668a5b8bb30..305834b89ea3a 100644 --- a/pkgs/by-name/xb/xbps/package.nix +++ b/pkgs/by-name/xb/xbps/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "https://github.com/void-linux/xbps"; description = "X Binary Package System"; - platforms = platforms.linux; # known to not work on Darwin, at least - license = licenses.bsd2; - maintainers = with maintainers; [ dtzWill ]; + platforms = lib.platforms.linux; # known to not work on Darwin, at least + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ dtzWill ]; }; } diff --git a/pkgs/by-name/xc/xc3sprog/package.nix b/pkgs/by-name/xc/xc3sprog/package.nix index 52bc70ebad811..eca2f99d7dfe0 100644 --- a/pkgs/by-name/xc/xc3sprog/package.nix +++ b/pkgs/by-name/xc/xc3sprog/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { "-DCMAKE_CXX_STANDARD=14" ]; - 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 fc21390fcd480..5fef364cfddbf 100644 --- a/pkgs/by-name/xc/xcaddy/package.nix +++ b/pkgs/by-name/xc/xcaddy/package.nix @@ -30,12 +30,12 @@ buildGoModule rec { vendorHash = "sha256-vU/ptOzBjMpRG2Do6ODC+blcCNl15D9mSsEV8QgNN3Y="; - meta = with lib; { + meta = { homepage = "https://github.com/caddyserver/xcaddy"; description = "Build Caddy with plugins"; mainProgram = "xcaddy"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tjni ]; }; diff --git a/pkgs/by-name/xc/xcalib/package.nix b/pkgs/by-name/xc/xcalib/package.nix index a1c789fef49a0..87f25a0f4f7f4 100644 --- a/pkgs/by-name/xc/xcalib/package.nix +++ b/pkgs/by-name/xc/xcalib/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { cp xcalib $out/bin/ ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Tiny monitor calibration loader for X and MS-Windows"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "xcalib"; }; } diff --git a/pkgs/by-name/xc/xcape/package.nix b/pkgs/by-name/xc/xcape/package.nix index 698bab9bfeec8..770da9feb0347 100644 --- a/pkgs/by-name/xc/xcape/package.nix +++ b/pkgs/by-name/xc/xcape/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { 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 rec { 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 538b84c1c4bf6..6eab15bf3cecf 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 b31b06cb73ec7..2b14a6d8c5586 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 72e5a0172580a..80827c33fc418 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 3472dbfa0d57c..e36ec49580c9c 100644 --- a/pkgs/by-name/xc/xchm/package.nix +++ b/pkgs/by-name/xc/xchm/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { export LDFLAGS="$LDFLAGS $(${wxGTK32}/bin/wx-config --libs | sed -e s@-pthread@@) -lwx_gtk3u_aui-3.2" ''; - 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.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.linux; mainProgram = "xchm"; }; } diff --git a/pkgs/by-name/xc/xcircuit/package.nix b/pkgs/by-name/xc/xcircuit/package.nix index 9aab3b301def4..7223509eb2623 100644 --- a/pkgs/by-name/xc/xcircuit/package.nix +++ b/pkgs/by-name/xc/xcircuit/package.nix @@ -51,13 +51,13 @@ stdenv.mkDerivation rec { 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/xcolor/package.nix b/pkgs/by-name/xc/xcolor/package.nix index 84997af2c336a..1759347c6ca3c 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 057996ceb7373..e9731e77e11c6 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 0802fe96c8776..c1d1a4fbd4966 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 = "http://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/xcp/package.nix b/pkgs/by-name/xc/xcp/package.nix index c4f6110901939..8c5936d49a11a 100644 --- a/pkgs/by-name/xc/xcp/package.nix +++ b/pkgs/by-name/xc/xcp/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-P6A1tO+XlZobvptwfJ4KH6iE/p/T1Md1sOSKZ/H/xt4="; - meta = with lib; { + meta = { description = "Extended cp(1)"; homepage = "https://github.com/tarka/xcp"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ lom ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ lom ]; mainProgram = "xcp"; }; } diff --git a/pkgs/by-name/xc/xcruiser/package.nix b/pkgs/by-name/xc/xcruiser/package.nix index c85ccb8cd124c..dfbb537e0102c 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,9 +58,9 @@ stdenv.mkDerivation rec { tree and allows you to "cruise" within a visualized filesystem. ''; homepage = "https://xcruiser.sourceforge.net/"; - license = licenses.gpl2; - maintainers = with maintainers; [ ehmry ]; - platforms = with platforms; linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ ehmry ]; + 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 768207cf676d4..f67a912f4db6a 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 eb4c929254110..811b4ec6b9b23 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 5ddf7b01e1d0f..238dce13bd8d3 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/xdg-desktop-portal-cosmic/package.nix b/pkgs/by-name/xd/xdg-desktop-portal-cosmic/package.nix index 32802ddbd60bb..3f60f3baabf6e 100644 --- a/pkgs/by-name/xd/xdg-desktop-portal-cosmic/package.nix +++ b/pkgs/by-name/xd/xdg-desktop-portal-cosmic/package.nix @@ -61,12 +61,12 @@ rustPlatform.buildRustPackage rec { cp data/cosmic.portal $out/share/xdg-desktop-portal/portals/ ''; - meta = with lib; { + meta = { homepage = "https://github.com/pop-os/xdg-desktop-portal-cosmic"; description = "XDG Desktop Portal for the COSMIC Desktop Environment"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nyabinary ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nyabinary ]; mainProgram = "xdg-desktop-portal-cosmic"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } 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 7797d01fc96b3..bbe690d2e2b59 100644 --- a/pkgs/by-name/xd/xdg-desktop-portal-gtk/package.nix +++ b/pkgs/by-name/xd/xdg-desktop-portal-gtk/package.nix @@ -41,10 +41,10 @@ stdenv.mkDerivation (finalAttrs: { gnome-settings-daemon # schemas needed for settings api (mostly useless now that fonts were moved to g-d-s, just mouse and xsettings) ]; - 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-shana/package.nix b/pkgs/by-name/xd/xdg-desktop-portal-shana/package.nix index c4d898b6bbf9e..5e56bb338bf5a 100644 --- a/pkgs/by-name/xd/xdg-desktop-portal-shana/package.nix +++ b/pkgs/by-name/xd/xdg-desktop-portal-shana/package.nix @@ -34,12 +34,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-/iJAYG0OjTaRrDtNjypvmSUad8PS0lRfykSxp0fJZ98="; - meta = with lib; { + meta = { description = "Filechooser portal backend for any desktop environment"; homepage = "https://github.com/Decodetalkers/xdg-desktop-portal-shana"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = [ maintainers.samuelefacenda ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.samuelefacenda ]; }; } 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 0151ea6ed1cb5..66677e15420fd 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 36d80571c5eab..fc9ae31dcc0fb 100644 --- a/pkgs/by-name/xd/xdg-desktop-portal-xapp/package.nix +++ b/pkgs/by-name/xd/xdg-desktop-portal-xapp/package.nix @@ -49,11 +49,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"; - maintainers = teams.cinnamon.members; - platforms = platforms.linux; - license = licenses.lgpl21Plus; + maintainers = lib.teams.cinnamon.members; + 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 4c8b74f67486b..f05df77e7129d 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 0de1ec79c3890..6510409e3ab10 100644 --- a/pkgs/by-name/xd/xdg-ninja/package.nix +++ b/pkgs/by-name/xd/xdg-ninja/package.nix @@ -38,12 +38,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - 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 d112231213926..0a85c2ab0bd48 100644 --- a/pkgs/by-name/xd/xdg-user-dirs/package.nix +++ b/pkgs/by-name/xd/xdg-user-dirs/package.nix @@ -38,15 +38,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 d5c9e7c9aff8b..9313c7d5327d1 100644 --- a/pkgs/by-name/xd/xdg-utils-cxx/package.nix +++ b/pkgs/by-name/xd/xdg-utils-cxx/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { cmake ]; - 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 86c09d82954ba..e84126b86f584 100644 --- a/pkgs/by-name/xd/xdg-utils/package.nix +++ b/pkgs/by-name/xd/xdg-utils/package.nix @@ -373,11 +373,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/xdo/package.nix b/pkgs/by-name/xd/xdo/package.nix index dfb804c030e4b..6db6f50b0d8b9 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/xdxf2slob/package.nix b/pkgs/by-name/xd/xdxf2slob/package.nix index 6d1ad03f9f875..706cc841bd603 100644 --- a/pkgs/by-name/xd/xdxf2slob/package.nix +++ b/pkgs/by-name/xd/xdxf2slob/package.nix @@ -20,11 +20,11 @@ python3Packages.buildPythonApplication { python3Packages.slob ]; - 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/xe/package.nix b/pkgs/by-name/xe/xe/package.nix index fc17f5411a7c4..dd06d19614ae5 100644 --- a/pkgs/by-name/xe/xe/package.nix +++ b/pkgs/by-name/xe/xe/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Simple xargs and apply replacement"; homepage = "https://github.com/chneukirchen/xe"; - license = licenses.publicDomain; - platforms = platforms.all; + license = lib.licenses.publicDomain; + platforms = lib.platforms.all; maintainers = [ ]; mainProgram = "xe"; }; diff --git a/pkgs/by-name/xe/xearth/package.nix b/pkgs/by-name/xe/xearth/package.nix index d8b096e655806..19e839800a0d3 100644 --- a/pkgs/by-name/xe/xearth/package.nix +++ b/pkgs/by-name/xe/xearth/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { "install.man" ]; - meta = with lib; { + meta = { description = "sets the X root window to an image of the Earth"; mainProgram = "xearth"; homepage = "https://xearth.org"; @@ -45,13 +45,13 @@ stdenv.mkDerivation rec { correctly shaded for the current position of the Sun. By default, xearth updates the displayed image every five minutes. ''; - maintainers = [ maintainers.mafo ]; + maintainers = [ lib.maintainers.mafo ]; license = { fullName = "xearth license"; url = "https://xearth.org/copyright.html"; free = true; }; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/xe/xed-editor/package.nix b/pkgs/by-name/xe/xed-editor/package.nix index 6809ecac41984..9bd07b4b4a676 100644 --- a/pkgs/by-name/xe/xed-editor/package.nix +++ b/pkgs/by-name/xe/xed-editor/package.nix @@ -60,12 +60,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/xed/package.nix b/pkgs/by-name/xe/xed/package.nix index 1bb99548bb5ee..bdbcc6c58b82e 100644 --- a/pkgs/by-name/xe/xed/package.nix +++ b/pkgs/by-name/xe/xed/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { dontInstall = true; # already installed during buildPhase - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isAarch64; description = "Intel X86 Encoder Decoder (Intel XED)"; homepage = "https://intelxed.github.io/"; - license = licenses.asl20; - platforms = platforms.unix; - maintainers = with maintainers; [ arturcygan ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ arturcygan ]; }; } diff --git a/pkgs/by-name/xe/xedit/package.nix b/pkgs/by-name/xe/xedit/package.nix index e2d2997cf38fe..5da7c31da8021 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 212b5c7ef9dda..b254b8ee73b66 100644 --- a/pkgs/by-name/xe/xenomapper/package.nix +++ b/pkgs/by-name/xe/xenomapper/package.nix @@ -17,11 +17,11 @@ python3.pkgs.buildPythonApplication rec { propagatedBuildInputs = with python3.pkgs; [ statistics ]; - 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 583036442ec3c..165a4bd1cfc51 100644 --- a/pkgs/by-name/xe/xenon/package.nix +++ b/pkgs/by-name/xe/xenon/package.nix @@ -26,11 +26,11 @@ python3.pkgs.buildPythonApplication { pyaml ]; - 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/xe/xeus/package.nix b/pkgs/by-name/xe/xeus/package.nix index 31d66347ee8ea..da7b795eb8d6e 100644 --- a/pkgs/by-name/xe/xeus/package.nix +++ b/pkgs/by-name/xe/xeus/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { doCheck = true; preCheck = ''export LD_LIBRARY_PATH=$PWD''; - meta = with lib; { + meta = { homepage = "https://xeus.readthedocs.io"; description = "C++ implementation of the Jupyter Kernel protocol"; - license = licenses.bsd3; - maintainers = with maintainers; [ serge_sans_paille ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ serge_sans_paille ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/xf/xf86_input_cmt/package.nix b/pkgs/by-name/xf/xf86_input_cmt/package.nix index 80c8f895aa3d2..057da069fb0b2 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 311c918aadcc2..092f2441b1237 100644 --- a/pkgs/by-name/xf/xf86_input_wacom/package.nix +++ b/pkgs/by-name/xf/xf86_input_wacom/package.nix @@ -55,11 +55,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 46574326b3b68..99c486d13c155 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/xfitter/package.nix b/pkgs/by-name/xf/xfitter/package.nix index 3ed41c91d8a76..10da32fc7ece8 100644 --- a/pkgs/by-name/xf/xfitter/package.nix +++ b/pkgs/by-name/xf/xfitter/package.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation rec { ln -sv "$out/lib/xfitter/"* "$out/lib/" ''; - meta = with lib; { + meta = { description = "XFitter project is an open source QCD fit framework ready 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/xfontsel/package.nix b/pkgs/by-name/xf/xfontsel/package.nix index 0b01c7f0cfc64..2265e95de10cb 100644 --- a/pkgs/by-name/xf/xfontsel/package.nix +++ b/pkgs/by-name/xf/xfontsel/package.nix @@ -42,16 +42,16 @@ stdenv.mkDerivation rec { --set XAPPLRESDIR $out/share/X11/app-defaults ''; - meta = with lib; { + meta = { homepage = "https://www.x.org/"; description = "Allows testing the fonts available in an X server"; mainProgram = "xfontsel"; - license = with licenses; [ + license = with lib.licenses; [ x11 smlnj mit ]; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/xf/xfs-undelete/package.nix b/pkgs/by-name/xf/xfs-undelete/package.nix index 18d0b9070ae4f..0da90eddb8e6c 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 fe9cc55bbd263..c73df61c36ec5 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 86cc97764b9f2..c74cd31b8c22f 100644 --- a/pkgs/by-name/xf/xfsprogs/package.nix +++ b/pkgs/by-name/xf/xfsprogs/package.nix @@ -77,16 +77,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 6e3fa6fdb4848..64df41aea1bb3 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 8afd7f29f069d..e52d4d530ed96 100644 --- a/pkgs/by-name/xg/xgalagapp/package.nix +++ b/pkgs/by-name/xg/xgalagapp/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { mv xgalaga++.6x $out/share/man ''; - 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.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xg/xgeometry-select/package.nix b/pkgs/by-name/xg/xgeometry-select/package.nix index 8021917d8e505..5fb11d9119fd2 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 c3974cbd0344f..9d09471ff2417 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/xi/xib2nib/package.nix b/pkgs/by-name/xi/xib2nib/package.nix index 8fee6dbfd1a73..4acb96e56d301 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; { - maintainers = with maintainers; [ matthewbauer ]; + meta = { + maintainers = with lib.maintainers; [ matthewbauer ]; 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/xiccd/package.nix b/pkgs/by-name/xi/xiccd/package.nix index 30fa495d71a03..f5738a89b4f5b 100644 --- a/pkgs/by-name/xi/xiccd/package.nix +++ b/pkgs/by-name/xi/xiccd/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { colord ]; - meta = with lib; { + meta = { description = "X color profile daemon"; homepage = "https://github.com/agalakhov/xiccd"; - license = licenses.gpl3; - maintainers = with maintainers; [ abbradar ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ abbradar ]; + platforms = lib.platforms.linux; mainProgram = "xiccd"; }; } diff --git a/pkgs/by-name/xi/xidel/package.nix b/pkgs/by-name/xi/xidel/package.nix index 1edaab585d00a..b6418e6d9bac2 100644 --- a/pkgs/by-name/xi/xidel/package.nix +++ b/pkgs/by-name/xi/xidel/package.nix @@ -96,12 +96,12 @@ stdenv.mkDerivation rec { ./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/xiphos/package.nix b/pkgs/by-name/xi/xiphos/package.nix index 79d713ddb2fb0..fea231b199241 100644 --- a/pkgs/by-name/xi/xiphos/package.nix +++ b/pkgs/by-name/xi/xiphos/package.nix @@ -97,7 +97,7 @@ stdenv.mkDerivation rec { export SWORD_HOME=${sword}; ''; - meta = with lib; { + meta = { description = "GTK Bible study tool"; longDescription = '' Xiphos (formerly known as GnomeSword) is a Bible study tool @@ -106,8 +106,8 @@ stdenv.mkDerivation rec { modules from The SWORD Project and elsewhere. ''; homepage = "https://www.xiphos.org/"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.AndersonTorres ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.AndersonTorres ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xi/xits-math/package.nix b/pkgs/by-name/xi/xits-math/package.nix index d997fad5d11fb..185fd81a0b4fc 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/xi/xivlauncher/package.nix b/pkgs/by-name/xi/xivlauncher/package.nix index 9b1bbc2465268..e198d355d90d6 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; [ sersorrel witchof0x20 ]; diff --git a/pkgs/by-name/xj/xjadeo/package.nix b/pkgs/by-name/xj/xjadeo/package.nix index 6ba651e7244ae..76527d7ee7b0e 100644 --- a/pkgs/by-name/xj/xjadeo/package.nix +++ b/pkgs/by-name/xj/xjadeo/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { portmidi ]; - meta = with lib; { + meta = { description = "X Jack Video Monitor"; longDescription = '' Xjadeo is a software video player that displays a video-clip in sync with @@ -58,8 +58,8 @@ stdenv.mkDerivation rec { synchronizing movie frames with external events. ''; homepage = "https://xjadeo.sourceforge.net"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ mitchmindtree ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ mitchmindtree ]; }; } diff --git a/pkgs/by-name/xj/xjump/package.nix b/pkgs/by-name/xj/xjump/package.nix index aed50689aedaf..39a628d26099c 100644 --- a/pkgs/by-name/xj/xjump/package.nix +++ b/pkgs/by-name/xj/xjump/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation { patches = lib.optionals stdenv.buildPlatform.isDarwin [ ./darwin.patch ]; configureFlags = lib.optionals (localStateDir != null) [ "--localstatedir=${localStateDir}" ]; - meta = with lib; { + meta = { description = "Falling tower game"; mainProgram = "xjump"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ pmeunier ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ pmeunier ]; }; } diff --git a/pkgs/by-name/xk/xkb-switch-i3/package.nix b/pkgs/by-name/xk/xkb-switch-i3/package.nix index bf7954c782b71..8c0b01d50baf9 100644 --- a/pkgs/by-name/xk/xkb-switch-i3/package.nix +++ b/pkgs/by-name/xk/xkb-switch-i3/package.nix @@ -35,12 +35,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 8ecfe8d4ef5f6..5a919fae7268b 100644 --- a/pkgs/by-name/xk/xkb-switch/package.nix +++ b/pkgs/by-name/xk/xkb-switch/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { libxkbfile ]; - 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 ef41440659a66..9d1746e6d51c5 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 = "onscreen 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 85798f9021847..9cae8c6e7182d 100644 --- a/pkgs/by-name/xk/xkblayout-state/package.nix +++ b/pkgs/by-name/xk/xkblayout-state/package.nix @@ -23,12 +23,12 @@ 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; - maintainers = [ maintainers.jagajaga ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.jagajaga ]; + 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 a6cef8a63a077..b52d41ace77f2 100644 --- a/pkgs/by-name/xk/xkbmon/package.nix +++ b/pkgs/by-name/xk/xkbmon/package.nix @@ -20,12 +20,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/xkbset/package.nix b/pkgs/by-name/xk/xkbset/package.nix index 668c801acd548..e5b4cc6650d99 100644 --- a/pkgs/by-name/xk/xkbset/package.nix +++ b/pkgs/by-name/xk/xkbset/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { rm -f $out/bin/xkbset-gui ''; - meta = with lib; { + meta = { homepage = "http://faculty.missouri.edu/~stephen/software/#xkbset"; description = "Program to help manage many of XKB features of X window"; - maintainers = with maintainers; [ drets ]; - platforms = platforms.linux; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ drets ]; + platforms = lib.platforms.linux; + license = lib.licenses.bsd3; mainProgram = "xkbset"; }; } diff --git a/pkgs/by-name/xk/xkcd-font/package.nix b/pkgs/by-name/xk/xkcd-font/package.nix index 8e7d5be28f2f5..c95044edb937b 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 rec { 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/xk/xkeysnail/package.nix b/pkgs/by-name/xk/xkeysnail/package.nix index 3ab9d84f54810..e4db3efe6de7c 100644 --- a/pkgs/by-name/xk/xkeysnail/package.nix +++ b/pkgs/by-name/xk/xkeysnail/package.nix @@ -37,11 +37,11 @@ python3Packages.buildPythonApplication rec { --add-flags "-q" --add-flags "$out/share/browser.py" ''; - meta = with lib; { + meta = { description = "Yet another keyboard remapping tool for X environment"; homepage = "https://github.com/mooz/xkeysnail"; - platforms = platforms.linux; - license = licenses.gpl1Only; - maintainers = with maintainers; [ bb2020 ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl1Only; + maintainers = with lib.maintainers; [ bb2020 ]; }; } diff --git a/pkgs/by-name/xl/xl2tpd/package.nix b/pkgs/by-name/xl/xl2tpd/package.nix index 9921812ed5cc5..9ac354905751b 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; - maintainers = with maintainers; [ abbradar ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/xl/xlayoutdisplay/package.nix b/pkgs/by-name/xl/xlayoutdisplay/package.nix index ada5154833625..e7664732c8664 100644 --- a/pkgs/by-name/xl/xlayoutdisplay/package.nix +++ b/pkgs/by-name/xl/xlayoutdisplay/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=${placeholder "out"}" ]; enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Detects and arranges linux display outputs, using XRandR for detection and xrandr for arrangement"; homepage = "https://github.com/alex-courtis/xlayoutdisplay"; - maintainers = with maintainers; [ dtzWill ]; - license = licenses.asl20; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ dtzWill ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; mainProgram = "xlayoutdisplay"; }; } diff --git a/pkgs/by-name/xl/xlife/package.nix b/pkgs/by-name/xl/xlife/package.nix index e6f58c5da24a7..7e4c0f9ba6b13 100644 --- a/pkgs/by-name/xl/xlife/package.nix +++ b/pkgs/by-name/xl/xlife/package.nix @@ -27,10 +27,10 @@ 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 ]; }; } diff --git a/pkgs/by-name/xl/xlog/package.nix b/pkgs/by-name/xl/xlog/package.nix index 5b3d66411233e..9d665bff1daca 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"; }; } diff --git a/pkgs/by-name/xl/xlogo/package.nix b/pkgs/by-name/xl/xlogo/package.nix index 0650a184bdd1b..c738a0fec8ebe 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 175e91617bd36..350d3faa5e2e5 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/xm/xmagnify/package.nix b/pkgs/by-name/xm/xmagnify/package.nix index d5703b46c2272..d411466f5b066 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 17ae3413f968a..b9aeec02bdda0 100644 --- a/pkgs/by-name/xm/xmcp/package.nix +++ b/pkgs/by-name/xm/xmcp/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tiny color picker for X11"; homepage = "https://github.com/blblapco/xmcp"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ azahi ]; + platforms = lib.platforms.linux; mainProgram = "xmcp"; }; } diff --git a/pkgs/by-name/xm/xmenu/package.nix b/pkgs/by-name/xm/xmenu/package.nix index 23569e6a12c74..2b7334cc57324 100644 --- a/pkgs/by-name/xm/xmenu/package.nix +++ b/pkgs/by-name/xm/xmenu/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { postPatch = "sed -i \"s:/usr/local:$out:\" config.mk"; - meta = with lib; { + meta = { description = "Menu utility for X"; homepage = "https://github.com/phillbush/xmenu"; - license = licenses.mit; - maintainers = with maintainers; [ neonfuz ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ neonfuz ]; + platforms = lib.platforms.all; mainProgram = "xmenu"; }; } diff --git a/pkgs/by-name/xm/xml2/package.nix b/pkgs/by-name/xm/xml2/package.nix index 3b29974fe28d0..a53946e5c7a39 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/xmlbeans/package.nix b/pkgs/by-name/xm/xmlbeans/package.nix index d761ac697d7b1..d1ba79f997518 100644 --- a/pkgs/by-name/xm/xmlbeans/package.nix +++ b/pkgs/by-name/xm/xmlbeans/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { cp -r bin/ lib/ $out/ ''; - meta = with lib; { + meta = { description = "Java library for accessing XML by binding it to Java types"; homepage = "https://xmlbeans.apache.org/"; downloadPage = "https://dlcdn.apache.org/poi/xmlbeans/release/bin/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/by-name/xm/xmloscopy/package.nix b/pkgs/by-name/xm/xmloscopy/package.nix index b547ede58132c..35847a0419fa9 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 = "wtf is my docbook broken?"; 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/xmlroff/package.nix b/pkgs/by-name/xm/xmlroff/package.nix index a628c76829b79..0d336a00794c8 100644 --- a/pkgs/by-name/xm/xmlroff/package.nix +++ b/pkgs/by-name/xm/xmlroff/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { substituteInPlace Makefile --replace "docs" "" # docs target wants to download from network ''; - meta = with lib; { + meta = { description = "XSL Formatter"; homepage = "http://xmlroff.org/"; - platforms = platforms.unix; - license = licenses.bsd3; + platforms = lib.platforms.unix; + license = lib.licenses.bsd3; mainProgram = "xmlroff"; }; } diff --git a/pkgs/by-name/xm/xmlrpc_c/package.nix b/pkgs/by-name/xm/xmlrpc_c/package.nix index 4d554f251689f..09a4340d25333 100644 --- a/pkgs/by-name/xm/xmlrpc_c/package.nix +++ b/pkgs/by-name/xm/xmlrpc_c/package.nix @@ -34,13 +34,13 @@ 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 "Expat license", # "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/xmltoman/package.nix b/pkgs/by-name/xm/xmltoman/package.nix index 6a3f7cbcb38a6..754d33cb61bd7 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 e9e11216f6a4c..473705ba6020a 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 fcfb9384d2af0..1d7afbbd21d7f 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/xmountains/package.nix b/pkgs/by-name/xm/xmountains/package.nix index bb6d48cf348b8..61e7639e8d78c 100644 --- a/pkgs/by-name/xm/xmountains/package.nix +++ b/pkgs/by-name/xm/xmountains/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { installPhase = "install -Dm755 xmountains -t $out/bin"; - meta = with lib; { + meta = { description = "X11 based fractal landscape generator"; homepage = "https://spbooth.github.io/xmountains"; - license = licenses.hpndSellVariant; - maintainers = with maintainers; [ djanatyn ]; + license = lib.licenses.hpndSellVariant; + maintainers = with lib.maintainers; [ djanatyn ]; mainProgram = "xmountains"; }; } diff --git a/pkgs/by-name/xm/xmousepasteblock/package.nix b/pkgs/by-name/xm/xmousepasteblock/package.nix index ba74ded883e0a..6ff6b189b54e9 100644 --- a/pkgs/by-name/xm/xmousepasteblock/package.nix +++ b/pkgs/by-name/xm/xmousepasteblock/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { libev ]; nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Middle mouse button primary X selection/clipboard paste disabler"; homepage = "https://github.com/milaq/XMousePasteBlock"; license = lib.licenses.gpl2Only; - maintainers = [ maintainers.petercommand ]; + maintainers = [ lib.maintainers.petercommand ]; mainProgram = "xmousepasteblock"; }; } diff --git a/pkgs/by-name/xm/xmppc/package.nix b/pkgs/by-name/xm/xmppc/package.nix index f7d7d3d12d3ee..8489f71a5bf7c 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-proxy/package.nix b/pkgs/by-name/xm/xmrig-proxy/package.nix index 3bbc7ee708839..ce470e7057815 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/xn/xneur/package.nix b/pkgs/by-name/xn/xneur/package.nix index 475e47776bfd1..20231a0d4f49a 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 5dcbfb56024b0..55193286f83d3 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; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ azahi ]; + 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 f75bf938c28f6..bac0f32a62a10 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 e28cc7227fe4d..652489d393d89 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-autoconf/package.nix b/pkgs/by-name/xo/xorg-autoconf/package.nix index 6a42c592c5c0c..e323142f3d111 100644 --- a/pkgs/by-name/xo/xorg-autoconf/package.nix +++ b/pkgs/by-name/xo/xorg-autoconf/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "GNU autoconf macros shared across X.Org projects"; homepage = "https://gitlab.freedesktop.org/xorg/util/macros"; - maintainers = with maintainers; [ raboof ]; - license = licenses.mit; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ raboof ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/xo/xorg-rgb/package.nix b/pkgs/by-name/xo/xorg-rgb/package.nix index 7d80c0b7a96b7..6257c405a42b4 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/xow_dongle-firmware/package.nix b/pkgs/by-name/xo/xow_dongle-firmware/package.nix index a91702950a59b..7eaeadbf987f7 100644 --- a/pkgs/by-name/xo/xow_dongle-firmware/package.nix +++ b/pkgs/by-name/xo/xow_dongle-firmware/package.nix @@ -29,11 +29,11 @@ stdenvNoCC.mkDerivation rec { install -Dm644 FW_ACC_00U.bin ${placeholder "out"}/lib/firmware/xow_dongle.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; + license = lib.licenses.unfree; maintainers = with lib.maintainers; [ rhysmdnz ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xp/xpad/package.nix b/pkgs/by-name/xp/xpad/package.nix index 42eb4fc6ccf8e..64c2100e74467 100644 --- a/pkgs/by-name/xp/xpad/package.nix +++ b/pkgs/by-name/xp/xpad/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { gtksourceview ]; - meta = with lib; { + meta = { description = "Sticky note application for jotting down things to remember"; mainProgram = "xpad"; homepage = "https://launchpad.net/xpad"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ michalrus ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ michalrus ]; }; } diff --git a/pkgs/by-name/xp/xpaste/package.nix b/pkgs/by-name/xp/xpaste/package.nix index cec48ddd9d2ba..9fd1a076ff361 100644 --- a/pkgs/by-name/xp/xpaste/package.nix +++ b/pkgs/by-name/xp/xpaste/package.nix @@ -23,11 +23,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 e5a29cb812419..51c48fa7d4ed3 100644 --- a/pkgs/by-name/xp/xplanet/package.nix +++ b/pkgs/by-name/xp/xplanet/package.nix @@ -48,15 +48,15 @@ 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 sander ]; - 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 72502300e4567..366a6bc643c3e 100644 --- a/pkgs/by-name/xp/xplorer/package.nix +++ b/pkgs/by-name/xp/xplorer/package.nix @@ -96,11 +96,11 @@ rustPlatform.buildRustPackage { mv $out/bin/app $out/bin/xplorer ''; - meta = with lib; { + meta = { 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/xplugd/package.nix b/pkgs/by-name/xp/xplugd/package.nix index e536c9b8e3b62..ea8042e9ac692 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 425018ceb1b11..a2593e34ad844 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 7ded44bf7a215..e02794af1927d 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 bbab28e66c8eb..020efee99d806 100644 --- a/pkgs/by-name/xp/xprompt/package.nix +++ b/pkgs/by-name/xp/xprompt/package.nix @@ -43,16 +43,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; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ azahi ]; + 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 c7d9cde8671a2..c1713f4fb0f71 100644 --- a/pkgs/by-name/xp/xpwn/package.nix +++ b/pkgs/by-name/xp/xpwn/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { openssl ]; - 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/package.nix b/pkgs/by-name/xq/xq/package.nix index da5e9ec3e4a0c..91b492534e737 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-R2ng5l2l/5vWnTJ3kt3cURNWL4Lo55yGbSE+9hjQu20="; - 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 1287f301f26f9..4af6cbeb34b26 100644 --- a/pkgs/by-name/xq/xqilla/package.nix +++ b/pkgs/by-name/xq/xqilla/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { ] ); - 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 7f9b368d1dc00..d34a70cf9119c 100644 --- a/pkgs/by-name/xq/xquartz/package.nix +++ b/pkgs/by-name/xq/xquartz/package.nix @@ -240,9 +240,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 e920701d88c83..af63597a48b3d 100644 --- a/pkgs/by-name/xr/xr-hardware/package.nix +++ b/pkgs/by-name/xr/xr-hardware/package.nix @@ -24,11 +24,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/xrandr-invert-colors/package.nix b/pkgs/by-name/xr/xrandr-invert-colors/package.nix index ecc75ba4c2b48..16fa7e3694666 100644 --- a/pkgs/by-name/xr/xrandr-invert-colors/package.nix +++ b/pkgs/by-name/xr/xrandr-invert-colors/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { install xrandr-invert-colors $out/bin ''; - meta = with lib; { + meta = { description = "Inverts the colors of your screen"; license = lib.licenses.gpl3Plus; homepage = "https://github.com/zoltanp/xrandr-invert-colors"; maintainers = [ lib.maintainers.magnetophon ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "xrandr-invert-colors"; }; } diff --git a/pkgs/by-name/xr/xrectsel/package.nix b/pkgs/by-name/xr/xrectsel/package.nix index 4673d4a8017d9..38d431b73632b 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 1cdfdf1c7caf9..7ae25d036a6ef 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 96737ae7972ed..7d82924ccf413 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/xscast/package.nix b/pkgs/by-name/xs/xscast/package.nix index fb770d5d0f83d..1843d3e6f4a13 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 0cd6d92c16c74..461909cb1879b 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/xscope/package.nix b/pkgs/by-name/xs/xscope/package.nix index 792a5412cd39b..9f9545b4a8c34 100644 --- a/pkgs/by-name/xs/xscope/package.nix +++ b/pkgs/by-name/xs/xscope/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ libXt ]; - meta = with lib; { + meta = { description = "program to monitor X11/Client conversations"; homepage = "https://cgit.freedesktop.org/xorg/app/xscope/"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ crertel ]; - platforms = with platforms; unix; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ crertel ]; + platforms = with lib.platforms; unix; mainProgram = "xscope"; }; } diff --git a/pkgs/by-name/xs/xsecurelock/package.nix b/pkgs/by-name/xs/xsecurelock/package.nix index 28dc1c642ef5a..4711bdaf623bc 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/xsensors/package.nix b/pkgs/by-name/xs/xsensors/package.nix index d90fc67d40306..892da3e78499f 100644 --- a/pkgs/by-name/xs/xsensors/package.nix +++ b/pkgs/by-name/xs/xsensors/package.nix @@ -23,9 +23,9 @@ stdenv.mkDerivation rec { ./remove-unused-variables.patch ./replace-deprecated-gtk.patch ]; - meta = with lib; { - license = licenses.gpl2Plus; - platforms = platforms.linux; + meta = { + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/xs/xsettingsd/package.nix b/pkgs/by-name/xs/xsettingsd/package.nix index ac54cd7f77c70..69d5fc5a591d2 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 8325ba5352ba5..0011c70a3b2a4 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/xsokoban/package.nix b/pkgs/by-name/xs/xsokoban/package.nix index e0ff0a30f15c6..c6631be1798cb 100644 --- a/pkgs/by-name/xs/xsokoban/package.nix +++ b/pkgs/by-name/xs/xsokoban/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { mkdir -p $out/bin $out/share $out/man/man1 $out/lib ''; - meta = with lib; { + meta = { description = "X sokoban"; mainProgram = "xsokoban"; - license = licenses.publicDomain; - maintainers = [ maintainers.raskin ]; - platforms = platforms.linux; + license = lib.licenses.publicDomain; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xs/xsos/package.nix b/pkgs/by-name/xs/xsos/package.nix index 9583dadd9e8af..8416d6abea933 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 2b00919d714e7..741eb56ecfd09 100644 --- a/pkgs/by-name/xs/xspim/package.nix +++ b/pkgs/by-name/xs/xspim/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { 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/xssstate/package.nix b/pkgs/by-name/xs/xssstate/package.nix index ab51ee2544d66..779e1786ee6ba 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 83957658f8528..8dd9bed926b52 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 2d4c230ee7123..b65b935919b0f 100644 --- a/pkgs/by-name/xs/xsuspender/package.nix +++ b/pkgs/by-name/xs/xsuspender/package.nix @@ -42,12 +42,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 ac0bb27bad056..09ee1880fcb9b 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 81a8e46a89897..5a8194a1ae841 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/xtensor/package.nix b/pkgs/by-name/xt/xtensor/package.nix index 9256db73dff26..67c5537c8f3d4 100644 --- a/pkgs/by-name/xt/xtensor/package.nix +++ b/pkgs/by-name/xt/xtensor/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation (finalAttrs: { ]; checkTarget = "xtest"; - meta = with lib; { + meta = { description = "Multi-dimensional arrays with broadcasting and lazy computing"; homepage = "https://github.com/xtensor-stack/xtensor"; - license = licenses.bsd3; - maintainers = with maintainers; [ cpcloud ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ cpcloud ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/xt/xteve/package.nix b/pkgs/by-name/xt/xteve/package.nix index 39c60136d205f..fe33611373260 100644 --- a/pkgs/by-name/xt/xteve/package.nix +++ b/pkgs/by-name/xt/xteve/package.nix @@ -17,11 +17,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"; }; } diff --git a/pkgs/by-name/xt/xtitle/package.nix b/pkgs/by-name/xt/xtitle/package.nix index ec4e3867ad9ae..850b12ad6cb39 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 = "Custom"; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "xtitle"; }; } diff --git a/pkgs/by-name/xt/xtl/package.nix b/pkgs/by-name/xt/xtl/package.nix index 2ca5932ac7937..488dc13d65476 100644 --- a/pkgs/by-name/xt/xtl/package.nix +++ b/pkgs/by-name/xt/xtl/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { nativeCheckInputs = [ doctest ]; checkTarget = "xtest"; - meta = with lib; { + meta = { description = "Basic tools (containers, algorithms) used by other quantstack packages"; homepage = "https://github.com/xtensor-stack/xtl"; - license = licenses.bsd3; - maintainers = with maintainers; [ cpcloud ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ cpcloud ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/xt/xtrace/package.nix b/pkgs/by-name/xt/xtrace/package.nix index 0250507d8de4c..5145b22318df4 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 db5b1b34b4316..6b8611a8cebec 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 18ef84029ac1c..627fa460cd66d 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 a2199f49e70d3..177a8c0686dcb 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/xu/xurls/package.nix b/pkgs/by-name/xu/xurls/package.nix index b507226e60d6d..9640d0504d2b3 100644 --- a/pkgs/by-name/xu/xurls/package.nix +++ b/pkgs/by-name/xu/xurls/package.nix @@ -22,10 +22,10 @@ buildGoModule { "-w" ]; - meta = with lib; { + meta = { description = "Extract urls from text"; homepage = "https://github.com/mvdan/xurls"; - maintainers = with maintainers; [ koral ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ koral ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/xv/xvidcore/package.nix b/pkgs/by-name/xv/xvidcore/package.nix index 5354931f43d44..e0dbc0aa14db5 100644 --- a/pkgs/by-name/xv/xvidcore/package.nix +++ b/pkgs/by-name/xv/xvidcore/package.nix @@ -56,14 +56,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/xvkbd/package.nix b/pkgs/by-name/xv/xvkbd/package.nix index e4b511d8a01cd..40ca170fb90d2 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 6dd300275cb42..9941704395b83 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/xx/xxHash/package.nix b/pkgs/by-name/xx/xxHash/package.nix index 684af9642b1b6..0b9a228608e33 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 = with maintainers; [ orivej ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ orivej ]; + 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 2912a0654d74b..cbcaaa5dfbfe6 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 3eac7f58c30e0..ea652a4789373 100644 --- a/pkgs/by-name/xx/xxgdb/package.nix +++ b/pkgs/by-name/xx/xxgdb/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { 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 aefc852f97f42..b0e1962588b5c 100644 --- a/pkgs/by-name/xx/xxh/package.nix +++ b/pkgs/by-name/xx/xxh/package.nix @@ -30,10 +30,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 a0c7d4752508e..6014c96cf1edf 100644 --- a/pkgs/by-name/xx/xxkb/package.nix +++ b/pkgs/by-name/xx/xxkb/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { "install.man" ]; - meta = with lib; { + meta = { description = "Keyboard layout indicator and switcher"; homepage = "http://xxkb.sourceforge.net/"; - license = licenses.artistic2; - maintainers = with maintainers; [ rasendubi ]; - platforms = platforms.linux; + license = lib.licenses.artistic2; + maintainers = with lib.maintainers; [ rasendubi ]; + platforms = lib.platforms.linux; mainProgram = "xxkb"; }; } diff --git a/pkgs/by-name/xx/xxv/package.nix b/pkgs/by-name/xx/xxv/package.nix index c5a5515f96134..25192a1155e2a 100644 --- a/pkgs/by-name/xx/xxv/package.nix +++ b/pkgs/by-name/xx/xxv/package.nix @@ -35,13 +35,13 @@ rustPlatform.buildRustPackage rec { buildNoDefaultFeatures = !useNcurses; buildFeatures = lib.optional (!useNcurses) "pancurses-backend"; - meta = with lib; { + meta = { description = "Visual hex viewer for the terminal"; longDescription = '' XXV is a terminal hex viewer with a text user interface, written in 100% safe Rust. ''; homepage = "https://chrisvest.github.io/xxv/"; - license = with licenses; [ gpl3 ]; + license = with lib.licenses; [ gpl3 ]; maintainers = [ ]; mainProgram = "xxv"; }; diff --git a/pkgs/by-name/xy/xylib/package.nix b/pkgs/by-name/xy/xylib/package.nix index 7c67780213970..1800b0dc14c71 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 1a782f83cff29..042e5ced098b9 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/yai/package.nix b/pkgs/by-name/ya/yai/package.nix index cad6fe75f8be5..54e52b07581a8 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 b1b221fce7ecc..0cbb013a49c60 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 7c52cc4cccf96..3bdb3563f7ddb 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-merge/package.nix b/pkgs/by-name/ya/yaml-merge/package.nix index c7983acbd2ac8..b6763399689a0 100644 --- a/pkgs/by-name/ya/yaml-merge/package.nix +++ b/pkgs/by-name/ya/yaml-merge/package.nix @@ -24,12 +24,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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/ya/yaml2json/package.nix b/pkgs/by-name/ya/yaml2json/package.nix index c77b88f3d2a30..afb529de63616 100644 --- a/pkgs/by-name/ya/yaml2json/package.nix +++ b/pkgs/by-name/ya/yaml2json/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/bronze1man/yaml2json"; description = "Convert yaml to json"; mainProgram = "yaml2json"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ya/yams/package.nix b/pkgs/by-name/ya/yams/package.nix index 713d8a96b7628..fb77e648751ad 100644 --- a/pkgs/by-name/ya/yams/package.nix +++ b/pkgs/by-name/ya/yams/package.nix @@ -24,11 +24,11 @@ python3Packages.buildPythonPackage rec { doCheck = false; - 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/yank/package.nix b/pkgs/by-name/ya/yank/package.nix index 8cdc1dc8aeb70..4bbe341881007 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 0c3bb3b5eeff4..4ba0c04118a5c 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 0dae3b9aa5ba5..9941982496372 100644 --- a/pkgs/by-name/ya/yarg/package.nix +++ b/pkgs/by-name/ya/yarg/package.nix @@ -116,11 +116,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Free, open-source, plastic guitar game"; homepage = "https://yarg.in"; - 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 748db1f186f0d..cc156303c0a3a 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 2454f163958d8..aadfc6f804fe6 100644 --- a/pkgs/by-name/ya/yarn-berry/package.nix +++ b/pkgs/by-name/ya/yarn-berry/package.nix @@ -48,16 +48,16 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { homepage = "https://yarnpkg.com/"; 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/yaru-remix-theme/package.nix b/pkgs/by-name/ya/yaru-remix-theme/package.nix index 281ada4dac358..7c2419c8e2047 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 8f19ee0b55b09..c10a8a67420b0 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 e394d342a5020..8caa147011dc3 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 84771fd9d3158..81e3a2ea99e91 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/yascreen/package.nix b/pkgs/by-name/ya/yascreen/package.nix index 5a83c9b8884cd..fd2524ccd35e1 100644 --- a/pkgs/by-name/ya/yascreen/package.nix +++ b/pkgs/by-name/ya/yascreen/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { homepage = "https://github.com/bbonev/yascreen"; description = "Yet Another Screen Library (curses replacement for daemons and embedded apps)"; - license = licenses.lgpl3; - maintainers = [ maintainers.arezvov ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3; + maintainers = [ lib.maintainers.arezvov ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ya/yash/package.nix b/pkgs/by-name/ya/yash/package.nix index d3196034f355b..dde8bb0b8a148 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 3577781c9818f..5d31cbbc2fca7 100644 --- a/pkgs/by-name/ya/yasm/package.nix +++ b/pkgs/by-name/ya/yasm/package.nix @@ -16,10 +16,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 367af835faa9a..61f3bfa1cfb5c 100644 --- a/pkgs/by-name/ya/yaup/package.nix +++ b/pkgs/by-name/ya/yaup/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation { miniupnpc ]; - meta = with lib; { + meta = { homepage = "https://github.com/Holarse-Linuxgaming/yaup"; description = "Yet Another UPnP Portmapper"; longDescription = '' @@ -49,9 +49,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; # ld: unknown option: --export-dynamic broken = stdenv.hostPlatform.isDarwin; mainProgram = "yaup"; diff --git a/pkgs/by-name/ya/yaws/package.nix b/pkgs/by-name/ya/yaws/package.nix index db34b0e920140..c31b8f0a03b34 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 22e81b3b2268c..f7d64bfc7f2bb 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,9 +57,9 @@ 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; - maintainers = with maintainers; [ neonfuz ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ neonfuz ]; mainProgram = "yaxg"; }; } diff --git a/pkgs/by-name/yd/yder/package.nix b/pkgs/by-name/yd/yder/package.nix index 6fed9bfee532b..0ae22b6e3d2cf 100644 --- a/pkgs/by-name/yd/yder/package.nix +++ b/pkgs/by-name/yd/yder/package.nix @@ -42,11 +42,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 9ceb25b0d99bb..b3763cfe6f49a 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 42395ceaa54d7..adeb67f2a75a8 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. single binary, no dependencies. linux, osx, windows. #1 workplace productivity booster. #yeetgif #eggplant #golang"; 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 3d94ad56622db..a11b43e7df4da 100644 --- a/pkgs/by-name/ye/yelp-tools/package.nix +++ b/pkgs/by-name/ye/yelp-tools/package.nix @@ -53,11 +53,11 @@ 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.gnome.members ++ (with maintainers; [ domenkozar ]); - license = licenses.gpl2Plus; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members ++ (with lib.maintainers; [ domenkozar ]); + 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 613e12f0a561c..7a9c8729833dd 100644 --- a/pkgs/by-name/ye/yelp-xsl/package.nix +++ b/pkgs/by-name/ye/yelp-xsl/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/yelp-xsl"; description = "Yelp's universal stylesheets for Mallard and DocBook"; - maintainers = teams.gnome.members; - license = with licenses; [ + maintainers = lib.teams.gnome.members; + license = with lib.licenses; [ # See https://gitlab.gnome.org/GNOME/yelp-xsl/blob/master/COPYING # Stylesheets lgpl2Plus @@ -48,6 +48,6 @@ stdenv.mkDerivation rec { # highlight.js bsd3 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ye/yelp/package.nix b/pkgs/by-name/ye/yelp/package.nix index 652cc277ae9a7..bdb626ef756c8 100644 --- a/pkgs/by-name/ye/yelp/package.nix +++ b/pkgs/by-name/ye/yelp/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://apps.gnome.org/Yelp/"; description = "Help viewer in Gnome"; - maintainers = teams.gnome.members; - license = licenses.gpl2; - platforms = platforms.linux; + maintainers = lib.teams.gnome.members; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ye/yeshup/package.nix b/pkgs/by-name/ye/yeshup/package.nix index 6d3e5168badd2..a4d18a14c9d08 100644 --- a/pkgs/by-name/ye/yeshup/package.nix +++ b/pkgs/by-name/ye/yeshup/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { 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 0509cdaec9485..746131aa01829 100644 --- a/pkgs/by-name/ye/yewtube/package.nix +++ b/pkgs/by-name/ye/yewtube/package.nix @@ -42,12 +42,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 2950aa864f2a8..2ccb364b426c1 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 rec { cargoHash = "sha256-nX5FoPAk50wt0CXskyg7jQeHvD5YtBNnCe0CVOGXTMI="; - meta = with lib; { + meta = { homepage = "https://github.com/nonamescm/yex-lang"; description = "Functional scripting language written in rust"; - license = licenses.mit; - maintainers = with maintainers; [ AndersonTorres ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ AndersonTorres ]; mainProgram = "yex"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/yg/yggdrasil/package.nix b/pkgs/by-name/yg/yggdrasil/package.nix index c7e2b7c5ee8bc..68a4314df5ead 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 = "An 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; [ ehmry gazally lassulus diff --git a/pkgs/by-name/yg/yggstack/package.nix b/pkgs/by-name/yg/yggstack/package.nix index 1dd155c7bd42e..6b403a89ac5ca 100644 --- a/pkgs/by-name/yg/yggstack/package.nix +++ b/pkgs/by-name/yg/yggstack/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { doCheck = false; - 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; [ ehmry peigongdsd ]; diff --git a/pkgs/by-name/yj/yj/package.nix b/pkgs/by-name/yj/yj/package.nix index bb6f8372c3126..6698e822ce726 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 89bb628e8c2f2..d990d70ad1b68 100644 --- a/pkgs/by-name/ym/ympd/package.nix +++ b/pkgs/by-name/ym/ympd/package.nix @@ -35,12 +35,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 1795f9f427912..79d2aa9645e44 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/yodl/package.nix b/pkgs/by-name/yo/yodl/package.nix index cf967a7893b27..bad6594f03cb4 100644 --- a/pkgs/by-name/yo/yodl/package.nix +++ b/pkgs/by-name/yo/yodl/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { ./build install man ''; - meta = with lib; { + meta = { description = "Package that implements a pre-document language and tools to process it"; homepage = "https://fbb-git.gitlab.io/yodl/"; - 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/yo/yojimbo/package.nix b/pkgs/by-name/yo/yojimbo/package.nix index a89e356752a01..54981fc9961ba 100644 --- a/pkgs/by-name/yo/yojimbo/package.nix +++ b/pkgs/by-name/yo/yojimbo/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation { doCheck = true; - 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. @@ -50,8 +50,8 @@ stdenv.mkDerivation { 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/networkprotocol/yojimbo"; - license = licenses.bsd3; - platforms = platforms.x86_64; - maintainers = with maintainers; [ paddygord ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.x86_64; + maintainers = with lib.maintainers; [ paddygord ]; }; } diff --git a/pkgs/by-name/yo/yoshimi/package.nix b/pkgs/by-name/yo/yoshimi/package.nix index 8b0744a2ad86b..220bca184ef6f 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 9abca91753f0b..f2775707aa1bf 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/ys/ysfx/package.nix b/pkgs/by-name/ys/ysfx/package.nix index 606cc37a15806..b210e723755a2 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; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/yt/ytarchive/package.nix b/pkgs/by-name/yt/ytarchive/package.nix index 283f4258df18e..7d334289336bf 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 9a1caccc1f227..386cd874f12f2 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 333dad2174de9..28894333758f8 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 b73ccd6c8c867..35dee1c1a21d4 100644 --- a/pkgs/by-name/yt/ytmdl/package.nix +++ b/pkgs/by-name/yt/ytmdl/package.nix @@ -53,11 +53,11 @@ python3Packages.buildPythonApplication rec { # This application has no tests doCheck = false; - 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 106bcf27b33f0..85f995c3b6773 100644 --- a/pkgs/by-name/yt/ytt/package.nix +++ b/pkgs/by-name/yt/ytt/package.nix @@ -46,12 +46,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/yt/ytui-music/package.nix b/pkgs/by-name/yt/ytui-music/package.nix index 6cf472a3d27f9..47438cb099050 100644 --- a/pkgs/by-name/yt/ytui-music/package.nix +++ b/pkgs/by-name/yt/ytui-music/package.nix @@ -61,11 +61,11 @@ rustPlatform.buildRustPackage rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Youtube client in terminal for music"; homepage = "https://github.com/sudipghimire533/ytui-music"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ kashw2 ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ kashw2 ]; mainProgram = "ytui_music"; }; } diff --git a/pkgs/by-name/yu/yubihsm-connector/package.nix b/pkgs/by-name/yu/yubihsm-connector/package.nix index 0b0299fdcc8f1..eed18d0d8484c 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 = "yubihsm-connector 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 58358991c087a..4b66e8a480396 100644 --- a/pkgs/by-name/yu/yubihsm-shell/package.nix +++ b/pkgs/by-name/yu/yubihsm-shell/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation rec { # causes redefinition of _FORTIFY_SOURCE hardeningDisable = [ "fortify3" ]; - meta = with lib; { + meta = { description = "yubihsm-shell and libyubihsm"; homepage = "https://github.com/Yubico/yubihsm-shell"; - maintainers = with maintainers; [ matthewcroughan ]; - license = licenses.asl20; - platforms = platforms.all; + maintainers = with lib.maintainers; [ matthewcroughan ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/yu/yubikey-personalization/package.nix b/pkgs/by-name/yu/yubikey-personalization/package.nix index 135279a27b0ef..fe8986d9cb111 100644 --- a/pkgs/by-name/yu/yubikey-personalization/package.nix +++ b/pkgs/by-name/yu/yubikey-personalization/package.nix @@ -53,10 +53,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/yubikey-touch-detector/package.nix b/pkgs/by-name/yu/yubikey-touch-detector/package.nix index 8332e9625bcb2..9104da30cd82f 100644 --- a/pkgs/by-name/yu/yubikey-touch-detector/package.nix +++ b/pkgs/by-name/yu/yubikey-touch-detector/package.nix @@ -48,12 +48,12 @@ buildGoModule rec { installManPage yubikey-touch-detector.1 ''; - meta = with lib; { + meta = { description = "Tool to detect when your YubiKey is waiting for a touch"; homepage = "https://github.com/maximbaz/yubikey-touch-detector"; - maintainers = with maintainers; [ sumnerevans ]; - license = licenses.isc; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ sumnerevans ]; + license = lib.licenses.isc; + platforms = lib.platforms.linux; mainProgram = "yubikey-touch-detector"; }; } diff --git a/pkgs/by-name/yu/yubioath-flutter/package.nix b/pkgs/by-name/yu/yubioath-flutter/package.nix index e22005d905cee..3cf999df253ef 100644 --- a/pkgs/by-name/yu/yubioath-flutter/package.nix +++ b/pkgs/by-name/yu/yubioath-flutter/package.nix @@ -83,12 +83,12 @@ flutter324.buildFlutterApplication rec { libappindicator ]; - meta = with lib; { + meta = { description = "Yubico Authenticator for Desktop"; mainProgram = "yubioath-flutter"; homepage = "https://github.com/Yubico/yubioath-flutter"; - license = licenses.asl20; - maintainers = with maintainers; [ lukegb ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lukegb ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/yu/yunfaavatar/package.nix b/pkgs/by-name/yu/yunfaavatar/package.nix index c3456673e1ef3..b0b9b4f51c5e2 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 b3d262c09ef13..606e015a0ace6 100644 --- a/pkgs/by-name/yu/yutto/package.nix +++ b/pkgs/by-name/yu/yutto/package.nix @@ -49,11 +49,11 @@ python3Packages.buildPythonApplication rec { ]; }; - 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 ae50e55184db8..f5ffa5ce1cc41 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 4c6c113038726..ec6fc7998497e 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/za/zabbix-cli/package.nix b/pkgs/by-name/za/zabbix-cli/package.nix index 50935d6caa404..ddd1857c3dc80 100644 --- a/pkgs/by-name/za/zabbix-cli/package.nix +++ b/pkgs/by-name/za/zabbix-cli/package.nix @@ -64,11 +64,11 @@ python3Packages.buildPythonApplication rec { command = "HOME=$(mktemp -d) zabbix-cli --version"; }; - meta = with lib; { + meta = { description = "Command-line interface for Zabbix"; homepage = "https://github.com/unioslo/zabbix-cli"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "zabbix-cli"; - maintainers = [ maintainers.anthonyroussel ]; + maintainers = [ lib.maintainers.anthonyroussel ]; }; } diff --git a/pkgs/by-name/za/zabbixctl/package.nix b/pkgs/by-name/za/zabbixctl/package.nix index 4fdca75b17d2b..42c6853d9f044 100644 --- a/pkgs/by-name/za/zabbixctl/package.nix +++ b/pkgs/by-name/za/zabbixctl/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-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 7d47bf5bc292d..1bb61e8b0405d 100644 --- a/pkgs/by-name/za/zalgo/package.nix +++ b/pkgs/by-name/za/zalgo/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { 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 34f37b465c42a..e494055c691b6 100644 --- a/pkgs/by-name/za/zam-plugins/package.nix +++ b/pkgs/by-name/za/zam-plugins/package.nix @@ -53,11 +53,11 @@ 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; }; } diff --git a/pkgs/by-name/za/zammad/package.nix b/pkgs/by-name/za/zammad/package.nix index 452af8ef5c94c..eb8b203cae543 100644 --- a/pkgs/by-name/za/zammad/package.nix +++ b/pkgs/by-name/za/zammad/package.nix @@ -150,15 +150,15 @@ stdenvNoCC.mkDerivation { }; }; - meta = with lib; { + meta = { description = "Zammad, a web-based, open source user support/ticketing solution"; homepage = "https://zammad.org"; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; platforms = [ "x86_64-linux" "aarch64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ taeer netali ]; diff --git a/pkgs/by-name/za/zap/package.nix b/pkgs/by-name/za/zap/package.nix index 0edcff844f72f..80568ca869260 100644 --- a/pkgs/by-name/za/zap/package.nix +++ b/pkgs/by-name/za/zap/package.nix @@ -64,15 +64,15 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://www.zaproxy.org/"; description = "Java application for web penetration testing"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ mog rafael ]; - platforms = platforms.linux; - license = licenses.asl20; + platforms = lib.platforms.linux; + license = lib.licenses.asl20; mainProgram = "zap"; }; } diff --git a/pkgs/by-name/za/zarchive/package.nix b/pkgs/by-name/za/zarchive/package.nix index 2efece44cadbf..070157d754ebc 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 328b64a53e991..49f400c04bd7b 100644 --- a/pkgs/by-name/za/zarf/package.nix +++ b/pkgs/by-name/za/zarf/package.nix @@ -50,11 +50,11 @@ buildGoModule rec { --zsh <($out/bin/zarf completion --no-log-file zsh) ''; - meta = with lib; { + meta = { description = "DevSecOps for Air Gap & Limited-Connection Systems. https://zarf.dev"; mainProgram = "zarf"; homepage = "https://github.com/defenseunicorns/zarf.git"; - license = licenses.asl20; - maintainers = with maintainers; [ ragingpastry ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ragingpastry ]; }; } diff --git a/pkgs/by-name/za/zasm/package.nix b/pkgs/by-name/za/zasm/package.nix index 0eaf0992e6f62..2812740377852 100644 --- a/pkgs/by-name/za/zasm/package.nix +++ b/pkgs/by-name/za/zasm/package.nix @@ -45,13 +45,13 @@ stdenv.mkDerivation rec { install -Dm755 -t $out/bin zasm ''; - meta = with lib; { + meta = { description = "Z80 / 8080 / Z180 assembler (for unix-style OS)"; mainProgram = "zasm"; homepage = "https://k1.spdns.de/Develop/Projects/zasm/Distributions/"; - license = licenses.bsd2; - maintainers = [ maintainers.turbomack ]; - platforms = platforms.unix; - badPlatforms = platforms.aarch64; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.turbomack ]; + platforms = lib.platforms.unix; + badPlatforms = lib.platforms.aarch64; }; } diff --git a/pkgs/by-name/za/zaz/package.nix b/pkgs/by-name/za/zaz/package.nix index 166048c8689db..4f59a432fd1ea 100644 --- a/pkgs/by-name/za/zaz/package.nix +++ b/pkgs/by-name/za/zaz/package.nix @@ -49,13 +49,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/zc/zchaff/package.nix b/pkgs/by-name/zc/zchaff/package.nix index c0ffc52641da5..f10abaf98bdae 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/zdelta/package.nix b/pkgs/by-name/zd/zdelta/package.nix index c84cd85f679c0..5b25c70ccec9f 100644 --- a/pkgs/by-name/zd/zdelta/package.nix +++ b/pkgs/by-name/zd/zdelta/package.nix @@ -20,9 +20,9 @@ stdenv.mkDerivation rec { 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; }; } diff --git a/pkgs/by-name/zd/zdns/package.nix b/pkgs/by-name/zd/zdns/package.nix index dfa2fecc48fb5..1908640da11be 100644 --- a/pkgs/by-name/zd/zdns/package.nix +++ b/pkgs/by-name/zd/zdns/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-daMPk1TKrUXXqCb4WVkrUIJsBL7uzXLJnxWNbHQ/Im4="; - meta = with lib; { + meta = { description = "CLI DNS lookup tool"; mainProgram = "zdns"; homepage = "https://github.com/zmap/zdns"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ze/zecwallet-lite/package.nix b/pkgs/by-name/ze/zecwallet-lite/package.nix index 28b1b5085d2bc..bbd8bdd14bfaa 100644 --- a/pkgs/by-name/ze/zecwallet-lite/package.nix +++ b/pkgs/by-name/ze/zecwallet-lite/package.nix @@ -24,11 +24,11 @@ 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; - maintainers = with maintainers; [ colinsane ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ colinsane ]; platforms = [ "x86_64-linux" ]; mainProgram = "zecwallet-lite"; }; diff --git a/pkgs/by-name/ze/zed-open-capture/package.nix b/pkgs/by-name/ze/zed-open-capture/package.nix index 648424d47443c..2f5c4c4dbf94f 100644 --- a/pkgs/by-name/ze/zed-open-capture/package.nix +++ b/pkgs/by-name/ze/zed-open-capture/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation { "-DBUILD_EXAMPLES=OFF" ]; - meta = with lib; { + meta = { description = "Platform-agnostic camera and sensor capture API for the ZED 2, ZED 2i, and ZED Mini stereo cameras"; homepage = "https://github.com/stereolabs/zed-open-capture"; - license = licenses.mit; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/by-name/ze/zeitgeist/package.nix b/pkgs/by-name/ze/zeitgeist/package.nix index 7c6db745fe11c..7c042178e17d5 100644 --- a/pkgs/by-name/ze/zeitgeist/package.nix +++ b/pkgs/by-name/ze/zeitgeist/package.nix @@ -77,11 +77,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/"; - maintainers = teams.freedesktop.members ++ (with maintainers; [ ]); - license = licenses.lgpl21Plus; - platforms = platforms.linux; + maintainers = lib.teams.freedesktop.members ++ (with lib.maintainers; [ ]); + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ze/zenmonitor/package.nix b/pkgs/by-name/ze/zenmonitor/package.nix index 648e0e96d720f..4fab532577505 100644 --- a/pkgs/by-name/ze/zenmonitor/package.nix +++ b/pkgs/by-name/ze/zenmonitor/package.nix @@ -27,16 +27,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 b824fbc74ceac..07e07500a0cec 100644 --- a/pkgs/by-name/ze/zenstates/package.nix +++ b/pkgs/by-name/ze/zenstates/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { 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; - maintainers = with maintainers; [ savannidgerinel ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ savannidgerinel ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ze/zerobin/package.nix b/pkgs/by-name/ze/zerobin/package.nix index 5a826ccec891b..1c58d35c9cc8c 100644 --- a/pkgs/by-name/ze/zerobin/package.nix +++ b/pkgs/by-name/ze/zerobin/package.nix @@ -59,11 +59,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "zerobin" ]; - meta = with lib; { + meta = { description = "Client side encrypted pastebin"; homepage = "https://0bin.net/"; - 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 2bcd6e85f3995..551e31e113ad4 100644 --- a/pkgs/by-name/ze/zeroc-ice/package.nix +++ b/pkgs/by-name/ze/zeroc-ice/package.nix @@ -99,12 +99,12 @@ 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ abbradar ]; 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 8f62e053f78fc..6301630dcb9ee 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 e74133b763580..aa8d5b5ab0622 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 71eeb50e61635..d16f1a082066e 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 = "A 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 8f5f2dcb1422a..73867545370ad 100644 --- a/pkgs/by-name/ze/zerotierone/package.nix +++ b/pkgs/by-name/ze/zerotierone/package.nix @@ -155,11 +155,11 @@ 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 = licenses.bsl11; - maintainers = with maintainers; [ + license = lib.licenses.bsl11; + maintainers = with lib.maintainers; [ sjmackenzie zimbatm ehmry @@ -167,6 +167,6 @@ stdenv.mkDerivation { 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 48f3109b278db..10c966c8cd4db 100644 --- a/pkgs/by-name/ze/zeyple/package.nix +++ b/pkgs/by-name/ze/zeyple/package.nix @@ -22,11 +22,11 @@ python3Packages.buildPythonApplication rec { install -Dm755 $src/zeyple/zeyple.py $out/bin/zeyple ''; - 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 a272cb93cdb8c..071fb06c6672b 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 00262004855a6..4c773895ee448 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 0b7fd9b2048be..145db32ac2736 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/zfxtop/package.nix b/pkgs/by-name/zf/zfxtop/package.nix index 71ac3b1e773fc..22c59979add1f 100644 --- a/pkgs/by-name/zf/zfxtop/package.nix +++ b/pkgs/by-name/zf/zfxtop/package.nix @@ -17,11 +17,11 @@ 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; - maintainers = with maintainers; [ wozeparrot ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ wozeparrot ]; mainProgram = "zfxtop"; }; } diff --git a/pkgs/by-name/zg/zgrab2/package.nix b/pkgs/by-name/zg/zgrab2/package.nix index 9651c9ee54faf..bd4b090e951f2 100644 --- a/pkgs/by-name/zg/zgrab2/package.nix +++ b/pkgs/by-name/zg/zgrab2/package.nix @@ -28,15 +28,15 @@ buildGoModule rec { "cmd/zgrab2" ]; - meta = with lib; { + meta = { description = "Web application scanner"; mainProgram = "zgrab2"; homepage = "https://github.com/zmap/zgrab2"; - license = with licenses; [ + license = with lib.licenses; [ asl20 isc ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ fab juliusrickert ]; diff --git a/pkgs/by-name/zi/zi/package.nix b/pkgs/by-name/zi/zi/package.nix index 9458af8f90e8c..f8f5f576e7199 100644 --- a/pkgs/by-name/zi/zi/package.nix +++ b/pkgs/by-name/zi/zi/package.nix @@ -26,10 +26,10 @@ stdenvNoCC.mkDerivation rec { 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/zilla-slab/package.nix b/pkgs/by-name/zi/zilla-slab/package.nix index 333db7d2248ef..e53c46b601f2d 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 b12b74bea6707..0b6375b6477cf 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 = "The 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 cc49026b01d25..02df1d27d051a 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/zimlib/package.nix b/pkgs/by-name/zi/zimlib/package.nix index f1ab313018ddf..64300b0447b3f 100644 --- a/pkgs/by-name/zi/zimlib/package.nix +++ b/pkgs/by-name/zi/zimlib/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Library for reading and writing ZIM files"; homepage = "https://www.openzim.org/wiki/Zimlib"; - license = licenses.gpl2; - maintainers = with maintainers; [ greg ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ greg ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/zi/zincsearch/package.nix b/pkgs/by-name/zi/zincsearch/package.nix index 8a4c4928bdadc..9b59aada52a28 100644 --- a/pkgs/by-name/zi/zincsearch/package.nix +++ b/pkgs/by-name/zi/zincsearch/package.nix @@ -50,11 +50,11 @@ buildGo122Module 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/zinnia/package.nix b/pkgs/by-name/zi/zinnia/package.nix index 1b15281e52a80..5b63b590138dc 100644 --- a/pkgs/by-name/zi/zinnia/package.nix +++ b/pkgs/by-name/zi/zinnia/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation { sourceRoot=$(echo */zinnia) ''; - meta = with lib; { + meta = { description = "Online hand recognition system with machine learning"; homepage = "http://taku910.github.io/zinnia/"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = [ maintainers.gebner ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.gebner ]; }; } diff --git a/pkgs/by-name/zi/zip/package.nix b/pkgs/by-name/zi/zip/package.nix index 764219b4c8804..38821a0bf2b52 100644 --- a/pkgs/by-name/zi/zip/package.nix +++ b/pkgs/by-name/zi/zip/package.nix @@ -80,12 +80,12 @@ stdenv.mkDerivation rec { 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/zita-ajbridge/package.nix b/pkgs/by-name/zi/zita-ajbridge/package.nix index f3b78a8204fda..c1cde4f32bc71 100644 --- a/pkgs/by-name/zi/zita-ajbridge/package.nix +++ b/pkgs/by-name/zi/zita-ajbridge/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Connect additional ALSA devices to JACK"; homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/zi/zita-at1/package.nix b/pkgs/by-name/zi/zita-at1/package.nix index 4f87f23d484b7..288558a653974 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; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ orivej ]; + 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 0b4ae3c7f9fc4..c43c5be8abaff 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 bf8f21fccd324..10101373ee325 100644 --- a/pkgs/by-name/zi/zitadel-tools/package.nix +++ b/pkgs/by-name/zi/zitadel-tools/package.nix @@ -34,10 +34,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/zk/zk/package.nix b/pkgs/by-name/zk/zk/package.nix index ed3381218a5a7..e7bd8e88a569c 100644 --- a/pkgs/by-name/zk/zk/package.nix +++ b/pkgs/by-name/zk/zk/package.nix @@ -30,9 +30,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 b880a0f5dce7e..099614df6bcd7 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 f2bcf64da0480..fa96d2b8a5a42 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-RZtxpUsh8Gt/7bNcVGE4qfiLLENHDHAYXZapNOpTZ6M="; - 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 74887641e26f3..6e402a03aedad 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 6b80713075de6..4d3213c3581c1 100644 --- a/pkgs/by-name/zl/zlib-ng/package.nix +++ b/pkgs/by-name/zl/zlib-ng/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { "-DINSTALL_UTILS=ON" ] ++ 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/zl/zlog/package.nix b/pkgs/by-name/zl/zlog/package.nix index 9054ae1a6a549..d28d35cb8ca96 100644 --- a/pkgs/by-name/zl/zlog/package.nix +++ b/pkgs/by-name/zl/zlog/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { makeFlagsArray+=(CFLAGS="-Wno-pointer-to-int-cast -Wno-newline-eof") ''; - meta = with lib; { + meta = { description = "Reliable, high-performance, thread safe, flexible, clear-model, pure C logging library"; homepage = "https://hardysimpson.github.io/zlog/"; - license = licenses.lgpl21; - maintainers = [ maintainers.matthiasbeyer ]; + license = lib.licenses.lgpl21; + maintainers = [ lib.maintainers.matthiasbeyer ]; mainProgram = "zlog-chk-conf"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/zm/zmap/package.nix b/pkgs/by-name/zm/zmap/package.nix index fcff083f37ee6..a6a0bd0265677 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 e956effbe8b3e..dbd2bc288d254 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 2150cef6d4cd2..3652b32e0ba0c 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 ]; - maintainers = teams.sage.members; - platforms = platforms.unix; + license = with lib.licenses; [ gpl3 ]; + maintainers = lib.teams.sage.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/zn/znapzend/package.nix b/pkgs/by-name/zn/znapzend/package.nix index 3c8d4c8566f9a..3d7c5cb05c67f 100644 --- a/pkgs/by-name/zn/znapzend/package.nix +++ b/pkgs/by-name/zn/znapzend/package.nix @@ -70,14 +70,14 @@ stdenv.mkDerivation (finalAttrs: { $out/bin/znapzend --version ''; - meta = with lib; { + meta = { description = "High performance open source ZFS backup with mbuffer and ssh support"; homepage = "https://www.znapzend.org"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ otwieracz ma27 ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/zo/zod/package.nix b/pkgs/by-name/zo/zod/package.nix index 1c8dab9f3a30f..80b78c80f844a 100644 --- a/pkgs/by-name/zo/zod/package.nix +++ b/pkgs/by-name/zo/zod/package.nix @@ -128,11 +128,11 @@ symlinkJoin { zod_map_editor zod_assets ]; - meta = with lib; { + meta = { description = "Multiplayer remake of ZED"; homepage = "https://zod.sourceforge.net/"; - maintainers = with maintainers; [ zeri ]; - license = licenses.gpl3Plus; # Says the website - platforms = platforms.linux; + maintainers = with lib.maintainers; [ zeri ]; + license = lib.licenses.gpl3Plus; # Says the website + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/zo/zoneminder/package.nix b/pkgs/by-name/zo/zoneminder/package.nix index f58c5e7de804a..61be90ee540d4 100644 --- a/pkgs/by-name/zo/zoneminder/package.nix +++ b/pkgs/by-name/zo/zoneminder/package.nix @@ -241,11 +241,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.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/zo/zookeeper_mt/package.nix b/pkgs/by-name/zo/zookeeper_mt/package.nix index fcb0c9404a605..6e917397f8da3 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 d1eaaa815563b..4f1c9f4cc498b 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/zotero-translation-server/package.nix b/pkgs/by-name/zo/zotero-translation-server/package.nix index b6c5f45be9d74..9f182652f227e 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 rec { 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/zpix-pixel-font/package.nix b/pkgs/by-name/zp/zpix-pixel-font/package.nix index 26b429a1655b0..ae84e3fe2bd93 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 01d41d2e464ed..61428092985bb 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 3edc4b7b2594a..4a555cf46e1c3 100644 --- a/pkgs/by-name/zp/zpool-auto-expand-partitions/package.nix +++ b/pkgs/by-name/zp/zpool-auto-expand-partitions/package.nix @@ -42,11 +42,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; - maintainers = teams.determinatesystems.members; + license = lib.licenses.asl20; + maintainers = lib.teams.determinatesystems.members; mainProgram = "zpool_part_disks"; }; } diff --git a/pkgs/by-name/zp/zprint/package.nix b/pkgs/by-name/zp/zprint/package.nix index d1e41f5bb1f2e..49496aefbbe88 100644 --- a/pkgs/by-name/zp/zprint/package.nix +++ b/pkgs/by-name/zp/zprint/package.nix @@ -30,7 +30,7 @@ buildGraalvmNativeImage rec { command = "zprint --version"; }; - meta = with lib; { + meta = { description = "Clojure/EDN source code formatter and pretty printer"; longDescription = '' Library and command line tool providing a variety of pretty printing capabilities @@ -38,8 +38,8 @@ buildGraalvmNativeImage rec { As such, it supports a number of major source code formatting approaches ''; homepage = "https://github.com/kkinnear/zprint"; - license = licenses.mit; - maintainers = with maintainers; [ stelcodes ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ stelcodes ]; mainProgram = "zprint"; }; } diff --git a/pkgs/by-name/zr/zram-generator/package.nix b/pkgs/by-name/zr/zram-generator/package.nix index d92690792bba6..4ed5c5940532a 100644 --- a/pkgs/by-name/zr/zram-generator/package.nix +++ b/pkgs/by-name/zr/zram-generator/package.nix @@ -68,10 +68,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 7748db7cf4846..220b1df2c816f 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 7211f4448283f..d0655101ed8bb 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 ed04b8a7852b2..0d846efc56e51 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 cb54d4a83321c..59013a742787b 100644 --- a/pkgs/by-name/zs/zsa-udev-rules/package.nix +++ b/pkgs/by-name/zs/zsa-udev-rules/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { 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 f52784ea8676c..cfd63499caa17 100644 --- a/pkgs/by-name/zs/zscroll/package.nix +++ b/pkgs/by-name/zs/zscroll/package.nix @@ -23,11 +23,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-autocomplete/package.nix b/pkgs/by-name/zs/zsh-autocomplete/package.nix index 286b7174b715a..e7cd98cd0307f 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-autoenv/package.nix b/pkgs/by-name/zs/zsh-autoenv/package.nix index 4242b74f4cf8d..2a44a83303df1 100644 --- a/pkgs/by-name/zs/zsh-autoenv/package.nix +++ b/pkgs/by-name/zs/zsh-autoenv/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation { chmod +x $out/bin/zsh-autoenv-share ''; - meta = with lib; { + meta = { description = "Automatically sources whitelisted .autoenv.zsh files"; longDescription = '' zsh-autoenv automatically sources (known/whitelisted) diff --git a/pkgs/by-name/zs/zsh-autopair/package.nix b/pkgs/by-name/zs/zsh-autopair/package.nix index 8b0cfd6ed5232..7cf5068c13635 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-better-npm-completion/package.nix b/pkgs/by-name/zs/zsh-better-npm-completion/package.nix index fd9e87b677226..7df419d78ae8d 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 rec { 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-command-time/package.nix b/pkgs/by-name/zs/zsh-command-time/package.nix index 957ab9b352b3b..bfb95f2cf0cb1 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 b256e19d539dd..09f4a1f806131 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 rec { 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 4d7924ac186f5..d3a53ed6b8906 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 be92c8e667d84..0277b290a2cbc 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 7daf234f0102d..627f42c3310a1 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 9dc1681fc3dab..200de3b754e36 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 51ffd564d8f24..12abdf0085134 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 e291025f6ee1a..e41eeec715ddc 100644 --- a/pkgs/by-name/zs/zsh-history-substring-search/package.nix +++ b/pkgs/by-name/zs/zsh-history-substring-search/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { "$out/share/zsh-history-substring-search/zsh-history-substring-search.zsh" ''; - 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 bbd6ee4b8c252..1feb96185c9e1 100644 --- a/pkgs/by-name/zs/zsh-history-to-fish/package.nix +++ b/pkgs/by-name/zs/zsh-history-to-fish/package.nix @@ -32,11 +32,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-history/package.nix b/pkgs/by-name/zs/zsh-history/package.nix index 2d8b12bc35c7d..5f72b1b1e210d 100644 --- a/pkgs/by-name/zs/zsh-history/package.nix +++ b/pkgs/by-name/zs/zsh-history/package.nix @@ -33,10 +33,10 @@ buildGoModule rec { zsh-history-shell-integration = nixosTests.zsh-history; }; - meta = with lib; { + meta = { description = "CLI to provide enhanced history for your ZSH shell"; homepage = "https://github.com/b4b4r07/history"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "history"; }; diff --git a/pkgs/by-name/zs/zsh-navigation-tools/package.nix b/pkgs/by-name/zs/zsh-navigation-tools/package.nix index e208c65891d26..66f2c1bbc8010 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 243c35949fd01..562ff8a992e6e 100644 --- a/pkgs/by-name/zs/zsh-nix-shell/package.nix +++ b/pkgs/by-name/zs/zsh-nix-shell/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { install -D scripts/* --target-directory=$out/share/zsh-nix-shell/scripts ''; - 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 34a8f6edd2596..d7f95f93cc902 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 rec { 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 rec { 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 dba2adb6c37d5..1ab953da8b9c0 100644 --- a/pkgs/by-name/zs/zsh-syntax-highlighting/package.nix +++ b/pkgs/by-name/zs/zsh-syntax-highlighting/package.nix @@ -23,12 +23,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 ae389956037ec..dd636f34387f3 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 f10473fab229e..d4ccb70f28f18 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/${pname}/ ''; - 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 84efc5ee2ba1e..66ba14a9f715e 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 rec { 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/zstxtns-utils/package.nix b/pkgs/by-name/zs/zstxtns-utils/package.nix index fce8532a0fe45..24905e34e2893 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 3b4cef67f5e18..d5610312d5467 100644 --- a/pkgs/by-name/zt/zthrottle/package.nix +++ b/pkgs/by-name/zt/zthrottle/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { 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/zug/package.nix b/pkgs/by-name/zu/zug/package.nix index 5b66fadc505be..790098849489d 100644 --- a/pkgs/by-name/zu/zug/package.nix +++ b/pkgs/by-name/zu/zug/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { preConfigure = '' rm BUILD ''; - meta = with lib; { + meta = { homepage = "https://github.com/arximboldi/zug"; description = "library for functional interactive c++ programs"; - maintainers = with maintainers; [ nek0 ]; - license = licenses.boost; + maintainers = with lib.maintainers; [ nek0 ]; + license = lib.licenses.boost; }; } diff --git a/pkgs/by-name/zu/zuki-themes/package.nix b/pkgs/by-name/zu/zuki-themes/package.nix index 03a99c4e3f28c..e6c57591183d6 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/zuo/package.nix b/pkgs/by-name/zu/zuo/package.nix index 00b4ece29cd2e..13d1941da64c6 100644 --- a/pkgs/by-name/zu/zuo/package.nix +++ b/pkgs/by-name/zu/zuo/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Tiny Racket for Scripting"; mainProgram = "zuo"; homepage = "https://github.com/racket/zuo"; - license = licenses.mit; - platforms = platforms.all; + license = lib.licenses.mit; + platforms = lib.platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/zx/zxcvbn-c/package.nix b/pkgs/by-name/zx/zxcvbn-c/package.nix index 3fc9d2ae50905..f0f4cc2af1f12 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/zz/zzuf/package.nix b/pkgs/by-name/zz/zzuf/package.nix index 4b68cb601489f..711b55a7bd714 100644 --- a/pkgs/by-name/zz/zzuf/package.nix +++ b/pkgs/by-name/zz/zzuf/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { autoreconfHook ]; - meta = with lib; { + meta = { description = "Transparent application input fuzzer"; homepage = "http://caca.zoy.org/wiki/zzuf"; - license = licenses.wtfpl; - platforms = platforms.linux; - maintainers = with maintainers; [ lihop ]; + license = lib.licenses.wtfpl; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ lihop ]; }; } diff --git a/pkgs/data/fonts/emojione/default.nix b/pkgs/data/fonts/emojione/default.nix index d46325f6a81c7..8456807f3db62 100644 --- a/pkgs/data/fonts/emojione/default.nix +++ b/pkgs/data/fonts/emojione/default.nix @@ -57,10 +57,10 @@ stdenv.mkDerivation rec { install -Dm755 build/EmojiOneColor-SVGinOT.ttf $out/share/fonts/truetype/EmojiOneColor-SVGinOT.ttf ''; - meta = with lib; { + meta = { description = "Open source emoji set"; homepage = "http://emojione.com/"; - license = licenses.cc-by-40; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.cc-by-40; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/data/fonts/font-awesome/default.nix b/pkgs/data/fonts/font-awesome/default.nix index fe48972b0573a..fb17ca71544ef 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 52974e657f9d9..022b3de6fa3bf 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/openmoji/default.nix b/pkgs/data/fonts/openmoji/default.nix index 5c9e54611545a..b7ff41aaf5630 100644 --- a/pkgs/data/fonts/openmoji/default.nix +++ b/pkgs/data/fonts/openmoji/default.nix @@ -96,13 +96,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 b51de3cfd627e..bb0d2287a1983 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/default.nix b/pkgs/data/fonts/tex-gyre/default.nix index a0b7b01cff6be..bc6a7a0336f3f 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/beauty-line-icon-theme/default.nix b/pkgs/data/icons/beauty-line-icon-theme/default.nix index d1bea8dfd6bdf..7d1fd54da591e 100644 --- a/pkgs/data/icons/beauty-line-icon-theme/default.nix +++ b/pkgs/data/icons/beauty-line-icon-theme/default.nix @@ -58,11 +58,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "BeautyLine icon theme"; homepage = "https://www.gnome-look.org/p/1425426/"; - platforms = platforms.linux; - license = [ licenses.publicDomain ]; - maintainers = with maintainers; [ gvolpe ]; + platforms = lib.platforms.linux; + license = [ lib.licenses.publicDomain ]; + maintainers = with lib.maintainers; [ gvolpe ]; }; } diff --git a/pkgs/data/icons/bibata-cursors/translucent.nix b/pkgs/data/icons/bibata-cursors/translucent.nix index ac7e8c2ce6778..3938bbb853cbe 100644 --- a/pkgs/data/icons/bibata-cursors/translucent.nix +++ b/pkgs/data/icons/bibata-cursors/translucent.nix @@ -20,11 +20,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; - maintainers = with maintainers; [ AdsonCicilioti ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ AdsonCicilioti ]; }; } diff --git a/pkgs/data/icons/flat-remix-icon-theme/default.nix b/pkgs/data/icons/flat-remix-icon-theme/default.nix index ad9d166a5a6b2..402502e3a02c4 100644 --- a/pkgs/data/icons/flat-remix-icon-theme/default.nix +++ b/pkgs/data/icons/flat-remix-icon-theme/default.nix @@ -45,12 +45,12 @@ stdenvNoCC.mkDerivation rec { recordPropagatedDependencies ''; - meta = with lib; { + meta = { description = "Flat remix is a pretty simple icon theme inspired on material design"; homepage = "https://drasite.com/flat-remix"; - license = with licenses; [ gpl3Only ]; + license = with lib.licenses; [ gpl3Only ]; # breeze-icons and pantheon.elementary-icon-theme dependencies are restricted to linux - platforms = platforms.linux; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/data/icons/gruppled-cursors/default.nix b/pkgs/data/icons/gruppled-cursors/default.nix index 4a223fc67d339..f03313de4e77e 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 bd564ea565c19..9b1b6b0733027 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/icons/gruvbox-dark-icons-gtk/default.nix b/pkgs/data/icons/gruvbox-dark-icons-gtk/default.nix index ad03691639dac..306d9886e9f9c 100644 --- a/pkgs/data/icons/gruvbox-dark-icons-gtk/default.nix +++ b/pkgs/data/icons/gruvbox-dark-icons-gtk/default.nix @@ -36,11 +36,11 @@ stdenvNoCC.mkDerivation rec { dontDropIconThemeCache = true; - meta = with lib; { + meta = { description = "Gruvbox icons 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/data/icons/la-capitaine-icon-theme/default.nix b/pkgs/data/icons/la-capitaine-icon-theme/default.nix index 6b215636bffbe..93f1ab41d984e 100644 --- a/pkgs/data/icons/la-capitaine-icon-theme/default.nix +++ b/pkgs/data/icons/la-capitaine-icon-theme/default.nix @@ -43,14 +43,14 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Icon theme inspired by macOS and Google's Material Design"; homepage = "https://github.com/keeferrourke/la-capitaine-icon-theme"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus mit ]; - platforms = platforms.linux; - maintainers = with maintainers; [ romildo ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/data/icons/maia-icon-theme/default.nix b/pkgs/data/icons/maia-icon-theme/default.nix index e0558ce70c38b..618109efdf6cb 100644 --- a/pkgs/data/icons/maia-icon-theme/default.nix +++ b/pkgs/data/icons/maia-icon-theme/default.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation { done ''; - meta = with lib; { + meta = { description = "Icons based on Breeze and Super Flat Remix"; homepage = "https://gitlab.manjaro.org/artwork/themes/maia"; - license = licenses.lgpl3; - maintainers = with maintainers; [ mounium ]; - platforms = platforms.all; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ mounium ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/data/icons/numix-icon-theme/default.nix b/pkgs/data/icons/numix-icon-theme/default.nix index 262f5dadc457c..b45a7ce9aa72a 100644 --- a/pkgs/data/icons/numix-icon-theme/default.nix +++ b/pkgs/data/icons/numix-icon-theme/default.nix @@ -51,12 +51,12 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Numix icon theme"; 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/data/icons/papirus-maia-icon-theme/default.nix b/pkgs/data/icons/papirus-maia-icon-theme/default.nix index 3375f5668da87..4bb9f5b3ef6c3 100644 --- a/pkgs/data/icons/papirus-maia-icon-theme/default.nix +++ b/pkgs/data/icons/papirus-maia-icon-theme/default.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Manjaro variation of Papirus icon theme"; homepage = "https://github.com/Ste74/papirus-maia-icon-theme"; - license = licenses.lgpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ romildo ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/data/icons/tango-icon-theme/default.nix b/pkgs/data/icons/tango-icon-theme/default.nix index 5d9a4883b7ba0..dfc4fd52af137 100644 --- a/pkgs/data/icons/tango-icon-theme/default.nix +++ b/pkgs/data/icons/tango-icon-theme/default.nix @@ -44,10 +44,10 @@ stdenv.mkDerivation rec { postInstall = '''${gtk.out}/bin/gtk-update-icon-cache' "$out/share/icons/Tango" ''; - meta = with lib; { + meta = { description = "Basic set of icons"; homepage = "https://tango.freedesktop.org/Tango_Icon_Library"; - platforms = platforms.linux; - license = licenses.publicDomain; + platforms = lib.platforms.linux; + license = lib.licenses.publicDomain; }; } diff --git a/pkgs/data/icons/tela-circle-icon-theme/default.nix b/pkgs/data/icons/tela-circle-icon-theme/default.nix index db58831f06240..0286fcbd179e0 100644 --- a/pkgs/data/icons/tela-circle-icon-theme/default.nix +++ b/pkgs/data/icons/tela-circle-icon-theme/default.nix @@ -84,11 +84,11 @@ lib.checkListOfEnum "${pname}: color variants" passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Flat and colorful personality icon theme"; homepage = "https://github.com/vinceliuice/Tela-circle-icon-theme"; - license = licenses.gpl3Only; - platforms = platforms.linux; # darwin use case-insensitive filesystems that cause hash mismatches - maintainers = with maintainers; [ romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; # darwin use case-insensitive filesystems that cause hash mismatches + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/data/icons/zafiro-icons/default.nix b/pkgs/data/icons/zafiro-icons/default.nix index 44858afeb9e34..4f85ddf4a0e60 100644 --- a/pkgs/data/icons/zafiro-icons/default.nix +++ b/pkgs/data/icons/zafiro-icons/default.nix @@ -67,11 +67,11 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Icon pack flat with light colors"; homepage = "https://github.com/zayronxio/Zafiro-icons"; - license = with licenses; [ gpl3 ]; - platforms = platforms.linux; - maintainers = with maintainers; [ romildo ]; + license = with lib.licenses; [ gpl3 ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ romildo ]; }; } diff --git a/pkgs/data/misc/fedora-backgrounds/generic.nix b/pkgs/data/misc/fedora-backgrounds/generic.nix index dd75ea9e88b10..e3735865927eb 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/icons.nix b/pkgs/data/misc/nixos-artwork/icons.nix index 8a9ed3d40a847..93216e8c73e82 100644 --- a/pkgs/data/misc/nixos-artwork/icons.nix +++ b/pkgs/data/misc/nixos-artwork/icons.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Icons of the Nix logo, in Freedesktop Icon Directory Layout"; homepage = "https://github.com/NixOS/nixos-artwork"; - license = licenses.cc-by-40; + license = lib.licenses.cc-by-40; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/data/themes/adwaita-qt/default.nix b/pkgs/data/themes/adwaita-qt/default.nix index 704d49af1cb01..a6390a56184b8 100644 --- a/pkgs/data/themes/adwaita-qt/default.nix +++ b/pkgs/data/themes/adwaita-qt/default.nix @@ -64,11 +64,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/andromeda-gtk-theme/default.nix b/pkgs/data/themes/andromeda-gtk-theme/default.nix index da49e70adeba2..281c0eee0b579 100644 --- a/pkgs/data/themes/andromeda-gtk-theme/default.nix +++ b/pkgs/data/themes/andromeda-gtk-theme/default.nix @@ -56,12 +56,12 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Elegant dark theme for gnome, mate, budgie, cinnamon, xfce"; homepage = "https://github.com/EliverLara/Andromeda-gtk"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ jakedevs romildo ]; diff --git a/pkgs/data/themes/breath-theme/default.nix b/pkgs/data/themes/breath-theme/default.nix index 1c32065150994..29fb84f6f009d 100644 --- a/pkgs/data/themes/breath-theme/default.nix +++ b/pkgs/data/themes/breath-theme/default.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation { "-DBUILD_SDDM_THEME=ON" ]; - meta = with lib; { + meta = { description = "Manjaro KDE default theme"; homepage = "https://gitlab.manjaro.org/artwork/themes/breath"; - license = licenses.cc-by-sa-40; - maintainers = with maintainers; [ huantian ]; - platforms = platforms.linux; + license = lib.licenses.cc-by-sa-40; + maintainers = with lib.maintainers; [ huantian ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/data/themes/colloid-kde/default.nix b/pkgs/data/themes/colloid-kde/default.nix index ef620f4e32709..e3d9f4fe1c03c 100644 --- a/pkgs/data/themes/colloid-kde/default.nix +++ b/pkgs/data/themes/colloid-kde/default.nix @@ -67,11 +67,11 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Clean and concise theme for KDE Plasma desktop"; homepage = "https://github.com/vinceliuice/Colloid-kde-theme"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/data/themes/elegant-sddm/default.nix b/pkgs/data/themes/elegant-sddm/default.nix index c4d297884194f..218326feb8be7 100644 --- a/pkgs/data/themes/elegant-sddm/default.nix +++ b/pkgs/data/themes/elegant-sddm/default.nix @@ -59,10 +59,10 @@ stdenvNoCC.mkDerivation { echo ${qtgraphicaleffects} >> $out/nix-support/propagated-user-env-packages ''; - meta = with lib; { + meta = { description = "Sleek and stylish SDDM theme crafted in QML"; homepage = "https://github.com/surajmandalcell/Elegant-sddm"; - license = licenses.gpl3; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/data/themes/graphite-kde-theme/default.nix b/pkgs/data/themes/graphite-kde-theme/default.nix index 7d1d548f9031b..8f03b54549b22 100644 --- a/pkgs/data/themes/graphite-kde-theme/default.nix +++ b/pkgs/data/themes/graphite-kde-theme/default.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Flat Design theme for KDE Plasma desktop"; homepage = "https://github.com/vinceliuice/Graphite-kde-theme"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/data/themes/gtk-theme-framework/default.nix b/pkgs/data/themes/gtk-theme-framework/default.nix index 1ae655fe8c372..0becb6e5a1511 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/kde2/default.nix b/pkgs/data/themes/kde2/default.nix index 4eab649978119..8d33a05d0560e 100644 --- a/pkgs/data/themes/kde2/default.nix +++ b/pkgs/data/themes/kde2/default.nix @@ -36,11 +36,11 @@ mkDerivation rec { kdecoration ]; - meta = with lib; { + meta = { description = "KDE 2 window decoration ported to Plasma 5"; homepage = "https://github.com/repos-holder/kdecoration2-kde2"; - license = licenses.bsd2; - platforms = platforms.linux; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/data/themes/kwin-decorations/kde-rounded-corners/default.nix b/pkgs/data/themes/kwin-decorations/kde-rounded-corners/default.nix index 0139592031a54..1e74950718ca8 100644 --- a/pkgs/data/themes/kwin-decorations/kde-rounded-corners/default.nix +++ b/pkgs/data/themes/kwin-decorations/kde-rounded-corners/default.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation rec { 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/data/themes/layan-kde/default.nix b/pkgs/data/themes/layan-kde/default.nix index 2f08b5ccdcaa9..d2df62531ce46 100644 --- a/pkgs/data/themes/layan-kde/default.nix +++ b/pkgs/data/themes/layan-kde/default.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Flat Design theme for KDE Plasma desktop"; homepage = "https://github.com/vinceliuice/Layan-kde"; - license = licenses.gpl3Only; - platforms = platforms.all; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/data/themes/lightly-boehs/default.nix b/pkgs/data/themes/lightly-boehs/default.nix index 521736858752e..e15b8f05388b8 100644 --- a/pkgs/data/themes/lightly-boehs/default.nix +++ b/pkgs/data/themes/lightly-boehs/default.nix @@ -33,12 +33,12 @@ mkDerivation rec { extra-cmake-modules ]; - meta = with lib; { + meta = { description = "Fork of the Lightly breeze theme style that aims to be visually modern and minimalistic"; mainProgram = "lightly-settings5"; homepage = "https://github.com/boehs/Lightly"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.hikari ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.hikari ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/data/themes/lightly-qt/default.nix b/pkgs/data/themes/lightly-qt/default.nix index 6b6729c9cbb75..cd494ae40eefd 100644 --- a/pkgs/data/themes/lightly-qt/default.nix +++ b/pkgs/data/themes/lightly-qt/default.nix @@ -33,12 +33,12 @@ mkDerivation rec { extra-cmake-modules ]; - meta = with lib; { + meta = { description = "Fork of breeze theme style that aims to be visually modern and minimalistic"; mainProgram = "lightly-settings5"; homepage = "https://github.com/Luwx/Lightly"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.pwoelfel ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.pwoelfel ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/data/themes/material-kwin-decoration/default.nix b/pkgs/data/themes/material-kwin-decoration/default.nix index a32eb8766e46a..8f1eda512fbbc 100644 --- a/pkgs/data/themes/material-kwin-decoration/default.nix +++ b/pkgs/data/themes/material-kwin-decoration/default.nix @@ -56,10 +56,10 @@ mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Material-ish window decoration theme for KWin"; homepage = "https://github.com/Zren/material-decoration"; - license = licenses.gpl2; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/data/themes/plata/default.nix b/pkgs/data/themes/plata/default.nix index cdcd080e16570..aedc371505958 100644 --- a/pkgs/data/themes/plata/default.nix +++ b/pkgs/data/themes/plata/default.nix @@ -97,14 +97,14 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "GTK theme based on Material Design Refresh"; homepage = "https://gitlab.com/tista500/plata-theme"; - license = with licenses; [ + license = with lib.licenses; [ gpl2 cc-by-sa-40 ]; - platforms = platforms.linux; - maintainers = [ maintainers.tadfisher ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.tadfisher ]; }; } diff --git a/pkgs/data/themes/qtcurve/default.nix b/pkgs/data/themes/qtcurve/default.nix index dd2aaeed7d35e..54d386f1fc470 100644 --- a/pkgs/data/themes/qtcurve/default.nix +++ b/pkgs/data/themes/qtcurve/default.nix @@ -96,11 +96,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/data/themes/utterly-nord-plasma/default.nix b/pkgs/data/themes/utterly-nord-plasma/default.nix index b181ca18c5663..86d7271ed7682 100644 --- a/pkgs/data/themes/utterly-nord-plasma/default.nix +++ b/pkgs/data/themes/utterly-nord-plasma/default.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Plasma theme with Nordic Colors, transparency, blur and round edges for UI elements"; homepage = "https://himdek.com/Utterly-Nord-Plasma/"; - 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/desktops/deepin/apps/deepin-compressor/default.nix b/pkgs/desktops/deepin/apps/deepin-compressor/default.nix index 9d269f40ba0e4..15ce3121ab558 100644 --- a/pkgs/desktops/deepin/apps/deepin-compressor/default.nix +++ b/pkgs/desktops/deepin/apps/deepin-compressor/default.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { description = "Fast and lightweight application for creating and extracting archives"; mainProgram = "deepin-compressor"; homepage = "https://github.com/linuxdeepin/deepin-compressor"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/apps/deepin-reader/default.nix b/pkgs/desktops/deepin/apps/deepin-reader/default.nix index 44faf032a4b75..c8c534dee4e44 100644 --- a/pkgs/desktops/deepin/apps/deepin-reader/default.nix +++ b/pkgs/desktops/deepin/apps/deepin-reader/default.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation rec { qmakeFlags = [ "DEFINES+=VERSION=${version}" ]; - meta = with lib; { + meta = { description = "Simple memo software with texts and voice recordings"; mainProgram = "deepin-reader"; homepage = "https://github.com/linuxdeepin/deepin-reader"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/apps/deepin-screensaver/default.nix b/pkgs/desktops/deepin/apps/deepin-screensaver/default.nix index 2692f445c08ee..58e4d612f4a76 100644 --- a/pkgs/desktops/deepin/apps/deepin-screensaver/default.nix +++ b/pkgs/desktops/deepin/apps/deepin-screensaver/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { "COMPILE_ON_V23=true" ]; - meta = with lib; { + meta = { description = "Screensaver service developed by deepin"; mainProgram = "deepin-screensaver"; homepage = "https://github.com/linuxdeepin/deepin-screensaver"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/apps/deepin-shortcut-viewer/default.nix b/pkgs/desktops/deepin/apps/deepin-shortcut-viewer/default.nix index 540d9d5f1fd7c..c978a5e377d42 100644 --- a/pkgs/desktops/deepin/apps/deepin-shortcut-viewer/default.nix +++ b/pkgs/desktops/deepin/apps/deepin-shortcut-viewer/default.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Deepin Shortcut Viewer"; mainProgram = "deepin-shortcut-viewer"; homepage = "https://github.com/linuxdeepin/deepin-shortcut-viewer"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/apps/deepin-system-monitor/default.nix b/pkgs/desktops/deepin/apps/deepin-system-monitor/default.nix index 97ee4c8ba8f1d..b2999977eb6c5 100644 --- a/pkgs/desktops/deepin/apps/deepin-system-monitor/default.nix +++ b/pkgs/desktops/deepin/apps/deepin-system-monitor/default.nix @@ -84,11 +84,11 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { description = "More user-friendly system monitor"; homepage = "https://github.com/linuxdeepin/deepin-system-monitor"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/artwork/dde-account-faces/default.nix b/pkgs/desktops/deepin/artwork/dde-account-faces/default.nix index 33dffba91c959..94ad536caa85c 100644 --- a/pkgs/desktops/deepin/artwork/dde-account-faces/default.nix +++ b/pkgs/desktops/deepin/artwork/dde-account-faces/default.nix @@ -17,14 +17,14 @@ stdenvNoCC.mkDerivation rec { makeFlags = [ "PREFIX=${placeholder "out"}/var" ]; - meta = with lib; { + meta = { description = "Account faces of deepin desktop environment"; homepage = "https://github.com/linuxdeepin/dde-account-faces"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus cc0 ]; - platforms = platforms.linux; - maintainers = teams.deepin.members; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/artwork/deepin-desktop-theme/default.nix b/pkgs/desktops/deepin/artwork/deepin-desktop-theme/default.nix index 7dfc41fe8f0df..83ae4ebe991de 100644 --- a/pkgs/desktops/deepin/artwork/deepin-desktop-theme/default.nix +++ b/pkgs/desktops/deepin/artwork/deepin-desktop-theme/default.nix @@ -45,14 +45,14 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Provides a variety of well-designed theme resources"; homepage = "https://github.com/linuxdeepin/deepin-desktop-theme"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus cc-by-sa-40 ]; - platforms = platforms.linux; - maintainers = teams.deepin.members; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/artwork/deepin-gtk-theme/default.nix b/pkgs/desktops/deepin/artwork/deepin-gtk-theme/default.nix index 6405a95cd55d0..fbeea82187a59 100644 --- a/pkgs/desktops/deepin/artwork/deepin-gtk-theme/default.nix +++ b/pkgs/desktops/deepin/artwork/deepin-gtk-theme/default.nix @@ -20,11 +20,11 @@ stdenvNoCC.mkDerivation rec { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Deepin GTK Theme"; homepage = "https://github.com/linuxdeepin/deepin-gtk-theme"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/artwork/deepin-icon-theme/default.nix b/pkgs/desktops/deepin/artwork/deepin-icon-theme/default.nix index 2f15e0f1f195f..d6dfe29ed0e16 100644 --- a/pkgs/desktops/deepin/artwork/deepin-icon-theme/default.nix +++ b/pkgs/desktops/deepin/artwork/deepin-icon-theme/default.nix @@ -35,11 +35,11 @@ stdenvNoCC.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Provides the base icon themes on deepin"; homepage = "https://github.com/linuxdeepin/deepin-icon-theme"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/artwork/deepin-sound-theme/default.nix b/pkgs/desktops/deepin/artwork/deepin-sound-theme/default.nix index 79e2f15716b16..f8644d34e7ac3 100644 --- a/pkgs/desktops/deepin/artwork/deepin-sound-theme/default.nix +++ b/pkgs/desktops/deepin/artwork/deepin-sound-theme/default.nix @@ -17,11 +17,11 @@ stdenvNoCC.mkDerivation rec { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { description = "Freedesktop sound theme for Deepin"; homepage = "https://github.com/linuxdeepin/deepin-sound-theme"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/artwork/deepin-wallpapers/default.nix b/pkgs/desktops/deepin/artwork/deepin-wallpapers/default.nix index c472244adf2a8..a230e7f5fe57f 100644 --- a/pkgs/desktops/deepin/artwork/deepin-wallpapers/default.nix +++ b/pkgs/desktops/deepin/artwork/deepin-wallpapers/default.nix @@ -34,14 +34,14 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "deepin-wallpapers provides wallpapers of dde"; homepage = "https://github.com/linuxdeepin/deepin-wallpapers"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus cc-by-sa-30 ]; - platforms = platforms.linux; - maintainers = teams.deepin.members; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-app-services/default.nix b/pkgs/desktops/deepin/core/dde-app-services/default.nix index 711e3e9f93018..d00dc8d3312a9 100644 --- a/pkgs/desktops/deepin/core/dde-app-services/default.nix +++ b/pkgs/desktops/deepin/core/dde-app-services/default.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { export QT_PLUGIN_PATH=${libsForQt5.qtbase.bin}/${libsForQt5.qtbase.qtPluginPrefix} ''; - meta = with lib; { + meta = { description = "Provids dbus service for reading and writing DSG configuration"; homepage = "https://github.com/linuxdeepin/dde-app-services"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-appearance/default.nix b/pkgs/desktops/deepin/core/dde-appearance/default.nix index ca391f0379c27..deacbe8d3b577 100644 --- a/pkgs/desktops/deepin/core/dde-appearance/default.nix +++ b/pkgs/desktops/deepin/core/dde-appearance/default.nix @@ -66,11 +66,11 @@ stdenv.mkDerivation rec { "-DSYSTEMD_USER_UNIT_DIR=${placeholder "out"}/lib/systemd/user" ]; - meta = with lib; { + meta = { description = "Program used to set the theme and appearance of deepin desktop"; homepage = "https://github.com/linuxdeepin/dde-appearance"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-application-manager/default.nix b/pkgs/desktops/deepin/core/dde-application-manager/default.nix index cf1ae2d6dec36..02ef7b8866ea8 100644 --- a/pkgs/desktops/deepin/core/dde-application-manager/default.nix +++ b/pkgs/desktops/deepin/core/dde-application-manager/default.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { dtk6core ]; - meta = with lib; { + meta = { description = "Application manager for DDE"; mainProgram = "dde-application-manager"; homepage = "https://github.com/linuxdeepin/dde-application-manager"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-calendar/default.nix b/pkgs/desktops/deepin/core/dde-calendar/default.nix index 9dbbf0a966e6a..f2674e6b1766c 100644 --- a/pkgs/desktops/deepin/core/dde-calendar/default.nix +++ b/pkgs/desktops/deepin/core/dde-calendar/default.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { description = "Calendar for Deepin Desktop Environment"; mainProgram = "dde-calendar"; homepage = "https://github.com/linuxdeepin/dde-calendar"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-clipboard/default.nix b/pkgs/desktops/deepin/core/dde-clipboard/default.nix index 03fd59596732b..bd400c1521286 100644 --- a/pkgs/desktops/deepin/core/dde-clipboard/default.nix +++ b/pkgs/desktops/deepin/core/dde-clipboard/default.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DSYSTEMD_USER_UNIT_DIR=${placeholder "out"}/lib/systemd/user" ]; - meta = with lib; { + meta = { description = "DDE optional clipboard manager componment"; homepage = "https://github.com/linuxdeepin/dde-clipboard"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-file-manager/default.nix b/pkgs/desktops/deepin/core/dde-file-manager/default.nix index a0d91cbfd2621..0ee1c5b8efb4d 100644 --- a/pkgs/desktops/deepin/core/dde-file-manager/default.nix +++ b/pkgs/desktops/deepin/core/dde-file-manager/default.nix @@ -145,11 +145,11 @@ stdenv.mkDerivation rec { qtWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "File manager for deepin desktop environment"; homepage = "https://github.com/linuxdeepin/dde-file-manager"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-polkit-agent/default.nix b/pkgs/desktops/deepin/core/dde-polkit-agent/default.nix index cf83ed7350880..b26c38f3964d9 100644 --- a/pkgs/desktops/deepin/core/dde-polkit-agent/default.nix +++ b/pkgs/desktops/deepin/core/dde-polkit-agent/default.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { wrapQtApp $out/lib/polkit-1-dde/dde-polkit-agent ''; - meta = with lib; { + meta = { description = "PolicyKit agent for Deepin Desktop Environment"; homepage = "https://github.com/linuxdeepin/dde-polkit-agent"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-session-shell/default.nix b/pkgs/desktops/deepin/core/dde-session-shell/default.nix index 9d4e8a227878a..b189a5b04e229 100644 --- a/pkgs/desktops/deepin/core/dde-session-shell/default.nix +++ b/pkgs/desktops/deepin/core/dde-session-shell/default.nix @@ -100,11 +100,11 @@ stdenv.mkDerivation rec { } ]; - meta = with lib; { + meta = { description = "Deepin desktop-environment - session-shell module"; homepage = "https://github.com/linuxdeepin/dde-session-shell"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-session-ui/default.nix b/pkgs/desktops/deepin/core/dde-session-ui/default.nix index 1f1d9907ec167..7080a40f7944c 100644 --- a/pkgs/desktops/deepin/core/dde-session-ui/default.nix +++ b/pkgs/desktops/deepin/core/dde-session-ui/default.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Deepin desktop-environment - Session UI module"; homepage = "https://github.com/linuxdeepin/dde-session-ui"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-session/default.nix b/pkgs/desktops/deepin/core/dde-session/default.nix index a146f0c6747a2..af71f0096557d 100644 --- a/pkgs/desktops/deepin/core/dde-session/default.nix +++ b/pkgs/desktops/deepin/core/dde-session/default.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { # FIXME: dde-wayland always exits abnormally passthru.providedSessions = [ "dde-x11" ]; - meta = with lib; { + meta = { description = "New deepin session based on systemd and existing projects"; homepage = "https://github.com/linuxdeepin/dde-session"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-widgets/default.nix b/pkgs/desktops/deepin/core/dde-widgets/default.nix index a8a14938a661b..78fe573fe959c 100644 --- a/pkgs/desktops/deepin/core/dde-widgets/default.nix +++ b/pkgs/desktops/deepin/core/dde-widgets/default.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { gtest ]; - meta = with lib; { + meta = { description = "Desktop widgets service/implementation for DDE"; mainProgram = "dde-widgets"; homepage = "https://github.com/linuxdeepin/dde-widgets"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/deepin-service-manager/default.nix b/pkgs/desktops/deepin/core/deepin-service-manager/default.nix index b3deff9bf44f1..472b8ee5c3c10 100644 --- a/pkgs/desktops/deepin/core/deepin-service-manager/default.nix +++ b/pkgs/desktops/deepin/core/deepin-service-manager/default.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { libsForQt5.wrapQtAppsHook ]; - meta = with lib; { + meta = { description = "Manage DBus service on Deepin"; mainProgram = "deepin-service-manager"; homepage = "https://github.com/linuxdeepin/deepin-service-manager"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dpa-ext-gnomekeyring/default.nix b/pkgs/desktops/deepin/core/dpa-ext-gnomekeyring/default.nix index 30c9bf4576422..d3a90c9bcb776 100644 --- a/pkgs/desktops/deepin/core/dpa-ext-gnomekeyring/default.nix +++ b/pkgs/desktops/deepin/core/dpa-ext-gnomekeyring/default.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { libsecret ]; - meta = with lib; { + meta = { description = "GNOME keyring extension for dde-polkit-agent"; homepage = "https://github.com/linuxdeepin/dpa-ext-gnomekeyring"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/go-package/dde-api/default.nix b/pkgs/desktops/deepin/go-package/dde-api/default.nix index 512db885951d1..6a3fe11e8ea31 100644 --- a/pkgs/desktops/deepin/go-package/dde-api/default.nix +++ b/pkgs/desktops/deepin/go-package/dde-api/default.nix @@ -89,12 +89,12 @@ buildGoModule rec { done ''; - meta = with lib; { + meta = { description = "Dbus interfaces used for screen zone detecting, thumbnail generating, sound playing, etc"; mainProgram = "dde-open"; homepage = "https://github.com/linuxdeepin/dde-api"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/go-package/dde-daemon/default.nix b/pkgs/desktops/deepin/go-package/dde-daemon/default.nix index 44120eae4e5c9..0fdaa38116e29 100644 --- a/pkgs/desktops/deepin/go-package/dde-daemon/default.nix +++ b/pkgs/desktops/deepin/go-package/dde-daemon/default.nix @@ -151,11 +151,11 @@ buildGoModule rec { done ''; - meta = with lib; { + meta = { description = "Daemon for handling the deepin session settings"; homepage = "https://github.com/linuxdeepin/dde-daemon"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/go-package/deepin-pw-check/default.nix b/pkgs/desktops/deepin/go-package/deepin-pw-check/default.nix index b1ad7c0c4c9ea..2941fb2e67a4c 100644 --- a/pkgs/desktops/deepin/go-package/deepin-pw-check/default.nix +++ b/pkgs/desktops/deepin/go-package/deepin-pw-check/default.nix @@ -63,12 +63,12 @@ buildGoModule rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool to verify the validity of the password"; mainProgram = "pwd-conf-update"; homepage = "https://github.com/linuxdeepin/deepin-pw-check"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/go-package/startdde/default.nix b/pkgs/desktops/deepin/go-package/startdde/default.nix index 89f1602a1c7ac..22f393d3fd419 100644 --- a/pkgs/desktops/deepin/go-package/startdde/default.nix +++ b/pkgs/desktops/deepin/go-package/startdde/default.nix @@ -72,11 +72,11 @@ buildGoModule rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Starter of deepin desktop environment"; homepage = "https://github.com/linuxdeepin/startdde"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/deepin-pdfium/default.nix b/pkgs/desktops/deepin/library/deepin-pdfium/default.nix index 5d904914218dc..cb286567f2621 100644 --- a/pkgs/desktops/deepin/library/deepin-pdfium/default.nix +++ b/pkgs/desktops/deepin/library/deepin-pdfium/default.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { openjpeg ]; - meta = with lib; { + meta = { description = "Development library for PDF on deepin"; homepage = "https://github.com/linuxdeepin/deepin-pdfium"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/deepin-wayland-protocols/default.nix b/pkgs/desktops/deepin/library/deepin-wayland-protocols/default.nix index 839b02633af91..1f0497ab2fe21 100644 --- a/pkgs/desktops/deepin/library/deepin-wayland-protocols/default.nix +++ b/pkgs/desktops/deepin/library/deepin-wayland-protocols/default.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { extra-cmake-modules ]; - meta = with lib; { + meta = { description = "XML files of the non-standard wayland protocols use in deepin"; homepage = "https://github.com/linuxdeepin/deepin-wayland-protocols"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/disomaster/default.nix b/pkgs/desktops/deepin/library/disomaster/default.nix index d485fbb23f3b0..0896942793679 100644 --- a/pkgs/desktops/deepin/library/disomaster/default.nix +++ b/pkgs/desktops/deepin/library/disomaster/default.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { qmakeFlags = [ "VERSION=${version}" ]; - meta = with lib; { + meta = { description = "Libisoburn wrapper class for Qt"; homepage = "https://github.com/linuxdeepin/disomaster"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/dtkcommon/default.nix b/pkgs/desktops/deepin/library/dtkcommon/default.nix index b7f7523abb9f5..3602a97a58a63 100644 --- a/pkgs/desktops/deepin/library/dtkcommon/default.nix +++ b/pkgs/desktops/deepin/library/dtkcommon/default.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Public project for building DTK Library"; homepage = "https://github.com/linuxdeepin/dtkcommon"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/dtkcore/default.nix b/pkgs/desktops/deepin/library/dtkcore/default.nix index 980292bbf200c..28d70cb38c2c1 100644 --- a/pkgs/desktops/deepin/library/dtkcore/default.nix +++ b/pkgs/desktops/deepin/library/dtkcore/default.nix @@ -85,11 +85,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Deepin tool kit core library"; homepage = "https://github.com/linuxdeepin/dtkcore"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/dtkdeclarative/default.nix b/pkgs/desktops/deepin/library/dtkdeclarative/default.nix index 189fdc13b0756..a1162de60b54e 100644 --- a/pkgs/desktops/deepin/library/dtkdeclarative/default.nix +++ b/pkgs/desktops/deepin/library/dtkdeclarative/default.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { "doc" ]; - meta = with lib; { + meta = { description = "Widget development toolkit based on QtQuick/QtQml"; mainProgram = "dtk-exhibition"; homepage = "https://github.com/linuxdeepin/dtkdeclarative"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/dtkgui/default.nix b/pkgs/desktops/deepin/library/dtkgui/default.nix index 449a9d4156a14..e5ee4e5e8266e 100644 --- a/pkgs/desktops/deepin/library/dtkgui/default.nix +++ b/pkgs/desktops/deepin/library/dtkgui/default.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Deepin Toolkit, gui module for DDE look and feel"; homepage = "https://github.com/linuxdeepin/dtkgui"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/dtkwidget/default.nix b/pkgs/desktops/deepin/library/dtkwidget/default.nix index 56100bedbdb36..5cdd2eee2308e 100644 --- a/pkgs/desktops/deepin/library/dtkwidget/default.nix +++ b/pkgs/desktops/deepin/library/dtkwidget/default.nix @@ -81,11 +81,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Deepin graphical user interface library"; homepage = "https://github.com/linuxdeepin/dtkwidget"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/dwayland/default.nix b/pkgs/desktops/deepin/library/dwayland/default.nix index 32a385d9cef8c..52bdddfce5bb5 100644 --- a/pkgs/desktops/deepin/library/dwayland/default.nix +++ b/pkgs/desktops/deepin/library/dwayland/default.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { mkdir $out/include/KF5 ''; - meta = with lib; { + meta = { description = "Qt-style API to interact with the wayland-client and wayland-server"; homepage = "https://github.com/linuxdeepin/dwayland"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/gio-qt/default.nix b/pkgs/desktops/deepin/library/gio-qt/default.nix index af90a645f25fc..219614e01a5f4 100644 --- a/pkgs/desktops/deepin/library/gio-qt/default.nix +++ b/pkgs/desktops/deepin/library/gio-qt/default.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { export QT_PLUGIN_PATH=${libsForQt5.qtbase.bin}/${libsForQt5.qtbase.qtPluginPrefix} ''; - meta = with lib; { + meta = { description = "Gio wrapper for Qt applications"; homepage = "https://github.com/linuxdeepin/gio-qt"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/qt5integration/default.nix b/pkgs/desktops/deepin/library/qt5integration/default.nix index ccf8f6a4817d8..939e3eda0b098 100644 --- a/pkgs/desktops/deepin/library/qt5integration/default.nix +++ b/pkgs/desktops/deepin/library/qt5integration/default.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Qt platform theme integration plugins for DDE"; homepage = "https://github.com/linuxdeepin/qt5integration"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/qt5platform-plugins/default.nix b/pkgs/desktops/deepin/library/qt5platform-plugins/default.nix index fbf3879cf37b0..66bc14f057857 100644 --- a/pkgs/desktops/deepin/library/qt5platform-plugins/default.nix +++ b/pkgs/desktops/deepin/library/qt5platform-plugins/default.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Qt platform plugins for DDE"; homepage = "https://github.com/linuxdeepin/qt5platform-plugins"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/udisks2-qt5/default.nix b/pkgs/desktops/deepin/library/udisks2-qt5/default.nix index cdfbe3011c64f..6a966ae149d70 100644 --- a/pkgs/desktops/deepin/library/udisks2-qt5/default.nix +++ b/pkgs/desktops/deepin/library/udisks2-qt5/default.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { qmakeFlags = [ "VERSION=${version}" ]; - meta = with lib; { + meta = { description = "UDisks2 D-Bus interfaces binding for Qt5"; homepage = "https://github.com/linuxdeepin/udisks2-qt5"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/util-dfm/default.nix b/pkgs/desktops/deepin/library/util-dfm/default.nix index 5b298b8765ea8..ba71911770de6 100644 --- a/pkgs/desktops/deepin/library/util-dfm/default.nix +++ b/pkgs/desktops/deepin/library/util-dfm/default.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { "-DPROJECT_VERSION=${version}" ]; - meta = with lib; { + meta = { description = "Toolkits of libdfm-io,libdfm-mount and libdfm-burn"; homepage = "https://github.com/linuxdeepin/util-dfm"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/misc/deepin-desktop-base/default.nix b/pkgs/desktops/deepin/misc/deepin-desktop-base/default.nix index 197928a864073..2a06a1c7f0f78 100644 --- a/pkgs/desktops/deepin/misc/deepin-desktop-base/default.nix +++ b/pkgs/desktops/deepin/misc/deepin-desktop-base/default.nix @@ -37,14 +37,14 @@ stdenvNoCC.mkDerivation rec { EOF ''; - meta = with lib; { + meta = { description = "Base assets and definitions for Deepin Desktop Environment"; homepage = "https://github.com/linuxdeepin/deepin-desktop-base"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus cc-by-40 ]; - platforms = platforms.linux; - maintainers = teams.deepin.members; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/tools/deepin-gettext-tools/default.nix b/pkgs/desktops/deepin/tools/deepin-gettext-tools/default.nix index 7f2db77f45671..846050fa0f4c1 100644 --- a/pkgs/desktops/deepin/tools/deepin-gettext-tools/default.nix +++ b/pkgs/desktops/deepin/tools/deepin-gettext-tools/default.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/deepin-desktop-ts-convert --set PERL5LIB $PERL5LIB ''; - meta = with lib; { + meta = { description = "Translation file processing utils for DDE development"; homepage = "https://github.com/linuxdeepin/deepin-gettext-tools"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = teams.deepin.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.deepin.members; }; } diff --git a/pkgs/desktops/enlightenment/ecrire/default.nix b/pkgs/desktops/enlightenment/ecrire/default.nix index 20cedff0fc21f..e41ee51d68d87 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; - maintainers = teams.enlightenment.members; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = lib.teams.enlightenment.members; }; } diff --git a/pkgs/desktops/enlightenment/ephoto/default.nix b/pkgs/desktops/enlightenment/ephoto/default.nix index 7aba3c2c5b9fa..b8ed7bfa09065 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; - maintainers = teams.enlightenment.members; + license = lib.licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = lib.teams.enlightenment.members; }; } diff --git a/pkgs/desktops/enlightenment/evisum/default.nix b/pkgs/desktops/enlightenment/evisum/default.nix index 63e8ab41780bc..54930c7ca1b90 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; - maintainers = teams.enlightenment.members; + license = with lib.licenses; [ isc ]; + platforms = lib.platforms.linux; + maintainers = lib.teams.enlightenment.members; }; } diff --git a/pkgs/desktops/expidus/calculator/default.nix b/pkgs/desktops/expidus/calculator/default.nix index 528d77648b5f3..5d3fb1aff7098 100644 --- a/pkgs/desktops/expidus/calculator/default.nix +++ b/pkgs/desktops/expidus/calculator/default.nix @@ -43,11 +43,11 @@ flutter.buildFlutterApplication rec { --replace "Icon=com.expidusos.calculator" "Icon=$out/share/icons/com.expidusos.calculator.png" ''; - meta = with lib; { + meta = { 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 b32b84d109993..3a0d340f2b02b 100644 --- a/pkgs/desktops/expidus/file-manager/default.nix +++ b/pkgs/desktops/expidus/file-manager/default.nix @@ -43,11 +43,11 @@ flutter.buildFlutterApplication rec { --replace "Icon=com.expidusos.file_manager" "Icon=$out/share/icons/com.expidusos.file_manager.png" ''; - meta = with lib; { + meta = { 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 b2d6986e776ce..8f205195bd83f 100644 --- a/pkgs/desktops/gnome-2/platform/GConf/default.nix +++ b/pkgs/desktops/gnome-2/platform/GConf/default.nix @@ -58,9 +58,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/gtkglext/default.nix b/pkgs/desktops/gnome-2/platform/gtkglext/default.nix index c2632ec9e51b0..774f61814e3ab 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 rec { 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 rec { 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/EasyScreenCast/default.nix b/pkgs/desktops/gnome/extensions/EasyScreenCast/default.nix index 12d79cbbf9f4b..760f189c1601a 100644 --- a/pkgs/desktops/gnome/extensions/EasyScreenCast/default.nix +++ b/pkgs/desktops/gnome/extensions/EasyScreenCast/default.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.extensionUuid = "EasyScreenCast@iacopodeenosee.gmail.com"; - meta = with lib; { + meta = { description = "Simplifies the use of the video recording function integrated in gnome shell"; homepage = "https://github.com/EasyScreenCast/EasyScreenCast"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ doronbehar ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ doronbehar ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/desktops/gnome/extensions/arcmenu/default.nix b/pkgs/desktops/gnome/extensions/arcmenu/default.nix index 8fc92494caade..236a0bc0d2551 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 f74bfb6773d3c..ad63d0fdc4628 100644 --- a/pkgs/desktops/gnome/extensions/argos/default.nix +++ b/pkgs/desktops/gnome/extensions/argos/default.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { 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/drop-down-terminal/default.nix b/pkgs/desktops/gnome/extensions/drop-down-terminal/default.nix index d95679f601c5c..e9733f96fb508 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 rec { 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 d55f097134fab..18406b30778a8 100644 --- a/pkgs/desktops/gnome/extensions/icon-hider/default.nix +++ b/pkgs/desktops/gnome/extensions/icon-hider/default.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Icon Hider is a GNOME Shell extension for managing status area items"; - license = licenses.bsd3; - maintainers = with maintainers; [ ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ]; platforms = gnome-shell.meta.platforms; homepage = "https://github.com/ikalnytskyi/gnome-shell-extension-icon-hider"; - broken = versionAtLeast gnome-shell.version "3.32"; # Doesn't support 3.34 + broken = lib.versionAtLeast gnome-shell.version "3.32"; # Doesn't support 3.34 }; } diff --git a/pkgs/desktops/gnome/extensions/impatience/default.nix b/pkgs/desktops/gnome/extensions/impatience/default.nix index e9c1922175a0f..6db3ad093d25f 100644 --- a/pkgs/desktops/gnome/extensions/impatience/default.nix +++ b/pkgs/desktops/gnome/extensions/impatience/default.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation rec { 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 2e6d23855ba75..499ce79a8ac99 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/pidgin-im-integration/default.nix b/pkgs/desktops/gnome/extensions/pidgin-im-integration/default.nix index c46a1b7447c45..4a21f6c48c880 100644 --- a/pkgs/desktops/gnome/extensions/pidgin-im-integration/default.nix +++ b/pkgs/desktops/gnome/extensions/pidgin-im-integration/default.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { extensionPortalSlug = "pidgin-im-integration"; }; - meta = with lib; { + meta = { 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 + broken = lib.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 8419bf2a9f061..d6da8b8a088a3 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 rec { 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 d70d1bb1e0319..4175e31f0c57d 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 rec { 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 a11186dc0d3aa..420137c33ec07 100644 --- a/pkgs/desktops/gnome/extensions/systemd-manager/default.nix +++ b/pkgs/desktops/gnome/extensions/systemd-manager/default.nix @@ -56,11 +56,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 fc37e6875820c..17db1d85788e1 100644 --- a/pkgs/desktops/gnome/extensions/taskwhisperer/default.nix +++ b/pkgs/desktops/gnome/extensions/taskwhisperer/default.nix @@ -44,10 +44,10 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "GNOME Shell TaskWarrior GUI"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.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 516d85ce378e4..cf09a86334306 100644 --- a/pkgs/desktops/gnome/extensions/tilingnome/default.nix +++ b/pkgs/desktops/gnome/extensions/tilingnome/default.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { 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 b216a6ae451fc..42a6e85f8dff3 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/window-corner-preview/default.nix b/pkgs/desktops/gnome/extensions/window-corner-preview/default.nix index 82692ae90f42e..97e4420906673 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 rec { 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 c26a40c003dcc..bc4fec7b44e4f 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/gnustep/libobjc2/default.nix b/pkgs/desktops/gnustep/libobjc2/default.nix index 06e0b45095c08..e1c6976ba3649 100644 --- a/pkgs/desktops/gnustep/libobjc2/default.nix +++ b/pkgs/desktops/gnustep/libobjc2/default.nix @@ -23,16 +23,16 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ]; - meta = with lib; { + meta = { broken = stdenv.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 matthewbauer dblsaiko ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/desktops/lomiri/applications/lomiri-terminal-app/default.nix b/pkgs/desktops/lomiri/applications/lomiri-terminal-app/default.nix index 6701f56b35ec6..f8bce1aebc7c2 100644 --- a/pkgs/desktops/lomiri/applications/lomiri-terminal-app/default.nix +++ b/pkgs/desktops/lomiri/applications/lomiri-terminal-app/default.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Terminal app for desktop and mobile devices"; homepage = "https://gitlab.com/ubports/development/apps/lomiri-terminal-app"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "lomiri-terminal-app"; - maintainers = teams.lomiri.members; - platforms = platforms.linux; + maintainers = lib.teams.lomiri.members; + 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 e940bb1c03e6b..0685533c100d3 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 ]; - maintainers = teams.lomiri.members; - platforms = platforms.all; + maintainers = lib.teams.lomiri.members; + platforms = lib.platforms.all; pkgConfigModules = [ "lomiri-sounds" ]; diff --git a/pkgs/desktops/lomiri/development/cmake-extras/default.nix b/pkgs/desktops/lomiri/development/cmake-extras/default.nix index 21dc05dd12f46..78e6ff474ec76 100644 --- a/pkgs/desktops/lomiri/development/cmake-extras/default.nix +++ b/pkgs/desktops/lomiri/development/cmake-extras/default.nix @@ -40,11 +40,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { qtbase ]; - meta = with lib; { + meta = { description = "Collection of add-ons for the CMake build tool"; homepage = "https://gitlab.com/ubports/development/core/cmake-extras/"; - license = licenses.gpl3Only; - maintainers = teams.lomiri.members; - platforms = platforms.all; + license = lib.licenses.gpl3Only; + maintainers = lib.teams.lomiri.members; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/desktops/lomiri/development/gmenuharness/default.nix b/pkgs/desktops/lomiri/development/gmenuharness/default.nix index e9b4cca04120e..e48f524047be9 100644 --- a/pkgs/desktops/lomiri/development/gmenuharness/default.nix +++ b/pkgs/desktops/lomiri/development/gmenuharness/default.nix @@ -84,12 +84,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; - maintainers = teams.lomiri.members; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = lib.teams.lomiri.members; + 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 4cc4f3bb1feff..aa998a070218b 100644 --- a/pkgs/desktops/lomiri/development/qtmir/default.nix +++ b/pkgs/desktops/lomiri/development/qtmir/default.nix @@ -149,12 +149,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; - maintainers = teams.lomiri.members; - platforms = platforms.linux; + license = lib.licenses.lgpl3Only; + maintainers = lib.teams.lomiri.members; + 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 04b5bac0d6d2a..6a63d3dc523a0 100644 --- a/pkgs/desktops/lomiri/development/trust-store/default.nix +++ b/pkgs/desktops/lomiri/development/trust-store/default.nix @@ -129,12 +129,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; - maintainers = teams.lomiri.members; - platforms = platforms.linux; + license = lib.licenses.lgpl3Only; + maintainers = lib.teams.lomiri.members; + platforms = lib.platforms.linux; pkgConfigModules = [ "trust-store" ]; diff --git a/pkgs/desktops/lomiri/qml/lomiri-notifications/default.nix b/pkgs/desktops/lomiri/qml/lomiri-notifications/default.nix index 353eb1a30b86d..7dc88819897aa 100644 --- a/pkgs/desktops/lomiri/qml/lomiri-notifications/default.nix +++ b/pkgs/desktops/lomiri/qml/lomiri-notifications/default.nix @@ -85,11 +85,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Free Desktop Notification server QML implementation for Lomiri"; homepage = "https://gitlab.com/ubports/development/core/lomiri-notifications"; - license = licenses.gpl3Only; - maintainers = teams.lomiri.members; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = lib.teams.lomiri.members; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/desktops/lomiri/qml/lomiri-push-qml/default.nix b/pkgs/desktops/lomiri/qml/lomiri-push-qml/default.nix index 1482cb770efdf..19be58ed61de2 100644 --- a/pkgs/desktops/lomiri/qml/lomiri-push-qml/default.nix +++ b/pkgs/desktops/lomiri/qml/lomiri-push-qml/default.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation (finalAttrs: { export QT_PLUGIN_PATH=${lib.getBin qtbase}/${qtbase.qtPluginPrefix} ''; - 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; - maintainers = teams.lomiri.members; - platforms = platforms.linux; + license = lib.licenses.lgpl3Only; + maintainers = lib.teams.lomiri.members; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/desktops/lumina/lumina-calculator/default.nix b/pkgs/desktops/lumina/lumina-calculator/default.nix index 98ed2a4fadeb8..b121750015d95 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; - maintainers = teams.lumina.members; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = lib.teams.lumina.members; }; } diff --git a/pkgs/desktops/lumina/lumina-pdf/default.nix b/pkgs/desktops/lumina/lumina-pdf/default.nix index 04117d7f4cce4..28bf8748d9731 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; - maintainers = teams.lumina.members; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = lib.teams.lumina.members; }; } diff --git a/pkgs/desktops/lumina/lumina/default.nix b/pkgs/desktops/lumina/lumina/default.nix index 280885b07cae1..6c41f5b6fea94 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; - maintainers = teams.lumina.members; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = lib.teams.lumina.members; }; } diff --git a/pkgs/desktops/lxde/core/lxappearance/default.nix b/pkgs/desktops/lxde/core/lxappearance/default.nix index f7d297f0f423a..eeae4ad3b7bc7 100644 --- a/pkgs/desktops/lxde/core/lxappearance/default.nix +++ b/pkgs/desktops/lxde/core/lxappearance/default.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { configureFlags = lib.optional withGtk3 "--enable-gtk3"; - meta = with lib; { + meta = { description = "Lightweight program for configuring the theme and fonts of gtk applications"; mainProgram = "lxappearance"; homepage = "https://lxde.org/"; - 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/desktops/lxde/core/lxpanel/default.nix b/pkgs/desktops/lxde/core/lxpanel/default.nix index 9c47504405666..8ecfd1940bc69 100644 --- a/pkgs/desktops/lxde/core/lxpanel/default.nix +++ b/pkgs/desktops/lxde/core/lxpanel/default.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation rec { configureFlags = lib.optional withGtk3 "--enable-gtk3"; - meta = with lib; { + meta = { description = "Lightweight X11 desktop panel for LXDE"; homepage = "https://lxde.org/"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.ryneeverett ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.ryneeverett ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/desktops/lxde/core/lxrandr/default.nix b/pkgs/desktops/lxde/core/lxrandr/default.nix index 2e395e8c10faa..d650835b73ddf 100644 --- a/pkgs/desktops/lxde/core/lxrandr/default.nix +++ b/pkgs/desktops/lxde/core/lxrandr/default.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { (if withGtk3 then gtk3 else gtk2) ]; - meta = with lib; { + meta = { description = "Standard screen manager of LXDE"; mainProgram = "lxrandr"; homepage = "https://lxde.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ rawkode ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ rawkode ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/desktops/lxde/core/lxsession/default.nix b/pkgs/desktops/lxde/core/lxsession/default.nix index ab6b77429d9a5..a7d2ea1a2155e 100644 --- a/pkgs/desktops/lxde/core/lxsession/default.nix +++ b/pkgs/desktops/lxde/core/lxsession/default.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation rec { preConfigure = "./autogen.sh"; - meta = with lib; { + meta = { homepage = "https://wiki.lxde.org/en/LXSession"; description = "Classic LXDE session manager"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.shamilton ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.shamilton ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/desktops/lxde/core/lxtask/default.nix b/pkgs/desktops/lxde/core/lxtask/default.nix index c72f5ec607f98..ef18b1c472b00 100644 --- a/pkgs/desktops/lxde/core/lxtask/default.nix +++ b/pkgs/desktops/lxde/core/lxtask/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://lxde.sourceforge.net/"; description = "Lightweight and desktop independent task manager"; mainProgram = "lxtask"; @@ -47,8 +47,8 @@ stdenv.mkDerivation rec { Desktop Environment, it's totally desktop independent and only requires pure GTK. ''; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; } diff --git a/pkgs/desktops/lxqt/compton-conf/default.nix b/pkgs/desktops/lxqt/compton-conf/default.nix index 3db308a08c7c1..b9a2b5aaf9adb 100644 --- a/pkgs/desktops/lxqt/compton-conf/default.nix +++ b/pkgs/desktops/lxqt/compton-conf/default.nix @@ -45,13 +45,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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = with lib.platforms; unix; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/libdbusmenu-lxqt/default.nix b/pkgs/desktops/lxqt/libdbusmenu-lxqt/default.nix index 3c71e8d3268df..3402130fdce3c 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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = with lib.platforms; unix; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/libfm-qt/default.nix b/pkgs/desktops/lxqt/libfm-qt/default.nix index 734818687e4d7..4c27ca4cdfe74 100644 --- a/pkgs/desktops/lxqt/libfm-qt/default.nix +++ b/pkgs/desktops/lxqt/libfm-qt/default.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/libfm-qt"; description = "Core library of PCManFM-Qt (Qt binding for libfm)"; - license = licenses.lgpl21Plus; - platforms = with platforms; unix; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = with lib.platforms; unix; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/liblxqt/default.nix b/pkgs/desktops/lxqt/liblxqt/default.nix index 2e884006e2a78..1679574b4f5e7 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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/libqtxdg/default.nix b/pkgs/desktops/lxqt/libqtxdg/default.nix index 89ae2a9318658..94b6196d97dca 100644 --- a/pkgs/desktops/lxqt/libqtxdg/default.nix +++ b/pkgs/desktops/lxqt/libqtxdg/default.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/libqtxdg"; description = "Qt implementation of freedesktop.org xdg specs"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/libsysstat/default.nix b/pkgs/desktops/lxqt/libsysstat/default.nix index 2030d5579e32d..9a794cb37e710 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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = with lib.platforms; unix; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/lximage-qt/default.nix b/pkgs/desktops/lxqt/lximage-qt/default.nix index b7d7792aef091..b4da546ded7a4 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; - maintainers = teams.lxqt.members; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; unix; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/lxqt-about/default.nix b/pkgs/desktops/lxqt/lxqt-about/default.nix index 08103ae0f946a..e65036e91b6ed 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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/lxqt-admin/default.nix b/pkgs/desktops/lxqt/lxqt-admin/default.nix index 12fca14d95bf8..bc54f23e75b53 100644 --- a/pkgs/desktops/lxqt/lxqt-admin/default.nix +++ b/pkgs/desktops/lxqt/lxqt-admin/default.nix @@ -52,11 +52,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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/lxqt-build-tools/default.nix b/pkgs/desktops/lxqt/lxqt-build-tools/default.nix index 15c2a73c9f0f8..42e2def368de9 100644 --- a/pkgs/desktops/lxqt/lxqt-build-tools/default.nix +++ b/pkgs/desktops/lxqt/lxqt-build-tools/default.nix @@ -63,12 +63,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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = with lib.platforms; unix; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/lxqt-config/default.nix b/pkgs/desktops/lxqt/lxqt-config/default.nix index 4215ce43fde52..ca7f2f9e4c634 100644 --- a/pkgs/desktops/lxqt/lxqt-config/default.nix +++ b/pkgs/desktops/lxqt/lxqt-config/default.nix @@ -76,12 +76,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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/lxqt-globalkeys/default.nix b/pkgs/desktops/lxqt/lxqt-globalkeys/default.nix index 4e2cb1a8c705f..f42db68a1fefc 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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/lxqt-menu-data/default.nix b/pkgs/desktops/lxqt/lxqt-menu-data/default.nix index ccb89df6fd59f..a3308724123ad 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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/lxqt-notificationd/default.nix b/pkgs/desktops/lxqt/lxqt-notificationd/default.nix index df05f4664e66c..6f8d5fc5cb047 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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/lxqt-openssh-askpass/default.nix b/pkgs/desktops/lxqt/lxqt-openssh-askpass/default.nix index e496260b7fe4e..91cae26983d34 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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; mainProgram = "lxqt-openssh-askpass"; }; } diff --git a/pkgs/desktops/lxqt/lxqt-panel/default.nix b/pkgs/desktops/lxqt/lxqt-panel/default.nix index eed744d1c0151..17c733a02ba3f 100644 --- a/pkgs/desktops/lxqt/lxqt-panel/default.nix +++ b/pkgs/desktops/lxqt/lxqt-panel/default.nix @@ -82,12 +82,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-panel"; description = "LXQt desktop panel"; mainProgram = "lxqt-panel"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/lxqt-policykit/default.nix b/pkgs/desktops/lxqt/lxqt-policykit/default.nix index 5a632594dde5d..7199d4f096463 100644 --- a/pkgs/desktops/lxqt/lxqt-policykit/default.nix +++ b/pkgs/desktops/lxqt/lxqt-policykit/default.nix @@ -52,12 +52,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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/lxqt-powermanagement/default.nix b/pkgs/desktops/lxqt/lxqt-powermanagement/default.nix index f24d1d62f02e2..582041a313ca2 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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/lxqt-qtplugin/default.nix b/pkgs/desktops/lxqt/lxqt-qtplugin/default.nix index 7efceeb7dad8a..653d354ecb305 100644 --- a/pkgs/desktops/lxqt/lxqt-qtplugin/default.nix +++ b/pkgs/desktops/lxqt/lxqt-qtplugin/default.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/lxqt-qtplugin"; description = "LXQt Qt platform integration plugin"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/lxqt-runner/default.nix b/pkgs/desktops/lxqt/lxqt-runner/default.nix index 49bb815f1eb24..2ffc1bc1d0ac9 100644 --- a/pkgs/desktops/lxqt/lxqt-runner/default.nix +++ b/pkgs/desktops/lxqt/lxqt-runner/default.nix @@ -56,12 +56,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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/lxqt-session/default.nix b/pkgs/desktops/lxqt/lxqt-session/default.nix index e01b14f308888..b25d31f78edc6 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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/lxqt-sudo/default.nix b/pkgs/desktops/lxqt/lxqt-sudo/default.nix index 0db1cefbafb81..bb2580e9866e4 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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/lxqt-themes/default.nix b/pkgs/desktops/lxqt/lxqt-themes/default.nix index 0b90cbfd4a8f6..66604e13a81ce 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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/pcmanfm-qt/default.nix b/pkgs/desktops/lxqt/pcmanfm-qt/default.nix index 4b23fb6e37d55..625f104ad06f2 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; - maintainers = teams.lxqt.members; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; unix; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/qlipper/default.nix b/pkgs/desktops/lxqt/qlipper/default.nix index e958658f3c9c5..2f7c58dfaa5ce 100644 --- a/pkgs/desktops/lxqt/qlipper/default.nix +++ b/pkgs/desktops/lxqt/qlipper/default.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "Cross-platform clipboard history applet"; mainProgram = "qlipper"; homepage = "https://github.com/pvanek/qlipper"; - license = licenses.gpl2Plus; - platforms = with platforms; unix; - maintainers = teams.lxqt.members; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; unix; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/qps/default.nix b/pkgs/desktops/lxqt/qps/default.nix index ea9da54dfb64a..bbfb3e2db04ba 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 - maintainers = teams.lxqt.members; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; linux; # does not build on darwin + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/qtermwidget/default.nix b/pkgs/desktops/lxqt/qtermwidget/default.nix index ac06cab1d0539..ace6b84d0b831 100644 --- a/pkgs/desktops/lxqt/qtermwidget/default.nix +++ b/pkgs/desktops/lxqt/qtermwidget/default.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - 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; - maintainers = teams.lxqt.members; + license = lib.licenses.gpl2Plus; + platforms = with lib.platforms; unix; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/qtxdg-tools/default.nix b/pkgs/desktops/lxqt/qtxdg-tools/default.nix index 8971a3aa1fe00..6389ecc1ff5d5 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; - maintainers = teams.lxqt.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/screengrab/default.nix b/pkgs/desktops/lxqt/screengrab/default.nix index ac14483f1cea5..95565ed1e1c63 100644 --- a/pkgs/desktops/lxqt/screengrab/default.nix +++ b/pkgs/desktops/lxqt/screengrab/default.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/screengrab"; description = "Crossplatform tool for fast making screenshots"; mainProgram = "screengrab"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = teams.lxqt.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/xdg-desktop-portal-lxqt/default.nix b/pkgs/desktops/lxqt/xdg-desktop-portal-lxqt/default.nix index 1f31a200f7a7e..4cd7edc2267a9 100644 --- a/pkgs/desktops/lxqt/xdg-desktop-portal-lxqt/default.nix +++ b/pkgs/desktops/lxqt/xdg-desktop-portal-lxqt/default.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { homepage = "https://github.com/lxqt/xdg-desktop-portal-lxqt"; description = "Backend implementation for xdg-desktop-portal that is using Qt/KF5/libfm-qt"; - 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/desktops/mate/atril/default.nix b/pkgs/desktops/mate/atril/default.nix index f457772b4d2dc..08f79df250104 100644 --- a/pkgs/desktops/mate/atril/default.nix +++ b/pkgs/desktops/mate/atril/default.nix @@ -78,11 +78,11 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - 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; - maintainers = teams.mate.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/caja-dropbox/default.nix b/pkgs/desktops/mate/caja-dropbox/default.nix index 00ee318983763..b675dd14dfcb2 100644 --- a/pkgs/desktops/mate/caja-dropbox/default.nix +++ b/pkgs/desktops/mate/caja-dropbox/default.nix @@ -58,14 +58,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; - maintainers = teams.mate.members; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/caja-extensions/default.nix b/pkgs/desktops/mate/caja-extensions/default.nix index f51e57229436a..6319c97cc444a 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; - maintainers = teams.mate.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/caja/default.nix b/pkgs/desktops/mate/caja/default.nix index b39f302274a33..d46c99b41cada 100644 --- a/pkgs/desktops/mate/caja/default.nix +++ b/pkgs/desktops/mate/caja/default.nix @@ -50,14 +50,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; - maintainers = teams.mate.members; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/engrampa/default.nix b/pkgs/desktops/mate/engrampa/default.nix index 2b7f8a266dd70..9ec37dbe91ae7 100644 --- a/pkgs/desktops/mate/engrampa/default.nix +++ b/pkgs/desktops/mate/engrampa/default.nix @@ -59,16 +59,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; - maintainers = teams.mate.members; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/eom/default.nix b/pkgs/desktops/mate/eom/default.nix index 01566f483a6b9..c37d0175e271e 100644 --- a/pkgs/desktops/mate/eom/default.nix +++ b/pkgs/desktops/mate/eom/default.nix @@ -54,12 +54,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; - maintainers = teams.mate.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/libmatekbd/default.nix b/pkgs/desktops/mate/libmatekbd/default.nix index c63ecc5b02505..91578d1e3bb18 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; - maintainers = teams.mate.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/libmatemixer/default.nix b/pkgs/desktops/mate/libmatemixer/default.nix index c5d1f280eaf94..cd6da01cf1f30 100644 --- a/pkgs/desktops/mate/libmatemixer/default.nix +++ b/pkgs/desktops/mate/libmatemixer/default.nix @@ -47,11 +47,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; - maintainers = teams.mate.members; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/libmateweather/default.nix b/pkgs/desktops/mate/libmateweather/default.nix index d65549ba123a8..11eb2a8ec7589 100644 --- a/pkgs/desktops/mate/libmateweather/default.nix +++ b/pkgs/desktops/mate/libmateweather/default.nix @@ -53,11 +53,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; - maintainers = teams.mate.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/marco/default.nix b/pkgs/desktops/mate/marco/default.nix index 69afbe4625e66..3ae8568bea5a1 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; - maintainers = teams.mate.members; + license = [ lib.licenses.gpl2Plus ]; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-applets/default.nix b/pkgs/desktops/mate/mate-applets/default.nix index 4b58224535f46..3cd06c3b5c57e 100644 --- a/pkgs/desktops/mate/mate-applets/default.nix +++ b/pkgs/desktops/mate/mate-applets/default.nix @@ -70,15 +70,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; - maintainers = teams.mate.members; + platforms = lib.platforms.linux; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-backgrounds/default.nix b/pkgs/desktops/mate/mate-backgrounds/default.nix index 191c74b32325f..da50500314316 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; - maintainers = teams.mate.members; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-calc/default.nix b/pkgs/desktops/mate/mate-calc/default.nix index 96cf3ec8394e6..1b7df3a89e1a0 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; - maintainers = teams.mate.members; + license = [ lib.licenses.gpl2Plus ]; + platforms = lib.platforms.linux; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-common/default.nix b/pkgs/desktops/mate/mate-common/default.nix index ece5fbc9b47a0..1ce629fdc20a6 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; - maintainers = teams.mate.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-control-center/default.nix b/pkgs/desktops/mate/mate-control-center/default.nix index 6d123dc7c4d28..c3c4a1ffd284f 100644 --- a/pkgs/desktops/mate/mate-control-center/default.nix +++ b/pkgs/desktops/mate/mate-control-center/default.nix @@ -92,11 +92,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; - maintainers = teams.mate.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-desktop/default.nix b/pkgs/desktops/mate/mate-desktop/default.nix index 83dc816bb9b04..ebe7fd8bc39b9 100644 --- a/pkgs/desktops/mate/mate-desktop/default.nix +++ b/pkgs/desktops/mate/mate-desktop/default.nix @@ -46,11 +46,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; - maintainers = teams.mate.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix b/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix index 9ebf5f62e33a9..377e5df4400a0 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; - maintainers = teams.mate.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-icon-theme/default.nix b/pkgs/desktops/mate/mate-icon-theme/default.nix index 51f1b1f0587bd..97d9a8e0a8f54 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; - maintainers = teams.mate.members; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-media/default.nix b/pkgs/desktops/mate/mate-media/default.nix index e541aee18f2dd..34e8f3507a4de 100644 --- a/pkgs/desktops/mate/mate-media/default.nix +++ b/pkgs/desktops/mate/mate-media/default.nix @@ -50,11 +50,11 @@ 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 = teams.mate.members ++ (with maintainers; [ chpatrick ]); + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members ++ (with lib.maintainers; [ chpatrick ]); }; } diff --git a/pkgs/desktops/mate/mate-menus/default.nix b/pkgs/desktops/mate/mate-menus/default.nix index 10377df569a3e..475c28a38d88e 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; - maintainers = teams.mate.members; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-notification-daemon/default.nix b/pkgs/desktops/mate/mate-notification-daemon/default.nix index 2f1b83ad5c3ee..7d779e0153fe3 100644 --- a/pkgs/desktops/mate/mate-notification-daemon/default.nix +++ b/pkgs/desktops/mate/mate-notification-daemon/default.nix @@ -51,15 +51,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; - maintainers = teams.mate.members; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-panel/default.nix b/pkgs/desktops/mate/mate-panel/default.nix index b89dff709e618..8c9cb94c09ff6 100644 --- a/pkgs/desktops/mate/mate-panel/default.nix +++ b/pkgs/desktops/mate/mate-panel/default.nix @@ -83,15 +83,15 @@ stdenv.mkDerivation rec { passthru.updateScript = mateUpdateScript { inherit pname; }; - 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; - maintainers = teams.mate.members; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-polkit/default.nix b/pkgs/desktops/mate/mate-polkit/default.nix index 2322e81d513e7..3b71bef0eb7d5 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; - maintainers = teams.mate.members; + license = [ lib.licenses.gpl2Plus ]; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-power-manager/default.nix b/pkgs/desktops/mate/mate-power-manager/default.nix index 4ab93fe630247..f8580c97eaced 100644 --- a/pkgs/desktops/mate/mate-power-manager/default.nix +++ b/pkgs/desktops/mate/mate-power-manager/default.nix @@ -58,14 +58,14 @@ 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 = teams.mate.members ++ (with maintainers; [ chpatrick ]); + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members ++ (with lib.maintainers; [ chpatrick ]); }; } diff --git a/pkgs/desktops/mate/mate-screensaver/default.nix b/pkgs/desktops/mate/mate-screensaver/default.nix index 0f1682198a1ee..d233e1b7c81da 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; - maintainers = teams.mate.members; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-sensors-applet/default.nix b/pkgs/desktops/mate/mate-sensors-applet/default.nix index e6de3cd6f0063..89de913d6af35 100644 --- a/pkgs/desktops/mate/mate-sensors-applet/default.nix +++ b/pkgs/desktops/mate/mate-sensors-applet/default.nix @@ -48,11 +48,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; - maintainers = teams.mate.members; + license = with lib.licenses; [ gpl2Plus ]; + platforms = lib.platforms.linux; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-session-manager/default.nix b/pkgs/desktops/mate/mate-session-manager/default.nix index e71cc1b76ea46..465da0aac1836 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; - maintainers = teams.mate.members; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-settings-daemon/default.nix b/pkgs/desktops/mate/mate-settings-daemon/default.nix index 64bb4b0fc07d6..e18d9783e7307 100644 --- a/pkgs/desktops/mate/mate-settings-daemon/default.nix +++ b/pkgs/desktops/mate/mate-settings-daemon/default.nix @@ -57,16 +57,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; - maintainers = teams.mate.members; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-system-monitor/default.nix b/pkgs/desktops/mate/mate-system-monitor/default.nix index 72c0070c76177..a0adf2bbff35f 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; - maintainers = teams.mate.members; + license = [ lib.licenses.gpl2Plus ]; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-terminal/default.nix b/pkgs/desktops/mate/mate-terminal/default.nix index 0007d5e0b40dd..becd821a6d62a 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; - maintainers = teams.mate.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-themes/default.nix b/pkgs/desktops/mate/mate-themes/default.nix index ed203cc7d3e67..b3f38b580f96b 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; - maintainers = teams.mate.members; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-user-guide/default.nix b/pkgs/desktops/mate/mate-user-guide/default.nix index 3a8377e5e0587..e8c3835630eeb 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; - maintainers = teams.mate.members; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-user-share/default.nix b/pkgs/desktops/mate/mate-user-share/default.nix index c6b3544b9074d..99400e3e83f46 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; - maintainers = teams.mate.members; + license = with lib.licenses; [ gpl2Plus ]; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-utils/default.nix b/pkgs/desktops/mate/mate-utils/default.nix index e40f2760d8375..68f46570bed1f 100644 --- a/pkgs/desktops/mate/mate-utils/default.nix +++ b/pkgs/desktops/mate/mate-utils/default.nix @@ -67,14 +67,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; - maintainers = teams.mate.members; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mate-wayland-session/default.nix b/pkgs/desktops/mate/mate-wayland-session/default.nix index 1900c0b7107e4..a83aa9ccdad67 100644 --- a/pkgs/desktops/mate/mate-wayland-session/default.nix +++ b/pkgs/desktops/mate/mate-wayland-session/default.nix @@ -49,11 +49,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; - maintainers = teams.mate.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/mozo/default.nix b/pkgs/desktops/mate/mozo/default.nix index 5e2f3502a59d1..925d08a3621ab 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; - maintainers = teams.mate.members; + license = with lib.licenses; [ lgpl2Plus ]; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/pluma/default.nix b/pkgs/desktops/mate/pluma/default.nix index 033b6bf4763b3..606d02d736ff0 100644 --- a/pkgs/desktops/mate/pluma/default.nix +++ b/pkgs/desktops/mate/pluma/default.nix @@ -59,16 +59,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; - maintainers = teams.mate.members; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/mate/python-caja/default.nix b/pkgs/desktops/mate/python-caja/default.nix index ada4bc1b5e353..4dc9c0e6af427 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; - maintainers = teams.mate.members; + license = [ lib.licenses.gpl2Plus ]; + platforms = lib.platforms.unix; + maintainers = lib.teams.mate.members; }; } diff --git a/pkgs/desktops/pantheon/apps/appcenter/default.nix b/pkgs/desktops/pantheon/apps/appcenter/default.nix index eebd9fc55bdc5..e18f07ec8af39 100644 --- a/pkgs/desktops/pantheon/apps/appcenter/default.nix +++ b/pkgs/desktops/pantheon/apps/appcenter/default.nix @@ -69,12 +69,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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; 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 af8c515326b78..d144ce9e13690 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; 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 fba7602500e83..309878920a55a 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; 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 9409b5a25c996..039bda6967f6e 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; 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 513121a336b0a..22b8da1589aba 100644 --- a/pkgs/desktops/pantheon/apps/elementary-code/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-code/default.nix @@ -72,12 +72,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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; 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 10ef5782fb74c..a9ff65887578d 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; mainProgram = "io.elementary.feedback"; }; } diff --git a/pkgs/desktops/pantheon/apps/elementary-iconbrowser/default.nix b/pkgs/desktops/pantheon/apps/elementary-iconbrowser/default.nix index 4ada527222305..700dd206f05ee 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; 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 a0a9b1a719fba..ff27428342a9d 100644 --- a/pkgs/desktops/pantheon/apps/elementary-music/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-music/default.nix @@ -65,12 +65,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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; 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 bfda13868f2f4..ff84589473558 100644 --- a/pkgs/desktops/pantheon/apps/elementary-photos/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-photos/default.nix @@ -71,12 +71,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; - maintainers = teams.pantheon.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; 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 536362efa0a14..cfdd3fc1c8c62 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; - maintainers = teams.pantheon.members; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; 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 41d5244aeeff2..402d6298c8f14 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; 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 ba36581173b10..0c5484f122f29 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; - maintainers = teams.pantheon.members; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; 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 87cbcff8b851c..0208645e9461f 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; mainProgram = "io.elementary.videos"; }; } diff --git a/pkgs/desktops/pantheon/apps/sideload/default.nix b/pkgs/desktops/pantheon/apps/sideload/default.nix index dbcf1d2ea4549..606906ea881d9 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; 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 42df4bea777eb..32ed0cfb8b5a0 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/switchboard-plug-about"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/applications/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/applications/default.nix index 4456b14805306..814186bdeb2f1 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/switchboard-plug-applications"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/bluetooth/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/bluetooth/default.nix index 16b54deeefb5a..4ee434cc1fa55 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/bluetooth/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/bluetooth/default.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Bluetooth Plug"; homepage = "https://github.com/elementary/switchboard-plug-bluetooth"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/datetime/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/datetime/default.nix index a9503c4fbb3fb..e2633ad3beac6 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/display/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/display/default.nix index 8801916abf612..67ae2349b8486 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/switchboard-plug-display"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } 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 5837552a2d470..6fc7d74cca473 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/switchboard-plug-mouse-touchpad"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/network/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/network/default.nix index 1a4eccfe26c10..8293736c12e5c 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/notifications/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/notifications/default.nix index 5e3622f1ed24f..4ab3b48b0a96a 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/switchboard-plug-notifications"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/onlineaccounts/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/onlineaccounts/default.nix index d2d6136bf8d2a..084f9d0a319a7 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/switchboard-plug-onlineaccounts"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/power/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/power/default.nix index 7c9078ad9b6b6..68851dd3c818f 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/switchboard-plug-power"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/printers/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/printers/default.nix index a3ad381e12cb1..716d36a1e3da2 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/switchboard-plug-printers"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } 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 3007862edd71b..a54de68e24a27 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/switchboard-plug-security-privacy"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/sharing/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/sharing/default.nix index 94503b403df3d..8ef352aef2f41 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/sound/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/sound/default.nix index 45ca8bcc48f5b..0f8994a260096 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/sound/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/sound/default.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Switchboard Sound Plug"; homepage = "https://github.com/elementary/switchboard-plug-sound"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = teams.pantheon.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/wacom/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/wacom/default.nix index bb96b4a8add94..b885d2ae7a2d1 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/apps/switchboard/default.nix b/pkgs/desktops/pantheon/apps/switchboard/default.nix index 02eaeae906d9e..1670a860abf4b 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; - maintainers = teams.pantheon.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; 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 408046979745a..75825a3850195 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/artwork/elementary-icon-theme/default.nix b/pkgs/desktops/pantheon/artwork/elementary-icon-theme/default.nix index 7a3ba9f0020f2..15eff16609b2b 100644 --- a/pkgs/desktops/pantheon/artwork/elementary-icon-theme/default.nix +++ b/pkgs/desktops/pantheon/artwork/elementary-icon-theme/default.nix @@ -47,14 +47,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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/artwork/elementary-redacted-script/default.nix b/pkgs/desktops/pantheon/artwork/elementary-redacted-script/default.nix index 9aa511fc35b64..24ed5ebce77e1 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; - maintainers = teams.pantheon.members; - platforms = platforms.linux; + license = lib.licenses.ofl; + maintainers = lib.teams.pantheon.members; + 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 d9e01a191b8e9..2d78b37f00dc6 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; - maintainers = teams.pantheon.members; + license = lib.licenses.unlicense; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/artwork/elementary-wallpapers/default.nix b/pkgs/desktops/pantheon/artwork/elementary-wallpapers/default.nix index 0579a6048caed..7eb241c28d7f6 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; - maintainers = teams.pantheon.members; + license = lib.licenses.publicDomain; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/desktop/elementary-onboarding/default.nix b/pkgs/desktops/pantheon/desktop/elementary-onboarding/default.nix index d2749bfa54715..edd2989ceda6e 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; 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 66bd35ff64011..011e6b7400503 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; mainProgram = "io.elementary.print"; }; } diff --git a/pkgs/desktops/pantheon/desktop/file-roller-contract/default.nix b/pkgs/desktops/pantheon/desktop/file-roller-contract/default.nix index 64a126da88075..d73dc5e045fcc 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 rec { }; }; - meta = with lib; { + meta = { description = "Contractor extension for File Roller"; homepage = "https://github.com/elementary/file-roller-contract"; - license = licenses.gpl3Plus; - maintainers = teams.pantheon.members; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.pantheon.members; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/desktops/pantheon/desktop/gala/default.nix b/pkgs/desktops/pantheon/desktop/gala/default.nix index 12b8ca683b28b..27e3fafd16af6 100644 --- a/pkgs/desktops/pantheon/desktop/gala/default.nix +++ b/pkgs/desktops/pantheon/desktop/gala/default.nix @@ -78,12 +78,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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; 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 8c7a2d63047bd..e770e09fe966a 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/bluetooth/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/bluetooth/default.nix index 5b20d161f7b5b..c3270d68827ef 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; - maintainers = teams.pantheon.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/datetime/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/datetime/default.nix index dc8d244b1c6af..6d3b1d621c2fe 100644 --- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/datetime/default.nix +++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/datetime/default.nix @@ -60,11 +60,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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/keyboard/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/keyboard/default.nix index 53992f8c7b36c..232edd78edf84 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/network/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/network/default.nix index 10d0da9acb9cd..bbfa9d50eac0a 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; - maintainers = teams.pantheon.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/nightlight/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/nightlight/default.nix index 209cb7f220273..01cf1cdae7aab 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/notifications/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/notifications/default.nix index 5181cb1797beb..58f12d6f4fd31 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; - maintainers = teams.pantheon.members; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/power/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/power/default.nix index 41d8e5f882751..127a4fb65b803 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/sound/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/sound/default.nix index b5e567b47f7c3..b7585739c52c0 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/pantheon/libraries/granite/7/default.nix b/pkgs/desktops/pantheon/libraries/granite/7/default.nix index 7e64ff2f18105..0587754cc4395 100644 --- a/pkgs/desktops/pantheon/libraries/granite/7/default.nix +++ b/pkgs/desktops/pantheon/libraries/granite/7/default.nix @@ -55,16 +55,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; - maintainers = teams.pantheon.members; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; mainProgram = "granite-7-demo"; }; } diff --git a/pkgs/desktops/pantheon/libraries/granite/default.nix b/pkgs/desktops/pantheon/libraries/granite/default.nix index ffbbca7b44c4a..73847ee0b260d 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; - maintainers = teams.pantheon.members; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; mainProgram = "granite-demo"; }; } diff --git a/pkgs/desktops/pantheon/services/contractor/default.nix b/pkgs/desktops/pantheon/services/contractor/default.nix index d5fbc65636197..d5850c4be0804 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; 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 797c57dee9d9d..8031e8d81d3a5 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; mainProgram = "io.elementary.capnet-assist"; }; } diff --git a/pkgs/desktops/pantheon/services/elementary-settings-daemon/default.nix b/pkgs/desktops/pantheon/services/elementary-settings-daemon/default.nix index 5d2052b055f7d..3de17c6f3b8f6 100644 --- a/pkgs/desktops/pantheon/services/elementary-settings-daemon/default.nix +++ b/pkgs/desktops/pantheon/services/elementary-settings-daemon/default.nix @@ -64,12 +64,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; - maintainers = teams.pantheon.members; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.pantheon.members; + 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 9dd3e6d7217d0..9575764808f9e 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; - maintainers = teams.pantheon.members; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.pantheon.members; }; } diff --git a/pkgs/desktops/plasma-5/3rdparty/addons/krunner-ssh.nix b/pkgs/desktops/plasma-5/3rdparty/addons/krunner-ssh.nix index 17c4f36cd1b66..9eff72d78b5f4 100644 --- a/pkgs/desktops/plasma-5/3rdparty/addons/krunner-ssh.nix +++ b/pkgs/desktops/plasma-5/3rdparty/addons/krunner-ssh.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Simple backend for KRunner providing SSH hosts from your .ssh/known_hosts file as search results"; homepage = "https://selfcoders.com/projects/krunner-ssh"; - license = licenses.mit; - maintainers = with maintainers; [ aanderse ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aanderse ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/desktops/plasma-5/3rdparty/addons/krunner-symbols.nix b/pkgs/desktops/plasma-5/3rdparty/addons/krunner-symbols.nix index 6703944b01ffe..d8d8d126c6b50 100644 --- a/pkgs/desktops/plasma-5/3rdparty/addons/krunner-symbols.nix +++ b/pkgs/desktops/plasma-5/3rdparty/addons/krunner-symbols.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DLOCATION_CONFIG=share/config" ]; - meta = with lib; { + meta = { description = "Little krunner plugin (Plasma 5) to retrieve unicode symbols, or any other string, based on a corresponding keyword"; homepage = "https://github.com/domschrei/krunner-symbols"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ hqurve ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ hqurve ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/desktops/plasma-5/3rdparty/addons/virtual-desktop-bar.nix b/pkgs/desktops/plasma-5/3rdparty/addons/virtual-desktop-bar.nix index 873b7cc2ceed4..160e0620d3cff 100644 --- a/pkgs/desktops/plasma-5/3rdparty/addons/virtual-desktop-bar.nix +++ b/pkgs/desktops/plasma-5/3rdparty/addons/virtual-desktop-bar.nix @@ -33,11 +33,11 @@ mkDerivation rec { "-Wno-dev" ]; - meta = with lib; { + meta = { description = "Manage virtual desktops dynamically in a convenient way"; homepage = "https://github.com/wsdfhjxc/virtual-desktop-bar"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/desktops/rox/rox-filer/default.nix b/pkgs/desktops/rox/rox-filer/default.nix index b8d0b1c5b3cc7..dc70eb143ff75 100644 --- a/pkgs/desktops/rox/rox-filer/default.nix +++ b/pkgs/desktops/rox/rox-filer/default.nix @@ -93,15 +93,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/desktops/xfce/art/xfce4-icon-theme/default.nix b/pkgs/desktops/xfce/art/xfce4-icon-theme/default.nix index 721218c47d90b..490cac717053c 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; - maintainers = teams.xfce.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.xfce.members; }; } diff --git a/pkgs/development/ada-modules/gpr2/default.nix b/pkgs/development/ada-modules/gpr2/default.nix index db7fd76264cb0..91b1bf4510b0d 100644 --- a/pkgs/development/ada-modules/gpr2/default.nix +++ b/pkgs/development/ada-modules/gpr2/default.nix @@ -58,15 +58,15 @@ stdenv.mkDerivation rec { gnatcoll-iconv ]; - meta = with lib; { + meta = { description = "The 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/beam-modules/elixir-ls/default.nix b/pkgs/development/beam-modules/elixir-ls/default.nix index d07614b9ac166..c04906f73b540 100644 --- a/pkgs/development/beam-modules/elixir-ls/default.nix +++ b/pkgs/development/beam-modules/elixir-ls/default.nix @@ -75,7 +75,7 @@ mixRelease { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://github.com/elixir-lsp/elixir-ls"; description = '' A frontend-independent IDE "smartness" server for Elixir. @@ -86,10 +86,10 @@ mixRelease { 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"; - maintainers = teams.beam.members; + maintainers = lib.teams.beam.members; }; passthru.updateScript = nix-update-script { }; } diff --git a/pkgs/development/beam-modules/elvis-erlang/default.nix b/pkgs/development/beam-modules/elvis-erlang/default.nix index c9b2deaeea420..a44c71ef1447d 100644 --- a/pkgs/development/beam-modules/elvis-erlang/default.nix +++ b/pkgs/development/beam-modules/elvis-erlang/default.nix @@ -46,11 +46,11 @@ rebar3Relx rec { echo "${repo} is already up-to-date" fi ''; - meta = with lib; { + meta = { homepage = "https://github.com/inaka/elvis"; description = "Erlang Style Reviewer"; - platforms = platforms.unix; - license = licenses.asl20; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; maintainers = with lib.maintainers; [ dlesl ]; mainProgram = "elvis"; }; diff --git a/pkgs/development/beam-modules/erlang-ls/default.nix b/pkgs/development/beam-modules/erlang-ls/default.nix index 548cb2ee4d060..59091b67ab85c 100644 --- a/pkgs/development/beam-modules/erlang-ls/default.nix +++ b/pkgs/development/beam-modules/erlang-ls/default.nix @@ -92,11 +92,11 @@ rebar3Relx { fi ''; - meta = with lib; { + meta = { homepage = "https://github.com/erlang-ls/erlang_ls"; description = "Erlang Language Server"; - platforms = platforms.unix; - license = licenses.asl20; + platforms = lib.platforms.unix; + license = lib.licenses.asl20; mainProgram = "erlang_ls"; }; } diff --git a/pkgs/development/beam-modules/erlfmt/default.nix b/pkgs/development/beam-modules/erlfmt/default.nix index 49c687afd4596..2b58aff4ab26b 100644 --- a/pkgs/development/beam-modules/erlfmt/default.nix +++ b/pkgs/development/beam-modules/erlfmt/default.nix @@ -14,12 +14,12 @@ rebar3Relx rec { sha256 = "sha256-TtOHcXiXl13KSGarMBdvvDjv1YQJjDVFtDLC0LDz9Bc="; rev = "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/compilers/alan/2.nix b/pkgs/development/compilers/alan/2.nix index b05415b629bb4..45e677529766c 100644 --- a/pkgs/development/compilers/alan/2.nix +++ b/pkgs/development/compilers/alan/2.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { cp alan.readme ChangeLog $out/share/alan2 ''; - meta = with lib; { + meta = { homepage = "https://www.alanif.se/"; description = "Alan interactive fiction language (legacy version)"; - license = licenses.artistic2; - platforms = platforms.linux; - maintainers = with maintainers; [ neilmayhew ]; + license = lib.licenses.artistic2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ neilmayhew ]; }; } diff --git a/pkgs/development/compilers/alan/default.nix b/pkgs/development/compilers/alan/default.nix index 3a3fcfef81f2a..bc03897290dda 100644 --- a/pkgs/development/compilers/alan/default.nix +++ b/pkgs/development/compilers/alan/default.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { which ]; - meta = with lib; { + meta = { homepage = "https://www.alanif.se/"; description = "Alan interactive fiction language"; - license = licenses.artistic2; - platforms = platforms.linux; - maintainers = with maintainers; [ neilmayhew ]; + license = lib.licenses.artistic2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ neilmayhew ]; }; } diff --git a/pkgs/development/compilers/armips/default.nix b/pkgs/development/compilers/armips/default.nix index c8386845b35ab..b4846b1df905c 100644 --- a/pkgs/development/compilers/armips/default.nix +++ b/pkgs/development/compilers/armips/default.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - 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/development/compilers/binaryen/default.nix b/pkgs/development/compilers/binaryen/default.nix index 15734ad67078d..deabe8292e38b 100644 --- a/pkgs/development/compilers/binaryen/default.nix +++ b/pkgs/development/compilers/binaryen/default.nix @@ -75,15 +75,15 @@ stdenv.mkDerivation rec { ]; doCheck = stdenv.isLinux; - 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 4f82e9cf2ed2e..0dfcb10fc2442 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/cmucl/binary.nix b/pkgs/development/compilers/cmucl/binary.nix index eac9f1af818eb..a40fafde9d20d 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/cone/default.nix b/pkgs/development/compilers/cone/default.nix index 0e95fdbc6ae53..06cd80bca4d0b 100644 --- a/pkgs/development/compilers/cone/default.nix +++ b/pkgs/development/compilers/cone/default.nix @@ -33,12 +33,12 @@ llvmPackages.stdenv.mkDerivation rec { install -Dm644 libconestd.a $out/lib/libconestd.a ''; - meta = with lib; { + meta = { description = "Cone Programming Language"; mainProgram = "conec"; homepage = "https://cone.jondgoodwin.com"; - license = licenses.mit; - maintainers = with maintainers; [ ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/compilers/dotnet/vmr.nix b/pkgs/development/compilers/dotnet/vmr.nix index d6d86c0b18378..53da306d53eb7 100644 --- a/pkgs/development/compilers/dotnet/vmr.nix +++ b/pkgs/development/compilers/dotnet/vmr.nix @@ -469,11 +469,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 57ae172518d3d..53bd0095192e4 100644 --- a/pkgs/development/compilers/ecl/16.1.2.nix +++ b/pkgs/development/compilers/ecl/16.1.2.nix @@ -97,11 +97,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; maintainers = lib.teams.lisp.members; - 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/elm/packages/elm-json/default.nix b/pkgs/development/compilers/elm/packages/elm-json/default.nix index a306669f06517..52bc6bd99cd17 100644 --- a/pkgs/development/compilers/elm/packages/elm-json/default.nix +++ b/pkgs/development/compilers/elm/packages/elm-json/default.nix @@ -32,11 +32,11 @@ rustPlatform.buildRustPackage rec { # Tests perform networking and therefore can't work in sandbox doCheck = false; - meta = with lib; { + meta = { description = "Install, upgrade and uninstall Elm dependencies"; mainProgram = "elm-json"; homepage = "https://github.com/zwilias/elm-json"; - license = licenses.mit; - maintainers = [ maintainers.turbomack ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.turbomack ]; }; } diff --git a/pkgs/development/compilers/elm/packages/lamdera/default.nix b/pkgs/development/compilers/elm/packages/lamdera/default.nix index 2deac822a95a5..06f0624da630c 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 6a3e7738fc1d9..3a79c36278e43 100644 --- a/pkgs/development/compilers/emscripten/default.nix +++ b/pkgs/development/compilers/emscripten/default.nix @@ -151,16 +151,16 @@ 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 matthewbauer raitobezarius willcohen ]; - license = licenses.ncsa; + license = lib.licenses.ncsa; }; } diff --git a/pkgs/development/compilers/fbc/default.nix b/pkgs/development/compilers/fbc/default.nix index 0b8677854a50e..0edca966ea4d9 100644 --- a/pkgs/development/compilers/fbc/default.nix +++ b/pkgs/development/compilers/fbc/default.nix @@ -128,7 +128,7 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = with lib; { + meta = { homepage = "https://www.freebasic.net/"; description = "Multi-platform BASIC Compiler"; mainProgram = "fbc"; @@ -138,8 +138,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/fpc/default.nix b/pkgs/development/compilers/fpc/default.nix index 6b8fa48511c02..e1b7caef694b2 100644 --- a/pkgs/development/compilers/fpc/default.nix +++ b/pkgs/development/compilers/fpc/default.nix @@ -96,14 +96,14 @@ 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; }; } diff --git a/pkgs/development/compilers/fpc/lazarus.nix b/pkgs/development/compilers/fpc/lazarus.nix index 56f36a2b59bfe..6d446393ea518 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/gambit/gambit-support.nix b/pkgs/development/compilers/gambit/gambit-support.nix index 64a9b6a2bb467..17d2ef4d859d5 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 6000560726317..537c850cc6f1c 100644 --- a/pkgs/development/compilers/gcl/default.nix +++ b/pkgs/development/compilers/gcl/default.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { "--enable-ansi" ]; - meta = with lib; { + meta = { description = "GNU Common Lisp compiler working via GCC"; mainProgram = "gcl"; maintainers = lib.teams.lisp.members; - license = licenses.gpl2; - platforms = platforms.linux; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/compilers/gerbil/ftw.nix b/pkgs/development/compilers/gerbil/ftw.nix index c445d11b3aa33..bf490a9478284 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 e388994bc57d7..76a5661c4afab 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 80e4ad62a8555..7afac3b676a19 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 eb980627b5abd..d5adf82acac1f 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 7693920fabc69..a24fa650dc8f0 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 d859141279f67..c40d05d549c97 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 fb616479c3550..dbf3d1cb05664 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 919a8340e9c85..66cb080ea0841 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 07e0132e46da9..e8ab00d4bb132 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 89094a65e5be7..36aeeef7d2e46 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 4418a5ea60974..5b23bede309ef 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 dcc07d6eda67f..188cb352c3845 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/smug-gerbil.nix b/pkgs/development/compilers/gerbil/smug-gerbil.nix index 52f14ca122594..6582402a6a528 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/halide/default.nix b/pkgs/development/compilers/halide/default.nix index a21fdd937d4d6..9f50b017f75f3 100644 --- a/pkgs/development/compilers/halide/default.nix +++ b/pkgs/development/compilers/halide/default.nix @@ -114,12 +114,12 @@ stdenv.mkDerivation rec { 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/idris2/idris2-lsp.nix b/pkgs/development/compilers/idris2/idris2-lsp.nix index f5a3d93eab4ae..a36dc092b55d3 100644 --- a/pkgs/development/compilers/idris2/idris2-lsp.nix +++ b/pkgs/development/compilers/idris2/idris2-lsp.nix @@ -51,12 +51,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/ispc/default.nix b/pkgs/development/compilers/ispc/default.nix index 7c3c7a0fdb38d..f10561b18e757 100644 --- a/pkgs/development/compilers/ispc/default.nix +++ b/pkgs/development/compilers/ispc/default.nix @@ -98,18 +98,18 @@ stdenv.mkDerivation rec { ) ]; - meta = with lib; { + meta = { homepage = "https://ispc.github.io/"; description = "Intel 'Single Program, Multiple Data' Compiler, a vectorised language"; mainProgram = "ispc"; - license = licenses.bsd3; + license = lib.licenses.bsd3; platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; # TODO: buildable on more platforms? - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ aristid thoughtpolice athas diff --git a/pkgs/development/compilers/kind2/default.nix b/pkgs/development/compilers/kind2/default.nix index 4af6762da2a73..0aa12b0b82d34 100644 --- a/pkgs/development/compilers/kind2/default.nix +++ b/pkgs/development/compilers/kind2/default.nix @@ -31,11 +31,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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/development/compilers/ligo/default.nix b/pkgs/development/compilers/ligo/default.nix index cebb3614490dc..a6f5668a456b3 100644 --- a/pkgs/development/compilers/ligo/default.nix +++ b/pkgs/development/compilers/ligo/default.nix @@ -128,13 +128,13 @@ ocamlPackages.buildDunePackage rec { doCheck = false; # Tests fail, but could not determine the reason - meta = with lib; { + meta = { homepage = "https://ligolang.org/"; downloadPage = "https://ligolang.org/docs/intro/installation"; description = "Friendly Smart Contract Language for Tezos"; mainProgram = "ligo"; - license = licenses.mit; + license = lib.licenses.mit; platforms = ocamlPackages.ocaml.meta.platforms; - maintainers = with maintainers; [ ulrikstrid ]; + maintainers = with lib.maintainers; [ ulrikstrid ]; }; } diff --git a/pkgs/development/compilers/llvm/common/libclc.nix b/pkgs/development/compilers/llvm/common/libclc.nix index f3828cd0b0ffa..1c6bcc4ef10e9 100644 --- a/pkgs/development/compilers/llvm/common/libclc.nix +++ b/pkgs/development/compilers/llvm/common/libclc.nix @@ -107,11 +107,11 @@ stdenv.mkDerivation rec { 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 83c1366c344c0..35820598c337d 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/lobster/default.nix b/pkgs/development/compilers/lobster/default.nix index e54c71ebab64d..abbed4ceff6bf 100644 --- a/pkgs/development/compilers/lobster/default.nix +++ b/pkgs/development/compilers/lobster/default.nix @@ -53,7 +53,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"; @@ -63,8 +63,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/development/compilers/matter-compiler/default.nix b/pkgs/development/compilers/matter-compiler/default.nix index b00c26c0ba5f4..5d28606c00e2b 100644 --- a/pkgs/development/compilers/matter-compiler/default.nix +++ b/pkgs/development/compilers/matter-compiler/default.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/development/compilers/mezzo/default.nix b/pkgs/development/compilers/mezzo/default.nix index 51df8e7062d47..3fbeb2cd992e5 100644 --- a/pkgs/development/compilers/mezzo/default.nix +++ b/pkgs/development/compilers/mezzo/default.nix @@ -74,10 +74,10 @@ else 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; platforms = ocaml.meta.platforms or [ ]; }; } diff --git a/pkgs/development/compilers/mint/default.nix b/pkgs/development/compilers/mint/default.nix index 62e19008d4680..369301028789b 100644 --- a/pkgs/development/compilers/mint/default.nix +++ b/pkgs/development/compilers/mint/default.nix @@ -29,12 +29,12 @@ crystal.buildCrystalPackage rec { export HOME=$(mktemp -d) ''; - meta = with lib; { + meta = { description = "Refreshing language for the front-end web"; mainProgram = "mint"; homepage = "https://www.mint-lang.com/"; - license = licenses.bsd3; - maintainers = with maintainers; [ manveru ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ manveru ]; broken = lib.versionOlder crystal.version "1.0"; }; } diff --git a/pkgs/development/compilers/mkcl/default.nix b/pkgs/development/compilers/mkcl/default.nix index 620e4716dd5be..b2a85e48b28e3 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"; maintainers = lib.teams.lisp.members; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/compilers/mono/generic.nix b/pkgs/development/compilers/mono/generic.nix index ffa2d78bab18d..54aa8bb9a832a 100644 --- a/pkgs/development/compilers/mono/generic.nix +++ b/pkgs/development/compilers/mono/generic.nix @@ -128,7 +128,7 @@ stdenv.mkDerivation rec { inherit enableParallelBuilding; - meta = with lib; { + meta = { # Per nixpkgs#151720 the build failures for aarch64-darwin are fixed since 6.12.0.129 broken = stdenv.hostPlatform.isDarwin @@ -136,12 +136,12 @@ stdenv.mkDerivation rec { && lib.versionOlder version "6.12.0.129"; homepage = "https://mono-project.com/"; description = "Cross platform, open source .NET development framework"; - platforms = with platforms; darwin ++ linux; - maintainers = with maintainers; [ + platforms = with lib.platforms; darwin ++ linux; + 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/default.nix b/pkgs/development/compilers/mozart/default.nix index 41604a27a8adc..f125807a480f2 100644 --- a/pkgs/development/compilers/mozart/default.nix +++ b/pkgs/development/compilers/mozart/default.nix @@ -76,15 +76,15 @@ stdenv.mkDerivation rec { tk ]; - 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 d0907faa8c663..df343f3983981 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 4f11f37915fb3..7c46bc9fe0b75 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 7ec09b4909271..899c9a79de675 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/osl/default.nix b/pkgs/development/compilers/osl/default.nix index 17df7fa6f050a..6def64995424e 100644 --- a/pkgs/development/compilers/osl/default.nix +++ b/pkgs/development/compilers/osl/default.nix @@ -81,11 +81,11 @@ stdenv.mkDerivation rec { --replace '=''${exec_prefix}//' '=/' ''; - meta = with lib; { + meta = { description = "Advanced shading language for production GI renderers"; homepage = "https://opensource.imageworks.com/osl.html"; - maintainers = with maintainers; [ hodapp ]; - license = licenses.bsd3; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ hodapp ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/compilers/polyml/5.7.nix b/pkgs/development/compilers/polyml/5.7.nix index 197a787594ea3..3f441b4954046 100644 --- a/pkgs/development/compilers/polyml/5.7.nix +++ b/pkgs/development/compilers/polyml/5.7.nix @@ -46,15 +46,15 @@ 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); - maintainers = with maintainers; [ maggesi ]; + license = lib.licenses.lgpl21; + platforms = with lib.platforms; (linux ++ darwin); + maintainers = with lib.maintainers; [ maggesi ]; # never built on aarch64-darwin since first introduction in nixpkgs broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; }; diff --git a/pkgs/development/compilers/ponyc/default.nix b/pkgs/development/compilers/ponyc/default.nix index 005605e9095af..454a452f676b5 100644 --- a/pkgs/development/compilers/ponyc/default.nix +++ b/pkgs/development/compilers/ponyc/default.nix @@ -142,11 +142,11 @@ stdenv.mkDerivation (rec { passthru.tests.pony-corral = pony-corral; - 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 patternspandemic redvers diff --git a/pkgs/development/compilers/rml/default.nix b/pkgs/development/compilers/rml/default.nix index e5f0f64f80dd4..49e719ab91707 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/rustfmt.nix b/pkgs/development/compilers/rust/rustfmt.nix index a0652b127c37f..8b77d7173decf 100644 --- a/pkgs/development/compilers/rust/rustfmt.nix +++ b/pkgs/development/compilers/rust/rustfmt.nix @@ -52,15 +52,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/scala-runners/default.nix b/pkgs/development/compilers/scala-runners/default.nix index d950d033f6812..9692350e06cb4 100644 --- a/pkgs/development/compilers/scala-runners/default.nix +++ b/pkgs/development/compilers/scala-runners/default.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { 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/bare.nix b/pkgs/development/compilers/scala/bare.nix index 2588e3fd5aaf2..34151d321d39a 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 = "The 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; [ karolchmist virusdave kashw2 diff --git a/pkgs/development/compilers/shaderc/default.nix b/pkgs/development/compilers/shaderc/default.nix index cbbb42b62cfc5..25a02ea77951e 100644 --- a/pkgs/development/compilers/shaderc/default.nix +++ b/pkgs/development/compilers/shaderc/default.nix @@ -81,10 +81,10 @@ stdenv.mkDerivation rec { --replace "$dev/$dev/" "$dev/" ''; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Collection of tools, libraries and tests for shader compilation"; - platforms = platforms.all; - license = [ licenses.asl20 ]; + platforms = lib.platforms.all; + license = [ lib.licenses.asl20 ]; }; } diff --git a/pkgs/development/compilers/terra/default.nix b/pkgs/development/compilers/terra/default.nix index 0a455d45ce0fc..3bd63aca72b78 100644 --- a/pkgs/development/compilers/terra/default.nix +++ b/pkgs/development/compilers/terra/default.nix @@ -119,17 +119,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/development/compilers/tinygo/default.nix b/pkgs/development/compilers/tinygo/default.nix index ea4a10ae09c88..f6c4d3ea7be43 100644 --- a/pkgs/development/compilers/tinygo/default.nix +++ b/pkgs/development/compilers/tinygo/default.nix @@ -142,11 +142,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; [ Madouura muscaln ]; diff --git a/pkgs/development/compilers/x11basic/default.nix b/pkgs/development/compilers/x11basic/default.nix index e90eb300ffdc8..0f49c06d7e242 100644 --- a/pkgs/development/compilers/x11basic/default.nix +++ b/pkgs/development/compilers/x11basic/default.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { cp -r ../examples $out/share/. ''; - meta = with lib; { + meta = { homepage = "https://x11-basic.sourceforge.net/"; description = "Basic interpreter and compiler with graphics capabilities"; - license = licenses.gpl2; - maintainers = with maintainers; [ edwtjo ]; - platforms = platforms.unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ edwtjo ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/compilers/yosys/default.nix b/pkgs/development/compilers/yosys/default.nix index 93de98015198b..4f94a899857a5 100644 --- a/pkgs/development/compilers/yosys/default.nix +++ b/pkgs/development/compilers/yosys/default.nix @@ -172,12 +172,12 @@ stdenv.mkDerivation (finalAttrs: { inherit withPlugins allPlugins; }; - meta = with lib; { + meta = { description = "Open RTL synthesis framework and tools"; homepage = "https://yosyshq.net/yosys/"; - license = licenses.isc; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.isc; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ shell thoughtpolice Luflosi diff --git a/pkgs/development/compilers/yosys/plugins/bluespec.nix b/pkgs/development/compilers/yosys/plugins/bluespec.nix index 5a1a0ce3e2105..29f2da23e49d4 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 a12fd62ca2f82..d6cccf813558b 100644 --- a/pkgs/development/compilers/yosys/plugins/ghdl.nix +++ b/pkgs/development/compilers/yosys/plugins/ghdl.nix @@ -38,11 +38,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/coq-modules/MenhirLib/default.nix b/pkgs/development/coq-modules/MenhirLib/default.nix index ecdbab974a5f5..3ed75c85e76b4 100644 --- a/pkgs/development/coq-modules/MenhirLib/default.nix +++ b/pkgs/development/coq-modules/MenhirLib/default.nix @@ -35,11 +35,11 @@ let }; propagatedBuildInputs = [ stdlib ]; preBuild = "cd coq-menhirlib/src"; - meta = with lib; { + meta = { homepage = "https://gitlab.inria.fr/fpottier/menhir/-/tree/master/coq-menhirlib"; description = "A support library for verified Coq parsers produced by Menhir"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ ]; }; }; in diff --git a/pkgs/development/coq-modules/aac-tactics/default.nix b/pkgs/development/coq-modules/aac-tactics/default.nix index db2c56c7d98ab..7be8fce4d8fd0 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 95d247f108fee..9ca61c6d0a16a 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 85b440c121688..1784004e75596 100644 --- a/pkgs/development/coq-modules/autosubst-ocaml/default.nix +++ b/pkgs/development/coq-modules/autosubst-ocaml/default.nix @@ -37,11 +37,11 @@ mkCoqDerivation { dune install --prefix $out --libdir $OCAMLFIND_DESTDIR ''; - meta = with lib; { + meta = { description = "An 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 e5fd36cd7f057..ced5000e56184 100644 --- a/pkgs/development/coq-modules/autosubst/default.nix +++ b/pkgs/development/coq-modules/autosubst/default.nix @@ -35,13 +35,13 @@ mkCoqDerivation { propagatedBuildInputs = [ mathcomp-ssreflect ]; - 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 b141d2b48e2a4..7500308f0af77 100644 --- a/pkgs/development/coq-modules/ceres/default.nix +++ b/pkgs/development/coq-modules/ceres/default.nix @@ -32,9 +32,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/coqhammer/default.nix b/pkgs/development/coq-modules/coqhammer/default.nix index 4ce7f6633e628..db9be7bd6e3d0 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 8ae04078b7711..87eb932ec9778 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 16d89a49d412c..3f962bc4dd8b4 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 fb97986b5b1dd..fada3e52b60e2 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 680e154de68a0..77c85bdc906d3 100644 --- a/pkgs/development/coq-modules/coquelicot/default.nix +++ b/pkgs/development/coq-modules/coquelicot/default.nix @@ -54,10 +54,10 @@ mkCoqDerivation { propagatedBuildInputs = [ ssreflect ]; 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 05da9b148cb59..0f5db87feb7eb 100644 --- a/pkgs/development/coq-modules/corn/default.nix +++ b/pkgs/development/coq-modules/corn/default.nix @@ -54,11 +54,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/dpdgraph/default.nix b/pkgs/development/coq-modules/dpdgraph/default.nix index 76e82bfbe1069..efb2d5f8133c7 100644 --- a/pkgs/development/coq-modules/dpdgraph/default.nix +++ b/pkgs/development/coq-modules/dpdgraph/default.nix @@ -114,9 +114,9 @@ mkCoqDerivation { 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 ]; }; } diff --git a/pkgs/development/coq-modules/equations/default.nix b/pkgs/development/coq-modules/equations/default.nix index ca413d532f6b1..551f8b6af16bd 100644 --- a/pkgs/development/coq-modules/equations/default.nix +++ b/pkgs/development/coq-modules/equations/default.nix @@ -122,10 +122,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 (o: { diff --git a/pkgs/development/coq-modules/flocq/default.nix b/pkgs/development/coq-modules/flocq/default.nix index 9cbf093b7273a..8e2372a6fb1b3 100644 --- a/pkgs/development/coq-modules/flocq/default.nix +++ b/pkgs/development/coq-modules/flocq/default.nix @@ -61,9 +61,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/gappalib/default.nix b/pkgs/development/coq-modules/gappalib/default.nix index 0a35f99511256..40ee4d5161e27 100644 --- a/pkgs/development/coq-modules/gappalib/default.nix +++ b/pkgs/development/coq-modules/gappalib/default.nix @@ -29,9 +29,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 b9ca9a4fb5a94..c084db063f652 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/high-school-geometry/default.nix b/pkgs/development/coq-modules/high-school-geometry/default.nix index 29351db0c3183..0c1ef59d6f775 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 74f57cc77d62c..300a287962ef4 100644 --- a/pkgs/development/coq-modules/hydra-battles/default.nix +++ b/pkgs/development/coq-modules/hydra-battles/default.nix @@ -33,7 +33,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 @@ -42,12 +42,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 e29863c2283c9..3606e8676e8a2 100644 --- a/pkgs/development/coq-modules/interval/default.nix +++ b/pkgs/development/coq-modules/interval/default.nix @@ -89,9 +89,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/itauto/default.nix b/pkgs/development/coq-modules/itauto/default.nix index ede84f75f6a7f..65908cd8a06ba 100644 --- a/pkgs/development/coq-modules/itauto/default.nix +++ b/pkgs/development/coq-modules/itauto/default.nix @@ -66,10 +66,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/ltac2/default.nix b/pkgs/development/coq-modules/ltac2/default.nix index 88b52f397bae4..bbdade3e8ef50 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/metalib/default.nix b/pkgs/development/coq-modules/metalib/default.nix index a8a889e999b83..4d62660a10459 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 eed638c269e43..d7fd6f4a36d88 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 1e4e044ae558f..28e0b389307b8 100644 --- a/pkgs/development/coq-modules/odd-order/default.nix +++ b/pkgs/development/coq-modules/odd-order/default.nix @@ -47,10 +47,10 @@ mkCoqDerivation { mathcomp.all ]; - 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 d665b0b4f6051..3039d70926403 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 4f8eeebc15da7..8346045c05dfa 100644 --- a/pkgs/development/coq-modules/parsec/default.nix +++ b/pkgs/development/coq-modules/parsec/default.nix @@ -47,9 +47,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 44dff53fb1a7c..2bc15df96ad15 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/relation-algebra/default.nix b/pkgs/development/coq-modules/relation-algebra/default.nix index 571360d9926f4..8c3c931091104 100644 --- a/pkgs/development/coq-modules/relation-algebra/default.nix +++ b/pkgs/development/coq-modules/relation-algebra/default.nix @@ -82,10 +82,10 @@ mkCoqDerivation { mathcomp.ssreflect ]; - 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 25e7645fb7c88..20bf3e51fe63b 100644 --- a/pkgs/development/coq-modules/semantics/default.nix +++ b/pkgs/development/coq-modules/semantics/default.nix @@ -55,14 +55,14 @@ mkCoqDerivation rec { 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 757f8d325ed0a..cf8b818465bf6 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 6345818db5d07..6db29106cd56c 100644 --- a/pkgs/development/coq-modules/simple-io/default.nix +++ b/pkgs/development/coq-modules/simple-io/default.nix @@ -49,10 +49,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 920ea748b2f10..58a5861e1ccf1 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/tlc/default.nix b/pkgs/development/coq-modules/tlc/default.nix index 2aeca7509eb69..aa785d4d0c09d 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 fb0a321e0f9e9..218d500ef0e67 100644 --- a/pkgs/development/coq-modules/topology/default.nix +++ b/pkgs/development/coq-modules/topology/default.nix @@ -54,13 +54,13 @@ mkCoqDerivation rec { 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/unicoq/default.nix b/pkgs/development/coq-modules/unicoq/default.nix index 86a0567e3a913..a4530f58b73bc 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 = "An 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/zorns-lemma/default.nix b/pkgs/development/coq-modules/zorns-lemma/default.nix index 37870d29d18a1..46f900843b7a0 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/cuda-modules/cudatoolkit/redist-wrapper.nix b/pkgs/development/cuda-modules/cudatoolkit/redist-wrapper.nix index b8906b3dc59b2..562fb98c02a67 100644 --- a/pkgs/development/cuda-modules/cudatoolkit/redist-wrapper.nix +++ b/pkgs/development/cuda-modules/cudatoolkit/redist-wrapper.nix @@ -79,8 +79,8 @@ else }; }; - meta = with lib; { + meta = { description = "Wrapper substituting the deprecated runfile-based CUDA installation"; - license = licenses.nvidiaCuda; + license = lib.licenses.nvidiaCuda; }; } diff --git a/pkgs/development/embedded/blisp/default.nix b/pkgs/development/embedded/blisp/default.nix index d7b1b6018efc4..a640ef2ce4143 100644 --- a/pkgs/development/embedded/blisp/default.nix +++ b/pkgs/development/embedded/blisp/default.nix @@ -43,12 +43,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/development/embedded/fpga/apio/default.nix b/pkgs/development/embedded/fpga/apio/default.nix index 85e011d22dc16..8e5b5ce6b9dd7 100644 --- a/pkgs/development/embedded/fpga/apio/default.nix +++ b/pkgs/development/embedded/fpga/apio/default.nix @@ -80,11 +80,11 @@ buildPythonApplication rec { strictDeps = true; - meta = with lib; { + meta = { description = "Open source ecosystem for open FPGA boards"; mainProgram = "apio"; homepage = "https://github.com/FPGAwars/apio"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/development/embedded/fpga/ecpdap/default.nix b/pkgs/development/embedded/fpga/ecpdap/default.nix index faa3790b34408..f2d8a7203fdf2 100644 --- a/pkgs/development/embedded/fpga/ecpdap/default.nix +++ b/pkgs/development/embedded/fpga/ecpdap/default.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/development/embedded/platformio/chrootenv.nix b/pkgs/development/embedded/platformio/chrootenv.nix index 870ce06d0ede2..edec21cc23222 100644 --- a/pkgs/development/embedded/platformio/chrootenv.nix +++ b/pkgs/development/embedded/platformio/chrootenv.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/development/embedded/tytools/default.nix b/pkgs/development/embedded/tytools/default.nix index 76ff17c0b6fec..ed49659c04257 100644 --- a/pkgs/development/embedded/tytools/default.nix +++ b/pkgs/development/embedded/tytools/default.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { qtbase ]; - meta = with lib; { + meta = { description = "Collection of tools to manage Teensy boards"; homepage = "https://koromix.dev/tytools"; - license = licenses.unlicense; - platforms = platforms.unix; - maintainers = with maintainers; [ ahuzik ]; + license = lib.licenses.unlicense; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ahuzik ]; }; } diff --git a/pkgs/development/emilua-plugins/bech32/default.nix b/pkgs/development/emilua-plugins/bech32/default.nix index 338913764b669..0236702937b76 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 895e400281980..b15f2f1879b07 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 95b8919f723cf..b00065e6c5965 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 db8eaeeecb49b..d9f0b66ad2b88 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 6b83ed573dc1f..45f3fc964ba2e 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 96c33efee1974..8fa7b5664de99 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 7351ed474a876..570a0bba5a960 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 d9065f3bcd2c4..0cfb4a40a36d2 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 d7a004954f963..32eb68d549924 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 a96de33b914a6..2ca825bed5084 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 fba410eb8ffdf..a48d0cc1774f5 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/interpreters/acl2/libipasirglucose4/default.nix b/pkgs/development/interpreters/acl2/libipasirglucose4/default.nix index a2a4b159d1d9c..e52e45ee1a036 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 f9c7010444812..5a6bc8fd93e8c 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; - maintainers = with maintainers; [ lom ]; - platforms = platforms.x86_64; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lom ]; + platforms = lib.platforms.x86_64; }; } diff --git a/pkgs/development/interpreters/evcxr/default.nix b/pkgs/development/interpreters/evcxr/default.nix index d4520719a7e83..c5734ae8138e7 100644 --- a/pkgs/development/interpreters/evcxr/default.nix +++ b/pkgs/development/interpreters/evcxr/default.nix @@ -65,11 +65,11 @@ rustPlatform.buildRustPackage rec { rm $out/bin/testing_runtime ''; - meta = with lib; { + meta = { description = "Evaluation context for Rust"; homepage = "https://github.com/google/evcxr"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ protoben ma27 ]; diff --git a/pkgs/development/interpreters/falcon/default.nix b/pkgs/development/interpreters/falcon/default.nix index 4acd72081967d..4309a6ccaa44c 100644 --- a/pkgs/development/interpreters/falcon/default.nix +++ b/pkgs/development/interpreters/falcon/default.nix @@ -34,10 +34,10 @@ 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; }; } diff --git a/pkgs/development/interpreters/gauche/boot.nix b/pkgs/development/interpreters/gauche/boot.nix index 4b3179da90c1d..2dc64bf54e7fe 100644 --- a/pkgs/development/interpreters/gauche/boot.nix +++ b/pkgs/development/interpreters/gauche/boot.nix @@ -61,12 +61,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 3fb736ff7e389..fb84a2dfac879 100644 --- a/pkgs/development/interpreters/gauche/default.nix +++ b/pkgs/development/interpreters/gauche/default.nix @@ -67,12 +67,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/gnudatalanguage/default.nix b/pkgs/development/interpreters/gnudatalanguage/default.nix index f7570e745d3d6..6c3a1965bd1a8 100644 --- a/pkgs/development/interpreters/gnudatalanguage/default.nix +++ b/pkgs/development/interpreters/gnudatalanguage/default.nix @@ -219,7 +219,7 @@ stdenv.mkDerivation rec { ; }; - meta = with lib; { + meta = { description = "Free incremental compiler of IDL"; longDescription = '' GDL (GNU Data Language) is a free/libre/open source incremental compiler @@ -227,9 +227,9 @@ stdenv.mkDerivation rec { GDL is aimed as a drop-in replacement for IDL. ''; homepage = "https://github.com/gnudatalanguage/gdl"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ ShamrockLee ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ ShamrockLee ]; + platforms = lib.platforms.all; mainProgram = "gdl"; }; } diff --git a/pkgs/development/interpreters/guile/1.8.nix b/pkgs/development/interpreters/guile/1.8.nix index d5f0fe3f68002..334bdc386161c 100644 --- a/pkgs/development/interpreters/guile/1.8.nix +++ b/pkgs/development/interpreters/guile/1.8.nix @@ -96,7 +96,7 @@ stdenv.mkDerivation rec { siteDir = "share/guile/site"; }; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/guile/"; description = "Embeddable Scheme implementation"; longDescription = '' @@ -107,8 +107,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 ad542da643255..7e6814f5a9efb 100644 --- a/pkgs/development/interpreters/guile/2.0.nix +++ b/pkgs/development/interpreters/guile/2.0.nix @@ -146,7 +146,7 @@ builder rec { siteDir = "share/guile/site/${effectiveVersion}"; }; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/guile/"; description = "Embeddable Scheme implementation"; longDescription = '' @@ -158,9 +158,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 deb74210bdb7c..a316d440a4ce3 100644 --- a/pkgs/development/interpreters/guile/2.2.nix +++ b/pkgs/development/interpreters/guile/2.2.nix @@ -134,7 +134,7 @@ builder rec { siteDir = "share/guile/site/${effectiveVersion}"; }; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/guile/"; description = "Embeddable Scheme implementation"; longDescription = '' @@ -145,8 +145,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 473c05ea8383c..696b19a2b69e1 100644 --- a/pkgs/development/interpreters/guile/3.0.nix +++ b/pkgs/development/interpreters/guile/3.0.nix @@ -160,7 +160,7 @@ builder rec { ''; }; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/guile/"; description = "Embeddable Scheme implementation"; longDescription = '' @@ -171,8 +171,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 bdc332731296f..513d34daf074b 100644 --- a/pkgs/development/interpreters/janet/default.nix +++ b/pkgs/development/interpreters/janet/default.nix @@ -64,15 +64,15 @@ 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; [ andrewchambers peterhoeg ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/development/interpreters/rakudo/default.nix b/pkgs/development/interpreters/rakudo/default.nix index 30bd2df22feee..388c75e7462aa 100644 --- a/pkgs/development/interpreters/rakudo/default.nix +++ b/pkgs/development/interpreters/rakudo/default.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { remove-references-to -t ${stdenv.cc.cc} "$(readlink -f $out/share/perl6/runtime/dynext/libperl6_ops_moar${stdenv.hostPlatform.extensions.sharedLibrary})" ''; - meta = with lib; { + meta = { description = "Raku implementation on top of Moar virtual machine"; homepage = "https://rakudo.org"; - license = licenses.artistic2; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.artistic2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice sgo ]; diff --git a/pkgs/development/interpreters/rakudo/moarvm.nix b/pkgs/development/interpreters/rakudo/moarvm.nix index 227bee72df3d6..2fa6cdb6fc7d1 100644 --- a/pkgs/development/interpreters/rakudo/moarvm.nix +++ b/pkgs/development/interpreters/rakudo/moarvm.nix @@ -43,15 +43,15 @@ stdenv.mkDerivation rec { configureScript = "${perl}/bin/perl ./Configure.pl"; - meta = with lib; { + meta = { description = "VM with adaptive optimization and JIT compilation, built for Rakudo"; homepage = "https://moarvm.org"; - license = licenses.artistic2; - maintainers = with maintainers; [ + license = lib.licenses.artistic2; + maintainers = with lib.maintainers; [ thoughtpolice sgo ]; mainProgram = "moar"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/interpreters/rakudo/nqp.nix b/pkgs/development/interpreters/rakudo/nqp.nix index acb611334a38c..fe1f92ea7ca71 100644 --- a/pkgs/development/interpreters/rakudo/nqp.nix +++ b/pkgs/development/interpreters/rakudo/nqp.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Not Quite Perl -- a lightweight Raku-like environment for virtual machines"; homepage = "https://github.com/Raku/nqp"; - license = licenses.artistic2; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.artistic2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice sgo ]; diff --git a/pkgs/development/interpreters/spidermonkey/common.nix b/pkgs/development/interpreters/spidermonkey/common.nix index ba6861839386e..24c6ffd5382fb 100644 --- a/pkgs/development/interpreters/spidermonkey/common.nix +++ b/pkgs/development/interpreters/spidermonkey/common.nix @@ -235,16 +235,16 @@ stdenv.mkDerivation (finalAttrs: rec { spidermonkey = finalAttrs.finalPackage; }; - meta = with lib; { + meta = { description = "Mozilla's JavaScript engine written in C/C++"; homepage = "https://spidermonkey.dev/"; - license = licenses.mpl20; # TODO: MPL/GPL/LGPL tri-license for 78. - maintainers = with maintainers; [ + license = lib.licenses.mpl20; # TODO: MPL/GPL/LGPL tri-license for 78. + maintainers = with lib.maintainers; [ abbradar lostnet catap ]; - broken = stdenv.hostPlatform.isDarwin && versionAtLeast version "115"; # Requires SDK 13.3 (see #242666). - platforms = platforms.unix; + broken = stdenv.hostPlatform.isDarwin && lib.versionAtLeast version "115"; # Requires SDK 13.3 (see #242666). + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/interpreters/wamr/default.nix b/pkgs/development/interpreters/wamr/default.nix index 2375774f1b358..1c959c5df51d1 100644 --- a/pkgs/development/interpreters/wamr/default.nix +++ b/pkgs/development/interpreters/wamr/default.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation (finalAttrs: { in "${finalAttrs.src.name}/product-mini/platforms/${platform}"; - 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/development/interpreters/wavm/default.nix b/pkgs/development/interpreters/wavm/default.nix index 82ee3fee4eb62..07db9c09112dd 100644 --- a/pkgs/development/interpreters/wavm/default.nix +++ b/pkgs/development/interpreters/wavm/default.nix @@ -21,12 +21,12 @@ llvmPackages.stdenv.mkDerivation (finalAttrs: { llvmPackages.llvm ]; - meta = with lib; { + meta = { description = "WebAssembly Virtual Machine"; mainProgram = "wavm"; homepage = "https://wavm.github.io"; - license = licenses.bsd3; - maintainers = with maintainers; [ ereslibre ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ereslibre ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/libraries/CGAL/default.nix b/pkgs/development/libraries/CGAL/default.nix index 2615fc73d02d1..7048408ac0ec3 100644 --- a/pkgs/development/libraries/CGAL/default.nix +++ b/pkgs/development/libraries/CGAL/default.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/development/libraries/abseil-cpp/202103.nix b/pkgs/development/libraries/abseil-cpp/202103.nix index 823e816e03fdb..ae3d9a6327598 100644 --- a/pkgs/development/libraries/abseil-cpp/202103.nix +++ b/pkgs/development/libraries/abseil-cpp/202103.nix @@ -59,12 +59,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 9b4a4f4a1728a..2af6cf4c68451 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 4ed011a71cc7c..9305fa351d17d 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 e21e9537f7597..a0cacd2db3a20 100644 --- a/pkgs/development/libraries/agda/1lab/default.nix +++ b/pkgs/development/libraries/agda/1lab/default.nix @@ -36,11 +36,11 @@ mkDerivation rec { libraryFile = "1lab.agda-lib"; everythingFile = "_build/all-pages.agda"; - meta = with lib; { + meta = { description = "A formalised, cross-linked reference resource for mathematics done in Homotopy Type Theory "; homepage = src.meta.homepage; - 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 60a74c353f3ea..e8c258da48e57 100644 --- a/pkgs/development/libraries/agda/agda-categories/default.nix +++ b/pkgs/development/libraries/agda/agda-categories/default.nix @@ -33,12 +33,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 4150941f09cbe..a439ea20daebe 100644 --- a/pkgs/development/libraries/agda/agda-prelude/default.nix +++ b/pkgs/development/libraries/agda/agda-prelude/default.nix @@ -22,12 +22,12 @@ mkDerivation rec { cd .. ''; - 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/agdarsec/default.nix b/pkgs/development/libraries/agda/agdarsec/default.nix index 257172ad31782..36ef4bc670333 100644 --- a/pkgs/development/libraries/agda/agdarsec/default.nix +++ b/pkgs/development/libraries/agda/agdarsec/default.nix @@ -25,12 +25,12 @@ mkDerivation rec { 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 ]; broken = true; }; } diff --git a/pkgs/development/libraries/agda/cubical/default.nix b/pkgs/development/libraries/agda/cubical/default.nix index 8d33b36c55eda..6789763f761ec 100644 --- a/pkgs/development/libraries/agda/cubical/default.nix +++ b/pkgs/development/libraries/agda/cubical/default.nix @@ -25,12 +25,12 @@ mkDerivation rec { runHook postBuild ''; - meta = with lib; { + meta = { description = "A 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 40ec014ca1296..699ac6bb96561 100644 --- a/pkgs/development/libraries/agda/functional-linear-algebra/default.nix +++ b/pkgs/development/libraries/agda/functional-linear-algebra/default.nix @@ -22,14 +22,14 @@ mkDerivation rec { sh generate-everything.sh ''; - 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/generic/default.nix b/pkgs/development/libraries/agda/generic/default.nix index 4f2a787dc6672..76119c699800a 100644 --- a/pkgs/development/libraries/agda/generic/default.nix +++ b/pkgs/development/libraries/agda/generic/default.nix @@ -25,14 +25,14 @@ mkDerivation rec { find src -name '*.agda' | sed -e 's/src\///;s/\//./g;s/\.agda$//;s/^/import /' >> Everything.agda ''; - meta = with lib; { + meta = { # Remove if a version compatible with agda 2.6.2 is made broken = true; description = "A library for doing generic programming in Agda"; 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 turion ]; diff --git a/pkgs/development/libraries/agda/generics/default.nix b/pkgs/development/libraries/agda/generics/default.nix index 71219e334612c..015d6587cbbe0 100644 --- a/pkgs/development/libraries/agda/generics/default.nix +++ b/pkgs/development/libraries/agda/generics/default.nix @@ -22,11 +22,11 @@ mkDerivation rec { # everythingFile = "./README.agda"; - 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/alembic/default.nix b/pkgs/development/libraries/alembic/default.nix index 091edf3494127..cca9156ae0928 100644 --- a/pkgs/development/libraries/alembic/default.nix +++ b/pkgs/development/libraries/alembic/default.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { runHook postCheck ''; - 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/development/libraries/allegro/default.nix b/pkgs/development/libraries/allegro/default.nix index c729bd547ab68..f3c3caaa377a6 100644 --- a/pkgs/development/libraries/allegro/default.nix +++ b/pkgs/development/libraries/allegro/default.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DCMAKE_SKIP_RPATH=ON" ]; - 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/applet-window-appmenu/default.nix b/pkgs/development/libraries/applet-window-appmenu/default.nix index ea4507b52d0b2..8fe284faf57ec 100644 --- a/pkgs/development/libraries/applet-window-appmenu/default.nix +++ b/pkgs/development/libraries/applet-window-appmenu/default.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation { libdbusmenu ]; - meta = with lib; { + meta = { description = "Plasma 5 applet in order to show window menu in your panels"; homepage = "https://github.com/psifidotos/applet-window-appmenu"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ greydot ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ greydot ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/applet-window-buttons/default.nix b/pkgs/development/libraries/applet-window-buttons/default.nix index ed67ddd197af6..dce6651cc7783 100644 --- a/pkgs/development/libraries/applet-window-buttons/default.nix +++ b/pkgs/development/libraries/applet-window-buttons/default.nix @@ -42,10 +42,10 @@ mkDerivation rec { plasma-framework ]; - meta = with lib; { + meta = { description = "Plasma 5 applet in order to show window buttons in your panels"; homepage = "https://github.com/psifidotos/applet-window-buttons"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/libraries/apr/default.nix b/pkgs/development/libraries/apr/default.nix index 5df85f8b53676..5f459c579e575 100644 --- a/pkgs/development/libraries/apr/default.nix +++ b/pkgs/development/libraries/apr/default.nix @@ -73,12 +73,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/development/libraries/aqbanking/default.nix b/pkgs/development/libraries/aqbanking/default.nix index 07ee1aef910c9..6030d75c5b40e 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 a779438003320..1af1eb4e982c4 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 e9b85f1db8de2..60d2c83173199 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/aribb25/default.nix b/pkgs/development/libraries/aribb25/default.nix index 2a0601a8875ed..8469ca6dda118 100644 --- a/pkgs/development/libraries/aribb25/default.nix +++ b/pkgs/development/libraries/aribb25/default.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { }) ]; - 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/development/libraries/arrayfire/default.nix b/pkgs/development/libraries/arrayfire/default.nix index c33e6f4cbfe25..1f50b76b5121f 100644 --- a/pkgs/development/libraries/arrayfire/default.nix +++ b/pkgs/development/libraries/arrayfire/default.nix @@ -233,15 +233,15 @@ stdenv.mkDerivation rec { python3 ]; - meta = with lib; { + meta = { description = "General-purpose library for parallel and massively-parallel computations"; longDescription = '' A general-purpose library that simplifies the process of developing software that targets parallel and massively-parallel architectures including CPUs, GPUs, and other hardware acceleration devices."; ''; - license = licenses.bsd3; + license = lib.licenses.bsd3; homepage = "https://arrayfire.com/"; - platforms = platforms.linux; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ chessai twesterhout ]; diff --git a/pkgs/development/libraries/asio/generic.nix b/pkgs/development/libraries/asio/generic.nix index d3ab8aa40038a..5876ae4d72a4d 100644 --- a/pkgs/development/libraries/asio/generic.nix +++ b/pkgs/development/libraries/asio/generic.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation { buildInputs = [ openssl ]; - meta = with lib; { + meta = { homepage = "http://asio.sourceforge.net/"; description = "Cross-platform C++ library for network and low-level I/O programming"; - license = licenses.boost; + license = lib.licenses.boost; broken = stdenv.hostPlatform.isDarwin && lib.versionOlder version "1.16.1"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/attr/default.nix b/pkgs/development/libraries/attr/default.nix index 0b82272007c2f..147b6a5532da4 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/rtaudio/default.nix b/pkgs/development/libraries/audio/rtaudio/default.nix index e289cc2c3f9f3..81f8b5a104587 100644 --- a/pkgs/development/libraries/audio/rtaudio/default.nix +++ b/pkgs/development/libraries/audio/rtaudio/default.nix @@ -45,11 +45,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/audio/rtmidi/default.nix b/pkgs/development/libraries/audio/rtmidi/default.nix index 79bf235d6833b..f5f7135cb3a8d 100644 --- a/pkgs/development/libraries/audio/rtmidi/default.nix +++ b/pkgs/development/libraries/audio/rtmidi/default.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation rec { "-DRTMIDI_API_CORE=${if coremidiSupport then "ON" else "OFF"}" ]; - meta = with lib; { + meta = { description = "Set of C++ classes that provide a cross platform API for realtime MIDI input/output"; homepage = "https://www.music.mcgill.ca/~gary/rtmidi/"; - 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/audio/suil/default.nix b/pkgs/development/libraries/audio/suil/default.nix index a3bf187dd9c2a..83f6fae3bd457 100644 --- a/pkgs/development/libraries/audio/suil/default.nix +++ b/pkgs/development/libraries/audio/suil/default.nix @@ -74,11 +74,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/development/libraries/audiofile/default.nix b/pkgs/development/libraries/audiofile/default.nix index 6fc2379753329..891bab13c2ae9 100644 --- a/pkgs/development/libraries/audiofile/default.nix +++ b/pkgs/development/libraries/audiofile/default.nix @@ -106,11 +106,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/development/libraries/aws-c-cal/default.nix b/pkgs/development/libraries/aws-c-cal/default.nix index 8f485a04fb2b3..f64c0aa593389 100644 --- a/pkgs/development/libraries/aws-c-cal/default.nix +++ b/pkgs/development/libraries/aws-c-cal/default.nix @@ -43,11 +43,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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ orivej ]; }; }) diff --git a/pkgs/development/libraries/aws-c-io/default.nix b/pkgs/development/libraries/aws-c-io/default.nix index ef2a51754de24..b19731d5e28ae 100644 --- a/pkgs/development/libraries/aws-c-io/default.nix +++ b/pkgs/development/libraries/aws-c-io/default.nix @@ -39,11 +39,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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/development/libraries/botan/default.nix b/pkgs/development/libraries/botan/default.nix index 3de632e7b2be2..4933399241ac9 100644 --- a/pkgs/development/libraries/botan/default.nix +++ b/pkgs/development/libraries/botan/default.nix @@ -107,16 +107,16 @@ let 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 thillux ]; - platforms = platforms.unix; - license = licenses.bsd2; + platforms = lib.platforms.unix; + license = lib.licenses.bsd2; }; }); in diff --git a/pkgs/development/libraries/box2d/default.nix b/pkgs/development/libraries/box2d/default.nix index 197d9313de27a..c42cb09251828 100644 --- a/pkgs/development/libraries/box2d/default.nix +++ b/pkgs/development/libraries/box2d/default.nix @@ -71,11 +71,11 @@ stdenv.mkDerivation (finalAttrs: { # tests are broken on 2.4.2 and 2.3.x doesn't have tests: https://github.com/erincatto/box2d/issues/677 doCheck = lib.versionAtLeast finalAttrs.version "2.4.2"; - meta = with lib; { + meta = { description = "2D physics engine"; homepage = "https://box2d.org/"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.unix; - license = licenses.zlib; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.unix; + license = lib.licenses.zlib; }; }) diff --git a/pkgs/development/libraries/bullet/default.nix b/pkgs/development/libraries/bullet/default.nix index 63be83763eb29..4ad3ee29f3049 100644 --- a/pkgs/development/libraries/bullet/default.nix +++ b/pkgs/development/libraries/bullet/default.nix @@ -62,15 +62,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/development/libraries/bullet/roboschool-fork.nix b/pkgs/development/libraries/bullet/roboschool-fork.nix index 94ce4a3f865d0..0bf5c5acb8462 100644 --- a/pkgs/development/libraries/bullet/roboschool-fork.nix +++ b/pkgs/development/libraries/bullet/roboschool-fork.nix @@ -60,15 +60,15 @@ stdenv.mkDerivation { "-DBUILD_UNIT_TESTS=OFF" ]; - 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; - platforms = platforms.unix; + license = lib.licenses.zlib; + platforms = lib.platforms.unix; # /tmp/nix-build-bullet-2019-03-27.drv-0/source/src/Bullet3Common/b3Vector3.h:297:7: error: argument value 10880 is outside the valid range [0, 255] [-Wargument-outside-range] # y = b3_splat_ps(y, 0x80); broken = (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64); diff --git a/pkgs/development/libraries/cairomm/1.16.nix b/pkgs/development/libraries/cairomm/1.16.nix index 9ffbc38316a38..6cce35f48cb33 100644 --- a/pkgs/development/libraries/cairomm/1.16.nix +++ b/pkgs/development/libraries/cairomm/1.16.nix @@ -53,14 +53,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 ]; - maintainers = teams.gnome.members; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/cairomm/default.nix b/pkgs/development/libraries/cairomm/default.nix index 6c7046a15e537..a1193aee0bb2e 100644 --- a/pkgs/development/libraries/cairomm/default.nix +++ b/pkgs/development/libraries/cairomm/default.nix @@ -55,13 +55,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 c0aa85bcf50cd..59b52ecfa25ce 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/catch2/default.nix b/pkgs/development/libraries/catch2/default.nix index 087ad0923f268..2163b36963155 100644 --- a/pkgs/development/libraries/catch2/default.nix +++ b/pkgs/development/libraries/catch2/default.nix @@ -20,13 +20,13 @@ 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; - maintainers = with maintainers; [ + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ edwtjo ]; - platforms = with platforms; unix ++ windows; + platforms = with lib.platforms; unix ++ windows; }; } diff --git a/pkgs/development/libraries/cctz/default.nix b/pkgs/development/libraries/cctz/default.nix index 2786ea7b1dca7..127e0a80423c8 100644 --- a/pkgs/development/libraries/cctz/default.nix +++ b/pkgs/development/libraries/cctz/default.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; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/celt/generic.nix b/pkgs/development/libraries/celt/generic.nix index 46a92edc2f762..86d3d4987b6bc 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 4917724278c38..a011a92bc0204 100644 --- a/pkgs/development/libraries/ceres-solver/default.nix +++ b/pkgs/development/libraries/ceres-solver/default.nix @@ -58,11 +58,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/cxxtest/default.nix b/pkgs/development/libraries/cxxtest/default.nix index ae1e9c302000d..fa14f9918dc74 100644 --- a/pkgs/development/libraries/cxxtest/default.nix +++ b/pkgs/development/libraries/cxxtest/default.nix @@ -41,12 +41,12 @@ python3Packages.buildPythonApplication rec { dontWrapPythonPrograms = true; - meta = with lib; { + meta = { homepage = "http://cxxtest.com"; 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/dbus-sharp-glib/dbus-sharp-glib-1.0.nix b/pkgs/development/libraries/dbus-sharp-glib/dbus-sharp-glib-1.0.nix index f5cad9f4bf7af..54385c459935c 100644 --- a/pkgs/development/libraries/dbus-sharp-glib/dbus-sharp-glib-1.0.nix +++ b/pkgs/development/libraries/dbus-sharp-glib/dbus-sharp-glib-1.0.nix @@ -31,9 +31,9 @@ stdenv.mkDerivation rec { dontStrip = true; - meta = with lib; { + meta = { description = "D-Bus for .NET: GLib integration module"; - platforms = platforms.linux; - license = licenses.mit; + platforms = lib.platforms.linux; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/libraries/dbus-sharp-glib/default.nix b/pkgs/development/libraries/dbus-sharp-glib/default.nix index 9e5762e6cd526..d7d23504cd97d 100644 --- a/pkgs/development/libraries/dbus-sharp-glib/default.nix +++ b/pkgs/development/libraries/dbus-sharp-glib/default.nix @@ -31,9 +31,9 @@ stdenv.mkDerivation rec { dontStrip = true; - meta = with lib; { + meta = { description = "D-Bus for .NET: GLib integration module"; - platforms = platforms.linux; - license = licenses.mit; + platforms = lib.platforms.linux; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/libraries/dbus-sharp/dbus-sharp-1.0.nix b/pkgs/development/libraries/dbus-sharp/dbus-sharp-1.0.nix index 55a9ddbc727c2..38911b74482eb 100644 --- a/pkgs/development/libraries/dbus-sharp/dbus-sharp-1.0.nix +++ b/pkgs/development/libraries/dbus-sharp/dbus-sharp-1.0.nix @@ -27,9 +27,9 @@ stdenv.mkDerivation rec { dontStrip = true; - meta = with lib; { + meta = { description = "D-Bus for .NET"; - platforms = platforms.linux; - license = licenses.mit; + platforms = lib.platforms.linux; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/libraries/dbus-sharp/default.nix b/pkgs/development/libraries/dbus-sharp/default.nix index ba20951653eb2..fa3b17b053869 100644 --- a/pkgs/development/libraries/dbus-sharp/default.nix +++ b/pkgs/development/libraries/dbus-sharp/default.nix @@ -30,9 +30,9 @@ stdenv.mkDerivation rec { dontStrip = true; - meta = with lib; { + meta = { description = "D-Bus for .NET"; - platforms = platforms.linux; - license = licenses.mit; + platforms = lib.platforms.linux; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/libraries/dee/default.nix b/pkgs/development/libraries/dee/default.nix index 160263e8c4755..157db02be1f46 100644 --- a/pkgs/development/libraries/dee/default.nix +++ b/pkgs/development/libraries/dee/default.nix @@ -68,12 +68,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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/libraries/discord-rpc/default.nix b/pkgs/development/libraries/discord-rpc/default.nix index 7b85ec1a18d6a..1af7080ca6057 100644 --- a/pkgs/development/libraries/discord-rpc/default.nix +++ b/pkgs/development/libraries/discord-rpc/default.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { }) ]; - 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/development/libraries/draco/tinygltf.nix b/pkgs/development/libraries/draco/tinygltf.nix index bce14b2d65d09..85433ff963ad6 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 bb23d12104047..c9d680d41b5b2 100644 --- a/pkgs/development/libraries/drumstick/default.nix +++ b/pkgs/development/libraries/drumstick/default.nix @@ -71,11 +71,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 0fc52796a0545..67dec09f6d517 100644 --- a/pkgs/development/libraries/eccodes/default.nix +++ b/pkgs/development/libraries/eccodes/default.nix @@ -71,11 +71,11 @@ stdenv.mkDerivation rec { ctest -R "eccodes_t_(definitions|calendar|unit_tests|md5|uerra|grib_2nd_order_numValues|julian)" -VV ''; - meta = with lib; { + meta = { homepage = "https://confluence.ecmwf.int/display/ECC/"; - license = licenses.asl20; - maintainers = with maintainers; [ ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.unix; description = "ECMWF library for reading and writing GRIB, BUFR and GTS abbreviated header"; }; } diff --git a/pkgs/development/libraries/eigen/2.0.nix b/pkgs/development/libraries/eigen/2.0.nix index 37f1017a2531d..e7936904351cb 100644 --- a/pkgs/development/libraries/eigen/2.0.nix +++ b/pkgs/development/libraries/eigen/2.0.nix @@ -18,14 +18,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; [ sander raskin ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/eigen/default.nix b/pkgs/development/libraries/eigen/default.nix index e612add0c7b1e..393425285c185 100644 --- a/pkgs/development/libraries/eigen/default.nix +++ b/pkgs/development/libraries/eigen/default.nix @@ -37,14 +37,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; [ sander raskin ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/embree/2.x.nix b/pkgs/development/libraries/embree/2.x.nix index c3a0adf867e9c..59c3aa5bfed42 100644 --- a/pkgs/development/libraries/embree/2.x.nix +++ b/pkgs/development/libraries/embree/2.x.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation { libX11 libpthreadstubs ]; - meta = with lib; { + meta = { description = "High performance ray tracing kernels from Intel"; homepage = "https://embree.github.io/"; - maintainers = with maintainers; [ hodapp ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ hodapp ]; + license = lib.licenses.asl20; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/development/libraries/embree/default.nix b/pkgs/development/libraries/embree/default.nix index 03f2a348f11d9..b3b2c59590b76 100644 --- a/pkgs/development/libraries/embree/default.nix +++ b/pkgs/development/libraries/embree/default.nix @@ -57,14 +57,14 @@ stdenv.mkDerivation rec { libpthreadstubs ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ glib ]; - meta = with lib; { + meta = { description = "High performance ray tracing kernels from Intel"; homepage = "https://embree.github.io/"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ hodapp gebner ]; - license = licenses.asl20; - platforms = platforms.unix; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/enchant/2.x.nix b/pkgs/development/libraries/enchant/2.x.nix index c5dde2033dc38..4b999a6a2b789 100644 --- a/pkgs/development/libraries/enchant/2.x.nix +++ b/pkgs/development/libraries/enchant/2.x.nix @@ -89,11 +89,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 8e589d0ec81d0..d1432913b2568 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/flatbuffers/23.nix b/pkgs/development/libraries/flatbuffers/23.nix index 4e30c3dd37b69..3befe98ae47e1 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 71c47c43089eb..7bb89f18b6258 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/flint/default.nix b/pkgs/development/libraries/flint/default.nix index daeba16167983..34786e3976b44 100644 --- a/pkgs/development/libraries/flint/default.nix +++ b/pkgs/development/libraries/flint/default.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Fast Library for Number Theory"; - license = licenses.gpl2Plus; - maintainers = teams.sage.members; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.sage.members; + platforms = lib.platforms.unix; homepage = "https://www.flintlib.org/"; downloadPage = "https://www.flintlib.org/downloads.html"; }; diff --git a/pkgs/development/libraries/fltk/common.nix b/pkgs/development/libraries/fltk/common.nix index 19ac830983371..2f8524ac43bc0 100644 --- a/pkgs/development/libraries/fltk/common.nix +++ b/pkgs/development/libraries/fltk/common.nix @@ -209,12 +209,12 @@ stdenv.mkDerivation rec { --replace "/$out/" "/" ''; - meta = with lib; { + meta = { description = "C++ cross-platform lightweight GUI library"; homepage = "https://www.fltk.org"; - platforms = platforms.unix; + platforms = lib.platforms.unix; # LGPL2 with static linking exception # https://www.fltk.org/COPYING.php - license = licenses.lgpl2Only; + license = lib.licenses.lgpl2Only; }; } diff --git a/pkgs/development/libraries/fox/default.nix b/pkgs/development/libraries/fox/default.nix index 26ecbc9ed7fd1..b99bd50012186 100644 --- a/pkgs/development/libraries/fox/default.nix +++ b/pkgs/development/libraries/fox/default.nix @@ -47,7 +47,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. @@ -56,8 +56,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/g2o/default.nix b/pkgs/development/libraries/g2o/default.nix index 0503edc339991..2b16053da9132 100644 --- a/pkgs/development/libraries/g2o/default.nix +++ b/pkgs/development/libraries/g2o/default.nix @@ -62,16 +62,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 247d5d76b4a48..6a26fc141dbad 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/gd/default.nix b/pkgs/development/libraries/gd/default.nix index d7b50cce5d527..c39e24d6943e1 100644 --- a/pkgs/development/libraries/gd/default.nix +++ b/pkgs/development/libraries/gd/default.nix @@ -80,11 +80,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/development/libraries/gdk-pixbuf/default.nix b/pkgs/development/libraries/gdk-pixbuf/default.nix index 37e90255a403f..6c4ac60986774 100644 --- a/pkgs/development/libraries/gdk-pixbuf/default.nix +++ b/pkgs/development/libraries/gdk-pixbuf/default.nix @@ -167,13 +167,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; - maintainers = teams.gnome.members; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; 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 61a4c4c2ef646..3046f380a410d 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 b171d53d8d778..0f0f79584f60f 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 078d21d87c6af..467ec4bb05328 100644 --- a/pkgs/development/libraries/gecode/default.nix +++ b/pkgs/development/libraries/gecode/default.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { mpfr ] ++ 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 b81cbf65263aa..908458d6e6090 100644 --- a/pkgs/development/libraries/gegl/default.nix +++ b/pkgs/development/libraries/gegl/default.nix @@ -132,11 +132,11 @@ stdenv.mkDerivation (finalAttrs: { inherit gimp; }; - 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/gensio/default.nix b/pkgs/development/libraries/gensio/default.nix index ec864c12225b8..49bbea8217b40 100644 --- a/pkgs/development/libraries/gensio/default.nix +++ b/pkgs/development/libraries/gensio/default.nix @@ -34,12 +34,12 @@ 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; [ emantor ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ emantor ]; mainProgram = "gensiot"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/geos/3.9.nix b/pkgs/development/libraries/geos/3.9.nix index 70cfa917993b0..04f2487a787b0 100644 --- a/pkgs/development/libraries/geos/3.9.nix +++ b/pkgs/development/libraries/geos/3.9.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "C++ port of the Java Topology Suite (JTS)"; mainProgram = "geos-config"; homepage = "https://trac.osgeo.org/geos"; - license = licenses.lgpl21Only; + license = lib.licenses.lgpl21Only; pkgConfigModules = [ "geos" ]; maintainers = with lib.maintainers; [ willcohen diff --git a/pkgs/development/libraries/glew/1.10.nix b/pkgs/development/libraries/glew/1.10.nix index f6198467aeecf..8da2ab77bbc51 100644 --- a/pkgs/development/libraries/glew/1.10.nix +++ b/pkgs/development/libraries/glew/1.10.nix @@ -66,10 +66,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/glfw/2.x.nix b/pkgs/development/libraries/glfw/2.x.nix index cef83c64cad5d..3b96505771c50 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/glibmm/2.68.nix b/pkgs/development/libraries/glibmm/2.68.nix index cb7054fe3398d..ceac5f558d87c 100644 --- a/pkgs/development/libraries/glibmm/2.68.nix +++ b/pkgs/development/libraries/glibmm/2.68.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "C++ interface to the GLib library"; homepage = "https://gtkmm.org/"; - license = licenses.lgpl2Plus; - maintainers = teams.gnome.members ++ (with maintainers; [ raskin ]); - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + maintainers = lib.teams.gnome.members ++ (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 313a2a8f1c518..84678f897d7f1 100644 --- a/pkgs/development/libraries/gmime/2.nix +++ b/pkgs/development/libraries/gmime/2.nix @@ -58,11 +58,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/goocanvas/2.x.nix b/pkgs/development/libraries/goocanvas/2.x.nix index 0491a02ab860d..d115c990f00f7 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/3.x.nix b/pkgs/development/libraries/goocanvas/3.x.nix index d1f6aaee52a84..7f70a38808d6c 100644 --- a/pkgs/development/libraries/goocanvas/3.x.nix +++ b/pkgs/development/libraries/goocanvas/3.x.nix @@ -53,11 +53,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; # https://gitlab.gnome.org/GNOME/goocanvas/-/issues/12 - maintainers = with maintainers; [ bobby285271 ]; - platforms = platforms.unix; + license = lib.licenses.lgpl2; # https://gitlab.gnome.org/GNOME/goocanvas/-/issues/12 + maintainers = with lib.maintainers; [ bobby285271 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/goocanvas/default.nix b/pkgs/development/libraries/goocanvas/default.nix index 6e4655a872e31..bcf2f1c752b36 100644 --- a/pkgs/development/libraries/goocanvas/default.nix +++ b/pkgs/development/libraries/goocanvas/default.nix @@ -33,10 +33,10 @@ 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; platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/gsettings-qt/default.nix b/pkgs/development/libraries/gsettings-qt/default.nix index 119932528cef0..ec271431d1ca5 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/gsignond/default.nix b/pkgs/development/libraries/gsignond/default.nix index f3f992ea8dac0..629f691c9cd3b 100644 --- a/pkgs/development/libraries/gsignond/default.nix +++ b/pkgs/development/libraries/gsignond/default.nix @@ -73,13 +73,13 @@ let ./plugin-load-env.patch ]; - meta = with lib; { + meta = { description = "D-Bus service which performs user authentication on behalf of its clients"; mainProgram = "gsignond"; homepage = "https://gitlab.com/accounts-sso/gsignond"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }; diff --git a/pkgs/development/libraries/gsignond/plugins/lastfm.nix b/pkgs/development/libraries/gsignond/plugins/lastfm.nix index 9f55e89e32b64..1ac7b78563838 100644 --- a/pkgs/development/libraries/gsignond/plugins/lastfm.nix +++ b/pkgs/development/libraries/gsignond/plugins/lastfm.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation { PKG_CONFIG_GSIGNOND_GPLUGINSDIR = "${placeholder "out"}/lib/gsignond/gplugins"; - meta = with lib; { + meta = { description = "Plugin for the Accounts-SSO gSignOn daemon that handles Last.FM credentials"; homepage = "https://gitlab.com/accounts-sso/gsignond-plugin-lastfm"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/gsignond/plugins/mail.nix b/pkgs/development/libraries/gsignond/plugins/mail.nix index 610f3e100de2f..dd4e6295dcc10 100644 --- a/pkgs/development/libraries/gsignond/plugins/mail.nix +++ b/pkgs/development/libraries/gsignond/plugins/mail.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { PKG_CONFIG_GSIGNOND_GPLUGINSDIR = "${placeholder "out"}/lib/gsignond/gplugins"; - meta = with lib; { + meta = { description = "Plugin for the Accounts-SSO gSignOn daemon that handles E-Mail credentials"; homepage = "https://gitlab.com/accounts-sso/gsignond-plugin-mail"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/gsignond/plugins/oauth.nix b/pkgs/development/libraries/gsignond/plugins/oauth.nix index a26ce6caa1c6b..0e39bf113f0a9 100644 --- a/pkgs/development/libraries/gsignond/plugins/oauth.nix +++ b/pkgs/development/libraries/gsignond/plugins/oauth.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation { PKG_CONFIG_GSIGNOND_GPLUGINSDIR = "${placeholder "out"}/lib/gsignond/gplugins"; - meta = with lib; { + meta = { description = "Plugin for the Accounts-SSO gSignOn daemon that handles the OAuth 1.0 and 2.0 authentication protocols"; homepage = "https://gitlab.com/accounts-sso/gsignond-plugin-oa"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/gsignond/plugins/sasl.nix b/pkgs/development/libraries/gsignond/plugins/sasl.nix index 5a89d996743ab..331c59f463aed 100644 --- a/pkgs/development/libraries/gsignond/plugins/sasl.nix +++ b/pkgs/development/libraries/gsignond/plugins/sasl.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation { PKG_CONFIG_GSIGNOND_GPLUGINSDIR = "${placeholder "out"}/lib/gsignond/gplugins"; - meta = with lib; { + meta = { description = "Plugin for the Accounts-SSO gSignOn daemon that handles the SASL authentication protocol"; homepage = "https://gitlab.com/accounts-sso/gsignond-plugin-sasl"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/gsmlib/default.nix b/pkgs/development/libraries/gsmlib/default.nix index 673ede3f9d571..8db2fd46f45d6 100644 --- a/pkgs/development/libraries/gsmlib/default.nix +++ b/pkgs/development/libraries/gsmlib/default.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { "-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/development/libraries/gssdp/1.6.nix b/pkgs/development/libraries/gssdp/1.6.nix index 54eb043b65ed9..14777d6303ba2 100644 --- a/pkgs/development/libraries/gssdp/1.6.nix +++ b/pkgs/development/libraries/gssdp/1.6.nix @@ -81,12 +81,12 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "GObject-based API for handling resource discovery and announcement over SSDP"; homepage = "http://www.gupnp.org/"; - license = licenses.lgpl2Plus; - maintainers = teams.gnome.members; - platforms = platforms.all; + license = lib.licenses.lgpl2Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/gssdp/default.nix b/pkgs/development/libraries/gssdp/default.nix index ff30e8748643a..bb4f4c4a34a6e 100644 --- a/pkgs/development/libraries/gssdp/default.nix +++ b/pkgs/development/libraries/gssdp/default.nix @@ -100,11 +100,11 @@ 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; - maintainers = teams.gnome.members; - platforms = platforms.all; + license = lib.licenses.lgpl2Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/gssdp/tools.nix b/pkgs/development/libraries/gssdp/tools.nix index 7708bb6991a27..fd61fd763d0c3 100644 --- a/pkgs/development/libraries/gssdp/tools.nix +++ b/pkgs/development/libraries/gssdp/tools.nix @@ -41,12 +41,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; maintainers = gssdp_1_6.meta.maintainers; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/gstreamer/gstreamermm/default.nix b/pkgs/development/libraries/gstreamer/gstreamermm/default.nix index 462a75392cca0..fdedde5dcd81d 100644 --- a/pkgs/development/libraries/gstreamer/gstreamermm/default.nix +++ b/pkgs/development/libraries/gstreamer/gstreamermm/default.nix @@ -52,12 +52,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 a3b36672295cf..eebda70d241bb 100644 --- a/pkgs/development/libraries/gstreamer/icamerasrc/default.nix +++ b/pkgs/development/libraries/gstreamer/icamerasrc/default.nix @@ -54,10 +54,10 @@ stdenv.mkDerivation rec { 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/rs/default.nix b/pkgs/development/libraries/gstreamer/rs/default.nix index 51fc2b168d935..e47007eef3c0f 100644 --- a/pkgs/development/libraries/gstreamer/rs/default.nix +++ b/pkgs/development/libraries/gstreamer/rs/default.nix @@ -275,17 +275,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/gtk-mac-integration/default.nix b/pkgs/development/libraries/gtk-mac-integration/default.nix index 383fab6b5f68d..ccbaad4424ca0 100644 --- a/pkgs/development/libraries/gtk-mac-integration/default.nix +++ b/pkgs/development/libraries/gtk-mac-integration/default.nix @@ -35,11 +35,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 = with maintainers; [ matthewbauer ]; - platforms = platforms.darwin; + maintainers = with lib.maintainers; [ matthewbauer ]; + platforms = lib.platforms.darwin; }; } diff --git a/pkgs/development/libraries/gtk-sharp/2.0.nix b/pkgs/development/libraries/gtk-sharp/2.0.nix index 8981e4df39815..9034d06c32173 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/gtkmm/4.x.nix b/pkgs/development/libraries/gtkmm/4.x.nix index 75a54e47625db..9dfa16c9089d3 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,8 +90,8 @@ stdenv.mkDerivation rec { tutorial. ''; homepage = "https://gtkmm.org/"; - license = licenses.lgpl2Plus; - maintainers = teams.gnome.members ++ (with maintainers; [ raskin ]); - platforms = platforms.unix; + license = lib.licenses.lgpl2Plus; + maintainers = lib.teams.gnome.members ++ (with lib.maintainers; [ raskin ]); + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/gtksourceview/3.x.nix b/pkgs/development/libraries/gtksourceview/3.x.nix index e3f4c1793f795..863561963560f 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; - maintainers = teams.gnome.members; + platforms = with lib.platforms; linux ++ darwin; + license = lib.licenses.lgpl21; + maintainers = lib.teams.gnome.members; }; }) diff --git a/pkgs/development/libraries/gtksourceview/4.x.nix b/pkgs/development/libraries/gtksourceview/4.x.nix index e29f0ccdf0c85..efe3d6830486e 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; - maintainers = teams.gnome.members; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; }; }) diff --git a/pkgs/development/libraries/gtksourceview/5.x.nix b/pkgs/development/libraries/gtksourceview/5.x.nix index 7d951f7bc77e8..e058676f95629 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; - maintainers = teams.gnome.members; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; }; }) diff --git a/pkgs/development/libraries/gtksourceviewmm/4.x.nix b/pkgs/development/libraries/gtksourceviewmm/4.x.nix index 021dde6d02a5b..e40757fd51d8e 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; - maintainers = teams.gnome.members; + license = lib.licenses.lgpl2; + maintainers = lib.teams.gnome.members; }; } diff --git a/pkgs/development/libraries/gtksourceviewmm/default.nix b/pkgs/development/libraries/gtksourceviewmm/default.nix index 975ac5bf685f5..811d3ce73b2e8 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 2c9fcafad2015..0d379530af3a2 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 b0ad6cece22da..ff777f690870c 100644 --- a/pkgs/development/libraries/gtkspell/default.nix +++ b/pkgs/development/libraries/gtkspell/default.nix @@ -46,10 +46,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 65033624639f7..527b5974c5c26 100644 --- a/pkgs/development/libraries/gupnp/1.6.nix +++ b/pkgs/development/libraries/gupnp/1.6.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { }; }; - 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.linux; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/gupnp/default.nix b/pkgs/development/libraries/gupnp/default.nix index 52e09d2c916e8..c6ccc7a3293ef 100644 --- a/pkgs/development/libraries/gupnp/default.nix +++ b/pkgs/development/libraries/gupnp/default.nix @@ -96,11 +96,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/herqq/default.nix b/pkgs/development/libraries/herqq/default.nix index d994c290486d8..5c902bc3ee8f8 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/hivex/default.nix b/pkgs/development/libraries/hivex/default.nix index 79315f1826890..4c8b7c2bc2467 100644 --- a/pkgs/development/libraries/hivex/default.nix +++ b/pkgs/development/libraries/hivex/default.nix @@ -60,11 +60,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/development/libraries/hspell/default.nix b/pkgs/development/libraries/hspell/default.nix index 42002b52ccfca..8ec391c601c94 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 daa3f86b2e6de..ca140e9b63f13 100644 --- a/pkgs/development/libraries/hyphen/default.nix +++ b/pkgs/development/libraries/hyphen/default.nix @@ -41,16 +41,16 @@ 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 ]; - maintainers = with maintainers; [ Br1ght0ne ]; + maintainers = with lib.maintainers; [ Br1ght0ne ]; }; } diff --git a/pkgs/development/libraries/icu/make-icu.nix b/pkgs/development/libraries/icu/make-icu.nix index 26058b27579e3..46e8cf2d43693 100644 --- a/pkgs/development/libraries/icu/make-icu.nix +++ b/pkgs/development/libraries/icu/make-icu.nix @@ -75,16 +75,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/imgui/demo/default.nix b/pkgs/development/libraries/imgui/demo/default.nix index a250155758aa3..262eaab43b6e5 100644 --- a/pkgs/development/libraries/imgui/demo/default.nix +++ b/pkgs/development/libraries/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/development/libraries/indicator-application/gtk2.nix b/pkgs/development/libraries/indicator-application/gtk2.nix index edb686b3a807c..226b1e830fd13 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 2b46041ae6422..1d84dba554f9d 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 71d0e2f5408d0..b42952e46d956 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/java/libmatthew-java/default.nix b/pkgs/development/libraries/java/libmatthew-java/default.nix index 60bc1231f5ff0..7fc8ca6a3e4e0 100644 --- a/pkgs/development/libraries/java/libmatthew-java/default.nix +++ b/pkgs/development/libraries/java/libmatthew-java/default.nix @@ -17,9 +17,9 @@ stdenv.mkDerivation rec { PREFIX = "\${out}"; buildInputs = [ jdk ]; - meta = with lib; { - platforms = platforms.linux; - maintainers = [ maintainers.sander ]; - license = licenses.mit; + meta = { + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sander ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/libraries/jemalloc/default.nix b/pkgs/development/libraries/jemalloc/default.nix index 4939d25579085..8e35fdb738f9c 100644 --- a/pkgs/development/libraries/jemalloc/default.nix +++ b/pkgs/development/libraries/jemalloc/default.nix @@ -60,14 +60,14 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - 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 a9ce1f68272d0..078b80913b361 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/kdb/default.nix b/pkgs/development/libraries/kdb/default.nix index dd2e88575c7b7..152fad3673698 100644 --- a/pkgs/development/libraries/kdb/default.nix +++ b/pkgs/development/libraries/kdb/default.nix @@ -50,11 +50,11 @@ mkDerivation rec { propagatedBuildInputs = [ qtbase ]; - meta = with lib; { + meta = { description = "Database connectivity and creation framework for various database vendors"; mainProgram = "kdb3_sqlite3_dump"; - 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/kddockwidgets/default.nix b/pkgs/development/libraries/kddockwidgets/default.nix index 23a401804dbb6..206fe69954a85 100644 --- a/pkgs/development/libraries/kddockwidgets/default.nix +++ b/pkgs/development/libraries/kddockwidgets/default.nix @@ -38,13 +38,13 @@ 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; [ _1000teslas ]; + maintainers = with lib.maintainers; [ _1000teslas ]; }; } diff --git a/pkgs/development/libraries/kerberos/heimdal.nix b/pkgs/development/libraries/kerberos/heimdal.nix index f8742d5183ae8..821a75973b9ad 100644 --- a/pkgs/development/libraries/kerberos/heimdal.nix +++ b/pkgs/development/libraries/kerberos/heimdal.nix @@ -196,12 +196,12 @@ 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; [ h7x4 ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ h7x4 ]; }; } diff --git a/pkgs/development/libraries/keybinder3/default.nix b/pkgs/development/libraries/keybinder3/default.nix index 6b95c5b46b243..c1d19455c5979 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/kf5gpgmepp/default.nix b/pkgs/development/libraries/kf5gpgmepp/default.nix index 5a4a7d70e0229..c084bbe278ee4 100644 --- a/pkgs/development/libraries/kf5gpgmepp/default.nix +++ b/pkgs/development/libraries/kf5gpgmepp/default.nix @@ -28,9 +28,9 @@ mkDerivation { nativeBuildInputs = [ cmake ]; - meta = with lib; { - license = [ licenses.lgpl2 ]; - platforms = platforms.linux; + meta = { + license = [ lib.licenses.lgpl2 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/kimageannotator/default.nix b/pkgs/development/libraries/kimageannotator/default.nix index ea46ff3f11552..734f57476dc78 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 ed67dcb791629..32efba9e6c01e 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/kompute/default.nix b/pkgs/development/libraries/kompute/default.nix index cd273aa1cb14f..bafc6cdf36f71 100644 --- a/pkgs/development/libraries/kompute/default.nix +++ b/pkgs/development/libraries/kompute/default.nix @@ -50,7 +50,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 @@ -60,8 +60,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/development/libraries/kpeoplevcard/default.nix b/pkgs/development/libraries/kpeoplevcard/default.nix index 834556e3e1ca2..172cd55cb81af 100644 --- a/pkgs/development/libraries/kpeoplevcard/default.nix +++ b/pkgs/development/libraries/kpeoplevcard/default.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation (finalAttrs: { extra-cmake-modules ]; - meta = with lib; { + meta = { description = "Pulseaudio bindings for Qt"; homepage = "https://github.com/KDE/kpeoplevcard"; - license = with licenses; [ lgpl2 ]; - maintainers = with maintainers; [ doronbehar ]; + license = with lib.licenses; [ lgpl2 ]; + maintainers = with lib.maintainers; [ doronbehar ]; }; }) diff --git a/pkgs/development/libraries/kproperty/default.nix b/pkgs/development/libraries/kproperty/default.nix index b1a9aaa2c6e4b..d3a12b6455b4c 100644 --- a/pkgs/development/libraries/kproperty/default.nix +++ b/pkgs/development/libraries/kproperty/default.nix @@ -32,10 +32,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/default.nix b/pkgs/development/libraries/kquickimageedit/default.nix index 358105ed2c1b2..4ae83470d0551 100644 --- a/pkgs/development/libraries/kquickimageedit/default.nix +++ b/pkgs/development/libraries/kquickimageedit/default.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/kreport/default.nix b/pkgs/development/libraries/kreport/default.nix index ec2d52647523a..b0518e0749912 100644 --- a/pkgs/development/libraries/kreport/default.nix +++ b/pkgs/development/libraries/kreport/default.nix @@ -37,10 +37,10 @@ mkDerivation rec { python3 ]; - meta = with lib; { + meta = { description = "Framework for creation and generation of reports in multiple formats"; - 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/ktextaddons/default.nix b/pkgs/development/libraries/ktextaddons/default.nix index a0ce40842593a..4292747254093 100644 --- a/pkgs/development/libraries/ktextaddons/default.nix +++ b/pkgs/development/libraries/ktextaddons/default.nix @@ -33,10 +33,10 @@ mkDerivation rec { qtkeychain ]; - meta = with lib; { + meta = { description = "Various text handling addons for KDE applications"; homepage = "https://invent.kde.org/libraries/ktextaddons/"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/libraries/kuserfeedback/default.nix b/pkgs/development/libraries/kuserfeedback/default.nix index f0114c8e274a6..f4da50b1fabbc 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/kweathercore/default.nix b/pkgs/development/libraries/kweathercore/default.nix index 69fd778b59a55..b2a3d9c344266 100644 --- a/pkgs/development/libraries/kweathercore/default.nix +++ b/pkgs/development/libraries/kweathercore/default.nix @@ -28,8 +28,8 @@ mkDerivation rec { nativeBuildInputs = [ extra-cmake-modules ]; - meta = with lib; { - license = [ licenses.cc0 ]; + meta = { + license = [ lib.licenses.cc0 ]; maintainers = [ ]; description = '' Library to facilitate retrieval of weather information including forecasts and alerts diff --git a/pkgs/development/libraries/l-smash/default.nix b/pkgs/development/libraries/l-smash/default.nix index 1ccac4b6fa759..d4038a91db2ea 100644 --- a/pkgs/development/libraries/l-smash/default.nix +++ b/pkgs/development/libraries/l-smash/default.nix @@ -23,11 +23,11 @@ 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; }; } diff --git a/pkgs/development/libraries/languagemachines/frogdata.nix b/pkgs/development/libraries/languagemachines/frogdata.nix index 76ff3c1f4f188..0456bdd29fd3b 100644 --- a/pkgs/development/libraries/languagemachines/frogdata.nix +++ b/pkgs/development/libraries/languagemachines/frogdata.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation { sh bootstrap.sh ''; - 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/development/libraries/languagemachines/ticcutils.nix b/pkgs/development/libraries/languagemachines/ticcutils.nix index 2c828e557d9d0..eb2b419201243 100644 --- a/pkgs/development/libraries/languagemachines/ticcutils.nix +++ b/pkgs/development/libraries/languagemachines/ticcutils.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation { ]; preConfigure = "sh bootstrap.sh"; - 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/development/libraries/ldutils/default.nix b/pkgs/development/libraries/ldutils/default.nix index 8873c48e98a6f..2cadde70605d2 100644 --- a/pkgs/development/libraries/ldutils/default.nix +++ b/pkgs/development/libraries/ldutils/default.nix @@ -31,11 +31,11 @@ mkDerivation rec { 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/libadwaita/default.nix b/pkgs/development/libraries/libadwaita/default.nix index c71dc03bc733e..6554ea79e2079 100644 --- a/pkgs/development/libraries/libadwaita/default.nix +++ b/pkgs/development/libraries/libadwaita/default.nix @@ -136,14 +136,14 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { changelog = "https://gitlab.gnome.org/GNOME/libadwaita/-/blob/${finalAttrs.src.rev}/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 = teams.gnome.members ++ (with maintainers; [ dotlambda ]); - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members ++ (with lib.maintainers; [ dotlambda ]); + platforms = lib.platforms.unix; pkgConfigModules = [ "libadwaita-1" ]; }; }) diff --git a/pkgs/development/libraries/libagar/default.nix b/pkgs/development/libraries/libagar/default.nix index 70692f5144240..990d06a0e75d0 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 8aabb6ae9ce82..32b3628cf6eb0 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 25d52e369e473..bd9e269861444 100644 --- a/pkgs/development/libraries/libao/default.nix +++ b/pkgs/development/libraries/libao/default.nix @@ -65,15 +65,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/libarchive-qt/default.nix b/pkgs/development/libraries/libarchive-qt/default.nix index 1ed4e92e5b9b0..e2fd522e802dc 100644 --- a/pkgs/development/libraries/libarchive-qt/default.nix +++ b/pkgs/development/libraries/libarchive-qt/default.nix @@ -35,12 +35,12 @@ mkDerivation rec { xz ]; - meta = with lib; { + meta = { description = "Qt based archiving solution with libarchive backend"; mainProgram = "archiver"; homepage = "https://gitlab.com/marcusbritanicus/libarchive-qt"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ dan4ik605743 ]; - platforms = platforms.linux; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ dan4ik605743 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/libbap/default.nix b/pkgs/development/libraries/libbap/default.nix index 89171e68b1d4d..e34153f75dec6 100644 --- a/pkgs/development/libraries/libbap/default.nix +++ b/pkgs/development/libraries/libbap/default.nix @@ -39,11 +39,11 @@ 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; }; } diff --git a/pkgs/development/libraries/libbluray/default.nix b/pkgs/development/libraries/libbluray/default.nix index 4771aee348073..e4df8b28a1f00 100644 --- a/pkgs/development/libraries/libbluray/default.nix +++ b/pkgs/development/libraries/libbluray/default.nix @@ -61,11 +61,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; - maintainers = with maintainers; [ abbradar ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ abbradar ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libbtbb/default.nix b/pkgs/development/libraries/libbtbb/default.nix index 02175448c7032..a202520c41948 100644 --- a/pkgs/development/libraries/libbtbb/default.nix +++ b/pkgs/development/libraries/libbtbb/default.nix @@ -26,10 +26,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/development/libraries/libbutl/default.nix b/pkgs/development/libraries/libbutl/default.nix index e8e7a6997daad..bbcab969db9de 100644 --- a/pkgs/development/libraries/libbutl/default.nix +++ b/pkgs/development/libraries/libbutl/default.nix @@ -55,7 +55,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 @@ -63,8 +63,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/libcanberra/default.nix b/pkgs/development/libraries/libcanberra/default.nix index cdbe126abc48b..8cf12867a4c87 100644 --- a/pkgs/development/libraries/libcanberra/default.nix +++ b/pkgs/development/libraries/libcanberra/default.nix @@ -94,7 +94,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 = '' @@ -105,8 +105,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/development/libraries/libcdio-paranoia/default.nix b/pkgs/development/libraries/libcdio-paranoia/default.nix index 93b3cb91ffc93..479d810475b03 100644 --- a/pkgs/development/libraries/libcdio-paranoia/default.nix +++ b/pkgs/development/libraries/libcdio-paranoia/default.nix @@ -37,16 +37,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/development/libraries/libcdio/default.nix b/pkgs/development/libraries/libcdio/default.nix index 51a94bab3ce2b..49998fadd2d5b 100644 --- a/pkgs/development/libraries/libcdio/default.nix +++ b/pkgs/development/libraries/libcdio/default.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "Library for OS-independent CD-ROM and CD image access"; longDescription = '' GNU libcdio is a library for OS-independent CD-ROM and @@ -73,7 +73,7 @@ stdenv.mkDerivation rec { programs such as an audio CD player and an extractor. ''; homepage = "https://www.gnu.org/software/libcdio/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libcec/default.nix b/pkgs/development/libraries/libcec/default.nix index 5d15cb6ef2f2c..b5a2918aed4c9 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.linux; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/development/libraries/libcec/platform.nix b/pkgs/development/libraries/libcec/platform.nix index 66f7b55a999c7..0e4786eb3d8aa 100644 --- a/pkgs/development/libraries/libcec/platform.nix +++ b/pkgs/development/libraries/libcec/platform.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - 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; - maintainers = teams.kodi.members; + platforms = lib.platforms.all; + maintainers = lib.teams.kodi.members; }; } diff --git a/pkgs/development/libraries/libcommuni/default.nix b/pkgs/development/libraries/libcommuni/default.nix index 54b362b4ed34c..00c79e4e5f9de 100644 --- a/pkgs/development/libraries/libcommuni/default.nix +++ b/pkgs/development/libraries/libcommuni/default.nix @@ -57,11 +57,11 @@ 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; - maintainers = with maintainers; [ hrdinka ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ hrdinka ]; }; } diff --git a/pkgs/development/libraries/libcryptui/default.nix b/pkgs/development/libraries/libcryptui/default.nix index ab3f1bff6b81e..1a658cc0212fa 100644 --- a/pkgs/development/libraries/libcryptui/default.nix +++ b/pkgs/development/libraries/libcryptui/default.nix @@ -53,11 +53,11 @@ 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; }; } diff --git a/pkgs/development/libraries/libcxxrt/default.nix b/pkgs/development/libraries/libcxxrt/default.nix index 8bb0c7a2c390d..14eab519c376b 100644 --- a/pkgs/development/libraries/libcxxrt/default.nix +++ b/pkgs/development/libraries/libcxxrt/default.nix @@ -35,11 +35,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/libdc1394/default.nix b/pkgs/development/libraries/libdc1394/default.nix index c886f0d8fba75..f0dc8d07ed95c 100644 --- a/pkgs/development/libraries/libdc1394/default.nix +++ b/pkgs/development/libraries/libdc1394/default.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { ++ lib.optional stdenv.hostPlatform.isLinux libraw1394 ++ lib.optional stdenv.hostPlatform.isDarwin CoreServices; - 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/development/libraries/libdevil/default.nix b/pkgs/development/libraries/libdevil/default.nix index e36402b68b5ae..fd83926863529 100644 --- a/pkgs/development/libraries/libdevil/default.nix +++ b/pkgs/development/libraries/libdevil/default.nix @@ -81,11 +81,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { homepage = "https://openil.sourceforge.net/"; description = "Image library which can can load, save, convert, manipulate, filter and display a wide variety of image formats"; mainProgram = "ilur"; - license = licenses.lgpl2; + license = lib.licenses.lgpl2; pkgConfigModules = [ "IL" ]; inherit (libgbm.meta) platforms; maintainers = [ ]; diff --git a/pkgs/development/libraries/libdvdcss/default.nix b/pkgs/development/libraries/libdvdcss/default.nix index eeb7330f85a5d..6eb55ce31c870 100644 --- a/pkgs/development/libraries/libdvdcss/default.nix +++ b/pkgs/development/libraries/libdvdcss/default.nix @@ -16,10 +16,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 = with platforms; linux ++ darwin; + license = lib.licenses.gpl2; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/development/libraries/libfive/default.nix b/pkgs/development/libraries/libfive/default.nix index a6d7304524dba..acdc329ae7432 100644 --- a/pkgs/development/libraries/libfive/default.nix +++ b/pkgs/development/libraries/libfive/default.nix @@ -113,18 +113,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 f0f23ec7953b9..de44679872032 100644 --- a/pkgs/development/libraries/libgda/6.x.nix +++ b/pkgs/development/libraries/libgda/6.x.nix @@ -105,16 +105,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 ]; - maintainers = teams.gnome.members; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libgda/default.nix b/pkgs/development/libraries/libgda/default.nix index 8de4af61686b0..cf9d91559d408 100644 --- a/pkgs/development/libraries/libgda/default.nix +++ b/pkgs/development/libraries/libgda/default.nix @@ -100,16 +100,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 ]; - maintainers = teams.gnome.members; - platforms = platforms.unix; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libgdiplus/default.nix b/pkgs/development/libraries/libgdiplus/default.nix index 58afe09e7cd4b..c965ddfc14ed7 100644 --- a/pkgs/development/libraries/libgdiplus/default.nix +++ b/pkgs/development/libraries/libgdiplus/default.nix @@ -70,10 +70,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/development/libraries/libgnome-games-support/2.0.nix b/pkgs/development/libraries/libgnome-games-support/2.0.nix index 300375c1843f7..1861ec4ad8438 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; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.lgpl3Plus; + maintainers = lib.teams.gnome.members; + 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 2deaadd37839f..28386bd7d39dc 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; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.lgpl3; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libgpod/default.nix b/pkgs/development/libraries/libgpod/default.nix index ead4701576c79..cb917f41c883b 100644 --- a/pkgs/development/libraries/libgpod/default.nix +++ b/pkgs/development/libraries/libgpod/default.nix @@ -86,12 +86,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/development/libraries/libgrss/default.nix b/pkgs/development/libraries/libgrss/default.nix index 73b22e6c9035d..4130de0edb4a0 100644 --- a/pkgs/development/libraries/libgrss/default.nix +++ b/pkgs/development/libraries/libgrss/default.nix @@ -79,11 +79,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Glib abstaction to handle feeds in RSS, Atom and other formats"; homepage = "https://gitlab.gnome.org/GNOME/libgrss"; - license = licenses.lgpl3Plus; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.lgpl3Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libhandy/0.x.nix b/pkgs/development/libraries/libhandy/0.x.nix index 9df815ce2e6c5..d453f6c928426 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/libimobiledevice/default.nix b/pkgs/development/libraries/libimobiledevice/default.nix index 416ebdb1e21a4..4a4bbe0e2ef0a 100644 --- a/pkgs/development/libraries/libimobiledevice/default.nix +++ b/pkgs/development/libraries/libimobiledevice/default.nix @@ -71,7 +71,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 = '' @@ -86,8 +86,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/development/libraries/libiodbc/default.nix b/pkgs/development/libraries/libiodbc/default.nix index fea90d439c24f..53c59c4b124a3 100644 --- a/pkgs/development/libraries/libiodbc/default.nix +++ b/pkgs/development/libraries/libiodbc/default.nix @@ -25,10 +25,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/development/libraries/libirc/default.nix b/pkgs/development/libraries/libirc/default.nix index 962a4d041e793..1db8fe549bef2 100644 --- a/pkgs/development/libraries/libirc/default.nix +++ b/pkgs/development/libraries/libirc/default.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { 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 4fb1af2a14d62..0f39119a31f66 100644 --- a/pkgs/development/libraries/liblastfm/default.nix +++ b/pkgs/development/libraries/liblastfm/default.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { 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/liblqr-1/default.nix b/pkgs/development/libraries/liblqr-1/default.nix index 3062a91186cc0..614d287255e64 100644 --- a/pkgs/development/libraries/liblqr-1/default.nix +++ b/pkgs/development/libraries/liblqr-1/default.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { ]; 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/development/libraries/libmongocrypt/default.nix b/pkgs/development/libraries/libmongocrypt/default.nix index 5792903067d59..d70429a6305ed 100644 --- a/pkgs/development/libraries/libmongocrypt/default.nix +++ b/pkgs/development/libraries/libmongocrypt/default.nix @@ -56,10 +56,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/development/libraries/libmusicbrainz/5.x.nix b/pkgs/development/libraries/libmusicbrainz/5.x.nix index 8b6a622965c80..8b971ae8edc97 100644 --- a/pkgs/development/libraries/libmusicbrainz/5.x.nix +++ b/pkgs/development/libraries/libmusicbrainz/5.x.nix @@ -45,14 +45,14 @@ stdenv.mkDerivation rec { dontUseCmakeBuildDir = true; - meta = with lib; { + meta = { homepage = "http://musicbrainz.org/doc/libmusicbrainz"; description = "MusicBrainz Client Library (5.x version)"; longDescription = '' The libmusicbrainz (also known as mb_client or MusicBrainz Client Library) is a development library geared towards developers who wish to add MusicBrainz lookup capabilities to their applications.''; - platforms = platforms.all; - license = licenses.lgpl21; + platforms = lib.platforms.all; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/development/libraries/libmusicbrainz/default.nix b/pkgs/development/libraries/libmusicbrainz/default.nix index d5df1f1132227..7acebd4bc5b07 100644 --- a/pkgs/development/libraries/libmusicbrainz/default.nix +++ b/pkgs/development/libraries/libmusicbrainz/default.nix @@ -27,14 +27,14 @@ stdenv.mkDerivation rec { ./v3-darwin.patch ]; - meta = with lib; { + meta = { homepage = "http://musicbrainz.org/doc/libmusicbrainz"; description = "MusicBrainz Client Library (3.x version)"; longDescription = '' The libmusicbrainz (also known as mb_client or MusicBrainz Client Library) is a development library geared towards developers who wish to add MusicBrainz lookup capabilities to their applications.''; - platforms = platforms.all; - license = licenses.lgpl21; + platforms = lib.platforms.all; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/development/libraries/libosmscout/default.nix b/pkgs/development/libraries/libosmscout/default.nix index 5df2831aa051f..e5d55e1fd312f 100644 --- a/pkgs/development/libraries/libosmscout/default.nix +++ b/pkgs/development/libraries/libosmscout/default.nix @@ -43,11 +43,11 @@ mkDerivation rec { 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/default.nix b/pkgs/development/libraries/libpeas/default.nix index df0398797df0d..c738a508d0eee 100644 --- a/pkgs/development/libraries/libpeas/default.nix +++ b/pkgs/development/libraries/libpeas/default.nix @@ -86,12 +86,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; - maintainers = teams.gnome.members; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = lib.teams.gnome.members; }; } diff --git a/pkgs/development/libraries/libqaccessibilityclient/default.nix b/pkgs/development/libraries/libqaccessibilityclient/default.nix index beb1442951fa8..4522f7ad6bbd3 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 04acf06397679..ad3ed22a4207e 100644 --- a/pkgs/development/libraries/libqofono/default.nix +++ b/pkgs/development/libraries/libqofono/default.nix @@ -51,11 +51,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 c5fcb384530f2..0822d16f01cd7 100644 --- a/pkgs/development/libraries/libqtdbusmock/default.nix +++ b/pkgs/development/libraries/libqtdbusmock/default.nix @@ -82,12 +82,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; - maintainers = teams.lomiri.members; + license = lib.licenses.lgpl3Only; + platforms = lib.platforms.unix; + maintainers = lib.teams.lomiri.members; pkgConfigModules = [ "libqtdbusmock-1" ]; diff --git a/pkgs/development/libraries/libqtdbustest/default.nix b/pkgs/development/libraries/libqtdbustest/default.nix index 756fa756c3966..5fdeebcc2af8c 100644 --- a/pkgs/development/libraries/libqtdbustest/default.nix +++ b/pkgs/development/libraries/libqtdbustest/default.nix @@ -92,12 +92,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "Library for testing DBus interactions using Qt"; homepage = "https://launchpad.net/libqtdbustest"; - license = licenses.lgpl3Only; - platforms = platforms.unix; - maintainers = teams.lomiri.members; + license = lib.licenses.lgpl3Only; + platforms = lib.platforms.unix; + maintainers = lib.teams.lomiri.members; 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 7964b19391bbf..d87104164b2eb 100644 --- a/pkgs/development/libraries/libquotient/default.nix +++ b/pkgs/development/libraries/libquotient/default.nix @@ -58,11 +58,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; [ colemickens matthiasbeyer ]; diff --git a/pkgs/development/libraries/librasterlite2/default.nix b/pkgs/development/libraries/librasterlite2/default.nix index 91086083f9518..af27e3867bae9 100644 --- a/pkgs/development/libraries/librasterlite2/default.nix +++ b/pkgs/development/libraries/librasterlite2/default.nix @@ -80,16 +80,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; - maintainers = with maintainers; [ sikmir ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/development/libraries/librdf/redland.nix b/pkgs/development/libraries/librdf/redland.nix index ceac892f99344..e32ee04266735 100644 --- a/pkgs/development/libraries/librdf/redland.nix +++ b/pkgs/development/libraries/librdf/redland.nix @@ -65,10 +65,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/librest/1.0.nix b/pkgs/development/libraries/librest/1.0.nix index 4024ecd8a8843..d848fbc9ec052 100644 --- a/pkgs/development/libraries/librest/1.0.nix +++ b/pkgs/development/libraries/librest/1.0.nix @@ -94,11 +94,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; - maintainers = teams.gnome.members; + license = lib.licenses.lgpl21Only; + platforms = lib.platforms.unix; + maintainers = lib.teams.gnome.members; }; } diff --git a/pkgs/development/libraries/librest/default.nix b/pkgs/development/libraries/librest/default.nix index 4bbceccda5056..4a039a775ab9b 100644 --- a/pkgs/development/libraries/librest/default.nix +++ b/pkgs/development/libraries/librest/default.nix @@ -68,11 +68,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; - maintainers = teams.gnome.members; + license = lib.licenses.lgpl21Only; + platforms = lib.platforms.unix; + maintainers = lib.teams.gnome.members; }; } diff --git a/pkgs/development/libraries/librsb/default.nix b/pkgs/development/libraries/librsb/default.nix index ee2258597e971..a3b77fd84b30d 100644 --- a/pkgs/development/libraries/librsb/default.nix +++ b/pkgs/development/libraries/librsb/default.nix @@ -81,7 +81,7 @@ stdenv.mkDerivation rec { ]; checkTarget = "tests"; - meta = with lib; { + meta = { homepage = "https://librsb.sourceforge.net/"; description = "Shared memory parallel sparse matrix and sparse BLAS library"; longDescription = '' @@ -94,9 +94,9 @@ stdenv.mkDerivation rec { Contains libraries and header files for developing applications that want to make use of librsb. ''; - license = with licenses; [ lgpl3Plus ]; - maintainers = with maintainers; [ KarlJoad ]; - platforms = platforms.all; + license = with lib.licenses; [ lgpl3Plus ]; + maintainers = with lib.maintainers; [ KarlJoad ]; + platforms = lib.platforms.all; # ./rsb_common.h:56:10: fatal error: 'omp.h' file not found broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/development/libraries/librsvg/default.nix b/pkgs/development/libraries/librsvg/default.nix index 7a71acada5044..b5a48e025f26c 100644 --- a/pkgs/development/libraries/librsvg/default.nix +++ b/pkgs/development/libraries/librsvg/default.nix @@ -235,12 +235,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; - maintainers = teams.gnome.members; + license = lib.licenses.lgpl2Plus; + maintainers = lib.teams.gnome.members; mainProgram = "rsvg-convert"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/libraries/libsamplerate/default.nix b/pkgs/development/libraries/libsamplerate/default.nix index f50d40bf8e2f6..dbb3eb8044fb1 100644 --- a/pkgs/development/libraries/libsamplerate/default.nix +++ b/pkgs/development/libraries/libsamplerate/default.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE+=" -I${Carbon}/Library/Frameworks/Carbon.framework/Headers" ''; - 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/development/libraries/libsigcxx/3.0.nix b/pkgs/development/libraries/libsigcxx/3.0.nix index 4e1a656def5a1..0992a1fa81eb8 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; - maintainers = teams.gnome.members; - platforms = platforms.all; + license = lib.licenses.lgpl21Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/libsigcxx/default.nix b/pkgs/development/libraries/libsigcxx/default.nix index cfac1918e8073..1b186f6450bab 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/libsoundio/default.nix b/pkgs/development/libraries/libsoundio/default.nix index 6dab2ea2c6f0a..6d3dc0af2b1d1 100644 --- a/pkgs/development/libraries/libsoundio/default.nix +++ b/pkgs/development/libraries/libsoundio/default.nix @@ -36,11 +36,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/development/libraries/libstatgrab/default.nix b/pkgs/development/libraries/libstatgrab/default.nix index 3dd55d1e690ad..4e35bfda13357 100644 --- a/pkgs/development/libraries/libstatgrab/default.nix +++ b/pkgs/development/libraries/libstatgrab/default.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { buildInputs = lib.optional stdenv.hostPlatform.isDarwin IOKit; - 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/development/libraries/libticalcs2/default.nix b/pkgs/development/libraries/libticalcs2/default.nix index 0fae58094f4aa..e8a7144ebe324 100644 --- a/pkgs/development/libraries/libticalcs2/default.nix +++ b/pkgs/development/libraries/libticalcs2/default.nix @@ -43,15 +43,15 @@ stdenv.mkDerivation rec { libobjc ]; - 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; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ siraben clevor ]; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/development/libraries/libui/default.nix b/pkgs/development/libraries/libui/default.nix index c3726929f9dfd..bb212480e522b 100644 --- a/pkgs/development/libraries/libui/default.nix +++ b/pkgs/development/libraries/libui/default.nix @@ -60,10 +60,10 @@ stdenv.mkDerivation rec { install_name_tool -id $out/lib/libui.A.dylib $out/lib/libui.A.dylib ''; - meta = with lib; { + meta = { homepage = "https://github.com/andlabs/libui"; description = "Simple and portable (but not inflexible) GUI library in C that uses the native GUI technologies of each platform it supports"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/libuiohook/default.nix b/pkgs/development/libraries/libuiohook/default.nix index e39c2addfac43..557a697aab9ef 100644 --- a/pkgs/development/libraries/libuiohook/default.nix +++ b/pkgs/development/libraries/libuiohook/default.nix @@ -72,12 +72,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/development/libraries/libunwind/default.nix b/pkgs/development/libraries/libunwind/default.nix index f0f7de192f448..33d0eb708d19b 100644 --- a/pkgs/development/libraries/libunwind/default.nix +++ b/pkgs/development/libraries/libunwind/default.nix @@ -73,10 +73,10 @@ 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 = with maintainers; [ orivej ]; + maintainers = with lib.maintainers; [ orivej ]; pkgConfigModules = [ "libunwind" "libunwind-coredump" @@ -104,6 +104,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 904848cf78fbf..d8a9a8eba3bcc 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/libusb1/default.nix b/pkgs/development/libraries/libusb1/default.nix index a02047b552c9f..6439146618234 100644 --- a/pkgs/development/libraries/libusb1/default.nix +++ b/pkgs/development/libraries/libusb1/default.nix @@ -69,15 +69,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 realsnick ]; diff --git a/pkgs/development/libraries/libva/1.nix b/pkgs/development/libraries/libva/1.nix index 05680090878ac..165be9773b5e1 100644 --- a/pkgs/development/libraries/libva/1.nix +++ b/pkgs/development/libraries/libva/1.nix @@ -62,11 +62,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/libvncserver/default.nix b/pkgs/development/libraries/libvncserver/default.nix index 29dd629480010..d07b595047bba 100644 --- a/pkgs/development/libraries/libvncserver/default.nix +++ b/pkgs/development/libraries/libvncserver/default.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { zlib ]; - 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/development/libraries/libwnck/default.nix b/pkgs/development/libraries/libwnck/default.nix index 853b3f45ddf07..f504c289e0c94 100644 --- a/pkgs/development/libraries/libwnck/default.nix +++ b/pkgs/development/libraries/libwnck/default.nix @@ -75,10 +75,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 5c5e7307192ba..f86db940a5bb6 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 4ed68e09b4a76..b9ca829a90be6 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 ece4d3997a51d..be570305e71dd 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 = with maintainers; [ matthewbauer ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ matthewbauer ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/libwpe/fdo.nix b/pkgs/development/libraries/libwpe/fdo.nix index b7f09b7ebb7b6..cddb73bb13a5c 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 = with maintainers; [ matthewbauer ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ matthewbauer ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/libxmlxx/default.nix b/pkgs/development/libraries/libxmlxx/default.nix index d2739a61551a7..c3454b54d7e5b 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/mailcore2/default.nix b/pkgs/development/libraries/mailcore2/default.nix index 60708ed7a4a25..e3e810abc8d8b 100644 --- a/pkgs/development/libraries/mailcore2/default.nix +++ b/pkgs/development/libraries/mailcore2/default.nix @@ -89,11 +89,11 @@ stdenv.mkDerivation rec { ) ''; - meta = with lib; { + meta = { description = "Simple and asynchronous API to work with e-mail protocols IMAP, POP and SMTP"; homepage = "http://libmailcore.com"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/malcontent/ui.nix b/pkgs/development/libraries/malcontent/ui.nix index 3e76f3a2e7f30..af3a03f2f98c8 100644 --- a/pkgs/development/libraries/malcontent/ui.nix +++ b/pkgs/development/libraries/malcontent/ui.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation rec { "-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 0f106cfe4cb69..c4e2c1ef09a86 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 047a358254eb3..b92cd2fe9107d 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/matrix-sdk-crypto-nodejs/default.nix b/pkgs/development/libraries/matrix-sdk-crypto-nodejs/default.nix index 093d3d7a2133e..1b9f409aaa91b 100644 --- a/pkgs/development/libraries/matrix-sdk-crypto-nodejs/default.nix +++ b/pkgs/development/libraries/matrix-sdk-crypto-nodejs/default.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { 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/development/libraries/maui-core/default.nix b/pkgs/development/libraries/maui-core/default.nix index 640efea0ec95b..3e3e1367e7b86 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/mediastreamer/default.nix b/pkgs/development/libraries/mediastreamer/default.nix index b388622a959a2..4ec9b75fd214c 100644 --- a/pkgs/development/libraries/mediastreamer/default.nix +++ b/pkgs/development/libraries/mediastreamer/default.nix @@ -93,11 +93,11 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = "-lXext"; - meta = with lib; { + meta = { description = "Powerful and lightweight streaming engine specialized for voice/video telephony applications. Part of the Linphone project"; homepage = "https://www.linphone.org/technical-corner/mediastreamer2"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/libraries/mediastreamer/msopenh264.nix b/pkgs/development/libraries/mediastreamer/msopenh264.nix index 67b063ec21292..4b019de6d3d47 100644 --- a/pkgs/development/libraries/mediastreamer/msopenh264.nix +++ b/pkgs/development/libraries/mediastreamer/msopenh264.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { cp src/libmsopenh264.so $out/lib/mediastreamer/plugins/ ''; - meta = with lib; { + meta = { description = "H.264 encoder/decoder plugin for mediastreamer2. Part of the Linphone project"; homepage = "https://www.linphone.org/technical-corner/mediastreamer2"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/libraries/memorymapping/default.nix b/pkgs/development/libraries/memorymapping/default.nix index eb0bb5d6e768e..760feda570f95 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/mlt/default.nix b/pkgs/development/libraries/mlt/default.nix index e4fe44e0ccea1..4a9a2bc0dab55 100644 --- a/pkgs/development/libraries/mlt/default.nix +++ b/pkgs/development/libraries/mlt/default.nix @@ -154,14 +154,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/development/libraries/mongoc/default.nix b/pkgs/development/libraries/mongoc/default.nix index 538e5201fd13e..adce5cbd2c86f 100644 --- a/pkgs/development/libraries/mongoc/default.nix +++ b/pkgs/development/libraries/mongoc/default.nix @@ -54,12 +54,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/development/libraries/mygui/default.nix b/pkgs/development/libraries/mygui/default.nix index e7d326e446ac0..1f0a256a63d0a 100644 --- a/pkgs/development/libraries/mygui/default.nix +++ b/pkgs/development/libraries/mygui/default.nix @@ -67,10 +67,10 @@ stdenv.mkDerivation rec { "-DMYGUI_RENDERSYSTEM=${renderSystem}" ]; - meta = with lib; { + meta = { homepage = "http://mygui.info/"; description = "Library for creating GUIs for games and 3D applications"; - license = licenses.mit; - platforms = platforms.unix; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/mypaint-brushes/1.0.nix b/pkgs/development/libraries/mypaint-brushes/1.0.nix index 885dd5e5137db..f7ce7b501fffd 100644 --- a/pkgs/development/libraries/mypaint-brushes/1.0.nix +++ b/pkgs/development/libraries/mypaint-brushes/1.0.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/mypaint-brushes/default.nix b/pkgs/development/libraries/mypaint-brushes/default.nix index a8ca5edacc7e9..f6239a077128a 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/nemo-qml-plugin-dbus/default.nix b/pkgs/development/libraries/nemo-qml-plugin-dbus/default.nix index 92e3b9d571f2b..46ad5ea80bf9a 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/netcdf-fortran/default.nix b/pkgs/development/libraries/netcdf-fortran/default.nix index aacafb1e674f2..2b7d243963546 100644 --- a/pkgs/development/libraries/netcdf-fortran/default.nix +++ b/pkgs/development/libraries/netcdf-fortran/default.nix @@ -44,12 +44,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/development/libraries/newt/default.nix b/pkgs/development/libraries/newt/default.nix index 4e6f408acc338..6b162c0ce382c 100644 --- a/pkgs/development/libraries/newt/default.nix +++ b/pkgs/development/libraries/newt/default.nix @@ -59,13 +59,13 @@ stdenv.mkDerivation rec { install_name_tool -change libnewt.so.${version} $out/lib/libnewt.so.${version} $out/bin/whiptail ''; - meta = with lib; { + meta = { description = "Library for color text mode, widget based user interfaces"; mainProgram = "whiptail"; homepage = "https://pagure.io/newt"; changelog = "https://pagure.io/newt/blob/master/f/CHANGES"; - license = licenses.lgpl2; - platforms = platforms.unix; + license = lib.licenses.lgpl2; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/development/libraries/nghttp3/default.nix b/pkgs/development/libraries/nghttp3/default.nix index 20e45f342286a..eaf0154fc04f4 100644 --- a/pkgs/development/libraries/nghttp3/default.nix +++ b/pkgs/development/libraries/nghttp3/default.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { inherit curlHTTP3; }; - meta = with lib; { + meta = { homepage = "https://github.com/ngtcp2/nghttp3"; description = "nghttp3 is an implementation of HTTP/3 mapping over QUIC and QPACK in C"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ izorkin ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ izorkin ]; }; } diff --git a/pkgs/development/libraries/nspr/default.nix b/pkgs/development/libraries/nspr/default.nix index 61d69acc60771..6d458d0517cb1 100644 --- a/pkgs/development/libraries/nspr/default.nix +++ b/pkgs/development/libraries/nspr/default.nix @@ -55,14 +55,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/development/libraries/ois/default.nix b/pkgs/development/libraries/ois/default.nix index b6ddc5ebbf632..b2d1f41241d9d 100644 --- a/pkgs/development/libraries/ois/default.nix +++ b/pkgs/development/libraries/ois/default.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { "-DCMAKE_INSTALL_LIBDIR=lib" ]; - 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/development/libraries/okapi/default.nix b/pkgs/development/libraries/okapi/default.nix index e3a71e97f55fb..f9e5b457bc457 100644 --- a/pkgs/development/libraries/okapi/default.nix +++ b/pkgs/development/libraries/okapi/default.nix @@ -24,14 +24,14 @@ rustPlatform.buildRustPackage rec { cp -r include $out ''; - meta = with lib; { + meta = { description = "Okapi Library"; longDescription = '' 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/development/libraries/openal-soft/default.nix b/pkgs/development/libraries/openal-soft/default.nix index a5d2f85e0dc26..7561c18c552ce 100644 --- a/pkgs/development/libraries/openal-soft/default.nix +++ b/pkgs/development/libraries/openal-soft/default.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation rec { remove-references-to -t ${pipewire.dev} $(readlink -f $out/lib/*.so) ''; - meta = with lib; { + meta = { description = "OpenAL alternative"; homepage = "https://openal-soft.org/"; - license = licenses.lgpl2; - maintainers = with maintainers; [ ftrvxmtrx ]; - platforms = platforms.unix; + license = lib.licenses.lgpl2; + maintainers = with lib.maintainers; [ ftrvxmtrx ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/openbabel/2.nix b/pkgs/development/libraries/openbabel/2.nix index 90b27abf02d6a..53ea14ea01ec3 100644 --- a/pkgs/development/libraries/openbabel/2.nix +++ b/pkgs/development/libraries/openbabel/2.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "Toolbox designed to speak the many languages of chemical data"; homepage = "http://openbabel.org"; - platforms = platforms.all; - maintainers = with maintainers; [ danielbarter ]; - license = licenses.gpl2Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ danielbarter ]; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/development/libraries/openbabel/default.nix b/pkgs/development/libraries/openbabel/default.nix index 1b81bfa775203..2190632a65e0c 100644 --- a/pkgs/development/libraries/openbabel/default.nix +++ b/pkgs/development/libraries/openbabel/default.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation rec { EOF ''; - meta = with lib; { + meta = { description = "Toolbox designed to speak the many languages of chemical data"; homepage = "http://openbabel.org"; - platforms = platforms.all; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ danielbarter ]; + platforms = lib.platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ danielbarter ]; }; } diff --git a/pkgs/development/libraries/opencolorio/1.x.nix b/pkgs/development/libraries/opencolorio/1.x.nix index 4ac41482037fb..cba3725df3c30 100644 --- a/pkgs/development/libraries/opencolorio/1.x.nix +++ b/pkgs/development/libraries/opencolorio/1.x.nix @@ -66,11 +66,11 @@ stdenv.mkDerivation rec { --replace "$out/bin" "$bin/bin" ''; - meta = with lib; { + meta = { homepage = "https://opencolorio.org"; description = "Color management framework for visual effects and animation"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/opencolorio/default.nix b/pkgs/development/libraries/opencolorio/default.nix index 8797c2962fbc1..2b99156c3a28e 100644 --- a/pkgs/development/libraries/opencolorio/default.nix +++ b/pkgs/development/libraries/opencolorio/default.nix @@ -93,11 +93,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/opencsg/default.nix b/pkgs/development/libraries/opencsg/default.nix index b4b2c5a66c98e..08113be3f5869 100644 --- a/pkgs/development/libraries/opencsg/default.nix +++ b/pkgs/development/libraries/opencsg/default.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation rec { $app ''; - meta = with lib; { + meta = { description = "Constructive Solid Geometry library"; mainProgram = "opencsgexample"; homepage = "http://www.opencsg.org/"; - platforms = platforms.unix; - maintainers = [ maintainers.raskin ]; - license = licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.raskin ]; + license = lib.licenses.gpl2Plus; }; } diff --git a/pkgs/development/libraries/openexr/default.nix b/pkgs/development/libraries/openexr/default.nix index 84dc7fb990e79..48f31129fd87b 100644 --- a/pkgs/development/libraries/openexr/default.nix +++ b/pkgs/development/libraries/openexr/default.nix @@ -69,10 +69,10 @@ 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; }; } diff --git a/pkgs/development/libraries/openscenegraph/default.nix b/pkgs/development/libraries/openscenegraph/default.nix index ee13f76d7feed..b397f88f4a129 100644 --- a/pkgs/development/libraries/openscenegraph/default.nix +++ b/pkgs/development/libraries/openscenegraph/default.nix @@ -143,14 +143,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 = "OpenSceneGraph Public License - free LGPL-based license"; }; } diff --git a/pkgs/development/libraries/openvdb/default.nix b/pkgs/development/libraries/openvdb/default.nix index ff662ed440d71..0b5583396790e 100644 --- a/pkgs/development/libraries/openvdb/default.nix +++ b/pkgs/development/libraries/openvdb/default.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/development/libraries/pc-ble-driver/default.nix b/pkgs/development/libraries/pc-ble-driver/default.nix index fd298709181e3..434f14b730397 100644 --- a/pkgs/development/libraries/pc-ble-driver/default.nix +++ b/pkgs/development/libraries/pc-ble-driver/default.nix @@ -65,10 +65,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/development/libraries/pcre2/default.nix b/pkgs/development/libraries/pcre2/default.nix index 3667510d9a100..348f21d7e83b7 100644 --- a/pkgs/development/libraries/pcre2/default.nix +++ b/pkgs/development/libraries/pcre2/default.nix @@ -40,12 +40,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 7ed7f08a83373..050c365cc947a 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; [ rewine ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rewine ]; }; } diff --git a/pkgs/development/libraries/phonetisaurus/default.nix b/pkgs/development/libraries/phonetisaurus/default.nix index 91a2f38011532..b5a6a23d9a4d8 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 9b4579318d976..1c7511becab10 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 b8c8c5faa1856..b262d7ce71dc3 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/physics/applgrid/default.nix b/pkgs/development/libraries/physics/applgrid/default.nix index 7a0ae2cbdf122..0e0e8cd6b682b 100644 --- a/pkgs/development/libraries/physics/applgrid/default.nix +++ b/pkgs/development/libraries/physics/applgrid/default.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "APPLgrid project provides a 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/development/libraries/physics/hepmc3/default.nix b/pkgs/development/libraries/physics/hepmc3/default.nix index 6598cd520b9a7..1613b67a30ead 100644 --- a/pkgs/development/libraries/physics/hepmc3/default.nix +++ b/pkgs/development/libraries/physics/hepmc3/default.nix @@ -58,12 +58,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/lhapdf/default.nix b/pkgs/development/libraries/physics/lhapdf/default.nix index b1d42a3560dbf..7f6878bff04da 100644 --- a/pkgs/development/libraries/physics/lhapdf/default.nix +++ b/pkgs/development/libraries/physics/lhapdf/default.nix @@ -51,11 +51,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/development/libraries/physics/pythia/default.nix b/pkgs/development/libraries/physics/pythia/default.nix index 2cf2c89db87e9..60aa7e45b9cfb 100644 --- a/pkgs/development/libraries/physics/pythia/default.nix +++ b/pkgs/development/libraries/physics/pythia/default.nix @@ -49,12 +49,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/physics/rivet/default.nix b/pkgs/development/libraries/physics/rivet/default.nix index adf5ae595efe7..e0c369ae6d702 100644 --- a/pkgs/development/libraries/physics/rivet/default.nix +++ b/pkgs/development/libraries/physics/rivet/default.nix @@ -109,11 +109,11 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Framework for comparison of experimental measurements from high-energy particle colliders to theory predictions"; - license = licenses.gpl3; + license = lib.licenses.gpl3; homepage = "https://rivet.hepforge.org"; - platforms = platforms.unix; - maintainers = with maintainers; [ veprbl ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/libraries/pipewire/wireplumber.nix b/pkgs/development/libraries/pipewire/wireplumber.nix index 958f0d52ab0ec..d9400e6530eb6 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/plplot/default.nix b/pkgs/development/libraries/plplot/default.nix index d49b8da211d8f..d0a459a1c7c61 100644 --- a/pkgs/development/libraries/plplot/default.nix +++ b/pkgs/development/libraries/plplot/default.nix @@ -51,12 +51,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/development/libraries/podofo/default.nix b/pkgs/development/libraries/podofo/default.nix index c49c31be88227..75b1ec6d5eb29 100644 --- a/pkgs/development/libraries/podofo/default.nix +++ b/pkgs/development/libraries/podofo/default.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation rec { -e 's/^libdir=.*/libdir=@CMAKE_INSTALL_LIBDIR@/' -e "$failNoMatches" ''; - meta = with lib; { + meta = { homepage = "https://podofo.sourceforge.net"; description = "Library to work with the PDF file format"; - platforms = platforms.all; - license = with licenses; [ + platforms = lib.platforms.all; + license = with lib.licenses; [ gpl2Plus lgpl2Plus ]; diff --git a/pkgs/development/libraries/polkit-qt-1/default.nix b/pkgs/development/libraries/polkit-qt-1/default.nix index ff18b348a592f..59cf190593f7f 100644 --- a/pkgs/development/libraries/polkit-qt-1/default.nix +++ b/pkgs/development/libraries/polkit-qt-1/default.nix @@ -39,9 +39,9 @@ mkDerivation rec { util-linux ]; - meta = with lib; { + meta = { description = "Qt wrapper around PolKit"; - maintainers = with maintainers; [ ttuegel ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ ttuegel ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/portaudio/default.nix b/pkgs/development/libraries/portaudio/default.nix index 99b1f8154cd34..57a35e871bc3d 100644 --- a/pkgs/development/libraries/portaudio/default.nix +++ b/pkgs/development/libraries/portaudio/default.nix @@ -58,13 +58,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/development/libraries/portmidi/default.nix b/pkgs/development/libraries/portmidi/default.nix index 9afbb6018aebf..5a85e1e71f02c 100644 --- a/pkgs/development/libraries/portmidi/default.nix +++ b/pkgs/development/libraries/portmidi/default.nix @@ -60,11 +60,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/development/libraries/proj/7.nix b/pkgs/development/libraries/proj/7.nix index 19f205df4b72c..860d241365d72 100644 --- a/pkgs/development/libraries/proj/7.nix +++ b/pkgs/development/libraries/proj/7.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Cartographic Projections Library"; homepage = "https://proj4.org"; - 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/libraries/pulseaudio-qt/default.nix b/pkgs/development/libraries/pulseaudio-qt/default.nix index 9bc5141eeb6e7..3d1a91c748e50 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 39afc2e4a11a0..400078eb2bdaa 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 11fb37e5f90da..b6c07bf7f3da0 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 1f9524357c346..b6a34f8d25b15 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 92818b35571be..5a628f2bb9f2f 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 128b4fbb08a96..bbf7d9be29d23 100644 --- a/pkgs/development/libraries/qdjango/default.nix +++ b/pkgs/development/libraries/qdjango/default.nix @@ -66,12 +66,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 1872366217302..ae4406fd47a0e 100644 --- a/pkgs/development/libraries/qgnomeplatform/default.nix +++ b/pkgs/development/libraries/qgnomeplatform/default.nix @@ -74,11 +74,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 4edb927e22135..1ebc647f26db7 100644 --- a/pkgs/development/libraries/qjson/default.nix +++ b/pkgs/development/libraries/qjson/default.nix @@ -21,9 +21,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 77534706d2434..76cb7385466ac 100644 --- a/pkgs/development/libraries/qmarkdowntextedit/default.nix +++ b/pkgs/development/libraries/qmarkdowntextedit/default.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { "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; [ rewine ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rewine ]; }; } diff --git a/pkgs/development/libraries/qmenumodel/default.nix b/pkgs/development/libraries/qmenumodel/default.nix index 16e23abcc34a1..b3e09c75ccd62 100644 --- a/pkgs/development/libraries/qmenumodel/default.nix +++ b/pkgs/development/libraries/qmenumodel/default.nix @@ -92,16 +92,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; - maintainers = teams.lomiri.members; - platforms = platforms.linux; + license = lib.licenses.lgpl3Only; + maintainers = lib.teams.lomiri.members; + platforms = lib.platforms.linux; pkgConfigModules = [ "qmenumodel" ]; diff --git a/pkgs/development/libraries/qmlbox2d/default.nix b/pkgs/development/libraries/qmlbox2d/default.nix index 5f6cf45351f22..ea53dc83c5bae 100644 --- a/pkgs/development/libraries/qmlbox2d/default.nix +++ b/pkgs/development/libraries/qmlbox2d/default.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation { (cmakeBool "USE_SYSTEM_BOX2D" true) ]; - meta = with lib; { + meta = { description = "QML plugin for Box2D engine"; homepage = "https://github.com/qml-box2d/qml-box2d"; - maintainers = with maintainers; [ guibou ]; - platforms = platforms.linux; - license = licenses.zlib; + maintainers = with lib.maintainers; [ guibou ]; + platforms = lib.platforms.linux; + license = lib.licenses.zlib; }; } diff --git a/pkgs/development/libraries/qt-5/modules/qtbase.nix b/pkgs/development/libraries/qt-5/modules/qtbase.nix index b8446fdd9556a..3156a6cc83179 100644 --- a/pkgs/development/libraries/qt-5/modules/qtbase.nix +++ b/pkgs/development/libraries/qt-5/modules/qtbase.nix @@ -554,16 +554,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 @@ -588,7 +588,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 35475c4793ee7..409e80b395b77 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/qtwebengine/default.nix b/pkgs/development/libraries/qt-6/modules/qtwebengine/default.nix index d58cb993f9127..313b6b265dafa 100644 --- a/pkgs/development/libraries/qt-6/modules/qtwebengine/default.nix +++ b/pkgs/development/libraries/qt-6/modules/qtwebengine/default.nix @@ -304,7 +304,7 @@ qtModule { # Debug info is too big to link with LTO. separateDebugInfo = false; - meta = with lib; { + meta = { description = "Web engine based on the Chromium web browser"; platforms = [ "x86_64-darwin" diff --git a/pkgs/development/libraries/qtdbusextended/default.nix b/pkgs/development/libraries/qtdbusextended/default.nix index c1cc09b29bc15..69931e00cd4d1 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; [ rewine ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rewine ]; }; } diff --git a/pkgs/development/libraries/qtfeedback/default.nix b/pkgs/development/libraries/qtfeedback/default.nix index 182b709103326..7d9dce5a0a14c 100644 --- a/pkgs/development/libraries/qtfeedback/default.nix +++ b/pkgs/development/libraries/qtfeedback/default.nix @@ -42,14 +42,14 @@ mkDerivation rec { -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/qtpbfimageplugin/default.nix b/pkgs/development/libraries/qtpbfimageplugin/default.nix index 38629fe04c335..3b80136b2d638 100644 --- a/pkgs/development/libraries/qtpbfimageplugin/default.nix +++ b/pkgs/development/libraries/qtpbfimageplugin/default.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { --replace "\$\$[QT_INSTALL_PLUGINS]" "$out/$qtPluginPrefix" ''; - meta = with lib; { + meta = { description = "Qt image plugin for displaying Mapbox vector tiles"; longDescription = '' QtPBFImagePlugin is a Qt image plugin that enables applications capable of @@ -41,8 +41,8 @@ stdenv.mkDerivation rec { vector tiles without (almost) any application modifications. ''; homepage = "https://github.com/tumic0/QtPBFImagePlugin"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/qtspell/default.nix b/pkgs/development/libraries/qtspell/default.nix index 1e5069d8b5d8e..75f7c179acffc 100644 --- a/pkgs/development/libraries/qtspell/default.nix +++ b/pkgs/development/libraries/qtspell/default.nix @@ -44,12 +44,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 b46c7b5220189..1af92dedd1084 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/qtwebkit-plugins/default.nix b/pkgs/development/libraries/qtwebkit-plugins/default.nix index 9d2541c0b7214..73aed4541ed24 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/libraries/quazip/default.nix b/pkgs/development/libraries/quazip/default.nix index 6acf4f1c60a16..fc53c337349f6 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 be38b2f1b01a0..3aba40b6b680e 100644 --- a/pkgs/development/libraries/quickflux/default.nix +++ b/pkgs/development/libraries/quickflux/default.nix @@ -55,11 +55,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 bf5a4c35a7029..9be06d33a4f20 100644 --- a/pkgs/development/libraries/qwt/6_1.nix +++ b/pkgs/development/libraries/qwt/6_1.nix @@ -32,12 +32,12 @@ 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) - license = licenses.qwt; - platforms = platforms.unix; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.qwt; + 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 7ff4c929e4868..b82ebcdac4d83 100644 --- a/pkgs/development/libraries/qwt/default.nix +++ b/pkgs/development/libraries/qwt/default.nix @@ -38,12 +38,12 @@ 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) license = lib.licenses.qwt; - 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 a9280ae76f474..b648e91f9b873 100644 --- a/pkgs/development/libraries/qxlsx/default.nix +++ b/pkgs/development/libraries/qxlsx/default.nix @@ -26,10 +26,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/qzxing/default.nix b/pkgs/development/libraries/qzxing/default.nix index e8ac307dfe0f3..b5d6390bfd562 100644 --- a/pkgs/development/libraries/qzxing/default.nix +++ b/pkgs/development/libraries/qzxing/default.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Qt/QML wrapper library for the ZXing library"; homepage = "https://github.com/ftylitak/qzxing"; - license = licenses.asl20; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.unix; pkgConfigModules = [ "QZXing" ]; diff --git a/pkgs/development/libraries/randomx/default.nix b/pkgs/development/libraries/randomx/default.nix index 75e72e16fbc12..292b62d367f9e 100644 --- a/pkgs/development/libraries/randomx/default.nix +++ b/pkgs/development/libraries/randomx/default.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/development/libraries/rlottie-qml/default.nix b/pkgs/development/libraries/rlottie-qml/default.nix index 7a71fa3295d7c..6c2073ae6fc05 100644 --- a/pkgs/development/libraries/rlottie-qml/default.nix +++ b/pkgs/development/libraries/rlottie-qml/default.nix @@ -64,11 +64,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/rnnoise-plugin/default.nix b/pkgs/development/libraries/rnnoise-plugin/default.nix index 98cf154ec1e68..c29f13c99de14 100644 --- a/pkgs/development/libraries/rnnoise-plugin/default.nix +++ b/pkgs/development/libraries/rnnoise-plugin/default.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { simd ]; - 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/development/libraries/science/astronomy/stellarsolver/default.nix b/pkgs/development/libraries/science/astronomy/stellarsolver/default.nix index 6840b2f353d2b..058b07219a887 100644 --- a/pkgs/development/libraries/science/astronomy/stellarsolver/default.nix +++ b/pkgs/development/libraries/science/astronomy/stellarsolver/default.nix @@ -34,11 +34,11 @@ mkDerivation rec { "-DBUILD_TESTER=${if withTester then "on" else "off"}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/rlancaste/stellarsolver"; description = "Astrometric plate solving library"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ hjones2199 ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ hjones2199 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/science/biology/mirtk/default.nix b/pkgs/development/libraries/science/biology/mirtk/default.nix index a1444db5b40ab..e048ad877ba81 100644 --- a/pkgs/development/libraries/science/biology/mirtk/default.nix +++ b/pkgs/development/libraries/science/biology/mirtk/default.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation rec { zlib ]; - meta = with lib; { + meta = { homepage = "https://github.com/BioMedIA/MIRTK"; description = "Medical image registration library and tools"; mainProgram = "mirtk"; - 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/science/chemistry/avogadrolibs/default.nix b/pkgs/development/libraries/science/chemistry/avogadrolibs/default.nix index c362a76b22269..5873fe4437193 100644 --- a/pkgs/development/libraries/science/chemistry/avogadrolibs/default.nix +++ b/pkgs/development/libraries/science/chemistry/avogadrolibs/default.nix @@ -101,11 +101,11 @@ stdenv.mkDerivation rec { --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 4ac575e752389..43fb6b98a2fbc 100644 --- a/pkgs/development/libraries/science/chemistry/molequeue/default.nix +++ b/pkgs/development/libraries/science/chemistry/molequeue/default.nix @@ -31,12 +31,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 ac2d3b1b8b9e8..204bae3c8e936 100644 --- a/pkgs/development/libraries/science/chemistry/simple-dftd3/default.nix +++ b/pkgs/development/libraries/science/chemistry/simple-dftd3/default.nix @@ -49,15 +49,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 860a9f55d42f6..e0155efd02b76 100644 --- a/pkgs/development/libraries/science/chemistry/tblite/default.nix +++ b/pkgs/development/libraries/science/chemistry/tblite/default.nix @@ -57,15 +57,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/electronics/qcsxcad/default.nix b/pkgs/development/libraries/science/electronics/qcsxcad/default.nix index 25d739f739de2..63bf52d1fb01a 100644 --- a/pkgs/development/libraries/science/electronics/qcsxcad/default.nix +++ b/pkgs/development/libraries/science/electronics/qcsxcad/default.nix @@ -41,11 +41,11 @@ mkDerivation { qtbase ]; - meta = with lib; { + meta = { description = "Qt library for CSXCAD"; homepage = "https://github.com/thliebig/QCSXCAD"; - 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/libraries/science/math/clblas/default.nix b/pkgs/development/libraries/science/math/clblas/default.nix index 8bd4297fb95bc..6b75a50eee45b 100644 --- a/pkgs/development/libraries/science/math/clblas/default.nix +++ b/pkgs/development/libraries/science/math/clblas/default.nix @@ -72,15 +72,15 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { homepage = "https://github.com/clMathLibraries/clBLAS"; description = "Software library containing BLAS functions written in OpenCL"; longDescription = '' This package contains a library of BLAS functions on top of OpenCL. ''; - license = licenses.asl20; - maintainers = with maintainers; [ artuuge ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ artuuge ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/science/math/or-tools/default.nix b/pkgs/development/libraries/science/math/or-tools/default.nix index c460694da0fed..4e1802d5a557d 100644 --- a/pkgs/development/libraries/science/math/or-tools/default.nix +++ b/pkgs/development/libraries/science/math/or-tools/default.nix @@ -144,14 +144,14 @@ stdenv.mkDerivation rec { "python" ]; - meta = with lib; { + meta = { homepage = "https://github.com/google/or-tools"; - license = licenses.asl20; + license = lib.licenses.asl20; description = '' Google's software suite for combinatorial optimization. ''; mainProgram = "fzn-ortools"; - maintainers = with maintainers; [ andersk ]; - platforms = with platforms; linux ++ darwin; + maintainers = with lib.maintainers; [ andersk ]; + platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/development/libraries/science/math/suitesparse/4.2.nix b/pkgs/development/libraries/science/math/suitesparse/4.2.nix index 67f580b145dcf..6de21a0322bf9 100644 --- a/pkgs/development/libraries/science/math/suitesparse/4.2.nix +++ b/pkgs/development/libraries/science/math/suitesparse/4.2.nix @@ -43,15 +43,15 @@ stdenv.mkDerivation rec { "LAPACK=-llapack" ]; - 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/science/math/suitesparse/4.4.nix b/pkgs/development/libraries/science/math/suitesparse/4.4.nix index 98a1d4599f4c5..3c9f89e0394ce 100644 --- a/pkgs/development/libraries/science/math/suitesparse/4.4.nix +++ b/pkgs/development/libraries/science/math/suitesparse/4.4.nix @@ -104,15 +104,15 @@ stdenv.mkDerivation rec { lapack ]; - 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/science/math/suitesparse/default.nix b/pkgs/development/libraries/science/math/suitesparse/default.nix index c840b25345c3d..2bdff45d1f149 100644 --- a/pkgs/development/libraries/science/math/suitesparse/default.nix +++ b/pkgs/development/libraries/science/math/suitesparse/default.nix @@ -100,15 +100,15 @@ stdenv.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/science/math/trilinos/default.nix b/pkgs/development/libraries/science/math/trilinos/default.nix index e4c7f587eaef5..144f051994df8 100644 --- a/pkgs/development/libraries/science/math/trilinos/default.nix +++ b/pkgs/development/libraries/science/math/trilinos/default.nix @@ -98,7 +98,7 @@ stdenv.mkDerivation rec { inherit withMPI; }; - meta = with lib; { + meta = { description = "Engineering and scientific problems algorithms"; mainProgram = "nvcc_wrapper"; longDescription = '' @@ -108,8 +108,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/development/libraries/science/networking/ns-3/default.nix b/pkgs/development/libraries/science/networking/ns-3/default.nix index a69b6c27b6b0f..4d714b3075a93 100644 --- a/pkgs/development/libraries/science/networking/ns-3/default.nix +++ b/pkgs/development/libraries/science/networking/ns-3/default.nix @@ -159,12 +159,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/development/libraries/sfml/default.nix b/pkgs/development/libraries/sfml/default.nix index 21c9927ee6201..e0ca14e6ca590 100644 --- a/pkgs/development/libraries/sfml/default.nix +++ b/pkgs/development/libraries/sfml/default.nix @@ -75,7 +75,7 @@ stdenv.mkDerivation rec { "-DSFML_USE_SYSTEM_DEPS=yes" ]; - meta = with lib; { + meta = { homepage = "https://www.sfml-dev.org/"; description = "Simple and fast multimedia library"; longDescription = '' @@ -83,8 +83,8 @@ stdenv.mkDerivation rec { It provides access to windowing, graphics, audio and network. It is written in C++, and has bindings for various languages such as C, .Net, Ruby, Python. ''; - license = licenses.zlib; - maintainers = [ maintainers.astsmtl ]; - platforms = platforms.unix; + license = lib.licenses.zlib; + maintainers = [ lib.maintainers.astsmtl ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/signond/default.nix b/pkgs/development/libraries/signond/default.nix index f6992e249dcf2..a5f53ae7bb0fe 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 = with maintainers; [ freezeboy ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ freezeboy ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/soci/bc-soci.nix b/pkgs/development/libraries/soci/bc-soci.nix index f8442371a6f71..8d69e119bb75e 100644 --- a/pkgs/development/libraries/soci/bc-soci.nix +++ b/pkgs/development/libraries/soci/bc-soci.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { boost ]; - meta = with lib; { + meta = { description = "Database access library for C++. Belledonne Communications' fork for Linphone"; homepage = "https://gitlab.linphone.org/BC/public/external/soci"; - license = licenses.boost; - platforms = platforms.all; - maintainers = with maintainers; [ thibaultlemaire ]; + license = lib.licenses.boost; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ thibaultlemaire ]; }; } diff --git a/pkgs/development/libraries/soci/default.nix b/pkgs/development/libraries/soci/default.nix index 7f4e7e01d1e90..32d07b58998b3 100644 --- a/pkgs/development/libraries/soci/default.nix +++ b/pkgs/development/libraries/soci/default.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { Kerberos ]; - meta = with lib; { + meta = { description = "Database access library for C++"; homepage = "https://soci.sourceforge.net/"; - license = licenses.boost; - platforms = platforms.all; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.boost; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/libraries/sofia-sip/default.nix b/pkgs/development/libraries/sofia-sip/default.nix index d70bd95bef04b..bce9c0d04d965 100644 --- a/pkgs/development/libraries/sofia-sip/default.nix +++ b/pkgs/development/libraries/sofia-sip/default.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "Open-source SIP User-Agent library, compliant with the IETF RFC3261 specification"; homepage = "https://github.com/freeswitch/sofia-sip"; - platforms = platforms.unix; - license = licenses.lgpl2; + platforms = lib.platforms.unix; + license = lib.licenses.lgpl2; }; } diff --git a/pkgs/development/libraries/soil/default.nix b/pkgs/development/libraries/soil/default.nix index e8f8e75f8fd8d..dd41a36b5083d 100644 --- a/pkgs/development/libraries/soil/default.nix +++ b/pkgs/development/libraries/soil/default.nix @@ -38,15 +38,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/development/libraries/soqt/default.nix b/pkgs/development/libraries/soqt/default.nix index 151025b4d879a..9f04c7c91e54f 100644 --- a/pkgs/development/libraries/soqt/default.nix +++ b/pkgs/development/libraries/soqt/default.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { homepage = "https://github.com/coin3d/soqt"; - license = licenses.bsd3; + license = lib.licenses.bsd3; description = "Glue between Coin high-level 3D visualization library and Qt"; - maintainers = with maintainers; [ gebner ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ gebner ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/speech-tools/default.nix b/pkgs/development/libraries/speech-tools/default.nix index 6ee5391451c72..87b6b6225754b 100644 --- a/pkgs/development/libraries/speech-tools/default.nix +++ b/pkgs/development/libraries/speech-tools/default.nix @@ -73,11 +73,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/development/libraries/sqlite/sqlar.nix b/pkgs/development/libraries/sqlite/sqlar.nix index 7b6b41c7900de..c54a8d0df6005 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/structuresynth/default.nix b/pkgs/development/libraries/structuresynth/default.nix index 362aaa7e25c95..23b44fb28d19b 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/tbb/2020_3.nix b/pkgs/development/libraries/tbb/2020_3.nix index 0399aa4c165fd..8cec6c4bfaf9c 100644 --- a/pkgs/development/libraries/tbb/2020_3.nix +++ b/pkgs/development/libraries/tbb/2020_3.nix @@ -110,10 +110,10 @@ stdenv.mkDerivation rec { --subst-var-by TBB_LIB_NAME "tbb" ''; - meta = with lib; { + meta = { description = "Intel Thread Building Blocks C++ Library"; homepage = "http://threadingbuildingblocks.org/"; - license = licenses.asl20; + license = lib.licenses.asl20; longDescription = '' Intel Threading Building Blocks offers a rich and complete approach to expressing parallelism in a C++ program. It is a library that helps you @@ -122,8 +122,8 @@ stdenv.mkDerivation rec { represents a higher-level, task-based parallelism that abstracts platform details and threading mechanisms for scalability and performance. ''; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice tmarkus ]; diff --git a/pkgs/development/libraries/tbb/2022_0.nix b/pkgs/development/libraries/tbb/2022_0.nix index 86165afb23248..459f2a936bc4a 100644 --- a/pkgs/development/libraries/tbb/2022_0.nix +++ b/pkgs/development/libraries/tbb/2022_0.nix @@ -61,10 +61,10 @@ stdenv.mkDerivation rec { --replace-fail 'tbb_add_test(SUBDIR conformance NAME conformance_resumable_tasks DEPENDENCIES TBB::tbb)' "" ''; - meta = with lib; { + meta = { description = "Intel Thread Building Blocks C++ Library"; homepage = "http://threadingbuildingblocks.org/"; - license = licenses.asl20; + license = lib.licenses.asl20; longDescription = '' Intel Threading Building Blocks offers a rich and complete approach to expressing parallelism in a C++ program. It is a library that helps you @@ -73,8 +73,8 @@ stdenv.mkDerivation rec { represents a higher-level, task-based parallelism that abstracts platform details and threading mechanisms for scalability and performance. ''; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice tmarkus ]; diff --git a/pkgs/development/libraries/tbb/default.nix b/pkgs/development/libraries/tbb/default.nix index a27ff43e241fb..e250b91c85a63 100644 --- a/pkgs/development/libraries/tbb/default.nix +++ b/pkgs/development/libraries/tbb/default.nix @@ -61,10 +61,10 @@ stdenv.mkDerivation rec { --replace-fail 'tbb_add_test(SUBDIR conformance NAME conformance_resumable_tasks DEPENDENCIES TBB::tbb)' "" ''; - meta = with lib; { + meta = { description = "Intel Thread Building Blocks C++ Library"; homepage = "http://threadingbuildingblocks.org/"; - license = licenses.asl20; + license = lib.licenses.asl20; longDescription = '' Intel Threading Building Blocks offers a rich and complete approach to expressing parallelism in a C++ program. It is a library that helps you @@ -73,8 +73,8 @@ stdenv.mkDerivation rec { represents a higher-level, task-based parallelism that abstracts platform details and threading mechanisms for scalability and performance. ''; - platforms = platforms.unix; - maintainers = with maintainers; [ + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice tmarkus ]; diff --git a/pkgs/development/libraries/tclap/1.2.nix b/pkgs/development/libraries/tclap/1.2.nix index a586e69091937..7189e9f525c4d 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 2daa837ad5140..a3521561d5f8f 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; - maintainers = teams.deshaw.members; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = lib.teams.deshaw.members; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/libraries/telepathy/qt/default.nix b/pkgs/development/libraries/telepathy/qt/default.nix index d8468027985ca..dd7af08c6c5c3 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/unicorn/default.nix b/pkgs/development/libraries/unicorn/default.nix index 77947d5756b70..605de2d9a0d72 100644 --- a/pkgs/development/libraries/unicorn/default.nix +++ b/pkgs/development/libraries/unicorn/default.nix @@ -40,12 +40,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/development/libraries/ustream-ssl/default.nix b/pkgs/development/libraries/ustream-ssl/default.nix index e618431bb01c6..6ebb153ee6af4 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 387362906e2ed..026093bef61a5 100644 --- a/pkgs/development/libraries/valhalla/default.nix +++ b/pkgs/development/libraries/valhalla/default.nix @@ -91,13 +91,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/vc/0.7.nix b/pkgs/development/libraries/vc/0.7.nix index c894dc31de22d..4cde48e4fd34b 100644 --- a/pkgs/development/libraries/vc/0.7.nix +++ b/pkgs/development/libraries/vc/0.7.nix @@ -26,12 +26,12 @@ 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ abbradar ]; # never built on aarch64-darwin since first introduction in nixpkgs broken = (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) diff --git a/pkgs/development/libraries/vc/default.nix b/pkgs/development/libraries/vc/default.nix index 8ff1ccd81d53d..ddc418aa8c0b5 100644 --- a/pkgs/development/libraries/vc/default.nix +++ b/pkgs/development/libraries/vc/default.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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/libraries/vid-stab/default.nix b/pkgs/development/libraries/vid-stab/default.nix index dcc4779090b26..ed444606fb005 100644 --- a/pkgs/development/libraries/vid-stab/default.nix +++ b/pkgs/development/libraries/vid-stab/default.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { propagatedBuildInputs = lib.optionals stdenv.cc.isClang [ openmp ]; - 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/vigra/default.nix b/pkgs/development/libraries/vigra/default.nix index 34bd608de8e26..f92952bff11a7 100644 --- a/pkgs/development/libraries/vigra/default.nix +++ b/pkgs/development/libraries/vigra/default.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { "-DCMAKE_C_FLAGS=-fPIC" ]; - meta = with lib; { + meta = { description = "Novel computer vision C++ library with customizable algorithms and data structures"; mainProgram = "vigra-config"; homepage = "https://hci.iwr.uni-heidelberg.de/vigra"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/libraries/wayland/default.nix b/pkgs/development/libraries/wayland/default.nix index 518fd31e2ffa8..881fc70791985 100644 --- a/pkgs/development/libraries/wayland/default.nix +++ b/pkgs/development/libraries/wayland/default.nix @@ -103,7 +103,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Core Wayland window system code and protocol"; mainProgram = "wayland-scanner"; longDescription = '' @@ -115,9 +115,9 @@ stdenv.mkDerivation (finalAttrs: { rendering). ''; homepage = "https://wayland.freedesktop.org/"; - license = licenses.mit; # Expat version - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.mit; # Expat version + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ primeos codyopel qyliss diff --git a/pkgs/development/libraries/wayland/scanner.nix b/pkgs/development/libraries/wayland/scanner.nix index d826901d01e68..e1830e43ebb10 100644 --- a/pkgs/development/libraries/wayland/scanner.nix +++ b/pkgs/development/libraries/wayland/scanner.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation { libxml2 ]; - 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; }; } diff --git a/pkgs/development/libraries/waylandpp/default.nix b/pkgs/development/libraries/waylandpp/default.nix index fbb0d0dad266f..230883db7afd8 100644 --- a/pkgs/development/libraries/waylandpp/default.nix +++ b/pkgs/development/libraries/waylandpp/default.nix @@ -85,7 +85,7 @@ stdenv.mkDerivation rec { export XDG_CACHE_HOME="$(mktemp -d)" ''; - meta = with lib; { + meta = { description = "Wayland C++ binding"; mainProgram = "wayland-scanner++"; homepage = "https://github.com/NilsBrause/waylandpp/"; diff --git a/pkgs/development/libraries/wiiuse/default.nix b/pkgs/development/libraries/wiiuse/default.nix index 606dd201f3249..778d61b2e80a4 100644 --- a/pkgs/development/libraries/wiiuse/default.nix +++ b/pkgs/development/libraries/wiiuse/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { "-DBUILD_EXAMPLE_SDL=OFF" ] ++ [ (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/development/libraries/wildmidi/default.nix b/pkgs/development/libraries/wildmidi/default.nix index 5433a09dc9559..c326c4ad2d7b2 100644 --- a/pkgs/development/libraries/wildmidi/default.nix +++ b/pkgs/development/libraries/wildmidi/default.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { ln -s ${defaultCfg} ${defaultCfgPath} ''; - meta = with lib; { + meta = { description = "Software MIDI player and library"; mainProgram = "wildmidi"; longDescription = '' @@ -71,8 +71,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/development/libraries/wlroots/protocols.nix b/pkgs/development/libraries/wlroots/protocols.nix index 898513a9d4f17..b3ec30a0618ff 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/xdg-desktop-portal/default.nix b/pkgs/development/libraries/xdg-desktop-portal/default.nix index 79c7633a5576b..3ecc1531dd461 100644 --- a/pkgs/development/libraries/xdg-desktop-portal/default.nix +++ b/pkgs/development/libraries/xdg-desktop-portal/default.nix @@ -196,11 +196,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Desktop integration portals for sandboxed apps"; homepage = "https://flatpak.github.io/xdg-desktop-portal/"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ jtojnar ]; - platforms = platforms.linux; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/development/libraries/yaml-cpp/0.3.0.nix b/pkgs/development/libraries/yaml-cpp/0.3.0.nix index e1103c33a036b..3a7a54a8e1c2c 100644 --- a/pkgs/development/libraries/yaml-cpp/0.3.0.nix +++ b/pkgs/development/libraries/yaml-cpp/0.3.0.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; - 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/development/libraries/yaml-cpp/default.nix b/pkgs/development/libraries/yaml-cpp/default.nix index 75941866b6044..3b8f9036978a3 100644 --- a/pkgs/development/libraries/yaml-cpp/default.nix +++ b/pkgs/development/libraries/yaml-cpp/default.nix @@ -34,11 +34,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/development/libraries/yubico-pam/default.nix b/pkgs/development/libraries/yubico-pam/default.nix index 646188c4c6948..fc41c130ef229 100644 --- a/pkgs/development/libraries/yubico-pam/default.nix +++ b/pkgs/development/libraries/yubico-pam/default.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { SystemConfiguration ]; - 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/development/libraries/zlib/default.nix b/pkgs/development/libraries/zlib/default.nix index 47b038358a32a..3e2dd429e5e3a 100644 --- a/pkgs/development/libraries/zlib/default.nix +++ b/pkgs/development/libraries/zlib/default.nix @@ -154,11 +154,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 eceb9c175a18f..e90344bb2a0b0 100644 --- a/pkgs/development/lisp-modules/asdf/2.26.nix +++ b/pkgs/development/lisp-modules/asdf/2.26.nix @@ -36,10 +36,10 @@ 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"; - 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 4346f68ea79e6..a1a90f621ed80 100644 --- a/pkgs/development/lisp-modules/asdf/3.1.nix +++ b/pkgs/development/lisp-modules/asdf/3.1.nix @@ -35,10 +35,10 @@ 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"; - 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 f82a42d68b015..5a9902cfe17cd 100644 --- a/pkgs/development/lisp-modules/asdf/3.3.nix +++ b/pkgs/development/lisp-modules/asdf/3.3.nix @@ -44,10 +44,10 @@ 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"; - 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 9729d6d62c2d0..459b3142cbe25 100644 --- a/pkgs/development/lisp-modules/asdf/default.nix +++ b/pkgs/development/lisp-modules/asdf/default.nix @@ -35,10 +35,10 @@ 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"; - 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 1d682d2f8c056..774aa4fb800d2 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/newlib/default.nix b/pkgs/development/misc/newlib/default.nix index fe71113a6f7d1..4d7716bb9136e 100644 --- a/pkgs/development/misc/newlib/default.nix +++ b/pkgs/development/misc/newlib/default.nix @@ -129,7 +129,7 @@ stdenv.mkDerivation (finalAttrs: { libdir = "/${stdenv.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" @@ -139,6 +139,6 @@ stdenv.mkDerivation (finalAttrs: { # COPYING.LIBGLOSS # COPYING.NEWLIB # COPYING3 - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; }; }) diff --git a/pkgs/development/mobile/adb-sync/default.nix b/pkgs/development/mobile/adb-sync/default.nix index d254c7e2a5e1b..4e250fd9252ec 100644 --- a/pkgs/development/mobile/adb-sync/default.nix +++ b/pkgs/development/mobile/adb-sync/default.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/development/mobile/fdroidcl/default.nix b/pkgs/development/mobile/fdroidcl/default.nix index 60bccaef812ae..32139e4b827d0 100644 --- a/pkgs/development/mobile/fdroidcl/default.nix +++ b/pkgs/development/mobile/fdroidcl/default.nix @@ -28,11 +28,11 @@ buildGoModule rec { # TestScript/search attempts to connect to fdroid doCheck = false; - meta = with lib; { + meta = { description = "F-Droid command line interface written in Go"; mainProgram = "fdroidcl"; homepage = "https://github.com/mvdan/fdroidcl"; - license = licenses.bsd3; - maintainers = with maintainers; [ aleksana ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ aleksana ]; }; } diff --git a/pkgs/development/mobile/webos/cmake-modules.nix b/pkgs/development/mobile/webos/cmake-modules.nix index be7818a9cab51..21a2e2fe22f07 100644 --- a/pkgs/development/mobile/webos/cmake-modules.nix +++ b/pkgs/development/mobile/webos/cmake-modules.nix @@ -29,9 +29,9 @@ stdenv.mkDerivation rec { setupHook = ./cmake-setup-hook.sh; - 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 9cd3fb152e31a..9c1920a8f64f3 100644 --- a/pkgs/development/mobile/webos/novacom.nix +++ b/pkgs/development/mobile/webos/novacom.nix @@ -29,10 +29,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/ocaml-modules/afl-persistent/default.nix b/pkgs/development/ocaml-modules/afl-persistent/default.nix index e1b1c375b332c..faf9b8f5fe3e7 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 dddf79fa741ed..ab37f4ee2e85a 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 15b60d2882218..bc4c994dc525b 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 d8ad58b6c45dc..ecbb4c9d7b2e1 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 06d96fddeb820..77cbcf2717440 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 af1f2380a28b3..a7081664d3848 100644 --- a/pkgs/development/ocaml-modules/arp/default.nix +++ b/pkgs/development/ocaml-modules/arp/default.nix @@ -59,10 +59,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 c956c430fc2e7..28947ad7934f9 100644 --- a/pkgs/development/ocaml-modules/atd/default.nix +++ b/pkgs/development/ocaml-modules/atd/default.nix @@ -28,11 +28,11 @@ buildDunePackage rec { 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 b06471a495d16..0846048205b6a 100644 --- a/pkgs/development/ocaml-modules/augeas/default.nix +++ b/pkgs/development/ocaml-modules/augeas/default.nix @@ -51,10 +51,10 @@ stdenv.mkDerivation rec { 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/b0/default.nix b/pkgs/development/ocaml-modules/b0/default.nix index a6c0bb4327d84..a6c2085607edb 100644 --- a/pkgs/development/ocaml-modules/b0/default.nix +++ b/pkgs/development/ocaml-modules/b0/default.nix @@ -41,7 +41,7 @@ lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08") 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 @@ -59,7 +59,7 @@ lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08") ''; homepage = "https://erratique.ch/software/b0"; inherit (ocaml.meta) platforms; - license = licenses.isc; - maintainers = [ maintainers.Julow ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.Julow ]; }; } diff --git a/pkgs/development/ocaml-modules/bap/default.nix b/pkgs/development/ocaml-modules/bap/default.nix index 067e2bc16adbe..b10eb2c09b3a0 100644 --- a/pkgs/development/ocaml-modules/bap/default.nix +++ b/pkgs/development/ocaml-modules/bap/default.nix @@ -140,11 +140,11 @@ else "--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"; }; } diff --git a/pkgs/development/ocaml-modules/bdd/default.nix b/pkgs/development/ocaml-modules/bdd/default.nix index cc9306bb45526..41754be4eb03a 100644 --- a/pkgs/development/ocaml-modules/bdd/default.nix +++ b/pkgs/development/ocaml-modules/bdd/default.nix @@ -28,10 +28,10 @@ buildDunePackage { stdlib-shims ]; - meta = with lib; { + meta = { description = "Quick implementation of a Binary Decision Diagrams (BDD) library for OCaml"; homepage = "https://github.com/backtracking/ocaml-bdd"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ wegank ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ wegank ]; }; } diff --git a/pkgs/development/ocaml-modules/bheap/default.nix b/pkgs/development/ocaml-modules/bheap/default.nix index 255aa62b7a5e3..af9aa6979b66b 100644 --- a/pkgs/development/ocaml-modules/bheap/default.nix +++ b/pkgs/development/ocaml-modules/bheap/default.nix @@ -21,10 +21,10 @@ buildDunePackage rec { stdlib-shims ]; - meta = with lib; { + meta = { description = "OCaml binary heap implementation by Jean-Christophe Filliatre"; - license = licenses.lgpl21Only; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.lgpl21Only; + maintainers = [ lib.maintainers.sternenseemann ]; homepage = "https://github.com/backtracking/bheap"; }; } diff --git a/pkgs/development/ocaml-modules/bigarray-overlap/default.nix b/pkgs/development/ocaml-modules/bigarray-overlap/default.nix index 531bbfc0cdb3f..a1610e3b6e044 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 4023d5db5c4fc..6f976aeb544b9 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/bitstring/default.nix b/pkgs/development/ocaml-modules/bitstring/default.nix index 12f1232b71a5a..106edfd318645 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 1ee6783162b76..7b79d5bf65a9d 100644 --- a/pkgs/development/ocaml-modules/bjack/default.nix +++ b/pkgs/development/ocaml-modules/bjack/default.nix @@ -32,10 +32,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 4fabc34188858..50f77de7e8130 100644 --- a/pkgs/development/ocaml-modules/bz2/default.nix +++ b/pkgs/development/ocaml-modules/bz2/default.nix @@ -42,10 +42,10 @@ else 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; maintainers = [ ]; }; } diff --git a/pkgs/development/ocaml-modules/ca-certs-nss/default.nix b/pkgs/development/ocaml-modules/ca-certs-nss/default.nix index c6d3cfe1e0390..262fcf5eeeaec 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 23a76af413874..ee5f698038b80 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/cairo2/default.nix b/pkgs/development/ocaml-modules/cairo2/default.nix index baed712e9ac6a..0d2077c73d5f1 100644 --- a/pkgs/development/ocaml-modules/cairo2/default.nix +++ b/pkgs/development/ocaml-modules/cairo2/default.nix @@ -35,7 +35,7 @@ buildDunePackage rec { || lib.versionAtLeast ocaml.version "4.10" ); - meta = with lib; { + meta = { homepage = "https://github.com/Chris00/ocaml-cairo"; description = "Binding to Cairo, a 2D Vector Graphics Library"; longDescription = '' @@ -44,8 +44,8 @@ buildDunePackage rec { the X Window System, Quartz, Win32, image buffers, PostScript, PDF, and SVG file output. ''; - license = licenses.lgpl3; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ jirkamarsik vbgl ]; diff --git a/pkgs/development/ocaml-modules/camlzip/default.nix b/pkgs/development/ocaml-modules/camlzip/default.nix index e36453d216fe2..95a743ed6729e 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 = '' @@ -92,6 +92,6 @@ stdenv.mkDerivation { ''; license = "LGPL+linking exceptions"; inherit (ocaml.meta) platforms; - maintainers = with maintainers; [ maggesi ]; + maintainers = with lib.maintainers; [ maggesi ]; }; } diff --git a/pkgs/development/ocaml-modules/carton/default.nix b/pkgs/development/ocaml-modules/carton/default.nix index b1f35bea8fa55..716471b5fae5b 100644 --- a/pkgs/development/ocaml-modules/carton/default.nix +++ b/pkgs/development/ocaml-modules/carton/default.nix @@ -88,10 +88,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 07a16e32fbb36..9deb440b2bace 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 e07f1c796eed6..8f85c2a2e3784 100644 --- a/pkgs/development/ocaml-modules/chrome-trace/default.nix +++ b/pkgs/development/ocaml-modules/chrome-trace/default.nix @@ -17,9 +17,9 @@ buildDunePackage rec { 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 da1c0aa10c2b7..c70b80ae0953d 100644 --- a/pkgs/development/ocaml-modules/cil/default.nix +++ b/pkgs/development/ocaml-modules/cil/default.nix @@ -38,11 +38,11 @@ else ''; 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 ]; platforms = ocaml.meta.platforms or [ ]; }; } diff --git a/pkgs/development/ocaml-modules/cmdliner/1_0.nix b/pkgs/development/ocaml-modules/cmdliner/1_0.nix index ee57846783f9c..c76d8fad73f63 100644 --- a/pkgs/development/ocaml-modules/cmdliner/1_0.nix +++ b/pkgs/development/ocaml-modules/cmdliner/1_0.nix @@ -28,11 +28,11 @@ 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 ]; }; } diff --git a/pkgs/development/ocaml-modules/cmdliner/1_1.nix b/pkgs/development/ocaml-modules/cmdliner/1_1.nix index 31ec0e69ef2fe..60d8e0eb1f5d7 100644 --- a/pkgs/development/ocaml-modules/cmdliner/1_1.nix +++ b/pkgs/development/ocaml-modules/cmdliner/1_1.nix @@ -30,11 +30,11 @@ lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08") 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 ]; }; } diff --git a/pkgs/development/ocaml-modules/color/default.nix b/pkgs/development/ocaml-modules/color/default.nix index 53a1c5273f8ca..7b02d59df05fb 100644 --- a/pkgs/development/ocaml-modules/color/default.nix +++ b/pkgs/development/ocaml-modules/color/default.nix @@ -21,10 +21,10 @@ buildDunePackage rec { gg ]; - meta = with lib; { + meta = { description = "Converts between different color formats"; - license = licenses.mit; - maintainers = with maintainers; [ fgaz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fgaz ]; homepage = "https://github.com/anuragsoni/color"; }; } diff --git a/pkgs/development/ocaml-modules/cow/default.nix b/pkgs/development/ocaml-modules/cow/default.nix index 7e9d1d1c662a7..fb97966801f4b 100644 --- a/pkgs/development/ocaml-modules/cow/default.nix +++ b/pkgs/development/ocaml-modules/cow/default.nix @@ -30,14 +30,14 @@ buildDunePackage rec { checkInputs = [ alcotest ]; doCheck = true; - meta = with lib; { + meta = { description = "Caml on the Web"; longDescription = '' Writing web-applications requires a lot of skills: HTML, XML, JSON and Markdown, to name but a few! This library provides OCaml combinators for these web formats. ''; - license = licenses.isc; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/cpdf/default.nix b/pkgs/development/ocaml-modules/cpdf/default.nix index 7e917482379d8..06691abfcc678 100644 --- a/pkgs/development/ocaml-modules/cpdf/default.nix +++ b/pkgs/development/ocaml-modules/cpdf/default.nix @@ -41,11 +41,11 @@ else 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; }; diff --git a/pkgs/development/ocaml-modules/cpu/default.nix b/pkgs/development/ocaml-modules/cpu/default.nix index a93826b344962..5967a8c7db95e 100644 --- a/pkgs/development/ocaml-modules/cpu/default.nix +++ b/pkgs/development/ocaml-modules/cpu/default.nix @@ -28,10 +28,10 @@ buildDunePackage rec { hardeningDisable = lib.optional stdenv.hostPlatform.isDarwin "strictoverflow"; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Core pinning library"; - maintainers = [ maintainers.bcdarwin ]; - license = licenses.lgpl2; + maintainers = [ lib.maintainers.bcdarwin ]; + license = lib.licenses.lgpl2; }; } diff --git a/pkgs/development/ocaml-modules/crowbar/default.nix b/pkgs/development/ocaml-modules/crowbar/default.nix index 045df90d775df..70a22674185f6 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 dfa64d096ceac..f3630901617c9 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/ctypes/default.nix b/pkgs/development/ocaml-modules/ctypes/default.nix index 2db0438c76592..b7a900a9fe7a5 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 40cb979e50adb..7f09ce7e77ed7 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 0ab7922e67472..3eed06357239b 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 e02b13291ecd9..c6149db9dc17a 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/diet/default.nix b/pkgs/development/ocaml-modules/diet/default.nix index 5e78e03f56833..0a6b77723bc9a 100644 --- a/pkgs/development/ocaml-modules/diet/default.nix +++ b/pkgs/development/ocaml-modules/diet/default.nix @@ -23,10 +23,10 @@ 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; - maintainers = with maintainers; [ ehmry ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ ehmry ]; }; } diff --git a/pkgs/development/ocaml-modules/dose3/default.nix b/pkgs/development/ocaml-modules/dose3/default.nix index e271ea128c7f2..fa47617cafdac 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/dssi/default.nix b/pkgs/development/ocaml-modules/dssi/default.nix index 58427339a480c..1e5888a7b5534 100644 --- a/pkgs/development/ocaml-modules/dssi/default.nix +++ b/pkgs/development/ocaml-modules/dssi/default.nix @@ -26,10 +26,10 @@ buildDunePackage rec { alsa-lib ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-dssi"; description = "Bindings for the DSSI API which provides audio synthesizers"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/dtools/default.nix b/pkgs/development/ocaml-modules/dtools/default.nix index 6867f32289b57..25d26437ff277 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-NLQkQx3ZgxU1zvaQjOi+38nSeX+zKCXW40zOxVNekZA="; }; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-dtools"; description = "Library providing various helper functions to make daemons"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/dum/default.nix b/pkgs/development/ocaml-modules/dum/default.nix index fa41fe11f7c72..bb3d8b4011232 100644 --- a/pkgs/development/ocaml-modules/dum/default.nix +++ b/pkgs/development/ocaml-modules/dum/default.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { createFindlibDestdir = true; - meta = with lib; { + meta = { homepage = "https://github.com/mjambon/dum"; description = "Inspect the runtime representation of arbitrary OCaml values"; - license = licenses.lgpl21Plus; - maintainers = [ maintainers.alexfmpe ]; + license = lib.licenses.lgpl21Plus; + maintainers = [ lib.maintainers.alexfmpe ]; }; } diff --git a/pkgs/development/ocaml-modules/dune-action-plugin/default.nix b/pkgs/development/ocaml-modules/dune-action-plugin/default.nix index 1c40f29295d1c..dc618e8a06b95 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 rec { 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-configurator/default.nix b/pkgs/development/ocaml-modules/dune-configurator/default.nix index df4a8578df893..91f1366916283 100644 --- a/pkgs/development/ocaml-modules/dune-configurator/default.nix +++ b/pkgs/development/ocaml-modules/dune-configurator/default.nix @@ -21,9 +21,9 @@ buildDunePackage rec { 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 08523a8974c21..5b5644bcce7d1 100644 --- a/pkgs/development/ocaml-modules/dune-glob/default.nix +++ b/pkgs/development/ocaml-modules/dune-glob/default.nix @@ -19,10 +19,10 @@ buildDunePackage rec { 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 ad60aa1c75ecd..075654b94bc02 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 rec { 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 07b8c584023ba..331734d1bf007 100644 --- a/pkgs/development/ocaml-modules/dune-rpc/default.nix +++ b/pkgs/development/ocaml-modules/dune-rpc/default.nix @@ -31,10 +31,10 @@ buildDunePackage rec { 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 dde8e616bd940..6c6adb1b85d8b 100644 --- a/pkgs/development/ocaml-modules/dune-site/default.nix +++ b/pkgs/development/ocaml-modules/dune-site/default.nix @@ -19,10 +19,10 @@ buildDunePackage rec { 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 8a8188fa6730a..52711243aab76 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/easy-format/default.nix b/pkgs/development/ocaml-modules/easy-format/default.nix index df1b30dd647ac..b664f732b9dee 100644 --- a/pkgs/development/ocaml-modules/easy-format/default.nix +++ b/pkgs/development/ocaml-modules/easy-format/default.nix @@ -30,10 +30,10 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { description = "High-level and functional interface to the Format module of the OCaml standard library"; homepage = "https://github.com/ocaml-community/easy-format"; - license = licenses.bsd3; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/eigen/default.nix b/pkgs/development/ocaml-modules/eigen/default.nix index 3dbe6315d5cd0..47a814e261d4b 100644 --- a/pkgs/development/ocaml-modules/eigen/default.nix +++ b/pkgs/development/ocaml-modules/eigen/default.nix @@ -26,11 +26,11 @@ buildDunePackage rec { propagatedBuildInputs = [ ctypes ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Minimal/incomplete Ocaml interface to Eigen3, mostly for Owl"; - platforms = platforms.x86_64; - maintainers = [ maintainers.bcdarwin ]; - license = licenses.mit; + platforms = lib.platforms.x86_64; + maintainers = [ lib.maintainers.bcdarwin ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/either/default.nix b/pkgs/development/ocaml-modules/either/default.nix index 5967168061e84..39ca6ec6e3e87 100644 --- a/pkgs/development/ocaml-modules/either/default.nix +++ b/pkgs/development/ocaml-modules/either/default.nix @@ -15,10 +15,10 @@ buildDunePackage rec { useDune2 = true; - meta = with lib; { + meta = { description = "Compatibility Either module"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/mirage/either"; - maintainers = [ maintainers.sternenseemann ]; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/emile/default.nix b/pkgs/development/ocaml-modules/emile/default.nix index 07786a974202f..392c25b8f11da 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 e1969a24e574d..d91e270291f0c 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 1a45794059ee7..9a5de20d7eac6 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/ffmpeg/base.nix b/pkgs/development/ocaml-modules/ffmpeg/base.nix index bf63c00378cc3..c01aaa6375337 100644 --- a/pkgs/development/ocaml-modules/ffmpeg/base.nix +++ b/pkgs/development/ocaml-modules/ffmpeg/base.nix @@ -10,10 +10,10 @@ rec { sha256 = "sha256-Tr0YhoaaUSOlA7vlhAjPyFJI/iL7Z54oO27RnG7d+nA="; }; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-ffmpeg"; description = "Bindings for the ffmpeg libraries"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/fiber/default.nix b/pkgs/development/ocaml-modules/fiber/default.nix index cd2c62d66a49c..37e008884d1d0 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 9305760710b49..33c241e50ff3a 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 a16a93debab55..f3125941e5d03 100644 --- a/pkgs/development/ocaml-modules/fix/default.nix +++ b/pkgs/development/ocaml-modules/fix/default.nix @@ -19,10 +19,10 @@ buildDunePackage rec { minimalOCamlVersion = "4.03"; useDune2 = true; - 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 16283af681eac..1274ba3d79a77 100644 --- a/pkgs/development/ocaml-modules/flac/default.nix +++ b/pkgs/development/ocaml-modules/flac/default.nix @@ -26,10 +26,10 @@ buildDunePackage rec { 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 d638e057ea1ec..a32a002732c56 100644 --- a/pkgs/development/ocaml-modules/flex/default.nix +++ b/pkgs/development/ocaml-modules/flex/default.nix @@ -18,10 +18,10 @@ buildDunePackage rec { 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 bd86aa8f68b99..aa7b406131e54 100644 --- a/pkgs/development/ocaml-modules/fmt/default.nix +++ b/pkgs/development/ocaml-modules/fmt/default.nix @@ -37,11 +37,11 @@ else 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 ]; }; } diff --git a/pkgs/development/ocaml-modules/frei0r/default.nix b/pkgs/development/ocaml-modules/frei0r/default.nix index e4aba92bf4c6f..573b7ddf2b85b 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 857555a5363f5..3f204ad06b68e 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/functoria/default.nix b/pkgs/development/ocaml-modules/functoria/default.nix index 79cf437d87fe3..ce15530bcaa26 100644 --- a/pkgs/development/ocaml-modules/functoria/default.nix +++ b/pkgs/development/ocaml-modules/functoria/default.nix @@ -39,10 +39,10 @@ buildDunePackage { functoria-runtime ]; - meta = with lib; { + meta = { description = "DSL to organize functor applications"; homepage = "https://github.com/mirage/functoria"; - license = licenses.isc; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/functoria/runtime.nix b/pkgs/development/ocaml-modules/functoria/runtime.nix index 45af2438f55b4..73c12cacc4729 100644 --- a/pkgs/development/ocaml-modules/functoria/runtime.nix +++ b/pkgs/development/ocaml-modules/functoria/runtime.nix @@ -18,10 +18,10 @@ buildDunePackage rec { propagatedBuildInputs = [ cmdliner ]; - meta = with lib; { + meta = { homepage = "https://github.com/mirage/functoria"; - license = licenses.isc; + license = lib.licenses.isc; description = "Runtime support library for functoria-generated code"; - maintainers = [ maintainers.sternenseemann ]; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/functory/default.nix b/pkgs/development/ocaml-modules/functory/default.nix index 84b16d678de89..9d68ace09e291 100644 --- a/pkgs/development/ocaml-modules/functory/default.nix +++ b/pkgs/development/ocaml-modules/functory/default.nix @@ -44,11 +44,11 @@ lib.throwIf (lib.versionAtLeast ocaml.version "5.0") 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 ]; inherit (ocaml.meta) platforms; }; } diff --git a/pkgs/development/ocaml-modules/gd/default.nix b/pkgs/development/ocaml-modules/gd/default.nix index 28c1234508640..5b924af2bbb7b 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 ca967338827f1..2ea294727ddeb 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/github/default.nix b/pkgs/development/ocaml-modules/github/default.nix index e104f98b743dd..6f208fb58ee5a 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/gnuplot/default.nix b/pkgs/development/ocaml-modules/gnuplot/default.nix index 181366c226267..7b2e67d5f28f1 100644 --- a/pkgs/development/ocaml-modules/gnuplot/default.nix +++ b/pkgs/development/ocaml-modules/gnuplot/default.nix @@ -26,10 +26,10 @@ buildDunePackage rec { iso8601 ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Ocaml bindings to Gnuplot"; - maintainers = [ maintainers.bcdarwin ]; - license = licenses.lgpl21; + maintainers = [ lib.maintainers.bcdarwin ]; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/development/ocaml-modules/gsl/default.nix b/pkgs/development/ocaml-modules/gsl/default.nix index 5ab096a5a99c1..1ca795c345870 100644 --- a/pkgs/development/ocaml-modules/gsl/default.nix +++ b/pkgs/development/ocaml-modules/gsl/default.nix @@ -31,10 +31,10 @@ buildDunePackage rec { darwin.apple_sdk.frameworks.Accelerate ]; - 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 cbe55294443da..7ed5e9e97e428 100644 --- a/pkgs/development/ocaml-modules/gstreamer/default.nix +++ b/pkgs/development/ocaml-modules/gstreamer/default.nix @@ -42,10 +42,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 d65243e2cb71a..d3d666ef081af 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 849dd45a617ef..f806dbb0be225 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 b882215ae8020..095b88d91af3e 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/index/default.nix b/pkgs/development/ocaml-modules/index/default.nix index 598c2dd7af9a2..0c713f61f0860 100644 --- a/pkgs/development/ocaml-modules/index/default.nix +++ b/pkgs/development/ocaml-modules/index/default.nix @@ -52,10 +52,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 43a6424f7c045..47609528b5897 100644 --- a/pkgs/development/ocaml-modules/javalib/default.nix +++ b/pkgs/development/ocaml-modules/javalib/default.nix @@ -49,11 +49,11 @@ lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08") 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; }; } diff --git a/pkgs/development/ocaml-modules/jingoo/default.nix b/pkgs/development/ocaml-modules/jingoo/default.nix index 41c6e667bea48..ac56e2b44bb0c 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 e615c40d9a58b..b590a90282617 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-junit is an 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 383e4db25dae2..6b5be2f38743c 100644 --- a/pkgs/development/ocaml-modules/kafka/default.nix +++ b/pkgs/development/ocaml-modules/kafka/default.nix @@ -20,10 +20,10 @@ 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 ]; }; } diff --git a/pkgs/development/ocaml-modules/kicadsch/default.nix b/pkgs/development/ocaml-modules/kicadsch/default.nix index dde07551e50cb..92066bf56ed96 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 3736fc84a8d4d..33d16cebd9249 100644 --- a/pkgs/development/ocaml-modules/lablgl/default.nix +++ b/pkgs/development/ocaml-modules/lablgl/default.nix @@ -68,11 +68,11 @@ else 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 7d2a3601b4a53..6534c391a48fe 100644 --- a/pkgs/development/ocaml-modules/lablgtk/default.nix +++ b/pkgs/development/ocaml-modules/lablgtk/default.nix @@ -74,11 +74,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; [ maggesi roconnor vbgl diff --git a/pkgs/development/ocaml-modules/ladspa/default.nix b/pkgs/development/ocaml-modules/ladspa/default.nix index 7ff7a0311356b..c43ef4c1a6e11 100644 --- a/pkgs/development/ocaml-modules/ladspa/default.nix +++ b/pkgs/development/ocaml-modules/ladspa/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { buildInputs = [ dune-configurator ]; propagatedBuildInputs = [ ladspaH ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-alsa"; description = "Bindings for the LADSPA API which provides audio effects"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/lame/default.nix b/pkgs/development/ocaml-modules/lame/default.nix index 338d6a4bb913c..f0db471386060 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/landmarks/default.nix b/pkgs/development/ocaml-modules/landmarks/default.nix index 3a39592a9ecf8..6864d9cc3fd85 100644 --- a/pkgs/development/ocaml-modules/landmarks/default.nix +++ b/pkgs/development/ocaml-modules/landmarks/default.nix @@ -19,9 +19,9 @@ buildDunePackage { doCheck = lib.versionAtLeast ocaml.version "4.08" && lib.versionOlder ocaml.version "5.0"; - meta = with lib; { + meta = { description = "Simple Profiling Library for OCaml"; - maintainers = [ maintainers.kenran ]; - license = licenses.mit; + maintainers = [ lib.maintainers.kenran ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/lastfm/default.nix b/pkgs/development/ocaml-modules/lastfm/default.nix index 12b2777b79faa..88d23138d571c 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 6c1ff08f44dd3..ee1c06c6a5457 100644 --- a/pkgs/development/ocaml-modules/lem/default.nix +++ b/pkgs/development/ocaml-modules/lem/default.nix @@ -44,12 +44,12 @@ lib.throwIfNot (lib.versionAtLeast ocaml.version "4.07") 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 0499e640e2402..e0d1a0febd2a2 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 3ff0782ca288c..dbb2d71c1aa36 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 ccefd91c06cf8..ea684cf9488ec 100644 --- a/pkgs/development/ocaml-modules/linksem/default.nix +++ b/pkgs/development/ocaml-modules/linksem/default.nix @@ -31,11 +31,11 @@ lib.throwIfNot (lib.versionAtLeast ocaml.version "4.07") 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; }; } diff --git a/pkgs/development/ocaml-modules/linol/default.nix b/pkgs/development/ocaml-modules/linol/default.nix index 3d0f513cad5b4..5b9cb6f70eabb 100644 --- a/pkgs/development/ocaml-modules/linol/default.nix +++ b/pkgs/development/ocaml-modules/linol/default.nix @@ -28,10 +28,10 @@ buildDunePackage rec { trace ]; - meta = with lib; { + meta = { description = "LSP server library"; - license = licenses.mit; - maintainers = [ maintainers.ulrikstrid ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ulrikstrid ]; homepage = "https://github.com/c-cube/linol"; }; } diff --git a/pkgs/development/ocaml-modules/lo/default.nix b/pkgs/development/ocaml-modules/lo/default.nix index dd2dc8d493283..f5ee5cfecc2d5 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 ae43b9b5044cc..0ec69ec356a89 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 687d1a0fdc467..d055fa2108926 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 b83541271dd7a..34233dc4ede33 100644 --- a/pkgs/development/ocaml-modules/lwd/default.nix +++ b/pkgs/development/ocaml-modules/lwd/default.nix @@ -19,10 +19,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 36b0f042ba449..ae42630b58896 100644 --- a/pkgs/development/ocaml-modules/lwd/nottui-lwt.nix +++ b/pkgs/development/ocaml-modules/lwd/nottui-lwt.nix @@ -19,10 +19,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 9328677af22d2..4789b41ccab76 100644 --- a/pkgs/development/ocaml-modules/lwd/nottui-pretty.nix +++ b/pkgs/development/ocaml-modules/lwd/nottui-pretty.nix @@ -15,10 +15,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.nix b/pkgs/development/ocaml-modules/lwd/nottui.nix index 0b01deb1555da..d6bec1fdc3328 100644 --- a/pkgs/development/ocaml-modules/lwd/nottui.nix +++ b/pkgs/development/ocaml-modules/lwd/nottui.nix @@ -18,10 +18,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 9e7df7f3a2c89..6658fb1f299ab 100644 --- a/pkgs/development/ocaml-modules/lwd/tyxml-lwd.nix +++ b/pkgs/development/ocaml-modules/lwd/tyxml-lwd.nix @@ -28,10 +28,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/lwt-dllist/default.nix b/pkgs/development/ocaml-modules/lwt-dllist/default.nix index be344e94e333f..063122ab96cdd 100644 --- a/pkgs/development/ocaml-modules/lwt-dllist/default.nix +++ b/pkgs/development/ocaml-modules/lwt-dllist/default.nix @@ -24,10 +24,10 @@ buildDunePackage rec { ]; doCheck = lib.versionAtLeast ocaml.version "4.03"; - meta = with lib; { + meta = { description = "Mutable doubly-linked list with Lwt iterators"; homepage = "https://github.com/mirage/lwt-dllist"; - license = licenses.mit; - maintainers = [ maintainers.sternenseemann ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/macaddr/default.nix b/pkgs/development/ocaml-modules/macaddr/default.nix index b413e7570d74f..81568848c16b3 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 401e75f7ea890..172d10b4452b3 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 6460a1fb84962..9f2af3cea2f14 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-trace/default.nix b/pkgs/development/ocaml-modules/magic-trace/default.nix index 1cca903398f62..28fe2d2e06cae 100644 --- a/pkgs/development/ocaml-modules/magic-trace/default.nix +++ b/pkgs/development/ocaml-modules/magic-trace/default.nix @@ -46,10 +46,10 @@ buildDunePackage rec { shell ]; - meta = with lib; { + meta = { description = "Collects and displays high-resolution traces of what a process is doing"; - license = licenses.mit; - maintainers = [ maintainers.alizter ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.alizter ]; homepage = "https://github.com/janestreet/magic-trace"; }; } diff --git a/pkgs/development/ocaml-modules/magic/default.nix b/pkgs/development/ocaml-modules/magic/default.nix index a6bd0eb2a0333..6d41ee8962844 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; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/markup/default.nix b/pkgs/development/ocaml-modules/markup/default.nix index 85a9afd80a222..06b24b9917c97 100644 --- a/pkgs/development/ocaml-modules/markup/default.nix +++ b/pkgs/development/ocaml-modules/markup/default.nix @@ -29,11 +29,11 @@ buildDunePackage rec { checkInputs = [ ounit2 ]; doCheck = lib.versionAtLeast ocaml.version "4.08"; - meta = with lib; { + meta = { homepage = "https://github.com/aantron/markup.ml/"; description = "Pair of best-effort parsers implementing the HTML5 and XML specifications"; - license = licenses.mit; - maintainers = with maintainers; [ gal_bolle ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gal_bolle ]; }; } diff --git a/pkgs/development/ocaml-modules/mccs/default.nix b/pkgs/development/ocaml-modules/mccs/default.nix index d939538fa6601..a5a8781caeedd 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 5548dce3a3d57..7116fc52a3ba6 100644 --- a/pkgs/development/ocaml-modules/memprof-limits/default.nix +++ b/pkgs/development/ocaml-modules/memprof-limits/default.nix @@ -21,10 +21,10 @@ else 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 ]; }; } diff --git a/pkgs/development/ocaml-modules/menhir/lib.nix b/pkgs/development/ocaml-modules/menhir/lib.nix index f421b9de86c5c..908ae793f317a 100644 --- a/pkgs/development/ocaml-modules/menhir/lib.nix +++ b/pkgs/development/ocaml-modules/menhir/lib.nix @@ -24,7 +24,7 @@ buildDunePackage rec { minimalOCamlVersion = "4.03"; - meta = with lib; { + meta = { homepage = "http://pauillac.inria.fr/~fpottier/menhir/"; description = "Runtime support library for parsers generated by Menhir"; longDescription = '' @@ -33,7 +33,7 @@ buildDunePackage rec { 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 8d578539ba86c..7bc7f39005bf8 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 bbfb4e1e8f7e2..24c30c50a10e9 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 80758efc0ed1b..a17efdc45e422 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 09eb4b0a46824..b8376a190ce69 100644 --- a/pkgs/development/ocaml-modules/mirage-block-ramdisk/default.nix +++ b/pkgs/development/ocaml-modules/mirage-block-ramdisk/default.nix @@ -30,10 +30,10 @@ 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; - maintainers = with maintainers; [ ehmry ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ ehmry ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-block-unix/default.nix b/pkgs/development/ocaml-modules/mirage-block-unix/default.nix index 8efbe3a4bc9db..3283c968ccad8 100644 --- a/pkgs/development/ocaml-modules/mirage-block-unix/default.nix +++ b/pkgs/development/ocaml-modules/mirage-block-unix/default.nix @@ -37,10 +37,10 @@ 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; - maintainers = with maintainers; [ ehmry ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ ehmry ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-block/default.nix b/pkgs/development/ocaml-modules/mirage-block/default.nix index 365eb6a222877..71ae282ffaca1 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 b2969d3db6821..dd612da48f3f2 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-profile/default.nix b/pkgs/development/ocaml-modules/mirage-profile/default.nix index f363df5136ed3..ff7a539ece0dd 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 545f4f1d2e9a3..f058f4111b56f 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 5daedf448f335..5453e46a1ef6c 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 16df20d6f3f19..836e721ee6d7f 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-xen/default.nix b/pkgs/development/ocaml-modules/mirage-xen/default.nix index 184abc551f731..8079aa2cb7b43 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 399a68b2630d6..e199cf2bbb547 100644 --- a/pkgs/development/ocaml-modules/mirage/runtime.nix +++ b/pkgs/development/ocaml-modules/mirage/runtime.nix @@ -23,10 +23,10 @@ buildDunePackage rec { 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 20398177d1353..db902e49e654b 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 830938e703308..25043721c9930 100644 --- a/pkgs/development/ocaml-modules/mlx/default.nix +++ b/pkgs/development/ocaml-modules/mlx/default.nix @@ -32,10 +32,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 f7e3eb3233712..064a7ff4fba8c 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/mtime/default.nix b/pkgs/development/ocaml-modules/mtime/default.nix index 4c6677114b091..134df64306dab 100644 --- a/pkgs/development/ocaml-modules/mtime/default.nix +++ b/pkgs/development/ocaml-modules/mtime/default.nix @@ -33,11 +33,11 @@ lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08") 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; }; } diff --git a/pkgs/development/ocaml-modules/netchannel/default.nix b/pkgs/development/ocaml-modules/netchannel/default.nix index 9e4f8015b557a..fab8e5f62b7b0 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/nonstd/default.nix b/pkgs/development/ocaml-modules/nonstd/default.nix index 7d547d3818f94..d2cd31914954f 100644 --- a/pkgs/development/ocaml-modules/nonstd/default.nix +++ b/pkgs/development/ocaml-modules/nonstd/default.nix @@ -23,10 +23,10 @@ lib.throwIf (lib.versionAtLeast ocaml.version "5.0") "nonstd is not available fo postPatch = lib.optionalString (duneVersion != "1") "dune upgrade"; doCheck = true; - meta = with lib; { + meta = { homepage = "https://bitbucket.org/smondet/nonstd"; description = "Non-standard mini-library"; - license = licenses.isc; - maintainers = [ maintainers.alexfmpe ]; + license = lib.licenses.isc; + maintainers = [ lib.maintainers.alexfmpe ]; }; } diff --git a/pkgs/development/ocaml-modules/notty/default.nix b/pkgs/development/ocaml-modules/notty/default.nix index 26ed24c5f322b..7f8041e0c3884 100644 --- a/pkgs/development/ocaml-modules/notty/default.nix +++ b/pkgs/development/ocaml-modules/notty/default.nix @@ -25,10 +25,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 624a97507495d..763f159a20c33 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-gettext/default.nix b/pkgs/development/ocaml-modules/ocaml-gettext/default.nix index 79330a0999e5a..c2dfbe1ff753c 100644 --- a/pkgs/development/ocaml-modules/ocaml-gettext/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-gettext/default.nix @@ -33,10 +33,10 @@ buildDunePackage rec { dontStrip = true; - 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 20737655bd21d..355fdd350b86a 100644 --- a/pkgs/development/ocaml-modules/ocaml-libvirt/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-libvirt/default.nix @@ -55,10 +55,10 @@ lib.throwIfNot (lib.versionAtLeast ocaml.version "4.02") 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; }; diff --git a/pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix b/pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix index aa90b9ac91f33..f99d9cbeac28d 100644 --- a/pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix +++ b/pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix @@ -92,10 +92,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-syntax-shims/default.nix b/pkgs/development/ocaml-modules/ocaml-syntax-shims/default.nix index e3539194e1111..9eb9722ea0747 100644 --- a/pkgs/development/ocaml-modules/ocaml-syntax-shims/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-syntax-shims/default.nix @@ -19,11 +19,11 @@ buildDunePackage rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/ocaml-ppx/ocaml-syntax-shims"; description = "Backport new syntax to older OCaml versions"; mainProgram = "ocaml-syntax-shims"; - license = licenses.mit; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/ocaml-version/default.nix b/pkgs/development/ocaml-modules/ocaml-version/default.nix index 4744d7b104f30..cf569f5eacaf9 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 47b1c6ffe75c0..d5ac0d14796da 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 1a714241fa07a..8b8f78b47e7cd 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 rec { 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 a6c54e876c954..6a2b77602eba1 100644 --- a/pkgs/development/ocaml-modules/ocamlgraph/default.nix +++ b/pkgs/development/ocaml-modules/ocamlgraph/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { stdlib-shims ]; - meta = with lib; { + meta = { homepage = "https://github.com/backtracking/ocamlgraph"; description = "Graph library for OCaml"; - license = licenses.gpl2Oss; + license = lib.licenses.gpl2Oss; maintainers = [ ]; }; } diff --git a/pkgs/development/ocaml-modules/ocamline/default.nix b/pkgs/development/ocaml-modules/ocamline/default.nix index eb77721bf0a6f..aaec4a22276cd 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 f1e5e2d48a423..d71741fa2e9aa 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 2d7ea6e26359c..2b54da6f27e17 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 fadb54519abf9..1242d52fa5b72 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 6dca841771483..eee8e6f7f87b4 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 b815923bb9118..da43546a2ea57 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/opti/default.nix b/pkgs/development/ocaml-modules/opti/default.nix index c0eec8aa06c70..9b86bbb72978a 100644 --- a/pkgs/development/ocaml-modules/opti/default.nix +++ b/pkgs/development/ocaml-modules/opti/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { sha256 = "ed9ba56dc06e9d2b1bf097964cc65ea37db787d4f239c13d0dd74693f5b50a1e"; }; - meta = with lib; { + meta = { description = "DSL to generate fast incremental C code from declarative specifications"; - license = licenses.bsd3; - maintainers = [ maintainers.jmagnusj ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.jmagnusj ]; homepage = "https://github.com/magnusjonsson/opti"; }; } diff --git a/pkgs/development/ocaml-modules/opus/default.nix b/pkgs/development/ocaml-modules/opus/default.nix index 693426fb23566..345ea5f8cf0e9 100644 --- a/pkgs/development/ocaml-modules/opus/default.nix +++ b/pkgs/development/ocaml-modules/opus/default.nix @@ -28,10 +28,10 @@ buildDunePackage rec { 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/otr/default.nix b/pkgs/development/ocaml-modules/otr/default.nix index 12c45fda978d0..efeb335cc489f 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 7708bc1849afe..3980c3a521fd0 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 9f61ee89d3223..963c303a4e36a 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-9FXcmddHg5mk5UWgYd4kTPOLOY/p6A/OBuvfas4elUA="; }; - 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 3efb1bf546a16..74d1d4feebe5b 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; - maintainers = [ maintainers.bcdarwin ]; - license = licenses.mit; + platforms = lib.platforms.x86_64; + 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 1b0605a6269da..621b4a39df708 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 7babaab8b725a..feb3884e2fcfb 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 c025ee5d5bffb..e1ba66ebc0c92 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 b8b93b7af56be..b254dbf9af967 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 6f05ea5196a4c..a01ee07beca63 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 454939a9d1147..bd9f7a09a8d89 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 122ca3e0416b0..7d88a0b101328 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 74f01c35ce944..cdcde0f4f9242 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 1c45d67324d60..fac4699316f8e 100644 --- a/pkgs/development/ocaml-modules/piqi/default.nix +++ b/pkgs/development/ocaml-modules/piqi/default.nix @@ -55,10 +55,10 @@ lib.throwIf (lib.versionAtLeast ocaml.version "5.0") "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 ]; }; } diff --git a/pkgs/development/ocaml-modules/plotkicadsch/default.nix b/pkgs/development/ocaml-modules/plotkicadsch/default.nix index 69f67ae580a6d..f333a7417b354 100644 --- a/pkgs/development/ocaml-modules/plotkicadsch/default.nix +++ b/pkgs/development/ocaml-modules/plotkicadsch/default.nix @@ -42,10 +42,10 @@ buildDunePackage rec { 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 2087967279259..07d32d55e6ef2 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 2a23896b54d07..99ce2e803826a 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 = "A an 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 a542bf2e2ec1b..0284d133d73d2 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 ec417f79e5aee..3ee11e13618c5 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_deriving/default.nix b/pkgs/development/ocaml-modules/ppx_deriving/default.nix index f1b1828afa981..9aabed2340ad4 100644 --- a/pkgs/development/ocaml-modules/ppx_deriving/default.nix +++ b/pkgs/development/ocaml-modules/ppx_deriving/default.nix @@ -61,9 +61,9 @@ buildDunePackage rec { (if lib.versionAtLeast version "5.2" then ounit2 else ounit) ]; - meta = with lib; { + meta = { description = "deriving is a 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 d289734a9a1c0..adab8e7d44016 100644 --- a/pkgs/development/ocaml-modules/ppx_deriving_cmdliner/default.nix +++ b/pkgs/development/ocaml-modules/ppx_deriving_cmdliner/default.nix @@ -47,10 +47,10 @@ 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 ]; }; } diff --git a/pkgs/development/ocaml-modules/ppx_deriving_protobuf/default.nix b/pkgs/development/ocaml-modules/ppx_deriving_protobuf/default.nix index 22c859f364b1c..54db24ea6290e 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 26d2cc66e37a1..5a4bd5a8d1f06 100644 --- a/pkgs/development/ocaml-modules/ppx_deriving_rpc/default.nix +++ b/pkgs/development/ocaml-modules/ppx_deriving_rpc/default.nix @@ -28,10 +28,10 @@ buildDunePackage rec { ]; 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 8f92df791b449..929ac87def60c 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_tools_versioned/default.nix b/pkgs/development/ocaml-modules/ppx_tools_versioned/default.nix index 3a887bdd5aebd..728f95c0e7b68 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_lib/default.nix b/pkgs/development/ocaml-modules/ppx_yojson_conv_lib/default.nix index 22fe2ef279f2e..6ae5cbb1b2b82 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/progress/default.nix b/pkgs/development/ocaml-modules/progress/default.nix index d5ca6eee3860c..38691c26d5118 100644 --- a/pkgs/development/ocaml-modules/progress/default.nix +++ b/pkgs/development/ocaml-modules/progress/default.nix @@ -33,10 +33,10 @@ buildDunePackage rec { 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 3afa4d4fee7f7..6ec1b4f0cf4d7 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 8b929da7331c0..99b8206b79c1e 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/rdbg/default.nix b/pkgs/development/ocaml-modules/rdbg/default.nix index 11aca2dd4e4e3..2909605e0bc9a 100644 --- a/pkgs/development/ocaml-modules/rdbg/default.nix +++ b/pkgs/development/ocaml-modules/rdbg/default.nix @@ -27,7 +27,7 @@ buildDunePackage rec { lutils ]; - meta = with lib; { + meta = { homepage = "https://gricad-gitlab.univ-grenoble-alpes.fr/verimag/synchrone/rdbg"; description = "Programmable debugger that targets reactive programs for which a rdbg-plugin exists. Currently two plugins exist : one for Lustre, and one for Lutin (nb: both are synchronous programming languages)"; license = lib.licenses.cecill21; diff --git a/pkgs/development/ocaml-modules/react/default.nix b/pkgs/development/ocaml-modules/react/default.nix index a5cd1cb10f04c..72ac9e8d5858e 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; [ maggesi vbmithr gal_bolle diff --git a/pkgs/development/ocaml-modules/reactivedata/default.nix b/pkgs/development/ocaml-modules/reactivedata/default.nix index 1e5042d1ee5da..d5a6910823050 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 026c67445706e..49d620a75d3ef 100644 --- a/pkgs/development/ocaml-modules/rebez/default.nix +++ b/pkgs/development/ocaml-modules/rebez/default.nix @@ -18,10 +18,10 @@ buildDunePackage rec { 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/repr/default.nix b/pkgs/development/ocaml-modules/repr/default.nix index ba9a0fc857292..29f1d5ebd5c09 100644 --- a/pkgs/development/ocaml-modules/repr/default.nix +++ b/pkgs/development/ocaml-modules/repr/default.nix @@ -32,10 +32,10 @@ buildDunePackage rec { optint ]; - meta = with lib; { + meta = { description = "Dynamic type representations. Provides no stability guarantee"; homepage = "https://github.com/mirage/repr"; - license = licenses.isc; - maintainers = with maintainers; [ sternenseemann ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/routes/default.nix b/pkgs/development/ocaml-modules/routes/default.nix index 122c002643a02..04ef6c1e94f19 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 e6f25b2c30f82..d65d94e97f30d 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 fd7947b862f77..39b202e17cff4 100644 --- a/pkgs/development/ocaml-modules/sail/default.nix +++ b/pkgs/development/ocaml-modules/sail/default.nix @@ -70,10 +70,10 @@ buildDunePackage rec { 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/samplerate/default.nix b/pkgs/development/ocaml-modules/samplerate/default.nix index 51f80d727f1af..9e2c290ff7c74 100644 --- a/pkgs/development/ocaml-modules/samplerate/default.nix +++ b/pkgs/development/ocaml-modules/samplerate/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { buildInputs = [ dune-configurator ]; propagatedBuildInputs = [ libsamplerate ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-samplerate"; description = "Interface for libsamplerate"; - license = licenses.bsd2; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/sawja/default.nix b/pkgs/development/ocaml-modules/sawja/default.nix index 57cf08744cb3a..0361062289756 100644 --- a/pkgs/development/ocaml-modules/sawja/default.nix +++ b/pkgs/development/ocaml-modules/sawja/default.nix @@ -52,11 +52,11 @@ lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08") 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; }; } diff --git a/pkgs/development/ocaml-modules/secp256k1/default.nix b/pkgs/development/ocaml-modules/secp256k1/default.nix index 5a97578db5dd3..79821b1ebc4b4 100644 --- a/pkgs/development/ocaml-modules/secp256k1/default.nix +++ b/pkgs/development/ocaml-modules/secp256k1/default.nix @@ -28,10 +28,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/semaphore-compat/default.nix b/pkgs/development/ocaml-modules/semaphore-compat/default.nix index 10d91afe8d27f..10134aff098c5 100644 --- a/pkgs/development/ocaml-modules/semaphore-compat/default.nix +++ b/pkgs/development/ocaml-modules/semaphore-compat/default.nix @@ -15,13 +15,13 @@ buildDunePackage rec { useDune2 = true; - meta = with lib; { + meta = { description = "Compatibility Semaphore module"; homepage = "https://github.com/mirage/semaphore-compat"; - license = with licenses; [ + license = with lib.licenses; [ lgpl21Plus ocamlLgplLinkingException ]; - maintainers = [ maintainers.sternenseemann ]; + maintainers = [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/seqes/default.nix b/pkgs/development/ocaml-modules/seqes/default.nix index 00d68ffdbb164..ca285be3581a4 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 c7f646d469081..67531cac0b51f 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 ea64b87f062f4..10a67293011fa 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 97fea591020c2..c21bfed340122 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 0a578f28b2b1e..6f0da0d593a62 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 7ca2e65935adb..b6b347c7961ae 100644 --- a/pkgs/development/ocaml-modules/sodium/default.nix +++ b/pkgs/development/ocaml-modules/sodium/default.nix @@ -45,10 +45,10 @@ lib.throwIf (lib.versionAtLeast ocaml.version "5.0") 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 ]; }; } diff --git a/pkgs/development/ocaml-modules/sosa/default.nix b/pkgs/development/ocaml-modules/sosa/default.nix index ded25d88f58e3..84ea9d668d377 100644 --- a/pkgs/development/ocaml-modules/sosa/default.nix +++ b/pkgs/development/ocaml-modules/sosa/default.nix @@ -43,10 +43,10 @@ lib.throwIf (lib.versionOlder ocaml.version "4.02") 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 ]; }; } diff --git a/pkgs/development/ocaml-modules/soundtouch/default.nix b/pkgs/development/ocaml-modules/soundtouch/default.nix index db7cb1de1060a..692e843660d4b 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 e0e8da318dd9b..e9afe91dd3baf 100644 --- a/pkgs/development/ocaml-modules/speex/default.nix +++ b/pkgs/development/ocaml-modules/speex/default.nix @@ -26,10 +26,10 @@ buildDunePackage rec { 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 240cab8d4e460..89f17b0acc7ee 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; [ maggesi vbgl ]; diff --git a/pkgs/development/ocaml-modules/syslog-message/default.nix b/pkgs/development/ocaml-modules/syslog-message/default.nix index 33c71b455f8a1..cc92dd991f965 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 293e508c283fd..2d0c51a6ac37a 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 58bfb599272a7..66e45dffce13f 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 "link-exception" ]; # 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 d72332b832482..f2012cbc67bbb 100644 --- a/pkgs/development/ocaml-modules/tcpip/default.nix +++ b/pkgs/development/ocaml-modules/tcpip/default.nix @@ -83,10 +83,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/telegraml/default.nix b/pkgs/development/ocaml-modules/telegraml/default.nix index 23ce695840bc0..2b25768e55cc7 100644 --- a/pkgs/development/ocaml-modules/telegraml/default.nix +++ b/pkgs/development/ocaml-modules/telegraml/default.nix @@ -30,10 +30,10 @@ buildDunePackage rec { 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 0222690e2d5a2..a9537946ccc61 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 305d9743fa4cb..96b3c7404bcf2 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 ff63909264233..92c46f1db920e 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 e0aa39107f8b1..b2444b7d572b1 100644 --- a/pkgs/development/ocaml-modules/theora/default.nix +++ b/pkgs/development/ocaml-modules/theora/default.nix @@ -26,10 +26,10 @@ buildDunePackage rec { 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 d68f85ca9fb1d..67648a7b5c749 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 a576d1327925c..bcbc46bd8fd18 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 6ac2867ac1a79..6138fb8a69bc6 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 8ee97c9aa4ddd..2521f4b4dd1ec 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 fbe0f16ff0c93..8074383f19b86 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 17b5e2006b0c6..e885d2ce85662 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/twt/default.nix b/pkgs/development/ocaml-modules/twt/default.nix index ef5fae48b37c7..972373e97dbbb 100644 --- a/pkgs/development/ocaml-modules/twt/default.nix +++ b/pkgs/development/ocaml-modules/twt/default.nix @@ -39,11 +39,11 @@ lib.throwIf (lib.versionAtLeast ocaml.version "5.0") 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"; inherit (ocaml.meta) platforms; }; diff --git a/pkgs/development/ocaml-modules/tyxml/default.nix b/pkgs/development/ocaml-modules/tyxml/default.nix index 5d1b6423e7cfe..13b9351ca8246 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 5a6ce57cc62a8..acec4585877b7 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/uuidm/default.nix b/pkgs/development/ocaml-modules/uuidm/default.nix index 7c389f87f651e..4b019d11267d5 100644 --- a/pkgs/development/ocaml-modules/uuidm/default.nix +++ b/pkgs/development/ocaml-modules/uuidm/default.nix @@ -43,11 +43,11 @@ lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08") 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; }; diff --git a/pkgs/development/ocaml-modules/uutf/default.nix b/pkgs/development/ocaml-modules/uutf/default.nix index 0908650560b8f..949b34f5707b9 100644 --- a/pkgs/development/ocaml-modules/uutf/default.nix +++ b/pkgs/development/ocaml-modules/uutf/default.nix @@ -42,11 +42,11 @@ lib.throwIfNot (lib.versionAtLeast ocaml.version "4.03") inherit (topkg) buildPhase installPhase; - meta = with lib; { + meta = { description = "Non-blocking streaming Unicode codec for OCaml"; homepage = "https://erratique.ch/software/uutf"; - license = licenses.bsd3; - maintainers = [ maintainers.vbgl ]; + license = lib.licenses.bsd3; + 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 fa47958ab4d22..b66d63c17f559 100644 --- a/pkgs/development/ocaml-modules/vchan/default.nix +++ b/pkgs/development/ocaml-modules/vchan/default.nix @@ -36,10 +36,10 @@ buildDunePackage rec { ounit2 ]; - meta = with lib; { + meta = { description = "Xen Vchan implementation"; homepage = "https://github.com/mirage/ocaml-vchan"; - license = licenses.isc; - maintainers = teams.xen.members ++ [ maintainers.sternenseemann ]; + license = lib.licenses.isc; + maintainers = lib.teams.xen.members ++ [ lib.maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/vorbis/default.nix b/pkgs/development/ocaml-modules/vorbis/default.nix index 968c51f5e3736..21349b1a760ce 100644 --- a/pkgs/development/ocaml-modules/vorbis/default.nix +++ b/pkgs/development/ocaml-modules/vorbis/default.nix @@ -26,10 +26,10 @@ buildDunePackage rec { 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/wtf8/default.nix b/pkgs/development/ocaml-modules/wtf8/default.nix index faeb7730f6876..04007d692fd1d 100644 --- a/pkgs/development/ocaml-modules/wtf8/default.nix +++ b/pkgs/development/ocaml-modules/wtf8/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { sha256 = "09ygcxxd5warkdzz17rgpidrd0pg14cy2svvnvy1hna080lzg7vp"; }; - meta = with lib; { + meta = { homepage = "https://github.com/flowtype/ocaml-wtf8"; description = "WTF-8 is a superset of UTF-8 that allows unpaired surrogates"; - license = licenses.mit; - maintainers = [ maintainers.eqyiel ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.eqyiel ]; }; } diff --git a/pkgs/development/ocaml-modules/x509/default.nix b/pkgs/development/ocaml-modules/x509/default.nix index d7b3c6e7a1cdb..a4dd8f257ab8f 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 ca18fb0bd4dac..9f856e53aff33 100644 --- a/pkgs/development/ocaml-modules/xdg/default.nix +++ b/pkgs/development/ocaml-modules/xdg/default.nix @@ -13,10 +13,10 @@ buildDunePackage rec { 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 2955755ccb41c..67273a0fbbc72 100644 --- a/pkgs/development/ocaml-modules/xenstore/default.nix +++ b/pkgs/development/ocaml-modules/xenstore/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { doCheck = true; checkInputs = [ ounit2 ]; - meta = with lib; { + meta = { description = "Xenstore protocol in pure OCaml"; - license = licenses.lgpl21Only; - maintainers = teams.xen.members ++ [ maintainers.sternenseemann ]; + license = lib.licenses.lgpl21Only; + maintainers = lib.teams.xen.members ++ [ lib.maintainers.sternenseemann ]; 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 735495979cc56..408cdd267f9ef 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"; - maintainers = teams.xen.members; + maintainers = lib.teams.xen.members; }; } diff --git a/pkgs/development/ocaml-modules/xmlplaylist/default.nix b/pkgs/development/ocaml-modules/xmlplaylist/default.nix index a9294cf162dfa..63ba32a015e6c 100644 --- a/pkgs/development/ocaml-modules/xmlplaylist/default.nix +++ b/pkgs/development/ocaml-modules/xmlplaylist/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { buildInputs = [ dune-configurator ]; propagatedBuildInputs = [ xmlm ]; - meta = with lib; { + meta = { homepage = "https://github.com/savonet/ocaml-xmlplaylist"; description = "Module to parse various RSS playlist formats"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ dandellion ]; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ dandellion ]; }; } diff --git a/pkgs/development/ocaml-modules/xtmpl/default.nix b/pkgs/development/ocaml-modules/xtmpl/default.nix index 7350e31df8c65..4aab1c9f5a9b7 100644 --- a/pkgs/development/ocaml-modules/xtmpl/default.nix +++ b/pkgs/development/ocaml-modules/xtmpl/default.nix @@ -27,10 +27,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/zarith/default.nix b/pkgs/development/ocaml-modules/zarith/default.nix index 09ef6ced26009..fde66b86f5784 100644 --- a/pkgs/development/ocaml-modules/zarith/default.nix +++ b/pkgs/development/ocaml-modules/zarith/default.nix @@ -43,13 +43,13 @@ else 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 5425038111fbf..3bd4369bec465 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/octave-modules/arduino/default.nix b/pkgs/development/octave-modules/arduino/default.nix index 0b758f191084a..1f87233ccbee4 100644 --- a/pkgs/development/octave-modules/arduino/default.nix +++ b/pkgs/development/octave-modules/arduino/default.nix @@ -23,11 +23,11 @@ buildOctavePackage rec { arduino-core-unwrapped ]; - meta = with lib; { + meta = { name = "Octave Arduino Toolkit"; homepage = "https://octave.sourceforge.io/arduino/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Basic Octave implementation of the matlab arduino extension, allowing communication to a programmed arduino board to control its hardware"; }; } diff --git a/pkgs/development/octave-modules/audio/default.nix b/pkgs/development/octave-modules/audio/default.nix index 377cb36597c21..7a1c4273a3ead 100644 --- a/pkgs/development/octave-modules/audio/default.nix +++ b/pkgs/development/octave-modules/audio/default.nix @@ -27,11 +27,11 @@ buildOctavePackage rec { rtmidi ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/audio/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Audio and MIDI Toolbox for GNU Octave"; - platforms = platforms.linux; # Because of run-time dependency on jack2 and alsa-lib + platforms = lib.platforms.linux; # Because of run-time dependency on jack2 and alsa-lib }; } diff --git a/pkgs/development/octave-modules/bim/default.nix b/pkgs/development/octave-modules/bim/default.nix index afffe81ef8e94..a058096ce517a 100644 --- a/pkgs/development/octave-modules/bim/default.nix +++ b/pkgs/development/octave-modules/bim/default.nix @@ -22,10 +22,10 @@ buildOctavePackage rec { msh ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/bim/index.html"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Package for solving Diffusion Advection Reaction (DAR) Partial Differential Equations"; }; } diff --git a/pkgs/development/octave-modules/bsltl/default.nix b/pkgs/development/octave-modules/bsltl/default.nix index dfd225c9b52d0..b8f8b9b54c019 100644 --- a/pkgs/development/octave-modules/bsltl/default.nix +++ b/pkgs/development/octave-modules/bsltl/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "0i8ry347y5f5db3702nhpsmfys9v18ks2fsmpdqpy3fcvrwaxdsb"; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/bsltl/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Free collection of OCTAVE/MATLAB routines for working with the biospeckle laser technique"; }; } diff --git a/pkgs/development/octave-modules/cgi/default.nix b/pkgs/development/octave-modules/cgi/default.nix index d486c4e0fb1d5..5b04321fa2859 100644 --- a/pkgs/development/octave-modules/cgi/default.nix +++ b/pkgs/development/octave-modules/cgi/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "0hygj7cpwrs2w9bfb7qrvv7gq410bfiddqvza8smg766pqmfp1s1"; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/cgi/index.html"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Common Gateway Interface for Octave"; }; } diff --git a/pkgs/development/octave-modules/communications/default.nix b/pkgs/development/octave-modules/communications/default.nix index 2cfea0e235923..4fac3e522a634 100644 --- a/pkgs/development/octave-modules/communications/default.nix +++ b/pkgs/development/octave-modules/communications/default.nix @@ -23,10 +23,10 @@ buildOctavePackage rec { signal ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/communications/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = " Digital Communications, Error Correcting Codes (Channel Code), Source Code functions, Modulation and Galois Fields"; }; } diff --git a/pkgs/development/octave-modules/control/default.nix b/pkgs/development/octave-modules/control/default.nix index 1f6ba3bb7fd58..fd1b98ea42b96 100644 --- a/pkgs/development/octave-modules/control/default.nix +++ b/pkgs/development/octave-modules/control/default.nix @@ -41,10 +41,10 @@ buildOctavePackage rec { blas ]; - meta = with lib; { + meta = { homepage = "https://gnu-octave.github.io/packages/control/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Computer-Aided Control System Design (CACSD) Tools for GNU Octave, based on the proven SLICOT Library"; }; } diff --git a/pkgs/development/octave-modules/data-smoothing/default.nix b/pkgs/development/octave-modules/data-smoothing/default.nix index 4e3924ccabb9f..5ba36db4341fe 100644 --- a/pkgs/development/octave-modules/data-smoothing/default.nix +++ b/pkgs/development/octave-modules/data-smoothing/default.nix @@ -18,10 +18,10 @@ buildOctavePackage rec { optim ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/data-smoothing/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Algorithms for smoothing noisy data"; }; } diff --git a/pkgs/development/octave-modules/database/default.nix b/pkgs/development/octave-modules/database/default.nix index 0449c767e6d41..c397d696417df 100644 --- a/pkgs/development/octave-modules/database/default.nix +++ b/pkgs/development/octave-modules/database/default.nix @@ -27,10 +27,10 @@ buildOctavePackage rec { struct ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/database/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Interface to SQL databases, currently only postgresql using libpq"; }; } diff --git a/pkgs/development/octave-modules/dataframe/default.nix b/pkgs/development/octave-modules/dataframe/default.nix index 476ae4cabf181..92c54aef62dd0 100644 --- a/pkgs/development/octave-modules/dataframe/default.nix +++ b/pkgs/development/octave-modules/dataframe/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "10ara084gkb7d5vxv9qv7zpj8b4mm5y06nccrdy3skw5nfbb4djx"; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/dataframe/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Data manipulation toolbox similar to R data.frame"; }; } diff --git a/pkgs/development/octave-modules/dicom/default.nix b/pkgs/development/octave-modules/dicom/default.nix index 2f37f7210e63c..e2646c23829f6 100644 --- a/pkgs/development/octave-modules/dicom/default.nix +++ b/pkgs/development/octave-modules/dicom/default.nix @@ -25,10 +25,10 @@ buildOctavePackage rec { gdcm ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/dicom/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Digital communications in medicine (DICOM) file io"; }; } diff --git a/pkgs/development/octave-modules/divand/default.nix b/pkgs/development/octave-modules/divand/default.nix index 541805f7aefd6..2033e4ec4579b 100644 --- a/pkgs/development/octave-modules/divand/default.nix +++ b/pkgs/development/octave-modules/divand/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "0nmaz5j37dflz7p4a4lmwzkh7g1gghdh7ccvkbyy0fpgv9lr1amg"; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/divand/index.html"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Performs an n-dimensional variational analysis (interpolation) of arbitrarily located observations"; }; } diff --git a/pkgs/development/octave-modules/doctest/default.nix b/pkgs/development/octave-modules/doctest/default.nix index 0e8edfc701efd..b0391d99796de 100644 --- a/pkgs/development/octave-modules/doctest/default.nix +++ b/pkgs/development/octave-modules/doctest/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "sha256-/oXJ7NnbbdsVfhNOYU/tkkYwKhYs5zKMEjybmbf0Cok="; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/doctest/index.html"; - license = licenses.bsd3; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Find and run example code within documentation"; longDescription = '' Find and run example code within documentation. Formatted blocks diff --git a/pkgs/development/octave-modules/econometrics/default.nix b/pkgs/development/octave-modules/econometrics/default.nix index 92d8b4613837b..ea0363b950337 100644 --- a/pkgs/development/octave-modules/econometrics/default.nix +++ b/pkgs/development/octave-modules/econometrics/default.nix @@ -18,10 +18,10 @@ buildOctavePackage rec { optim ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/econometrics/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Econometrics functions including MLE and GMM based techniques"; }; } diff --git a/pkgs/development/octave-modules/fem-fenics/default.nix b/pkgs/development/octave-modules/fem-fenics/default.nix index 472a3094ec6fd..c363ffe5428db 100644 --- a/pkgs/development/octave-modules/fem-fenics/default.nix +++ b/pkgs/development/octave-modules/fem-fenics/default.nix @@ -25,10 +25,10 @@ buildOctavePackage rec { ffc ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/fem-fenics/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Package for the resolution of partial differential equations based on fenics"; # Lots of compilation errors for newer octave versions and syntax errors broken = true; diff --git a/pkgs/development/octave-modules/financial/default.nix b/pkgs/development/octave-modules/financial/default.nix index 15b0a2e7f04f9..b539307d39802 100644 --- a/pkgs/development/octave-modules/financial/default.nix +++ b/pkgs/development/octave-modules/financial/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "0f963yg6pwvrdk5fg7b71ny47gzy48nqxdzj2ngcfrvmb5az4vmf"; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/financial/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Monte Carlo simulation, options pricing routines, financial manipulation, plotting functions and additional date manipulation tools"; }; } diff --git a/pkgs/development/octave-modules/fits/default.nix b/pkgs/development/octave-modules/fits/default.nix index 5c1cc3c69dd69..70c044d2e5a4f 100644 --- a/pkgs/development/octave-modules/fits/default.nix +++ b/pkgs/development/octave-modules/fits/default.nix @@ -33,10 +33,10 @@ buildOctavePackage rec { cfitsio ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/fits/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Functions for reading, and writing FITS (Flexible Image Transport System) files using cfitsio"; }; } diff --git a/pkgs/development/octave-modules/fpl/default.nix b/pkgs/development/octave-modules/fpl/default.nix index 75c7386deaf51..e7b4851459ec1 100644 --- a/pkgs/development/octave-modules/fpl/default.nix +++ b/pkgs/development/octave-modules/fpl/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "0cbpahn9flrv9ppp5xakhwh8vyyy7wzlsz22i3s93yqg9q2bh4ys"; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/fpl/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Collection of routines to export data produced by Finite Elements or Finite Volume Simulations in formats used by some visualization programs"; }; } diff --git a/pkgs/development/octave-modules/fuzzy-logic-toolkit/default.nix b/pkgs/development/octave-modules/fuzzy-logic-toolkit/default.nix index 7d368072a1ab3..e4b0bce93ea10 100644 --- a/pkgs/development/octave-modules/fuzzy-logic-toolkit/default.nix +++ b/pkgs/development/octave-modules/fuzzy-logic-toolkit/default.nix @@ -15,10 +15,10 @@ buildOctavePackage rec { sha256 = "sha256-lnYzX4rq3j7rrbD8m0EnrWpbMJD6tqtMVCYu4mlLFCM="; }; - meta = with lib; { + meta = { homepage = "https://github.com/lmarkowsky/fuzzy-logic-toolkit"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Mostly MATLAB-compatible fuzzy logic toolkit for Octave"; }; } diff --git a/pkgs/development/octave-modules/ga/default.nix b/pkgs/development/octave-modules/ga/default.nix index 3f6367d4f667f..b915bd534aa91 100644 --- a/pkgs/development/octave-modules/ga/default.nix +++ b/pkgs/development/octave-modules/ga/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "sha256-hsrjh2rZFhP6WA+qaKjiGfJkDtT2nTlXlKr3jAJ5Y44="; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/ga/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Genetic optimization code"; }; } diff --git a/pkgs/development/octave-modules/general/default.nix b/pkgs/development/octave-modules/general/default.nix index e424e11c97dd3..fbb3662d8eb03 100644 --- a/pkgs/development/octave-modules/general/default.nix +++ b/pkgs/development/octave-modules/general/default.nix @@ -23,10 +23,10 @@ buildOctavePackage rec { nettle ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/general/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "General tools for Octave"; }; } diff --git a/pkgs/development/octave-modules/generate_html/default.nix b/pkgs/development/octave-modules/generate_html/default.nix index 405f80fcc0d94..28ddf2ee57702 100644 --- a/pkgs/development/octave-modules/generate_html/default.nix +++ b/pkgs/development/octave-modules/generate_html/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "sha256-CHJ0+90+SNXmslLrQc+8aetSnHK0m9PqEBipFuFjwHw="; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/generate_html/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Provides functions for generating HTML pages that contain the help texts for a set of functions"; longDescription = '' This package provides functions for generating HTML pages that contain diff --git a/pkgs/development/octave-modules/geometry/default.nix b/pkgs/development/octave-modules/geometry/default.nix index 27f0c320d4dcb..2c9a50aa59ec1 100644 --- a/pkgs/development/octave-modules/geometry/default.nix +++ b/pkgs/development/octave-modules/geometry/default.nix @@ -19,13 +19,13 @@ buildOctavePackage rec { matgeom ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/geometry/index.html"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus boost ]; - maintainers = with maintainers; [ KarlJoad ]; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Library for extending MatGeom functionality"; }; } diff --git a/pkgs/development/octave-modules/gsl/default.nix b/pkgs/development/octave-modules/gsl/default.nix index e7379d22cc7b2..ee3eb30ac89ed 100644 --- a/pkgs/development/octave-modules/gsl/default.nix +++ b/pkgs/development/octave-modules/gsl/default.nix @@ -19,10 +19,10 @@ buildOctavePackage rec { gsl ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/gsl/index.html"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Octave bindings to the GNU Scientific Library"; # error: use of undeclared identifier 'feval'; did you mean 'octave::feval'? # error: no member named 'is_real_type' in 'octave_value' diff --git a/pkgs/development/octave-modules/image-acquisition/default.nix b/pkgs/development/octave-modules/image-acquisition/default.nix index d04928cbd6033..5fea51124a4ad 100644 --- a/pkgs/development/octave-modules/image-acquisition/default.nix +++ b/pkgs/development/octave-modules/image-acquisition/default.nix @@ -23,10 +23,10 @@ buildOctavePackage rec { libv4l ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/image-acquisition/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Functions to capture images from connected devices"; longDescription = '' The Octave-forge Image Aquisition package provides functions to diff --git a/pkgs/development/octave-modules/image/default.nix b/pkgs/development/octave-modules/image/default.nix index e8748558f9eff..eb1e9a9c91722 100644 --- a/pkgs/development/octave-modules/image/default.nix +++ b/pkgs/development/octave-modules/image/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "sha256-dRXqIRqMuO9dnTurhaNunfVHXosFqRmgeODVJ0YHcTM="; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/image/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Functions for processing images"; longDescription = '' The Octave-forge Image package provides functions for processing diff --git a/pkgs/development/octave-modules/instrument-control/default.nix b/pkgs/development/octave-modules/instrument-control/default.nix index 433bfcf24f6ba..c52522c6c49b1 100644 --- a/pkgs/development/octave-modules/instrument-control/default.nix +++ b/pkgs/development/octave-modules/instrument-control/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "sha256-5ZufEs761qz0nKt0YYikJccqEtK+Qs9UcnJlRsW8VCM="; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/instrument-control/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Low level I/O functions for serial, i2c, spi, parallel, tcp, gpib, vxi11, udp and usbtmc interfaces"; }; } diff --git a/pkgs/development/octave-modules/io/default.nix b/pkgs/development/octave-modules/io/default.nix index ac825fd4f9194..183f46b66b58c 100644 --- a/pkgs/development/octave-modules/io/default.nix +++ b/pkgs/development/octave-modules/io/default.nix @@ -24,13 +24,13 @@ buildOctavePackage rec { unzip ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/io/index.html"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus bsd2 ]; - maintainers = with maintainers; [ KarlJoad ]; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Input/Output in external formats"; }; } diff --git a/pkgs/development/octave-modules/level-set/default.nix b/pkgs/development/octave-modules/level-set/default.nix index c7b4729d2be0a..9a70b7f96cbe7 100644 --- a/pkgs/development/octave-modules/level-set/default.nix +++ b/pkgs/development/octave-modules/level-set/default.nix @@ -45,11 +45,11 @@ buildOctavePackage rec { cd - ''; - meta = with lib; { + meta = { name = "Level Set"; homepage = "https://octave.sourceforge.io/level-set/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Routines for calculating the time-evolution of the level-set equation and extracting geometric information from the level-set function"; # Got broke with octave 8.x update, and wasn't updated since 2019 broken = true; diff --git a/pkgs/development/octave-modules/linear-algebra/default.nix b/pkgs/development/octave-modules/linear-algebra/default.nix index f7205dede500a..a9af6ade41616 100644 --- a/pkgs/development/octave-modules/linear-algebra/default.nix +++ b/pkgs/development/octave-modules/linear-algebra/default.nix @@ -13,14 +13,14 @@ buildOctavePackage rec { sha256 = "1wwjpxp9vjc6lszh0z3kgy4hyzpib8rvvh6b74ijh9qk9r9nmvjk"; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/linear-algebra/index.html"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus lgpl3Plus ]; # They claim to have a FreeBSD license, but none of their code seems to have it. - maintainers = with maintainers; [ KarlJoad ]; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Additional linear algebra code, including matrix functions"; }; } diff --git a/pkgs/development/octave-modules/lssa/default.nix b/pkgs/development/octave-modules/lssa/default.nix index 2635c57e4be26..5ebdb957fb2e6 100644 --- a/pkgs/development/octave-modules/lssa/default.nix +++ b/pkgs/development/octave-modules/lssa/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "10h9lzsi7pqh93i7y50b618g05fnbw9n0i505bz5kz4avfa990zh"; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/lssa/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Tools to compute spectral decompositions of irregularly-spaced time series"; longDescription = '' A package implementing tools to compute spectral decompositions of diff --git a/pkgs/development/octave-modules/ltfat/default.nix b/pkgs/development/octave-modules/ltfat/default.nix index 43fe020b322ad..5cd46d11adc30 100644 --- a/pkgs/development/octave-modules/ltfat/default.nix +++ b/pkgs/development/octave-modules/ltfat/default.nix @@ -32,11 +32,11 @@ buildOctavePackage rec { jdk ]; - meta = with lib; { + meta = { name = "The Large Time-Frequency Analysis Toolbox"; homepage = "https://octave.sourceforge.io/ltfat/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Toolbox for working with time-frequency analysis, wavelets and signal processing"; longDescription = '' The Large Time/Frequency Analysis Toolbox (LTFAT) is a Matlab/Octave diff --git a/pkgs/development/octave-modules/mapping/default.nix b/pkgs/development/octave-modules/mapping/default.nix index 39a3023c52030..5f713f0622610 100644 --- a/pkgs/development/octave-modules/mapping/default.nix +++ b/pkgs/development/octave-modules/mapping/default.nix @@ -25,10 +25,10 @@ buildOctavePackage rec { geometry ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/mapping/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Simple mapping and GIS .shp .dxf and raster file functions"; }; } diff --git a/pkgs/development/octave-modules/matgeom/default.nix b/pkgs/development/octave-modules/matgeom/default.nix index fa12b82f89792..ac1ecd791c1dd 100644 --- a/pkgs/development/octave-modules/matgeom/default.nix +++ b/pkgs/development/octave-modules/matgeom/default.nix @@ -13,13 +13,13 @@ buildOctavePackage rec { sha256 = "sha256-azRPhwMVvydCyojA/rXD2og1tPTL0vii15OveYQF+SA="; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/matgeom/index.html"; - license = with licenses; [ + license = with lib.licenses; [ bsd2 gpl3Plus ]; - maintainers = with maintainers; [ KarlJoad ]; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Geometry toolbox for 2D/3D geometric computing"; }; } diff --git a/pkgs/development/octave-modules/miscellaneous/default.nix b/pkgs/development/octave-modules/miscellaneous/default.nix index e39ad4bd29311..f3ab7d57c5bf4 100644 --- a/pkgs/development/octave-modules/miscellaneous/default.nix +++ b/pkgs/development/octave-modules/miscellaneous/default.nix @@ -24,10 +24,10 @@ buildOctavePackage rec { units ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/miscellaneous/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Miscellaneous tools that don't fit somewhere else"; }; } diff --git a/pkgs/development/octave-modules/msh/default.nix b/pkgs/development/octave-modules/msh/default.nix index 181b0c2ac58fc..d3c5a5bfd44db 100644 --- a/pkgs/development/octave-modules/msh/default.nix +++ b/pkgs/development/octave-modules/msh/default.nix @@ -45,10 +45,10 @@ buildOctavePackage rec { splines ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/msh/index.html"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Create and manage triangular and tetrahedral meshes for Finite Element or Finite Volume PDE solvers"; longDescription = '' Create and manage triangular and tetrahedral meshes for Finite Element or diff --git a/pkgs/development/octave-modules/mvn/default.nix b/pkgs/development/octave-modules/mvn/default.nix index 65568d305dd3a..db13692baa115 100644 --- a/pkgs/development/octave-modules/mvn/default.nix +++ b/pkgs/development/octave-modules/mvn/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "00w69hxqnqdm3744z6p7gvzci44a3gy228x6bgq3xf5n3jwicnmg"; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/mvn/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Multivariate normal distribution clustering and utility functions"; }; } diff --git a/pkgs/development/octave-modules/nan/default.nix b/pkgs/development/octave-modules/nan/default.nix index 5146d4c189836..4df0494a4677b 100644 --- a/pkgs/development/octave-modules/nan/default.nix +++ b/pkgs/development/octave-modules/nan/default.nix @@ -18,10 +18,10 @@ buildOctavePackage rec { blas ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/nan/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Statistics and machine learning toolbox for data with and w/o missing values"; }; } diff --git a/pkgs/development/octave-modules/ncarray/default.nix b/pkgs/development/octave-modules/ncarray/default.nix index 57940c3411a3b..3b6a55dd278be 100644 --- a/pkgs/development/octave-modules/ncarray/default.nix +++ b/pkgs/development/octave-modules/ncarray/default.nix @@ -23,10 +23,10 @@ buildOctavePackage rec { statistics ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/ncarray/index.html"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Access a single or a collection of NetCDF files as a multi-dimensional array"; }; } diff --git a/pkgs/development/octave-modules/nurbs/default.nix b/pkgs/development/octave-modules/nurbs/default.nix index dfe3105d860b5..bf8aa807f0cda 100644 --- a/pkgs/development/octave-modules/nurbs/default.nix +++ b/pkgs/development/octave-modules/nurbs/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "16r05av75nvmkz1knf0nv0gj4fcjjf3jnyf94bdgxf84wahncim7"; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/nurbs/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Collection of routines for the creation, and manipulation of Non-Uniform Rational B-Splines (NURBS), based on the NURBS toolbox by Mark Spink"; }; } diff --git a/pkgs/development/octave-modules/ocl/default.nix b/pkgs/development/octave-modules/ocl/default.nix index 015441db1acc2..e657e02c6e7d7 100644 --- a/pkgs/development/octave-modules/ocl/default.nix +++ b/pkgs/development/octave-modules/ocl/default.nix @@ -14,10 +14,10 @@ buildOctavePackage rec { sha256 = "sha256-ErVMfYkWcdS+UqUH7q7gNQXQwAjrcyiUkWxagAKj3w0="; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/ocl/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Use OpenCL for parallelization"; longDescription = '' Package using OpenCL for parallelization, mostly suitable to diff --git a/pkgs/development/octave-modules/octclip/default.nix b/pkgs/development/octave-modules/octclip/default.nix index cefd09e7a25b5..538dcb0c567ae 100644 --- a/pkgs/development/octave-modules/octclip/default.nix +++ b/pkgs/development/octave-modules/octclip/default.nix @@ -22,11 +22,11 @@ buildOctavePackage rec { sed -i s/"error(errorText)"/"error(\"%s\", errorText)"/g src/*.cc ''; - meta = with lib; { + meta = { name = "GNU Octave Clipping Polygons Tool"; homepage = "https://octave.sourceforge.io/octclip/index.html"; - license = with licenses; [ gpl3Plus ]; # modified BSD? - maintainers = with maintainers; [ KarlJoad ]; + license = with lib.licenses; [ gpl3Plus ]; # modified BSD? + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Perform boolean operations with polygons using the Greiner-Hormann algorithm"; }; } diff --git a/pkgs/development/octave-modules/octproj/default.nix b/pkgs/development/octave-modules/octproj/default.nix index d8da27eceb835..be417deda71ba 100644 --- a/pkgs/development/octave-modules/octproj/default.nix +++ b/pkgs/development/octave-modules/octproj/default.nix @@ -26,10 +26,10 @@ buildOctavePackage rec { proj ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/octproj/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "GNU Octave bindings to PROJ library for cartographic projections and CRS transformations"; }; } diff --git a/pkgs/development/octave-modules/optics/default.nix b/pkgs/development/octave-modules/optics/default.nix index c72df5c360a43..c0866b22ebf1e 100644 --- a/pkgs/development/octave-modules/optics/default.nix +++ b/pkgs/development/octave-modules/optics/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "1d9z82241a1zmr8m1vgw10pyk81vn0q4dcyx7d05pigfn5gykrgc"; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/optics/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Functions covering various aspects of optics"; }; } diff --git a/pkgs/development/octave-modules/optim/default.nix b/pkgs/development/octave-modules/optim/default.nix index fd6282ccee660..de83bf7aa15bc 100644 --- a/pkgs/development/octave-modules/optim/default.nix +++ b/pkgs/development/octave-modules/optim/default.nix @@ -27,14 +27,14 @@ buildOctavePackage rec { statistics ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/optim/index.html"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus publicDomain ]; # Modified BSD code seems removed - maintainers = with maintainers; [ KarlJoad ]; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Non-linear optimization toolkit"; }; } diff --git a/pkgs/development/octave-modules/optiminterp/default.nix b/pkgs/development/octave-modules/optiminterp/default.nix index 439d8b687dd64..f13bcb79e1fa0 100644 --- a/pkgs/development/octave-modules/optiminterp/default.nix +++ b/pkgs/development/octave-modules/optiminterp/default.nix @@ -18,10 +18,10 @@ buildOctavePackage rec { gfortran ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/optiminterp/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Optimal interpolation toolbox for octave"; longDescription = '' An optimal interpolation toolbox for octave. This package provides diff --git a/pkgs/development/octave-modules/parallel/default.nix b/pkgs/development/octave-modules/parallel/default.nix index 342ac6a53cdbf..4fba5058d0dbc 100644 --- a/pkgs/development/octave-modules/parallel/default.nix +++ b/pkgs/development/octave-modules/parallel/default.nix @@ -31,10 +31,10 @@ buildOctavePackage rec { struct ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/parallel/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Parallel execution package"; # Although upstream has added an identical patch to that of ../database, it # still won't build with octave>8.1 diff --git a/pkgs/development/octave-modules/quaternion/default.nix b/pkgs/development/octave-modules/quaternion/default.nix index b87771c7d52da..6604ce420ce07 100644 --- a/pkgs/development/octave-modules/quaternion/default.nix +++ b/pkgs/development/octave-modules/quaternion/default.nix @@ -21,10 +21,10 @@ buildOctavePackage rec { sed -i s/is_bool_type/islogical/g src/*.cc ''; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/quaternion/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Quaternion package for GNU Octave, includes a quaternion class with overloaded operators"; }; } diff --git a/pkgs/development/octave-modules/queueing/default.nix b/pkgs/development/octave-modules/queueing/default.nix index db0a635b9a092..7bf85c5b22dd1 100644 --- a/pkgs/development/octave-modules/queueing/default.nix +++ b/pkgs/development/octave-modules/queueing/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "1yhw277i1qgmddf6wbfb6a4zrfhvplkmfr20q1l15z4xi8afnm6d"; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/queueing/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Provides functions for queueing networks and Markov chains analysis"; longDescription = '' The queueing package provides functions for queueing networks and Markov diff --git a/pkgs/development/octave-modules/signal/default.nix b/pkgs/development/octave-modules/signal/default.nix index b19e8d16a0aee..92e5f6ca0f730 100644 --- a/pkgs/development/octave-modules/signal/default.nix +++ b/pkgs/development/octave-modules/signal/default.nix @@ -18,10 +18,10 @@ buildOctavePackage rec { control ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/signal/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Signal processing tools, including filtering, windowing and display functions"; }; } diff --git a/pkgs/development/octave-modules/sockets/default.nix b/pkgs/development/octave-modules/sockets/default.nix index 3c114f7e05c96..37fea20072382 100644 --- a/pkgs/development/octave-modules/sockets/default.nix +++ b/pkgs/development/octave-modules/sockets/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "sha256-u5Nb9PVyMoR0lIzXEMtkZntXbBfpyXrtLB8U+dkgYrc="; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/sockets/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Socket functions for networking from within octave"; }; } diff --git a/pkgs/development/octave-modules/sparsersb/default.nix b/pkgs/development/octave-modules/sparsersb/default.nix index d7c1beea493b9..fa5dee1311d46 100644 --- a/pkgs/development/octave-modules/sparsersb/default.nix +++ b/pkgs/development/octave-modules/sparsersb/default.nix @@ -18,10 +18,10 @@ buildOctavePackage rec { librsb ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/sparsersb/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Interface to the librsb package implementing the RSB sparse matrix format for fast shared-memory sparse matrix computations"; # Broken since octave>8.x broken = true; diff --git a/pkgs/development/octave-modules/splines/default.nix b/pkgs/development/octave-modules/splines/default.nix index 90330d2b74417..9748ed8ea3886 100644 --- a/pkgs/development/octave-modules/splines/default.nix +++ b/pkgs/development/octave-modules/splines/default.nix @@ -13,13 +13,13 @@ buildOctavePackage rec { sha256 = "sha256-r4hod3l8OpyKNs59lGE8EFn3n6tIg0KeezKjsB4D16Y="; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/splines/index.html"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus publicDomain ]; - maintainers = with maintainers; [ KarlJoad ]; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Additional spline functions"; }; } diff --git a/pkgs/development/octave-modules/statistics/default.nix b/pkgs/development/octave-modules/statistics/default.nix index 25008d1861380..3beea0ca2213e 100644 --- a/pkgs/development/octave-modules/statistics/default.nix +++ b/pkgs/development/octave-modules/statistics/default.nix @@ -20,13 +20,13 @@ buildOctavePackage rec { io ]; - meta = with lib; { + meta = { homepage = "https://packages.octave.org/statistics"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus publicDomain ]; - maintainers = with maintainers; [ KarlJoad ]; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Statistics package for GNU Octave"; }; } diff --git a/pkgs/development/octave-modules/stk/default.nix b/pkgs/development/octave-modules/stk/default.nix index 13bea3633e2ba..ecc5c1bf14578 100644 --- a/pkgs/development/octave-modules/stk/default.nix +++ b/pkgs/development/octave-modules/stk/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "sha256-wTjM9LUcC8BEj3TNxAz877LqJvuoxWUse9PIZoWGnIU="; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/stk/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "STK is a (not so) Small Toolbox for Kriging"; longDescription = '' The STK is a (not so) Small Toolbox for Kriging. Its primary focus is on diff --git a/pkgs/development/octave-modules/strings/default.nix b/pkgs/development/octave-modules/strings/default.nix index 800cc0b0b7ece..cbd33a4f15f7f 100644 --- a/pkgs/development/octave-modules/strings/default.nix +++ b/pkgs/development/octave-modules/strings/default.nix @@ -34,11 +34,11 @@ buildOctavePackage rec { sed -i s/toascii/double/g inst/*.m ''; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/strings/index.html"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; # Claims to have a freebsd license, but I found none. - maintainers = with maintainers; [ KarlJoad ]; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Additional functions for manipulation and analysis of strings"; # Some pcre symbols claimed to be missing broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/development/octave-modules/struct/default.nix b/pkgs/development/octave-modules/struct/default.nix index 2a89fa86940b6..51316a9cdbc47 100644 --- a/pkgs/development/octave-modules/struct/default.nix +++ b/pkgs/development/octave-modules/struct/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "sha256-/M6n3YTBEE7TurtHoo8F4AEqicKE85qwlAkEUJFSlM4="; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/struct/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Additional structure manipulation functions"; }; } diff --git a/pkgs/development/octave-modules/symbolic/default.nix b/pkgs/development/octave-modules/symbolic/default.nix index db6b106165c88..784ca5538ea2a 100644 --- a/pkgs/development/octave-modules/symbolic/default.nix +++ b/pkgs/development/octave-modules/symbolic/default.nix @@ -26,10 +26,10 @@ buildOctavePackage rec { propagatedBuildInputs = [ pythonEnv ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/symbolic/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Adds symbolic calculation features to GNU Octave"; }; } diff --git a/pkgs/development/octave-modules/tisean/default.nix b/pkgs/development/octave-modules/tisean/default.nix index a20810058af12..de6ccedad0111 100644 --- a/pkgs/development/octave-modules/tisean/default.nix +++ b/pkgs/development/octave-modules/tisean/default.nix @@ -25,10 +25,10 @@ buildOctavePackage rec { signal ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/tisean/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Port of TISEAN 3.0.1"; # Broken since octave 8.x update, and wasn't updated since 2021 broken = true; diff --git a/pkgs/development/octave-modules/tsa/default.nix b/pkgs/development/octave-modules/tsa/default.nix index 52d61b070e0a5..baba141b50f23 100644 --- a/pkgs/development/octave-modules/tsa/default.nix +++ b/pkgs/development/octave-modules/tsa/default.nix @@ -18,10 +18,10 @@ buildOctavePackage rec { nan ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/tsa/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Stochastic concepts and maximum entropy methods for time series analysis"; }; } diff --git a/pkgs/development/octave-modules/vibes/default.nix b/pkgs/development/octave-modules/vibes/default.nix index 53c49f43553fc..3debe4c4358f8 100644 --- a/pkgs/development/octave-modules/vibes/default.nix +++ b/pkgs/development/octave-modules/vibes/default.nix @@ -18,13 +18,13 @@ buildOctavePackage rec { vibes ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/vibes/index.html"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus mit ]; - maintainers = with maintainers; [ KarlJoad ]; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Easily display results (boxes, pavings) from interval methods"; longDescription = '' The VIBes API allows one to easily display results (boxes, pavings) from diff --git a/pkgs/development/octave-modules/video/default.nix b/pkgs/development/octave-modules/video/default.nix index 903d68589d2f8..e979e5f0e35b0 100644 --- a/pkgs/development/octave-modules/video/default.nix +++ b/pkgs/development/octave-modules/video/default.nix @@ -26,13 +26,13 @@ buildOctavePackage rec { ffmpeg ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/video/index.html"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus bsd3 ]; - maintainers = with maintainers; [ KarlJoad ]; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Wrapper for OpenCV's CvCapture_FFMPEG and CvVideoWriter_FFMPEG"; }; } diff --git a/pkgs/development/octave-modules/vrml/default.nix b/pkgs/development/octave-modules/vrml/default.nix index a36326ea989ac..d09a6912725a9 100644 --- a/pkgs/development/octave-modules/vrml/default.nix +++ b/pkgs/development/octave-modules/vrml/default.nix @@ -31,13 +31,13 @@ buildOctavePackage rec { statistics ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/vrml/index.html"; - license = with licenses; [ + license = with lib.licenses; [ gpl3Plus fdl12Plus ]; - maintainers = with maintainers; [ KarlJoad ]; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "3D graphics using VRML"; # Marked this way until KarlJoad gets freewrl as a runtime dependency. broken = true; diff --git a/pkgs/development/octave-modules/windows/default.nix b/pkgs/development/octave-modules/windows/default.nix index 6ffec8edcb47f..82dbd34013c73 100644 --- a/pkgs/development/octave-modules/windows/default.nix +++ b/pkgs/development/octave-modules/windows/default.nix @@ -13,10 +13,10 @@ buildOctavePackage rec { sha256 = "sha256-LH9+3MLme4UIcpm5o/apNmkbmJ6NsRsW5TkGpmiNHP0="; }; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/windows/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "Provides COM interface and additional functionality on Windows"; }; } diff --git a/pkgs/development/octave-modules/zeromq/default.nix b/pkgs/development/octave-modules/zeromq/default.nix index f5a3114226308..9969ae6c252ea 100644 --- a/pkgs/development/octave-modules/zeromq/default.nix +++ b/pkgs/development/octave-modules/zeromq/default.nix @@ -33,10 +33,10 @@ buildOctavePackage rec { zeromq ]; - meta = with lib; { + meta = { homepage = "https://octave.sourceforge.io/zeromq/index.html"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ KarlJoad ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ KarlJoad ]; description = "ZeroMQ bindings for GNU Octave"; }; } diff --git a/pkgs/development/perl-modules/Bio-BigFile/default.nix b/pkgs/development/perl-modules/Bio-BigFile/default.nix index fe4c85490ba45..4210ee8f5d3b9 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 0669f5b7c7af8..f74ebc2385708 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/ham/default.nix b/pkgs/development/perl-modules/ham/default.nix index 65d9701d614dd..f93d39a5c208a 100644 --- a/pkgs/development/perl-modules/ham/default.nix +++ b/pkgs/development/perl-modules/ham/default.nix @@ -44,12 +44,12 @@ 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/development/perl-modules/strip-nondeterminism/default.nix b/pkgs/development/perl-modules/strip-nondeterminism/default.nix index 29fa3f1dc900a..0a58d9145c902 100644 --- a/pkgs/development/perl-modules/strip-nondeterminism/default.nix +++ b/pkgs/development/perl-modules/strip-nondeterminism/default.nix @@ -64,12 +64,12 @@ buildPerlPackage rec { doCheck = !stdenv.hostPlatform.isDarwin; doInstallCheck = true; - 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/event/default.nix b/pkgs/development/php-packages/event/default.nix index 46107a446c4a7..2912d2213d7af 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/"; - maintainers = teams.php.members; + maintainers = lib.teams.php.members; }; } diff --git a/pkgs/development/php-packages/imagick/default.nix b/pkgs/development/php-packages/imagick/default.nix index a9270a025dc6b..0d8ba9b239772 100644 --- a/pkgs/development/php-packages/imagick/default.nix +++ b/pkgs/development/php-packages/imagick/default.nix @@ -28,10 +28,10 @@ buildPecl { }) ]; - 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"; - maintainers = teams.php.members; + maintainers = lib.teams.php.members; }; } diff --git a/pkgs/development/php-packages/imap/default.nix b/pkgs/development/php-packages/imap/default.nix index 208130e95158d..04586eda6f4ea 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; - maintainers = teams.php.members; + license = lib.licenses.php301; + maintainers = lib.teams.php.members; }; } diff --git a/pkgs/development/php-packages/mailparse/default.nix b/pkgs/development/php-packages/mailparse/default.nix index e0dba768aa806..0538d9647fc48 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"; maintainers = lib.teams.php.members; }; diff --git a/pkgs/development/php-packages/memcache/default.nix b/pkgs/development/php-packages/memcache/default.nix index 30180ed16723a..cd5e9c7f80bd1 100644 --- a/pkgs/development/php-packages/memcache/default.nix +++ b/pkgs/development/php-packages/memcache/default.nix @@ -25,10 +25,10 @@ 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 = teams.php.members ++ [ maintainers.krzaczek ]; + maintainers = lib.teams.php.members ++ [ lib.maintainers.krzaczek ]; }; } diff --git a/pkgs/development/php-packages/memcached/default.nix b/pkgs/development/php-packages/memcached/default.nix index 1b85b25671aee..16f799840e720 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"; - maintainers = teams.php.members; + maintainers = lib.teams.php.members; }; } diff --git a/pkgs/development/php-packages/oci8/default.nix b/pkgs/development/php-packages/oci8/default.nix index bd0fe21e2401d..4748f7a3ad132 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"; - maintainers = teams.php.members; + maintainers = lib.teams.php.members; }; } diff --git a/pkgs/development/php-packages/pdlib/default.nix b/pkgs/development/php-packages/pdlib/default.nix index 75714ac706401..fc7d5e174a69f 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"; maintainers = lib.teams.php.members; }; diff --git a/pkgs/development/php-packages/pdo_sqlsrv/default.nix b/pkgs/development/php-packages/pdo_sqlsrv/default.nix index 1b61f74d4094e..e91166a47905f 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"; - maintainers = teams.php.members; + maintainers = lib.teams.php.members; }; } diff --git a/pkgs/development/php-packages/phalcon/default.nix b/pkgs/development/php-packages/phalcon/default.nix index e571c746f652f..934d122403e18 100644 --- a/pkgs/development/php-packages/phalcon/default.nix +++ b/pkgs/development/php-packages/phalcon/default.nix @@ -28,11 +28,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 = teams.php.members ++ [ maintainers.krzaczek ]; + maintainers = lib.teams.php.members ++ [ lib.maintainers.krzaczek ]; broken = lib.versionAtLeast php.version "8.4"; }; } diff --git a/pkgs/development/php-packages/phpspy/default.nix b/pkgs/development/php-packages/phpspy/default.nix index 63cd23efc8f15..eb5f17846b768 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 759d02b9c352f..685c6d80303a7 100644 --- a/pkgs/development/php-packages/pinba/default.nix +++ b/pkgs/development/php-packages/pinba/default.nix @@ -15,14 +15,14 @@ buildPecl rec { sha256 = "0wqcqq6sb51wiawa37hbd1h9dbvmyyndzdvz87xqji7lpr9vn8jy"; }; - 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/"; - maintainers = teams.php.members; + maintainers = lib.teams.php.members; }; } diff --git a/pkgs/development/php-packages/protobuf/default.nix b/pkgs/development/php-packages/protobuf/default.nix index 2ce7b4e374556..a70393f77d2c0 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/"; - maintainers = teams.php.members; + maintainers = lib.teams.php.members; }; } diff --git a/pkgs/development/php-packages/pspell/default.nix b/pkgs/development/php-packages/pspell/default.nix index fb8609bca3a3c..fb1fdc48d0aef 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; - maintainers = teams.php.members; + license = lib.licenses.php301; + maintainers = lib.teams.php.members; }; } diff --git a/pkgs/development/php-packages/rdkafka/default.nix b/pkgs/development/php-packages/rdkafka/default.nix index 71d411b594e94..f28da74fdb628 100644 --- a/pkgs/development/php-packages/rdkafka/default.nix +++ b/pkgs/development/php-packages/rdkafka/default.nix @@ -21,10 +21,10 @@ buildPecl { --replace 'SEARCH_PATH="/usr/local /usr"' 'SEARCH_PATH=${rdkafka}' ''; - meta = with lib; { + meta = { description = "Kafka client based on librdkafka"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/arnaud-lb/php-rdkafka"; - maintainers = teams.php.members; + maintainers = lib.teams.php.members; }; } diff --git a/pkgs/development/php-packages/smbclient/default.nix b/pkgs/development/php-packages/smbclient/default.nix index 02654068666e8..bc2b2aef22a50 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"; - maintainers = teams.php.members; + maintainers = lib.teams.php.members; }; } diff --git a/pkgs/development/php-packages/sqlsrv/default.nix b/pkgs/development/php-packages/sqlsrv/default.nix index 08c59275c8488..5f67a65e6ce9e 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"; - maintainers = teams.php.members; + maintainers = lib.teams.php.members; }; } diff --git a/pkgs/development/php-packages/uv/default.nix b/pkgs/development/php-packages/uv/default.nix index 1bbc6450d0b2d..81d02f7834ec8 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"; - maintainers = teams.php.members; - platforms = platforms.linux; + maintainers = lib.teams.php.members; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/php-packages/zstd/default.nix b/pkgs/development/php-packages/zstd/default.nix index 1e249c5aa9ada..54b74f379e874 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 = with lib.maintainers; [ shyim ]; }; diff --git a/pkgs/development/python-modules/aafigure/default.nix b/pkgs/development/python-modules/aafigure/default.nix index 0d519a1bddb71..69059deefd045 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/about-time/default.nix b/pkgs/development/python-modules/about-time/default.nix index 24d92ea3b6851..fb0cf68957d4b 100644 --- a/pkgs/development/python-modules/about-time/default.nix +++ b/pkgs/development/python-modules/about-time/default.nix @@ -22,10 +22,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/accupy/default.nix b/pkgs/development/python-modules/accupy/default.nix index 35d39fed9a6f4..32f8e19e0a8df 100644 --- a/pkgs/development/python-modules/accupy/default.nix +++ b/pkgs/development/python-modules/accupy/default.nix @@ -79,10 +79,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/acme-tiny/default.nix b/pkgs/development/python-modules/acme-tiny/default.nix index 368bb2cc2f855..efe0fd3b8b9d6 100644 --- a/pkgs/development/python-modules/acme-tiny/default.nix +++ b/pkgs/development/python-modules/acme-tiny/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "acme_tiny" ]; - meta = with lib; { + meta = { description = "Tiny script to issue and renew TLS certs from Let's Encrypt"; mainProgram = "acme-tiny"; homepage = "https://github.com/diafygi/acme-tiny"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/acunetix/default.nix b/pkgs/development/python-modules/acunetix/default.nix index 2c1800fbc503d..b447e04a9abaa 100644 --- a/pkgs/development/python-modules/acunetix/default.nix +++ b/pkgs/development/python-modules/acunetix/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { 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 bc505deef55a3..e7222c7909ada 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/adal/default.nix b/pkgs/development/python-modules/adal/default.nix index bb6b018fd8490..9f4a282e1a745 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 8db965d1da771..cf7d50bcc19f1 100644 --- a/pkgs/development/python-modules/adax-local/default.nix +++ b/pkgs/development/python-modules/adax-local/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "adax_local" ]; - meta = with lib; { + meta = { description = "Module for local access to Adax"; homepage = "https://github.com/Danielhiversen/pyAdaxLocal"; - 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-homeassistant/default.nix b/pkgs/development/python-modules/adb-homeassistant/default.nix index a5f539d950292..bb2f561b71d40 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 3aaf814b608ca..64c9e31b280d0 100644 --- a/pkgs/development/python-modules/adb-shell/default.nix +++ b/pkgs/development/python-modules/adb-shell/default.nix @@ -53,10 +53,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/add-trailing-comma/default.nix b/pkgs/development/python-modules/add-trailing-comma/default.nix index 08da1feadb118..d23e7d6d7cf15 100644 --- a/pkgs/development/python-modules/add-trailing-comma/default.nix +++ b/pkgs/development/python-modules/add-trailing-comma/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Tool (and pre-commit hook) to automatically add trailing commas to calls and literals"; mainProgram = "add-trailing-comma"; homepage = "https://github.com/asottile/add-trailing-comma"; - license = licenses.mit; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/addict/default.nix b/pkgs/development/python-modules/addict/default.nix index 36bab211bb4ac..39a7835b5d4d9 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/advantage-air/default.nix b/pkgs/development/python-modules/advantage-air/default.nix index 569edb891c386..d7fe8e18a3c91 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 a0954dae4439e..4f09f5f688880 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/aenum/default.nix b/pkgs/development/python-modules/aenum/default.nix index 7639b8ac9fdc2..5d671b1047d11 100644 --- a/pkgs/development/python-modules/aenum/default.nix +++ b/pkgs/development/python-modules/aenum/default.nix @@ -46,10 +46,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/agate-dbf/default.nix b/pkgs/development/python-modules/agate-dbf/default.nix index 38e7f713f91cb..ba42cb30350ae 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-sql/default.nix b/pkgs/development/python-modules/agate-sql/default.nix index 5d63ef863e3d5..57cdfc9ea9fa5 100644 --- a/pkgs/development/python-modules/agate-sql/default.nix +++ b/pkgs/development/python-modules/agate-sql/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "agatesql" ]; - 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 915b80077d9e0..7ed016513f20e 100644 --- a/pkgs/development/python-modules/agent-py/default.nix +++ b/pkgs/development/python-modules/agent-py/default.nix @@ -29,10 +29,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 5eaa52f726764..3fb8652320a1a 100644 --- a/pkgs/development/python-modules/aggdraw/default.nix +++ b/pkgs/development/python-modules/aggdraw/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aggdraw" ]; - meta = with lib; { + meta = { description = "High quality drawing interface for PIL"; homepage = "https://github.com/pytroll/aggdraw"; - 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 ba9fb23a2ce93..ae98acf0221f0 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/ailment/default.nix b/pkgs/development/python-modules/ailment/default.nix index f7fe6970a33ae..f9609d906cd78 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 = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioairq/default.nix b/pkgs/development/python-modules/aioairq/default.nix index 2b72cbe81adfb..138fe8020900f 100644 --- a/pkgs/development/python-modules/aioairq/default.nix +++ b/pkgs/development/python-modules/aioairq/default.nix @@ -46,10 +46,10 @@ 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"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioamqp/default.nix b/pkgs/development/python-modules/aioamqp/default.nix index 4beaeb6ce2c33..01d85f96e2528 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/aiobafi6/default.nix b/pkgs/development/python-modules/aiobafi6/default.nix index 17f5df7a09417..edb9e017c3fa9 100644 --- a/pkgs/development/python-modules/aiobafi6/default.nix +++ b/pkgs/development/python-modules/aiobafi6/default.nix @@ -38,12 +38,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiobafi6" ]; - meta = with lib; { + meta = { description = "Library for communication with the Big Ass Fans i6 firmware"; mainProgram = "aiobafi6"; homepage = "https://github.com/jfroy/aiobafi6"; changelog = "https://github.com/jfroy/aiobafi6/releases/tag/0.8.2"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aiobroadlink/default.nix b/pkgs/development/python-modules/aiobroadlink/default.nix index 01a0df16561cd..592f596862567 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/aiocontextvars/default.nix b/pkgs/development/python-modules/aiocontextvars/default.nix index 47f7108309e69..7bcf18ee24d66 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 0701fdab407a9..a881a417e3e12 100644 --- a/pkgs/development/python-modules/aiocron/default.nix +++ b/pkgs/development/python-modules/aiocron/default.nix @@ -42,10 +42,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 468a45e2146c2..62f95a7473fd4 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/aiodocker/default.nix b/pkgs/development/python-modules/aiodocker/default.nix index 13f5134d3cec6..2d86dbcf53ac0 100644 --- a/pkgs/development/python-modules/aiodocker/default.nix +++ b/pkgs/development/python-modules/aiodocker/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "aiodocker" ]; - meta = with lib; { + meta = { 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/aioemonitor/default.nix b/pkgs/development/python-modules/aioemonitor/default.nix index a9fcde7fb79af..70e4f0083c650 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/aioextensions/default.nix b/pkgs/development/python-modules/aioextensions/default.nix index 34097274aa694..c931ed86643f0 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 2a7f28b351516..4c0a6fc07e301 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/aioftp/default.nix b/pkgs/development/python-modules/aioftp/default.nix index 7daff8dc58457..00c6a3666f0ab 100644 --- a/pkgs/development/python-modules/aioftp/default.nix +++ b/pkgs/development/python-modules/aioftp/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioftp" ]; - meta = with lib; { + meta = { description = "Python FTP client/server for asyncio"; homepage = "https://aioftp.readthedocs.io/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aioharmony/default.nix b/pkgs/development/python-modules/aioharmony/default.nix index bbb42f62c7151..00dd12c0971d9 100644 --- a/pkgs/development/python-modules/aioharmony/default.nix +++ b/pkgs/development/python-modules/aioharmony/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { "aioharmony.harmonyclient" ]; - meta = with lib; { + meta = { homepage = "https://github.com/ehendrix23/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/aiohttp-apispec/default.nix b/pkgs/development/python-modules/aiohttp-apispec/default.nix index 95d1ee3d3010d..3ea7407bb6fdf 100644 --- a/pkgs/development/python-modules/aiohttp-apispec/default.nix +++ b/pkgs/development/python-modules/aiohttp-apispec/default.nix @@ -41,10 +41,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 0c6d0b622ab6b..6d0a6148a63f7 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-cors/default.nix b/pkgs/development/python-modules/aiohttp-cors/default.nix index 31c2115802707..339b7ff928a9d 100644 --- a/pkgs/development/python-modules/aiohttp-cors/default.nix +++ b/pkgs/development/python-modules/aiohttp-cors/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { # Requires network access doCheck = false; - meta = with lib; { + meta = { description = "CORS support for aiohttp"; homepage = "https://github.com/aio-libs/aiohttp-cors"; - license = licenses.asl20; - maintainers = with maintainers; [ primeos ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ primeos ]; }; } diff --git a/pkgs/development/python-modules/aiohttp-jinja2/default.nix b/pkgs/development/python-modules/aiohttp-jinja2/default.nix index 580db1e840dd7..fb0b4ceb05034 100644 --- a/pkgs/development/python-modules/aiohttp-jinja2/default.nix +++ b/pkgs/development/python-modules/aiohttp-jinja2/default.nix @@ -46,10 +46,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-oauthlib/default.nix b/pkgs/development/python-modules/aiohttp-oauthlib/default.nix index 31972760c132d..9578c499a7fc4 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-remotes/default.nix b/pkgs/development/python-modules/aiohttp-remotes/default.nix index b9377de4daf1d..3649995a20a21 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-swagger/default.nix b/pkgs/development/python-modules/aiohttp-swagger/default.nix index 0b7dc5c6ea2e2..4acb3bcfe40c9 100644 --- a/pkgs/development/python-modules/aiohttp-swagger/default.nix +++ b/pkgs/development/python-modules/aiohttp-swagger/default.nix @@ -50,9 +50,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiohttp_swagger" ]; - meta = with lib; { + meta = { description = "Swagger API Documentation builder for aiohttp"; homepage = "https://github.com/cr0hn/aiohttp-swagger"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/aiohttp-wsgi/default.nix b/pkgs/development/python-modules/aiohttp-wsgi/default.nix index f962c82166e9a..0c54450244339 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/aiohwenergy/default.nix b/pkgs/development/python-modules/aiohwenergy/default.nix index a5f6c852d13f6..09712f4383483 100644 --- a/pkgs/development/python-modules/aiohwenergy/default.nix +++ b/pkgs/development/python-modules/aiohwenergy/default.nix @@ -27,10 +27,10 @@ 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"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioimaplib/default.nix b/pkgs/development/python-modules/aioimaplib/default.nix index 3c8e43c83980c..fe0a17ef36c20 100644 --- a/pkgs/development/python-modules/aioimaplib/default.nix +++ b/pkgs/development/python-modules/aioimaplib/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioimaplib" ]; - meta = with lib; { + meta = { description = "Python asyncio IMAP4rev1 client library"; homepage = "https://github.com/bamthomas/aioimaplib"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/aioinflux/default.nix b/pkgs/development/python-modules/aioinflux/default.nix index ef5f9bcf6340d..cf07005762c33 100644 --- a/pkgs/development/python-modules/aioinflux/default.nix +++ b/pkgs/development/python-modules/aioinflux/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioinflux" ]; - meta = with lib; { + meta = { description = "Asynchronous Python client for InfluxDB"; homepage = "https://github.com/gusutabopb/aioinflux"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ liamdiprose lopsided98 ]; diff --git a/pkgs/development/python-modules/aiokef/default.nix b/pkgs/development/python-modules/aiokef/default.nix index 52289adda8422..85c33b051b90a 100644 --- a/pkgs/development/python-modules/aiokef/default.nix +++ b/pkgs/development/python-modules/aiokef/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "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 4c024d45a378d..c03a6b6bb000a 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/aiomisc-pytest/default.nix b/pkgs/development/python-modules/aiomisc-pytest/default.nix index 0e0add78bf19f..7d5b5cb230818 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 7b7cd32e4a35b..2411f75adc5bd 100644 --- a/pkgs/development/python-modules/aiomisc/default.nix +++ b/pkgs/development/python-modules/aiomisc/default.nix @@ -71,11 +71,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 97e7f60eadf5d..753dabdc4876a 100644 --- a/pkgs/development/python-modules/aiomodernforms/default.nix +++ b/pkgs/development/python-modules/aiomodernforms/default.nix @@ -42,10 +42,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/aiomultiprocess/default.nix b/pkgs/development/python-modules/aiomultiprocess/default.nix index ac27948df9823..79b8062dc06bc 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 09f69113a75bc..6310bc56202e8 100644 --- a/pkgs/development/python-modules/aiomysql/default.nix +++ b/pkgs/development/python-modules/aiomysql/default.nix @@ -47,10 +47,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/aiooncue/default.nix b/pkgs/development/python-modules/aiooncue/default.nix index b0500a5299259..c9dfc1be53b09 100644 --- a/pkgs/development/python-modules/aiooncue/default.nix +++ b/pkgs/development/python-modules/aiooncue/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiooncue" ]; - meta = with lib; { + meta = { description = "Module to interact with the Kohler Oncue API"; homepage = "https://github.com/bdraco/aiooncue"; - 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/aiopg/default.nix b/pkgs/development/python-modules/aiopg/default.nix index a54ce5436b7a9..543de564f8f4d 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/aioprocessing/default.nix b/pkgs/development/python-modules/aioprocessing/default.nix index b54e16612f87b..932eed1e2b928 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/aiopylgtv/default.nix b/pkgs/development/python-modules/aiopylgtv/default.nix index 8a23532f63454..1841efa856bc0 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/aioquic/default.nix b/pkgs/development/python-modules/aioquic/default.nix index 66d429018f1c3..ceac8250767f8 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/aioredis/default.nix b/pkgs/development/python-modules/aioredis/default.nix index aef2e406036e6..ea362d81375e3 100644 --- a/pkgs/development/python-modules/aioredis/default.nix +++ b/pkgs/development/python-modules/aioredis/default.nix @@ -40,10 +40,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/aiorpcx/default.nix b/pkgs/development/python-modules/aiorpcx/default.nix index 7df3f61027a8a..717278523656c 100644 --- a/pkgs/development/python-modules/aiorpcx/default.nix +++ b/pkgs/development/python-modules/aiorpcx/default.nix @@ -26,10 +26,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/aioruckus/default.nix b/pkgs/development/python-modules/aioruckus/default.nix index 86eb1b659cdca..be432ff934bee 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/aioruuvigateway/default.nix b/pkgs/development/python-modules/aioruuvigateway/default.nix index 55e27ec05fbdd..ce69ccd1a2bda 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/aiosenz/default.nix b/pkgs/development/python-modules/aiosenz/default.nix index 430c5ba68d63b..a96e1517ecce3 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 d413591aaa3a1..fa858cf49ec1e 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/aioshutil/default.nix b/pkgs/development/python-modules/aioshutil/default.nix index 44058048114f9..81b8b12fa362f 100644 --- a/pkgs/development/python-modules/aioshutil/default.nix +++ b/pkgs/development/python-modules/aioshutil/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aioshutil" ]; - meta = with lib; { + meta = { description = "Asynchronous version of function of shutil module"; homepage = "https://github.com/kumaraditya303/aioshutil"; - license = licenses.bsd3; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioskybell/default.nix b/pkgs/development/python-modules/aioskybell/default.nix index ad4e4c883c369..f5d21132643af 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/aiotarfile/default.nix b/pkgs/development/python-modules/aiotarfile/default.nix index 0aacdea542411..d27e091e599fa 100644 --- a/pkgs/development/python-modules/aiotarfile/default.nix +++ b/pkgs/development/python-modules/aiotarfile/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiotarfile" ]; - meta = with lib; { + meta = { description = "Stream-based, asynchronous tarball processing"; homepage = "https://github.com/rhelmot/aiotarfile"; changelog = "https://github.com/rhelmot/aiotarfile/commits/v{version}"; - license = licenses.mit; - maintainers = with maintainers; [ nicoo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nicoo ]; }; } diff --git a/pkgs/development/python-modules/aiounittest/default.nix b/pkgs/development/python-modules/aiounittest/default.nix index ca5fbc50dc47f..9ec26ddf72775 100644 --- a/pkgs/development/python-modules/aiounittest/default.nix +++ b/pkgs/development/python-modules/aiounittest/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiounittest" ]; - meta = with lib; { + meta = { 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/aiowatttime/default.nix b/pkgs/development/python-modules/aiowatttime/default.nix index 59ce8c177a84d..70abae6722110 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/aioymaps/default.nix b/pkgs/development/python-modules/aioymaps/default.nix index 8567f23ee0977..ea534dcb4a90d 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 aba0ed77c731d..ef72e04bda40d 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/airium/default.nix b/pkgs/development/python-modules/airium/default.nix index c433c00667713..cfea84daf7783 100644 --- a/pkgs/development/python-modules/airium/default.nix +++ b/pkgs/development/python-modules/airium/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { "test_translate_remote_file" ]; - meta = with lib; { + meta = { description = "Bidirectional HTML-python translator"; mainProgram = "airium"; homepage = "https://gitlab.com/kamichal/airium"; - license = licenses.mit; - maintainers = with maintainers; [ hulr ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hulr ]; }; } diff --git a/pkgs/development/python-modules/airly/default.nix b/pkgs/development/python-modules/airly/default.nix index c9e3d2726e367..e98fe6623a362 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/airtouch4pyapi/default.nix b/pkgs/development/python-modules/airtouch4pyapi/default.nix index 47bed7a289f56..50e53268134b2 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/ajpy/default.nix b/pkgs/development/python-modules/ajpy/default.nix index e8db62267dbe0..3a51e29e56e54 100644 --- a/pkgs/development/python-modules/ajpy/default.nix +++ b/pkgs/development/python-modules/ajpy/default.nix @@ -17,10 +17,10 @@ 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; - maintainers = with maintainers; [ y0no ]; + license = lib.licenses.lgpl2; + maintainers = with lib.maintainers; [ y0no ]; }; } diff --git a/pkgs/development/python-modules/alabaster/default.nix b/pkgs/development/python-modules/alabaster/default.nix index 5c935659ca08b..ab8855953d39b 100644 --- a/pkgs/development/python-modules/alabaster/default.nix +++ b/pkgs/development/python-modules/alabaster/default.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { # No tests included doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/bitprophet/alabaster"; description = "Sphinx theme"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/alarmdecoder/default.nix b/pkgs/development/python-modules/alarmdecoder/default.nix index 4109ce7d1d9f4..430d79c96bb6c 100644 --- a/pkgs/development/python-modules/alarmdecoder/default.nix +++ b/pkgs/development/python-modules/alarmdecoder/default.nix @@ -49,10 +49,10 @@ 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"; - 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 6f048b0412300..035a272b3be16 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 f56ce509b5ce0..8dc2195f283f1 100644 --- a/pkgs/development/python-modules/alembic/default.nix +++ b/pkgs/development/python-modules/alembic/default.nix @@ -53,10 +53,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 e247c3b3f0188..2cf5a3e602c39 100644 --- a/pkgs/development/python-modules/algebraic-data-types/default.nix +++ b/pkgs/development/python-modules/algebraic-data-types/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "adt" ]; - meta = with lib; { + meta = { description = "Algebraic data types for Python"; homepage = "https://github.com/jspahrsummers/adt"; - license = licenses.mit; - maintainers = with maintainers; [ uri-canva ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ uri-canva ]; }; } 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 646742cafd40f..dc1c9f17edaf6 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 0a4763b5b9950..8562e87dd4c4b 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 65a5778310f6d..023ad19269fb9 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 a627ccce23b9a..12654f8b87b8d 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 a2fa3bcc3c313..3d113b4756bd1 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 81ea4b621e086..df0b8c88cecf9 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 0f913ff8412a1..c55c4a3c7b808 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/allure-behave/default.nix b/pkgs/development/python-modules/allure-behave/default.nix index 4b80c97c8777d..d00c479dfeab3 100644 --- a/pkgs/development/python-modules/allure-behave/default.nix +++ b/pkgs/development/python-modules/allure-behave/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { 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 88fc7054f1e61..a71e7fc356609 100644 --- a/pkgs/development/python-modules/allure-pytest/default.nix +++ b/pkgs/development/python-modules/allure-pytest/default.nix @@ -31,10 +31,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 5a4f5049d9cc9..7e502986451a8 100644 --- a/pkgs/development/python-modules/allure-python-commons-test/default.nix +++ b/pkgs/development/python-modules/allure-python-commons-test/default.nix @@ -38,10 +38,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 30881b90f3fdb..41094075d05fc 100644 --- a/pkgs/development/python-modules/allure-python-commons/default.nix +++ b/pkgs/development/python-modules/allure-python-commons/default.nix @@ -42,10 +42,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/altair/default.nix b/pkgs/development/python-modules/altair/default.nix index e8efade4fda97..a99691fd7ec1d 100644 --- a/pkgs/development/python-modules/altair/default.nix +++ b/pkgs/development/python-modules/altair/default.nix @@ -73,13 +73,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/amaranth-boards/default.nix b/pkgs/development/python-modules/amaranth-boards/default.nix index 8406ef39103e8..7b2e8cfdd2050 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 a33128a376d1c..6107b35ae50c9 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/amarna/default.nix b/pkgs/development/python-modules/amarna/default.nix index 7ce6ea9378ac6..c1a6ec220fab6 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-kclpy/default.nix b/pkgs/development/python-modules/amazon-kclpy/default.nix index 5040c6d0371ac..6a5af46c31ae9 100644 --- a/pkgs/development/python-modules/amazon-kclpy/default.nix +++ b/pkgs/development/python-modules/amazon-kclpy/default.nix @@ -40,11 +40,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Amazon Kinesis Client Library for Python"; homepage = "https://github.com/awslabs/amazon-kinesis-client-python"; - license = licenses.asl20; - maintainers = with maintainers; [ psyanticy ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ psyanticy ]; broken = true; }; } diff --git a/pkgs/development/python-modules/amberelectric/default.nix b/pkgs/development/python-modules/amberelectric/default.nix index b8214fa5372b0..471b81e704580 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/amply/default.nix b/pkgs/development/python-modules/amply/default.nix index 12af9b9da2ebc..e09f6f82ded6a 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/amqplib/default.nix b/pkgs/development/python-modules/amqplib/default.nix index 60c66e2414916..e115dedb39a5a 100644 --- a/pkgs/development/python-modules/amqplib/default.nix +++ b/pkgs/development/python-modules/amqplib/default.nix @@ -23,9 +23,9 @@ buildPythonPackage rec { ${python.interpreter} tests/client_0_8/run_all.py ''; - meta = with lib; { + meta = { homepage = "https://github.com/barryp/py-amqplib"; description = "Python client for the Advanced Message Queuing Procotol (AMQP)"; - license = licenses.lgpl21; + license = lib.licenses.lgpl21; }; } diff --git a/pkgs/development/python-modules/amqtt/default.nix b/pkgs/development/python-modules/amqtt/default.nix index 0221295513b34..1f34b3dfc7106 100644 --- a/pkgs/development/python-modules/amqtt/default.nix +++ b/pkgs/development/python-modules/amqtt/default.nix @@ -82,10 +82,10 @@ buildPythonPackage rec { 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/anchor-kr/default.nix b/pkgs/development/python-modules/anchor-kr/default.nix index 10828482b830f..e5ec79b3c6f42 100644 --- a/pkgs/development/python-modules/anchor-kr/default.nix +++ b/pkgs/development/python-modules/anchor-kr/default.nix @@ -18,10 +18,10 @@ buildPythonPackage { pythonImportsCheck = [ "anchor" ]; - meta = with lib; { + meta = { description = "Python library for scraping"; homepage = "https://github.com/justfoolingaround/anchor"; - license = licenses.unfree; - maintainers = with maintainers; [ passivelemon ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ passivelemon ]; }; } diff --git a/pkgs/development/python-modules/android-backup/default.nix b/pkgs/development/python-modules/android-backup/default.nix index cc153ab2e3959..5c4d7cf4dc207 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/anel-pwrctrl-homeassistant/default.nix b/pkgs/development/python-modules/anel-pwrctrl-homeassistant/default.nix index 07b8cbb96c0c0..b601670adbe44 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 3bfeffe564ba9..e04cab0209f3f 100644 --- a/pkgs/development/python-modules/angr/default.nix +++ b/pkgs/development/python-modules/angr/default.nix @@ -112,12 +112,12 @@ buildPythonPackage rec { "archinfo" ]; - meta = with lib; { + meta = { description = "Powerful and user-friendly binary analysis platform"; homepage = "https://angr.io/"; - license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ bsd2 ]; + maintainers = with lib.maintainers; [ fab ]; # angr is pining unicorn - broken = versionAtLeast unicorn.version "2.0.1.post1"; + broken = lib.versionAtLeast unicorn.version "2.0.1.post1"; }; } diff --git a/pkgs/development/python-modules/angrcli/default.nix b/pkgs/development/python-modules/angrcli/default.nix index 85f6716354a39..df6f260e29e10 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 58c5efab8d768..59456bbc1a208 100644 --- a/pkgs/development/python-modules/angrop/default.nix +++ b/pkgs/development/python-modules/angrop/default.nix @@ -37,10 +37,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/anitopy/default.nix b/pkgs/development/python-modules/anitopy/default.nix index d7d3f2a0e56bc..f6ad074bd0be0 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/anonip/default.nix b/pkgs/development/python-modules/anonip/default.nix index 6982aa47b297f..b398c32d14b6f 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/ansi/default.nix b/pkgs/development/python-modules/ansi/default.nix index 17318c7dd5f8a..8ece7743ce0b6 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 9ab201720ddf8..5ea0b50c2a950 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; - maintainers = with maintainers; [ davidtwco ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ davidtwco ]; }; } diff --git a/pkgs/development/python-modules/ansible-builder/default.nix b/pkgs/development/python-modules/ansible-builder/default.nix index 84d32152864b4..a2aae8270e034 100644 --- a/pkgs/development/python-modules/ansible-builder/default.nix +++ b/pkgs/development/python-modules/ansible-builder/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pyyaml ]; - 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 3dd5dcba8463d..ef11c8a03262b 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-vault-rw/default.nix b/pkgs/development/python-modules/ansible-vault-rw/default.nix index 1a772b3c639f9..16b858e5a1b03 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/ansicolor/default.nix b/pkgs/development/python-modules/ansicolor/default.nix index 3f0532d0d70cf..4a101d2a94f21 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 bf07d4c883d72..ef6c0c290d131 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; - maintainers = with maintainers; [ copumpkin ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ copumpkin ]; }; } diff --git a/pkgs/development/python-modules/ansiconv/default.nix b/pkgs/development/python-modules/ansiconv/default.nix index 4e5a82dc33398..c6a0e2700ebe5 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 fedb0b060e073..ced9b7b68f0e9 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 0080974e646d6..422b4cdbaa80d 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/antlr4-python3-runtime/default.nix b/pkgs/development/python-modules/antlr4-python3-runtime/default.nix index 2c446ac30517a..92e27f295e88a 100644 --- a/pkgs/development/python-modules/antlr4-python3-runtime/default.nix +++ b/pkgs/development/python-modules/antlr4-python3-runtime/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Runtime for ANTLR"; mainProgram = "pygrun"; homepage = "https://www.antlr.org/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/anyconfig/default.nix b/pkgs/development/python-modules/anyconfig/default.nix index 9d4d0ed58203a..9cea4cd5891ef 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/aocd-example-parser/default.nix b/pkgs/development/python-modules/aocd-example-parser/default.nix index a78e66980bcd1..b49c69cb5d3f0 100644 --- a/pkgs/development/python-modules/aocd-example-parser/default.nix +++ b/pkgs/development/python-modules/aocd-example-parser/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # "aocd_example_parser" # ]; - meta = with lib; { + meta = { description = "Default implementation of an example parser plugin for advent-of-code-data"; homepage = "https://github.com/wimglenn/aocd-example-parser"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/apcaccess/default.nix b/pkgs/development/python-modules/apcaccess/default.nix index 5fb60a8c6f82c..f3ada5f2a5ade 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 234f016346ad8..f8e55184ba458 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/apkit/default.nix b/pkgs/development/python-modules/apkit/default.nix index ab07a00ddb46a..eab75159acb51 100644 --- a/pkgs/development/python-modules/apkit/default.nix +++ b/pkgs/development/python-modules/apkit/default.nix @@ -28,10 +28,10 @@ buildPythonPackage { # This package has no tests doCheck = false; - meta = with lib; { + meta = { description = "Audio processing toolkit"; homepage = "https://github.com/hwp/apkit"; - license = licenses.mit; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/aplpy/default.nix b/pkgs/development/python-modules/aplpy/default.nix index af4e8cfec72de..0dbed2d772c05 100644 --- a/pkgs/development/python-modules/aplpy/default.nix +++ b/pkgs/development/python-modules/aplpy/default.nix @@ -86,10 +86,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/applicationinsights/default.nix b/pkgs/development/python-modules/applicationinsights/default.nix index a4329ff4dc70b..449256f4fe1ea 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/aprslib/default.nix b/pkgs/development/python-modules/aprslib/default.nix index 72f9d05d4e2bd..b54b607636edc 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/apscheduler/default.nix b/pkgs/development/python-modules/apscheduler/default.nix index 7005690b53eff..0b08d5b191480 100644 --- a/pkgs/development/python-modules/apscheduler/default.nix +++ b/pkgs/development/python-modules/apscheduler/default.nix @@ -71,10 +71,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "apscheduler" ]; - meta = with lib; { + meta = { description = "Library that lets you schedule your Python code to be executed"; homepage = "https://github.com/agronholm/apscheduler"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/apt-repo/default.nix b/pkgs/development/python-modules/apt-repo/default.nix index d2be4543fe610..22798f2b18ef9 100644 --- a/pkgs/development/python-modules/apt-repo/default.nix +++ b/pkgs/development/python-modules/apt-repo/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { 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/aqipy-atmotech/default.nix b/pkgs/development/python-modules/aqipy-atmotech/default.nix index 549e49b3d4866..d2a0b593048c1 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 4e5ac2e73f48d..77de0845a4782 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/aranet4/default.nix b/pkgs/development/python-modules/aranet4/default.nix index 1e9c679610ffe..b27bfa05836a5 100644 --- a/pkgs/development/python-modules/aranet4/default.nix +++ b/pkgs/development/python-modules/aranet4/default.nix @@ -39,11 +39,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 6706519259c7f..a4b637c21906e 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/archinfo/default.nix b/pkgs/development/python-modules/archinfo/default.nix index 22af7df5bbdf1..6795ec0bf6ff5 100644 --- a/pkgs/development/python-modules/archinfo/default.nix +++ b/pkgs/development/python-modules/archinfo/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "archinfo" ]; - meta = with lib; { + meta = { description = "Classes with architecture-specific information"; homepage = "https://github.com/angr/archinfo"; - 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/area/default.nix b/pkgs/development/python-modules/area/default.nix index 39b0ccd26cc26..30d8efbf6644d 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/argon2-cffi-bindings/default.nix b/pkgs/development/python-modules/argon2-cffi-bindings/default.nix index 0df49f5835884..1d5b96999f192 100644 --- a/pkgs/development/python-modules/argon2-cffi-bindings/default.nix +++ b/pkgs/development/python-modules/argon2-cffi-bindings/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "_argon2_cffi_bindings" ]; - meta = with lib; { + meta = { 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 2ab26082ad16c..1fb517917d6a5 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 be863989ac976..4d9b42a658a7a 100644 --- a/pkgs/development/python-modules/argos-translate-files/default.nix +++ b/pkgs/development/python-modules/argos-translate-files/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { doCheck = false; # no tests - 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 1af3f55cd5546..ac1645ab1a48d 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/args/default.nix b/pkgs/development/python-modules/args/default.nix index 28170c20e92c3..7f1bc1a7ed3d2 100644 --- a/pkgs/development/python-modules/args/default.nix +++ b/pkgs/development/python-modules/args/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { sha256 = "a785b8d837625e9b61c39108532d95b85274acd679693b71ebb5156848fcf814"; }; - meta = with lib; { + meta = { description = "Command Arguments for Humans"; homepage = "https://github.com/kennethreitz/args"; }; diff --git a/pkgs/development/python-modules/arpeggio/default.nix b/pkgs/development/python-modules/arpeggio/default.nix index cd98f61d4e525..b9d439da9803e 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 819d4559dc948..6912109f1ef03 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/array-record/default.nix b/pkgs/development/python-modules/array-record/default.nix index 83385b535429d..43ded0cece25b 100644 --- a/pkgs/development/python-modules/array-record/default.nix +++ b/pkgs/development/python-modules/array-record/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "array_record" ]; - meta = with lib; { + meta = { description = "ArrayRecord is a new file format derived from Riegeli, achieving a new frontier of IO efficiency"; homepage = "https://github.com/google/array_record"; - license = licenses.asl20; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ GaetanLepage ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/development/python-modules/arrow/default.nix b/pkgs/development/python-modules/arrow/default.nix index 57645904f79f1..06436b5ab9023 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/arxiv2bib/default.nix b/pkgs/development/python-modules/arxiv2bib/default.nix index 889159ccff34d..90a9c31a4c072 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/ascii-magic/default.nix b/pkgs/development/python-modules/ascii-magic/default.nix index 8f7b5ae5c4284..5b1c01c97ff35 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/asciitree/default.nix b/pkgs/development/python-modules/asciitree/default.nix index ab8ec69bef49d..710fc3ffec823 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-standard/default.nix b/pkgs/development/python-modules/asdf-standard/default.nix index 15c8191a84653..41c880b1ab8d7 100644 --- a/pkgs/development/python-modules/asdf-standard/default.nix +++ b/pkgs/development/python-modules/asdf-standard/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "asdf_standard" ]; - meta = with lib; { + meta = { description = "Standards document describing ASDF"; homepage = "https://github.com/asdf-format/asdf-standard"; - 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 66ca53fc54ea5..465ab981916d8 100644 --- a/pkgs/development/python-modules/asdf/default.nix +++ b/pkgs/development/python-modules/asdf/default.nix @@ -62,10 +62,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/ase/default.nix b/pkgs/development/python-modules/ase/default.nix index fb8dcd8a59987..6da43da4a44bd 100644 --- a/pkgs/development/python-modules/ase/default.nix +++ b/pkgs/development/python-modules/ase/default.nix @@ -80,10 +80,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ase" ]; - meta = with lib; { + meta = { description = "Atomic Simulation Environment"; homepage = "https://wiki.fysik.dtu.dk/ase/"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/asgi-csrf/default.nix b/pkgs/development/python-modules/asgi-csrf/default.nix index f79ed2e27b66f..e5f270d216928 100644 --- a/pkgs/development/python-modules/asgi-csrf/default.nix +++ b/pkgs/development/python-modules/asgi-csrf/default.nix @@ -41,10 +41,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-logger/default.nix b/pkgs/development/python-modules/asgi-logger/default.nix index 0133515565e27..6931847b5ec72 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; - maintainers = teams.wdz.members; + license = lib.licenses.mit; + maintainers = lib.teams.wdz.members; }; } diff --git a/pkgs/development/python-modules/asgineer/default.nix b/pkgs/development/python-modules/asgineer/default.nix index 7e79f0de99693..baa4f25cf0cc4 100644 --- a/pkgs/development/python-modules/asgineer/default.nix +++ b/pkgs/development/python-modules/asgineer/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { requests ]; - meta = with lib; { + meta = { description = "Really thin ASGI web framework"; - license = licenses.bsd2; + license = lib.licenses.bsd2; homepage = "https://asgineer.readthedocs.io"; - maintainers = [ maintainers.matthiasbeyer ]; + maintainers = [ lib.maintainers.matthiasbeyer ]; }; } diff --git a/pkgs/development/python-modules/asmog/default.nix b/pkgs/development/python-modules/asmog/default.nix index 39e77a2a15ba8..eb2ec320e1895 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/asn1ate/default.nix b/pkgs/development/python-modules/asn1ate/default.nix index 0a1032259c84d..e0d45aabcac0c 100644 --- a/pkgs/development/python-modules/asn1ate/default.nix +++ b/pkgs/development/python-modules/asn1ate/default.nix @@ -19,11 +19,11 @@ 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; - maintainers = with maintainers; [ leenaars ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ leenaars ]; }; } diff --git a/pkgs/development/python-modules/aspell-python/default.nix b/pkgs/development/python-modules/aspell-python/default.nix index 3f66a9a2bf5dd..3dd6115d7481c 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 dbc97cca6efb4..962952e3e8fab 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 5387b50c108d4..2a17a3bd1e45b 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 b71a3b9be0900..c4ec8fc9f2ecc 100644 --- a/pkgs/development/python-modules/assay/default.nix +++ b/pkgs/development/python-modules/assay/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { 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 e45e59409c724..4027c658b29ea 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 7b6af81ba0339..a198e68d21188 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/astor/default.nix b/pkgs/development/python-modules/astor/default.nix index c13e6d4cfab03..6daa3d4713200 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/astropy-extension-helpers/default.nix b/pkgs/development/python-modules/astropy-extension-helpers/default.nix index e398e7c34c2f7..108e5805914f9 100644 --- a/pkgs/development/python-modules/astropy-extension-helpers/default.nix +++ b/pkgs/development/python-modules/astropy-extension-helpers/default.nix @@ -59,10 +59,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "extension_helpers" ]; - meta = with lib; { + meta = { description = "Utilities for building and installing packages in the Astropy ecosystem"; homepage = "https://github.com/astropy/extension-helpers"; - license = licenses.bsd3; - maintainers = with maintainers; [ rmcgibbo ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ rmcgibbo ]; }; } diff --git a/pkgs/development/python-modules/astropy-healpix/default.nix b/pkgs/development/python-modules/astropy-healpix/default.nix index fce3ab8e11e9a..dc342b80b5843 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-helpers/default.nix b/pkgs/development/python-modules/astropy-helpers/default.nix index c803ac0449c37..382d56f31a4e8 100644 --- a/pkgs/development/python-modules/astropy-helpers/default.nix +++ b/pkgs/development/python-modules/astropy-helpers/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { sha256 = "f1096414d108778218d6bea06d4d9c7b2ff7c83856a451331ac194e74de9f413"; }; - meta = with lib; { + meta = { description = "Utilities for building and installing Astropy, Astropy affiliated packages, and their respective documentation"; homepage = "https://github.com/astropy/astropy-helpers"; - 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 4b9434153ddca..fe1ae135e5da2 100644 --- a/pkgs/development/python-modules/astropy-iers-data/default.nix +++ b/pkgs/development/python-modules/astropy-iers-data/default.nix @@ -31,10 +31,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 a725032d75481..7082d8be30de0 100644 --- a/pkgs/development/python-modules/asttokens/default.nix +++ b/pkgs/development/python-modules/asttokens/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "asttokens" ]; - meta = with lib; { + meta = { homepage = "https://github.com/gristlabs/asttokens"; description = "Annotate Python AST trees with source text and token information"; - license = licenses.asl20; - maintainers = with maintainers; [ leenaars ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ leenaars ]; }; } diff --git a/pkgs/development/python-modules/astunparse/default.nix b/pkgs/development/python-modules/astunparse/default.nix index 77f2cc10ad102..6ede8f0b7f590 100644 --- a/pkgs/development/python-modules/astunparse/default.nix +++ b/pkgs/development/python-modules/astunparse/default.nix @@ -24,10 +24,10 @@ 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; - maintainers = with maintainers; [ jyp ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ jyp ]; }; } diff --git a/pkgs/development/python-modules/async-dns/default.nix b/pkgs/development/python-modules/async-dns/default.nix index cbc8f15ed2107..f32ef5f15cbbd 100644 --- a/pkgs/development/python-modules/async-dns/default.nix +++ b/pkgs/development/python-modules/async-dns/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "async_dns" ]; - meta = with lib; { + meta = { description = "Python DNS library"; homepage = "https://github.com/gera2ld/async_dns"; - 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-generator/default.nix b/pkgs/development/python-modules/async-generator/default.nix index 81efcc00d9ce8..441b43e0f75db 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-lru/default.nix b/pkgs/development/python-modules/async-lru/default.nix index fcf7ef5207f47..70f5152f0a65b 100644 --- a/pkgs/development/python-modules/async-lru/default.nix +++ b/pkgs/development/python-modules/async-lru/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "async_lru" ]; - meta = with lib; { + meta = { 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 7e2cf669e603d..0228b09f7b1a1 100644 --- a/pkgs/development/python-modules/async-modbus/default.nix +++ b/pkgs/development/python-modules/async-modbus/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "async_modbus" ]; - meta = with lib; { + meta = { description = "Library for Modbus communication"; homepage = "https://github.com/tiagocoutinho/async_modbus"; - 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/async-stagger/default.nix b/pkgs/development/python-modules/async-stagger/default.nix index 3b54507ca0844..e1809d0800429 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/asyncarve/default.nix b/pkgs/development/python-modules/asyncarve/default.nix index dc760169c215a..124aa3ba440f0 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/asyncio-rlock/default.nix b/pkgs/development/python-modules/asyncio-rlock/default.nix index 89ee558136ead..84643380f9f17 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 dc8dc03599a13..06b6ce74de65c 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 15a2b0b7cb97a..854307da5a5f8 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/asyncserial/default.nix b/pkgs/development/python-modules/asyncserial/default.nix index 1fec899b050fd..9cb4bc181e6af 100644 --- a/pkgs/development/python-modules/asyncserial/default.nix +++ b/pkgs/development/python-modules/asyncserial/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "asyncserial" ]; - meta = with lib; { + meta = { description = "asyncio support for pyserial"; homepage = "https://github.com/m-labs/asyncserial"; - license = licenses.bsd2; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/asynctest/default.nix b/pkgs/development/python-modules/asynctest/default.nix index d8a97aaf302a8..ffd3c0e7bdbfd 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/atomiclong/default.nix b/pkgs/development/python-modules/atomiclong/default.nix index a5180221fc762..5cbdce2403c01 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 aba94f1bfddc1..7c7b1c87a056f 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 1779a14148aae..2aabd0107f537 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/atsim-potentials/default.nix b/pkgs/development/python-modules/atsim-potentials/default.nix index 592bf02ba91b1..65f9662710982 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 51f92e0abeec8..1463fd2f52081 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/audible/default.nix b/pkgs/development/python-modules/audible/default.nix index 617f67aeab4b2..d7fcc4646f159 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/audiotools/default.nix b/pkgs/development/python-modules/audiotools/default.nix index b714062be313e..8e77f0a543a70 100644 --- a/pkgs/development/python-modules/audiotools/default.nix +++ b/pkgs/development/python-modules/audiotools/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { hash = "sha256-y+EiK9BktyTWowOiJvOb2YjtbPa7R62Wb5zinkyt1OM="; }; - 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/aurorapy/default.nix b/pkgs/development/python-modules/aurorapy/default.nix index dbfa6a226b9a2..ea5c7f714132f 100644 --- a/pkgs/development/python-modules/aurorapy/default.nix +++ b/pkgs/development/python-modules/aurorapy/default.nix @@ -38,10 +38,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/authres/default.nix b/pkgs/development/python-modules/authres/default.nix index 3c9a9d3679689..e3aa6656cc5dd 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,7 +28,7 @@ buildPythonPackage rec { Python/Python3. ''; homepage = "https://launchpad.net/authentication-results-python"; - license = licenses.bsd3; - maintainers = with maintainers; [ leenaars ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ leenaars ]; }; } diff --git a/pkgs/development/python-modules/autocommand/default.nix b/pkgs/development/python-modules/autocommand/default.nix index c5be2b7acdebd..cb57bf6894478 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 1351237609688..fc11acc19ac0e 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/autologging/default.nix b/pkgs/development/python-modules/autologging/default.nix index 4d58b3d8ab53c..15ca339cf5285 100644 --- a/pkgs/development/python-modules/autologging/default.nix +++ b/pkgs/development/python-modules/autologging/default.nix @@ -15,10 +15,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 7833eb27f57c7..5739a1bd7abcf 100644 --- a/pkgs/development/python-modules/automat/default.nix +++ b/pkgs/development/python-modules/automat/default.nix @@ -41,11 +41,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/autopage/default.nix b/pkgs/development/python-modules/autopage/default.nix index 8d2963037a349..04d26eb8aad14 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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/autoslot/default.nix b/pkgs/development/python-modules/autoslot/default.nix index 88ba7c33a7d32..b9cb1f38b58b6 100644 --- a/pkgs/development/python-modules/autoslot/default.nix +++ b/pkgs/development/python-modules/autoslot/default.nix @@ -27,10 +27,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 202d6e7b7742a..3f9480cb76075 100644 --- a/pkgs/development/python-modules/avea/default.nix +++ b/pkgs/development/python-modules/avea/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "avea" ]; - meta = with lib; { + meta = { description = "Python module for interacting with Elgato's Avea bulb"; homepage = "https://github.com/k0rventen/avea"; - 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/avidtools/default.nix b/pkgs/development/python-modules/avidtools/default.nix index 3b58583c4fd25..8e67153e0218a 100644 --- a/pkgs/development/python-modules/avidtools/default.nix +++ b/pkgs/development/python-modules/avidtools/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "avidtools" ]; - meta = with lib; { + meta = { description = "Developer tools for AVID"; homepage = "https://github.com/avidml/avidtools"; - 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 d4b4a72148d92..8b8a2cfda5df2 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/avro3k/default.nix b/pkgs/development/python-modules/avro3k/default.nix index cc85bb4611a67..6f7474e6f40e3 100644 --- a/pkgs/development/python-modules/avro3k/default.nix +++ b/pkgs/development/python-modules/avro3k/default.nix @@ -27,7 +27,7 @@ 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/avro3k/"; diff --git a/pkgs/development/python-modules/awesome-slugify/default.nix b/pkgs/development/python-modules/awesome-slugify/default.nix index 1b43d389ee757..296e10c18a5d1 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/awslambdaric/default.nix b/pkgs/development/python-modules/awslambdaric/default.nix index 667bc5ce8c99d..72f473f29ed9e 100644 --- a/pkgs/development/python-modules/awslambdaric/default.nix +++ b/pkgs/development/python-modules/awslambdaric/default.nix @@ -54,12 +54,12 @@ buildPythonPackage rec { "runtime_client" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64; 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/azure-applicationinsights/default.nix b/pkgs/development/python-modules/azure-applicationinsights/default.nix index 27e6275ab5420..255a4d51f57b0 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-common/default.nix b/pkgs/development/python-modules/azure-common/default.nix index b168e1b21cf2b..f08f32623fc1c 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 37d7173441acf..b93a8d5686dec 100644 --- a/pkgs/development/python-modules/azure-containerregistry/default.nix +++ b/pkgs/development/python-modules/azure-containerregistry/default.nix @@ -38,10 +38,10 @@ 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; - maintainers = with maintainers; [ peterromfeldhk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterromfeldhk ]; }; } diff --git a/pkgs/development/python-modules/azure-cosmosdb-nspkg/default.nix b/pkgs/development/python-modules/azure-cosmosdb-nspkg/default.nix index f11653ef6d23e..61dd20fe69090 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 3f68e661f6c03..6f0f3a95cbc67 100644 --- a/pkgs/development/python-modules/azure-cosmosdb-table/default.nix +++ b/pkgs/development/python-modules/azure-cosmosdb-table/default.nix @@ -30,10 +30,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-datalake-store/default.nix b/pkgs/development/python-modules/azure-datalake-store/default.nix index 1552f1c4b75df..66daf04a14834 100644 --- a/pkgs/development/python-modules/azure-datalake-store/default.nix +++ b/pkgs/development/python-modules/azure-datalake-store/default.nix @@ -31,10 +31,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-graphrbac/default.nix b/pkgs/development/python-modules/azure-graphrbac/default.nix index 412838ef7fc5f..bf3f2fd5f7687 100644 --- a/pkgs/development/python-modules/azure-graphrbac/default.nix +++ b/pkgs/development/python-modules/azure-graphrbac/default.nix @@ -27,10 +27,10 @@ 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"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-iot-device/default.nix b/pkgs/development/python-modules/azure-iot-device/default.nix index cae7ceb73efc0..9b0adacae20be 100644 --- a/pkgs/development/python-modules/azure-iot-device/default.nix +++ b/pkgs/development/python-modules/azure-iot-device/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { "azure.iot.device.aio" ]; - meta = with lib; { + meta = { 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-nspkg/default.nix b/pkgs/development/python-modules/azure-keyvault-nspkg/default.nix index 813b0d51d04c0..950582b9d13ba 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/default.nix b/pkgs/development/python-modules/azure-keyvault/default.nix index 8b6a3524a04c1..902e11d4238a6 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 8ec07494103aa..ca9221e6d94f0 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 e73f36518d56d..a37c28bfc3886 100644 --- a/pkgs/development/python-modules/azure-mgmt-advisor/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-advisor/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { # 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-appcontainers/default.nix b/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix index 0be4aa8e3c01a..b4b955bdbaaaa 100644 --- a/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix @@ -32,10 +32,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 fb20a442461cb..99f09cb94efee 100644 --- a/pkgs/development/python-modules/azure-mgmt-applicationinsights/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-applicationinsights/default.nix @@ -33,11 +33,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"; - license = licenses.mit; - maintainers = with maintainers; [ + 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 52c94964f570d..aa2114715c86d 100644 --- a/pkgs/development/python-modules/azure-mgmt-authorization/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-authorization/default.nix @@ -31,10 +31,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-batchai/default.nix b/pkgs/development/python-modules/azure-mgmt-batchai/default.nix index 0fa160b6adc00..cfd7bf48deadc 100644 --- a/pkgs/development/python-modules/azure-mgmt-batchai/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-batchai/default.nix @@ -31,10 +31,10 @@ 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"; - 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 93875a62e84e4..e5af60f7de31b 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-consumption/default.nix b/pkgs/development/python-modules/azure-mgmt-consumption/default.nix index 5e47775d2b1e4..1330a0631290a 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 aa25c6ad0e9df..240dfe5b9ef9a 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-datalake-analytics/default.nix b/pkgs/development/python-modules/azure-mgmt-datalake-analytics/default.nix index 1c1a1d05b2699..abf27d6ca4016 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 322987f2039af..33ea84578d076 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 2d08ad2f43d32..7d189bb79ae11 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 40f0d07e00de1..34b58e598dbe5 100644 --- a/pkgs/development/python-modules/azure-mgmt-datamigration/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-datamigration/default.nix @@ -33,11 +33,11 @@ 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"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; diff --git a/pkgs/development/python-modules/azure-mgmt-devspaces/default.nix b/pkgs/development/python-modules/azure-mgmt-devspaces/default.nix index 196fadd01e1ee..3a4230b0bdbee 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 dab22d1e065cf..6de06cee3634a 100644 --- a/pkgs/development/python-modules/azure-mgmt-devtestlabs/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-devtestlabs/default.nix @@ -33,11 +33,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-eventgrid/default.nix b/pkgs/development/python-modules/azure-mgmt-eventgrid/default.nix index a04027b66f707..8d0d91c9acb89 100644 --- a/pkgs/development/python-modules/azure-mgmt-eventgrid/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-eventgrid/default.nix @@ -34,10 +34,10 @@ 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"; - 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-hanaonazure/default.nix b/pkgs/development/python-modules/azure-mgmt-hanaonazure/default.nix index 02457ba264ef3..e31ecfd907bfe 100644 --- a/pkgs/development/python-modules/azure-mgmt-hanaonazure/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-hanaonazure/default.nix @@ -31,10 +31,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-iotcentral/default.nix b/pkgs/development/python-modules/azure-mgmt-iotcentral/default.nix index 4d7ffa9c36f45..3f01f5f878f28 100644 --- a/pkgs/development/python-modules/azure-mgmt-iotcentral/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-iotcentral/default.nix @@ -31,10 +31,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-iothubprovisioningservices/default.nix b/pkgs/development/python-modules/azure-mgmt-iothubprovisioningservices/default.nix index 43f1de3c11bc8..ba0212522a9d6 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-loganalytics/default.nix b/pkgs/development/python-modules/azure-mgmt-loganalytics/default.nix index 84e8197bbc3c0..76d54e57b9950 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 118ba17016027..45255d441596c 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-managementgroups/default.nix b/pkgs/development/python-modules/azure-mgmt-managementgroups/default.nix index 52c5f380740a8..2130d460e7824 100644 --- a/pkgs/development/python-modules/azure-mgmt-managementgroups/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-managementgroups/default.nix @@ -31,10 +31,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 ff45777f89704..7c4fe820cbc19 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-marketplaceordering/default.nix b/pkgs/development/python-modules/azure-mgmt-marketplaceordering/default.nix index 4f2dd1ff04a1e..86d5d9db3a69a 100644 --- a/pkgs/development/python-modules/azure-mgmt-marketplaceordering/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-marketplaceordering/default.nix @@ -31,10 +31,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 473fbf0700792..cafe2e4d90d41 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 1a75b23ccc856..2f5202a5ecc94 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 5c2fb8aeb572e..4326bcbb2ba99 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-notificationhubs/default.nix b/pkgs/development/python-modules/azure-mgmt-notificationhubs/default.nix index c28e754429d82..9c15035259c5d 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 a7365e27bd8e9..e829a2f9773bb 100644 --- a/pkgs/development/python-modules/azure-mgmt-policyinsights/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-policyinsights/default.nix @@ -32,10 +32,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-rdbms/default.nix b/pkgs/development/python-modules/azure-mgmt-rdbms/default.nix index dc10601bb6620..ff12ff8166502 100644 --- a/pkgs/development/python-modules/azure-mgmt-rdbms/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-rdbms/default.nix @@ -32,10 +32,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-redhatopenshift/default.nix b/pkgs/development/python-modules/azure-mgmt-redhatopenshift/default.nix index 33ac1de82d77e..fa7760996e832 100644 --- a/pkgs/development/python-modules/azure-mgmt-redhatopenshift/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-redhatopenshift/default.nix @@ -34,10 +34,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-servicelinker/default.nix b/pkgs/development/python-modules/azure-mgmt-servicelinker/default.nix index 16b8fd1a9f39f..d2604ecafb78c 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 e40c1670747f9..b076e733466cf 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 83e45b54a9bbb..b3c707ff895f6 100644 --- a/pkgs/development/python-modules/azure-mgmt-sql/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-sql/default.nix @@ -33,10 +33,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-subscription/default.nix b/pkgs/development/python-modules/azure-mgmt-subscription/default.nix index ad45a8015587d..b2055bd2e5bab 100644 --- a/pkgs/development/python-modules/azure-mgmt-subscription/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-subscription/default.nix @@ -32,10 +32,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-trafficmanager/default.nix b/pkgs/development/python-modules/azure-mgmt-trafficmanager/default.nix index acccaba91bff1..f09f1485a8e1b 100644 --- a/pkgs/development/python-modules/azure-mgmt-trafficmanager/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-trafficmanager/default.nix @@ -31,10 +31,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-nspkg/default.nix b/pkgs/development/python-modules/azure-nspkg/default.nix index 57fa097924931..e0ef561063200 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-servicefabric/default.nix b/pkgs/development/python-modules/azure-servicefabric/default.nix index e7052a1716519..43b2eaf0706b2 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-storage-common/default.nix b/pkgs/development/python-modules/azure-storage-common/default.nix index 7f5b602dad160..cb83640245087 100644 --- a/pkgs/development/python-modules/azure-storage-common/default.nix +++ b/pkgs/development/python-modules/azure-storage-common/default.nix @@ -30,10 +30,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/default.nix b/pkgs/development/python-modules/azure-storage-file/default.nix index 97ad54fda7041..e3c6305b06b3c 100644 --- a/pkgs/development/python-modules/azure-storage-file/default.nix +++ b/pkgs/development/python-modules/azure-storage-file/default.nix @@ -26,10 +26,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 3807fa100e409..c0c92cd8abbfc 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/babelfish/default.nix b/pkgs/development/python-modules/babelfish/default.nix index 9c7a990cbc82c..f7840ec533f4e 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 8b485cc6b4fe6..858da7dbd459f 100644 --- a/pkgs/development/python-modules/babelfont/default.nix +++ b/pkgs/development/python-modules/babelfont/default.nix @@ -59,11 +59,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 901f4e1e020d9..76e7cbbee9966 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 ff0411795c99c..05906f33fe650 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-strenum/default.nix b/pkgs/development/python-modules/backports-strenum/default.nix index 8c2df112478c7..816f8b412f114 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 450db5506756a..612f3d49f9015 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/bagit/default.nix b/pkgs/development/python-modules/bagit/default.nix index 6742f35877c40..58a971b6a88e2 100644 --- a/pkgs/development/python-modules/bagit/default.nix +++ b/pkgs/development/python-modules/bagit/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pytestFlagsArray = [ "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 a2b938a5f035f..4e73816480f28 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/bangla/default.nix b/pkgs/development/python-modules/bangla/default.nix index 4cdaee2a25293..88a1ef2875c98 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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/bap/default.nix b/pkgs/development/python-modules/bap/default.nix index f598b1aa7907c..a009248657113 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 9685709040673..4fd9983ebed0a 100644 --- a/pkgs/development/python-modules/barectf/default.nix +++ b/pkgs/development/python-modules/barectf/default.nix @@ -45,11 +45,11 @@ 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; - maintainers = with maintainers; [ Madouura ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Madouura ]; }; } diff --git a/pkgs/development/python-modules/baron/default.nix b/pkgs/development/python-modules/baron/default.nix index 8e766dc784866..a261eb5e23b4e 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/gristlabs/asttokens"; 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/base36/default.nix b/pkgs/development/python-modules/base36/default.nix index 33909a6c942ac..c400fbd1bd58f 100644 --- a/pkgs/development/python-modules/base36/default.nix +++ b/pkgs/development/python-modules/base36/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "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/base58check/default.nix b/pkgs/development/python-modules/base58check/default.nix index 338775bf6ceec..bb7033fc5c056 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/baseline/default.nix b/pkgs/development/python-modules/baseline/default.nix index 1fadfe681b885..4ad9f9bf46f3a 100644 --- a/pkgs/development/python-modules/baseline/default.nix +++ b/pkgs/development/python-modules/baseline/default.nix @@ -21,7 +21,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Easy String Baseline"; mainProgram = "baseline"; longDescription = '' @@ -29,7 +29,7 @@ buildPythonPackage rec { 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 0221c57f1971d..7077da5601e3f 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 f50feac37d485..e1f66d0a97f30 100644 --- a/pkgs/development/python-modules/basemap-data/default.nix +++ b/pkgs/development/python-modules/basemap-data/default.nix @@ -16,10 +16,10 @@ 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 ]; diff --git a/pkgs/development/python-modules/basemap/default.nix b/pkgs/development/python-modules/basemap/default.nix index 0551f450c4e73..5098580be801e 100644 --- a/pkgs/development/python-modules/basemap/default.nix +++ b/pkgs/development/python-modules/basemap/default.nix @@ -59,7 +59,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 = '' @@ -68,7 +68,7 @@ buildPythonPackage rec { http://matplotlib.github.com/basemap/users/examples.html for examples of what it can do. ''; maintainers = [ ]; - license = with licenses; [ + 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 17d2485c6def9..9b8ca9ba913f3 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 6c02b8e8cb201..1237a3197d85e 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 35b57ec922dfa..168dabc88a88c 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 f5cfd044e850e..b827aabed55f4 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/bbox/default.nix b/pkgs/development/python-modules/bbox/default.nix index 0a41bccf7111c..be8e84ae7fbd8 100644 --- a/pkgs/development/python-modules/bbox/default.nix +++ b/pkgs/development/python-modules/bbox/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bbox" ]; - meta = with lib; { + meta = { description = "Python library for 2D/3D bounding boxes"; homepage = "https://github.com/varunagrawal/bbox"; - license = licenses.mit; - maintainers = with maintainers; [ lucasew ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lucasew ]; }; } diff --git a/pkgs/development/python-modules/bc-detect-secrets/default.nix b/pkgs/development/python-modules/bc-detect-secrets/default.nix index 03d022d12ce86..01fe338eb88c1 100644 --- a/pkgs/development/python-modules/bc-detect-secrets/default.nix +++ b/pkgs/development/python-modules/bc-detect-secrets/default.nix @@ -68,10 +68,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 350b558a61299..c9ba71577d0a7 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 506352b25d322..4c86428352172 100644 --- a/pkgs/development/python-modules/bc-python-hcl2/default.nix +++ b/pkgs/development/python-modules/bc-python-hcl2/default.nix @@ -28,7 +28,7 @@ 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. @@ -37,8 +37,8 @@ buildPythonPackage rec { # Although this is the main homepage from PyPi but it is also a homepage # of another PyPi package (python-hcl2). But these two are different. homepage = "https://github.com/amplify-education/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 5d1c96392d0be..e83bc2eb946c1 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 f8a1f6825d8eb..c6b4342684191 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 4065c235861c3..5932cbb898b0a 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 b29e2f0dfe94d..c2f529fddee3b 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 7d0f4235277c2..d6c26c84c0b26 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/bcrypt/default.nix b/pkgs/development/python-modules/bcrypt/default.nix index 93e4a7addef2a..5e5026beaf43c 100644 --- a/pkgs/development/python-modules/bcrypt/default.nix +++ b/pkgs/development/python-modules/bcrypt/default.nix @@ -64,10 +64,10 @@ buildPythonPackage rec { ; }; - meta = with lib; { + meta = { description = "Modern password hashing for your software and your servers"; homepage = "https://github.com/pyca/bcrypt/"; - license = licenses.asl20; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/beancount-black/default.nix b/pkgs/development/python-modules/beancount-black/default.nix index c19c28624b28b..98155e951df72 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-plugin-utils/default.nix b/pkgs/development/python-modules/beancount-plugin-utils/default.nix index 01fb3178182c9..c91b6fa1e53ea 100644 --- a/pkgs/development/python-modules/beancount-plugin-utils/default.nix +++ b/pkgs/development/python-modules/beancount-plugin-utils/default.nix @@ -35,10 +35,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/default.nix b/pkgs/development/python-modules/beancount/default.nix index e530a39933c14..9d8f0e652d4e9 100644 --- a/pkgs/development/python-modules/beancount/default.nix +++ b/pkgs/development/python-modules/beancount/default.nix @@ -49,7 +49,7 @@ buildPythonPackage rec { pytest ]; - meta = with lib; { + meta = { homepage = "https://github.com/beancount/beancount"; description = "Double-entry bookkeeping computer language"; longDescription = '' @@ -57,8 +57,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 f1dad530cbc2e..cffb8427c8645 100644 --- a/pkgs/development/python-modules/beanquery/default.nix +++ b/pkgs/development/python-modules/beanquery/default.nix @@ -39,15 +39,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 ce9d606553ef8..d0a9b80498e54 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 8fcc791a8fd21..3492c40452915 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/beautifultable/default.nix b/pkgs/development/python-modules/beautifultable/default.nix index 9b1544ae2bd05..28db089d50081 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 8c8af617f833b..d4f381bef30e5 100644 --- a/pkgs/development/python-modules/beautysh/default.nix +++ b/pkgs/development/python-modules/beautysh/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "beautysh" ]; - meta = with lib; { + meta = { description = "Tool for beautifying Bash scripts"; homepage = "https://github.com/lovesegfault/beautysh"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with 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 faed8e5615ff4..c9d17e7229410 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 c1dce2b1a4ed0..844bd0591ece3 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/bencode-py/default.nix b/pkgs/development/python-modules/bencode-py/default.nix index 3620f34fa701e..f4c8ddf1c2e25 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 f8be50a99e273..195898ac55620 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/berkeleydb/default.nix b/pkgs/development/python-modules/berkeleydb/default.nix index b82658ed4b8c7..915ceace70079 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 2721bd0b4b1dc..0cca1d5df3cbd 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-serializers/default.nix b/pkgs/development/python-modules/betamax-serializers/default.nix index ca2494faa78f9..0f3217269062a 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/beziers/default.nix b/pkgs/development/python-modules/beziers/default.nix index e0fdaaca9c0a6..447d1f47ed13e 100644 --- a/pkgs/development/python-modules/beziers/default.nix +++ b/pkgs/development/python-modules/beziers/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Python library for manipulating Bezier curves and paths in fonts"; homepage = "https://github.com/simoncozens/beziers.py"; - license = licenses.mit; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/bibtexparser/default.nix b/pkgs/development/python-modules/bibtexparser/default.nix index 43541b8008628..c9e0059c1a05e 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 fb17c7d5f90db..b26d63c1eec8a 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 db4c6571cb24c..90136a6d41732 100644 --- a/pkgs/development/python-modules/biliass/default.nix +++ b/pkgs/development/python-modules/biliass/default.nix @@ -48,11 +48,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/binance-connector/default.nix b/pkgs/development/python-modules/binance-connector/default.nix index dfecac9e1faab..d79f5210f9d44 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 ef2135e83f98b..4e5ff7c45bb27 100644 --- a/pkgs/development/python-modules/binary/default.nix +++ b/pkgs/development/python-modules/binary/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { "binary.core" ]; - meta = with lib; { + meta = { 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/binaryornot/default.nix b/pkgs/development/python-modules/binaryornot/default.nix index dd57a7885aac8..5cc150c6fa7fe 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 45fb979a72b50..d8ee2b71774bc 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 7feb91d8d9713..33a276ca0825b 100644 --- a/pkgs/development/python-modules/bindep/default.nix +++ b/pkgs/development/python-modules/bindep/default.nix @@ -39,11 +39,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://docs.opendev.org/opendev/bindep/latest/"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "bindep"; - maintainers = teams.openstack.members; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/binho-host-adapter/default.nix b/pkgs/development/python-modules/binho-host-adapter/default.nix index 78cd0e9b7ed9f..0448fdb8145da 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/birch/default.nix b/pkgs/development/python-modules/birch/default.nix index 772ab25109e4c..39a9d12d65330 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/bitcoin-utils-fork-minimal/default.nix b/pkgs/development/python-modules/bitcoin-utils-fork-minimal/default.nix index f2c70dcadc7e5..b127dd5164e4c 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 cfdc523b1213b..994563449db72 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 76d2b45b2605a..a3c51815d6f38 100644 --- a/pkgs/development/python-modules/bitlist/default.nix +++ b/pkgs/development/python-modules/bitlist/default.nix @@ -39,10 +39,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 = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with 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 dab0477350b7e..52213081e0f54 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 83a1668cf807f..1a073571e10fa 100644 --- a/pkgs/development/python-modules/bitstring/default.nix +++ b/pkgs/development/python-modules/bitstring/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "bitstring" ]; - meta = with lib; { + meta = { description = "Module for binary data manipulation"; homepage = "https://github.com/scott-griffiths/bitstring"; - 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 7d64491e9733b..7c5577c96b682 100644 --- a/pkgs/development/python-modules/bitstruct/default.nix +++ b/pkgs/development/python-modules/bitstruct/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bitstruct" ]; - 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 0df3e7add0988..4ce3001073a1c 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 5652d850a7ea8..25dba7c9e6a9c 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; - maintainers = teams.helsinki-systems.members; + license = lib.licenses.asl20; + maintainers = lib.teams.helsinki-systems.members; }; } diff --git a/pkgs/development/python-modules/bjoern/default.nix b/pkgs/development/python-modules/bjoern/default.nix index ca8663c1d6560..022114e3cc33c 100644 --- a/pkgs/development/python-modules/bjoern/default.nix +++ b/pkgs/development/python-modules/bjoern/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { ${python.interpreter} tests/test_wsgi_compliance.py ''; - meta = with lib; { + meta = { homepage = "https://github.com/jonashaag/bjoern"; description = "Screamingly fast Python 2/3 WSGI server written in C"; - license = licenses.bsd2; - maintainers = with maintainers; [ cmcdragonkai ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ cmcdragonkai ]; }; } diff --git a/pkgs/development/python-modules/black-macchiato/default.nix b/pkgs/development/python-modules/black-macchiato/default.nix index da26ce0ed3a8b..de5eb3fbf998c 100644 --- a/pkgs/development/python-modules/black-macchiato/default.nix +++ b/pkgs/development/python-modules/black-macchiato/default.nix @@ -30,11 +30,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/bleach-allowlist/default.nix b/pkgs/development/python-modules/bleach-allowlist/default.nix index 2ef358f71fa39..3aa7e57a71cd7 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/blessed/default.nix b/pkgs/development/python-modules/blessed/default.nix index 6bb56aaab30e4..73d8c5abdc94d 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/block-io/default.nix b/pkgs/development/python-modules/block-io/default.nix index d3a7b7213d6b8..849cb475563c3 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 445836cda78d4..8e0ded4e10be1 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/blockfrost-python/default.nix b/pkgs/development/python-modules/blockfrost-python/default.nix index 0c0582290b7e6..e19e1858d6565 100644 --- a/pkgs/development/python-modules/blockfrost-python/default.nix +++ b/pkgs/development/python-modules/blockfrost-python/default.nix @@ -27,10 +27,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; [ t4ccer ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ t4ccer ]; }; } diff --git a/pkgs/development/python-modules/bloodhound-py/default.nix b/pkgs/development/python-modules/bloodhound-py/default.nix index cc220be37f7b0..96e78bf3d8999 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/bluepy-devices/default.nix b/pkgs/development/python-modules/bluepy-devices/default.nix index 85bce7b2c85d4..ea87fd9d0ca21 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 4a3256836c670..194a2ecd830c4 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/blurhash/default.nix b/pkgs/development/python-modules/blurhash/default.nix index 349687e30fe3b..1c8f1316a03b8 100644 --- a/pkgs/development/python-modules/blurhash/default.nix +++ b/pkgs/development/python-modules/blurhash/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "blurhash" ]; - meta = with lib; { + meta = { description = "Pure-Python implementation of the blurhash algorithm"; homepage = "https://github.com/halcy/blurhash-python"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/bme280spi/default.nix b/pkgs/development/python-modules/bme280spi/default.nix index 4fb429cd6d925..dcd043ecf8a29 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 b3b54d8358d1f..6c01bacba19bf 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 f4303af27ed1a..50286acef614d 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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/bnunicodenormalizer/default.nix b/pkgs/development/python-modules/bnunicodenormalizer/default.nix index a3a53f7c0091b..917b4a9350dbd 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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/boltztrap2/default.nix b/pkgs/development/python-modules/boltztrap2/default.nix index 9f8e737f29793..1460558cdb559 100644 --- a/pkgs/development/python-modules/boltztrap2/default.nix +++ b/pkgs/development/python-modules/boltztrap2/default.nix @@ -60,11 +60,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "BoltzTraP2" ]; - 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 2131fa0bfb2d6..ce46d4abacc4a 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/boolean-py/default.nix b/pkgs/development/python-modules/boolean-py/default.nix index fde29936132f0..991bd9a36da48 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 2ce41db7c6713..387f573db5a61 100644 --- a/pkgs/development/python-modules/bork/default.nix +++ b/pkgs/development/python-modules/bork/default.nix @@ -65,11 +65,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 d376194412adc..fcc0abe67e4da 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 9c5aa855cec41..9ec509709223c 100644 --- a/pkgs/development/python-modules/boto3-stubs/default.nix +++ b/pkgs/development/python-modules/boto3-stubs/default.nix @@ -1093,11 +1093,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 12f96cf321c58..2271053eebba0 100644 --- a/pkgs/development/python-modules/botocore-stubs/default.nix +++ b/pkgs/development/python-modules/botocore-stubs/default.nix @@ -30,10 +30,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 d1d69f252daaf..a4d0902b7ba98 100644 --- a/pkgs/development/python-modules/bottle/default.nix +++ b/pkgs/development/python-modules/bottle/default.nix @@ -43,12 +43,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 46abe5a8c4839..86e46c0a86607 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/boxx/default.nix b/pkgs/development/python-modules/boxx/default.nix index 1a0821f7d5fb5..063abbb558c8e 100644 --- a/pkgs/development/python-modules/boxx/default.nix +++ b/pkgs/development/python-modules/boxx/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { xvfb-run ${python.interpreter} -m unittest ''; - meta = with lib; { + meta = { description = "Tool-box for efficient build and debug for Scientific Computing and Computer Vision"; homepage = "https://github.com/DIYer22/boxx"; - license = licenses.mit; - maintainers = with maintainers; [ lucasew ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lucasew ]; }; } diff --git a/pkgs/development/python-modules/bpemb/default.nix b/pkgs/development/python-modules/bpemb/default.nix index 03f4ae1cd2160..570b52d46e8fc 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/bpycv/default.nix b/pkgs/development/python-modules/bpycv/default.nix index 923c4d0ced495..2bf8fd9e50602 100644 --- a/pkgs/development/python-modules/bpycv/default.nix +++ b/pkgs/development/python-modules/bpycv/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { ''; }; - meta = with lib; { + meta = { description = "Computer vision utils for Blender"; homepage = "https://github.com/DIYer22/bpycv"; - license = licenses.mit; - maintainers = [ maintainers.lucasew ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.lucasew ]; broken = stdenv.hostPlatform.isAarch64; inherit (blender.meta) platforms; }; diff --git a/pkgs/development/python-modules/bpython/default.nix b/pkgs/development/python-modules/bpython/default.nix index 15f562185e1ba..10dcbad4b6747 100644 --- a/pkgs/development/python-modules/bpython/default.nix +++ b/pkgs/development/python-modules/bpython/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { "test_syntaxerror" ]; - meta = with lib; { + meta = { 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 2e3e847cfadd1..6e73f29e5fe50 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/bravia-tv/default.nix b/pkgs/development/python-modules/bravia-tv/default.nix index 9339066299a32..a2118c4893717 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; - maintainers = with maintainers; [ ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/brelpy/default.nix b/pkgs/development/python-modules/brelpy/default.nix index b5edbe1e1aefd..b36af0e4e93a6 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/brother-ql/default.nix b/pkgs/development/python-modules/brother-ql/default.nix index ec12adaa7f289..76be4ffc46311 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/brotli-asgi/default.nix b/pkgs/development/python-modules/brotli-asgi/default.nix index 79d090f6127a4..1d048c55094a8 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/brotli/default.nix b/pkgs/development/python-modules/brotli/default.nix index a3880604ea60d..b521e92a9f9c0 100644 --- a/pkgs/development/python-modules/brotli/default.nix +++ b/pkgs/development/python-modules/brotli/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "python/tests" ]; - meta = with lib; { + meta = { homepage = "https://github.com/google/brotli"; description = "Generic-purpose lossless compression algorithm"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/brotlicffi/default.nix b/pkgs/development/python-modules/brotlicffi/default.nix index 53c0280b56b30..e4ca09d85db71 100644 --- a/pkgs/development/python-modules/brotlicffi/default.nix +++ b/pkgs/development/python-modules/brotlicffi/default.nix @@ -35,10 +35,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 8de7c2194ab2b..649ff7b874321 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 681067e3c17c6..49921f79af2ea 100644 --- a/pkgs/development/python-modules/browser-cookie3/default.nix +++ b/pkgs/development/python-modules/browser-cookie3/default.nix @@ -35,11 +35,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 af25971df03b8..b2413d2f93599 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/bson/default.nix b/pkgs/development/python-modules/bson/default.nix index 961a1f4d94f47..c7fc3443f7c53 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/bt-proximity/default.nix b/pkgs/development/python-modules/bt-proximity/default.nix index 548c69d4e14dd..d153cd94a6b02 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 a15708b79394b..0f6da29efb8a6 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/btrees/default.nix b/pkgs/development/python-modules/btrees/default.nix index 2ba7e1e848d4b..4495be04e9ce1 100644 --- a/pkgs/development/python-modules/btrees/default.nix +++ b/pkgs/development/python-modules/btrees/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { "BTrees.IFBTree" ]; - meta = with lib; { + meta = { description = "Scalable persistent components"; homepage = "http://packages.python.org/BTrees"; - 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 18a68282c4bcd..f38059fe5c3ef 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; [ evils Luflosi ]; diff --git a/pkgs/development/python-modules/btrfsutil/default.nix b/pkgs/development/python-modules/btrfsutil/default.nix index 8638ea25a6e84..24514bf495a9a 100644 --- a/pkgs/development/python-modules/btrfsutil/default.nix +++ b/pkgs/development/python-modules/btrfsutil/default.nix @@ -18,11 +18,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 e55dd620e4e32..aebbdf78bb80b 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 a11b49bb4d966..ffa461eb1af29 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/bugwarrior/default.nix b/pkgs/development/python-modules/bugwarrior/default.nix index 6510ce721f6c4..52049e3e619a8 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/buildcatrust/default.nix b/pkgs/development/python-modules/buildcatrust/default.nix index cc2b5b5a29469..21e7dc8b7d7df 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/bunch/default.nix b/pkgs/development/python-modules/bunch/default.nix index ff64e723cdbc6..4937bf0579f9f 100644 --- a/pkgs/development/python-modules/bunch/default.nix +++ b/pkgs/development/python-modules/bunch/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bunch" ]; - meta = with lib; { + meta = { description = "Python dictionary that provides attribute-style access"; homepage = "https://github.com/dsc/bunch"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/bundlewrap-keepass/default.nix b/pkgs/development/python-modules/bundlewrap-keepass/default.nix index d69580a00de0f..e207b1ca8be8f 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 40014fbe6587e..e9f2e90cec75e 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 cf13c27302033..cdff1290a573a 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/bundlewrap/default.nix b/pkgs/development/python-modules/bundlewrap/default.nix index 248c61d72b467..b1a1d621171a5 100644 --- a/pkgs/development/python-modules/bundlewrap/default.nix +++ b/pkgs/development/python-modules/bundlewrap/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { "tests/unit" ]; - meta = with lib; { + meta = { homepage = "https://bundlewrap.org/"; description = "Easy, Concise and Decentralized Config management with Python"; mainProgram = "bw"; - license = [ licenses.gpl3 ]; - maintainers = with maintainers; [ wamserma ]; + license = [ lib.licenses.gpl3 ]; + maintainers = with lib.maintainers; [ wamserma ]; }; } diff --git a/pkgs/development/python-modules/bwapy/default.nix b/pkgs/development/python-modules/bwapy/default.nix index 19e37b1eaf689..11b27dcfd2c58 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 08c53bb606d57..64e19deaa01c9 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/cachelib/default.nix b/pkgs/development/python-modules/cachelib/default.nix index b6654294e69a5..cc6c53cdcab6f 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; - maintainers = with maintainers; [ gebner ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ gebner ]; }; } diff --git a/pkgs/development/python-modules/cachey/default.nix b/pkgs/development/python-modules/cachey/default.nix index a8cb498b20260..f3423d72b6601 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 7a6caad1f20a0..c59ef70c938c4 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/callee/default.nix b/pkgs/development/python-modules/callee/default.nix index bc3435861f5a4..4bb4b95a3bb64 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 906b372572c8a..1f0d792b4c1d4 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 68761f6bbc95d..47421c09ac8bd 100644 --- a/pkgs/development/python-modules/calmjs/default.nix +++ b/pkgs/development/python-modules/calmjs/default.nix @@ -50,11 +50,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/default.nix b/pkgs/development/python-modules/calysto/default.nix index 04d428e9e6fcf..8016ecb7798fe 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/capstone/4.nix b/pkgs/development/python-modules/capstone/4.nix index b7c31d336091e..5023cd3c88e64 100644 --- a/pkgs/development/python-modules/capstone/4.nix +++ b/pkgs/development/python-modules/capstone/4.nix @@ -43,11 +43,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 e869c9567d63c..9ff7c9233a428 100644 --- a/pkgs/development/python-modules/capstone/default.nix +++ b/pkgs/development/python-modules/capstone/default.nix @@ -38,11 +38,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 00c017711f677..3b5b7c90aff55 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 b9895dd18f974..091fb30e75770 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/castepxbin/default.nix b/pkgs/development/python-modules/castepxbin/default.nix index 18e753488d1bc..3c49f4ffce7da 100644 --- a/pkgs/development/python-modules/castepxbin/default.nix +++ b/pkgs/development/python-modules/castepxbin/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Collection of readers for CASTEP binary outputs"; homepage = "https://github.com/zhubonan/castepxbin"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/casttube/default.nix b/pkgs/development/python-modules/casttube/default.nix index 4b6e6b1c243ce..19a7a0926ced8 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/cbor/default.nix b/pkgs/development/python-modules/cbor/default.nix index 63d9ddfc70096..6dcdcf288a58f 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 53baa3c3e0347..ff973885feb4e 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 5248595cc660e..fa4b22bef53dc 100644 --- a/pkgs/development/python-modules/celery-redbeat/default.nix +++ b/pkgs/development/python-modules/celery-redbeat/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "redbeat" ]; - meta = with lib; { + meta = { description = "Database-backed Periodic Tasks"; homepage = "https://github.com/celery/django-celery-beat"; - license = licenses.bsd3; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.bsd3; + 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 53ed8e4f2512a..658fc5ceb77ac 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; - maintainers = with maintainers; [ elohmeier ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ elohmeier ]; }; } diff --git a/pkgs/development/python-modules/certauth/default.nix b/pkgs/development/python-modules/certauth/default.nix index d68cbd3481c2f..73e4720fd80d7 100644 --- a/pkgs/development/python-modules/certauth/default.nix +++ b/pkgs/development/python-modules/certauth/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { "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-dns-inwx/default.nix b/pkgs/development/python-modules/certbot-dns-inwx/default.nix index 81b20f23ff79b..465f00555e7c9 100644 --- a/pkgs/development/python-modules/certbot-dns-inwx/default.nix +++ b/pkgs/development/python-modules/certbot-dns-inwx/default.nix @@ -26,13 +26,13 @@ buildPythonPackage rec { pytestImportsCheck = [ "certbot_dns_inwx" ]; - meta = with lib; { + meta = { description = "INWX DNS Authenticator plugin for Certbot"; homepage = "https://github.com/oGGy990/certbot-dns-inwx"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; - maintainers = with maintainers; [ onny ]; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/certifi/default.nix b/pkgs/development/python-modules/certifi/default.nix index 8665e8f7b7b1f..330fc0adf1c18 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/default.nix b/pkgs/development/python-modules/certipy/default.nix index 911de68d4182f..6a2e18687a479 100644 --- a/pkgs/development/python-modules/certipy/default.nix +++ b/pkgs/development/python-modules/certipy/default.nix @@ -34,11 +34,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 c59e2b6738e0b..35092b84bd0b3 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 7b680777e3107..dbe641016cb2a 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/cfgv/default.nix b/pkgs/development/python-modules/cfgv/default.nix index f4692158a9d9f..55832712ee413 100644 --- a/pkgs/development/python-modules/cfgv/default.nix +++ b/pkgs/development/python-modules/cfgv/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cfgv" ]; - meta = with lib; { + meta = { description = "Validate configuration and produce human readable error messages"; homepage = "https://github.com/asottile/cfgv"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/cfn-flip/default.nix b/pkgs/development/python-modules/cfn-flip/default.nix index e10440bd3d3ea..549ede9a649ef 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/cfscrape/default.nix b/pkgs/development/python-modules/cfscrape/default.nix index f4d6bc7a38a95..e594d618f026e 100644 --- a/pkgs/development/python-modules/cfscrape/default.nix +++ b/pkgs/development/python-modules/cfscrape/default.nix @@ -20,11 +20,11 @@ buildPythonPackage rec { 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 ef33cb69e1ce3..e145991f61da9 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/default.nix b/pkgs/development/python-modules/chacha20poly1305/default.nix index 0493f9b15ee02..d3da12cbc83c1 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/chai/default.nix b/pkgs/development/python-modules/chai/default.nix index 756a2ab0868bc..a45bff2e26549 100644 --- a/pkgs/development/python-modules/chai/default.nix +++ b/pkgs/development/python-modules/chai/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { --replace "assert_equals" "assert_equal" ''; - meta = with lib; { + meta = { description = "Mocking, stubbing and spying framework for python"; }; } diff --git a/pkgs/development/python-modules/chainmap/default.nix b/pkgs/development/python-modules/chainmap/default.nix index 3babd3d418972..8d3fbbad67c18 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/chainstream/default.nix b/pkgs/development/python-modules/chainstream/default.nix index b48c42992bedf..01c1964ef3709 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/changefinder/default.nix b/pkgs/development/python-modules/changefinder/default.nix index a02cf6979f8b8..e9b8c6641b89a 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/checksumdir/default.nix b/pkgs/development/python-modules/checksumdir/default.nix index ae54695e8a54a..bcfd76f376036 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/cheroot/default.nix b/pkgs/development/python-modules/cheroot/default.nix index 2b4c9f427acb3..9c80f626b2fe6 100644 --- a/pkgs/development/python-modules/cheroot/default.nix +++ b/pkgs/development/python-modules/cheroot/default.nix @@ -95,11 +95,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 a151c9d8fd15e..e1102594ffacd 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/chevron/default.nix b/pkgs/development/python-modules/chevron/default.nix index 3a178e38c786a..feab2083af4a9 100644 --- a/pkgs/development/python-modules/chevron/default.nix +++ b/pkgs/development/python-modules/chevron/default.nix @@ -22,11 +22,11 @@ buildPythonPackage { ${python.interpreter} test_spec.py ''; - meta = with lib; { + meta = { homepage = "https://github.com/noahmorrison/chevron"; description = "Python implementation of the mustache templating language"; mainProgram = "chevron"; - license = licenses.mit; - maintainers = with maintainers; [ dhkl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dhkl ]; }; } diff --git a/pkgs/development/python-modules/chirpstack-api/default.nix b/pkgs/development/python-modules/chirpstack-api/default.nix index 38ea1d8739cfc..275790f4487f5 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 8246d3553f8a5..d9101418049ca 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 00728a35d395f..5dc0d5c110d44 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/ci-info/default.nix b/pkgs/development/python-modules/ci-info/default.nix index 4c603940a1440..d3035a11df13b 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 9abd0d04b29b6..d4e3287028afa 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 d87df6283746d..6670c780516f9 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 cca4277525b27..8828cdc6658f2 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 3210a741c85c8..477b51ccc9ce6 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 44d604e351328..57e127cc5c2a2 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 311fb99fbf055..fd5d32d749a67 100644 --- a/pkgs/development/python-modules/ciso8601/default.nix +++ b/pkgs/development/python-modules/ciso8601/default.nix @@ -30,10 +30,10 @@ 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"; - 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 a8563a9ce0850..152295e449e45 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/claripy/default.nix b/pkgs/development/python-modules/claripy/default.nix index 558059d4e083e..bf051325bee8c 100644 --- a/pkgs/development/python-modules/claripy/default.nix +++ b/pkgs/development/python-modules/claripy/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "claripy" ]; - meta = with lib; { + meta = { description = "Python abstraction layer for constraint solvers"; homepage = "https://github.com/angr/claripy"; - 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/class-doc/default.nix b/pkgs/development/python-modules/class-doc/default.nix index 32d69f0927601..918aad203de16 100644 --- a/pkgs/development/python-modules/class-doc/default.nix +++ b/pkgs/development/python-modules/class-doc/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { 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 53eaf1745231c..0bb184650a23d 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 db4635ca46d9b..c0db9c0f3a8ee 100644 --- a/pkgs/development/python-modules/cle/default.nix +++ b/pkgs/development/python-modules/cle/default.nix @@ -76,10 +76,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cle" ]; - meta = with lib; { + meta = { description = "Python loader for many binary formats"; homepage = "https://github.com/angr/cle"; - 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/clean-fid/default.nix b/pkgs/development/python-modules/clean-fid/default.nix index d88bbcc7105e4..d8e6e7ff10e1c 100644 --- a/pkgs/development/python-modules/clean-fid/default.nix +++ b/pkgs/development/python-modules/clean-fid/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { # 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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/clf/default.nix b/pkgs/development/python-modules/clf/default.nix index acf60cba7e1e4..de884a48b30fc 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-ui/default.nix b/pkgs/development/python-modules/cli-ui/default.nix index 81da90802abff..9d3f8a3def6a7 100644 --- a/pkgs/development/python-modules/cli-ui/default.nix +++ b/pkgs/development/python-modules/cli-ui/default.nix @@ -35,10 +35,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 4b0e63ed21c1c..d7ccb36e2e121 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 cf1a33cf3140a..a08bc786eafec 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 be2ad84ece64f..1533d55ff09b3 100644 --- a/pkgs/development/python-modules/click-command-tree/default.nix +++ b/pkgs/development/python-modules/click-command-tree/default.nix @@ -26,10 +26,10 @@ 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; - maintainers = with maintainers; [ tjni ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tjni ]; }; } diff --git a/pkgs/development/python-modules/click-completion/default.nix b/pkgs/development/python-modules/click-completion/default.nix index f79d92ecffc8a..5e06ace610343 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 47d43ca1fa2b4..2a3b31f2b0506 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 2203bfb829637..b02fda327d585 100644 --- a/pkgs/development/python-modules/click-datetime/default.nix +++ b/pkgs/development/python-modules/click-datetime/default.nix @@ -24,10 +24,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 061d2e3a03914..e8fa5928aeecb 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 6da6e6d1e4b5d..4e294e5ab7878 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-log/default.nix b/pkgs/development/python-modules/click-log/default.nix index fbf67e9b2a5f9..1eac7a94e3a6c 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 0e1cc65445bb5..b3f827dbed356 100644 --- a/pkgs/development/python-modules/click-odoo-contrib/default.nix +++ b/pkgs/development/python-modules/click-odoo-contrib/default.nix @@ -32,10 +32,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 ff815b9f26d5a..4a08f4419fbcc 100644 --- a/pkgs/development/python-modules/click-odoo/default.nix +++ b/pkgs/development/python-modules/click-odoo/default.nix @@ -23,11 +23,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 11de4c4bc52e1..dc412e0f2904a 100644 --- a/pkgs/development/python-modules/click-option-group/default.nix +++ b/pkgs/development/python-modules/click-option-group/default.nix @@ -26,7 +26,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 @@ -36,7 +36,7 @@ buildPythonPackage rec { functionality out of the box. ''; homepage = "https://github.com/click-contrib/click-option-group"; - 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 bf4a347b92d71..f1f879b4e0838 100644 --- a/pkgs/development/python-modules/click-plugins/default.nix +++ b/pkgs/development/python-modules/click-plugins/default.nix @@ -20,10 +20,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; - maintainers = with maintainers; [ ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/click-repl/default.nix b/pkgs/development/python-modules/click-repl/default.nix index 66acdd9d145df..d2a06c370d274 100644 --- a/pkgs/development/python-modules/click-repl/default.nix +++ b/pkgs/development/python-modules/click-repl/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { 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 b51163716e5f2..63b6324a1e0f5 100644 --- a/pkgs/development/python-modules/click-shell/default.nix +++ b/pkgs/development/python-modules/click-shell/default.nix @@ -31,7 +31,7 @@ buildPythonPackage rec { preCheck = "export HOME=$(mktemp -d)"; - 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 @@ -40,7 +40,7 @@ buildPythonPackage rec { with command completion to any click app. ''; homepage = "https://github.com/clarkperkins/click-shell"; - license = licenses.bsd3; - maintainers = with maintainers; [ binsky ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ binsky ]; }; } diff --git a/pkgs/development/python-modules/click/default.nix b/pkgs/development/python-modules/click/default.nix index cf69beff04014..2d0e61f2e65c6 100644 --- a/pkgs/development/python-modules/click/default.nix +++ b/pkgs/development/python-modules/click/default.nix @@ -47,14 +47,14 @@ buildPythonPackage rec { ; }; - meta = with lib; { + meta = { homepage = "https://click.palletsprojects.com/"; description = "Create beautiful command line interfaces in Python"; longDescription = '' A Python package for creating beautiful command line interfaces in a composable way, with as little code as necessary. ''; - license = licenses.bsd3; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/clickclick/default.nix b/pkgs/development/python-modules/clickclick/default.nix index 170ffd9071281..eb8c0db359938 100644 --- a/pkgs/development/python-modules/clickclick/default.nix +++ b/pkgs/development/python-modules/clickclick/default.nix @@ -37,9 +37,9 @@ buildPythonPackage rec { # test_cli asserts on exact quoting style of output disabledTests = [ "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; }; } diff --git a/pkgs/development/python-modules/clickgen/default.nix b/pkgs/development/python-modules/clickgen/default.nix index 73f42d2cc659c..11f0b2163e2cf 100644 --- a/pkgs/development/python-modules/clickgen/default.nix +++ b/pkgs/development/python-modules/clickgen/default.nix @@ -44,15 +44,15 @@ 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; - maintainers = with maintainers; [ AdsonCicilioti ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ AdsonCicilioti ]; # fails with: # ld: unknown option: -zdefs broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/development/python-modules/clickhouse-cityhash/default.nix b/pkgs/development/python-modules/clickhouse-cityhash/default.nix index 87094e3f52442..ee6c1e1de9e03 100644 --- a/pkgs/development/python-modules/clickhouse-cityhash/default.nix +++ b/pkgs/development/python-modules/clickhouse-cityhash/default.nix @@ -28,10 +28,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 15a700f684e1c..1e2407e8d3e8f 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-driver/default.nix b/pkgs/development/python-modules/clickhouse-driver/default.nix index 6eb3013063f52..09590ff36f093 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 1e7880cc8a50c..742178444135f 100644 --- a/pkgs/development/python-modules/cliff/default.nix +++ b/pkgs/development/python-modules/cliff/default.nix @@ -60,10 +60,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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/cligj/default.nix b/pkgs/development/python-modules/cligj/default.nix index 9be9ce2f5aca3..edb3cc8255627 100644 --- a/pkgs/development/python-modules/cligj/default.nix +++ b/pkgs/development/python-modules/cligj/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { LC_ALL=en_US.utf-8 pytest tests ''; - meta = with lib; { + meta = { description = "Click params for command line interfaces to GeoJSON"; homepage = "https://github.com/mapbox/cligj"; - license = licenses.bsd3; - maintainers = with maintainers; [ ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/clint/default.nix b/pkgs/development/python-modules/clint/default.nix index 87bc6568c5873..e9d04f6f9ce44 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/clip-anytorch/default.nix b/pkgs/development/python-modules/clip-anytorch/default.nix index 6054969537e74..a50aee9901d39 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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/clip/default.nix b/pkgs/development/python-modules/clip/default.nix index e5b193c9caa15..6bd2a947ded87 100644 --- a/pkgs/development/python-modules/clip/default.nix +++ b/pkgs/development/python-modules/clip/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { 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/cloudpathlib/default.nix b/pkgs/development/python-modules/cloudpathlib/default.nix index 16c042d746f3a..3c4581e5801b9 100644 --- a/pkgs/development/python-modules/cloudpathlib/default.nix +++ b/pkgs/development/python-modules/cloudpathlib/default.nix @@ -62,10 +62,10 @@ buildPythonPackage rec { tenacity ] ++ optional-dependencies.all; - meta = with lib; { + meta = { description = "Python pathlib-style classes for cloud storage services such as Amazon S3, Azure Blob Storage, and Google Cloud Storage"; homepage = "https://github.com/drivendataorg/cloudpathlib"; - license = licenses.mit; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/cloudsmith-api/default.nix b/pkgs/development/python-modules/cloudsmith-api/default.nix index 57a790c3326c5..85b71857a0c2a 100644 --- a/pkgs/development/python-modules/cloudsmith-api/default.nix +++ b/pkgs/development/python-modules/cloudsmith-api/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cloudsmith_api" ]; - meta = with lib; { + meta = { description = "Cloudsmith API Client"; homepage = "https://github.com/cloudsmith-io/cloudsmith-api"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/clr-loader/default.nix b/pkgs/development/python-modules/clr-loader/default.nix index 9b34590b59096..9709212bef90f 100644 --- a/pkgs/development/python-modules/clr-loader/default.nix +++ b/pkgs/development/python-modules/clr-loader/default.nix @@ -82,10 +82,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 f52f290be8d52..9f7e559813396 100644 --- a/pkgs/development/python-modules/clustershell/default.nix +++ b/pkgs/development/python-modules/clustershell/default.nix @@ -80,11 +80,11 @@ buildPythonPackage rec { rm tests/TreeGatewayTest.py ''; - 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/cmake/default.nix b/pkgs/development/python-modules/cmake/default.nix index 5a6afc13602b0..a7fd08f6d6f96 100644 --- a/pkgs/development/python-modules/cmake/default.nix +++ b/pkgs/development/python-modules/cmake/default.nix @@ -27,14 +27,14 @@ buildPythonPackage rec { 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; - maintainers = with maintainers; [ tjni ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tjni ]; }; } diff --git a/pkgs/development/python-modules/cmarkgfm/default.nix b/pkgs/development/python-modules/cmarkgfm/default.nix index 23a38b8377e3e..5624565870b63 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 3f061b7449be4..82103e05a2ca1 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/cmdline/default.nix b/pkgs/development/python-modules/cmdline/default.nix index 82b901c1ce72c..1424003670736 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 9237631c0532f..700996726555d 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 1a51a3d71119b..67dd98c37ed76 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 40a821b80eee0..446260d483b45 100644 --- a/pkgs/development/python-modules/cmsis-pack-manager/default.nix +++ b/pkgs/development/python-modules/cmsis-pack-manager/default.nix @@ -65,11 +65,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 6db0885e582f0..147e9c6e6de85 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 b565349584b38..e742aceb34e75 100644 --- a/pkgs/development/python-modules/coapthon3/default.nix +++ b/pkgs/development/python-modules/coapthon3/default.nix @@ -24,10 +24,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 89f9a40e1a90b..d136df058eca3 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; - maintainers = teams.ororatech.members; + license = lib.licenses.mit; + maintainers = lib.teams.ororatech.members; }; } diff --git a/pkgs/development/python-modules/cock/default.nix b/pkgs/development/python-modules/cock/default.nix index 762521b0c8671..b93a106afdd87 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/cocotb-bus/default.nix b/pkgs/development/python-modules/cocotb-bus/default.nix index 6e10559b35109..160a907d7ef29 100644 --- a/pkgs/development/python-modules/cocotb-bus/default.nix +++ b/pkgs/development/python-modules/cocotb-bus/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # 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; [ prusnak ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/codepy/default.nix b/pkgs/development/python-modules/codepy/default.nix index edcda2857bc3e..2e87dd8da3184 100644 --- a/pkgs/development/python-modules/codepy/default.nix +++ b/pkgs/development/python-modules/codepy/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { # Tests are broken doCheck = false; - 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/cogapp/default.nix b/pkgs/development/python-modules/cogapp/default.nix index c6f669c8ad569..041431a029c04 100644 --- a/pkgs/development/python-modules/cogapp/default.nix +++ b/pkgs/development/python-modules/cogapp/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # there are no tests doCheck = false; - meta = with lib; { + meta = { description = "Code generator for executing Python snippets in source files"; homepage = "https://nedbatchelder.com/code/cog"; - license = licenses.mit; - maintainers = with maintainers; [ lovek323 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovek323 ]; }; } diff --git a/pkgs/development/python-modules/coincurve/default.nix b/pkgs/development/python-modules/coincurve/default.nix index 01d8b292cbef5..b085528ba19f5 100644 --- a/pkgs/development/python-modules/coincurve/default.nix +++ b/pkgs/development/python-modules/coincurve/default.nix @@ -68,10 +68,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "coincurve" ]; - meta = with lib; { + meta = { description = "Cross-platform bindings for libsecp256k1"; homepage = "https://github.com/ofek/coincurve"; - license = with licenses; [ + license = with lib.licenses; [ asl20 mit ]; diff --git a/pkgs/development/python-modules/coinmetrics-api-client/default.nix b/pkgs/development/python-modules/coinmetrics-api-client/default.nix index f8ddd79717098..0927aeaf6523d 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 { pandas = [ pandas ]; }; - meta = with lib; { + meta = { description = "Coin Metrics API v4 client library"; mainProgram = "coinmetrics"; 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 ]; }; } diff --git a/pkgs/development/python-modules/colander/default.nix b/pkgs/development/python-modules/colander/default.nix index e3ddb2cf3c312..5ba6bd97efb69 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 - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.free; # http://repoze.org/LICENSE.txt + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/colanderalchemy/default.nix b/pkgs/development/python-modules/colanderalchemy/default.nix index ca1243078f35e..d9afd1f459e9c 100644 --- a/pkgs/development/python-modules/colanderalchemy/default.nix +++ b/pkgs/development/python-modules/colanderalchemy/default.nix @@ -23,9 +23,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/collections-extended/default.nix b/pkgs/development/python-modules/collections-extended/default.nix index 72648a5268d43..a8ff0f482e427 100644 --- a/pkgs/development/python-modules/collections-extended/default.nix +++ b/pkgs/development/python-modules/collections-extended/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "collections_extended" ]; - meta = with lib; { + meta = { description = "Extra Python Collections - bags (multisets), setlists (unique list/indexed set), RangeMap and IndexedDict"; homepage = "https://github.com/mlenzen/collections-extended"; - license = licenses.asl20; - maintainers = with maintainers; [ exarkun ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ exarkun ]; }; } diff --git a/pkgs/development/python-modules/collidoscope/default.nix b/pkgs/development/python-modules/collidoscope/default.nix index 2ad63e83c081a..d4609fa8d804f 100644 --- a/pkgs/development/python-modules/collidoscope/default.nix +++ b/pkgs/development/python-modules/collidoscope/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { "-v" ]; - meta = with lib; { + meta = { description = "Python library to detect glyph collisions in fonts"; homepage = "https://github.com/googlefonts/collidoscope"; - license = licenses.mit; - maintainers = with maintainers; [ danc86 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ danc86 ]; }; } diff --git a/pkgs/development/python-modules/colorcet/default.nix b/pkgs/development/python-modules/colorcet/default.nix index b335897207fcf..e7dacc08fd18c 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 016aaacc1355f..2efa1a0b95b15 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 8fc51701bf248..04b9cfa40bc04 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/coloredlogs/default.nix b/pkgs/development/python-modules/coloredlogs/default.nix index c3852dc4ad070..888bbfde0a47d 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/colorlog/default.nix b/pkgs/development/python-modules/colorlog/default.nix index ab09f5896b4a6..9b7c429e0c7c9 100644 --- a/pkgs/development/python-modules/colorlog/default.nix +++ b/pkgs/development/python-modules/colorlog/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Log formatting with colors"; homepage = "https://github.com/borntyping/python-colorlog"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/colorlover/default.nix b/pkgs/development/python-modules/colorlover/default.nix index f5efbbf13486e..54c0924a151e4 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/colorthief/default.nix b/pkgs/development/python-modules/colorthief/default.nix index 66fb4f9fe502d..9275822f8abf5 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 2290165e639bc..f3b786e865ef0 100644 --- a/pkgs/development/python-modules/colorzero/default.nix +++ b/pkgs/development/python-modules/colorzero/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - 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 de2006bacb2d5..5cb345584a42a 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 904f3e1f4b023..85ba1f1f65bbf 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 d0216307b9399..529af3eb07edf 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 228381305e7a9..d39b81f4a45a8 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/commandlines/default.nix b/pkgs/development/python-modules/commandlines/default.nix index aa5da9c0d37f6..65f85c9110bda 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 88002d022c717..c72720447582a 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 f410d16628f4c..f993b4e068ca2 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/commonmark/default.nix b/pkgs/development/python-modules/commonmark/default.nix index cccb852f381ba..63fe33eb10b85 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 7075fc7322e89..95d1cf4c45b77 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 = "A 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/compressed-rtf/default.nix b/pkgs/development/python-modules/compressed-rtf/default.nix index 7788fe065635f..bd769c6570c4d 100644 --- a/pkgs/development/python-modules/compressed-rtf/default.nix +++ b/pkgs/development/python-modules/compressed-rtf/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "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 384beaff25dbb..57d143e31d863 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/configclass/default.nix b/pkgs/development/python-modules/configclass/default.nix index 8ddca65737d6d..014557e41aedd 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 d3e627b79bb21..9f35fa169dc3f 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/configparser/default.nix b/pkgs/development/python-modules/configparser/default.nix index 2c9981db34a6b..6d5a3ce203bbe 100644 --- a/pkgs/development/python-modules/configparser/default.nix +++ b/pkgs/development/python-modules/configparser/default.nix @@ -31,10 +31,10 @@ 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+"; homepage = "https://github.com/jaraco/configparser"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/configshell/default.nix b/pkgs/development/python-modules/configshell/default.nix index c2eabec513c23..ccc94cf052a07 100644 --- a/pkgs/development/python-modules/configshell/default.nix +++ b/pkgs/development/python-modules/configshell/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "configshell" ]; - meta = with lib; { + meta = { description = "Python library for building configuration shells"; homepage = "https://github.com/open-iscsi/configshell-fb"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/configupdater/default.nix b/pkgs/development/python-modules/configupdater/default.nix index 9e052140d48fc..5ee4882611596 100644 --- a/pkgs/development/python-modules/configupdater/default.nix +++ b/pkgs/development/python-modules/configupdater/default.nix @@ -28,13 +28,13 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - 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/confuse/default.nix b/pkgs/development/python-modules/confuse/default.nix index 59ba5a4b3faf8..e2b3b114ad2a8 100644 --- a/pkgs/development/python-modules/confuse/default.nix +++ b/pkgs/development/python-modules/confuse/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "confuse" ]; - meta = with lib; { + meta = { description = "Python configuration library for Python that uses YAML"; homepage = "https://github.com/beetbox/confuse"; - license = licenses.mit; - maintainers = with maintainers; [ lovesegfault ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/development/python-modules/connection-pool/default.nix b/pkgs/development/python-modules/connection-pool/default.nix index b9767c7513bab..be52ca1306e90 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 ea5f7f5518fda..2b5060bb131d9 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/constantly/default.nix b/pkgs/development/python-modules/constantly/default.nix index 42d8e96b38890..93e08e81df60e 100644 --- a/pkgs/development/python-modules/constantly/default.nix +++ b/pkgs/development/python-modules/constantly/default.nix @@ -47,10 +47,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 a89f8f030a0e1..752e99a57c293 100644 --- a/pkgs/development/python-modules/construct-classes/default.nix +++ b/pkgs/development/python-modules/construct-classes/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "construct_classes" ]; - meta = with lib; { + meta = { description = "Parse your binary data into dataclasses"; homepage = "https://github.com/matejcik/construct-classes"; - license = licenses.mit; - maintainers = with maintainers; [ prusnak ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/consul/default.nix b/pkgs/development/python-modules/consul/default.nix index 56d95aa87d905..793e1bc1e8335 100644 --- a/pkgs/development/python-modules/consul/default.nix +++ b/pkgs/development/python-modules/consul/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { # No tests distributed. https://github.com/cablehead/python-consul/issues/133 doCheck = false; - meta = with lib; { + meta = { description = "Python client for Consul (https://www.consul.io/)"; homepage = "https://github.com/cablehead/python-consul"; - license = licenses.mit; - maintainers = with maintainers; [ desiderius ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ desiderius ]; }; } diff --git a/pkgs/development/python-modules/contexttimer/default.nix b/pkgs/development/python-modules/contexttimer/default.nix index 1cba5807e96de..c218b96c1f622 100644 --- a/pkgs/development/python-modules/contexttimer/default.nix +++ b/pkgs/development/python-modules/contexttimer/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { ${python.interpreter} -m unittest tests/test_timer.py ''; - meta = with lib; { + meta = { homepage = "https://github.com/brouberol/contexttimer"; description = "Timer as a context manager"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ atila ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ atila ]; }; } diff --git a/pkgs/development/python-modules/convertdate/default.nix b/pkgs/development/python-modules/convertdate/default.nix index e4c2e9bd8ec0a..38e09de09c81d 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/conway-polynomials/default.nix b/pkgs/development/python-modules/conway-polynomials/default.nix index c89898e851079..cdcbe4d9b1784 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"; - maintainers = teams.sage.members; - license = licenses.gpl3Plus; + maintainers = lib.teams.sage.members; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/development/python-modules/cookies/default.nix b/pkgs/development/python-modules/cookies/default.nix index bd58002178d1a..11a336fcf2c41 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/coqpit/default.nix b/pkgs/development/python-modules/coqpit/default.nix index 44ff920770f8e..cbef87fc2a953 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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/coreapi/default.nix b/pkgs/development/python-modules/coreapi/default.nix index f70b8a73a65e2..6a0dd2026df43 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 1aede8b9f5873..b9538caac7dba 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 639ddcacd4876..c35930d1ff5dd 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/cose/default.nix b/pkgs/development/python-modules/cose/default.nix index 6ddb5676bef6c..44083b0bdab32 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/cppheaderparser/default.nix b/pkgs/development/python-modules/cppheaderparser/default.nix index 80aea1678ae7c..c82e5c1582d0d 100644 --- a/pkgs/development/python-modules/cppheaderparser/default.nix +++ b/pkgs/development/python-modules/cppheaderparser/default.nix @@ -19,10 +19,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 ba51f794dd069..d7324ac312ce3 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/cramjam/default.nix b/pkgs/development/python-modules/cramjam/default.nix index 091842c392b63..f376916e7ee3e 100644 --- a/pkgs/development/python-modules/cramjam/default.nix +++ b/pkgs/development/python-modules/cramjam/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cramjam" ]; - meta = with lib; { + meta = { description = "Thin Python bindings to de/compression algorithms in Rust"; homepage = "https://github.com/milesgranger/pyrus-cramjam"; - 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/crashtest/default.nix b/pkgs/development/python-modules/crashtest/default.nix index e6c1395785629..2ecd4adb09756 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/crayons/default.nix b/pkgs/development/python-modules/crayons/default.nix index 30810bb9d2245..895f410bc30e1 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/crc16/default.nix b/pkgs/development/python-modules/crc16/default.nix index 6ef211c06fba1..8b2f9a1791301 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/crccheck/default.nix b/pkgs/development/python-modules/crccheck/default.nix index 0964aa45f5c58..42b1d3bb31c58 100644 --- a/pkgs/development/python-modules/crccheck/default.nix +++ b/pkgs/development/python-modules/crccheck/default.nix @@ -25,11 +25,11 @@ buildPythonPackage { nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { description = "Python library for CRCs and checksums"; homepage = "https://github.com/MartinScharrer/crccheck"; - 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 beff240c986eb..abc09b656042c 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/cronsim/default.nix b/pkgs/development/python-modules/cronsim/default.nix index d63b04f84d528..64cc094159a81 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 31cbafc2c8a43..1ab159a9c1b2d 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 e68ab04de4f7d..a3b142bd4e045 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 089d60fceb6f2..6f0c8d7debb3f 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 7e297cce4f559..121b6b53cbfb1 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 82f106d8f9ec6..5cc21ca7e2fc3 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 177b319ca4cba..6d45c0598e0aa 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 517e66eb565d7..46f0bb08eb744 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/cryptography/vectors.nix b/pkgs/development/python-modules/cryptography/vectors.nix index 0e404d57a6650..1af02601f5c3f 100644 --- a/pkgs/development/python-modules/cryptography/vectors.nix +++ b/pkgs/development/python-modules/cryptography/vectors.nix @@ -25,14 +25,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; [ SuperSandro2000 ]; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/python-modules/crysp/default.nix b/pkgs/development/python-modules/crysp/default.nix index d3a555a6d801c..dee00f653fdc9 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/cson/default.nix b/pkgs/development/python-modules/cson/default.nix index c32adee78e98b..fca79b25cb407 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 19302c7090005..4989e49d8fbf5 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 df6f74caa5716..51368bb47b577 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-parser/default.nix b/pkgs/development/python-modules/css-parser/default.nix index abb1130c702d0..e06881f1a144e 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/csscompressor/default.nix b/pkgs/development/python-modules/csscompressor/default.nix index d1a185bc8e435..63ef02e240013 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 84b4b9fe2964b..80b4304bf89fa 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/csvw/default.nix b/pkgs/development/python-modules/csvw/default.nix index be429844d13d6..48fe0916ff7bf 100644 --- a/pkgs/development/python-modules/csvw/default.nix +++ b/pkgs/development/python-modules/csvw/default.nix @@ -60,10 +60,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 ce81bfa36bcad..b3d769e7e2f81 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/cucumber-tag-expressions/default.nix b/pkgs/development/python-modules/cucumber-tag-expressions/default.nix index 56719042a746a..44efed9b7bf43 100644 --- a/pkgs/development/python-modules/cucumber-tag-expressions/default.nix +++ b/pkgs/development/python-modules/cucumber-tag-expressions/default.nix @@ -30,10 +30,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/cufflinks/default.nix b/pkgs/development/python-modules/cufflinks/default.nix index 6f550580a208a..b2f0b975369f4 100644 --- a/pkgs/development/python-modules/cufflinks/default.nix +++ b/pkgs/development/python-modules/cufflinks/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "tests.py" ]; - meta = with lib; { + meta = { description = "Productivity Tools for Plotly + Pandas"; homepage = "https://github.com/santosjorge/cufflinks"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/curl-cffi/default.nix b/pkgs/development/python-modules/curl-cffi/default.nix index e5434c6247c3d..0ae63a1c99a23 100644 --- a/pkgs/development/python-modules/curl-cffi/default.nix +++ b/pkgs/development/python-modules/curl-cffi/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "curl_cffi" ]; - meta = with lib; { + meta = { description = "Python binding for curl-impersonate via cffi"; homepage = "https://curl-cffi.readthedocs.io"; - license = licenses.mit; - maintainers = with maintainers; [ chuangzhu ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ chuangzhu ]; }; } diff --git a/pkgs/development/python-modules/curlify/default.nix b/pkgs/development/python-modules/curlify/default.nix index 8dfec88902691..bc54f0796b5ad 100644 --- a/pkgs/development/python-modules/curlify/default.nix +++ b/pkgs/development/python-modules/curlify/default.nix @@ -19,10 +19,10 @@ 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; - maintainers = with maintainers; [ chrpinedo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ chrpinedo ]; }; } diff --git a/pkgs/development/python-modules/curve25519-donna/default.nix b/pkgs/development/python-modules/curve25519-donna/default.nix index 8ff358be69058..61d0b8c636aad 100644 --- a/pkgs/development/python-modules/curve25519-donna/default.nix +++ b/pkgs/development/python-modules/curve25519-donna/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "1w0vkjyh4ki9n98lr2hg09f1lr1g3pz48kshrlic01ba6pasj60q"; }; - meta = with lib; { + meta = { description = "Python wrapper for the portable curve25519-donna implementation"; homepage = "http://code.google.com/p/curve25519-donna/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cvxopt/default.nix b/pkgs/development/python-modules/cvxopt/default.nix index 7b4b0c564ef64..6195d429b8526 100644 --- a/pkgs/development/python-modules/cvxopt/default.nix +++ b/pkgs/development/python-modules/cvxopt/default.nix @@ -67,7 +67,7 @@ buildPythonPackage rec { "tests" ]; - meta = with lib; { + meta = { homepage = "https://cvxopt.org/"; description = "Python Software for Convex Optimization"; longDescription = '' @@ -80,7 +80,7 @@ buildPythonPackage rec { standard library and on the strengths of Python as a high-level programming language. ''; - maintainers = with maintainers; [ edwtjo ]; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ edwtjo ]; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/development/python-modules/cwcwidth/default.nix b/pkgs/development/python-modules/cwcwidth/default.nix index 75b8b091c39b4..8b1231cfdd335 100644 --- a/pkgs/development/python-modules/cwcwidth/default.nix +++ b/pkgs/development/python-modules/cwcwidth/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cwcwidth" ]; - meta = with lib; { + meta = { description = "Python bindings for wc(s)width"; homepage = "https://github.com/sebastinas/cwcwidth"; changelog = "https://github.com/sebastinas/cwcwidth/blob/main/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cx-oracle/default.nix b/pkgs/development/python-modules/cx-oracle/default.nix index aa52a0695abb9..05325cd9bc744 100644 --- a/pkgs/development/python-modules/cx-oracle/default.nix +++ b/pkgs/development/python-modules/cx-oracle/default.nix @@ -25,10 +25,10 @@ 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; - maintainers = with maintainers; [ y0no ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ y0no ]; }; } diff --git a/pkgs/development/python-modules/cxxfilt/default.nix b/pkgs/development/python-modules/cxxfilt/default.nix index e82f5c6e880e8..bce948304e9d3 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/cypari2/default.nix b/pkgs/development/python-modules/cypari2/default.nix index f14019c28c57b..39a862782e871 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; - maintainers = teams.sage.members; + license = lib.licenses.gpl2Plus; + maintainers = lib.teams.sage.members; 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 6631f1a19680b..0d3f53dcad1e3 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 9e90eaf38f19d..260905987e99f 100644 --- a/pkgs/development/python-modules/cysignals/default.nix +++ b/pkgs/development/python-modules/cysignals/default.nix @@ -53,11 +53,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/"; - maintainers = teams.sage.members; - license = licenses.lgpl3Plus; + maintainers = lib.teams.sage.members; + license = lib.licenses.lgpl3Plus; }; } diff --git a/pkgs/development/python-modules/cytoolz/default.nix b/pkgs/development/python-modules/cytoolz/default.nix index 03b0b8c106b54..7fb6f94d79be9 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/daemonize/default.nix b/pkgs/development/python-modules/daemonize/default.nix index c71b3be587019..961600e1bb941 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 abe58995650fc..3f912ffb8e21e 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 d12b3245879b7..a86412dd3946c 100644 --- a/pkgs/development/python-modules/daff/default.nix +++ b/pkgs/development/python-modules/daff/default.nix @@ -18,10 +18,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 172253d600887..458c68b15da2b 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/dalle-mini/default.nix b/pkgs/development/python-modules/dalle-mini/default.nix index 2ea9b0c2d0c11..0590844902218 100644 --- a/pkgs/development/python-modules/dalle-mini/default.nix +++ b/pkgs/development/python-modules/dalle-mini/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dalle_mini" ]; - meta = with lib; { + meta = { description = "Generate images from a text prompt"; homepage = "https://github.com/borisdayma/dalle-mini"; - license = licenses.asl20; - maintainers = with maintainers; [ r-burns ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ r-burns ]; }; } diff --git a/pkgs/development/python-modules/daqp/default.nix b/pkgs/development/python-modules/daqp/default.nix index bfd149f40a0e5..3018927d5c535 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 c51f22fb368d4..4ff66cdc13b93 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 f95508612a714..674a88f69c7de 100644 --- a/pkgs/development/python-modules/dasbus/default.nix +++ b/pkgs/development/python-modules/dasbus/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { "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-core-components/default.nix b/pkgs/development/python-modules/dash-core-components/default.nix index 9d15db47e8bab..5a0ef31869b97 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 968a6f5bd6151..fd40f403f7803 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 717ed9acd7d62..f17ac4af5ce00 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 7382adf521b59..4a03d8e9f4902 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 f1aa0dbc6fb36..f9f1625352506 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 7ef14974e75ef..a39eddbe36de1 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-glm/default.nix b/pkgs/development/python-modules/dask-glm/default.nix index a4bead52b43ba..e76df3a29bfa0 100644 --- a/pkgs/development/python-modules/dask-glm/default.nix +++ b/pkgs/development/python-modules/dask-glm/default.nix @@ -58,10 +58,10 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Generalized Linear Models with Dask"; homepage = "https://github.com/dask/dask-glm/"; - 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 f51dccdc0377d..684fd457a5792 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 bcdf1e1cd844d..50f58c2c8e454 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/datadiff/default.nix b/pkgs/development/python-modules/datadiff/default.nix index 926f8a9f08a16..6b7aa5d0e2096 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 e7c8f0b3af2cb..dd0d00ef778d8 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 df952df2bd0a6..a3c4eb33e5362 100644 --- a/pkgs/development/python-modules/dataprep-ml/default.nix +++ b/pkgs/development/python-modules/dataprep-ml/default.nix @@ -74,10 +74,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 778082fc276f7..c1c82adfe6b50 100644 --- a/pkgs/development/python-modules/dataset/default.nix +++ b/pkgs/development/python-modules/dataset/default.nix @@ -31,11 +31,11 @@ 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 ]; # SQLAlchemy >= 2.0.0 is unsupported # https://github.com/pudo/dataset/issues/411 broken = true; diff --git a/pkgs/development/python-modules/datasette-template-sql/default.nix b/pkgs/development/python-modules/datasette-template-sql/default.nix index 5bdb48aa28cb6..aa2fdcde83120 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/datashader/default.nix b/pkgs/development/python-modules/datashader/default.nix index 7940e62cb371b..d2deed7aa867f 100644 --- a/pkgs/development/python-modules/datashader/default.nix +++ b/pkgs/development/python-modules/datashader/default.nix @@ -91,11 +91,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "datashader" ]; - meta = with lib; { + meta = { description = "Data visualization toolchain based on aggregating into a grid"; mainProgram = "datashader"; homepage = "https://datashader.org"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/datatable/default.nix b/pkgs/development/python-modules/datatable/default.nix index 1608ec12e8f21..2aa7b33a36408 100644 --- a/pkgs/development/python-modules/datatable/default.nix +++ b/pkgs/development/python-modules/datatable/default.nix @@ -67,10 +67,10 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "datatable" ]; - meta = with lib; { + meta = { description = "data.table for Python"; homepage = "https://github.com/h2oai/datatable"; - license = licenses.mpl20; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/dateutils/default.nix b/pkgs/development/python-modules/dateutils/default.nix index f52c467fd3dd2..323a4e05ec32f 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 c76e36e6b21f4..9e8dfc463cfe8 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/dawg-python/default.nix b/pkgs/development/python-modules/dawg-python/default.nix index 997600122d01f..eab79418b8b53 100644 --- a/pkgs/development/python-modules/dawg-python/default.nix +++ b/pkgs/development/python-modules/dawg-python/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dawg_python" ]; - meta = with lib; { + meta = { description = "Pure Python reader for DAWGs created by dawgdic C++ library or DAWG Python extension"; homepage = "https://github.com/pytries/DAWG-Python"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dazl/default.nix b/pkgs/development/python-modules/dazl/default.nix index 3c1c982b74a5b..94ecb46f449da 100644 --- a/pkgs/development/python-modules/dazl/default.nix +++ b/pkgs/development/python-modules/dazl/default.nix @@ -67,8 +67,8 @@ buildPythonPackage rec { typing-extensions ]; - meta = with lib; { + meta = { description = "High-level Ledger API client for Daml ledgers"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/dbf/default.nix b/pkgs/development/python-modules/dbf/default.nix index 75969681b0000..7fdbfbd2d1d63 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 26d8046ea8f25..8130e72ee8b2e 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 706d5018e2336..19a29138679f0 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 89066e5c9c506..82e3c25f180b0 100644 --- a/pkgs/development/python-modules/dbt-extractor/default.nix +++ b/pkgs/development/python-modules/dbt-extractor/default.nix @@ -40,12 +40,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 tjni ]; diff --git a/pkgs/development/python-modules/dbt-postgres/default.nix b/pkgs/development/python-modules/dbt-postgres/default.nix index 2db1292cb24c2..9307f08d53777 100644 --- a/pkgs/development/python-modules/dbt-postgres/default.nix +++ b/pkgs/development/python-modules/dbt-postgres/default.nix @@ -42,10 +42,10 @@ 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; - maintainers = with maintainers; [ tjni ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ tjni ]; }; } diff --git a/pkgs/development/python-modules/dbus-client-gen/default.nix b/pkgs/development/python-modules/dbus-client-gen/default.nix index bdc13650ff710..5991d695e8e6a 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 3f455b68a9612..dce3096b2da22 100644 --- a/pkgs/development/python-modules/dbus-deviation/default.nix +++ b/pkgs/development/python-modules/dbus-deviation/default.nix @@ -30,10 +30,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-python/default.nix b/pkgs/development/python-modules/dbus-python/default.nix index 756cd75ed6ad3..3d60ad6435256 100644 --- a/pkgs/development/python-modules/dbus-python/default.nix +++ b/pkgs/development/python-modules/dbus-python/default.nix @@ -95,10 +95,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 aa3892ee9aaa8..04035e03e93d8 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 f4982057e9e9a..1a119a68d751d 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 05315bec521d4..b118714d2833c 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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/deap/default.nix b/pkgs/development/python-modules/deap/default.nix index ec804ae1ba936..76b45341e08c2 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 b5785b93132fe..2c73de4209822 100644 --- a/pkgs/development/python-modules/debian-inspector/default.nix +++ b/pkgs/development/python-modules/debian-inspector/default.nix @@ -39,10 +39,10 @@ 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"; - 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 d9b2011b17f2f..5006970885f8a 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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/debts/default.nix b/pkgs/development/python-modules/debts/default.nix index 36e51d2b4477b..ba8a49c20034f 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/decopatch/default.nix b/pkgs/development/python-modules/decopatch/default.nix index ec263a48aa090..9cc1af0bf7339 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 5a0bc26763a46..b8ae149da4392 100644 --- a/pkgs/development/python-modules/decorator/default.nix +++ b/pkgs/development/python-modules/decorator/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "src/tests/test.py" ]; - meta = with lib; { + meta = { 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/deemix/default.nix b/pkgs/development/python-modules/deemix/default.nix index 40ee84f52aa21..9ccc7f2cf2c94 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 15238b0f5f17c..93db060eca60e 100644 --- a/pkgs/development/python-modules/deep-chainmap/default.nix +++ b/pkgs/development/python-modules/deep-chainmap/default.nix @@ -21,10 +21,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/deeptoolsintervals/default.nix b/pkgs/development/python-modules/deeptoolsintervals/default.nix index d3003ee0dc2b0..98f04cc21bf77 100644 --- a/pkgs/development/python-modules/deeptoolsintervals/default.nix +++ b/pkgs/development/python-modules/deeptoolsintervals/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest ]; - meta = with lib; { + meta = { homepage = "https://deeptools.readthedocs.io/en/develop"; description = "Helper library for deeptools"; - license = licenses.mit; - maintainers = with maintainers; [ scalavision ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ scalavision ]; }; } diff --git a/pkgs/development/python-modules/deezer-py/default.nix b/pkgs/development/python-modules/deezer-py/default.nix index 48228fcace341..adce65953648c 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/defang/default.nix b/pkgs/development/python-modules/defang/default.nix index ea9bfe22478c9..df78afee3ac6b 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/defusedcsv/default.nix b/pkgs/development/python-modules/defusedcsv/default.nix index ceebfba651149..37af60d947ff0 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/dehinter/default.nix b/pkgs/development/python-modules/dehinter/default.nix index 55dc1c503fb4e..21eba3ec63098 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/delorean/default.nix b/pkgs/development/python-modules/delorean/default.nix index f056cde2a6e81..77709502c8a43 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; - maintainers = with maintainers; [ globin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ globin ]; }; } diff --git a/pkgs/development/python-modules/demes/default.nix b/pkgs/development/python-modules/demes/default.nix index 658acdb8156fd..4dcabcb65bda9 100644 --- a/pkgs/development/python-modules/demes/default.nix +++ b/pkgs/development/python-modules/demes/default.nix @@ -44,11 +44,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; - maintainers = with maintainers; [ alxsimon ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ alxsimon ]; }; } diff --git a/pkgs/development/python-modules/demesdraw/default.nix b/pkgs/development/python-modules/demesdraw/default.nix index 6a3c4d44e99a6..1a99d95269c9e 100644 --- a/pkgs/development/python-modules/demesdraw/default.nix +++ b/pkgs/development/python-modules/demesdraw/default.nix @@ -51,11 +51,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; - maintainers = with maintainers; [ alxsimon ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ alxsimon ]; }; } diff --git a/pkgs/development/python-modules/demjson3/default.nix b/pkgs/development/python-modules/demjson3/default.nix index 091a80cf81845..794b6c90ddb3d 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/deprecated/default.nix b/pkgs/development/python-modules/deprecated/default.nix index 173d0a25a5e73..0494bcd1ceaae 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 7c3715cbfe785..21ab1bc24df21 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/detect-secrets/default.nix b/pkgs/development/python-modules/detect-secrets/default.nix index d7ce89ac84129..6a10d524a8782 100644 --- a/pkgs/development/python-modules/detect-secrets/default.nix +++ b/pkgs/development/python-modules/detect-secrets/default.nix @@ -63,10 +63,10 @@ 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"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/detectron2/default.nix b/pkgs/development/python-modules/detectron2/default.nix index 3f017850dfec5..57c630f719fcf 100644 --- a/pkgs/development/python-modules/detectron2/default.nix +++ b/pkgs/development/python-modules/detectron2/default.nix @@ -172,10 +172,10 @@ buildPythonPackage { pythonImportsCheck = [ "detectron2" ]; - meta = with lib; { + meta = { description = "Facebooks's next-generation platform for object detection, segmentation and other visual recognition tasks"; homepage = "https://github.com/facebookresearch/detectron2"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } 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 b4f3ea395e0f9..15b528dc00319 100644 --- a/pkgs/development/python-modules/devolo-home-control-api/default.nix +++ b/pkgs/development/python-modules/devolo-home-control-api/default.nix @@ -45,10 +45,10 @@ 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"; - 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/dfdiskcache/default.nix b/pkgs/development/python-modules/dfdiskcache/default.nix index 6008180900245..284fc1c807f20 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/dicom-numpy/default.nix b/pkgs/development/python-modules/dicom-numpy/default.nix index 1c0b57397d21f..7af3a2c8bed2d 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/dicom2nifti/default.nix b/pkgs/development/python-modules/dicom2nifti/default.nix index 6df9a652fb6fd..e99d6a0c1cc6b 100644 --- a/pkgs/development/python-modules/dicom2nifti/default.nix +++ b/pkgs/development/python-modules/dicom2nifti/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "dicom2nifti" ]; - meta = with lib; { + meta = { homepage = "https://github.com/icometrix/dicom2nifti"; description = "Library for converting dicom files to nifti"; mainProgram = "dicom2nifti"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/dictdiffer/default.nix b/pkgs/development/python-modules/dictdiffer/default.nix index 496c3d51af71f..28da416bb0d07 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 d056efe699195..7687813f78990 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-match-patch/default.nix b/pkgs/development/python-modules/diff-match-patch/default.nix index a794308df3140..e805f60e6f093 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 4136041f7d82e..c8f73ff802ee4 100644 --- a/pkgs/development/python-modules/diffimg/default.nix +++ b/pkgs/development/python-modules/diffimg/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { 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; - maintainers = with maintainers; [ evils ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ evils ]; }; } diff --git a/pkgs/development/python-modules/digi-xbee/default.nix b/pkgs/development/python-modules/digi-xbee/default.nix index 319239b241238..0d659cf4833cb 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/dingz/default.nix b/pkgs/development/python-modules/dingz/default.nix index 9f8d8a4a551f1..e8700d98316ed 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 216ab02108974..f65bcc955840b 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 03566cf27dc11..8f02305322157 100644 --- a/pkgs/development/python-modules/diofant/default.nix +++ b/pkgs/development/python-modules/diofant/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "diofant" ]; - meta = with lib; { + meta = { description = "Python CAS library"; homepage = "https://diofant.readthedocs.io/"; - license = licenses.bsd3; - maintainers = with maintainers; [ suhr ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ suhr ]; }; } diff --git a/pkgs/development/python-modules/directv/default.nix b/pkgs/development/python-modules/directv/default.nix index 43a1a1d0e655c..bc68fb31dd1bf 100644 --- a/pkgs/development/python-modules/directv/default.nix +++ b/pkgs/development/python-modules/directv/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "directv" ]; - meta = with lib; { + meta = { description = "Asynchronous Python client for DirecTV (SHEF)"; homepage = "https://github.com/ctalkington/python-directv"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/dirtyjson/default.nix b/pkgs/development/python-modules/dirtyjson/default.nix index 3519d8ff4a568..a31ae4d8fb447 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 83cc31223521c..73dc7af772b1d 100644 --- a/pkgs/development/python-modules/discid/default.nix +++ b/pkgs/development/python-modules/discid/default.nix @@ -26,9 +26,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/diskcache/default.nix b/pkgs/development/python-modules/diskcache/default.nix index 8211267f2eb09..186d2012a0e43 100644 --- a/pkgs/development/python-modules/diskcache/default.nix +++ b/pkgs/development/python-modules/diskcache/default.nix @@ -50,10 +50,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/dissononce/default.nix b/pkgs/development/python-modules/dissononce/default.nix index b4745c059465c..115b1866e1aec 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 f9da72b61c3f6..3e1f868173ad4 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/distro/default.nix b/pkgs/development/python-modules/distro/default.nix index 0de0aee0c165f..b29a9404dae6c 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 013ab75d37c3c..3b9365f3038aa 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 1214234bf8dd1..b3ebeb4e64d99 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 e57e66be59b84..72eb88df71c45 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 83e07a45bc045..5efdf03568372 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-annoying/default.nix b/pkgs/development/python-modules/django-annoying/default.nix index f244112f0d1b1..f4e6dd831e064 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-celery-email/default.nix b/pkgs/development/python-modules/django-celery-email/default.nix index ea7608ffca476..1d31939383242 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 e2a0a47a7f90f..e179428976e2e 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-colorful/default.nix b/pkgs/development/python-modules/django-colorful/default.nix index 43bf50fe47e34..ba99b1c0aff9d 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-configurations/default.nix b/pkgs/development/python-modules/django-configurations/default.nix index a7c944f981678..82195287a5daf 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 e1c6d17259fb7..d4b3e52e00712 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 ae5872b120b73..9c3174e0d1325 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-crispy-forms/default.nix b/pkgs/development/python-modules/django-crispy-forms/default.nix index 68513dd4beec2..7c3782ff5f8c4 100644 --- a/pkgs/development/python-modules/django-crispy-forms/default.nix +++ b/pkgs/development/python-modules/django-crispy-forms/default.nix @@ -40,10 +40,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 7f4d2804c4dd8..02825509ebfeb 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 5c5920404fbc8..807b61fe6f91c 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 d8fa83aaa89bc..11cdc237a8f83 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 b1361eda8e193..a6a10bb2a295f 100644 --- a/pkgs/development/python-modules/django-debug-toolbar/default.nix +++ b/pkgs/development/python-modules/django-debug-toolbar/default.nix @@ -48,11 +48,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; - maintainers = with maintainers; [ yuu ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ yuu ]; }; } 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 52109a7a529be..aba27c01be027 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-extensions/default.nix b/pkgs/development/python-modules/django-extensions/default.nix index fdd63334164a8..189441f0b2764 100644 --- a/pkgs/development/python-modules/django-extensions/default.nix +++ b/pkgs/development/python-modules/django-extensions/default.nix @@ -87,9 +87,9 @@ buildPythonPackage rec { "tests/test_dumpscript.py" ]; - meta = with lib; { + meta = { 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-formset-js-improved/default.nix b/pkgs/development/python-modules/django-formset-js-improved/default.nix index da8c2704b1715..93c804ddf427a 100644 --- a/pkgs/development/python-modules/django-formset-js-improved/default.nix +++ b/pkgs/development/python-modules/django-formset-js-improved/default.nix @@ -26,10 +26,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 0bd2d30e34133..bfcfddf110be4 100644 --- a/pkgs/development/python-modules/django-formtools/default.nix +++ b/pkgs/development/python-modules/django-formtools/default.nix @@ -34,12 +34,12 @@ 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; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ greizgh schmittlauch ]; diff --git a/pkgs/development/python-modules/django-gravatar2/default.nix b/pkgs/development/python-modules/django-gravatar2/default.nix index fd6fdb0b47c58..6c8cc62477e2a 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 a6727b8f055b8..1ba454e34478d 100644 --- a/pkgs/development/python-modules/django-guardian/default.nix +++ b/pkgs/development/python-modules/django-guardian/default.nix @@ -30,10 +30,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; [ + license = with lib.licenses; [ mit bsd2 ]; diff --git a/pkgs/development/python-modules/django-hcaptcha/default.nix b/pkgs/development/python-modules/django-hcaptcha/default.nix index 7f0eff2377007..a045811aeec9d 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 f4850f361aa83..633f31c91008f 100644 --- a/pkgs/development/python-modules/django-health-check/default.nix +++ b/pkgs/development/python-modules/django-health-check/default.nix @@ -63,10 +63,10 @@ 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"; - 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 86220923db7b4..16bb835396610 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 { pytestFlagsArray = [ "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-i18nfield/default.nix b/pkgs/development/python-modules/django-i18nfield/default.nix index 9a4918ee168fc..45166b52a7ea3 100644 --- a/pkgs/development/python-modules/django-i18nfield/default.nix +++ b/pkgs/development/python-modules/django-i18nfield/default.nix @@ -35,10 +35,10 @@ buildPythonPackage { 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-jquery-js/default.nix b/pkgs/development/python-modules/django-jquery-js/default.nix index ed2441f312820..ef2d1435ab02c 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 8523ae2e32498..33083a395054a 100644 --- a/pkgs/development/python-modules/django-js-asset/default.nix +++ b/pkgs/development/python-modules/django-js-asset/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { 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 49a6e3cb6b5bf..1f63acfa31e2c 100644 --- a/pkgs/development/python-modules/django-js-reverse/default.nix +++ b/pkgs/development/python-modules/django-js-reverse/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_js_reverse" ]; - meta = with lib; { + meta = { description = "Javascript url handling for Django that doesn't hurt"; homepage = "https://django-js-reverse.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-localflavor/default.nix b/pkgs/development/python-modules/django-localflavor/default.nix index 0ccadac6705d3..f077bb6e21292 100644 --- a/pkgs/development/python-modules/django-localflavor/default.nix +++ b/pkgs/development/python-modules/django-localflavor/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { DJANGO_SETTINGS_MODULE = "tests.settings"; - meta = with lib; { + meta = { 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 8a8f7a8effe99..5b76b14c820c1 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 858dc88b0ff8a..06630c74fff31 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-mdeditor/default.nix b/pkgs/development/python-modules/django-mdeditor/default.nix index a495b41c892d0..6c6c359905a51 100644 --- a/pkgs/development/python-modules/django-mdeditor/default.nix +++ b/pkgs/development/python-modules/django-mdeditor/default.nix @@ -28,11 +28,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-modeltranslation/default.nix b/pkgs/development/python-modules/django-modeltranslation/default.nix index 8c8d5e0bfc3a0..72c6fb55edea3 100644 --- a/pkgs/development/python-modules/django-modeltranslation/default.nix +++ b/pkgs/development/python-modules/django-modeltranslation/default.nix @@ -38,10 +38,10 @@ buildPythonPackage { parameterized ]; - meta = with lib; { + meta = { description = "Translates Django models using a registration approach"; homepage = "https://github.com/deschler/django-modeltranslation"; - license = licenses.bsd3; - maintainers = with maintainers; [ augustebaum ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ augustebaum ]; }; } diff --git a/pkgs/development/python-modules/django-mptt/default.nix b/pkgs/development/python-modules/django-mptt/default.nix index 404b6df1bc909..013073d2da09b 100644 --- a/pkgs/development/python-modules/django-mptt/default.nix +++ b/pkgs/development/python-modules/django-mptt/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { # No pytest checks, since they depend on model_mommy, which is deprecated doCheck = false; - 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-paintstore/default.nix b/pkgs/development/python-modules/django-paintstore/default.nix index 6d4dd2d365355..66b744d422f55 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-picklefield/default.nix b/pkgs/development/python-modules/django-picklefield/default.nix index 25b9e1c34c8d4..1454592fd101f 100644 --- a/pkgs/development/python-modules/django-picklefield/default.nix +++ b/pkgs/development/python-modules/django-picklefield/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Pickled object field for Django"; homepage = "https://github.com/gintas/django-picklefield"; - 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 86bc344fd0700..3368f6d6d2da2 100644 --- a/pkgs/development/python-modules/django-polymorphic/default.nix +++ b/pkgs/development/python-modules/django-polymorphic/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "polymorphic" ]; - meta = with lib; { + meta = { 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-ranged-response/default.nix b/pkgs/development/python-modules/django-ranged-response/default.nix index 6391b3eb2091a..3a2a7da1291f8 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 fc59c21893e79..9a5fa30422f9b 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-rest-auth/default.nix b/pkgs/development/python-modules/django-rest-auth/default.nix index 316b07a274e0a..b48c498eaa43e 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 73196ccfbcf00..d5c68c17e7c28 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 rec { 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-scopes/default.nix b/pkgs/development/python-modules/django-scopes/default.nix index 60d410e610e95..648c4c0544c99 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 5727b5ac9990d..36c9ce04a0ec5 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-shortuuidfield/default.nix b/pkgs/development/python-modules/django-shortuuidfield/default.nix index fe2580e205037..ab6fe6526b772 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-statici18n/default.nix b/pkgs/development/python-modules/django-statici18n/default.nix index b233ad229b662..b6e665eafc654 100644 --- a/pkgs/development/python-modules/django-statici18n/default.nix +++ b/pkgs/development/python-modules/django-statici18n/default.nix @@ -43,11 +43,11 @@ 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; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ greizgh schmittlauch ]; diff --git a/pkgs/development/python-modules/django-timezone-field/default.nix b/pkgs/development/python-modules/django-timezone-field/default.nix index 978ae2e8e39e4..781c11dad5a14 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-versatileimagefield/default.nix b/pkgs/development/python-modules/django-versatileimagefield/default.nix index 3545f011407c2..549a21ff2ddd7 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/3.nix b/pkgs/development/python-modules/django/3.nix index b4d478e3d8bd4..1a66f280f8e72 100644 --- a/pkgs/development/python-modules/django/3.nix +++ b/pkgs/development/python-modules/django/3.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "django" ]; - meta = with lib; { + meta = { description = "High-level Python Web framework"; homepage = "https://www.djangoproject.com/"; - license = licenses.bsd3; - maintainers = with maintainers; [ georgewhewell ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ georgewhewell ]; knownVulnerabilities = [ "Support for Django 3.2 ended on 2024-04-01, see https://www.djangoproject.com/download/#supported-versions." ]; diff --git a/pkgs/development/python-modules/djangoql/default.nix b/pkgs/development/python-modules/djangoql/default.nix index 198dea2ec53b5..3f0eba9b0cd0a 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 1c1a0c14740da..bcb0d5c384f5d 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-dataclasses/default.nix b/pkgs/development/python-modules/djangorestframework-dataclasses/default.nix index ac8389b116df8..114df9a975337 100644 --- a/pkgs/development/python-modules/djangorestframework-dataclasses/default.nix +++ b/pkgs/development/python-modules/djangorestframework-dataclasses/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rest_framework_dataclasses" ]; - meta = with lib; { + meta = { description = " Dataclasses serializer for Django REST framework"; homepage = "https://github.com/oxan/djangorestframework-dataclasses"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/djangorestframework-guardian2/default.nix b/pkgs/development/python-modules/djangorestframework-guardian2/default.nix index 25081535d2f0f..49b8cce57748b 100644 --- a/pkgs/development/python-modules/djangorestframework-guardian2/default.nix +++ b/pkgs/development/python-modules/djangorestframework-guardian2/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/johnthagen/django-rest-framework-guardian2/"; - license = licenses.bsd3; - maintainers = with maintainers; [ e1mo ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ e1mo ]; }; } diff --git a/pkgs/development/python-modules/djangorestframework-recursive/default.nix b/pkgs/development/python-modules/djangorestframework-recursive/default.nix index cdb68b5164f3a..4b30d46969f55 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/default.nix b/pkgs/development/python-modules/djangorestframework/default.nix index 43a5c07798013..97d62d375033e 100644 --- a/pkgs/development/python-modules/djangorestframework/default.nix +++ b/pkgs/development/python-modules/djangorestframework/default.nix @@ -73,11 +73,11 @@ 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/"; - maintainers = with maintainers; [ desiderius ]; - license = licenses.bsd2; + maintainers = with lib.maintainers; [ desiderius ]; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/dkimpy/default.nix b/pkgs/development/python-modules/dkimpy/default.nix index b22d1cbc884e0..9185c2459be22 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,7 +47,7 @@ buildPythonPackage rec { Received Chain (ARC) protocol. ''; homepage = "https://launchpad.net/dkimpy"; - license = licenses.bsd3; - maintainers = with maintainers; [ leenaars ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ leenaars ]; }; } diff --git a/pkgs/development/python-modules/dlx/default.nix b/pkgs/development/python-modules/dlx/default.nix index 3917dd4540ccd..001f3ae494c64 100644 --- a/pkgs/development/python-modules/dlx/default.nix +++ b/pkgs/development/python-modules/dlx/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { ${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; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/dm-env/default.nix b/pkgs/development/python-modules/dm-env/default.nix index 2b751b345cf88..433398c801a27 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/dm-haiku/default.nix b/pkgs/development/python-modules/dm-haiku/default.nix index 96fbd446ecb4f..9264586cff1e9 100644 --- a/pkgs/development/python-modules/dm-haiku/default.nix +++ b/pkgs/development/python-modules/dm-haiku/default.nix @@ -117,11 +117,11 @@ let dontInstall = true; }); - meta = with lib; { + meta = { description = "Haiku is a simple neural network library for JAX developed by some of the authors of Sonnet"; homepage = "https://github.com/deepmind/dm-haiku"; - license = licenses.asl20; - maintainers = with maintainers; [ ndl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ndl ]; }; }; in diff --git a/pkgs/development/python-modules/dm-sonnet/default.nix b/pkgs/development/python-modules/dm-sonnet/default.nix index 06b01a4478437..9b4b64ba5a412 100644 --- a/pkgs/development/python-modules/dm-sonnet/default.nix +++ b/pkgs/development/python-modules/dm-sonnet/default.nix @@ -58,10 +58,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sonnet" ]; - meta = with lib; { + meta = { description = "Library for building neural networks in TensorFlow"; homepage = "https://github.com/deepmind/sonnet"; - license = licenses.asl20; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/dnslib/default.nix b/pkgs/development/python-modules/dnslib/default.nix index 65d908605b9e0..099dbb3bc629d 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/dockerpty/default.nix b/pkgs/development/python-modules/dockerpty/default.nix index 0e4fe12546df9..26b7b00ccc890 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/docloud/default.nix b/pkgs/development/python-modules/docloud/default.nix index 5c7c57811543e..dc449e5bebc08 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; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/docopt-ng/default.nix b/pkgs/development/python-modules/docopt-ng/default.nix index 5fde32a380bbc..438a3bd525cca 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 3f7c7c7a0ece2..62504275a7fd3 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 5df0b3daf56ca..6ea7346083840 100644 --- a/pkgs/development/python-modules/docplex/default.nix +++ b/pkgs/development/python-modules/docplex/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { doCheck = false; 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; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/docstr-coverage/default.nix b/pkgs/development/python-modules/docstr-coverage/default.nix index 538e57e9bc6a8..c20555fdf585c 100644 --- a/pkgs/development/python-modules/docstr-coverage/default.nix +++ b/pkgs/development/python-modules/docstr-coverage/default.nix @@ -38,12 +38,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/docutils/default.nix b/pkgs/development/python-modules/docutils/default.nix index 260befeb00f45..22a13b0398346 100644 --- a/pkgs/development/python-modules/docutils/default.nix +++ b/pkgs/development/python-modules/docutils/default.nix @@ -49,16 +49,16 @@ let done ''; - meta = with lib; { + meta = { description = "Python Documentation Utilities"; homepage = "http://docutils.sourceforge.net/"; - license = with licenses; [ + license = with lib.licenses; [ publicDomain bsd2 psfl gpl3Plus ]; - maintainers = with maintainers; [ ]; + maintainers = with lib.maintainers; [ ]; }; }; in diff --git a/pkgs/development/python-modules/docx2txt/default.nix b/pkgs/development/python-modules/docx2txt/default.nix index 75969bc1da3ff..5fe877cc1674e 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 c6b78aa0504b0..0826806a5de5b 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 2731e184eed25..6be9d50b47ea8 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/doit-py/default.nix b/pkgs/development/python-modules/doit-py/default.nix index 8ebaadbcf2e76..4c4ae6f3b9a15 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 188fb1ddbb3b7..f4273d96392ee 100644 --- a/pkgs/development/python-modules/doit/default.nix +++ b/pkgs/development/python-modules/doit/default.nix @@ -60,11 +60,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 @@ -72,7 +72,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 698c370ce8e7b..6e101680fbe2e 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/dot2tex/default.nix b/pkgs/development/python-modules/dot2tex/default.nix index acd9bbc34a1f9..c09faa9b5aa99 100644 --- a/pkgs/development/python-modules/dot2tex/default.nix +++ b/pkgs/development/python-modules/dot2tex/default.nix @@ -42,10 +42,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 dcac1f08ae5a0..e6870fbc9b86c 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/dpcontracts/default.nix b/pkgs/development/python-modules/dpcontracts/default.nix index df423a46d4784..a47ffc1ef8d1a 100644 --- a/pkgs/development/python-modules/dpcontracts/default.nix +++ b/pkgs/development/python-modules/dpcontracts/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { 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 564a1aade8923..81d3b343ba735 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/drafthorse/default.nix b/pkgs/development/python-modules/drafthorse/default.nix index 4efde1b74bb8a..f8dee9d80ff06 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/dramatiq/default.nix b/pkgs/development/python-modules/dramatiq/default.nix index 60055e50e3eb6..e3b154dd4edd5 100644 --- a/pkgs/development/python-modules/dramatiq/default.nix +++ b/pkgs/development/python-modules/dramatiq/default.nix @@ -98,10 +98,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 648e9bf8e9539..a4b483bd3cea7 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 b1efda4769455..2a188ca0db855 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 eb9897a7c798e..2360b947dee74 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 d2bcddbe180b2..027e76630b9d9 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 5e49603858032..234b855d8c8a0 100644 --- a/pkgs/development/python-modules/drf-jwt/default.nix +++ b/pkgs/development/python-modules/drf-jwt/default.nix @@ -37,10 +37,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 3324361ca4f81..06c5e375d907a 100644 --- a/pkgs/development/python-modules/drf-nested-routers/default.nix +++ b/pkgs/development/python-modules/drf-nested-routers/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pytest-django ]; - meta = with lib; { + meta = { homepage = "https://github.com/alanjds/drf-nested-routers"; 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-spectacular-sidecar/default.nix b/pkgs/development/python-modules/drf-spectacular-sidecar/default.nix index 426a9e440013c..c5eff494ffe56 100644 --- a/pkgs/development/python-modules/drf-spectacular-sidecar/default.nix +++ b/pkgs/development/python-modules/drf-spectacular-sidecar/default.nix @@ -24,10 +24,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-writable-nested/default.nix b/pkgs/development/python-modules/drf-writable-nested/default.nix index e0639a18c2338..86b6bc81cb068 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 98046f8b51740..4722bfe786606 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 0135ca72954cf..2566ad8ba316d 100644 --- a/pkgs/development/python-modules/drivelib/default.nix +++ b/pkgs/development/python-modules/drivelib/default.nix @@ -45,10 +45,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 fc0c3e5e15f1b..b70bb6443d554 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; - maintainers = teams.ororatech.members; + license = lib.licenses.mit; + maintainers = lib.teams.ororatech.members; }; } diff --git a/pkgs/development/python-modules/dropmqttapi/default.nix b/pkgs/development/python-modules/dropmqttapi/default.nix index f7d0f6bc0a0df..4c9a92b78bf66 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 5e22e754fb4f2..de5041acb7b37 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/dscribe/default.nix b/pkgs/development/python-modules/dscribe/default.nix index 33229ab030751..39914d51632ff 100644 --- a/pkgs/development/python-modules/dscribe/default.nix +++ b/pkgs/development/python-modules/dscribe/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { scikit-learn ]; - meta = with lib; { + meta = { description = "Machine learning descriptors for atomistic systems"; homepage = "https://github.com/SINGROUP/dscribe"; - license = licenses.asl20; - maintainers = [ maintainers.sheepforce ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/development/python-modules/dsinternals/default.nix b/pkgs/development/python-modules/dsinternals/default.nix index ef827f13ba158..1723a90fd3bd9 100644 --- a/pkgs/development/python-modules/dsinternals/default.nix +++ b/pkgs/development/python-modules/dsinternals/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "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 258f7a389a94d..f3b4f4a507323 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/dtlssocket/default.nix b/pkgs/development/python-modules/dtlssocket/default.nix index a9810c51cb07a..1a68ae4107957 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/ducc0/default.nix b/pkgs/development/python-modules/ducc0/default.nix index 7965b3346cdb2..7f3efca248e9f 100644 --- a/pkgs/development/python-modules/ducc0/default.nix +++ b/pkgs/development/python-modules/ducc0/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { DUCC0_OPTIMIZATION = "portable-strip"; - meta = with lib; { + meta = { homepage = "https://gitlab.mpcdf.mpg.de/mtr/ducc"; description = "Efficient algorithms for Fast Fourier transforms and more"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ parras ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ parras ]; }; } diff --git a/pkgs/development/python-modules/duckdb/default.nix b/pkgs/development/python-modules/duckdb/default.nix index 77b348e271f00..678eea5f31578 100644 --- a/pkgs/development/python-modules/duckdb/default.nix +++ b/pkgs/development/python-modules/duckdb/default.nix @@ -92,10 +92,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 2d9b7ca504ce8..cb7d092be27b4 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/duet/default.nix b/pkgs/development/python-modules/duet/default.nix index 739f84709af15..3780d104badd1 100644 --- a/pkgs/development/python-modules/duet/default.nix +++ b/pkgs/development/python-modules/duet/default.nix @@ -35,9 +35,9 @@ buildPythonPackage rec { "test_repeated_sleep" ]; - meta = with lib; { + meta = { description = "Simple future-based async library for python"; homepage = "https://github.com/google/duet"; - maintainers = with maintainers; [ drewrisinger ]; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/dufte/default.nix b/pkgs/development/python-modules/dufte/default.nix index 53ef911b8814e..46defe0b3c118 100644 --- a/pkgs/development/python-modules/dufte/default.nix +++ b/pkgs/development/python-modules/dufte/default.nix @@ -41,10 +41,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/dungeon-eos/default.nix b/pkgs/development/python-modules/dungeon-eos/default.nix index d4282575c88b2..f499c40f127e0 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/durus/default.nix b/pkgs/development/python-modules/durus/default.nix index 2c651f7b22201..ea4b83b5cc810 100644 --- a/pkgs/development/python-modules/durus/default.nix +++ b/pkgs/development/python-modules/durus/default.nix @@ -24,11 +24,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/dynd/default.nix b/pkgs/development/python-modules/dynd/default.nix index b60e57b34c9c4..e3a9a8425fcb7 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/eagle100/default.nix b/pkgs/development/python-modules/eagle100/default.nix index 6d1bf6b349382..541cba484c0e2 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 2194fcf112469..127b3c555bd21 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/easygui/default.nix b/pkgs/development/python-modules/easygui/default.nix index d19d378fde5d3..f8eabbbf1fc27 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/easyprocess/default.nix b/pkgs/development/python-modules/easyprocess/default.nix index 17d20b2b65dce..7d904d67f813d 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 b51b4c5e8d78c..ee3c39a3ca421 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 dcaa761e8d238..1590fff9efd4b 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 c6b373e1bcba7..8250f032fd41c 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/ecdsa/default.nix b/pkgs/development/python-modules/ecdsa/default.nix index 85eee5a8a953b..342eba7f74d8a 100644 --- a/pkgs/development/python-modules/ecdsa/default.nix +++ b/pkgs/development/python-modules/ecdsa/default.nix @@ -20,9 +20,9 @@ buildPythonPackage rec { # Only needed for tests nativeCheckInputs = [ pkgs.openssl ]; - meta = with lib; { + meta = { description = "ECDSA cryptographic signature library"; homepage = "https://github.com/warner/python-ecdsa"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/echo/default.nix b/pkgs/development/python-modules/echo/default.nix index c2d5f1ac4bc6d..43bc0cc06bc7f 100644 --- a/pkgs/development/python-modules/echo/default.nix +++ b/pkgs/development/python-modules/echo/default.nix @@ -56,10 +56,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 ccdb695841387..70904203f80a9 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/ecpy/default.nix b/pkgs/development/python-modules/ecpy/default.nix index 208ff118c83b3..437a145db7883 100644 --- a/pkgs/development/python-modules/ecpy/default.nix +++ b/pkgs/development/python-modules/ecpy/default.nix @@ -27,9 +27,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "ecpy" ]; - meta = with lib; { + meta = { description = "Pure Pyhton Elliptic Curve Library"; homepage = "https://github.com/ubinity/ECPy"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/ecs-logging/default.nix b/pkgs/development/python-modules/ecs-logging/default.nix index fa1da330915b4..09468baff24e7 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/editdistance-s/default.nix b/pkgs/development/python-modules/editdistance-s/default.nix index e0ae8a91703db..fbbe8f0618d33 100644 --- a/pkgs/development/python-modules/editdistance-s/default.nix +++ b/pkgs/development/python-modules/editdistance-s/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "editdistance_s" ]; - meta = with lib; { + meta = { description = "Fast implementation of the edit distance (Levenshtein distance)"; homepage = "https://github.com/asottile/editdistance-s"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ austinbutler ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ austinbutler ]; }; } diff --git a/pkgs/development/python-modules/editdistance/default.nix b/pkgs/development/python-modules/editdistance/default.nix index c56e4f1d8d806..687192a0ab0e9 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/editorconfig/default.nix b/pkgs/development/python-modules/editorconfig/default.nix index 7de5770e67c76..10d6730a3831e 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/edward/default.nix b/pkgs/development/python-modules/edward/default.nix index 84a0b03b16e8f..5ca81b8cca4b4 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/eggdeps/default.nix b/pkgs/development/python-modules/eggdeps/default.nix index 0b6ef5a6e0a56..cb4136322f4d9 100644 --- a/pkgs/development/python-modules/eggdeps/default.nix +++ b/pkgs/development/python-modules/eggdeps/default.nix @@ -24,10 +24,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/einops/default.nix b/pkgs/development/python-modules/einops/default.nix index a24f75f1a8eee..b23c3347917ee 100644 --- a/pkgs/development/python-modules/einops/default.nix +++ b/pkgs/development/python-modules/einops/default.nix @@ -67,10 +67,10 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { 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/elevate/default.nix b/pkgs/development/python-modules/elevate/default.nix index 0db78266d3208..225ce304ea065 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/eliqonline/default.nix b/pkgs/development/python-modules/eliqonline/default.nix index 2b9b0e53c0bf5..29890e344469d 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/elmax/default.nix b/pkgs/development/python-modules/elmax/default.nix index 30bcb15c21066..0cb713d48d535 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/emailthreads/default.nix b/pkgs/development/python-modules/emailthreads/default.nix index b18d0f1e6d7b1..21eced43f96c5 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 67ecc02e54299..b45713f6a6173 100644 --- a/pkgs/development/python-modules/embedding-reader/default.nix +++ b/pkgs/development/python-modules/embedding-reader/default.nix @@ -34,10 +34,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/embrace/default.nix b/pkgs/development/python-modules/embrace/default.nix index 8fe77b069ead2..3cebfa455016f 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/empty-files/default.nix b/pkgs/development/python-modules/empty-files/default.nix index 27d7742fb853b..5247353550322 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 347a8145ba24f..02e96a69b2efa 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.lgpl21Only; + maintainers = with lib.maintainers; [ nkalupahana ]; + license = lib.licenses.lgpl21Only; }; } diff --git a/pkgs/development/python-modules/emulated-roku/default.nix b/pkgs/development/python-modules/emulated-roku/default.nix index 1e29bead57fbd..f65f7a2dbd135 100644 --- a/pkgs/development/python-modules/emulated-roku/default.nix +++ b/pkgs/development/python-modules/emulated-roku/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "emulated_roku" ]; - meta = with lib; { + meta = { description = "Library to emulate a roku server to serve as a proxy for remotes such as Harmony"; homepage = "https://github.com/mindigmarton/emulated_roku"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/enamlx/default.nix b/pkgs/development/python-modules/enamlx/default.nix index cc1ee749e0257..1996690711a7e 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/energyflip-client/default.nix b/pkgs/development/python-modules/energyflip-client/default.nix index 6dc18ec4c286f..1af9e242e41a7 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/enrich/default.nix b/pkgs/development/python-modules/enrich/default.nix index bccb74b2f8378..717ba634426db 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/entrance/default.nix b/pkgs/development/python-modules/entrance/default.nix index 960e629d1474b..7ac5325b2c4e2 100644 --- a/pkgs/development/python-modules/entrance/default.nix +++ b/pkgs/development/python-modules/entrance/default.nix @@ -59,10 +59,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 84dd8ffb1548d..20129cfa8de0f 100644 --- a/pkgs/development/python-modules/entry-points-txt/default.nix +++ b/pkgs/development/python-modules/entry-points-txt/default.nix @@ -31,10 +31,10 @@ 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"; - 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/entrypoint2/default.nix b/pkgs/development/python-modules/entrypoint2/default.nix index 2e6ecc1a0bbd6..dbbd90989db9b 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 5277106f01d23..7ceeba5b7681e 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 1b62fc88ef50f..9348ce88480f4 100644 --- a/pkgs/development/python-modules/enturclient/default.nix +++ b/pkgs/development/python-modules/enturclient/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "enturclient" ]; - 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/enum-compat/default.nix b/pkgs/development/python-modules/enum-compat/default.nix index fcf14cf94e722..a15c5c585de91 100644 --- a/pkgs/development/python-modules/enum-compat/default.nix +++ b/pkgs/development/python-modules/enum-compat/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ enum34 ]; - meta = with lib; { + meta = { homepage = "https://github.com/jstasiak/enum-compat"; description = "enum/enum34 compatibility package"; - license = licenses.mit; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/enum34/default.nix b/pkgs/development/python-modules/enum34/default.nix index 940fe7af28d30..fd5a732302a5d 100644 --- a/pkgs/development/python-modules/enum34/default.nix +++ b/pkgs/development/python-modules/enum34/default.nix @@ -20,9 +20,9 @@ else nativeCheckInputs = [ unittestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://pypi.python.org/pypi/enum34"; description = "Python 3.4 Enum backported to 3.3, 3.2, 3.1, 2.7, 2.6, 2.5, and 2.4"; - license = licenses.bsd0; + license = lib.licenses.bsd0; }; } diff --git a/pkgs/development/python-modules/envisage/default.nix b/pkgs/development/python-modules/envisage/default.nix index fceb0a9942c62..d688f5b0fd30f 100644 --- a/pkgs/development/python-modules/envisage/default.nix +++ b/pkgs/development/python-modules/envisage/default.nix @@ -41,10 +41,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 = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/envoy-reader/default.nix b/pkgs/development/python-modules/envoy-reader/default.nix index 46a8249d9e2f3..a8af44d2bdd3e 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 6827f97271820..82b803690c19e 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 5d969858c00fb..0ee1e1fca7160 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 81864a3de9f1c..735c8aa1ecc6c 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 c3c0a9c0bc1b7..f09038950c894 100644 --- a/pkgs/development/python-modules/ephem/default.nix +++ b/pkgs/development/python-modules/ephem/default.nix @@ -28,10 +28,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 d582c5cfc37c8..ebbbc206768b1 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/epson-projector/default.nix b/pkgs/development/python-modules/epson-projector/default.nix index 93afde3804c58..7e0a0ce2d51a6 100644 --- a/pkgs/development/python-modules/epson-projector/default.nix +++ b/pkgs/development/python-modules/epson-projector/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { "epson_projector.projector_tcp" ]; - meta = with lib; { + meta = { description = "Epson projector support for Python"; homepage = "https://github.com/pszafer/epson_projector"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/esprima/default.nix b/pkgs/development/python-modules/esprima/default.nix index 8969ec7922821..306d32d7b6b88 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/etcd/default.nix b/pkgs/development/python-modules/etcd/default.nix index d9dc4fcd07532..62be3cf639811 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 5157aa329dcd4..93fb49664f82e 100644 --- a/pkgs/development/python-modules/etebase/default.nix +++ b/pkgs/development/python-modules/etebase/default.nix @@ -75,11 +75,11 @@ buildPythonPackage rec { inherit (nixosTests) etebase-server; }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "https://www.etebase.com/"; description = "Python client library for Etebase"; - license = licenses.bsd3; - maintainers = with maintainers; [ _3699n ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ _3699n ]; }; } diff --git a/pkgs/development/python-modules/etesync/default.nix b/pkgs/development/python-modules/etesync/default.nix index a871f3fb3a910..e1310b1ef37da 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-abi/default.nix b/pkgs/development/python-modules/eth-abi/default.nix index 2b5d280562084..822085bed41d4 100644 --- a/pkgs/development/python-modules/eth-abi/default.nix +++ b/pkgs/development/python-modules/eth-abi/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "eth_abi" ]; - meta = with lib; { + meta = { description = "Ethereum ABI utilities"; homepage = "https://github.com/ethereum/eth-abi"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/eth-account/default.nix b/pkgs/development/python-modules/eth-account/default.nix index 7be6722f233b6..9dd3341d1a7d6 100644 --- a/pkgs/development/python-modules/eth-account/default.nix +++ b/pkgs/development/python-modules/eth-account/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "eth_account" ]; - meta = with lib; { + meta = { description = "Account abstraction library for web3.py"; homepage = "https://github.com/ethereum/eth-account"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/eth-hash/default.nix b/pkgs/development/python-modules/eth-hash/default.nix index 241a4260e43ac..dd18317ca3623 100644 --- a/pkgs/development/python-modules/eth-hash/default.nix +++ b/pkgs/development/python-modules/eth-hash/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pysha3 = [ safe-pysha3 ]; }; - meta = with lib; { + meta = { description = "Ethereum hashing function keccak256"; homepage = "https://github.com/ethereum/eth-hash"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/eth-keyfile/default.nix b/pkgs/development/python-modules/eth-keyfile/default.nix index 8175b2cfe7613..ca533d43b2e69 100644 --- a/pkgs/development/python-modules/eth-keyfile/default.nix +++ b/pkgs/development/python-modules/eth-keyfile/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "eth_keyfile" ]; - meta = with lib; { + meta = { description = "Tools for handling the encrypted keyfile format used to store private keys"; homepage = "https://github.com/ethereum/eth-keyfile"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/eth-keys/default.nix b/pkgs/development/python-modules/eth-keys/default.nix index c64470a2c485c..f3948136a0019 100644 --- a/pkgs/development/python-modules/eth-keys/default.nix +++ b/pkgs/development/python-modules/eth-keys/default.nix @@ -67,10 +67,10 @@ buildPythonPackage rec { coincurve = [ coincurve ]; }; - meta = with lib; { + meta = { description = "Common API for Ethereum key operations"; homepage = "https://github.com/ethereum/eth-keys"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/eth-rlp/default.nix b/pkgs/development/python-modules/eth-rlp/default.nix index 3bc8d7c35b836..424bbef08f89d 100644 --- a/pkgs/development/python-modules/eth-rlp/default.nix +++ b/pkgs/development/python-modules/eth-rlp/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "eth_rlp" ]; - 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/euclid3/default.nix b/pkgs/development/python-modules/euclid3/default.nix index f929b4b7c0a1b..2f538902f3728 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 88c488907e282..ea57fa54069cf 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/eventkit/default.nix b/pkgs/development/python-modules/eventkit/default.nix index fb25e87fd953f..7f8b57d125a64 100644 --- a/pkgs/development/python-modules/eventkit/default.nix +++ b/pkgs/development/python-modules/eventkit/default.nix @@ -17,10 +17,10 @@ buildPythonPackage { propagatedBuildInputs = [ numpy ]; dontUseSetuptoolsCheck = true; - 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/events/default.nix b/pkgs/development/python-modules/events/default.nix index 2c8f52541f2c3..09a829ceae81e 100644 --- a/pkgs/development/python-modules/events/default.nix +++ b/pkgs/development/python-modules/events/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pytestFlagsArray = [ "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/evernote/default.nix b/pkgs/development/python-modules/evernote/default.nix index 9d9b9cc9ad02e..e68f5282a1c51 100644 --- a/pkgs/development/python-modules/evernote/default.nix +++ b/pkgs/development/python-modules/evernote/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ oauth2 ]; - meta = with lib; { + meta = { description = "Evernote SDK for Python"; homepage = "https://dev.evernote.com"; - license = licenses.asl20; - maintainers = with maintainers; [ hbunke ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hbunke ]; }; } diff --git a/pkgs/development/python-modules/evohome-async/default.nix b/pkgs/development/python-modules/evohome-async/default.nix index 5abef0b5a32ca..83493b0cedae8 100644 --- a/pkgs/development/python-modules/evohome-async/default.nix +++ b/pkgs/development/python-modules/evohome-async/default.nix @@ -36,11 +36,11 @@ 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"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with 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 bb9151973627c..6fd5f6084bf89 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 = "An 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/exdown/default.nix b/pkgs/development/python-modules/exdown/default.nix index 9221ae0a16936..506d69a41a19f 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/executing/default.nix b/pkgs/development/python-modules/executing/default.nix index 1c20e1b16d282..1d33f1b4819ac 100644 --- a/pkgs/development/python-modules/executing/default.nix +++ b/pkgs/development/python-modules/executing/default.nix @@ -62,10 +62,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/exifread/default.nix b/pkgs/development/python-modules/exifread/default.nix index 942b5b761abd3..324da39dbbf0f 100644 --- a/pkgs/development/python-modules/exifread/default.nix +++ b/pkgs/development/python-modules/exifread/default.nix @@ -14,11 +14,11 @@ buildPythonPackage rec { hash = "sha256-CsWjZBadvfK9YvlPXAc5cKtmlKMWYXf15EixDJQ+LKQ="; }; - 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/expandvars/default.nix b/pkgs/development/python-modules/expandvars/default.nix index b295a8c6640eb..b18da1de681df 100644 --- a/pkgs/development/python-modules/expandvars/default.nix +++ b/pkgs/development/python-modules/expandvars/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Expand system variables Unix style"; homepage = "https://github.com/sayanarijit/expandvars"; - license = licenses.mit; - maintainers = with maintainers; [ geluk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ geluk ]; }; } diff --git a/pkgs/development/python-modules/expects/default.nix b/pkgs/development/python-modules/expects/default.nix index a36769259e365..a08b28010b426 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 8001dadabb5ed..5ca9c719ec4de 100644 --- a/pkgs/development/python-modules/expiring-dict/default.nix +++ b/pkgs/development/python-modules/expiring-dict/default.nix @@ -19,10 +19,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/exrex/default.nix b/pkgs/development/python-modules/exrex/default.nix index ab54bd684f6fd..f874d3bc3e923 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/extractcode/7z.nix b/pkgs/development/python-modules/extractcode/7z.nix index bc1ae9e07ab99..ba60a3c175671 100644 --- a/pkgs/development/python-modules/extractcode/7z.nix +++ b/pkgs/development/python-modules/extractcode/7z.nix @@ -36,14 +36,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "extractcode_7z" ]; - meta = with lib; { + meta = { description = "ScanCode Toolkit plugin to provide pre-built binary libraries and utilities and their locations"; homepage = "https://github.com/nexB/scancode-plugins/tree/main/builtins/extractcode_7z-linux"; - license = with licenses; [ + license = with lib.licenses; [ asl20 lgpl21 ]; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/extractcode/libarchive.nix b/pkgs/development/python-modules/extractcode/libarchive.nix index 2168fc0f3b7a5..4ee713cab6b1b 100644 --- a/pkgs/development/python-modules/extractcode/libarchive.nix +++ b/pkgs/development/python-modules/extractcode/libarchive.nix @@ -49,14 +49,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "extractcode_libarchive" ]; - meta = with lib; { + meta = { description = "ScanCode Toolkit plugin to provide pre-built binary libraries and utilities and their locations"; homepage = "https://github.com/nexB/scancode-plugins/tree/main/builtins/extractcode_libarchive-linux"; - license = with licenses; [ + license = with lib.licenses; [ asl20 bsd2 ]; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/eyed3/default.nix b/pkgs/development/python-modules/eyed3/default.nix index 7efaaa64937f0..0ea9dcc9ee5c7 100644 --- a/pkgs/development/python-modules/eyed3/default.nix +++ b/pkgs/development/python-modules/eyed3/default.nix @@ -28,13 +28,13 @@ buildPythonPackage rec { six ]; - meta = with lib; { + meta = { description = "Python module and command line program for processing ID3 tags"; mainProgram = "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 5f69dcdb47231..fdc2702fc878f 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/ezyrb/default.nix b/pkgs/development/python-modules/ezyrb/default.nix index c3506c61d2ff1..95bc22b768e61 100644 --- a/pkgs/development/python-modules/ezyrb/default.nix +++ b/pkgs/development/python-modules/ezyrb/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { "tests/test_podae.py" ]; - meta = with lib; { + meta = { description = "Easy Reduced Basis method"; homepage = "https://mathlab.github.io/EZyRB/"; downloadPage = "https://github.com/mathLab/EZyRB/releases"; - license = licenses.mit; - maintainers = with maintainers; [ yl3dy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ yl3dy ]; }; } diff --git a/pkgs/development/python-modules/f5-icontrol-rest/default.nix b/pkgs/development/python-modules/f5-icontrol-rest/default.nix index a6e342fb14cae..eb3623fc7d0d0 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 304f1daabbfbd..954ff1aba1a80 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/face-recognition/default.nix b/pkgs/development/python-modules/face-recognition/default.nix index 6385b51b936c7..a2e20bf519641 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 cc7dbe6481ada..40eb6ad5bbe27 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 f3889cc5faa9a..f3535d0170d68 100644 --- a/pkgs/development/python-modules/face/default.nix +++ b/pkgs/development/python-modules/face/default.nix @@ -33,14 +33,14 @@ buildPythonPackage rec { "test_search_prs_basic" ]; - 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/fairseq/default.nix b/pkgs/development/python-modules/fairseq/default.nix index d68c8c2ebbc3f..e1f2795ad0bf1 100644 --- a/pkgs/development/python-modules/fairseq/default.nix +++ b/pkgs/development/python-modules/fairseq/default.nix @@ -113,12 +113,12 @@ 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 ]; }; } diff --git a/pkgs/development/python-modules/faker/default.nix b/pkgs/development/python-modules/faker/default.nix index 504589a33ca3d..fb6a838586f86 100644 --- a/pkgs/development/python-modules/faker/default.nix +++ b/pkgs/development/python-modules/faker/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pytestFlagsArray = [ "--ignore=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/farama-notifications/default.nix b/pkgs/development/python-modules/farama-notifications/default.nix index c04c3a50a584d..944c14219a5a2 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/fastcache/default.nix b/pkgs/development/python-modules/fastcache/default.nix index ac411b4c06255..b53dfd21c9e52 100644 --- a/pkgs/development/python-modules/fastcache/default.nix +++ b/pkgs/development/python-modules/fastcache/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest ]; - meta = with lib; { + meta = { description = "C implementation of Python3 lru_cache for Python 2 and 3"; homepage = "https://github.com/pbrady/fastcache"; - license = licenses.mit; - maintainers = [ maintainers.bhipple ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.bhipple ]; }; } diff --git a/pkgs/development/python-modules/fastdiff/default.nix b/pkgs/development/python-modules/fastdiff/default.nix index 4b906c6d6c1dc..d430fe3e79568 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 363230edcf816..ac32358a64e80 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 09c03c5b433c5..fa17090e7f03f 100644 --- a/pkgs/development/python-modules/fastdtw/default.nix +++ b/pkgs/development/python-modules/fastdtw/default.nix @@ -49,14 +49,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; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/fastentrypoints/default.nix b/pkgs/development/python-modules/fastentrypoints/default.nix index 1c6de8a70c8d9..44e9fe52cc4a1 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/fastimport/default.nix b/pkgs/development/python-modules/fastimport/default.nix index 93ce891c7d958..fb1fa6bfe1948 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 4b518e5f8ef1d..2e2d6b70c028a 100644 --- a/pkgs/development/python-modules/fastjsonschema/default.nix +++ b/pkgs/development/python-modules/fastjsonschema/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fastjsonschema" ]; - meta = with lib; { + meta = { description = "JSON schema validator for Python"; homepage = "https://horejsek.github.io/python-fastjsonschema/"; - license = licenses.bsd3; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/fastpbkdf2/default.nix b/pkgs/development/python-modules/fastpbkdf2/default.nix index 2d6d68a3842d0..c81240a916cc4 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 576a9784a0558..374b62262c29c 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 27e505a24641c..f0c303cf35963 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 0c9dba55328ed..db8a1477168a6 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 11d5ef13a2488..e57bcae274706 100644 --- a/pkgs/development/python-modules/fasttext/default.nix +++ b/pkgs/development/python-modules/fasttext/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { 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/fe25519/default.nix b/pkgs/development/python-modules/fe25519/default.nix index a19efc6be1c69..b8c63913c0307 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 0858653d8f16a..60eaf2b06f647 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 e6b7866b0cd0d..d1562d73e2e4b 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 725150b18fb63..1dd2e1c1a3d12 100644 --- a/pkgs/development/python-modules/feedgenerator/default.nix +++ b/pkgs/development/python-modules/feedgenerator/default.nix @@ -37,10 +37,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 3d1bd3f4ee3ba..a25405d070b70 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/ffmpy/default.nix b/pkgs/development/python-modules/ffmpy/default.nix index 4d34d64595c3d..fbe376470639f 100644 --- a/pkgs/development/python-modules/ffmpy/default.nix +++ b/pkgs/development/python-modules/ffmpy/default.nix @@ -58,10 +58,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/fiblary3-fork/default.nix b/pkgs/development/python-modules/fiblary3-fork/default.nix index ab971979d692b..c4c2d3610b3cf 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/fields/default.nix b/pkgs/development/python-modules/fields/default.nix index de8a7250da958..fa15f987657e6 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/filebrowser-safe/default.nix b/pkgs/development/python-modules/filebrowser-safe/default.nix index 6e9d84b1763ed..2dcfa494db2ac 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 edfe2556fa748..332ec50596b7b 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/filetype/default.nix b/pkgs/development/python-modules/filetype/default.nix index 99292c8668cd2..035b7a9d19b6b 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 9522b0c4c27e3..11c103e5a0406 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 2452a6cbf07de..f39e7e7970a53 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/fingerprints/default.nix b/pkgs/development/python-modules/fingerprints/default.nix index 6b3bf80810f67..5eb918e824906 100644 --- a/pkgs/development/python-modules/fingerprints/default.nix +++ b/pkgs/development/python-modules/fingerprints/default.nix @@ -30,10 +30,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 e51e05d1d3b20..419129ce3cf77 100644 --- a/pkgs/development/python-modules/fints/default.nix +++ b/pkgs/development/python-modules/fints/default.nix @@ -44,11 +44,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/firetv/default.nix b/pkgs/development/python-modules/firetv/default.nix index baba36b127aad..882b86fcb7564 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/fitbit/default.nix b/pkgs/development/python-modules/fitbit/default.nix index f53eba81b2ea1..6e7d641330d55 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 747509a838680..8dec6744a4d09 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 5501817652631..a838794e94583 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/flake8-blind-except/default.nix b/pkgs/development/python-modules/flake8-blind-except/default.nix index b3fe8f160cb84..299aff0a837ba 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-class-newline/default.nix b/pkgs/development/python-modules/flake8-class-newline/default.nix index 8e1b66d224220..e3e4df02fca3d 100644 --- a/pkgs/development/python-modules/flake8-class-newline/default.nix +++ b/pkgs/development/python-modules/flake8-class-newline/default.nix @@ -24,10 +24,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 aa7e23ecd8df3..170b0e2a46dff 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-deprecated/default.nix b/pkgs/development/python-modules/flake8-deprecated/default.nix index df28a68cc4676..b2c923089c561 100644 --- a/pkgs/development/python-modules/flake8-deprecated/default.nix +++ b/pkgs/development/python-modules/flake8-deprecated/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flake8_deprecated" ]; - meta = with lib; { + meta = { description = "Flake8 plugin that warns about deprecated method calls"; homepage = "https://github.com/gforcada/flake8-deprecated"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ lopsided98 ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ lopsided98 ]; }; } diff --git a/pkgs/development/python-modules/flake8-future-import/default.nix b/pkgs/development/python-modules/flake8-future-import/default.nix index abefdde0ab471..2fd7b83b7ccb2 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-polyfill/default.nix b/pkgs/development/python-modules/flake8-polyfill/default.nix index faf3c0bdb030f..985cd74f7b84b 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/flametree/default.nix b/pkgs/development/python-modules/flametree/default.nix index e3026ed58e43d..3ef45d3fe8a7c 100644 --- a/pkgs/development/python-modules/flametree/default.nix +++ b/pkgs/development/python-modules/flametree/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flametree" ]; - meta = with lib; { + meta = { description = "Python file and zip operations made easy"; homepage = "https://github.com/Edinburgh-Genome-Foundry/Flametree"; - 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 7d52055c8956b..a6ceeabbbaf0b 100644 --- a/pkgs/development/python-modules/flasgger/default.nix +++ b/pkgs/development/python-modules/flasgger/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { doCheck = false; # missing flex dependency - 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 7988af840628a..89d4bf3cf8b3b 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-allowed-hosts/default.nix b/pkgs/development/python-modules/flask-allowed-hosts/default.nix index f621ee2b81fc4..c7796046e595a 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-bcrypt/default.nix b/pkgs/development/python-modules/flask-bcrypt/default.nix index da98864cf818a..16b3c1875e883 100644 --- a/pkgs/development/python-modules/flask-bcrypt/default.nix +++ b/pkgs/development/python-modules/flask-bcrypt/default.nix @@ -28,10 +28,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-dramatiq/default.nix b/pkgs/development/python-modules/flask-dramatiq/default.nix index df943b1d8ed10..4a01fff680d5b 100644 --- a/pkgs/development/python-modules/flask-dramatiq/default.nix +++ b/pkgs/development/python-modules/flask-dramatiq/default.nix @@ -77,10 +77,10 @@ buildPythonPackage { "test_other" ]; - 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 6697a9f714ef6..8eab6c0ffef7f 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 a0598642d4971..842d5055b2559 100644 --- a/pkgs/development/python-modules/flask-expects-json/default.nix +++ b/pkgs/development/python-modules/flask-expects-json/default.nix @@ -41,10 +41,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 81a29a3c56fab..bf5deaa021860 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-migrate/default.nix b/pkgs/development/python-modules/flask-migrate/default.nix index ce86363095f17..592e74804cdd0 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-openid/default.nix b/pkgs/development/python-modules/flask-openid/default.nix index 6fbcb0b29c8d7..1da3ab9313cb6 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-paranoid/default.nix b/pkgs/development/python-modules/flask-paranoid/default.nix index 0e4d49127ae95..cc0a69e653042 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 e812fa5b23d4c..b95c743c00d44 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 { pytestFlagsArray = [ "test_principal.py" ]; - meta = with lib; { + meta = { homepage = "http://packages.python.org/Flask-Principal/"; description = "Identity management for flask"; - license = licenses.mit; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/flask-restful/default.nix b/pkgs/development/python-modules/flask-restful/default.nix index 5b25b9fc610e3..8a52305efc830 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-script/default.nix b/pkgs/development/python-modules/flask-script/default.nix index 3a7a8693385ee..665848e111958 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/flask-simpleldap/default.nix b/pkgs/development/python-modules/flask-simpleldap/default.nix index 968571ac8463f..47dc05c7ba705 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 bb5f82925cfb1..9ca0ac2fcc05f 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-swagger-ui/default.nix b/pkgs/development/python-modules/flask-swagger-ui/default.nix index b8fbada07ee9f..056a08df7a1e3 100644 --- a/pkgs/development/python-modules/flask-swagger-ui/default.nix +++ b/pkgs/development/python-modules/flask-swagger-ui/default.nix @@ -19,10 +19,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 e71d148cb4652..fe84a12912df4 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 ba46319e52106..522f939ab2e65 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 07d410fa1b17d..fb7a3206bf7d6 100644 --- a/pkgs/development/python-modules/flask-testing/default.nix +++ b/pkgs/development/python-modules/flask-testing/default.nix @@ -48,10 +48,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-themes2/default.nix b/pkgs/development/python-modules/flask-themes2/default.nix index 745e1e91655eb..4f2159a7bf629 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/flatdict/default.nix b/pkgs/development/python-modules/flatdict/default.nix index d0aacabfbbca1..f94164e28b263 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 9f50f2c7dab92..a6a02d34d535a 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 4f178a836c22f..40fa9f55e88bd 100644 --- a/pkgs/development/python-modules/fleep/default.nix +++ b/pkgs/development/python-modules/fleep/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { 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/flexmock/default.nix b/pkgs/development/python-modules/flexmock/default.nix index 5088c3bcd605c..f9ca001a631dd 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/flit-gettext/default.nix b/pkgs/development/python-modules/flit-gettext/default.nix index 311861da7f711..0337b5f903542 100644 --- a/pkgs/development/python-modules/flit-gettext/default.nix +++ b/pkgs/development/python-modules/flit-gettext/default.nix @@ -70,10 +70,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 0592be831f6d8..0db910d95f703 100644 --- a/pkgs/development/python-modules/flit-scm/default.nix +++ b/pkgs/development/python-modules/flit-scm/default.nix @@ -34,10 +34,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/floret/default.nix b/pkgs/development/python-modules/floret/default.nix index 639f7072c1ec5..378accc082a58 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/flower/default.nix b/pkgs/development/python-modules/flower/default.nix index 6999a333f284c..f41a0833be25f 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 fb46314afab79..2c22d5641578e 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 0e56a17c3a73a..4a098ce568ab6 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/flyingsquid/default.nix b/pkgs/development/python-modules/flyingsquid/default.nix index 2fe656646db35..636661f17388a 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/fn/default.nix b/pkgs/development/python-modules/fn/default.nix index 186937474c9fa..5c41ba018527e 100644 --- a/pkgs/development/python-modules/fn/default.nix +++ b/pkgs/development/python-modules/fn/default.nix @@ -28,12 +28,12 @@ buildPythonPackage rec { }) ]; - meta = with lib; { + meta = { description = '' Functional programming in Python: implementation of missing features to enjoy FP ''; homepage = "https://github.com/kachayev/fn.py"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/fnvhash/default.nix b/pkgs/development/python-modules/fnvhash/default.nix index 76ec4ed770b43..7856e70489a2c 100644 --- a/pkgs/development/python-modules/fnvhash/default.nix +++ b/pkgs/development/python-modules/fnvhash/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fnvhash" ]; - meta = with lib; { + meta = { 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 945f77698ef71..701c8e6016a3d 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 ebdf6c247cfcf..5faebbf181a34 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/fontfeatures/default.nix b/pkgs/development/python-modules/fontfeatures/default.nix index 11943c36e05bc..0aa8f43aeaed4 100644 --- a/pkgs/development/python-modules/fontfeatures/default.nix +++ b/pkgs/development/python-modules/fontfeatures/default.nix @@ -39,10 +39,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/fontpens/default.nix b/pkgs/development/python-modules/fontpens/default.nix index 4267c72351270..9bce3e2f6cfec 100644 --- a/pkgs/development/python-modules/fontpens/default.nix +++ b/pkgs/development/python-modules/fontpens/default.nix @@ -41,10 +41,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/foobot-async/default.nix b/pkgs/development/python-modules/foobot-async/default.nix index dd12bd185a95f..f146d562f4bd6 100644 --- a/pkgs/development/python-modules/foobot-async/default.nix +++ b/pkgs/development/python-modules/foobot-async/default.nix @@ -37,10 +37,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 3cf3b2beb1b8b..ad400befefa6a 100644 --- a/pkgs/development/python-modules/foolscap/default.nix +++ b/pkgs/development/python-modules/foolscap/default.nix @@ -54,7 +54,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 @@ -62,7 +62,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/fordpass/default.nix b/pkgs/development/python-modules/fordpass/default.nix index 0a7d9f68e6ec3..b72acf5f81e3e 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/formbox/default.nix b/pkgs/development/python-modules/formbox/default.nix index a67216ebf30f2..50f3a10f7220e 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/fortiosapi/default.nix b/pkgs/development/python-modules/fortiosapi/default.nix index fce21f4c21f9d..e816d88443e40 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 8a5e4e923dfe6..d8c78c05fc684 100644 --- a/pkgs/development/python-modules/fountains/default.nix +++ b/pkgs/development/python-modules/fountains/default.nix @@ -32,10 +32,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 = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with 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 f9faef8be2bdf..c9c172e17813d 100644 --- a/pkgs/development/python-modules/foxdot/default.nix +++ b/pkgs/development/python-modules/foxdot/default.nix @@ -26,11 +26,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/fqdn/default.nix b/pkgs/development/python-modules/fqdn/default.nix index dd8f5b8d8ca8a..b9c56f6d4b921 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/freertos-gdb/default.nix b/pkgs/development/python-modules/freertos-gdb/default.nix index 5b6bc91aaf542..ab98d198460cb 100644 --- a/pkgs/development/python-modules/freertos-gdb/default.nix +++ b/pkgs/development/python-modules/freertos-gdb/default.nix @@ -16,11 +16,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/frilouz/default.nix b/pkgs/development/python-modules/frilouz/default.nix index 962c0bc458849..5fc838c2ccaba 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/frozenlist2/default.nix b/pkgs/development/python-modules/frozenlist2/default.nix index ca7ab067ea064..fbae78478ef8f 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 5372eb0b6d0c7..3c707f2a13f88 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/fschat/default.nix b/pkgs/development/python-modules/fschat/default.nix index a60a61e055fc4..ea4ceec9e434c 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 3096bb743d11c..c413e0fa9c93d 100644 --- a/pkgs/development/python-modules/fst-pso/default.nix +++ b/pkgs/development/python-modules/fst-pso/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "fstpso" ]; - meta = with lib; { + meta = { description = "Fuzzy Self-Tuning PSO global optimization library"; homepage = "https://github.com/aresio/fst-pso"; - 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/ftputil/default.nix b/pkgs/development/python-modules/ftputil/default.nix index 01ec0e9d616af..d5a6b0a68c7d7 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/func-timeout/default.nix b/pkgs/development/python-modules/func-timeout/default.nix index 33446197f52d3..836ac9b6718dc 100644 --- a/pkgs/development/python-modules/func-timeout/default.nix +++ b/pkgs/development/python-modules/func-timeout/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "func_timeout" ]; - meta = with lib; { + meta = { description = "Allows you to specify timeouts when calling any existing function. Also provides support for stoppable-threads"; homepage = "https://github.com/kata198/func_timeout"; - license = licenses.lgpl3Only; + license = lib.licenses.lgpl3Only; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/funcparserlib/default.nix b/pkgs/development/python-modules/funcparserlib/default.nix index 4c67565fd5f3c..9c0cb6e370b5d 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 bafdd58d56ce5..fc2ae9722c9a9 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 0982baa619e27..83ebc4b366fb5 100644 --- a/pkgs/development/python-modules/functiontrace/default.nix +++ b/pkgs/development/python-modules/functiontrace/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "functiontrace" ]; - meta = with lib; { + meta = { homepage = "https://functiontrace.com"; description = "Python module for Functiontrace"; - license = licenses.prosperity30; - maintainers = with maintainers; [ mathiassven ]; + license = lib.licenses.prosperity30; + maintainers = with lib.maintainers; [ mathiassven ]; }; } diff --git a/pkgs/development/python-modules/funcy/default.nix b/pkgs/development/python-modules/funcy/default.nix index 45359c9adc181..cd01fc33cc38c 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/furl/default.nix b/pkgs/development/python-modules/furl/default.nix index 8fcaeb27d04ac..0962265510ce5 100644 --- a/pkgs/development/python-modules/furl/default.nix +++ b/pkgs/development/python-modules/furl/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "furl" ]; - meta = with lib; { + meta = { description = "Python library that makes parsing and manipulating URLs easy"; homepage = "https://github.com/gruns/furl"; - license = licenses.unlicense; - maintainers = with maintainers; [ vanzef ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ vanzef ]; }; } diff --git a/pkgs/development/python-modules/fuse-python/default.nix b/pkgs/development/python-modules/fuse-python/default.nix index 092ff612b3188..5e0d22ea6655a 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 01c858c729066..34e17fb6daf2f 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-typing/default.nix b/pkgs/development/python-modules/future-typing/default.nix index 291b26c8c4522..0dcd260c118c6 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/fuzzytm/default.nix b/pkgs/development/python-modules/fuzzytm/default.nix index 3a86d0c553974..c8699c2f1edc6 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 c3681fb1da832..bd28e2afa9905 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 a3f359bad457c..7f094b1a70b1b 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 5298a51a84403..1b24d06479a55 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; - maintainers = with maintainers; [ bryanasdev000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bryanasdev000 ]; }; } diff --git a/pkgs/development/python-modules/fx2/default.nix b/pkgs/development/python-modules/fx2/default.nix index 7e99404d942a0..5f040fbb4d3cf 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/g2pkk/default.nix b/pkgs/development/python-modules/g2pkk/default.nix index 31246604cfb8e..f715e2003d133 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; - maintainers = teams.tts.members; + license = lib.licenses.asl20; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/garminconnect-aio/default.nix b/pkgs/development/python-modules/garminconnect-aio/default.nix index 362ffd393e4e6..93a3704ecba9b 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/gatt/default.nix b/pkgs/development/python-modules/gatt/default.nix index 5a928d5c79914..0535985b324e2 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 370b773c8934c..e9812033fabc7 100644 --- a/pkgs/development/python-modules/gattlib/default.nix +++ b/pkgs/development/python-modules/gattlib/default.nix @@ -58,10 +58,10 @@ buildPythonPackage { 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 233d12f3eac6c..3a55a06019ae0 100644 --- a/pkgs/development/python-modules/gb-io/default.nix +++ b/pkgs/development/python-modules/gb-io/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gb_io" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; 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/gcsa/default.nix b/pkgs/development/python-modules/gcsa/default.nix index c487881f92b45..4dc665eb1d340 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 e572a20f30f63..d35778905e3f6 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 591583510cd8c..e5210df29fb09 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 rec { 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/ge25519/default.nix b/pkgs/development/python-modules/ge25519/default.nix index d8bf085d7142a..3ce92e672225a 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/geeknote/default.nix b/pkgs/development/python-modules/geeknote/default.nix index 1aeeabd92f295..0337d1cc5865a 100644 --- a/pkgs/development/python-modules/geeknote/default.nix +++ b/pkgs/development/python-modules/geeknote/default.nix @@ -39,10 +39,10 @@ buildPythonPackage { evernote ]; - meta = with lib; { + meta = { description = "Work with Evernote from command line"; homepage = "http://www.geeknote.me"; - license = licenses.gpl1Only; - maintainers = with maintainers; [ hbunke ]; + license = lib.licenses.gpl1Only; + maintainers = with lib.maintainers; [ hbunke ]; }; } diff --git a/pkgs/development/python-modules/gehomesdk/default.nix b/pkgs/development/python-modules/gehomesdk/default.nix index 19709bf85961b..c2c447d8c75bb 100644 --- a/pkgs/development/python-modules/gehomesdk/default.nix +++ b/pkgs/development/python-modules/gehomesdk/default.nix @@ -43,12 +43,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/blob/master/CHANGELOG.md"; - 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 615be02d17858..5860396017cf4 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/gemfileparser/default.nix b/pkgs/development/python-modules/gemfileparser/default.nix index 057898dded4e0..84fae97400dbb 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/genanki/default.nix b/pkgs/development/python-modules/genanki/default.nix index 0d3371813e5db..76417631dec11 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/genie-partner-sdk/default.nix b/pkgs/development/python-modules/genie-partner-sdk/default.nix index f55cff75cd6e4..91b0fbe7e3c6b 100644 --- a/pkgs/development/python-modules/genie-partner-sdk/default.nix +++ b/pkgs/development/python-modules/genie-partner-sdk/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "genie_partner_sdk" ]; - meta = with lib; { + meta = { description = "An SDK to interact with the AladdinConnect (or OHD) partner API"; homepage = "https://github.com/Genie-Garage/aladdin-python-sdk"; - license = licenses.unfree; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ jamiemagee ]; }; } diff --git a/pkgs/development/python-modules/genome-collector/default.nix b/pkgs/development/python-modules/genome-collector/default.nix index 84f34bedd80ed..3b7e9b37259cb 100644 --- a/pkgs/development/python-modules/genome-collector/default.nix +++ b/pkgs/development/python-modules/genome-collector/default.nix @@ -26,10 +26,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 90686b3ec4704..5591dfa861bb6 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 78ee38cfa32ac..ac8fabe968fa7 100644 --- a/pkgs/development/python-modules/genshi/default.nix +++ b/pkgs/development/python-modules/genshi/default.nix @@ -25,7 +25,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 @@ -33,6 +33,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/genzshcomp/default.nix b/pkgs/development/python-modules/genzshcomp/default.nix index 58e267927773c..cb3520efdd287 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/geoarrow-c/default.nix b/pkgs/development/python-modules/geoarrow-c/default.nix index d7b0eb34909b2..cb4cd1bdb65f9 100644 --- a/pkgs/development/python-modules/geoarrow-c/default.nix +++ b/pkgs/development/python-modules/geoarrow-c/default.nix @@ -42,11 +42,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 ]; }; diff --git a/pkgs/development/python-modules/geoarrow-pandas/default.nix b/pkgs/development/python-modules/geoarrow-pandas/default.nix index 5a68d34cc8dd2..5b3698a6bd04c 100644 --- a/pkgs/development/python-modules/geoarrow-pandas/default.nix +++ b/pkgs/development/python-modules/geoarrow-pandas/default.nix @@ -41,11 +41,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 ]; }; diff --git a/pkgs/development/python-modules/geoarrow-pyarrow/default.nix b/pkgs/development/python-modules/geoarrow-pyarrow/default.nix index c06a2f6490575..8efe721c9921d 100644 --- a/pkgs/development/python-modules/geoarrow-pyarrow/default.nix +++ b/pkgs/development/python-modules/geoarrow-pyarrow/default.nix @@ -66,11 +66,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 ]; }; diff --git a/pkgs/development/python-modules/geoarrow-types/default.nix b/pkgs/development/python-modules/geoarrow-types/default.nix index e0b2fdb363875..62630d3f627a6 100644 --- a/pkgs/development/python-modules/geoarrow-types/default.nix +++ b/pkgs/development/python-modules/geoarrow-types/default.nix @@ -34,11 +34,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/geocoder/default.nix b/pkgs/development/python-modules/geocoder/default.nix index 8703ba774d461..d7518614b06a2 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 4d91f5fb8a2e9..34661b6b3c9e4 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/geometric/default.nix b/pkgs/development/python-modules/geometric/default.nix index 891012810bf82..8478eb4ce180e 100644 --- a/pkgs/development/python-modules/geometric/default.nix +++ b/pkgs/development/python-modules/geometric/default.nix @@ -43,11 +43,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/georss-generic-client/default.nix b/pkgs/development/python-modules/georss-generic-client/default.nix index d0ac06cf8122c..bc8489152f311 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-ign-sismologia-client/default.nix b/pkgs/development/python-modules/georss-ign-sismologia-client/default.nix index bacaacad9ff8b..da786834390db 100644 --- a/pkgs/development/python-modules/georss-ign-sismologia-client/default.nix +++ b/pkgs/development/python-modules/georss-ign-sismologia-client/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "georss_ign_sismologia_client" ]; - meta = with lib; { + meta = { description = "Python library for accessing the IGN Sismologia GeoRSS feed"; homepage = "https://github.com/exxamalte/python-georss-ign-sismologia-client"; changelog = "https://github.com/exxamalte/python-georss-ign-sismologia-client/blob/v0.6/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/georss-nrcan-earthquakes-client/default.nix b/pkgs/development/python-modules/georss-nrcan-earthquakes-client/default.nix index 299d78bd3c825..2b4f0a243178e 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-tfs-incidents-client/default.nix b/pkgs/development/python-modules/georss-tfs-incidents-client/default.nix index 764fc3fc92f86..fb4adec4b512d 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 d686f5049aefc..3fcb003e5ae58 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 46a226f5637d6..f08d0988126f7 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 70b2c568f6b70..c083abd42fba3 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 rec { pythonImportsCheck = [ "videoprops" ]; - meta = with lib; { + meta = { description = "Get video properties"; homepage = "https://github.com/mvasilkov/python-get-video-properties"; - license = licenses.mit; - maintainers = with maintainers; [ globin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ globin ]; }; } diff --git a/pkgs/development/python-modules/getjump/default.nix b/pkgs/development/python-modules/getjump/default.nix index 63a3d7c970f65..e18f128a30060 100644 --- a/pkgs/development/python-modules/getjump/default.nix +++ b/pkgs/development/python-modules/getjump/default.nix @@ -38,10 +38,10 @@ 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"; - 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 98863e84816a6..a4c6e406f49bb 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/gevent-socketio/default.nix b/pkgs/development/python-modules/gevent-socketio/default.nix index aa592a876e1b5..f92c3a3d3d154 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 a93c3dc6b925f..73e4d5ae449ff 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 7dd7b178fb43b..84ae34469eeda 100644 --- a/pkgs/development/python-modules/gevent/default.nix +++ b/pkgs/development/python-modules/gevent/default.nix @@ -76,11 +76,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/gfal2-util/default.nix b/pkgs/development/python-modules/gfal2-util/default.nix index 4294aa48b741c..ceddc97714bf9 100644 --- a/pkgs/development/python-modules/gfal2-util/default.nix +++ b/pkgs/development/python-modules/gfal2-util/default.nix @@ -32,11 +32,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/gguf/default.nix b/pkgs/development/python-modules/gguf/default.nix index c3cb68d64fc0a..6b099dcbbc6e8 100644 --- a/pkgs/development/python-modules/gguf/default.nix +++ b/pkgs/development/python-modules/gguf/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pyyaml ]; - meta = with lib; { + meta = { description = "Module for writing binary files in the GGUF format"; homepage = "https://ggml.ai/"; - license = licenses.mit; - maintainers = with maintainers; [ mitchmindtree ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mitchmindtree ]; }; } diff --git a/pkgs/development/python-modules/ghdiff/default.nix b/pkgs/development/python-modules/ghdiff/default.nix index 6930655869d08..f200f0e17e5cb 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 f0e3938081325..a9b02f1e9ae7a 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/gibberish-detector/default.nix b/pkgs/development/python-modules/gibberish-detector/default.nix index d03703b37e965..f7e38d903bdec 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 ac7549c9891e6..0e0b8fd122f12 100644 --- a/pkgs/development/python-modules/gidgethub/default.nix +++ b/pkgs/development/python-modules/gidgethub/default.nix @@ -48,10 +48,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 4259da579642f..02517d1d61c15 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/gistyc/default.nix b/pkgs/development/python-modules/gistyc/default.nix index e8a0631f7e1ae..5aebe56a72b2b 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; - maintainers = with maintainers; [ ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/git-annex-adapter/default.nix b/pkgs/development/python-modules/git-annex-adapter/default.nix index cd1dc62261f95..715caa0ede611 100644 --- a/pkgs/development/python-modules/git-annex-adapter/default.nix +++ b/pkgs/development/python-modules/git-annex-adapter/default.nix @@ -72,10 +72,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-sweep/default.nix b/pkgs/development/python-modules/git-sweep/default.nix index 2adc0a2c9ed02..87f4b5057edf8 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-versioner/default.nix b/pkgs/development/python-modules/git-versioner/default.nix index ed2fc5ec732ee..e05d20dad3d4d 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/github-to-sqlite/default.nix b/pkgs/development/python-modules/github-to-sqlite/default.nix index 20ca2879ae3f8..84e817b41e514 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 5f01cdb0536f1..db273c082ab5b 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/glad/default.nix b/pkgs/development/python-modules/glad/default.nix index 8c9b40345a73d..518def21d2883 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 c2eb38490cc53..1a038314f6d21 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/glcontext/default.nix b/pkgs/development/python-modules/glcontext/default.nix index 01a52597e3029..8124da832b009 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/glueviz/default.nix b/pkgs/development/python-modules/glueviz/default.nix index ea4fe11a18f5a..2600fc8e8017a 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/glyphtools/default.nix b/pkgs/development/python-modules/glyphtools/default.nix index 814c7a74d037b..df2ee43ae348f 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 2f2661700d925..62acd02f72844 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 0770f6264304d..4f03b8533867d 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 21cdfcdc594db..28e82bc5e724e 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/google-re2/default.nix b/pkgs/development/python-modules/google-re2/default.nix index dea16732f29a7..aa6c9bd4550a6 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/default.nix b/pkgs/development/python-modules/google/default.nix index 8d55893002793..8fa7a9056d180 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 1ed302a6c0908..e07ebba55be24 100644 --- a/pkgs/development/python-modules/googletrans/default.nix +++ b/pkgs/development/python-modules/googletrans/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "googletrans" ]; - meta = with lib; { + meta = { description = "Googletrans is python library to interact with Google Translate API"; mainProgram = "translate"; homepage = "https://py-googletrans.readthedocs.io"; - license = licenses.mit; - maintainers = with maintainers; [ unode ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ unode ]; }; } diff --git a/pkgs/development/python-modules/gotailwind/default.nix b/pkgs/development/python-modules/gotailwind/default.nix index b3a70580266a3..ce90484d09bc7 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/govee-led-wez/default.nix b/pkgs/development/python-modules/govee-led-wez/default.nix index 25b60113a8da7..a56205ac1c5fd 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/goveelights/default.nix b/pkgs/development/python-modules/goveelights/default.nix index f12caa93c6be3..ecf7a5cee2d80 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 ad05ba9153cc7..367fe271272ea 100644 --- a/pkgs/development/python-modules/gower/default.nix +++ b/pkgs/development/python-modules/gower/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { 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 6d7791434b8e7..a97816977e036 100644 --- a/pkgs/development/python-modules/gpaw/default.nix +++ b/pkgs/development/python-modules/gpaw/default.nix @@ -138,11 +138,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/gphoto2/default.nix b/pkgs/development/python-modules/gphoto2/default.nix index 7f1e5ce0e4764..196517fe0ca49 100644 --- a/pkgs/development/python-modules/gphoto2/default.nix +++ b/pkgs/development/python-modules/gphoto2/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "gphoto2" ]; - meta = with lib; { + meta = { description = "Python interface to libgphoto2"; homepage = "https://github.com/jim-easterbrook/python-gphoto2"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gps3/default.nix b/pkgs/development/python-modules/gps3/default.nix index 4f5cfb5d5b866..8914bf334d272 100644 --- a/pkgs/development/python-modules/gps3/default.nix +++ b/pkgs/development/python-modules/gps3/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { 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 d40d2f3c61747..e131021c67e76 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 6d12f2629793d..3cbf109911a7e 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/gpuctypes/default.nix b/pkgs/development/python-modules/gpuctypes/default.nix index f8c8f1111160d..a3ae672992df2 100644 --- a/pkgs/development/python-modules/gpuctypes/default.nix +++ b/pkgs/development/python-modules/gpuctypes/default.nix @@ -112,11 +112,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/gpxpy/default.nix b/pkgs/development/python-modules/gpxpy/default.nix index 640f2b4d6fe17..9064d3782f483 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/gpytorch/default.nix b/pkgs/development/python-modules/gpytorch/default.nix index fd81ffcf897b7..7abf5db37374b 100644 --- a/pkgs/development/python-modules/gpytorch/default.nix +++ b/pkgs/development/python-modules/gpytorch/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { "test_t_matmul_matrix" ]; - meta = with lib; { + meta = { description = "Highly efficient and modular implementation of Gaussian Processes, with GPU acceleration"; homepage = "https://gpytorch.ai"; - license = licenses.mit; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/gradient-statsd/default.nix b/pkgs/development/python-modules/gradient-statsd/default.nix index 4e6dc0f1424d4..d6333f1b0a92a 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; - maintainers = with maintainers; [ freezeboy ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ freezeboy ]; + 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 5fb7241d64318..2feeb10455992 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; - maintainers = with maintainers; [ freezeboy ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ freezeboy ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/gradient/default.nix b/pkgs/development/python-modules/gradient/default.nix index 36c3e2d82495d..6c44b3d061bd0 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/grandalf/default.nix b/pkgs/development/python-modules/grandalf/default.nix index c447d061e4a25..624f1d5ad2ef9 100644 --- a/pkgs/development/python-modules/grandalf/default.nix +++ b/pkgs/development/python-modules/grandalf/default.nix @@ -33,10 +33,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 d16224cca557f..d04ef9855cb44 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/graphite-web/default.nix b/pkgs/development/python-modules/graphite-web/default.nix index cda30828836dd..0279f641ef132 100644 --- a/pkgs/development/python-modules/graphite-web/default.nix +++ b/pkgs/development/python-modules/graphite-web/default.nix @@ -99,11 +99,11 @@ buildPythonPackage rec { inherit (nixosTests) graphite; }; - meta = with lib; { + meta = { description = "Enterprise scalable realtime graphing"; homepage = "http://graphiteapp.org/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ offline basvandijk ]; diff --git a/pkgs/development/python-modules/graphlib-backport/default.nix b/pkgs/development/python-modules/graphlib-backport/default.nix index 7f91976b4c21d..7089d0817aa29 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-relay/default.nix b/pkgs/development/python-modules/graphql-relay/default.nix index 1d53dc62587d9..1ad177300de7b 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 7d19247c2a34b..ef778bc3c0d35 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 cf10cb27b8410..ebef5856e4a60 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 34d7889513dbc..e0c85fbd3751a 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/graspologic-native/default.nix b/pkgs/development/python-modules/graspologic-native/default.nix index c0928551c287a..dee8820252226 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/greek-accentuation/default.nix b/pkgs/development/python-modules/greek-accentuation/default.nix index a40448f569a9b..9e4dce8fe1f1d 100644 --- a/pkgs/development/python-modules/greek-accentuation/default.nix +++ b/pkgs/development/python-modules/greek-accentuation/default.nix @@ -10,10 +10,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 6e0e4af49b7ea..85c4dcc9f7d9c 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/gremlinpython/default.nix b/pkgs/development/python-modules/gremlinpython/default.nix index dce3effc7cb15..c93253d4266e0 100644 --- a/pkgs/development/python-modules/gremlinpython/default.nix +++ b/pkgs/development/python-modules/gremlinpython/default.nix @@ -91,10 +91,10 @@ buildPythonPackage rec { "-k 'not ((TestFunctionalGraphSONIO and (test_timestamp or test_datetime or test_uuid)) or ${fullDisabled})'" ]; - meta = with lib; { + meta = { 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 a442a6e5d727a..ee8bd9fdaed36 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/grip/default.nix b/pkgs/development/python-modules/grip/default.nix index f29e44d2f440d..1a689426877dc 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 369b7a93b148d..76cde83ddfd83 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/grpcio-channelz/default.nix b/pkgs/development/python-modules/grpcio-channelz/default.nix index 8a1517b6b9795..d966aae52c41c 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 74c2d76f6c4ae..3e42ab42f171f 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 75249187dab7e..2e47dbc66c5ab 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 eb6ba8dcbd475..06c88b54b0313 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 2dec36e979fa7..bb8eb22f60397 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 cf121cce3e6c6..5fe5bbd497a42 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 29e206098294f..2a7c701f96341 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/gruut-ipa/default.nix b/pkgs/development/python-modules/gruut-ipa/default.nix index 5ebc3f1f33612..bf4941fd5da43 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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/gruut/default.nix b/pkgs/development/python-modules/gruut/default.nix index ce857f5749825..550c0c64356b7 100644 --- a/pkgs/development/python-modules/gruut/default.nix +++ b/pkgs/development/python-modules/gruut/default.nix @@ -110,11 +110,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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/gruut/language-pack.nix b/pkgs/development/python-modules/gruut/language-pack.nix index b3a9e58287786..99a822247fc2a 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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/gsm0338/default.nix b/pkgs/development/python-modules/gsm0338/default.nix index e6153f48a58fc..6a3e142a6ce30 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/gssapi/default.nix b/pkgs/development/python-modules/gssapi/default.nix index 56744993471d7..2ebeb72590d4f 100644 --- a/pkgs/development/python-modules/gssapi/default.nix +++ b/pkgs/development/python-modules/gssapi/default.nix @@ -75,9 +75,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/gst-python/default.nix b/pkgs/development/python-modules/gst-python/default.nix index 8b744206d1481..e2b55e3ebe5cf 100644 --- a/pkgs/development/python-modules/gst-python/default.nix +++ b/pkgs/development/python-modules/gst-python/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { # https://github.com/NixOS/nixpkgs/issues/47390 installCheckPhase = "meson test --print-errorlogs"; - meta = with lib; { + meta = { homepage = "https://gstreamer.freedesktop.org"; description = "Python bindings for GStreamer"; - license = licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gtfs-realtime-bindings/default.nix b/pkgs/development/python-modules/gtfs-realtime-bindings/default.nix index 50979a36d10aa..3e829f12fedf8 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/gtts-token/default.nix b/pkgs/development/python-modules/gtts-token/default.nix index a747522827ca8..c4e128042b325 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/gtts/default.nix b/pkgs/development/python-modules/gtts/default.nix index 36b3f6835d751..137d372e46d20 100644 --- a/pkgs/development/python-modules/gtts/default.nix +++ b/pkgs/development/python-modules/gtts/default.nix @@ -53,12 +53,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "gtts" ]; - meta = with lib; { + meta = { description = "Python library and CLI tool to interface with Google Translate text-to-speech API"; mainProgram = "gtts-cli"; homepage = "https://gtts.readthedocs.io"; changelog = "https://gtts.readthedocs.io/en/latest/changelog.html"; - license = licenses.mit; - maintainers = with maintainers; [ unode ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ unode ]; }; } diff --git a/pkgs/development/python-modules/guestfs/default.nix b/pkgs/development/python-modules/guestfs/default.nix index 8c10cb697ef5d..ddbdb0e4c24ba 100644 --- a/pkgs/development/python-modules/guestfs/default.nix +++ b/pkgs/development/python-modules/guestfs/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "guestfs" ]; - meta = with lib; { + meta = { homepage = "https://libguestfs.org/guestfs-python.3.html"; description = "Use libguestfs from Python"; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ grahamc ]; + license = lib.licenses.lgpl2Plus; + maintainers = with lib.maintainers; [ grahamc ]; inherit (libguestfs.meta) platforms; }; } diff --git a/pkgs/development/python-modules/guppy3/default.nix b/pkgs/development/python-modules/guppy3/default.nix index 7a4ea114b931b..a77277a3d3737 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 59fdf748e2ca3..8517cf74d1fef 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 72e1692aa851e..47fdc10c23a88 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/gym-notices/default.nix b/pkgs/development/python-modules/gym-notices/default.nix index 0a4e2bd4089cc..26c7977a18470 100644 --- a/pkgs/development/python-modules/gym-notices/default.nix +++ b/pkgs/development/python-modules/gym-notices/default.nix @@ -16,10 +16,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/gym/default.nix b/pkgs/development/python-modules/gym/default.nix index a2951074a1227..d55e029e98803 100644 --- a/pkgs/development/python-modules/gym/default.nix +++ b/pkgs/development/python-modules/gym/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "gym" ]; - meta = with lib; { + meta = { description = "Toolkit for developing and comparing your reinforcement learning agents"; homepage = "https://www.gymlibrary.dev/"; - license = licenses.mit; - maintainers = with maintainers; [ hyphon81 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hyphon81 ]; }; } diff --git a/pkgs/development/python-modules/gyp/default.nix b/pkgs/development/python-modules/gyp/default.nix index b8d52cd944c49..ec6aa186a91ab 100644 --- a/pkgs/development/python-modules/gyp/default.nix +++ b/pkgs/development/python-modules/gyp/default.nix @@ -36,11 +36,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; - maintainers = with maintainers; [ codyopel ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ codyopel ]; }; } diff --git a/pkgs/development/python-modules/h11/default.nix b/pkgs/development/python-modules/h11/default.nix index a7e4271006d77..a4d03e979fc32 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 3666c7db9e648..77f9ef1907002 100644 --- a/pkgs/development/python-modules/h2/default.nix +++ b/pkgs/development/python-modules/h2/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { "h2.config" ]; - meta = with lib; { + meta = { 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/h3/default.nix b/pkgs/development/python-modules/h3/default.nix index b7063384d0b1f..c8486f7934188 100644 --- a/pkgs/development/python-modules/h3/default.nix +++ b/pkgs/development/python-modules/h3/default.nix @@ -67,10 +67,10 @@ buildPythonPackage rec { # Extra check to make sure we can import it from Python pythonImportsCheck = [ "h3" ]; - meta = with lib; { + meta = { homepage = "https://github.com/uber/h3-py"; description = "Hierarchical hexagonal geospatial indexing system"; - license = licenses.asl20; - maintainers = [ maintainers.kalbasit ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.kalbasit ]; }; } diff --git a/pkgs/development/python-modules/habitipy/default.nix b/pkgs/development/python-modules/habitipy/default.nix index 4362bffcf5754..6846b629a29b4 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/hacking/default.nix b/pkgs/development/python-modules/hacking/default.nix index 02690ec7b936f..e68af363534d7 100644 --- a/pkgs/development/python-modules/hacking/default.nix +++ b/pkgs/development/python-modules/hacking/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hacking" ]; - meta = with lib; { + meta = { description = "OpenStack Hacking Guideline Enforcement"; homepage = "https://github.com/openstack/hacking"; - license = licenses.asl20; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/hakuin/default.nix b/pkgs/development/python-modules/hakuin/default.nix index 6176641ed96ee..4f9ba766166e8 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 a2372b73eb4cc..baf4cad0a0c3e 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/handout/default.nix b/pkgs/development/python-modules/handout/default.nix index 975e3003ba59f..74560b630e9df 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/hatch-fancy-pypi-readme/default.nix b/pkgs/development/python-modules/hatch-fancy-pypi-readme/default.nix index 2c96dd85be1ec..a528b4047788e 100644 --- a/pkgs/development/python-modules/hatch-fancy-pypi-readme/default.nix +++ b/pkgs/development/python-modules/hatch-fancy-pypi-readme/default.nix @@ -43,11 +43,11 @@ 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; - maintainers = with maintainers; [ tjni ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tjni ]; }; } diff --git a/pkgs/development/python-modules/hatch-nodejs-version/default.nix b/pkgs/development/python-modules/hatch-nodejs-version/default.nix index 376f3f1390a2d..7bfa42b90eef7 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 6e4d0c500b45e..13a3e95147366 100644 --- a/pkgs/development/python-modules/hatch-odoo/default.nix +++ b/pkgs/development/python-modules/hatch-odoo/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { tomli ]; - meta = with lib; { + meta = { description = "A 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 451455b6d4c27..673dd0853aa60 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/hawkauthlib/default.nix b/pkgs/development/python-modules/hawkauthlib/default.nix index 757ee10a22f5f..d65a106325853 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/hdbscan/default.nix b/pkgs/development/python-modules/hdbscan/default.nix index 31b060c56d548..0f5a873e52b30 100644 --- a/pkgs/development/python-modules/hdbscan/default.nix +++ b/pkgs/development/python-modules/hdbscan/default.nix @@ -51,9 +51,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "hdbscan" ]; - meta = with lib; { + meta = { description = "Hierarchical Density-Based Spatial Clustering of Applications with Noise, a clustering algorithm with a scikit-learn compatible API"; homepage = "https://github.com/scikit-learn-contrib/hdbscan"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/hdf5plugin/default.nix b/pkgs/development/python-modules/hdf5plugin/default.nix index a5d53bd09420d..5310e1ef08bcb 100644 --- a/pkgs/development/python-modules/hdf5plugin/default.nix +++ b/pkgs/development/python-modules/hdf5plugin/default.nix @@ -35,14 +35,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/hdmedians/default.nix b/pkgs/development/python-modules/hdmedians/default.nix index 0b175669db515..558755bbfcb6c 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/heapdict/default.nix b/pkgs/development/python-modules/heapdict/default.nix index e2a7aa3ed44c9..d1ec6c21d33ce 100644 --- a/pkgs/development/python-modules/heapdict/default.nix +++ b/pkgs/development/python-modules/heapdict/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { doCheck = !isPy3k; - meta = with lib; { + meta = { description = "Heap with decrease-key and increase-key operations"; homepage = "http://stutzbachenterprises.com"; - 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 02ffbeb7183a4..908777cd43ab2 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/help2man/default.nix b/pkgs/development/python-modules/help2man/default.nix index df9398fcb265d..e71022e17b860 100644 --- a/pkgs/development/python-modules/help2man/default.nix +++ b/pkgs/development/python-modules/help2man/default.nix @@ -37,11 +37,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 930d743b7bf00..6c05b7b095b72 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/hetzner/default.nix b/pkgs/development/python-modules/hetzner/default.nix index fd4eb8496ce94..5928044498011 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/hexdump/default.nix b/pkgs/development/python-modules/hexdump/default.nix index 0a2c57ab7bbbf..1009169bd5b72 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 37869ffad3e3e..b5ac581d95f85 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 be96f45368ac2..e6c9e0bc7097b 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 rec { $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 rec { 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 ddd303bcbea1f..dfa9ce0f2f752 100644 --- a/pkgs/development/python-modules/hg-evolve/default.nix +++ b/pkgs/development/python-modules/hg-evolve/default.nix @@ -50,13 +50,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 ea51b918130ff..d74e2f3b57fac 100644 --- a/pkgs/development/python-modules/hg-git/default.nix +++ b/pkgs/development/python-modules/hg-git/default.nix @@ -34,10 +34,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/hid-parser/default.nix b/pkgs/development/python-modules/hid-parser/default.nix index 1106accebf073..445b5e271ea67 100644 --- a/pkgs/development/python-modules/hid-parser/default.nix +++ b/pkgs/development/python-modules/hid-parser/default.nix @@ -26,10 +26,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 f8d0535409a59..ef7d2cdbe86a3 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 ]; - maintainers = with maintainers; [ ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/hidapi/default.nix b/pkgs/development/python-modules/hidapi/default.nix index 5c1fdda9484fd..d259f7760d09c 100644 --- a/pkgs/development/python-modules/hidapi/default.nix +++ b/pkgs/development/python-modules/hidapi/default.nix @@ -34,16 +34,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 30670a8716c25..b6ccf7d2ec264 100644 --- a/pkgs/development/python-modules/hieroglyph/default.nix +++ b/pkgs/development/python-modules/hieroglyph/default.nix @@ -23,10 +23,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 6d1847d100ddb..89b771987443e 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/hiro/default.nix b/pkgs/development/python-modules/hiro/default.nix index 7b7f7d8dbf054..1b0ca5464f995 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/histoprint/default.nix b/pkgs/development/python-modules/histoprint/default.nix index 080197e883862..21334da3b85b8 100644 --- a/pkgs/development/python-modules/histoprint/default.nix +++ b/pkgs/development/python-modules/histoprint/default.nix @@ -33,11 +33,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 20a2ea207a365..9a6f6bd7a8987 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/hkavr/default.nix b/pkgs/development/python-modules/hkavr/default.nix index c981affe092cf..74980b5dc869d 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 0dd811f5a7be5..9eaf44e3b819f 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 49a2da2686e45..89225e349534f 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 27bad37620619..e0ae6ea377d20 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/hologram/default.nix b/pkgs/development/python-modules/hologram/default.nix index c78b85deeb4ed..169367fb0f066 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 tjni ]; diff --git a/pkgs/development/python-modules/homepluscontrol/default.nix b/pkgs/development/python-modules/homepluscontrol/default.nix index 7af19f73f6fec..b9571ca6bf3f2 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 c5289c6d13594..e154237c1dae5 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 248a2f8cb258f..9adcb87f8ee84 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 defbcdeaeb8de..15827c7834866 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/hpack/default.nix b/pkgs/development/python-modules/hpack/default.nix index df23b4ec3c8ee..341287691f221 100644 --- a/pkgs/development/python-modules/hpack/default.nix +++ b/pkgs/development/python-modules/hpack/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hpack" ]; - meta = with lib; { + meta = { 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 2656b55e7f0f1..dae22d251dac6 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 39d4546ee53ea..0b56ee91e2241 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 f7efbc14e8aec..cdaf058abe3c0 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 063137b74e4d9..62e83cf392ede 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 6d4111eb616d0..61a296ed0146c 100644 --- a/pkgs/development/python-modules/hstspreload/default.nix +++ b/pkgs/development/python-modules/hstspreload/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hstspreload" ]; - meta = with lib; { + meta = { description = "Chromium HSTS Preload list as a Python package and updated daily"; 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 e61fee5d89abf..a41cd6d167f18 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-void-elements/default.nix b/pkgs/development/python-modules/html-void-elements/default.nix index 41cbefbf7adab..ce733c80b31fa 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/html5-parser/default.nix b/pkgs/development/python-modules/html5-parser/default.nix index 81fb7a5199a05..519b35561d86a 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 { pytestFlagsArray = [ "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 527e3660481b1..da131e0158895 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/htmllistparse/default.nix b/pkgs/development/python-modules/htmllistparse/default.nix index 5bd467bed3851..87c9795a8d3c1 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/htmlmin/default.nix b/pkgs/development/python-modules/htmlmin/default.nix index fd19103e41ace..a2838610a6421 100644 --- a/pkgs/development/python-modules/htmlmin/default.nix +++ b/pkgs/development/python-modules/htmlmin/default.nix @@ -16,11 +16,11 @@ buildPythonPackage rec { # Tests run fine in a normal source checkout, but not when being built by nix. doCheck = false; - meta = with lib; { + meta = { description = "Configurable HTML Minifier with safety features"; mainProgram = "htmlmin"; homepage = "https://pypi.python.org/pypi/htmlmin"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/htseq/default.nix b/pkgs/development/python-modules/htseq/default.nix index fc965bbae573d..8ab9c3f8603f0 100644 --- a/pkgs/development/python-modules/htseq/default.nix +++ b/pkgs/development/python-modules/htseq/default.nix @@ -61,9 +61,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 6428b99868f2c..cb08168227ed4 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-message-signatures/default.nix b/pkgs/development/python-modules/http-message-signatures/default.nix index 47041ff971fa3..1b3902c4d8ba0 100644 --- a/pkgs/development/python-modules/http-message-signatures/default.nix +++ b/pkgs/development/python-modules/http-message-signatures/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "http_message_signatures" ]; - meta = with lib; { + meta = { description = "Requests authentication module for HTTP Signature"; homepage = "https://github.com/pyauth/http-message-signatures"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + 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 0afeba88c0827..0d6d4b2e6364a 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 b85f773984533..de430aeb8f5d2 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 80362a801d36b..6601cd73078ce 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 ef9fe211f55c4..c28d4dfabcb56 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/httpie-ntlm/default.nix b/pkgs/development/python-modules/httpie-ntlm/default.nix index fddee51c99fcc..345df5e3ce4d3 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/httplib2/default.nix b/pkgs/development/python-modules/httplib2/default.nix index a6c3e42a5317f..41cedf3275dad 100644 --- a/pkgs/development/python-modules/httplib2/default.nix +++ b/pkgs/development/python-modules/httplib2/default.nix @@ -69,10 +69,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 0eb948bea4745..f6606a1d73818 100644 --- a/pkgs/development/python-modules/httpretty/default.nix +++ b/pkgs/development/python-modules/httpretty/default.nix @@ -38,9 +38,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 f18ee0857bfc5..dd7034304f252 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/huisbaasje-client/default.nix b/pkgs/development/python-modules/huisbaasje-client/default.nix index 65d12537cda8a..63fec881b61fa 100644 --- a/pkgs/development/python-modules/huisbaasje-client/default.nix +++ b/pkgs/development/python-modules/huisbaasje-client/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "huisbaasje.huisbaasje" ]; - meta = with lib; { + meta = { description = "Client for Huisbaasje"; homepage = "https://github.com/dennisschroer/huisbaasje-client"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/human-readable/default.nix b/pkgs/development/python-modules/human-readable/default.nix index c2dc06ddf7b60..7f7bdd035c2e9 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 8c217e3ac228b..c21d2b0dfc913 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/hupper/default.nix b/pkgs/development/python-modules/hupper/default.nix index 0c69762ec8f1e..92e0b55afe73b 100644 --- a/pkgs/development/python-modules/hupper/default.nix +++ b/pkgs/development/python-modules/hupper/default.nix @@ -30,11 +30,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 e9eb079cf518b..01466bf922335 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/hwdata/default.nix b/pkgs/development/python-modules/hwdata/default.nix index 2931839bf6c96..3470fcc40e2bc 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/hydra-core/default.nix b/pkgs/development/python-modules/hydra-core/default.nix index 0518e523d3d96..d70574fd1e392 100644 --- a/pkgs/development/python-modules/hydra-core/default.nix +++ b/pkgs/development/python-modules/hydra-core/default.nix @@ -81,10 +81,10 @@ buildPythonPackage rec { "hydra.version" ]; - meta = with lib; { + meta = { description = "Framework for configuring complex applications"; homepage = "https://hydra.cc"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/hydrawiser/default.nix b/pkgs/development/python-modules/hydrawiser/default.nix index 84ffe3bcc7e3b..d05d7f10dc591 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/hydrus-api/default.nix b/pkgs/development/python-modules/hydrus-api/default.nix index ac833579a09ef..9462b2717ad02 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/hyperframe/default.nix b/pkgs/development/python-modules/hyperframe/default.nix index e82b3b21c8b62..8fa2de51f5bf9 100644 --- a/pkgs/development/python-modules/hyperframe/default.nix +++ b/pkgs/development/python-modules/hyperframe/default.nix @@ -19,10 +19,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 6c0285e8cadd6..bb9a85fb9b3b1 100644 --- a/pkgs/development/python-modules/hyperion-py/default.nix +++ b/pkgs/development/python-modules/hyperion-py/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "hyperion" ]; - meta = with lib; { + meta = { description = "Python package for Hyperion Ambient Lighting"; homepage = "https://github.com/dermotduffy/hyperion-py"; - 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 579cfb065fa6c..f449c9673585e 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 5d3d07c92f52a..97ee1baa065b3 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; - maintainers = with maintainers; [ freezeboy ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ freezeboy ]; }; } diff --git a/pkgs/development/python-modules/hypothesis-auto/default.nix b/pkgs/development/python-modules/hypothesis-auto/default.nix index 13457576cdb4b..02c2b2babe0d3 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 fa40d34c8a826..2ac80c7fabae7 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/i-pi/default.nix b/pkgs/development/python-modules/i-pi/default.nix index 62f6bf6a91b1c..39657338f2e3a 100644 --- a/pkgs/development/python-modules/i-pi/default.nix +++ b/pkgs/development/python-modules/i-pi/default.nix @@ -51,14 +51,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 = "http://ipi-code.org/"; - platforms = platforms.linux; - maintainers = [ maintainers.sheepforce ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/development/python-modules/i2csense/default.nix b/pkgs/development/python-modules/i2csense/default.nix index 2aa74cedb2f8e..b41dd6426652c 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 b90e0aeafafef..5cd1d9346768c 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/i3ipc/default.nix b/pkgs/development/python-modules/i3ipc/default.nix index febac35bc4a45..a0cc432ec8808 100644 --- a/pkgs/development/python-modules/i3ipc/default.nix +++ b/pkgs/development/python-modules/i3ipc/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { --ignore=test/test_shutdown_event.py ''; - meta = with lib; { + meta = { description = "Improved Python library to control i3wm and sway"; homepage = "https://github.com/acrisci/i3ipc-python"; - license = licenses.bsd3; - maintainers = with maintainers; [ vanzef ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ vanzef ]; }; } diff --git a/pkgs/development/python-modules/iammeter/default.nix b/pkgs/development/python-modules/iammeter/default.nix index 4a9ba50b91ac2..3b80f6cff3651 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 2b373aa359da4..b146f948d7bd7 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 e436b599d95d1..b135c9d957b0e 100644 --- a/pkgs/development/python-modules/iaqualink/default.nix +++ b/pkgs/development/python-modules/iaqualink/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "iaqualink" ]; - meta = with lib; { + meta = { description = "Python library for Jandy iAqualink"; homepage = "https://github.com/flz/iaqualink-py"; - 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/ibis/default.nix b/pkgs/development/python-modules/ibis/default.nix index 2300af2347841..6472c907ddce4 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/icecream/default.nix b/pkgs/development/python-modules/icecream/default.nix index c93fe2f7042d1..b74b00d7b1609 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/icmplib/default.nix b/pkgs/development/python-modules/icmplib/default.nix index 1ea2b702001b0..e10cba466df6f 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/identify/default.nix b/pkgs/development/python-modules/identify/default.nix index 6c549c1d29ce8..13750355894fe 100644 --- a/pkgs/development/python-modules/identify/default.nix +++ b/pkgs/development/python-modules/identify/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "identify" ]; - meta = with lib; { + meta = { description = "File identification library for Python"; homepage = "https://github.com/chriskuehl/identify"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "identify-cli"; }; } diff --git a/pkgs/development/python-modules/idna-ssl/default.nix b/pkgs/development/python-modules/idna-ssl/default.nix index cc0c12f709993..84c89aa5258fc 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 e313d7bc71025..4d9eaa4cd7065 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 29241983c4c71..a2eca4420d48b 100644 --- a/pkgs/development/python-modules/ifconfig-parser/default.nix +++ b/pkgs/development/python-modules/ifconfig-parser/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { 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 b225756302d6c..f93a4386eedf3 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/iisignature/default.nix b/pkgs/development/python-modules/iisignature/default.nix index 8be12a0ef76f3..7d11d4cbd226a 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/ilua/default.nix b/pkgs/development/python-modules/ilua/default.nix index 4e4899ebc74d5..8294832586d8b 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 1b64799cb0af7..5c28de091af94 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; - maintainers = with maintainers; [ evils ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ evils ]; }; } diff --git a/pkgs/development/python-modules/imagecodecs-lite/default.nix b/pkgs/development/python-modules/imagecodecs-lite/default.nix index b21b80c7c6949..9a94e1587ad32 100644 --- a/pkgs/development/python-modules/imagecodecs-lite/default.nix +++ b/pkgs/development/python-modules/imagecodecs-lite/default.nix @@ -28,12 +28,12 @@ buildPythonPackage rec { pytest ''; - meta = with lib; { + meta = { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) || stdenv.hostPlatform.isDarwin; 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 280770b8a63ee..c55b05e98510e 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/imagesize/default.nix b/pkgs/development/python-modules/imagesize/default.nix index 4420190e98de3..9a4f6515023a3 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 9727da3837f65..61eea5dc7ad89 100644 --- a/pkgs/development/python-modules/imantics/default.nix +++ b/pkgs/development/python-modules/imantics/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { 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/imapclient/default.nix b/pkgs/development/python-modules/imapclient/default.nix index ca2dd7174cff4..f46f0b2f34a42 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 5df25d7ca5ee0..e0c41c575494a 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/imgsize/default.nix b/pkgs/development/python-modules/imgsize/default.nix index c368a67085d0c..a280284b81b77 100644 --- a/pkgs/development/python-modules/imgsize/default.nix +++ b/pkgs/development/python-modules/imgsize/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { sha256 = "0k24qj4i996fz7lpjrs36il6lp51rh13b0j2wip87cy5v9109m2d"; }; - meta = with lib; { + meta = { description = "Pure Python image size library"; homepage = "https://github.com/ojii/imgsize"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ twey ]; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ twey ]; }; } diff --git a/pkgs/development/python-modules/iminuit/default.nix b/pkgs/development/python-modules/iminuit/default.nix index af1a63f429513..2c9f21dfaad2e 100644 --- a/pkgs/development/python-modules/iminuit/default.nix +++ b/pkgs/development/python-modules/iminuit/default.nix @@ -46,13 +46,13 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/scikit-hep/iminuit"; 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/importlab/default.nix b/pkgs/development/python-modules/importlab/default.nix index 2341129dfec50..32b91dbca71ad 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 c4272412d0878..de2a0eedefb44 100644 --- a/pkgs/development/python-modules/importlib-metadata/default.nix +++ b/pkgs/development/python-modules/importlib-metadata/default.nix @@ -45,11 +45,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 529f03a806ead..2570b4a8be234 100644 --- a/pkgs/development/python-modules/importlib-resources/default.nix +++ b/pkgs/development/python-modules/importlib-resources/default.nix @@ -62,10 +62,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/imutils/default.nix b/pkgs/development/python-modules/imutils/default.nix index 03a1dd03a4262..8a1ec92d2d430 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/indexed-bzip2/default.nix b/pkgs/development/python-modules/indexed-bzip2/default.nix index 20205ebfc4a67..a435a5088e44d 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 8bab1b6c5f89f..4cda993d32573 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 a689a37fbbdad..8bc2993898e79 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 a2f24331a697c..e9ec298c3088d 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/iniconfig/default.nix b/pkgs/development/python-modules/iniconfig/default.nix index fcf045c944114..dd1e24ab601e3 100644 --- a/pkgs/development/python-modules/iniconfig/default.nix +++ b/pkgs/development/python-modules/iniconfig/default.nix @@ -32,10 +32,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 a03e4070326f4..98e06c3108e0f 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 3d0c93c07e271..18d922c90e485 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 6bc01c5188ff3..cf786e91e725f 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/inotify-simple/default.nix b/pkgs/development/python-modules/inotify-simple/default.nix index e5f523ffeb9ae..6bcab191c5b70 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 678e45c14d20b..5413632c92b56 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/insegel/default.nix b/pkgs/development/python-modules/insegel/default.nix index 57f87a5a7b074..3100128f5ecc6 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/intake-parquet/default.nix b/pkgs/development/python-modules/intake-parquet/default.nix index 57559af6d9a19..61694d4eedb31 100644 --- a/pkgs/development/python-modules/intake-parquet/default.nix +++ b/pkgs/development/python-modules/intake-parquet/default.nix @@ -50,10 +50,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/intensity-normalization/default.nix b/pkgs/development/python-modules/intensity-normalization/default.nix index f6c38f32cad61..90e79d608897a 100644 --- a/pkgs/development/python-modules/intensity-normalization/default.nix +++ b/pkgs/development/python-modules/intensity-normalization/default.nix @@ -61,10 +61,10 @@ buildPythonPackage rec { "intensity_normalization.util" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jcreinhold/intensity-normalization"; description = "MRI intensity normalization tools"; - maintainers = with maintainers; [ bcdarwin ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ bcdarwin ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/interegular/default.nix b/pkgs/development/python-modules/interegular/default.nix index 5e61db9b2b912..0f3e68fc80e85 100644 --- a/pkgs/development/python-modules/interegular/default.nix +++ b/pkgs/development/python-modules/interegular/default.nix @@ -14,10 +14,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 300b39b2d8021..cbcd976c56244 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 eb9511c9e70ab..ed18a50246e05 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 004138c13bdb5..8911cd044c47c 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/invisible-watermark/default.nix b/pkgs/development/python-modules/invisible-watermark/default.nix index d7ad922cf5381..c76e45716b341 100644 --- a/pkgs/development/python-modules/invisible-watermark/default.nix +++ b/pkgs/development/python-modules/invisible-watermark/default.nix @@ -92,11 +92,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "imwatermark" ]; - meta = with lib; { + meta = { description = "Library for creating and decoding invisible image watermarks"; mainProgram = "invisible-watermark"; homepage = "https://github.com/ShieldMnt/invisible-watermark"; - license = licenses.mit; - maintainers = with maintainers; [ Luflosi ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Luflosi ]; }; } diff --git a/pkgs/development/python-modules/invoke/default.nix b/pkgs/development/python-modules/invoke/default.nix index 019ebd243f2cd..be5f60fd0287c 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 0e44cad6916b1..69af367ebe3d7 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/iodata/default.nix b/pkgs/development/python-modules/iodata/default.nix index 84b6dfd0a56b4..efce764b6d4cf 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/ionhash/default.nix b/pkgs/development/python-modules/ionhash/default.nix index 8d99e24101f35..6e48e65240eef 100644 --- a/pkgs/development/python-modules/ionhash/default.nix +++ b/pkgs/development/python-modules/ionhash/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ionhash" ]; - meta = with lib; { + meta = { description = "Python implementation of Amazon Ion Hash"; homepage = "https://github.com/amzn/ion-hash-python"; - license = licenses.asl20; - maintainers = [ maintainers.terlar ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.terlar ]; broken = true; # last successful build 2023-09-28 }; } diff --git a/pkgs/development/python-modules/iotawattpy/default.nix b/pkgs/development/python-modules/iotawattpy/default.nix index d7a4be359467a..7e5448ee99179 100644 --- a/pkgs/development/python-modules/iotawattpy/default.nix +++ b/pkgs/development/python-modules/iotawattpy/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "iotawattpy" ]; - meta = with lib; { + meta = { description = "Python interface for the IoTaWatt 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/ipaddr/default.nix b/pkgs/development/python-modules/ipaddr/default.nix index f42decd345b38..5f8c0efaa8b82 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 cb2bed955849f..4fb58b541e0c0 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 9d140f2bebfa2..789fca6adb2f6 100644 --- a/pkgs/development/python-modules/ipdb/default.nix +++ b/pkgs/development/python-modules/ipdb/default.nix @@ -54,11 +54,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 263870816daba..6a1acb40595f1 100644 --- a/pkgs/development/python-modules/ipfshttpclient/default.nix +++ b/pkgs/development/python-modules/ipfshttpclient/default.nix @@ -87,11 +87,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 3ccf42e6f5dc5..e4237b30bcba5 100644 --- a/pkgs/development/python-modules/iptools/default.nix +++ b/pkgs/development/python-modules/iptools/default.nix @@ -26,9 +26,9 @@ buildPythonPackage rec { pytestFlagsArray = [ "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/ipwhl/default.nix b/pkgs/development/python-modules/ipwhl/default.nix index c7f2f621a2f69..d0ba36c9fb2ce 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/ipy/default.nix b/pkgs/development/python-modules/ipy/default.nix index 5a5876b8b2be3..3426dd4f6f9ab 100644 --- a/pkgs/development/python-modules/ipy/default.nix +++ b/pkgs/development/python-modules/ipy/default.nix @@ -23,10 +23,10 @@ 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; - maintainers = with maintainers; [ y0no ]; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ y0no ]; }; } diff --git a/pkgs/development/python-modules/ipymarkup/default.nix b/pkgs/development/python-modules/ipymarkup/default.nix index 10dccf3f262a9..18b6a3f584eda 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 3315c9af98f16..ad24290ae0f35 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/ipytablewidgets/default.nix b/pkgs/development/python-modules/ipytablewidgets/default.nix index e536861e1061b..41086f3926b6d 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 a65eac31eb3c4..24eb2c4288652 100644 --- a/pkgs/development/python-modules/ipython-sql/default.nix +++ b/pkgs/development/python-modules/ipython-sql/default.nix @@ -37,10 +37,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 f2e7585def442..4776ed6b20181 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; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/ipyvuetify/default.nix b/pkgs/development/python-modules/ipyvuetify/default.nix index 85a1b016ac062..4f16250bb54df 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; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/ipyxact/default.nix b/pkgs/development/python-modules/ipyxact/default.nix index 803ed5378cb49..b98665db22f5f 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/ircrobots/default.nix b/pkgs/development/python-modules/ircrobots/default.nix index 7fcb1280987fb..bea0ec1b690fc 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 3efe469fe093d..79eb9c1b7bb63 100644 --- a/pkgs/development/python-modules/ircstates/default.nix +++ b/pkgs/development/python-modules/ircstates/default.nix @@ -35,10 +35,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 1e2b962d0f6ae..ab8058420a017 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/iso-639/default.nix b/pkgs/development/python-modules/iso-639/default.nix index a971722a4194f..f40aadb9ef258 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/iso4217/default.nix b/pkgs/development/python-modules/iso4217/default.nix index b9d6e59ac103c..a73755c157ac8 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/isoduration/default.nix b/pkgs/development/python-modules/isoduration/default.nix index 613f21105d9bc..3ae925f24e389 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 79a5a1a002dd8..82a8cb1255f27 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 79de8ce0df387..21ab11f64341a 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 c8b0607b0244b..611819ef5467a 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/itanium-demangler/default.nix b/pkgs/development/python-modules/itanium-demangler/default.nix index 7d00cfbaebf99..242c2632a20b9 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/itemdb/default.nix b/pkgs/development/python-modules/itemdb/default.nix index d2d508b5a8f7c..43c2937396fca 100644 --- a/pkgs/development/python-modules/itemdb/default.nix +++ b/pkgs/development/python-modules/itemdb/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { sha256 = "sha256-egxQ1tGC6R5p1stYm4r05+b2HkuT+nBySTZPGqeAbSE="; }; - 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/iterm2/default.nix b/pkgs/development/python-modules/iterm2/default.nix index 9d193a2dbd647..3bc5617aea7ef 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/itunespy/default.nix b/pkgs/development/python-modules/itunespy/default.nix index 5a9b5edd6fa95..02d2a44c88870 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 a1e83de89c125..65221bf97d7c8 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 08348a6de3ab7..774845f67bf24 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 87cd4d3e022f1..1971cf8a1b777 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/janus/default.nix b/pkgs/development/python-modules/janus/default.nix index 62041277358a2..fe9f6c35d21bd 100644 --- a/pkgs/development/python-modules/janus/default.nix +++ b/pkgs/development/python-modules/janus/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { # also fails upstream: https://github.com/aio-libs/janus/pull/258 disabledTests = [ "test_format" ]; - 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 669fa12f96d55..722b7f89e7271 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-itertools/default.nix b/pkgs/development/python-modules/jaraco-itertools/default.nix index 07c1cd3385186..eaffb7919729e 100644 --- a/pkgs/development/python-modules/jaraco-itertools/default.nix +++ b/pkgs/development/python-modules/jaraco-itertools/default.nix @@ -39,9 +39,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-text/default.nix b/pkgs/development/python-modules/jaraco-text/default.nix index 06dc0fef613a5..9c4c8f907c38c 100644 --- a/pkgs/development/python-modules/jaraco-text/default.nix +++ b/pkgs/development/python-modules/jaraco-text/default.nix @@ -41,10 +41,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/javaobj-py3/default.nix b/pkgs/development/python-modules/javaobj-py3/default.nix index fecd77a50300c..72696d60e7a2d 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/javaproperties/default.nix b/pkgs/development/python-modules/javaproperties/default.nix index bd8c9085a25d8..0725768304ce4 100644 --- a/pkgs/development/python-modules/javaproperties/default.nix +++ b/pkgs/development/python-modules/javaproperties/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { disabledTestPaths = [ "test/test_propclass.py" ]; - 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/jax-jumpy/default.nix b/pkgs/development/python-modules/jax-jumpy/default.nix index 1fbda8b2cd3e0..1b22e2b4ecd0e 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/jaydebeapi/default.nix b/pkgs/development/python-modules/jaydebeapi/default.nix index 0f8b13535ca76..a8f1b072c9ee5 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/jeepney/default.nix b/pkgs/development/python-modules/jeepney/default.nix index fafcfb0df3d8c..67913f6041a5c 100644 --- a/pkgs/development/python-modules/jeepney/default.nix +++ b/pkgs/development/python-modules/jeepney/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { "jeepney.io.trio" ]; - meta = with lib; { + meta = { 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/jellyfin-apiclient-python/default.nix b/pkgs/development/python-modules/jellyfin-apiclient-python/default.nix index 2aa8ecb0cde53..2bb13dce5302d 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/jieba/default.nix b/pkgs/development/python-modules/jieba/default.nix index d6ea70b400114..0cf9ef1592acf 100644 --- a/pkgs/development/python-modules/jieba/default.nix +++ b/pkgs/development/python-modules/jieba/default.nix @@ -33,10 +33,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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/jinja2-ansible-filters/default.nix b/pkgs/development/python-modules/jinja2-ansible-filters/default.nix index 3e007d326d888..f04b19fd896e5 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-pluralize/default.nix b/pkgs/development/python-modules/jinja2-pluralize/default.nix index 5a6013e884687..d0ed378f7b85a 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 b0783c69f4ba5..397fe292664c1 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/jmespath/default.nix b/pkgs/development/python-modules/jmespath/default.nix index a01dc0b7984d3..d64699d435001 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 8ca03df1fe0f1..fea2fc9506bff 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/joserfc/default.nix b/pkgs/development/python-modules/joserfc/default.nix index 3a18b85c821e6..1e7efb9a627bf 100644 --- a/pkgs/development/python-modules/joserfc/default.nix +++ b/pkgs/development/python-modules/joserfc/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "joserfc" ]; - meta = with lib; { + meta = { 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 4fd924c47358f..a928cb6e4e092 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 83ba9855a0e23..9d2f339094a0a 100644 --- a/pkgs/development/python-modules/jproperties/default.nix +++ b/pkgs/development/python-modules/jproperties/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "jproperties" ]; - meta = with lib; { + meta = { description = "Java Property file parser and writer for Python"; mainProgram = "propconv"; homepage = "https://github.com/Tblue/python-jproperties"; - 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/jpylyzer/default.nix b/pkgs/development/python-modules/jpylyzer/default.nix index 951ce91ce43cc..d16dd0f9f661e 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/jschema-to-python/default.nix b/pkgs/development/python-modules/jschema-to-python/default.nix index 773327b85cfbd..8d4d02de48c0d 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/jsmin/default.nix b/pkgs/development/python-modules/jsmin/default.nix index 3a15b321e5cd2..aeabc3907cfa1 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 fa74eec1676a6..b3c6ddfcbbe69 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-merge-patch/default.nix b/pkgs/development/python-modules/json-merge-patch/default.nix index 8e7bce50297e2..9ae45d32a6201 100644 --- a/pkgs/development/python-modules/json-merge-patch/default.nix +++ b/pkgs/development/python-modules/json-merge-patch/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { }) ]; - 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 e9d39c3c58635..1b960d9ff83c8 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-stream-rs-tokenizer/default.nix b/pkgs/development/python-modules/json-stream-rs-tokenizer/default.nix index 8475273355210..d373222e1ce82 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 fd5f61399f189..45b91200b7ca3 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 = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with 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 ff77b545414c1..e1ec0451c1c8f 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 221c554ac6ccd..1ae2faae0bc46 100644 --- a/pkgs/development/python-modules/json5/default.nix +++ b/pkgs/development/python-modules/json5/default.nix @@ -27,11 +27,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "json5" ]; - meta = with lib; { + meta = { description = "Python implementation of the JSON5 data format"; homepage = "https://github.com/dpranke/pyjson5"; - 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/jsonfeed/default.nix b/pkgs/development/python-modules/jsonfeed/default.nix index 8cde64656acce..e6a9395fb8ef3 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/jsonfield/default.nix b/pkgs/development/python-modules/jsonfield/default.nix index bf7e67eb6207b..b8957f0473303 100644 --- a/pkgs/development/python-modules/jsonfield/default.nix +++ b/pkgs/development/python-modules/jsonfield/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ django ]; - meta = with lib; { + meta = { description = "Reusable model field that allows you to store validated JSON, automatically handling serialization to and from the database"; homepage = "https://github.com/rpkilby/jsonfield/"; - license = licenses.mit; - maintainers = with maintainers; [ mrmebelman ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mrmebelman ]; }; } diff --git a/pkgs/development/python-modules/jsonlines/default.nix b/pkgs/development/python-modules/jsonlines/default.nix index fbe7007b248f1..fda8988e9109a 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/jsonpatch/default.nix b/pkgs/development/python-modules/jsonpatch/default.nix index 9609f9b44be55..e068fd207fe34 100644 --- a/pkgs/development/python-modules/jsonpatch/default.nix +++ b/pkgs/development/python-modules/jsonpatch/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "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-rw/default.nix b/pkgs/development/python-modules/jsonpath-rw/default.nix index 7a7f07f063b4d..b2a1086fd330a 100644 --- a/pkgs/development/python-modules/jsonpath-rw/default.nix +++ b/pkgs/development/python-modules/jsonpath-rw/default.nix @@ -27,10 +27,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/jsonpath/default.nix b/pkgs/development/python-modules/jsonpath/default.nix index be1054c04df73..38bd2c7be9997 100644 --- a/pkgs/development/python-modules/jsonpath/default.nix +++ b/pkgs/development/python-modules/jsonpath/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "test/test*.py" ]; - meta = with lib; { + meta = { description = "XPath for JSON"; homepage = "https://github.com/json-path/JsonPath"; - license = licenses.mit; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mic92 ]; }; } diff --git a/pkgs/development/python-modules/jsonpickle/default.nix b/pkgs/development/python-modules/jsonpickle/default.nix index c64949de233c1..07d30d1a7dfd9 100644 --- a/pkgs/development/python-modules/jsonpickle/default.nix +++ b/pkgs/development/python-modules/jsonpickle/default.nix @@ -38,10 +38,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 5017a0da27d65..b35689eb9b381 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/jsonrpc-async/default.nix b/pkgs/development/python-modules/jsonrpc-async/default.nix index 52224a0b8dcdf..590dfb13a7533 100644 --- a/pkgs/development/python-modules/jsonrpc-async/default.nix +++ b/pkgs/development/python-modules/jsonrpc-async/default.nix @@ -37,10 +37,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 239a3e9246ef9..02041c320b922 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 6a906ed551672..cbf4d214a203d 100644 --- a/pkgs/development/python-modules/jsonrpc-websocket/default.nix +++ b/pkgs/development/python-modules/jsonrpc-websocket/default.nix @@ -45,10 +45,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/jsonrpclib-pelix/default.nix b/pkgs/development/python-modules/jsonrpclib-pelix/default.nix index 314e3433dadf2..05a58afc2b1c7 100644 --- a/pkgs/development/python-modules/jsonrpclib-pelix/default.nix +++ b/pkgs/development/python-modules/jsonrpclib-pelix/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { doCheck = false; # test_suite="tests" in setup.py but no tests in pypi. - meta = with lib; { + meta = { description = "JSON RPC client library - Pelix compatible fork"; homepage = "https://pypi.python.org/pypi/jsonrpclib-pelix/"; license = lib.licenses.asl20; diff --git a/pkgs/development/python-modules/jsonschema-specifications/default.nix b/pkgs/development/python-modules/jsonschema-specifications/default.nix index 989f5c5cb1e24..b8e4059473a68 100644 --- a/pkgs/development/python-modules/jsonschema-specifications/default.nix +++ b/pkgs/development/python-modules/jsonschema-specifications/default.nix @@ -36,10 +36,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/jsonstreams/default.nix b/pkgs/development/python-modules/jsonstreams/default.nix index 49ffcee24b82b..c5923a0d31b67 100644 --- a/pkgs/development/python-modules/jsonstreams/default.nix +++ b/pkgs/development/python-modules/jsonstreams/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pytestFlagsArray = [ "tests --doctest-modules 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 c38e847872753..73d29ceffac14 100644 --- a/pkgs/development/python-modules/jstyleson/default.nix +++ b/pkgs/development/python-modules/jstyleson/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { 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/julius/default.nix b/pkgs/development/python-modules/julius/default.nix index 5efa7622b962c..caaf0fa97f693 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 8ec89b19beb7d..0be7d60c73354 100644 --- a/pkgs/development/python-modules/junit-xml/default.nix +++ b/pkgs/development/python-modules/junit-xml/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { 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 b53bf1edcea8a..309421ee28de5 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 2ff93168391a5..1037d92f1085f 100644 --- a/pkgs/development/python-modules/junitparser/default.nix +++ b/pkgs/development/python-modules/junitparser/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { unittestFlagsArray = [ "-v" ]; - 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/jupyter-c-kernel/default.nix b/pkgs/development/python-modules/jupyter-c-kernel/default.nix index ba5b3ff85d409..1318f265992ad 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-contrib-core/default.nix b/pkgs/development/python-modules/jupyter-contrib-core/default.nix index 73d4d1a3b1439..9351c2c26e5c9 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-highlight-selected-word/default.nix b/pkgs/development/python-modules/jupyter-highlight-selected-word/default.nix index c819c33de1037..11c2dba0d0fd8 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 54ce115af8dfc..ae006a279b1be 100644 --- a/pkgs/development/python-modules/jupyter-lsp/default.nix +++ b/pkgs/development/python-modules/jupyter-lsp/default.nix @@ -23,11 +23,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 622e923d1c275..4cef067cbebd9 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-server-mathjax/default.nix b/pkgs/development/python-modules/jupyter-server-mathjax/default.nix index a3937b5d8bdb1..c91d22ea3c8d3 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/default.nix b/pkgs/development/python-modules/jupyter/default.nix index a3c9be6510592..df18444ba5b80 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/jupyterlab-lsp/default.nix b/pkgs/development/python-modules/jupyterlab-lsp/default.nix index 4f39d7fdc536e..b8e88b4223638 100644 --- a/pkgs/development/python-modules/jupyterlab-lsp/default.nix +++ b/pkgs/development/python-modules/jupyterlab-lsp/default.nix @@ -27,11 +27,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 204516e39d5a0..d7efb693bcd49 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-widgets/default.nix b/pkgs/development/python-modules/jupyterlab-widgets/default.nix index bf8b0a0141aef..87bd246f28811 100644 --- a/pkgs/development/python-modules/jupyterlab-widgets/default.nix +++ b/pkgs/development/python-modules/jupyterlab-widgets/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jupyterlab_widgets" ]; - meta = with lib; { + meta = { description = "Jupyter Widgets JupyterLab Extension"; homepage = "https://github.com/jupyter-widgets/ipywidgets"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/justbackoff/default.nix b/pkgs/development/python-modules/justbackoff/default.nix index e8c680a89d37f..bf34fa0969716 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/justbytes/default.nix b/pkgs/development/python-modules/justbytes/default.nix index cc662510a4a27..b319ae79647ed 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/jwt/default.nix b/pkgs/development/python-modules/jwt/default.nix index 2da80c7e183c1..674ffe2156f77 100644 --- a/pkgs/development/python-modules/jwt/default.nix +++ b/pkgs/development/python-modules/jwt/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jwt" ]; - meta = with lib; { + meta = { description = "JSON Web Token library for Python 3"; homepage = "https://github.com/GehirnInc/python-jwt"; - license = licenses.asl20; - maintainers = with maintainers; [ thornycrackers ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ thornycrackers ]; }; } diff --git a/pkgs/development/python-modules/jxmlease/default.nix b/pkgs/development/python-modules/jxmlease/default.nix index 3364b86686e74..8f7cf07d496d8 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 d8d0aa0c7d1a2..bd7c346355c06 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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/kaa-base/default.nix b/pkgs/development/python-modules/kaa-base/default.nix index ac4b1cf52f737..8796adcc56c6d 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 bb8fe831c2b91..5d73914528603 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 ec647cf649f7a..58d2fc80760b5 100644 --- a/pkgs/development/python-modules/kaggle/default.nix +++ b/pkgs/development/python-modules/kaggle/default.nix @@ -55,11 +55,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 24807eacdc001..ea8f2d5e71377 100644 --- a/pkgs/development/python-modules/kaitaistruct/default.nix +++ b/pkgs/development/python-modules/kaitaistruct/default.nix @@ -45,10 +45,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/kaldi-active-grammar/default.nix b/pkgs/development/python-modules/kaldi-active-grammar/default.nix index 14795b0c1268d..f61befaffeff0 100644 --- a/pkgs/development/python-modules/kaldi-active-grammar/default.nix +++ b/pkgs/development/python-modules/kaldi-active-grammar/default.nix @@ -72,12 +72,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 00d2e2802f09d..a12d8c2923e34 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 e565a00196789..1a4cf9fb7edc6 100644 --- a/pkgs/development/python-modules/kanidm/default.nix +++ b/pkgs/development/python-modules/kanidm/default.nix @@ -57,11 +57,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 c27221611b86e..7d70d70f4a707 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/kazoo/default.nix b/pkgs/development/python-modules/kazoo/default.nix index 21927ef81def0..9353902667e0f 100644 --- a/pkgs/development/python-modules/kazoo/default.nix +++ b/pkgs/development/python-modules/kazoo/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { doCheck = false; #ZOOKEEPER_PATH = "${pkgs.zookeeper}"; - 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 12c7ba6170db8..7ada78fb7c885 100644 --- a/pkgs/development/python-modules/kconfiglib/default.nix +++ b/pkgs/development/python-modules/kconfiglib/default.nix @@ -17,10 +17,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/keepalive/default.nix b/pkgs/development/python-modules/keepalive/default.nix index 1228dc78f28ee..8477c592b6336 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 df3f5444772d3..96da71f35b7d7 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 f0633a06b8389..9b63a34aa0086 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/keras-applications/default.nix b/pkgs/development/python-modules/keras-applications/default.nix index cdb3beb6a4031..ba6365f7ec572 100644 --- a/pkgs/development/python-modules/keras-applications/default.nix +++ b/pkgs/development/python-modules/keras-applications/default.nix @@ -29,9 +29,9 @@ buildPythonPackage rec { h5py ]; - meta = with lib; { + meta = { description = "Reference implementations of popular deep learning models"; homepage = "https://github.com/keras-team/keras-applications"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/keras-preprocessing/default.nix b/pkgs/development/python-modules/keras-preprocessing/default.nix index 0e9b0bf5187f2..934abafd2d308 100644 --- a/pkgs/development/python-modules/keras-preprocessing/default.nix +++ b/pkgs/development/python-modules/keras-preprocessing/default.nix @@ -41,9 +41,9 @@ buildPythonPackage rec { # Cyclic dependency: keras-preprocessing's tests require Keras, which requires keras-preprocessing doCheck = false; - meta = with lib; { + meta = { description = "Easy data preprocessing and data augmentation for deep learning models"; homepage = "https://github.com/keras-team/keras-preprocessing"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/kerberos/default.nix b/pkgs/development/python-modules/kerberos/default.nix index 8f6f8c7682e0f..2bfa064a16c43 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 7620e272ea719..c8d90c5ebf37d 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/keystone-engine/default.nix b/pkgs/development/python-modules/keystone-engine/default.nix index 4e526346dced9..b2b730e2b881d 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 2a297b2f4617d..c1f1d63a3386c 100644 --- a/pkgs/development/python-modules/keystoneauth1/default.nix +++ b/pkgs/development/python-modules/keystoneauth1/default.nix @@ -86,10 +86,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "keystoneauth1" ]; - meta = with lib; { + meta = { description = "Authentication Library for OpenStack Identity"; homepage = "https://github.com/openstack/keystoneauth"; - license = licenses.asl20; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/khanaa/default.nix b/pkgs/development/python-modules/khanaa/default.nix index 81f76091c5937..b4f31668d0792 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/kinparse/default.nix b/pkgs/development/python-modules/kinparse/default.nix index 8ddde08f68d87..dbe7ab2bbb0ab 100644 --- a/pkgs/development/python-modules/kinparse/default.nix +++ b/pkgs/development/python-modules/kinparse/default.nix @@ -28,11 +28,11 @@ buildPythonPackage { pyparsing ]; - meta = with lib; { + meta = { description = "Parser for KiCad EESCHEMA netlists"; mainProgram = "kinparse"; homepage = "https://github.com/xesscorp/kinparse"; - license = licenses.mit; - maintainers = with maintainers; [ matthuszagh ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthuszagh ]; }; } diff --git a/pkgs/development/python-modules/kiss-headers/default.nix b/pkgs/development/python-modules/kiss-headers/default.nix index 47b98e771175d..8ece8e98848aa 100644 --- a/pkgs/development/python-modules/kiss-headers/default.nix +++ b/pkgs/development/python-modules/kiss-headers/default.nix @@ -39,10 +39,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/kivy-garden/default.nix b/pkgs/development/python-modules/kivy-garden/default.nix index 34792e64d1444..da34c8dfb95f5 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/kivy/default.nix b/pkgs/development/python-modules/kivy/default.nix index 40d161bd5970c..925b227569c4a 100644 --- a/pkgs/development/python-modules/kivy/default.nix +++ b/pkgs/development/python-modules/kivy/default.nix @@ -104,10 +104,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "kivy" ]; - meta = with lib; { + meta = { description = "Library for rapid development of hardware-accelerated multitouch applications"; homepage = "https://pypi.python.org/pypi/kivy"; - license = licenses.mit; - maintainers = with maintainers; [ risson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ risson ]; }; } diff --git a/pkgs/development/python-modules/kiwisolver/default.nix b/pkgs/development/python-modules/kiwisolver/default.nix index 5496c062acde4..8758a0b0b5247 100644 --- a/pkgs/development/python-modules/kiwisolver/default.nix +++ b/pkgs/development/python-modules/kiwisolver/default.nix @@ -29,10 +29,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 c120217683c6a..0b9b5b1d40295 100644 --- a/pkgs/development/python-modules/klaus/default.nix +++ b/pkgs/development/python-modules/klaus/default.nix @@ -62,11 +62,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/kmapper/default.nix b/pkgs/development/python-modules/kmapper/default.nix index d0a1d730bbce2..a3aadd9848b8d 100644 --- a/pkgs/development/python-modules/kmapper/default.nix +++ b/pkgs/development/python-modules/kmapper/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { ipywidgets ]; - meta = with lib; { + meta = { description = "Python implementation of Mapper algorithm for Topological Data Analysis"; homepage = "https://kepler-mapper.scikit-tda.org/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/kml2geojson/default.nix b/pkgs/development/python-modules/kml2geojson/default.nix index 3b392a227aae4..67eb6c39c740d 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/kneed/default.nix b/pkgs/development/python-modules/kneed/default.nix index f94f9fe64cc7c..a065a089b1750 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/konnected/default.nix b/pkgs/development/python-modules/konnected/default.nix index e7d7055dfa7de..c2e11edc4e830 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 98c04b0e66658..c748de317a415 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/kornia-rs/default.nix b/pkgs/development/python-modules/kornia-rs/default.nix index b5311998abf94..8a55c657548cc 100644 --- a/pkgs/development/python-modules/kornia-rs/default.nix +++ b/pkgs/development/python-modules/kornia-rs/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { dontUseCmakeConfigure = true; # We only want to use CMake to build some Rust dependencies. - meta = with lib; { + meta = { homepage = "https://github.com/kornia/kornia-rs"; description = "Python bindings to Low-level Computer Vision library in Rust"; - license = licenses.asl20; - maintainers = with maintainers; [ chpatrick ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ chpatrick ]; }; } diff --git a/pkgs/development/python-modules/krfzf-py/default.nix b/pkgs/development/python-modules/krfzf-py/default.nix index d1007876591fb..fd52cdc1d7041 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/kurbopy/default.nix b/pkgs/development/python-modules/kurbopy/default.nix index 3ced53fcde020..cf9b44287c042 100644 --- a/pkgs/development/python-modules/kurbopy/default.nix +++ b/pkgs/development/python-modules/kurbopy/default.nix @@ -39,10 +39,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/labgrid/default.nix b/pkgs/development/python-modules/labgrid/default.nix index 1ae59e870c671..c932f072f7401 100644 --- a/pkgs/development/python-modules/labgrid/default.nix +++ b/pkgs/development/python-modules/labgrid/default.nix @@ -72,11 +72,11 @@ buildPythonPackage rec { "test_timing" ]; - 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 b17fe6ed06983..f3b4d7b73b4e2 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/langdetect/default.nix b/pkgs/development/python-modules/langdetect/default.nix index 5db13ad9c4db7..46e0e3fdd4627 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 8c6bd3c211a36..0430c1f55ae70 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-tags/default.nix b/pkgs/development/python-modules/language-tags/default.nix index 7bbd3f9a65abe..e25827f76dbc8 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 b4d734e5cda13..b3250697d0f6f 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/latexcodec/default.nix b/pkgs/development/python-modules/latexcodec/default.nix index c2890bf591ec2..4f2c8efdd671e 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/launchpadlib/default.nix b/pkgs/development/python-modules/launchpadlib/default.nix index 25b8f96c80d62..db6e0c9ab8e03 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 b5b8b5cdbc269..24ba4073797ca 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/lazy-object-proxy/default.nix b/pkgs/development/python-modules/lazy-object-proxy/default.nix index 33467e6f3b1e7..f86d0c63955c6 100644 --- a/pkgs/development/python-modules/lazy-object-proxy/default.nix +++ b/pkgs/development/python-modules/lazy-object-proxy/default.nix @@ -28,9 +28,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 478fe1a2f8258..944e0e529b6b6 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 554b30b9bfd02..239c8f8d7f3e0 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/ldap3/default.nix b/pkgs/development/python-modules/ldap3/default.nix index 14534ef1d15ab..2cb8abdcdb57c 100644 --- a/pkgs/development/python-modules/ldap3/default.nix +++ b/pkgs/development/python-modules/ldap3/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { doCheck = false; # requires network - meta = with lib; { + meta = { homepage = "https://pypi.python.org/pypi/ldap3"; description = "Strictly RFC 4510 conforming LDAP V3 pure Python client library"; - license = licenses.lgpl3; + license = lib.licenses.lgpl3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/ldappool/default.nix b/pkgs/development/python-modules/ldappool/default.nix index 8184d7cd433fc..2b59a76ceb617 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 ead49289a35ff..f2d8e9c3e8357 100644 --- a/pkgs/development/python-modules/ldaptor/default.nix +++ b/pkgs/development/python-modules/ldaptor/default.nix @@ -40,10 +40,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/leather/default.nix b/pkgs/development/python-modules/leather/default.nix index 6cac7476142f0..c2ea8fe968c53 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/ledger-agent/default.nix b/pkgs/development/python-modules/ledger-agent/default.nix index e514260a8a34a..02363d72279c0 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 fc22db58923b0..47ba095e1013d 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 4885fa14524e8..9b88f88964ac6 100644 --- a/pkgs/development/python-modules/ledgerblue/default.nix +++ b/pkgs/development/python-modules/ledgerblue/default.nix @@ -60,10 +60,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 b23b296385586..3243e31507a01 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 0cbc048ee6708..7008993909b63 100644 --- a/pkgs/development/python-modules/ledgerwallet/default.nix +++ b/pkgs/development/python-modules/ledgerwallet/default.nix @@ -62,12 +62,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; [ d-xo erdnaxe ]; diff --git a/pkgs/development/python-modules/leveldb/default.nix b/pkgs/development/python-modules/leveldb/default.nix index a13f11c742064..fd37ed3dcc0cb 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 3fc48bd5e914b..745687a447b49 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/libagent/default.nix b/pkgs/development/python-modules/libagent/default.nix index f46da34358920..47407b6300e77 100644 --- a/pkgs/development/python-modules/libagent/default.nix +++ b/pkgs/development/python-modules/libagent/default.nix @@ -71,10 +71,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 df31f4c53fecd..0e459a21a13db 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 4eb83031c8851..0c9ed8cfc0004 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 ce56a19501ccf..9efcda3ddd676 100644 --- a/pkgs/development/python-modules/libarcus/default.nix +++ b/pkgs/development/python-modules/libarcus/default.nix @@ -38,13 +38,13 @@ buildPythonPackage rec { sed -i 's#''${Python3_SITEARCH}#${placeholder "out"}/${python.sitePackages}#' cmake/SIPMacros.cmake ''; - meta = with lib; { + meta = { broken = true; description = "Communication library between internal components for Ultimaker software"; homepage = "https://github.com/Ultimaker/libArcus"; - license = licenses.lgpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar gebner ]; diff --git a/pkgs/development/python-modules/libasyncns/default.nix b/pkgs/development/python-modules/libasyncns/default.nix index b81e67f8f926f..aef75ced5534b 100644 --- a/pkgs/development/python-modules/libasyncns/default.nix +++ b/pkgs/development/python-modules/libasyncns/default.nix @@ -29,10 +29,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/libevdev/default.nix b/pkgs/development/python-modules/libevdev/default.nix index e7be644cdd5ae..9caf5f1f57a50 100644 --- a/pkgs/development/python-modules/libevdev/default.nix +++ b/pkgs/development/python-modules/libevdev/default.nix @@ -28,10 +28,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 8ea7089985bd3..6a1c3ca6f1d50 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/libkeepass/default.nix b/pkgs/development/python-modules/libkeepass/default.nix index 4b6faad610ecd..6d65cbcf6e2f7 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 28c9d3cfda69d..cded31963861a 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 65e4c578dff9f..e6e40f8502205 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 f88a096459eeb..9fcd18b3c2183 100644 --- a/pkgs/development/python-modules/liblzfse/default.nix +++ b/pkgs/development/python-modules/liblzfse/default.nix @@ -23,10 +23,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 5771a2d25b3f2..d2e2a043b2874 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 265bfeab5443f..7897fb31f3d1d 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/libpurecool/default.nix b/pkgs/development/python-modules/libpurecool/default.nix index 5564bb1d22a7f..48d3b74c49db2 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/libpyfoscam/default.nix b/pkgs/development/python-modules/libpyfoscam/default.nix index 5606437ffed26..41222a07e2746 100644 --- a/pkgs/development/python-modules/libpyfoscam/default.nix +++ b/pkgs/development/python-modules/libpyfoscam/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "libpyfoscam" ]; - meta = with lib; { + meta = { description = "Python Library for Foscam IP Cameras"; homepage = "https://github.com/krmarien/python-foscam"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/libpyvivotek/default.nix b/pkgs/development/python-modules/libpyvivotek/default.nix index 7320880a15390..d709d2858c317 100644 --- a/pkgs/development/python-modules/libpyvivotek/default.nix +++ b/pkgs/development/python-modules/libpyvivotek/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "libpyvivotek" ]; - meta = with lib; { + meta = { description = "Python Library for Vivotek IP Cameras"; homepage = "https://github.com/HarlemSquirrel/python-vivotek"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/libsavitar/default.nix b/pkgs/development/python-modules/libsavitar/default.nix index 5bb60e58ac866..b220626d1be7e 100644 --- a/pkgs/development/python-modules/libsavitar/default.nix +++ b/pkgs/development/python-modules/libsavitar/default.nix @@ -30,12 +30,12 @@ buildPythonPackage rec { disabled = pythonOlder "3.4.0"; - meta = with lib; { + meta = { description = "C++ implementation of 3mf loading with SIP python bindings"; homepage = "https://github.com/Ultimaker/libSavitar"; - license = licenses.lgpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ abbradar orivej gebner diff --git a/pkgs/development/python-modules/libsixel/default.nix b/pkgs/development/python-modules/libsixel/default.nix index 9046cc3f81306..54ceb2f7ca89b 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 3f9112e591392..ec2d641451328 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 f53bf2e56550c..be57e1bfabe75 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 34f6c1b7636f0..47ecb90c27fe2 100644 --- a/pkgs/development/python-modules/libusb1/default.nix +++ b/pkgs/development/python-modules/libusb1/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pytestFlagsArray = [ "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 ab099c119279b..4923a764a72dd 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 b311d6888d6c2..bf1b608d6766e 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 527cc81b75cbd..46a26eda182cb 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/lightwave/default.nix b/pkgs/development/python-modules/lightwave/default.nix index 621f413ca8859..a87da002b5caa 100644 --- a/pkgs/development/python-modules/lightwave/default.nix +++ b/pkgs/development/python-modules/lightwave/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { # Requires phyiscal 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 02ed2c6068634..d67135fd99c32 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 76a47923b7795..94452f4cfddfa 100644 --- a/pkgs/development/python-modules/lima/default.nix +++ b/pkgs/development/python-modules/lima/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Lightweight Marshalling of Python 3 Objects"; homepage = "https://github.com/b6d/lima"; - 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 4da1afdb4f881..be56992f8094c 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 ff2d2dbc87b92..08015669fb34c 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 74ddf2035eb76..9d01e3448d393 100644 --- a/pkgs/development/python-modules/limnoria/default.nix +++ b/pkgs/development/python-modules/limnoria/default.nix @@ -58,10 +58,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/linear-operator/default.nix b/pkgs/development/python-modules/linear-operator/default.nix index ffeb1d8f25de5..49bb18fdf175c 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 2d183c3ef6904..64d45ab14422d 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 51f5e5a834071..420fb1abbafdd 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/lingua/default.nix b/pkgs/development/python-modules/lingua/default.nix index d3cae940f1219..629188d4c9e67 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/linkify-it-py/default.nix b/pkgs/development/python-modules/linkify-it-py/default.nix index 6ca3fd64c9175..cf9d5755dcace 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/linode/default.nix b/pkgs/development/python-modules/linode/default.nix index ce34a64ee913d..58fffef62924a 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 d87bce2598b73..1a8f2cfcfe903 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; [ kekschen ]; 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 64c21d87f4643..bf4d5d7831da1 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/livelossplot/default.nix b/pkgs/development/python-modules/livelossplot/default.nix index 5c213fae0db54..58cf5120ef591 100644 --- a/pkgs/development/python-modules/livelossplot/default.nix +++ b/pkgs/development/python-modules/livelossplot/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Live training loss plot in Jupyter for Keras, PyTorch, and others"; homepage = "https://github.com/stared/livelossplot"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/llama-cloud/default.nix b/pkgs/development/python-modules/llama-cloud/default.nix index 533367d32d460..b766676a4fa4a 100644 --- a/pkgs/development/python-modules/llama-cloud/default.nix +++ b/pkgs/development/python-modules/llama-cloud/default.nix @@ -33,10 +33,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-agent-openai/default.nix b/pkgs/development/python-modules/llama-index-agent-openai/default.nix index 8c891aea7fcc7..3b04fbd4584bc 100644 --- a/pkgs/development/python-modules/llama-index-agent-openai/default.nix +++ b/pkgs/development/python-modules/llama-index-agent-openai/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.agent.openai" ]; - meta = with lib; { + meta = { description = "LlamaIndex Agent Integration for OpenAI"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/agent/llama-index-agent-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-cli/default.nix b/pkgs/development/python-modules/llama-index-cli/default.nix index f590810b4b911..1b4c5f583e441 100644 --- a/pkgs/development/python-modules/llama-index-cli/default.nix +++ b/pkgs/development/python-modules/llama-index-cli/default.nix @@ -37,10 +37,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-embeddings-gemini/default.nix b/pkgs/development/python-modules/llama-index-embeddings-gemini/default.nix index 78801659b53f6..f66b27aabcb82 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 da627edc9f5e0..7c0838449ad5c 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 0a48e4709d861..815966376efab 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 363b84a237e1d..337c0341bd5ad 100644 --- a/pkgs/development/python-modules/llama-index-embeddings-ollama/default.nix +++ b/pkgs/development/python-modules/llama-index-embeddings-ollama/default.nix @@ -35,10 +35,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 4040659ac664e..780b161703d19 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 9ebcbc778c634..95e88252ec41a 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 @@ -30,10 +30,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 81a888cad69cb..38843567a18ca 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 @@ -30,10 +30,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 741ce168bfdd1..0108dc246bd31 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 98ab38e96010b..ddd124efb5621 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 @@ -33,10 +33,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 06d32b341bcda..2540d25799f06 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 4cd284af9199d..38c8e9f0f5885 100644 --- a/pkgs/development/python-modules/llama-index-llms-ollama/default.nix +++ b/pkgs/development/python-modules/llama-index-llms-ollama/default.nix @@ -33,10 +33,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 d39731a4434f5..fafa4b13db1dd 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 e56cdec6c7a49..c69958caea21f 100644 --- a/pkgs/development/python-modules/llama-index-llms-openai/default.nix +++ b/pkgs/development/python-modules/llama-index-llms-openai/default.nix @@ -38,10 +38,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 535d2ef7a358c..103b406f1847e 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 @@ -33,10 +33,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-program-openai/default.nix b/pkgs/development/python-modules/llama-index-program-openai/default.nix index 6f8fea48c0939..955255a09995d 100644 --- a/pkgs/development/python-modules/llama-index-program-openai/default.nix +++ b/pkgs/development/python-modules/llama-index-program-openai/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.program.openai" ]; - meta = with lib; { + meta = { description = "LlamaIndex Program Integration for OpenAI"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/program/llama-index-program-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-question-gen-openai/default.nix b/pkgs/development/python-modules/llama-index-question-gen-openai/default.nix index 38b6e5dc85680..1ad1a9d99a977 100644 --- a/pkgs/development/python-modules/llama-index-question-gen-openai/default.nix +++ b/pkgs/development/python-modules/llama-index-question-gen-openai/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.question_gen.openai" ]; - meta = with lib; { + meta = { description = "LlamaIndex Question Gen Integration for Openai Generator"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/question_gen/llama-index-question-gen-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 45318049796f3..9b5124e19df97 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 45aa2dad93e8a..8b3653934d8b7 100644 --- a/pkgs/development/python-modules/llama-index-readers-file/default.nix +++ b/pkgs/development/python-modules/llama-index-readers-file/default.nix @@ -44,10 +44,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 f16f736469c28..85f43cd5bc1e3 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 d06fd69723ec0..eb460e588f127 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 @@ -37,10 +37,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 f7cf53876802a..f7cf5e4b848b9 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 6cc9844dcbc3c..4b4cdd0f07fee 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 4024b1c33f95f..38a36a628aa6a 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 225cfb6c75b74..81fc2a530a35e 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 8584919c8c488..0b3f0fa1db93a 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 ca7b63b1c0789..9b06ccef4f15d 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 88eea61c51f18..74f8cab098afd 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 @@ -32,10 +32,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 c4028223a15be..e2e44c7577461 100644 --- a/pkgs/development/python-modules/llama-parse/default.nix +++ b/pkgs/development/python-modules/llama-parse/default.nix @@ -26,10 +26,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 65b897bfef390..2b4d63f4bcefc 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/llmx/default.nix b/pkgs/development/python-modules/llmx/default.nix index aa1b526782dac..6366ab0f92d0d 100644 --- a/pkgs/development/python-modules/llmx/default.nix +++ b/pkgs/development/python-modules/llmx/default.nix @@ -63,11 +63,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/lmnotify/default.nix b/pkgs/development/python-modules/lmnotify/default.nix index 77876dfb21747..5d55092f81cce 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 fce22c244937e..9e50439a0a1f5 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/loca/default.nix b/pkgs/development/python-modules/loca/default.nix index 73b88dee28e92..a758b099060d0 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 c267b0c81725f..50b81a1a17bed 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; - maintainers = with maintainers; [ ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/localstack-client/default.nix b/pkgs/development/python-modules/localstack-client/default.nix index 638f4328abf49..38bb54ba26d84 100644 --- a/pkgs/development/python-modules/localstack-client/default.nix +++ b/pkgs/development/python-modules/localstack-client/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { inherit 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/localstack/default.nix b/pkgs/development/python-modules/localstack/default.nix index 9eeab158ca100..c3e26cbac3b2f 100644 --- a/pkgs/development/python-modules/localstack/default.nix +++ b/pkgs/development/python-modules/localstack/default.nix @@ -76,10 +76,10 @@ buildPythonPackage rec { runHook postCheck ''; - 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/development/python-modules/locket/default.nix b/pkgs/development/python-modules/locket/default.nix index 5af41f471ca4a..5dd96e5048196 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/logfury/default.nix b/pkgs/development/python-modules/logfury/default.nix index fcd3fd9baa839..ae42c7085c292 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 14b1ac2ce6fca..b3d6ebe8ad2a2 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 ef0bf25cc8ff0..e04699dd78d37 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 cac45f9dd0073..c952cb7a8aff8 100644 --- a/pkgs/development/python-modules/logilab/common.nix +++ b/pkgs/development/python-modules/logilab/common.nix @@ -46,11 +46,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/logmatic-python/default.nix b/pkgs/development/python-modules/logmatic-python/default.nix index d129a16f7f9b5..6caa08d7cf8e9 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 19fa5b64b9ede..a692908b9a8df 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 d9afd8823653a..96c05624236ba 100644 --- a/pkgs/development/python-modules/logutils/default.nix +++ b/pkgs/development/python-modules/logutils/default.nix @@ -53,10 +53,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 de6403d1eabd4..3cf5a2e8e05bb 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 7df0b38d54fee..8ced0e640ce38 100644 --- a/pkgs/development/python-modules/lomond/default.nix +++ b/pkgs/development/python-modules/lomond/default.nix @@ -55,10 +55,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/losant-rest/default.nix b/pkgs/development/python-modules/losant-rest/default.nix index 385e5832d2182..ac6a7a41b9524 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 91f375d664e36..8453b86f3d47d 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 810878cec5856..ded800bf4bcff 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 8cbe109c2edbd..da5f732c0661d 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/"; - maintainers = teams.sage.members; - license = licenses.gpl3; + maintainers = lib.teams.sage.members; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/lsp-tree-sitter/default.nix b/pkgs/development/python-modules/lsp-tree-sitter/default.nix index d702e2be63694..3e5b465452111 100644 --- a/pkgs/development/python-modules/lsp-tree-sitter/default.nix +++ b/pkgs/development/python-modules/lsp-tree-sitter/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "lsp_tree_sitter" ]; - meta = with lib; { + meta = { description = "A library to create language servers"; homepage = "https://github.com/neomutt/lsp-tree-sitter"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/luddite/default.nix b/pkgs/development/python-modules/luddite/default.nix index 435db8725cd03..f0654c753bc2f 100644 --- a/pkgs/development/python-modules/luddite/default.nix +++ b/pkgs/development/python-modules/luddite/default.nix @@ -37,11 +37,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 213db1480c147..c006695cb75f2 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 b0407235fe0a5..22d805baaab74 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/luxor/default.nix b/pkgs/development/python-modules/luxor/default.nix index dbe1881e18330..6c06c3bf9c9ed 100644 --- a/pkgs/development/python-modules/luxor/default.nix +++ b/pkgs/development/python-modules/luxor/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "luxor" ]; - meta = with lib; { + meta = { description = "Python module to control FX Luminaire controllers"; homepage = "https://github.com/pbozeman/luxor"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/luxtronik/default.nix b/pkgs/development/python-modules/luxtronik/default.nix index fd1f6c474fa04..a39dda7d36173 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/lxml-stubs/default.nix b/pkgs/development/python-modules/lxml-stubs/default.nix index 7562874daaa04..14d4715699e39 100644 --- a/pkgs/development/python-modules/lxml-stubs/default.nix +++ b/pkgs/development/python-modules/lxml-stubs/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { "etree_element_iterchildren" ]; - meta = with lib; { + meta = { description = "Type stubs for the lxml package"; homepage = "https://github.com/lxml/lxml-stubs"; - license = licenses.asl20; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/lzallright/default.nix b/pkgs/development/python-modules/lzallright/default.nix index ee5be2d8dc440..df49c282ac885 100644 --- a/pkgs/development/python-modules/lzallright/default.nix +++ b/pkgs/development/python-modules/lzallright/default.nix @@ -42,13 +42,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/mac-vendor-lookup/default.nix b/pkgs/development/python-modules/mac-vendor-lookup/default.nix index e5cd0d793b6a9..aa2b1076b1b02 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 rec { 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 1375612530499..5903aedd44cee 100644 --- a/pkgs/development/python-modules/macaddress/default.nix +++ b/pkgs/development/python-modules/macaddress/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "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/magic/default.nix b/pkgs/development/python-modules/magic/default.nix index b37f0d604cf3d..05b2baf4d91fe 100644 --- a/pkgs/development/python-modules/magic/default.nix +++ b/pkgs/development/python-modules/magic/default.nix @@ -19,9 +19,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/magika/default.nix b/pkgs/development/python-modules/magika/default.nix index 444f4d844ea37..29ad1f19a5435 100644 --- a/pkgs/development/python-modules/magika/default.nix +++ b/pkgs/development/python-modules/magika/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { passthru.tests.version = testers.testVersion { package = magika; }; - meta = with lib; { + meta = { description = "Magika: Detect file content types with deep learning"; homepage = "https://github.com/google/magika"; - license = licenses.asl20; - maintainers = with maintainers; [ mihaimaruseac ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mihaimaruseac ]; mainProgram = "magika"; # Currently, disabling on AArch64 as it onnx runtime crashes on ofborg broken = stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isLinux; diff --git a/pkgs/development/python-modules/mahotas/default.nix b/pkgs/development/python-modules/mahotas/default.nix index ed17db74b4f0f..10eb65bb70076 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 102d1f51a144a..dbad311633e9e 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/mailchimp/default.nix b/pkgs/development/python-modules/mailchimp/default.nix index fc7e4a212b7c6..ba1c503193dc7 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 4a6091aab2711..afd2b79a8be65 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/makefun/default.nix b/pkgs/development/python-modules/makefun/default.nix index dfbf49de3da68..bccee3b82156e 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 0735cf8f2c9e7..f61696e68ae00 100644 --- a/pkgs/development/python-modules/mako/default.nix +++ b/pkgs/development/python-modules/mako/default.nix @@ -63,13 +63,13 @@ buildPythonPackage rec { # https://github.com/sqlalchemy/mako/issues/408 ++ lib.optional (stdenv.targetPlatform.useLLVM or false) "test_future_import"; - 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/managesieve/default.nix b/pkgs/development/python-modules/managesieve/default.nix index 0fbe908805515..15e18f0e3b770 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/manhole/default.nix b/pkgs/development/python-modules/manhole/default.nix index 940dc355e4823..892915da25f1e 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/manifestoo-core/default.nix b/pkgs/development/python-modules/manifestoo-core/default.nix index f427fb1ff56aa..6543ba15bb7e1 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 14f81fdf2cdfb..73b8ea4d3e031 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/manim/default.nix b/pkgs/development/python-modules/manim/default.nix index 14bc1ad76be96..d3b9cba133a6c 100644 --- a/pkgs/development/python-modules/manim/default.nix +++ b/pkgs/development/python-modules/manim/default.nix @@ -266,7 +266,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "manim" ]; - meta = with lib; { + meta = { description = "Animation engine for explanatory math videos - Community version"; longDescription = '' Manim is an animation engine for explanatory math videos. It's used to @@ -275,7 +275,7 @@ buildPythonPackage rec { manim. ''; homepage = "https://github.com/ManimCommunity/manim"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/manuel/default.nix b/pkgs/development/python-modules/manuel/default.nix index 52aede44e28c5..af03bd46263ef 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 2210f4a40fae9..1793d5f58864b 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/markdown-include/default.nix b/pkgs/development/python-modules/markdown-include/default.nix index 69da5c6ae1c68..476e78b06369b 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-macros/default.nix b/pkgs/development/python-modules/markdown-macros/default.nix index aad691159b693..685151184f348 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/markuppy/default.nix b/pkgs/development/python-modules/markuppy/default.nix index 4b376f6894ece..6af572285b303 100644 --- a/pkgs/development/python-modules/markuppy/default.nix +++ b/pkgs/development/python-modules/markuppy/default.nix @@ -20,10 +20,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 f187a8fc9d469..9ba4bf556849e 100644 --- a/pkgs/development/python-modules/markups/default.nix +++ b/pkgs/development/python-modules/markups/default.nix @@ -47,10 +47,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/marshmallow-polyfield/default.nix b/pkgs/development/python-modules/marshmallow-polyfield/default.nix index c4e5ad21e8190..905c35ab00bb0 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; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/matchpy/default.nix b/pkgs/development/python-modules/matchpy/default.nix index 304f143b884b0..bff133e137f7b 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 4da3d1907e5df..1545b0e8874ff 100644 --- a/pkgs/development/python-modules/material-color-utilities/default.nix +++ b/pkgs/development/python-modules/material-color-utilities/default.nix @@ -27,10 +27,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/mathutils/default.nix b/pkgs/development/python-modules/mathutils/default.nix index 13604f3d4cf78..15dd01edfba4c 100644 --- a/pkgs/development/python-modules/mathutils/default.nix +++ b/pkgs/development/python-modules/mathutils/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mathutils" ]; - meta = with lib; { + meta = { description = "A general math utilities library providing Matrix, Vector, Quaternion, Euler and Color classes, written in C for speed"; homepage = "https://gitlab.com/ideasman42/blender-mathutils"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ autra ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ autra ]; }; } diff --git a/pkgs/development/python-modules/matlink-gpapi/default.nix b/pkgs/development/python-modules/matlink-gpapi/default.nix index 3df24acd72a48..827bf4a0936ef 100644 --- a/pkgs/development/python-modules/matlink-gpapi/default.nix +++ b/pkgs/development/python-modules/matlink-gpapi/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { requests ]; - meta = with lib; { + meta = { homepage = "https://github.com/NoMore201/googleplay-api"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; description = "Google Play Unofficial Python API"; - maintainers = with maintainers; [ schnusch ]; + maintainers = with lib.maintainers; [ schnusch ]; }; } diff --git a/pkgs/development/python-modules/matplotlib-inline/default.nix b/pkgs/development/python-modules/matplotlib-inline/default.nix index 424a4510ae2a8..5362892a71734 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 98da9405ad1b3..b1ef83b419009 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/matrix-common/default.nix b/pkgs/development/python-modules/matrix-common/default.nix index 3f6b50d6e265b..b1801b861d6db 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/mattermostdriver/default.nix b/pkgs/development/python-modules/mattermostdriver/default.nix index fdf9e52963f4d..cc736d66cd490 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; - maintainers = with maintainers; [ globin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ globin ]; }; } diff --git a/pkgs/development/python-modules/maxcube-api/default.nix b/pkgs/development/python-modules/maxcube-api/default.nix index f82fc861bb4eb..7b952e3683224 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/mayavi/default.nix b/pkgs/development/python-modules/mayavi/default.nix index f5099af1f8f9c..8ae473b74455a 100644 --- a/pkgs/development/python-modules/mayavi/default.nix +++ b/pkgs/development/python-modules/mayavi/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { makeWrapperArgs+=("''${qtWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "3D visualization of scientific data in Python"; homepage = "https://github.com/enthought/mayavi"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ ]; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ ]; mainProgram = "mayavi2"; }; } diff --git a/pkgs/development/python-modules/mayim/default.nix b/pkgs/development/python-modules/mayim/default.nix index 91ef5b7b6d3cf..dcef49790c56f 100644 --- a/pkgs/development/python-modules/mayim/default.nix +++ b/pkgs/development/python-modules/mayim/default.nix @@ -53,10 +53,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 d738cca95394e..d73f20b8f89d6 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 a568f00fd2e91..8ec81ca4b972c 100644 --- a/pkgs/development/python-modules/mbstrdecoder/default.nix +++ b/pkgs/development/python-modules/mbstrdecoder/default.nix @@ -28,10 +28,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 7c556d0b382f6..35c6ab7e37ed2 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 c26cad00155c3..aa1c91acd8d2e 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 5287a97e2d39a..2576e64f3494b 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/mdformat-admon/default.nix b/pkgs/development/python-modules/mdformat-admon/default.nix index e6b872417d3f6..4206a62987463 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 b0015e7403827..939410840579a 100644 --- a/pkgs/development/python-modules/mdformat-beautysh/default.nix +++ b/pkgs/development/python-modules/mdformat-beautysh/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mdformat_beautysh" ]; - meta = with lib; { + meta = { description = "Mdformat plugin to beautify Bash scripts"; homepage = "https://github.com/hukkin/mdformat-beautysh"; - license = licenses.mit; - maintainers = with maintainers; [ aldoborrero ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aldoborrero ]; }; } diff --git a/pkgs/development/python-modules/mdformat-footnote/default.nix b/pkgs/development/python-modules/mdformat-footnote/default.nix index a5cdee5cfceab..1a4410646d3e5 100644 --- a/pkgs/development/python-modules/mdformat-footnote/default.nix +++ b/pkgs/development/python-modules/mdformat-footnote/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mdformat_footnote" ]; - meta = with lib; { + meta = { description = "Footnote format addition for mdformat"; homepage = "https://github.com/executablebooks/mdformat-footnote"; - 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 99de3b541ab9f..2f0667664b5c0 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 75bed656fa065..d90cca6c4cc9f 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-nix-alejandra/default.nix b/pkgs/development/python-modules/mdformat-nix-alejandra/default.nix index 6224f2ad33720..f8a4fd5ea1b5e 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 9da3ed6de832b..37aac17466ec4 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 713eefc5ec961..ed4df41476175 100644 --- a/pkgs/development/python-modules/mdformat-tables/default.nix +++ b/pkgs/development/python-modules/mdformat-tables/default.nix @@ -30,11 +30,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 3d4c3fe42d0f4..abc9edd8ffe5f 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/mdurl/default.nix b/pkgs/development/python-modules/mdurl/default.nix index 6a5e3a7cdc739..792ca1984f99c 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 1d707837ebe7c..28fdfb22a65f9 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/mediafile/default.nix b/pkgs/development/python-modules/mediafile/default.nix index a8c82e79235bb..5d7905cd5d933 100644 --- a/pkgs/development/python-modules/mediafile/default.nix +++ b/pkgs/development/python-modules/mediafile/default.nix @@ -34,10 +34,10 @@ 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"; - 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 3598ff215df7a..346929d152fc7 100644 --- a/pkgs/development/python-modules/mediafire-dl/default.nix +++ b/pkgs/development/python-modules/mediafire-dl/default.nix @@ -26,11 +26,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/meld3/default.nix b/pkgs/development/python-modules/meld3/default.nix index 482fb76afee57..cc67de2ee01cc 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 d9add2a93460a..0e93275b2ff2c 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 1dd2782396cfd..54ac46ac1a957 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/"; - maintainers = teams.sage.members; - license = licenses.lgpl3Plus; + maintainers = lib.teams.sage.members; + 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 a23929a52be25..4bc43fcc11c11 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 a50a7c50de60c..c3f8a612663fa 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/mercantile/default.nix b/pkgs/development/python-modules/mercantile/default.nix index 7fd6e040a2af8..a2c1f0413dfaf 100644 --- a/pkgs/development/python-modules/mercantile/default.nix +++ b/pkgs/development/python-modules/mercantile/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { hypothesis ]; - meta = with lib; { + meta = { description = "Spherical mercator tile and coordinate utilities"; mainProgram = "mercantile"; homepage = "https://github.com/mapbox/mercantile"; - license = licenses.bsd3; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/development/python-modules/merge3/default.nix b/pkgs/development/python-modules/merge3/default.nix index b40b9aca05a36..54ea35daab4f1 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 cbf4baafc3551..e065f9c5238e4 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 ebb396a990892..eeb0553818808 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 d68c9d9af3618..8095593919b15 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/mesa/default.nix b/pkgs/development/python-modules/mesa/default.nix index b205fe8496a4e..f458b42aeaab9 100644 --- a/pkgs/development/python-modules/mesa/default.nix +++ b/pkgs/development/python-modules/mesa/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { "test_scaffold_creates_project_dir" ]; - meta = with lib; { + meta = { homepage = "https://github.com/projectmesa/mesa"; description = "Agent-based modeling (or ABM) framework in Python"; - license = licenses.asl20; - maintainers = [ maintainers.dpaetzel ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.dpaetzel ]; broken = true; # missing dependencies }; } diff --git a/pkgs/development/python-modules/meshcat/default.nix b/pkgs/development/python-modules/meshcat/default.nix index da2329596bd48..1cb7410a039e9 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/meshio/default.nix b/pkgs/development/python-modules/meshio/default.nix index 6e9904267ece8..b4e6347bbccc3 100644 --- a/pkgs/development/python-modules/meshio/default.nix +++ b/pkgs/development/python-modules/meshio/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "meshio" ]; - meta = with lib; { + meta = { homepage = "https://github.com/nschloe/meshio"; description = "I/O for mesh files"; mainProgram = "meshio"; - license = licenses.mit; - maintainers = with maintainers; [ wd15 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wd15 ]; }; } diff --git a/pkgs/development/python-modules/meshlabxml/default.nix b/pkgs/development/python-modules/meshlabxml/default.nix index 5f62a773a3d1a..288e5a4f0f095 100644 --- a/pkgs/development/python-modules/meshlabxml/default.nix +++ b/pkgs/development/python-modules/meshlabxml/default.nix @@ -20,10 +20,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/messagebird/default.nix b/pkgs/development/python-modules/messagebird/default.nix index 302ce5087bc60..a3a1b6ec2902b 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/metawear/default.nix b/pkgs/development/python-modules/metawear/default.nix index 526e216a23091..a9f4e429ccabe 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 a2f84a590fd56..49e95f02c96ee 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 38c39d7d42caf..a4eb4921802ac 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/mhcgnomes/default.nix b/pkgs/development/python-modules/mhcgnomes/default.nix index 9a1a470d7a72e..075aebcbdbc3a 100644 --- a/pkgs/development/python-modules/mhcgnomes/default.nix +++ b/pkgs/development/python-modules/mhcgnomes/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { 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 aec9084ed7731..fbf45abcc1b15 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 1bb99b81d5340..a4cec517c3779 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 b6d325395c8fb..8e917c51b7585 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 d53ecea8defc9..cb3e852900c02 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/midiutil/default.nix b/pkgs/development/python-modules/midiutil/default.nix index 17e99c731a8f2..9f9a084ee6f51 100644 --- a/pkgs/development/python-modules/midiutil/default.nix +++ b/pkgs/development/python-modules/midiutil/default.nix @@ -14,10 +14,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/mike/default.nix b/pkgs/development/python-modules/mike/default.nix index 934c77440529d..61cd84ab59580 100644 --- a/pkgs/development/python-modules/mike/default.nix +++ b/pkgs/development/python-modules/mike/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mike" ]; - meta = with lib; { + meta = { description = "Manage multiple versions of your MkDocs-powered documentation"; mainProgram = "mike"; homepage = "https://github.com/jimporter/mike"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/milc/default.nix b/pkgs/development/python-modules/milc/default.nix index 4aaba74782ea7..92882441412df 100644 --- a/pkgs/development/python-modules/milc/default.nix +++ b/pkgs/development/python-modules/milc/default.nix @@ -40,11 +40,11 @@ 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; - maintainers = with maintainers; [ bhipple ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bhipple ]; }; } diff --git a/pkgs/development/python-modules/milksnake/default.nix b/pkgs/development/python-modules/milksnake/default.nix index 16b0bf2a95770..f1d58a12b3e41 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/mindsdb-evaluator/default.nix b/pkgs/development/python-modules/mindsdb-evaluator/default.nix index 00c54bde32453..a73d2a230e887 100644 --- a/pkgs/development/python-modules/mindsdb-evaluator/default.nix +++ b/pkgs/development/python-modules/mindsdb-evaluator/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mindsdb_evaluator" ]; - meta = with lib; { + meta = { description = "Model evaluation for Machine Learning pipelines"; homepage = "https://pypi.org/project/mindsdb-evaluator/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ mbalatsko ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ mbalatsko ]; }; } diff --git a/pkgs/development/python-modules/minexr/default.nix b/pkgs/development/python-modules/minexr/default.nix index d99149d8b568b..48dbc0ed2b735 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/minidb/default.nix b/pkgs/development/python-modules/minidb/default.nix index 84dc6e01501f6..17ff273efcb72 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/miniful/default.nix b/pkgs/development/python-modules/miniful/default.nix index 53bdf601899e7..db046f213b174 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 f8be0a3d6b3b8..ecab7d978b2cb 100644 --- a/pkgs/development/python-modules/minikanren/default.nix +++ b/pkgs/development/python-modules/minikanren/default.nix @@ -45,11 +45,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"; - license = licenses.bsd3; - maintainers = with maintainers; [ Etjean ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ Etjean ]; }; } diff --git a/pkgs/development/python-modules/minimal-snowplow-tracker/default.nix b/pkgs/development/python-modules/minimal-snowplow-tracker/default.nix index dc04cb99178a5..9a2dc80aa8fe7 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 tjni ]; diff --git a/pkgs/development/python-modules/minimock/default.nix b/pkgs/development/python-modules/minimock/default.nix index 63e8ef0b37781..d7505bc810889 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; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/miniupnpc/default.nix b/pkgs/development/python-modules/miniupnpc/default.nix index 04d8a08bf1c3d..bcdd944b84ffd 100644 --- a/pkgs/development/python-modules/miniupnpc/default.nix +++ b/pkgs/development/python-modules/miniupnpc/default.nix @@ -22,10 +22,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/mir-eval/default.nix b/pkgs/development/python-modules/mir-eval/default.nix index d94f6b97cc4d0..e0519913843b1 100644 --- a/pkgs/development/python-modules/mir-eval/default.nix +++ b/pkgs/development/python-modules/mir-eval/default.nix @@ -30,10 +30,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/misaka/default.nix b/pkgs/development/python-modules/misaka/default.nix index 11ac651828a54..afa1f76f56462 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/mixins/default.nix b/pkgs/development/python-modules/mixins/default.nix index 655f129b8ab68..ab4f04aa5b2bd 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 d93d9cb3fc9f6..5f232d58047b9 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 202fe31ff0f28..5000ace07d718 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-drawio-exporter/default.nix b/pkgs/development/python-modules/mkdocs-drawio-exporter/default.nix index 0609cf4019d89..06a7191c946fa 100644 --- a/pkgs/development/python-modules/mkdocs-drawio-exporter/default.nix +++ b/pkgs/development/python-modules/mkdocs-drawio-exporter/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mkdocs_drawio_exporter" ]; - meta = with lib; { + meta = { description = "Exports your Draw.io diagrams at build time for easier embedding into your documentation"; homepage = "https://github.com/LukeCarrier/mkdocs-drawio-exporter/"; - license = licenses.mit; - maintainers = with maintainers; [ snpschaaf ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ snpschaaf ]; longDescription = '' Exports your Draw.io diagrams at build time for easier embedding into your documentation. ''; diff --git a/pkgs/development/python-modules/mkdocs-exclude/default.nix b/pkgs/development/python-modules/mkdocs-exclude/default.nix index 431eeb44cc53a..bc13d107475d2 100644 --- a/pkgs/development/python-modules/mkdocs-exclude/default.nix +++ b/pkgs/development/python-modules/mkdocs-exclude/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # 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 60faf85431f3f..4b1f4f4b86e91 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 = "An 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-authors-plugin/default.nix b/pkgs/development/python-modules/mkdocs-git-authors-plugin/default.nix index 5b249d65626ef..2fe022fc5b7cd 100644 --- a/pkgs/development/python-modules/mkdocs-git-authors-plugin/default.nix +++ b/pkgs/development/python-modules/mkdocs-git-authors-plugin/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mkdocs_git_authors_plugin" ]; - meta = with lib; { + meta = { description = "Lightweight MkDocs plugin to display git authors of a markdown page"; homepage = "https://github.com/timvink/mkdocs-git-authors-plugin"; - 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 45b87d4ba3f89..a42e8718e066a 100644 --- a/pkgs/development/python-modules/mkdocs-gitlab-plugin/default.nix +++ b/pkgs/development/python-modules/mkdocs-gitlab-plugin/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mkdocs_gitlab_plugin" ]; - meta = with lib; { + meta = { description = "MkDocs plugin to transform strings such as #1234, %56, or !789 into links to a Gitlab repository"; 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 ]; longDescription = '' Plugin for MkDocs. Transform handles such as #1234, %56, !789, &12 or $34 into links to a gitlab repository, diff --git a/pkgs/development/python-modules/mkdocs-linkcheck/default.nix b/pkgs/development/python-modules/mkdocs-linkcheck/default.nix index e03215565300b..54f0eb3191bc0 100644 --- a/pkgs/development/python-modules/mkdocs-linkcheck/default.nix +++ b/pkgs/development/python-modules/mkdocs-linkcheck/default.nix @@ -27,7 +27,7 @@ buildPythonPackage rec { 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 = '' @@ -35,7 +35,7 @@ buildPythonPackage rec { 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-macros/default.nix b/pkgs/development/python-modules/mkdocs-macros/default.nix index bc73fe8848e13..93284da66ca3f 100644 --- a/pkgs/development/python-modules/mkdocs-macros/default.nix +++ b/pkgs/development/python-modules/mkdocs-macros/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mkdocs_macros" ]; - meta = with lib; { + meta = { homepage = "https://github.com/fralau/mkdocs_macros_plugin"; description = "Create richer and more beautiful pages in MkDocs, by using variables and calls to macros in the markdown code"; - license = licenses.mit; - maintainers = with maintainers; [ tljuniper ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tljuniper ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-macros/mkdocs-macros-test.nix b/pkgs/development/python-modules/mkdocs-macros/mkdocs-macros-test.nix index 75e935d9469c3..353d05305cfa8 100644 --- a/pkgs/development/python-modules/mkdocs-macros/mkdocs-macros-test.nix +++ b/pkgs/development/python-modules/mkdocs-macros/mkdocs-macros-test.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mkdocs_macros_test" ]; - meta = with lib; { + meta = { homepage = "https://github.com/fralau/mkdocs-macros-test"; description = "Implementation of a (model) pluglet for mkdocs-macros"; - license = licenses.mit; - maintainers = with maintainers; [ tljuniper ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tljuniper ]; }; } 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 0dd9c1d32b61d..38189a9528683 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-minify-plugin/default.nix b/pkgs/development/python-modules/mkdocs-minify-plugin/default.nix index 7269a69b5be6c..cf2aaff7dab83 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 6bc7fa2a33a80..14cdc2ccff7ca 100644 --- a/pkgs/development/python-modules/mkdocs-redirects/default.nix +++ b/pkgs/development/python-modules/mkdocs-redirects/default.nix @@ -24,10 +24,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/mkl-service/default.nix b/pkgs/development/python-modules/mkl-service/default.nix index a437f066f4b05..e65f5abf2e1d3 100644 --- a/pkgs/development/python-modules/mkl-service/default.nix +++ b/pkgs/development/python-modules/mkl-service/default.nix @@ -43,10 +43,10 @@ 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; - maintainers = with maintainers; [ bhipple ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bhipple ]; }; } diff --git a/pkgs/development/python-modules/mlrose/default.nix b/pkgs/development/python-modules/mlrose/default.nix index 284222299cd37..a0ff2ec33a9ad 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 pytestFlagsArray = [ "--randomly-seed 0" ]; - meta = with lib; { + meta = { description = "Machine Learning, Randomized Optimization and SEarch"; homepage = "https://github.com/gkhayes/mlrose"; - license = licenses.bsd3; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/mmpython/default.nix b/pkgs/development/python-modules/mmpython/default.nix index 6a980c242e8fa..195fae72773c3 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 4250e048430e3..f0f46c22a4612 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 25f2106e20cb7..bc51166f21c36 100644 --- a/pkgs/development/python-modules/mnist/default.nix +++ b/pkgs/development/python-modules/mnist/default.nix @@ -34,10 +34,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; - maintainers = with maintainers; [ dmrauh ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dmrauh ]; }; } diff --git a/pkgs/development/python-modules/mobi/default.nix b/pkgs/development/python-modules/mobi/default.nix index 16a17e91fa9c7..8b9e1332a8d1a 100644 --- a/pkgs/development/python-modules/mobi/default.nix +++ b/pkgs/development/python-modules/mobi/default.nix @@ -33,11 +33,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/mock-open/default.nix b/pkgs/development/python-modules/mock-open/default.nix index 3cf1095b20eab..5eb7d2382f2ee 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 723ec6f782331..14158d4f6e3b9 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/mockupdb/default.nix b/pkgs/development/python-modules/mockupdb/default.nix index 47ba794d0a0ba..e625244200e50 100644 --- a/pkgs/development/python-modules/mockupdb/default.nix +++ b/pkgs/development/python-modules/mockupdb/default.nix @@ -36,10 +36,10 @@ 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 = with maintainers; [ globin ]; + maintainers = with lib.maintainers; [ globin ]; }; } diff --git a/pkgs/development/python-modules/moddb/default.nix b/pkgs/development/python-modules/moddb/default.nix index 9da9cb837c51a..1690266db9476 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-checker/default.nix b/pkgs/development/python-modules/model-checker/default.nix index 188f5867fb107..95d18018b72e4 100644 --- a/pkgs/development/python-modules/model-checker/default.nix +++ b/pkgs/development/python-modules/model-checker/default.nix @@ -37,10 +37,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/modeled/default.nix b/pkgs/development/python-modules/modeled/default.nix index 43459fc5a5989..6b1c05e79f256 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/modestmaps/default.nix b/pkgs/development/python-modules/modestmaps/default.nix index 24c4ef2b0bcd2..7e007450ad6d3 100644 --- a/pkgs/development/python-modules/modestmaps/default.nix +++ b/pkgs/development/python-modules/modestmaps/default.nix @@ -19,9 +19,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ pillow ]; - meta = with lib; { + meta = { description = "Library for building interactive maps"; homepage = "http://modestmaps.com"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/molbar/default.nix b/pkgs/development/python-modules/molbar/default.nix index 8096a9a2212d2..6021e6b5722c6 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/plugins.nix b/pkgs/development/python-modules/molecule/plugins.nix index 3d98ecd039805..ea93be2ca8948 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 = with maintainers; [ dawidd6 ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ dawidd6 ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/monero/default.nix b/pkgs/development/python-modules/monero/default.nix index 4fdab49a521e1..b6730f8ead0cb 100644 --- a/pkgs/development/python-modules/monero/default.nix +++ b/pkgs/development/python-modules/monero/default.nix @@ -48,10 +48,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 cb18f270726e8..ab8c181be3437 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 1d273556bc060..5fe869c046122 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/mongoquery/default.nix b/pkgs/development/python-modules/mongoquery/default.nix index 551dd1bb4d561..4b106ffdcb5e5 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 c07fe91a8c74b..7c46c59609cde 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 46e8e0f354926..fdd4cd03ca44f 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/moonraker-api/default.nix b/pkgs/development/python-modules/moonraker-api/default.nix index a733f70a824cd..1fc94bbca3211 100644 --- a/pkgs/development/python-modules/moonraker-api/default.nix +++ b/pkgs/development/python-modules/moonraker-api/default.nix @@ -37,10 +37,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/more-itertools/default.nix b/pkgs/development/python-modules/more-itertools/default.nix index 602c2399fa8f2..10d88ef121c10 100644 --- a/pkgs/development/python-modules/more-itertools/default.nix +++ b/pkgs/development/python-modules/more-itertools/default.nix @@ -28,11 +28,11 @@ 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"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/moreorless/default.nix b/pkgs/development/python-modules/moreorless/default.nix index e0faed09af0a4..2c72598b858b9 100644 --- a/pkgs/development/python-modules/moreorless/default.nix +++ b/pkgs/development/python-modules/moreorless/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { "moreorless/tests/patch.py" ]; - meta = with lib; { + meta = { description = "Wrapper to make difflib.unified_diff more fun to use"; homepage = "https://github.com/thatch/moreorless/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/moretools/default.nix b/pkgs/development/python-modules/moretools/default.nix index 7787360d58355..091964aabf74d 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 c8e71ac20ed04..969e2f347a999 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 4ce36203a700f..9c6ae67af947f 100644 --- a/pkgs/development/python-modules/morphys/default.nix +++ b/pkgs/development/python-modules/morphys/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { 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 218dcc1577a4c..cd8306e92c874 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/motioneye-client/default.nix b/pkgs/development/python-modules/motioneye-client/default.nix index 487de3c3228cd..38905211a30f8 100644 --- a/pkgs/development/python-modules/motioneye-client/default.nix +++ b/pkgs/development/python-modules/motioneye-client/default.nix @@ -43,11 +43,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/motmetrics/default.nix b/pkgs/development/python-modules/motmetrics/default.nix index 74a0fade7bd99..ef069522339b0 100644 --- a/pkgs/development/python-modules/motmetrics/default.nix +++ b/pkgs/development/python-modules/motmetrics/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "motmetrics" ]; - meta = with lib; { + meta = { description = "Bar_chart: Benchmark multiple object trackers (MOT) in Python"; homepage = "https://github.com/cheind/py-motmetrics"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mouseinfo/default.nix b/pkgs/development/python-modules/mouseinfo/default.nix index 9691fc36680b0..305eeb648e7cd 100644 --- a/pkgs/development/python-modules/mouseinfo/default.nix +++ b/pkgs/development/python-modules/mouseinfo/default.nix @@ -32,10 +32,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/mpl-scatter-density/default.nix b/pkgs/development/python-modules/mpl-scatter-density/default.nix index bc4ad421714a3..461634cff8787 100644 --- a/pkgs/development/python-modules/mpl-scatter-density/default.nix +++ b/pkgs/development/python-modules/mpl-scatter-density/default.nix @@ -62,10 +62,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 4b33f34b93ede..c22f582a53f6d 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 a49b2a8afcc4d..797aa6ac77680 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 f709927149776..5fedb4588f686 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 53e6dc8250b97..d76ec52cb8bfe 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/mpris-server/default.nix b/pkgs/development/python-modules/mpris-server/default.nix index 06383416d96ca..0ee57084b1f01 100644 --- a/pkgs/development/python-modules/mpris-server/default.nix +++ b/pkgs/development/python-modules/mpris-server/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { # 0.4.2 passthru.skipBulkUpdate = true; - meta = with lib; { + meta = { description = "Publish a MediaPlayer2 MPRIS device to D-Bus"; homepage = "https://pypi.org/project/mpris-server/"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ quadradical ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ quadradical ]; }; } diff --git a/pkgs/development/python-modules/mpv/default.nix b/pkgs/development/python-modules/mpv/default.nix index 9f92995dd8bb2..fe485468d8559 100644 --- a/pkgs/development/python-modules/mpv/default.nix +++ b/pkgs/development/python-modules/mpv/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { doCheck = false; 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/ms-cv/default.nix b/pkgs/development/python-modules/ms-cv/default.nix index d651ce1a37715..840a1a7a22852 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/mscerts/default.nix b/pkgs/development/python-modules/mscerts/default.nix index af4d1499e4883..db1996c38d9c5 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 f2ebb4108970c..abffa68723a54 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 ff41fa354ebb9..4dbb824dd23ce 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/msrest/default.nix b/pkgs/development/python-modules/msrest/default.nix index 937d489f6f5e7..2ffe32c750b63 100644 --- a/pkgs/development/python-modules/msrest/default.nix +++ b/pkgs/development/python-modules/msrest/default.nix @@ -73,11 +73,11 @@ buildPythonPackage rec { 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 be3f9961f4030..60698796e8527 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/mujson/default.nix b/pkgs/development/python-modules/mujson/default.nix index 6d980fd74f495..d22c7e0992cfe 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 2074766ebe6ed..427746b9b17dc 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 1affe574c0dbd..e42f36cacf4cb 100644 --- a/pkgs/development/python-modules/mullvad-closest/default.nix +++ b/pkgs/development/python-modules/mullvad-closest/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { 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 5ff36083ef864..9c0938fe00aa2 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 5cd962b70cf85..4dd93487191a2 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/multiprocess/default.nix b/pkgs/development/python-modules/multiprocess/default.nix index 9a7d698e5077c..8a5dbff8cf108 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/multitasking/default.nix b/pkgs/development/python-modules/multitasking/default.nix index e5880849da738..05cb483774cda 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; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/munch/default.nix b/pkgs/development/python-modules/munch/default.nix index e81fc579ce0bf..eb59ba2467780 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/munkres/default.nix b/pkgs/development/python-modules/munkres/default.nix index 1ba6a82139540..8b9f9f97c1c58 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/murmurhash/default.nix b/pkgs/development/python-modules/murmurhash/default.nix index de051620c6f74..dec782c07dc3b 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/music-tag/default.nix b/pkgs/development/python-modules/music-tag/default.nix index 1c396703cd0cd..d00869deb4a99 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 5c3acc24846bd..e2248b5e927f9 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/mutag/default.nix b/pkgs/development/python-modules/mutag/default.nix index 6f7bf72c4a6e2..bdf7b401cd09a 100644 --- a/pkgs/development/python-modules/mutag/default.nix +++ b/pkgs/development/python-modules/mutag/default.nix @@ -30,10 +30,10 @@ buildPythonPackage { pythonImportsCheck = [ "mutag" ]; - meta = with lib; { + meta = { description = "Script to change email tags in a mu indexed maildir"; homepage = "https://github.com/aroig/mutag"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; mainProgram = "mutag"; }; diff --git a/pkgs/development/python-modules/mutatormath/default.nix b/pkgs/development/python-modules/mutatormath/default.nix index 1b259cd6ebd0d..2c16f5485cbb9 100644 --- a/pkgs/development/python-modules/mutatormath/default.nix +++ b/pkgs/development/python-modules/mutatormath/default.nix @@ -29,10 +29,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 d998c5ff80134..59b3ff668ef20 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 c7d2afdd1308b..c45d3c46c4ace 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 9c644cf9c41b0..d322a469dca10 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 719bc45eb8bbd..121087158c675 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/mwoauth/default.nix b/pkgs/development/python-modules/mwoauth/default.nix index ed1b59ddb32e0..e321b30f924c7 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/mygpoclient/default.nix b/pkgs/development/python-modules/mygpoclient/default.nix index badf6d8997080..7cc6651aaa9e0 100644 --- a/pkgs/development/python-modules/mygpoclient/default.nix +++ b/pkgs/development/python-modules/mygpoclient/default.nix @@ -36,14 +36,14 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Gpodder.net client library"; longDescription = '' The mygpoclient library allows developers to utilize a Pythonic interface to the gpodder.net web services. ''; homepage = "https://github.com/gpodder/mygpoclient"; - license = with licenses; [ gpl3 ]; + license = with lib.licenses; [ gpl3 ]; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/myhdl/default.nix b/pkgs/development/python-modules/myhdl/default.nix index 959856365d246..681ebce7f9cb6 100644 --- a/pkgs/development/python-modules/myhdl/default.nix +++ b/pkgs/development/python-modules/myhdl/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { 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 ce22d1a25c63c..94c7c889f7597 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/extensions.nix b/pkgs/development/python-modules/mypy/extensions.nix index 3282a6b6e8634..1586a7a965f06 100644 --- a/pkgs/development/python-modules/mypy/extensions.nix +++ b/pkgs/development/python-modules/mypy/extensions.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mypy_extensions" ]; - meta = with lib; { + meta = { description = "Experimental type system extensions for programs checked with the mypy typechecker"; homepage = "https://www.mypy-lang.org"; - license = licenses.mit; - maintainers = with maintainers; [ lnl7 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lnl7 ]; }; } diff --git a/pkgs/development/python-modules/mysqlclient/default.nix b/pkgs/development/python-modules/mysqlclient/default.nix index e15e7545b75b1..90758468d4f2f 100644 --- a/pkgs/development/python-modules/mysqlclient/default.nix +++ b/pkgs/development/python-modules/mysqlclient/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { hash = "sha256-M7yfs0ZOfXwQser3M2xf+PKj07iLq0MhFq0kkL6zv0E="; }; - meta = with lib; { + meta = { description = "Python interface to MySQL"; homepage = "https://github.com/PyMySQL/mysqlclient-python"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ y0no ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ y0no ]; }; } diff --git a/pkgs/development/python-modules/nagiosplugin/default.nix b/pkgs/development/python-modules/nagiosplugin/default.nix index 4ba887fb71d7f..6f73503e939b3 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 adabd6c6f5aa0..b169b2e0a649a 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 ae094b0a142cc..6ede8da906445 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 f4ddbb7dd7ab6..ff038c79b96fd 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/nanoid/default.nix b/pkgs/development/python-modules/nanoid/default.nix index 1570c28f9e66a..23e8bb598b415 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/nanomsg-python/default.nix b/pkgs/development/python-modules/nanomsg-python/default.nix index 1125b88c0e4ea..ba788fef118b4 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 d41126916b0bb..fdc84e0871262 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/hp-procurve.nix b/pkgs/development/python-modules/napalm/hp-procurve.nix index a44fe0becfe31..c00fa966965bb 100644 --- a/pkgs/development/python-modules/napalm/hp-procurve.nix +++ b/pkgs/development/python-modules/napalm/hp-procurve.nix @@ -50,10 +50,10 @@ 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"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/napari-console/default.nix b/pkgs/development/python-modules/napari-console/default.nix index de39909b2b933..3d914dcb41bc6 100644 --- a/pkgs/development/python-modules/napari-console/default.nix +++ b/pkgs/development/python-modules/napari-console/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "napari_console" ]; - meta = with lib; { + meta = { description = "Plugin that adds a console to napari"; homepage = "https://github.com/napari/napari-console"; - license = licenses.bsd3; - maintainers = with maintainers; [ SomeoneSerge ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ SomeoneSerge ]; }; } diff --git a/pkgs/development/python-modules/napari-npe2/default.nix b/pkgs/development/python-modules/napari-npe2/default.nix index 96ae0f11afc9e..a47827fc0f67c 100644 --- a/pkgs/development/python-modules/napari-npe2/default.nix +++ b/pkgs/development/python-modules/napari-npe2/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { inherit napari; }; - meta = with lib; { + meta = { description = "Plugin system for napari (the image visualizer)"; homepage = "https://github.com/napari/npe2"; - license = licenses.bsd3; - maintainers = with maintainers; [ SomeoneSerge ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ SomeoneSerge ]; mainProgram = "npe2"; }; } diff --git a/pkgs/development/python-modules/napari-plugin-engine/default.nix b/pkgs/development/python-modules/napari-plugin-engine/default.nix index 6fcabe6ffd2cc..2b1d3038a29e9 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 484c0f08d2d3c..2a88eee0f7dcb 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 50283389107bd..91e3feccb75f0 100644 --- a/pkgs/development/python-modules/natasha/default.nix +++ b/pkgs/development/python-modules/natasha/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "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/navec/default.nix b/pkgs/development/python-modules/navec/default.nix index 8369edba21699..2516ce1a1ab58 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 6ac18bef59372..78941de0eab44 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/nbclient/default.nix b/pkgs/development/python-modules/nbclient/default.nix index 809b5af89c17e..6a17fbdcfac52 100644 --- a/pkgs/development/python-modules/nbclient/default.nix +++ b/pkgs/development/python-modules/nbclient/default.nix @@ -66,11 +66,11 @@ let }); }; - meta = with lib; { + meta = { homepage = "https://github.com/jupyter/nbclient"; description = "Client library for executing notebooks"; mainProgram = "jupyter-execute"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; }; diff --git a/pkgs/development/python-modules/nbconflux/default.nix b/pkgs/development/python-modules/nbconflux/default.nix index 0802f50663147..660e9f80fee5d 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/nbsmoke/default.nix b/pkgs/development/python-modules/nbsmoke/default.nix index 14cd544647a64..aae9e7d86427a 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/nbxmpp/default.nix b/pkgs/development/python-modules/nbxmpp/default.nix index b11d97f30ec92..28d2274c93e1e 100644 --- a/pkgs/development/python-modules/nbxmpp/default.nix +++ b/pkgs/development/python-modules/nbxmpp/default.nix @@ -50,10 +50,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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/nc-dnsapi/default.nix b/pkgs/development/python-modules/nc-dnsapi/default.nix index cf6511b1eb971..f81841ba942af 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 67217d4c22537..2ba10e757cda0 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"; mainProgram = "serve-stdio"; homepage = "https://nclib.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/ndg-httpsclient/default.nix b/pkgs/development/python-modules/ndg-httpsclient/default.nix index 6773eed000c8e..d8bd04d81b0a1 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/ndms2-client/default.nix b/pkgs/development/python-modules/ndms2-client/default.nix index 619cbe171cfa8..fb18a778ca31b 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 ea749eda1e9d9..05d64662eff65 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/nested-lookup/default.nix b/pkgs/development/python-modules/nested-lookup/default.nix index 3eff01d9480d7..3bd648638c8be 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/netapp-lib/default.nix b/pkgs/development/python-modules/netapp-lib/default.nix index 478831a9112e0..d659de23cc158 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 78d4c23fd6cce..5b6c459a64f0f 100644 --- a/pkgs/development/python-modules/netapp-ontap/default.nix +++ b/pkgs/development/python-modules/netapp-ontap/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "netapp_ontap" ]; - meta = with lib; { + meta = { description = "Library for working with ONTAP's REST APIs simply in Python"; homepage = "https://devnet.netapp.com/restapi.php"; - 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/netdata-pandas/default.nix b/pkgs/development/python-modules/netdata-pandas/default.nix index ff8bc2c4622ed..56a2215627a69 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 = "A helper 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/netdisco/default.nix b/pkgs/development/python-modules/netdisco/default.nix index db1d17de07caf..75afcaffbcd29 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/netifaces/default.nix b/pkgs/development/python-modules/netifaces/default.nix index 8133131a4277d..6261729362ebf 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/netmap/default.nix b/pkgs/development/python-modules/netmap/default.nix index c863ae189dcb8..4c74a7b10101b 100644 --- a/pkgs/development/python-modules/netmap/default.nix +++ b/pkgs/development/python-modules/netmap/default.nix @@ -36,10 +36,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/newick/default.nix b/pkgs/development/python-modules/newick/default.nix index ccda2606a56ff..8182dc2632553 100644 --- a/pkgs/development/python-modules/newick/default.nix +++ b/pkgs/development/python-modules/newick/default.nix @@ -31,10 +31,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; - maintainers = with maintainers; [ alxsimon ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ alxsimon ]; }; } diff --git a/pkgs/development/python-modules/nh3/default.nix b/pkgs/development/python-modules/nh3/default.nix index f438525e51829..d57e3451b220f 100644 --- a/pkgs/development/python-modules/nh3/default.nix +++ b/pkgs/development/python-modules/nh3/default.nix @@ -41,10 +41,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/niluclient/default.nix b/pkgs/development/python-modules/niluclient/default.nix index 6e667a2776169..b0494e138d0b8 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 70caf70ca0653..320072e1b7768 100644 --- a/pkgs/development/python-modules/nine/default.nix +++ b/pkgs/development/python-modules/nine/default.nix @@ -14,9 +14,9 @@ buildPythonPackage rec { sha256 = "e8a96b6326341637d25ca9c257c1d2af4033c957946438d9d37bf6eb798d3bbe"; }; - 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 905acd753c854..1571c02b59210 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 a735308e657e5..0f445ee656cd3 100644 --- a/pkgs/development/python-modules/ninja/default.nix +++ b/pkgs/development/python-modules/ninja/default.nix @@ -34,7 +34,7 @@ buildPythonPackage rec { "ninja.ninja_syntax" ]; - meta = with lib; { + meta = { description = "Small build system with a focus on speed"; mainProgram = "ninja"; longDescription = '' @@ -42,8 +42,8 @@ buildPythonPackage rec { 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 tjni ]; diff --git a/pkgs/development/python-modules/nipy/default.nix b/pkgs/development/python-modules/nipy/default.nix index 107f754dca311..cad42065e0d82 100644 --- a/pkgs/development/python-modules/nipy/default.nix +++ b/pkgs/development/python-modules/nipy/default.nix @@ -67,10 +67,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/nipype/default.nix b/pkgs/development/python-modules/nipype/default.nix index a6a7a45edef13..284780735adac 100644 --- a/pkgs/development/python-modules/nipype/default.nix +++ b/pkgs/development/python-modules/nipype/default.nix @@ -97,11 +97,11 @@ buildPythonPackage rec { ''; pythonImportsCheck = [ "nipype" ]; - meta = with lib; { + meta = { homepage = "https://nipy.org/nipype/"; description = "Neuroimaging in Python: Pipelines and Interfaces"; mainProgram = "nipypecli"; - license = licenses.bsd3; - maintainers = with maintainers; [ ashgillman ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ashgillman ]; }; } diff --git a/pkgs/development/python-modules/nitime/default.nix b/pkgs/development/python-modules/nitime/default.nix index d6295005e6935..be3a20a69b476 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/nix-kernel/default.nix b/pkgs/development/python-modules/nix-kernel/default.nix index a14a12b5b4f00..4f697e2e1868f 100644 --- a/pkgs/development/python-modules/nix-kernel/default.nix +++ b/pkgs/development/python-modules/nix-kernel/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { 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 de23fe6548bdf..d9c26c6d3bfc2 100644 --- a/pkgs/development/python-modules/nix-prefetch-github/default.nix +++ b/pkgs/development/python-modules/nix-prefetch-github/default.nix @@ -48,10 +48,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 a8bedf7bc2e08..103286a0f0b1e 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/nixpkgs/default.nix b/pkgs/development/python-modules/nixpkgs/default.nix index 989eb91287d89..f7d44186a7e43 100644 --- a/pkgs/development/python-modules/nixpkgs/default.nix +++ b/pkgs/development/python-modules/nixpkgs/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "nixpkgs" ]; - meta = with lib; { + meta = { description = "Allows to `from nixpkgs import` stuff in interactive Python sessions"; homepage = "https://github.com/t184256/nixpkgs-python-importer"; - license = licenses.mit; - maintainers = with maintainers; [ t184256 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ t184256 ]; }; } diff --git a/pkgs/development/python-modules/nkdfu/default.nix b/pkgs/development/python-modules/nkdfu/default.nix index 0ebb513c2b187..6e7586a7b56f7 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/nltk/default.nix b/pkgs/development/python-modules/nltk/default.nix index 4493348bb6da6..5108f332687f2 100644 --- a/pkgs/development/python-modules/nltk/default.nix +++ b/pkgs/development/python-modules/nltk/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nltk" ]; - meta = with lib; { + meta = { description = "Natural Language Processing ToolKit"; mainProgram = "nltk"; homepage = "http://nltk.org/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nmapthon2/default.nix b/pkgs/development/python-modules/nmapthon2/default.nix index 0a518c29013c0..9657535747e92 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/nocturne/default.nix b/pkgs/development/python-modules/nocturne/default.nix index 0934e6fd2535d..8ce8105ee8b2e 100644 --- a/pkgs/development/python-modules/nocturne/default.nix +++ b/pkgs/development/python-modules/nocturne/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nocturne" ]; - meta = with lib; { + meta = { description = "Data-driven, fast driving simulator for multi-agent coordination under partial observability"; homepage = "https://github.com/facebookresearch/nocturne"; - license = licenses.mit; - maintainers = with maintainers; [ samuela ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/noise/default.nix b/pkgs/development/python-modules/noise/default.nix index fc00d09f8033e..b66f2ce621982 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/notebook-shim/default.nix b/pkgs/development/python-modules/notebook-shim/default.nix index 34b74dd1c2b1f..56b2ddfcecf17 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/notmuch/default.nix b/pkgs/development/python-modules/notmuch/default.nix index 47f23ed99fed2..edec6b8d5e21d 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 e2bba858580e3..6c9d52617154b 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/nototools/default.nix b/pkgs/development/python-modules/nototools/default.nix index 3f8c679d2a4b6..a091c09c7d9cb 100644 --- a/pkgs/development/python-modules/nototools/default.nix +++ b/pkgs/development/python-modules/nototools/default.nix @@ -98,10 +98,10 @@ buildPythonPackage rec { cp -r third_party $out ''; - 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/development/python-modules/npyscreen/default.nix b/pkgs/development/python-modules/npyscreen/default.nix index 7141bdc32ff8f..28031b113b4aa 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/ntplib/default.nix b/pkgs/development/python-modules/ntplib/default.nix index 9c388e0437d38..29844518e0202 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 5daade948aa86..5324cfe7b703a 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/nuitka/default.nix b/pkgs/development/python-modules/nuitka/default.nix index 45e7fa77eb03e..2b789c2b7fdc3 100644 --- a/pkgs/development/python-modules/nuitka/default.nix +++ b/pkgs/development/python-modules/nuitka/default.nix @@ -45,9 +45,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/"; }; } diff --git a/pkgs/development/python-modules/nulltype/default.nix b/pkgs/development/python-modules/nulltype/default.nix index 0d735b695eaf6..9588940625e33 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/numba-scipy/default.nix b/pkgs/development/python-modules/numba-scipy/default.nix index 05c07632a9791..95da7c897ad08 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 e5ad4a7fa03bf..636822f1b2c40 100644 --- a/pkgs/development/python-modules/numba/default.nix +++ b/pkgs/development/python-modules/numba/default.nix @@ -166,10 +166,10 @@ buildPythonPackage rec { }; }; - meta = with lib; { + meta = { 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 29dee4bbbaa4b..1108998fbbe37 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/numericalunits/default.nix b/pkgs/development/python-modules/numericalunits/default.nix index 922e26d3057be..3b27669e550c3 100644 --- a/pkgs/development/python-modules/numericalunits/default.nix +++ b/pkgs/development/python-modules/numericalunits/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { disabled = !isPy3k; - meta = with lib; { + meta = { homepage = "http://pypi.python.org/pypi/numericalunits"; description = "Package that lets you define quantities with unit"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/numexpr/default.nix b/pkgs/development/python-modules/numexpr/default.nix index bda5304a69c04..17384c80ba298 100644 --- a/pkgs/development/python-modules/numexpr/default.nix +++ b/pkgs/development/python-modules/numexpr/default.nix @@ -65,10 +65,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/oasatelematics/default.nix b/pkgs/development/python-modules/oasatelematics/default.nix index fca7740dc6de9..cdcf4095264dd 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 3eb51d6866fea..fc245e0b94f21 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/oauth/default.nix b/pkgs/development/python-modules/oauth/default.nix index 3510461dba3c8..b0f7103ddd5fa 100644 --- a/pkgs/development/python-modules/oauth/default.nix +++ b/pkgs/development/python-modules/oauth/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { # No tests included in archive doCheck = false; - meta = with lib; { + meta = { homepage = "https://code.google.com/archive/p/oauth/"; description = "Library for OAuth version 1.0a"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/oauth2/default.nix b/pkgs/development/python-modules/oauth2/default.nix index 17ea759ce4f50..78c26446bfbde 100644 --- a/pkgs/development/python-modules/oauth2/default.nix +++ b/pkgs/development/python-modules/oauth2/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { # ServerNotFoundError: Unable to find the server at oauth-sandbox.sevengoslings.net doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/simplegeo/python-oauth2"; description = "Library for OAuth version 1.0"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/oauth2client/default.nix b/pkgs/development/python-modules/oauth2client/default.nix index 895c988381e9b..1fa9918a4e20c 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/obfsproxy/default.nix b/pkgs/development/python-modules/obfsproxy/default.nix index c9b7f9f13c4cb..13dfcec11fb00 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/objsize/default.nix b/pkgs/development/python-modules/objsize/default.nix index f1c9b9c6676be..fb23dad64423b 100644 --- a/pkgs/development/python-modules/objsize/default.nix +++ b/pkgs/development/python-modules/objsize/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "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/oca-port/default.nix b/pkgs/development/python-modules/oca-port/default.nix index 93a7dafb02d0a..9443cdf2ca03a 100644 --- a/pkgs/development/python-modules/oca-port/default.nix +++ b/pkgs/development/python-modules/oca-port/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oca_port" ]; - meta = with lib; { + meta = { description = "Tool helping to port an addon or missing commits of an addon from one branch to another"; homepage = "https://github.com/OCA/oca-port"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ yajo ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ yajo ]; }; } diff --git a/pkgs/development/python-modules/od/default.nix b/pkgs/development/python-modules/od/default.nix index 1c3c8bf8ff4b1..73dde48f7cb31 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/offtrac/default.nix b/pkgs/development/python-modules/offtrac/default.nix index 268346ce38d3d..667f797ef1085 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 f763c6f232949..36d1899ab2a3f 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 6d1da80a8c04c..3401313a215f2 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 cbf5d5e3c0b2b..a707546916771 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/oldest-supported-numpy/default.nix b/pkgs/development/python-modules/oldest-supported-numpy/default.nix index 521094a8e4c07..3a54e72795442 100644 --- a/pkgs/development/python-modules/oldest-supported-numpy/default.nix +++ b/pkgs/development/python-modules/oldest-supported-numpy/default.nix @@ -31,10 +31,10 @@ 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; - maintainers = with maintainers; [ tjni ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ tjni ]; }; } diff --git a/pkgs/development/python-modules/olefile/default.nix b/pkgs/development/python-modules/olefile/default.nix index adf8784a501e7..f756864f5d7e5 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 0858e4bc7b90f..deba9db956f5a 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/omnilogic/default.nix b/pkgs/development/python-modules/omnilogic/default.nix index 472115a6d0fe2..228ab02246c19 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 c541ddd2ba7de..326ccb9a384e2 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 ab78e6eda1205..38eebe9393f40 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/oncalendar/default.nix b/pkgs/development/python-modules/oncalendar/default.nix index f06888ff566f2..2fe45c2234b13 100644 --- a/pkgs/development/python-modules/oncalendar/default.nix +++ b/pkgs/development/python-modules/oncalendar/default.nix @@ -20,10 +20,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/onigurumacffi/default.nix b/pkgs/development/python-modules/onigurumacffi/default.nix index 8946644efaec1..ae7b65ce63ec5 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 ab82ef0b7bdfb..18faff5bdc279 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 48bed76e8f037..20ef9a47c3d6e 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 a4276bfd568d6..da0dbe857fdf0 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 bff5a0dca626c..0e64e90b64204 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/onnxmltools/default.nix b/pkgs/development/python-modules/onnxmltools/default.nix index 6458a8323b77c..d91048e5d348a 100644 --- a/pkgs/development/python-modules/onnxmltools/default.nix +++ b/pkgs/development/python-modules/onnxmltools/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { # h20 ]; - meta = with lib; { + meta = { description = "ONNXMLTools enables conversion of models to ONNX"; homepage = "https://github.com/onnx/onnxmltools"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/onnxruntime-tools/default.nix b/pkgs/development/python-modules/onnxruntime-tools/default.nix index 462cdb7f23361..d9fb5af510285 100644 --- a/pkgs/development/python-modules/onnxruntime-tools/default.nix +++ b/pkgs/development/python-modules/onnxruntime-tools/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "onnxruntime_tools" ]; - meta = with lib; { + meta = { description = "Transformers Model Optimization Tool of ONNXRuntime"; homepage = "https://pypi.org/project/onnxruntime-tools/"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ happysalada ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/onvif-zeep/default.nix b/pkgs/development/python-modules/onvif-zeep/default.nix index 07a7141e48675..c3008e0f5cbe5 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 0bf286c3263b6..1b354e2569b8b 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 ff50be9476e4c..7a5c3131a9a3b 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/openant/default.nix b/pkgs/development/python-modules/openant/default.nix index c97bee2183228..df2d16701a4f2 100644 --- a/pkgs/development/python-modules/openant/default.nix +++ b/pkgs/development/python-modules/openant/default.nix @@ -42,10 +42,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/openbabel-bindings/default.nix b/pkgs/development/python-modules/openbabel-bindings/default.nix index 4ab6b77465c1f..ffa94f218749c 100644 --- a/pkgs/development/python-modules/openbabel-bindings/default.nix +++ b/pkgs/development/python-modules/openbabel-bindings/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "openbabel" ]; - meta = with lib; { + meta = { homepage = "http://openbabel.org/wiki/Main_Page"; description = "Python bindings for openbabel"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ danielbarter ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ danielbarter ]; }; } diff --git a/pkgs/development/python-modules/opencensus-context/default.nix b/pkgs/development/python-modules/opencensus-context/default.nix index 1f3d568e27f32..d96f489ce43fb 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 34db90917e065..afcd699d77761 100644 --- a/pkgs/development/python-modules/opencensus-ext-azure/default.nix +++ b/pkgs/development/python-modules/opencensus-ext-azure/default.nix @@ -34,11 +34,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 d7d4ac6ddc0c8..269b89733742d 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 c3dbd0e1bfde6..95f7d8bf016ec 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/openevsewifi/default.nix b/pkgs/development/python-modules/openevsewifi/default.nix index 8a65b3e56f34c..968e3b9c14708 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/openidc-client/default.nix b/pkgs/development/python-modules/openidc-client/default.nix index 99a00cde6621c..ee7b57a9c807e 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/openrouteservice/default.nix b/pkgs/development/python-modules/openrouteservice/default.nix index eae98abfeeb9f..fd4ebb3b805bb 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/openshift/default.nix b/pkgs/development/python-modules/openshift/default.nix index f1ea8488995b7..8f90d274bb43c 100644 --- a/pkgs/development/python-modules/openshift/default.nix +++ b/pkgs/development/python-modules/openshift/default.nix @@ -50,10 +50,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 634efaf196b20..2dad5867ddaf6 100644 --- a/pkgs/development/python-modules/opensimplex/default.nix +++ b/pkgs/development/python-modules/opensimplex/default.nix @@ -24,7 +24,7 @@ buildPythonPackage rec { pytestFlagsArray = [ "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 ce3b63ff88440..ff24d2485f0be 100644 --- a/pkgs/development/python-modules/openstackdocstheme/default.nix +++ b/pkgs/development/python-modules/openstackdocstheme/default.nix @@ -38,10 +38,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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/openstacksdk/default.nix b/pkgs/development/python-modules/openstacksdk/default.nix index db684def89bc4..f2b9e569efa0f 100644 --- a/pkgs/development/python-modules/openstacksdk/default.nix +++ b/pkgs/development/python-modules/openstacksdk/default.nix @@ -77,11 +77,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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/opentypespec/default.nix b/pkgs/development/python-modules/opentypespec/default.nix index 81fc60e5dc55c..22498a041bb0b 100644 --- a/pkgs/development/python-modules/opentypespec/default.nix +++ b/pkgs/development/python-modules/opentypespec/default.nix @@ -22,10 +22,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 b43534bfd8afd..51a18f4be190d 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/openwrt-luci-rpc/default.nix b/pkgs/development/python-modules/openwrt-luci-rpc/default.nix index 1d955c7c84468..d182cba6c4742 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/opt-einsum/default.nix b/pkgs/development/python-modules/opt-einsum/default.nix index 131d11d310c42..27728ab53f9a9 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 4f7c86d2a4816..92c429bfec938 100644 --- a/pkgs/development/python-modules/opuslib/default.nix +++ b/pkgs/development/python-modules/opuslib/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { "tests/{decoder,encoder,hl_decoder,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/ordered-set/default.nix b/pkgs/development/python-modules/ordered-set/default.nix index adaaa210cdd41..893732fe203f1 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/orderedmultidict/default.nix b/pkgs/development/python-modules/orderedmultidict/default.nix index 1d625b114f236..7c57507982b4d 100644 --- a/pkgs/development/python-modules/orderedmultidict/default.nix +++ b/pkgs/development/python-modules/orderedmultidict/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ six ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; - meta = with lib; { + meta = { description = "Ordered Multivalue Dictionary"; homepage = "https://github.com/gruns/orderedmultidict"; - license = licenses.publicDomain; - maintainers = with maintainers; [ vanzef ]; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ vanzef ]; }; } diff --git a/pkgs/development/python-modules/orderedset/default.nix b/pkgs/development/python-modules/orderedset/default.nix index a1835c6cdac6b..dd8f4a4b59d29 100644 --- a/pkgs/development/python-modules/orderedset/default.nix +++ b/pkgs/development/python-modules/orderedset/default.nix @@ -14,10 +14,10 @@ buildPythonPackage rec { sha256 = "0abf19w37kxypsj6v7dz79jj92y1kivjk2zivnrv7rw6bbxwrxdj"; }; - meta = with lib; { + meta = { description = "Ordered Set implementation in Cython"; homepage = "https://pypi.python.org/pypi/orderedset"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; # No support for Python 3.9/3.10 # https://github.com/simonpercivall/orderedset/issues/36 diff --git a/pkgs/development/python-modules/orgparse/default.nix b/pkgs/development/python-modules/orgparse/default.nix index 0ad3b30aaeba0..f75d80d45d65c 100644 --- a/pkgs/development/python-modules/orgparse/default.nix +++ b/pkgs/development/python-modules/orgparse/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { pyproject = true; - meta = with lib; { + meta = { homepage = "https://github.com/karlicoss/orgparse"; description = "orgparse - Emacs org-mode parser in Python"; - license = licenses.bsd2; - maintainers = with maintainers; [ twitchy0 ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ twitchy0 ]; }; } diff --git a/pkgs/development/python-modules/orm/default.nix b/pkgs/development/python-modules/orm/default.nix index 20825a18b5500..4393e18e5e06b 100644 --- a/pkgs/development/python-modules/orm/default.nix +++ b/pkgs/development/python-modules/orm/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "orm" ]; - meta = with lib; { + meta = { description = "Async ORM"; homepage = "https://github.com/encode/orm"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/orvibo/default.nix b/pkgs/development/python-modules/orvibo/default.nix index 15ff4dcee51bf..3f83167de4734 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 e06fa9be9f4be..9591b81f4d72d 100644 --- a/pkgs/development/python-modules/os-client-config/default.nix +++ b/pkgs/development/python-modules/os-client-config/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "os_client_config" ]; - meta = with lib; { + meta = { homepage = "https://opendev.org/openstack/os-client-config"; description = "Collect client configuration for using OpenStack in consistent and comprehensive manner"; - license = licenses.asl20; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/os-service-types/default.nix b/pkgs/development/python-modules/os-service-types/default.nix index e17e8f5fffe48..7e849fb37cc73 100644 --- a/pkgs/development/python-modules/os-service-types/default.nix +++ b/pkgs/development/python-modules/os-service-types/default.nix @@ -37,10 +37,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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/osc-diagram/default.nix b/pkgs/development/python-modules/osc-diagram/default.nix index a411e2b4824ef..1008dd4d3cecb 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 db1ecc6d51d25..d3999d958d8b4 100644 --- a/pkgs/development/python-modules/osc-lib/default.nix +++ b/pkgs/development/python-modules/osc-lib/default.nix @@ -61,10 +61,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "osc_lib" ]; - meta = with lib; { + meta = { description = "OpenStackClient Library"; homepage = "https://github.com/openstack/osc-lib"; - license = licenses.asl20; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/osc-sdk-python/default.nix b/pkgs/development/python-modules/osc-sdk-python/default.nix index b6841dd13c3ee..6956ffd8ba6d3 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; - maintainers = with maintainers; [ nicolas-goudry ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ nicolas-goudry ]; }; } diff --git a/pkgs/development/python-modules/osc/default.nix b/pkgs/development/python-modules/osc/default.nix index bb16aa7d40e08..4676b978d90c7 100644 --- a/pkgs/development/python-modules/osc/default.nix +++ b/pkgs/development/python-modules/osc/default.nix @@ -48,15 +48,15 @@ buildPythonPackage rec { preCheck = "HOME=$TOP/tmp"; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; 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 9889b746405a2..3f81b0d0e9375 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 ef90df289af64..8edc0ec3055bc 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/oset/default.nix b/pkgs/development/python-modules/oset/default.nix index e1c79446e3972..9b0d93fd20adb 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 7d69dcfcbaee8..96429c7b7ed02 100644 --- a/pkgs/development/python-modules/oslo-concurrency/default.nix +++ b/pkgs/development/python-modules/oslo-concurrency/default.nix @@ -72,11 +72,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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/oslo-config/default.nix b/pkgs/development/python-modules/oslo-config/default.nix index 9b4512e19f33a..99e2ca0745f68 100644 --- a/pkgs/development/python-modules/oslo-config/default.nix +++ b/pkgs/development/python-modules/oslo-config/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oslo_config" ]; - meta = with lib; { + meta = { description = "Oslo Configuration API"; homepage = "https://github.com/openstack/oslo.config"; - license = licenses.asl20; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/oslo-context/default.nix b/pkgs/development/python-modules/oslo-context/default.nix index 7c7cc9a181d55..fc75354b4d3bf 100644 --- a/pkgs/development/python-modules/oslo-context/default.nix +++ b/pkgs/development/python-modules/oslo-context/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oslo_context" ]; - meta = with lib; { + meta = { description = "Oslo Context library"; homepage = "https://github.com/openstack/oslo.context"; - license = licenses.asl20; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/oslo-db/default.nix b/pkgs/development/python-modules/oslo-db/default.nix index ad4e2a99b1955..8a7f13923996f 100644 --- a/pkgs/development/python-modules/oslo-db/default.nix +++ b/pkgs/development/python-modules/oslo-db/default.nix @@ -60,10 +60,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oslo_db" ]; - meta = with lib; { + meta = { description = "Oslo Database library"; homepage = "https://github.com/openstack/oslo.db"; - license = licenses.asl20; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/oslo-i18n/default.nix b/pkgs/development/python-modules/oslo-i18n/default.nix index 8e741a8b5781d..13f18d906da05 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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/oslo-serialization/default.nix b/pkgs/development/python-modules/oslo-serialization/default.nix index bbd930860ae5e..9a34ee33fbd05 100644 --- a/pkgs/development/python-modules/oslo-serialization/default.nix +++ b/pkgs/development/python-modules/oslo-serialization/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oslo_serialization" ]; - meta = with lib; { + meta = { description = "Oslo Serialization library"; homepage = "https://github.com/openstack/oslo.serialization"; - license = licenses.asl20; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/oslo-utils/default.nix b/pkgs/development/python-modules/oslo-utils/default.nix index 578e2dfdbf9a7..da30355ac939e 100644 --- a/pkgs/development/python-modules/oslo-utils/default.nix +++ b/pkgs/development/python-modules/oslo-utils/default.nix @@ -86,10 +86,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oslo_utils" ]; - meta = with lib; { + meta = { description = "Oslo Utility library"; homepage = "https://github.com/openstack/oslo.utils"; - license = licenses.asl20; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/oslotest/default.nix b/pkgs/development/python-modules/oslotest/default.nix index 9aebaf81d38cb..7a1c15be1f7b0 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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/osprofiler/default.nix b/pkgs/development/python-modules/osprofiler/default.nix index 01c8c09f1c156..dc5d56b359a5a 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"; - maintainers = teams.openstack.members; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/ots-python/default.nix b/pkgs/development/python-modules/ots-python/default.nix index 9c0ae3625c21d..02aea47729e0c 100644 --- a/pkgs/development/python-modules/ots-python/default.nix +++ b/pkgs/development/python-modules/ots-python/default.nix @@ -34,10 +34,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/outlines/default.nix b/pkgs/development/python-modules/outlines/default.nix index 82128f2383cbd..d7db009901f16 100644 --- a/pkgs/development/python-modules/outlines/default.nix +++ b/pkgs/development/python-modules/outlines/default.nix @@ -61,10 +61,10 @@ buildPythonPackage rec { python3 -c 'import outlines' ''; - meta = with lib; { + meta = { description = "Structured text generation"; homepage = "https://github.com/outlines-dev/outlines"; - license = licenses.asl20; - maintainers = with maintainers; [ lach ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lach ]; }; } diff --git a/pkgs/development/python-modules/overpy/default.nix b/pkgs/development/python-modules/overpy/default.nix index ad08945d95e3c..1a46db3825de1 100644 --- a/pkgs/development/python-modules/overpy/default.nix +++ b/pkgs/development/python-modules/overpy/default.nix @@ -33,10 +33,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/ovmfvartool/default.nix b/pkgs/development/python-modules/ovmfvartool/default.nix index aaee10b25a37e..8bef88eb42b6b 100644 --- a/pkgs/development/python-modules/ovmfvartool/default.nix +++ b/pkgs/development/python-modules/ovmfvartool/default.nix @@ -24,12 +24,12 @@ buildPythonPackage rec { 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/oyaml/default.nix b/pkgs/development/python-modules/oyaml/default.nix index ffa881c8c06e3..2c70335feda1d 100644 --- a/pkgs/development/python-modules/oyaml/default.nix +++ b/pkgs/development/python-modules/oyaml/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { 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/packbits/default.nix b/pkgs/development/python-modules/packbits/default.nix index c47983b060f11..95f72c2909dbd 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/pad4pi/default.nix b/pkgs/development/python-modules/pad4pi/default.nix index a5e0a8ebca69d..6d1d979a29dfc 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 351c617d8ca0f..07b1eaf62686a 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 60049696b4984..9ec16df309e07 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/paho-mqtt/1.nix b/pkgs/development/python-modules/paho-mqtt/1.nix index 437f7899fad04..49cce81f2e295 100644 --- a/pkgs/development/python-modules/paho-mqtt/1.nix +++ b/pkgs/development/python-modules/paho-mqtt/1.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "paho.mqtt" ]; - meta = with lib; { + meta = { description = "MQTT version 3.1.1 client class"; homepage = "https://eclipse.org/paho"; - license = licenses.epl10; - maintainers = with maintainers; [ + license = lib.licenses.epl10; + 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 8ea9f3b6d9fac..02eb15ae582a1 100644 --- a/pkgs/development/python-modules/palace/default.nix +++ b/pkgs/development/python-modules/palace/default.nix @@ -43,10 +43,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/pamela/default.nix b/pkgs/development/python-modules/pamela/default.nix index 746beca0a9cf2..328865d0836fa 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/panacotta/default.nix b/pkgs/development/python-modules/panacotta/default.nix index d9f198ea9ba81..9b4bd1ffa2bea 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 0520c04d23918..aaf21fa3b025b 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-stubs/default.nix b/pkgs/development/python-modules/pandas-stubs/default.nix index c943f18a6e8b0..158e0c2d8502b 100644 --- a/pkgs/development/python-modules/pandas-stubs/default.nix +++ b/pkgs/development/python-modules/pandas-stubs/default.nix @@ -100,10 +100,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pandas" ]; - meta = with lib; { + meta = { description = "Type annotations for Pandas"; homepage = "https://github.com/pandas-dev/pandas-stubs"; - license = licenses.mit; - maintainers = with maintainers; [ malo ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ malo ]; }; } diff --git a/pkgs/development/python-modules/pandas/default.nix b/pkgs/development/python-modules/pandas/default.nix index 241f60fa75fed..7e001862f23ab 100644 --- a/pkgs/development/python-modules/pandas/default.nix +++ b/pkgs/development/python-modules/pandas/default.nix @@ -237,20 +237,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/pandoc-xnos/default.nix b/pkgs/development/python-modules/pandoc-xnos/default.nix index af8c05f9a9ebd..4f673facba5df 100644 --- a/pkgs/development/python-modules/pandoc-xnos/default.nix +++ b/pkgs/development/python-modules/pandoc-xnos/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { # tests need some patching doCheck = false; - meta = with lib; { + meta = { description = "Pandoc filter suite providing facilities for cross-referencing in markdown documents"; mainProgram = "pandoc-xnos"; homepage = "https://github.com/tomduck/pandoc-xnos"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ ppenguin ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ppenguin ]; }; } diff --git a/pkgs/development/python-modules/pandocfilters/default.nix b/pkgs/development/python-modules/pandocfilters/default.nix index 876637cdfe516..775d2e0af98c3 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/panphon/default.nix b/pkgs/development/python-modules/panphon/default.nix index 6190a4bc9ad2b..a65b88c299b5e 100644 --- a/pkgs/development/python-modules/panphon/default.nix +++ b/pkgs/development/python-modules/panphon/default.nix @@ -52,10 +52,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/parameter-expansion-patched/default.nix b/pkgs/development/python-modules/parameter-expansion-patched/default.nix index 0ef4297214086..06ba855e3406f 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/paranoid-crypto/default.nix b/pkgs/development/python-modules/paranoid-crypto/default.nix index 206fd2acf1c34..3c6c224e7f363 100644 --- a/pkgs/development/python-modules/paranoid-crypto/default.nix +++ b/pkgs/development/python-modules/paranoid-crypto/default.nix @@ -60,10 +60,10 @@ buildPythonPackage rec { 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/parfive/default.nix b/pkgs/development/python-modules/parfive/default.nix index 4751f655974df..d23b3d15d1014 100644 --- a/pkgs/development/python-modules/parfive/default.nix +++ b/pkgs/development/python-modules/parfive/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "parfive" ]; - meta = with lib; { + meta = { description = "HTTP and FTP parallel file downloader"; mainProgram = "parfive"; homepage = "https://parfive.readthedocs.io/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/parse-type/default.nix b/pkgs/development/python-modules/parse-type/default.nix index 03c0e9e44a4e2..3e28578a3b0e5 100644 --- a/pkgs/development/python-modules/parse-type/default.nix +++ b/pkgs/development/python-modules/parse-type/default.nix @@ -36,10 +36,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 4cc83d5879f07..0a2e423a5b5df 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 b187ba40a2780..21d857a83541a 100644 --- a/pkgs/development/python-modules/parsedatetime/default.nix +++ b/pkgs/development/python-modules/parsedatetime/default.nix @@ -33,10 +33,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/parsimonious/default.nix b/pkgs/development/python-modules/parsimonious/default.nix index c99aafd447ea2..0bc0305f4c78b 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 7da4675609d47..2e5c8b8721622 100644 --- a/pkgs/development/python-modules/parsley/default.nix +++ b/pkgs/development/python-modules/parsley/default.nix @@ -15,10 +15,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 e39173147e7d2..b7248d9a1b413 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/parts/default.nix b/pkgs/development/python-modules/parts/default.nix index 33a8c7da39481..1677564d49a21 100644 --- a/pkgs/development/python-modules/parts/default.nix +++ b/pkgs/development/python-modules/parts/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "parts" ]; - meta = with lib; { + meta = { description = "Library for common list functions related to partitioning lists"; homepage = "https://github.com/lapets/parts"; - 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/parver/default.nix b/pkgs/development/python-modules/parver/default.nix index af12a98352838..9bec2b1c346bb 100644 --- a/pkgs/development/python-modules/parver/default.nix +++ b/pkgs/development/python-modules/parver/default.nix @@ -35,10 +35,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/pastel/default.nix b/pkgs/development/python-modules/pastel/default.nix index 2ed649704fe12..60ac6810eea64 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 384ca52949ec0..fe0ceba5a4cf7 100644 --- a/pkgs/development/python-modules/pastescript/default.nix +++ b/pkgs/development/python-modules/pastescript/default.nix @@ -44,11 +44,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 ea0f1ce93b9db..92183d62a3cbb 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; - maintainers = with maintainers; [ y0no ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ y0no ]; }; } diff --git a/pkgs/development/python-modules/patch-ng/default.nix b/pkgs/development/python-modules/patch-ng/default.nix index cf0d81c7bd9ea..5b114e81d7744 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 1dea1cf9f1784..a2488a6214f60 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 09918dec93094..769003db0f8a6 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/pathlib2/default.nix b/pkgs/development/python-modules/pathlib2/default.nix index c439b1b04cf9f..9d26e896bcad9 100644 --- a/pkgs/development/python-modules/pathlib2/default.nix +++ b/pkgs/development/python-modules/pathlib2/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { export LC_ALL="en_US.UTF-8" ''; - 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/pathtools/default.nix b/pkgs/development/python-modules/pathtools/default.nix index b34a24ea6f4bc..a15226a69292d 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/pathy/default.nix b/pkgs/development/python-modules/pathy/default.nix index fa7286d468793..3a75ce0af3296 100644 --- a/pkgs/development/python-modules/pathy/default.nix +++ b/pkgs/development/python-modules/pathy/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pathy" ]; - meta = with lib; { + meta = { 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/patool/default.nix b/pkgs/development/python-modules/patool/default.nix index b42c95661b57c..34e36b16592dd 100644 --- a/pkgs/development/python-modules/patool/default.nix +++ b/pkgs/development/python-modules/patool/default.nix @@ -72,11 +72,11 @@ buildPythonPackage rec { "test_p7azip" ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ "test_ar" ]; - meta = with lib; { + meta = { description = "portable archive file manager"; mainProgram = "patool"; homepage = "https://wummel.github.io/patool/"; - license = licenses.gpl3; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/development/python-modules/patrowl4py/default.nix b/pkgs/development/python-modules/patrowl4py/default.nix index ada7a272918fe..84ab58ebdcce1 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/paypalrestsdk/default.nix b/pkgs/development/python-modules/paypalrestsdk/default.nix index ed728e0fe1e8b..a458fda76e4e9 100644 --- a/pkgs/development/python-modules/paypalrestsdk/default.nix +++ b/pkgs/development/python-modules/paypalrestsdk/default.nix @@ -34,7 +34,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "paypalrestsdk" ]; - meta = with lib; { + meta = { description = "Python APIs to create, process and manage payment"; homepage = "https://github.com/paypal/PayPal-Python-SDK"; changelog = "https://github.com/paypal/PayPal-Python-SDK/blob/master/CHANGELOG.md"; diff --git a/pkgs/development/python-modules/pbar/default.nix b/pkgs/development/python-modules/pbar/default.nix index 91c194ceb9e42..c4dc1393e63fe 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/pbkdf2/default.nix b/pkgs/development/python-modules/pbkdf2/default.nix index 138a9489ac327..53b81d67b4c5b 100644 --- a/pkgs/development/python-modules/pbkdf2/default.nix +++ b/pkgs/development/python-modules/pbkdf2/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { # ImportError: No module named test doCheck = false; - meta = with lib; { - maintainers = with maintainers; [ domenkozar ]; + meta = { + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/pbr/default.nix b/pkgs/development/python-modules/pbr/default.nix index d500a215be114..67ac7770842df 100644 --- a/pkgs/development/python-modules/pbr/default.nix +++ b/pkgs/development/python-modules/pbr/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pbr" ]; - meta = with lib; { + meta = { description = "Python Build Reasonableness"; mainProgram = "pbr"; homepage = "https://github.com/openstack/pbr"; - license = licenses.asl20; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/pcapy-ng/default.nix b/pkgs/development/python-modules/pcapy-ng/default.nix index 97313c157072e..323b99461989a 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 { pytestFlagsArray = [ "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/pcodedmp/default.nix b/pkgs/development/python-modules/pcodedmp/default.nix index eef04412632a0..a0b1965f65a89 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 60dba3332b9c0..e160b3236215b 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/pdfkit/default.nix b/pkgs/development/python-modules/pdfkit/default.nix index 2ed46f02c65d4..f46b6263d183b 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 d5c889185d0fe..78bc31490d8b8 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 = "pdfrw is a 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 55373aaca9062..1d27e45de8229 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 a5d58d186fb8d..ac71960910f2e 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-pep517/default.nix b/pkgs/development/python-modules/pdm-pep517/default.nix index f914b5b86ed91..f752d474e1f3f 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/pecan/default.nix b/pkgs/development/python-modules/pecan/default.nix index 24b9cddf97b4b..cf8c215470b28 100644 --- a/pkgs/development/python-modules/pecan/default.nix +++ b/pkgs/development/python-modules/pecan/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pecan" ]; - meta = with lib; { + meta = { changelog = "https://pecan.readthedocs.io/en/latest/changes.html"; description = "WSGI object-dispatching web framework"; homepage = "https://www.pecanpy.org/"; - license = licenses.bsd3; - maintainers = with maintainers; [ applePrincess ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ applePrincess ]; }; } diff --git a/pkgs/development/python-modules/peewee-migrate/default.nix b/pkgs/development/python-modules/peewee-migrate/default.nix index f07be16744b1c..7bcab7117eb8b 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/pencompy/default.nix b/pkgs/development/python-modules/pencompy/default.nix index 3bf69fa1192dd..06fd15b8c8525 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/pep440/default.nix b/pkgs/development/python-modules/pep440/default.nix index 8bf685faaecc1..213a7e70a633f 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/default.nix b/pkgs/development/python-modules/pep8/default.nix index 7a9c442d4219c..0154616fea390 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 1fb8d48a05e55..d41ea6eab82b5 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 = with maintainers; [ domenkozar ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ domenkozar ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/percol/default.nix b/pkgs/development/python-modules/percol/default.nix index 9e0ec0df24eab..b58592f863972 100644 --- a/pkgs/development/python-modules/percol/default.nix +++ b/pkgs/development/python-modules/percol/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "percol" ]; - meta = with lib; { + meta = { homepage = "https://github.com/mooz/percol"; description = "Adds flavor of interactive filtering to the traditional pipe concept of shell"; mainProgram = "percol"; - license = licenses.mit; - maintainers = with maintainers; [ koral ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ koral ]; }; } diff --git a/pkgs/development/python-modules/persist-queue/default.nix b/pkgs/development/python-modules/persist-queue/default.nix index bbadd55d3afe3..4883db4ee935f 100644 --- a/pkgs/development/python-modules/persist-queue/default.nix +++ b/pkgs/development/python-modules/persist-queue/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "persistqueue" ]; - meta = with lib; { + meta = { description = "Thread-safe disk based persistent queue in Python"; homepage = "https://github.com/peter-wangxu/persist-queue"; - license = licenses.bsd3; - maintainers = with maintainers; [ huantian ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ huantian ]; }; } diff --git a/pkgs/development/python-modules/persisting-theory/default.nix b/pkgs/development/python-modules/persisting-theory/default.nix index 9dca828eb3672..5f6ff5f7e7daa 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 aec7138b7795b..7cda84d7c6e05 100644 --- a/pkgs/development/python-modules/pescea/default.nix +++ b/pkgs/development/python-modules/pescea/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { 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/pexif/default.nix b/pkgs/development/python-modules/pexif/default.nix index 9b2f9e16ead9a..4d105fbaf76c1 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/pfzy/default.nix b/pkgs/development/python-modules/pfzy/default.nix index dfd3f4ec2f042..263cd6235776f 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 2607688f4cf55..c0cd85556349f 100644 --- a/pkgs/development/python-modules/pg8000/default.nix +++ b/pkgs/development/python-modules/pg8000/default.nix @@ -39,12 +39,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 ]; - maintainers = with maintainers; [ domenkozar ]; - platforms = platforms.unix; + license = with lib.licenses; [ bsd3 ]; + maintainers = with lib.maintainers; [ domenkozar ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/pgpdump/default.nix b/pkgs/development/python-modules/pgpdump/default.nix index 832b2e46c960a..e49def42fc4fc 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 df957c92c6868..d9d2513caaa47 100644 --- a/pkgs/development/python-modules/pgsanity/default.nix +++ b/pkgs/development/python-modules/pgsanity/default.nix @@ -25,7 +25,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ postgresql ]; - meta = with lib; { + meta = { homepage = "https://github.com/markdrago/pgsanity"; description = "Checks the syntax of Postgresql SQL files"; mainProgram = "pgsanity"; @@ -36,7 +36,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/phe/default.nix b/pkgs/development/python-modules/phe/default.nix index c48e4a8ab41ac..aea25b378ea31 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/phone-modem/default.nix b/pkgs/development/python-modules/phone-modem/default.nix index aea3e26e3e6a0..de2ed31420450 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/phply/default.nix b/pkgs/development/python-modules/phply/default.nix index b3550f79a49fa..392c5e264a33c 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/phx-class-registry/default.nix b/pkgs/development/python-modules/phx-class-registry/default.nix index d3097872fe38c..5cf659210078d 100644 --- a/pkgs/development/python-modules/phx-class-registry/default.nix +++ b/pkgs/development/python-modules/phx-class-registry/default.nix @@ -22,11 +22,11 @@ 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; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hrdinka ]; }; diff --git a/pkgs/development/python-modules/pi1wire/default.nix b/pkgs/development/python-modules/pi1wire/default.nix index 5ba5ef0aa870a..6795974c7a7bc 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 788c3cf0bfc26..e35e16a1be148 100644 --- a/pkgs/development/python-modules/piano-transcription-inference/default.nix +++ b/pkgs/development/python-modules/piano-transcription-inference/default.nix @@ -70,10 +70,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 edbc5c1e0dfa6..e4c9c858642cc 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; - maintainers = with maintainers; [ gebner ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gebner ]; }; } diff --git a/pkgs/development/python-modules/pickleshare/default.nix b/pkgs/development/python-modules/pickleshare/default.nix index be52d4d0e4f17..59ae4082f783b 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 157a1325858df..df0f87ea97e0e 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 5037f306ac539..b2d71e7551edc 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 0add8799be8b2..72a303014c9b4 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 6fc53f1bec978..ac08df1e2f942 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 9abd4d5cdc108..5ef21ec158a91 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 1f4513ec6d893..a0f80ec8e1d47 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 1a458de4076ac..9292a70487a21 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/pilkit/default.nix b/pkgs/development/python-modules/pilkit/default.nix index 6866c568c09d0..9cd2ee32e9a38 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/pillowfight/default.nix b/pkgs/development/python-modules/pillowfight/default.nix index e4536867e074d..14c705e018084 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/pinboard/default.nix b/pkgs/development/python-modules/pinboard/default.nix index dd4e489defd63..18cbbe46128c4 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 548e38c388d55..b471f45dd4496 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/pip-system-certs/default.nix b/pkgs/development/python-modules/pip-system-certs/default.nix index 0476aed562123..06721b49d2ebb 100644 --- a/pkgs/development/python-modules/pip-system-certs/default.nix +++ b/pkgs/development/python-modules/pip-system-certs/default.nix @@ -32,10 +32,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/pipdate/default.nix b/pkgs/development/python-modules/pipdate/default.nix index 87d275cf7c0b8..3fb2f93a791ce 100644 --- a/pkgs/development/python-modules/pipdate/default.nix +++ b/pkgs/development/python-modules/pipdate/default.nix @@ -36,11 +36,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/piqp/default.nix b/pkgs/development/python-modules/piqp/default.nix index 22ab19aa442c3..c431016137f15 100644 --- a/pkgs/development/python-modules/piqp/default.nix +++ b/pkgs/development/python-modules/piqp/default.nix @@ -74,10 +74,10 @@ buildPythonPackage rec { scipy ]; - meta = with lib; { + meta = { description = "A Proximal Interior Point Quadratic Programming solver"; homepage = "https://github.com/PREDICT-EPFL/piqp"; - license = licenses.bsd2; - maintainers = with maintainers; [ renesat ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ renesat ]; }; } diff --git a/pkgs/development/python-modules/pivy/default.nix b/pkgs/development/python-modules/pivy/default.nix index 57c813b3c4158..10908623efca6 100644 --- a/pkgs/development/python-modules/pivy/default.nix +++ b/pkgs/development/python-modules/pivy/default.nix @@ -65,10 +65,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pivy" ]; - meta = with lib; { + meta = { homepage = "https://github.com/coin3d/pivy/"; description = "Python binding for Coin"; - license = licenses.bsd0; - maintainers = with maintainers; [ gebner ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ gebner ]; }; } diff --git a/pkgs/development/python-modules/pixcat/default.nix b/pkgs/development/python-modules/pixcat/default.nix index 0ca0a099f39bd..af0e9cd067a03 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 1628276f5b19d..0a6a3f19c2d4c 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 08539054316a7..d59f7f32be53e 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/pkgconfig/default.nix b/pkgs/development/python-modules/pkgconfig/default.nix index aa69c7f286ca9..4f19caa992966 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 c46bf6f66ea65..d4ef02622e698 100644 --- a/pkgs/development/python-modules/pkginfo2/default.nix +++ b/pkgs/development/python-modules/pkginfo2/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pkginfo2" ]; - meta = with lib; { + meta = { description = "Query metadatdata from sdists, bdists or installed packages"; mainProgram = "pkginfo2"; homepage = "https://github.com/nexB/pkginfo2"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pkuseg/default.nix b/pkgs/development/python-modules/pkuseg/default.nix index 5afc1ceeb89cf..a74da172d232a 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 a70a39c709fd3..e8ce113998dc8 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 0f8e2a7a3bb67..047815f64513a 100644 --- a/pkgs/development/python-modules/plaid-python/default.nix +++ b/pkgs/development/python-modules/plaid-python/default.nix @@ -35,11 +35,11 @@ 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; - maintainers = with maintainers; [ bhipple ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bhipple ]; }; } diff --git a/pkgs/development/python-modules/plantuml/default.nix b/pkgs/development/python-modules/plantuml/default.nix index 068bbfd899af7..29d89e69935ea 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 0585d596e74ad..05e7a02e49b77 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 54537341ba385..d62fd73a34806 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; - maintainers = with maintainers; [ ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/playwright-stealth/default.nix b/pkgs/development/python-modules/playwright-stealth/default.nix index 0ee048182ba6a..2a48f01ea020a 100644 --- a/pkgs/development/python-modules/playwright-stealth/default.nix +++ b/pkgs/development/python-modules/playwright-stealth/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "playwright_stealth" ]; - meta = with lib; { + meta = { description = "Playwright stealth"; homepage = "https://github.com/AtuboDad/playwright_stealth"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/playwright/default.nix b/pkgs/development/python-modules/playwright/default.nix index d230e237cec69..840edd5bf5f3a 100644 --- a/pkgs/development/python-modules/playwright/default.nix +++ b/pkgs/development/python-modules/playwright/default.nix @@ -108,12 +108,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/pleroma-bot/default.nix b/pkgs/development/python-modules/pleroma-bot/default.nix index 9678a3449f823..93787466723c6 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/plexauth/default.nix b/pkgs/development/python-modules/plexauth/default.nix index 7e4767c76c602..05dc4feeb3971 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; - maintainers = with maintainers; [ ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/ploomber-extension/default.nix b/pkgs/development/python-modules/ploomber-extension/default.nix index c19c0267fe41e..14f0e7896b862 100644 --- a/pkgs/development/python-modules/ploomber-extension/default.nix +++ b/pkgs/development/python-modules/ploomber-extension/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ploomber_extension" ]; - meta = with lib; { + meta = { description = "Ploomber extension"; homepage = "https://pypi.org/project/ploomber-extension"; - license = licenses.bsd3; - maintainers = with maintainers; [ euxane ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ euxane ]; }; } diff --git a/pkgs/development/python-modules/plotext/default.nix b/pkgs/development/python-modules/plotext/default.nix index 614a09e78bed1..a9ca38f8f4772 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/pluginbase/default.nix b/pkgs/development/python-modules/pluginbase/default.nix index cc330ac93f9b6..da07527630f6a 100644 --- a/pkgs/development/python-modules/pluginbase/default.nix +++ b/pkgs/development/python-modules/pluginbase/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { PYTHONPATH=.. pytest ''; - meta = with lib; { + meta = { homepage = "https://github.com/mitsuhiko/pluginbase"; description = "Support library for building plugins sytems in Python"; - license = licenses.bsd3; - platforms = platforms.all; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/plugnplay/default.nix b/pkgs/development/python-modules/plugnplay/default.nix index 4882641e538ea..bd909a8357e53 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 0cc356e3d15b5..d0ee1422b4673 100644 --- a/pkgs/development/python-modules/plugp100/default.nix +++ b/pkgs/development/python-modules/plugp100/default.nix @@ -52,10 +52,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/pluthon/default.nix b/pkgs/development/python-modules/pluthon/default.nix index 21994bd0817e1..71468e2dc53e4 100644 --- a/pkgs/development/python-modules/pluthon/default.nix +++ b/pkgs/development/python-modules/pluthon/default.nix @@ -31,10 +31,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; [ t4ccer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ t4ccer ]; }; } diff --git a/pkgs/development/python-modules/plux/default.nix b/pkgs/development/python-modules/plux/default.nix index 3c726b7d3b366..0a40b3170d3bf 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/plyer/default.nix b/pkgs/development/python-modules/plyer/default.nix index b0d20de574005..1f47de9e80db3 100644 --- a/pkgs/development/python-modules/plyer/default.nix +++ b/pkgs/development/python-modules/plyer/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "plyer" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Plyer is a platform-independent api to use features commonly found on various platforms"; homepage = "https://github.com/kivy/plyer"; - license = licenses.mit; - maintainers = with maintainers; [ rski ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rski ]; }; } diff --git a/pkgs/development/python-modules/plyfile/default.nix b/pkgs/development/python-modules/plyfile/default.nix index d8379c5654cae..dd9b51d0e8f93 100644 --- a/pkgs/development/python-modules/plyfile/default.nix +++ b/pkgs/development/python-modules/plyfile/default.nix @@ -31,9 +31,9 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "NumPy-based text/binary PLY file reader/writer for Python"; homepage = "https://github.com/dranjan/python-plyfile"; - maintainers = with maintainers; [ abbradar ]; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/plyvel/default.nix b/pkgs/development/python-modules/plyvel/default.nix index 5e7874057258a..6525ee68dade8 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 436a8bbd15dd2..3b4602ffd817b 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; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pmsensor/default.nix b/pkgs/development/python-modules/pmsensor/default.nix index 0ec79d38ff130..a13f92af4b7e1 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 a46359bf76e52..72c8b2ec5d7b2 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 05b15b5c4d6a4..eb857ed6abd7f 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; - maintainers = with maintainers; [ ericsagnes ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ericsagnes ]; }; } diff --git a/pkgs/development/python-modules/podcastparser/default.nix b/pkgs/development/python-modules/podcastparser/default.nix index 83facbf20fc19..076302d94e2a9 100644 --- a/pkgs/development/python-modules/podcastparser/default.nix +++ b/pkgs/development/python-modules/podcastparser/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "podcastparser" ]; - meta = with lib; { + meta = { description = "Module to parse podcasts"; homepage = "http://gpodder.org/podcastparser/"; - license = licenses.bsd2; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ mic92 ]; }; } diff --git a/pkgs/development/python-modules/poetry-semver/default.nix b/pkgs/development/python-modules/poetry-semver/default.nix index df4ef9c76f0e0..4525ee83f83c5 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 fc0afe375f460..05813874c7cf8 100644 --- a/pkgs/development/python-modules/polarizationsolver/default.nix +++ b/pkgs/development/python-modules/polarizationsolver/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { 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 c4f4726c5e891..f7370bbc27e52 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/policyuniverse/default.nix b/pkgs/development/python-modules/policyuniverse/default.nix index 99a37254018c9..e061475f75d74 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 bbf858356234b..c9bc91bdd0b6c 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 80a3a5ea7256a..932208227dbf0 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/pomegranate/default.nix b/pkgs/development/python-modules/pomegranate/default.nix index 071c15c7e1003..63f1369673579 100644 --- a/pkgs/development/python-modules/pomegranate/default.nix +++ b/pkgs/development/python-modules/pomegranate/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { # https://github.com/etal/cnvkit/issues/815 passthru.skipBulkUpdate = true; - meta = with lib; { + meta = { description = "Probabilistic and graphical models for Python, implemented in cython for speed"; homepage = "https://github.com/jmschrei/pomegranate"; - license = licenses.mit; - maintainers = with maintainers; [ rybern ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rybern ]; }; } diff --git a/pkgs/development/python-modules/ponywhoosh/default.nix b/pkgs/development/python-modules/ponywhoosh/default.nix index 52d982173d479..4d067f0b0af48 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 ed35b18025ceb..0d4a176d39526 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; - maintainers = with maintainers; [ GuillaumeDesforges ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ GuillaumeDesforges ]; }; } diff --git a/pkgs/development/python-modules/poolsense/default.nix b/pkgs/development/python-modules/poolsense/default.nix index fb69913c6bc15..08535bd38102c 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 0ac8753d382dc..d195514519298 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/portend/default.nix b/pkgs/development/python-modules/portend/default.nix index 35bf5d1a8be5d..51a514ade946f 100644 --- a/pkgs/development/python-modules/portend/default.nix +++ b/pkgs/development/python-modules/portend/default.nix @@ -31,9 +31,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 61fd71319fad4..af121e663f1ca 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 6c78fc34830db..df1e1087db20e 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 0f144a6614578..1e9d8b953b894 100644 --- a/pkgs/development/python-modules/pot/default.nix +++ b/pkgs/development/python-modules/pot/default.nix @@ -134,10 +134,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 fcf1f4e0701d5..5aa8949867ffa 100644 --- a/pkgs/development/python-modules/potr/default.nix +++ b/pkgs/development/python-modules/potr/default.nix @@ -16,10 +16,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 708f3e40a222e..aef9acaf2bcf9 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 99a38c7d6248b..faaeb8890b7fd 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 43c30cd6d5743..036a4c1b32cc2 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 6b18f11fd5caf..37e1fb3e99c8e 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 9685a656480c9..a9b5c080819c3 100644 --- a/pkgs/development/python-modules/ppdeep/default.nix +++ b/pkgs/development/python-modules/ppdeep/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "ppdeep" ]; - meta = with lib; { + meta = { description = "Python library for computing fuzzy hashes (ssdeep)"; homepage = "https://github.com/elceef/ppdeep"; - 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/pplpy/default.nix b/pkgs/development/python-modules/pplpy/default.nix index d9684090774a7..80af6ea2519a4 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"; - maintainers = teams.sage.members; - license = licenses.gpl3; + maintainers = lib.teams.sage.members; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/pproxy/default.nix b/pkgs/development/python-modules/pproxy/default.nix index c08d2de25aa8d..8c221636aa330 100644 --- a/pkgs/development/python-modules/pproxy/default.nix +++ b/pkgs/development/python-modules/pproxy/default.nix @@ -46,11 +46,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; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/pq/default.nix b/pkgs/development/python-modules/pq/default.nix index 533382cdca269..63f4fc43c8485 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/preggy/default.nix b/pkgs/development/python-modules/preggy/default.nix index 4281e6de0edfd..edbabb98ccef2 100644 --- a/pkgs/development/python-modules/preggy/default.nix +++ b/pkgs/development/python-modules/preggy/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { sha256 = "25ba803afde4f35ef543a60915ced2e634926235064df717c3cb3e4e3eb4670c"; }; - 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 58c381d047409..3c21dd84ec48e 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/preshed/default.nix b/pkgs/development/python-modules/preshed/default.nix index 1ca058038fbfa..f93a40cf09d62 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 f35fcb5e9c872..4e053679237e7 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 64e769b8ddd94..e5a56712300fb 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 1d9a31791e237..ec63ec029d550 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/"; - maintainers = teams.sage.members; - license = licenses.gpl3Only; + maintainers = lib.teams.sage.members; + license = lib.licenses.gpl3Only; }; } diff --git a/pkgs/development/python-modules/primepy/default.nix b/pkgs/development/python-modules/primepy/default.nix index f8c7dff7b9eb4..4e44394cfec77 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/priority/default.nix b/pkgs/development/python-modules/priority/default.nix index 9ab126ec911bc..511140ae952a5 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/prison/default.nix b/pkgs/development/python-modules/prison/default.nix index 5abb41f269103..4469ef96329f5 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 3f557c8de242d..1f28517d8a4cf 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/proglog/default.nix b/pkgs/development/python-modules/proglog/default.nix index ebb674d14bda9..de152fe04fdab 100644 --- a/pkgs/development/python-modules/proglog/default.nix +++ b/pkgs/development/python-modules/proglog/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ 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 20c2954a10f70..b15378bdce099 100644 --- a/pkgs/development/python-modules/progress/default.nix +++ b/pkgs/development/python-modules/progress/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { ${python.interpreter} test_progress.py ''; - 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 beae027d52d46..a489225b10979 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/progressbar2/default.nix b/pkgs/development/python-modules/progressbar2/default.nix index b10e37b9d4615..2ca8a9d3a7129 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 ba11ecd893ded..41e9665ba20e7 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-flask-exporter/default.nix b/pkgs/development/python-modules/prometheus-flask-exporter/default.nix index 2aa6ce30ebe4e..fef4635eadf92 100644 --- a/pkgs/development/python-modules/prometheus-flask-exporter/default.nix +++ b/pkgs/development/python-modules/prometheus-flask-exporter/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pytestFlagsArray = [ "tests/" ]; - 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 670d9c4cf5607..3b4f8549e3620 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/property-manager/default.nix b/pkgs/development/python-modules/property-manager/default.nix index 71fa0e1aeddbb..d714139337302 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/proto-plus/default.nix b/pkgs/development/python-modules/proto-plus/default.nix index 1652041c7da79..6304d3b54341e 100644 --- a/pkgs/development/python-modules/proto-plus/default.nix +++ b/pkgs/development/python-modules/proto-plus/default.nix @@ -33,10 +33,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 08bf15d93fb51..6b2065500ba0b 100644 --- a/pkgs/development/python-modules/protobuf/3.nix +++ b/pkgs/development/python-modules/protobuf/3.nix @@ -83,10 +83,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; - maintainers = with maintainers; [ ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/protobuf/4.nix b/pkgs/development/python-modules/protobuf/4.nix index c4db1b86e164b..a5ebcb292667a 100644 --- a/pkgs/development/python-modules/protobuf/4.nix +++ b/pkgs/development/python-modules/protobuf/4.nix @@ -126,11 +126,11 @@ 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; - maintainers = with maintainers; [ ]; + license = lib.licenses.bsd3; + maintainers = with lib.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 e613c1d23eb28..1e841f4d9922e 100644 --- a/pkgs/development/python-modules/protobuf3-to-dict/default.nix +++ b/pkgs/development/python-modules/protobuf3-to-dict/default.nix @@ -25,10 +25,10 @@ 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; - maintainers = with maintainers; [ nequissimus ]; + license = lib.licenses.publicDomain; + maintainers = with lib.maintainers; [ nequissimus ]; }; } diff --git a/pkgs/development/python-modules/proton-client/default.nix b/pkgs/development/python-modules/proton-client/default.nix index 4e178ce26c929..d4e250d2658ee 100644 --- a/pkgs/development/python-modules/proton-client/default.nix +++ b/pkgs/development/python-modules/proton-client/default.nix @@ -53,11 +53,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 8e69e1c743d3c..4402a1da96fde 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; [ Madouura cafkafk ]; diff --git a/pkgs/development/python-modules/protonvpn-nm-lib/default.nix b/pkgs/development/python-modules/protonvpn-nm-lib/default.nix index ff647a2582bdd..1dcebdc2f3c46 100644 --- a/pkgs/development/python-modules/protonvpn-nm-lib/default.nix +++ b/pkgs/development/python-modules/protonvpn-nm-lib/default.nix @@ -71,12 +71,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "protonvpn_nm_lib" ]; - meta = with lib; { + meta = { description = "ProtonVPN NetworkManager Library intended for every ProtonVPN service user"; mainProgram = "protonvpn_reconnector.py"; homepage = "https://github.com/ProtonVPN/protonvpn-nm-lib"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/prov/default.nix b/pkgs/development/python-modules/prov/default.nix index f4606cda7f48d..e63a17a50e2ec 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 ee2862361081f..9021664ef10e6 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/proxy-tools/default.nix b/pkgs/development/python-modules/proxy-tools/default.nix index b7c858d052005..35186b2758352 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 605936dd86376..cd3168a4daee4 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/psycopg2/default.nix b/pkgs/development/python-modules/psycopg2/default.nix index 5b8501a29cdb7..2dcbfae379cb9 100644 --- a/pkgs/development/python-modules/psycopg2/default.nix +++ b/pkgs/development/python-modules/psycopg2/default.nix @@ -65,10 +65,10 @@ buildPythonPackage rec { buildPackages.postgresql ]; - 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 f2954a44d3016..458cd92f7a5c8 100644 --- a/pkgs/development/python-modules/psycopg2cffi/default.nix +++ b/pkgs/development/python-modules/psycopg2cffi/default.nix @@ -58,10 +58,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/ptable/default.nix b/pkgs/development/python-modules/ptable/default.nix index d88a7433f068e..9f1c55f8937a5 100644 --- a/pkgs/development/python-modules/ptable/default.nix +++ b/pkgs/development/python-modules/ptable/default.nix @@ -23,11 +23,11 @@ buildPythonPackage { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/kxxoling/PTable"; description = "Simple Python library designed to make it quick and easy to represent tabular data in visually appealing ASCII tables"; mainProgram = "ptable"; - license = licenses.bsd3; - maintainers = [ maintainers.mmahut ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.mmahut ]; }; } diff --git a/pkgs/development/python-modules/publicsuffix/default.nix b/pkgs/development/python-modules/publicsuffix/default.nix index c0f0d87477ff5..b3cb03d018582 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 c11880a620c36..227fab9e1ee5a 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/pubnubsub-handler/default.nix b/pkgs/development/python-modules/pubnubsub-handler/default.nix index 8938d9df1ce44..042226cd7c9ec 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/pueblo/default.nix b/pkgs/development/python-modules/pueblo/default.nix index 2c5d4690d4015..adb0060645f50 100644 --- a/pkgs/development/python-modules/pueblo/default.nix +++ b/pkgs/development/python-modules/pueblo/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pueblo" ]; - meta = with lib; { + meta = { description = "Pueblo - a Python toolbox library"; homepage = "https://pypi.org/project/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 4eccba1a6a6a4..2054720cfe775 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/pulsar-client/default.nix b/pkgs/development/python-modules/pulsar-client/default.nix index 2c236dca67fd2..0756cf35d091d 100644 --- a/pkgs/development/python-modules/pulsar-client/default.nix +++ b/pkgs/development/python-modules/pulsar-client/default.nix @@ -124,10 +124,10 @@ buildPythonPackage { Srcs."${pythonVersion}-${stdenv.hostPlatform.system}" or (throw "Unsupported '${pythonVersion}-${stdenv.hostPlatform.system}' target"); - meta = with lib; { + meta = { description = "Client for pulsar"; homepage = "https://pypi.org/project/pulsar-client/"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pulsectl/default.nix b/pkgs/development/python-modules/pulsectl/default.nix index 51132de4d5f68..00d1ed8d5cb7b 100644 --- a/pkgs/development/python-modules/pulsectl/default.nix +++ b/pkgs/development/python-modules/pulsectl/default.nix @@ -40,10 +40,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/default.nix b/pkgs/development/python-modules/pulumi/default.nix index 1f835c0f9325b..eebec84a18b4e 100644 --- a/pkgs/development/python-modules/pulumi/default.nix +++ b/pkgs/development/python-modules/pulumi/default.nix @@ -60,12 +60,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pulumi" ]; - meta = with lib; { + meta = { description = "Modern Infrastructure as Code. Any cloud, any language"; homepage = "https://github.com/pulumi/pulumi"; - license = licenses.asl20; - maintainers = with maintainers; [ teto ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ teto ]; # https://github.com/pulumi/pulumi/issues/16828 - broken = versionAtLeast protobuf.version "5"; + broken = lib.versionAtLeast protobuf.version "5"; }; } diff --git a/pkgs/development/python-modules/pure-cdb/default.nix b/pkgs/development/python-modules/pure-cdb/default.nix index 2f9c57ce994a5..b43530e017248 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 e9c48fe6c51d9..f653a72fffa38 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; - maintainers = with maintainers; [ gebner ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gebner ]; }; } diff --git a/pkgs/development/python-modules/pure-pcapy3/default.nix b/pkgs/development/python-modules/pure-pcapy3/default.nix index d037fc7af5b85..0f07a416d445e 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-python-adb-homeassistant/default.nix b/pkgs/development/python-modules/pure-python-adb-homeassistant/default.nix index 974a70f2f7a66..ef1f99b95c395 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 9b861f821a4a3..e1b919bb11624 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/purepng/default.nix b/pkgs/development/python-modules/purepng/default.nix index 056532f8e1cc6..39fd2e387239b 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 493ac2fd2960e..e5716f259421c 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/push-receiver/default.nix b/pkgs/development/python-modules/push-receiver/default.nix index d5f4732bb3131..1c1bc5b02a7c8 100644 --- a/pkgs/development/python-modules/push-receiver/default.nix +++ b/pkgs/development/python-modules/push-receiver/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "push_receiver" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Francesco149/push_receiver"; description = "Subscribe to GCM/FCM and receive notifications"; - license = licenses.unlicense; - maintainers = with maintainers; [ veehaitch ]; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ veehaitch ]; }; } diff --git a/pkgs/development/python-modules/pushbullet-py/default.nix b/pkgs/development/python-modules/pushbullet-py/default.nix index 0b986dff66361..6e7a031bb294a 100644 --- a/pkgs/development/python-modules/pushbullet-py/default.nix +++ b/pkgs/development/python-modules/pushbullet-py/default.nix @@ -48,9 +48,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 e0da6ed669604..c02d97388a5b6 100644 --- a/pkgs/development/python-modules/pushover-complete/default.nix +++ b/pkgs/development/python-modules/pushover-complete/default.nix @@ -35,10 +35,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 d060de77bf2f5..256339710b138 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/pweave/default.nix b/pkgs/development/python-modules/pweave/default.nix index b5721e2782690..1050a5fbdb735 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/py-air-control-exporter/default.nix b/pkgs/development/python-modules/py-air-control-exporter/default.nix index b38fe6cf0cd5b..45e69dd124450 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 73cac52da8284..0545bb8644418 100644 --- a/pkgs/development/python-modules/py-air-control/default.nix +++ b/pkgs/development/python-modules/py-air-control/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pyairctrl" ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Command Line App for Controlling Philips Air Purifiers"; - 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 248ac605e8017..b9fe9fd152c8b 100644 --- a/pkgs/development/python-modules/py-bip39-bindings/default.nix +++ b/pkgs/development/python-modules/py-bip39-bindings/default.nix @@ -51,10 +51,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 9ed05ea205bd5..318253fc96fee 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 7b986be7dc422..eadc5c8eb87da 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-deprecate/default.nix b/pkgs/development/python-modules/py-deprecate/default.nix index c6c2c62ee0416..c543a44fbc18e 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 4f1c74b9f20ae..5c10fcac7eb77 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-eth-sig-utils/default.nix b/pkgs/development/python-modules/py-eth-sig-utils/default.nix index bf95fb2da73f8..b1f23f9147df6 100644 --- a/pkgs/development/python-modules/py-eth-sig-utils/default.nix +++ b/pkgs/development/python-modules/py-eth-sig-utils/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "py_eth_sig_utils" ]; - meta = with lib; { + meta = { description = "Collection of functions to generate hashes for signing on Ethereum"; homepage = "https://github.com/rmeissner/py-eth-sig-utils"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; # TODO: upstream is stale and doesn't not work with the new `eth-abi` package any more. broken = true; diff --git a/pkgs/development/python-modules/py-expression-eval/default.nix b/pkgs/development/python-modules/py-expression-eval/default.nix index f184c025e218e..3cf32c836a138 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 b5d8e7f4ab292..1ec509cfa566c 100644 --- a/pkgs/development/python-modules/py-libzfs/default.nix +++ b/pkgs/development/python-modules/py-libzfs/default.nix @@ -41,13 +41,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 a9d7488695017..d445157a3897c 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 95016f826c622..728027cf5b56e 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-multicodec/default.nix b/pkgs/development/python-modules/py-multicodec/default.nix index 5f8ce30adda3c..118f0ddaaf2ad 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 396fd68d66968..0d1c7cf1b225d 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 1dfc3ec4644be..8793bbeadb27e 100644 --- a/pkgs/development/python-modules/py-nextbusnext/default.nix +++ b/pkgs/development/python-modules/py-nextbusnext/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { # upstream has no tests doCheck = false; - meta = with lib; { + meta = { 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 e690f1b1cacaf..a7bdc0c40460a 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-radix-sr/default.nix b/pkgs/development/python-modules/py-radix-sr/default.nix index 307abcc9bd678..f7a69e7016958 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 ]; - maintainers = teams.wdz.members; + maintainers = lib.teams.wdz.members; }; } diff --git a/pkgs/development/python-modules/py-scrypt/default.nix b/pkgs/development/python-modules/py-scrypt/default.nix index 10b9ec015050f..f6cc550bcde33 100644 --- a/pkgs/development/python-modules/py-scrypt/default.nix +++ b/pkgs/development/python-modules/py-scrypt/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { buildInputs = [ openssl ]; doCheck = false; - meta = with lib; { + meta = { description = "Bindings for scrypt key derivation function library"; homepage = "https://pypi.python.org/pypi/scrypt"; maintainers = [ ]; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/py-sneakers/default.nix b/pkgs/development/python-modules/py-sneakers/default.nix index bcb9c07fb3230..66433247977f4 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 5120e8a77b038..8971bc852c096 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 123562c8d21ad..9e94fa0101fa7 100644 --- a/pkgs/development/python-modules/py-sr25519-bindings/default.nix +++ b/pkgs/development/python-modules/py-sr25519-bindings/default.nix @@ -46,11 +46,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-ubjson/default.nix b/pkgs/development/python-modules/py-ubjson/default.nix index 7eca2165efc1d..4fd93a907d0c8 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 aed03b8408732..a698c66c489b2 100644 --- a/pkgs/development/python-modules/py-vapid/default.nix +++ b/pkgs/development/python-modules/py-vapid/default.nix @@ -28,11 +28,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/default.nix b/pkgs/development/python-modules/py/default.nix index 7cfe0a7e05b7b..6ea8602f8d59e 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/py2bit/default.nix b/pkgs/development/python-modules/py2bit/default.nix index 96fbdeeb0ab58..37954062d9dfe 100644 --- a/pkgs/development/python-modules/py2bit/default.nix +++ b/pkgs/development/python-modules/py2bit/default.nix @@ -17,13 +17,13 @@ buildPythonPackage rec { sha256 = "1vw2nvw1yrl7ikkqsqs1pg239yr5nspvd969r1x9arms1k25a1a5"; }; - meta = with lib; { + meta = { homepage = "https://github.com/deeptools/py2bit"; description = "File access to 2bit files"; longDescription = '' A python extension, written in C, for quick access to 2bit files. The extension uses lib2bit for file access. ''; - license = licenses.mit; - maintainers = with maintainers; [ scalavision ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ scalavision ]; }; } diff --git a/pkgs/development/python-modules/py3dns/default.nix b/pkgs/development/python-modules/py3dns/default.nix index a036ba2707cf0..709ab24f93c22 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 e9f0efe24030a..3b1eaabd6e6a8 100644 --- a/pkgs/development/python-modules/py3exiv2/default.nix +++ b/pkgs/development/python-modules/py3exiv2/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { # Tests are not shipped doCheck = false; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; 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/py3nvml/default.nix b/pkgs/development/python-modules/py3nvml/default.nix index af83b78621770..c38d11fac6184 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 5e39b14149b27..23b1b0dfe1616 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/pyacaia-async/default.nix b/pkgs/development/python-modules/pyacaia-async/default.nix index a916207eb75f6..4f685bcb23ffd 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 30211f9b6fd36..80a06edc804e5 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/pyaehw4a1/default.nix b/pkgs/development/python-modules/pyaehw4a1/default.nix index 1506bfd80a788..ab7dc9d4b854e 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/pyairports/default.nix b/pkgs/development/python-modules/pyairports/default.nix index 3803d95492183..ebc93d1617182 100644 --- a/pkgs/development/python-modules/pyairports/default.nix +++ b/pkgs/development/python-modules/pyairports/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyairports" ]; - meta = with lib; { + meta = { description = "pyairports is a package which enables airport lookup by 3-letter IATA code."; homepage = "https://github.com/ozeliger/pyairports"; - license = licenses.asl20; - maintainers = with maintainers; [ cfhammill ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cfhammill ]; }; } diff --git a/pkgs/development/python-modules/pyalgotrade/default.nix b/pkgs/development/python-modules/pyalgotrade/default.nix index d463972524f33..1b709231644e8 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/pyaml/default.nix b/pkgs/development/python-modules/pyaml/default.nix index ca1342ab9fb20..d0d32c968578a 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 d77b60248132b..522a5bd35581a 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/fixes/tests/test_annotate*.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/pyannote-database/default.nix b/pkgs/development/python-modules/pyannote-database/default.nix index ddd3ec0ac1d12..383512e20ae69 100644 --- a/pkgs/development/python-modules/pyannote-database/default.nix +++ b/pkgs/development/python-modules/pyannote-database/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyannote.database" ]; - meta = with lib; { + meta = { description = "Reproducible experimental protocols for multimedia (audio, video, text) database"; homepage = "https://github.com/pyannote/pyannote-database"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; mainProgram = "pyannote-database"; }; } diff --git a/pkgs/development/python-modules/pyannote-metrics/default.nix b/pkgs/development/python-modules/pyannote-metrics/default.nix index 7c8ade1342b04..ecdf9e1426100 100644 --- a/pkgs/development/python-modules/pyannote-metrics/default.nix +++ b/pkgs/development/python-modules/pyannote-metrics/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyannote.metrics" ]; - meta = with lib; { + meta = { description = "Toolkit for reproducible evaluation, diagnostic, and error analysis of speaker diarization systems"; homepage = "https://github.com/pyannote/pyannote-metrics"; changelog = "http://pyannote.github.io/pyannote-metrics/changelog.html"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "pyannote-metrics"; }; diff --git a/pkgs/development/python-modules/pyannote-pipeline/default.nix b/pkgs/development/python-modules/pyannote-pipeline/default.nix index 0a0f67b765f7d..871b4c2ea7e00 100644 --- a/pkgs/development/python-modules/pyannote-pipeline/default.nix +++ b/pkgs/development/python-modules/pyannote-pipeline/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyannote.pipeline" ]; - meta = with lib; { + meta = { description = "Tunable pipelines"; homepage = "https://github.com/pyannote/pyannote-pipeline"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "pyannote-pipeline"; }; diff --git a/pkgs/development/python-modules/pyarlo/default.nix b/pkgs/development/python-modules/pyarlo/default.nix index a9b9c8c040db6..3b2b788434169 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/pyarrow/default.nix b/pkgs/development/python-modules/pyarrow/default.nix index 46a1151edd045..8884e4f5a488e 100644 --- a/pkgs/development/python-modules/pyarrow/default.nix +++ b/pkgs/development/python-modules/pyarrow/default.nix @@ -169,12 +169,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 7e684c27ae1e6..2bc4003e0ac18 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 a12b1ff8bb552..727e107b15a5b 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/pyasyncore/default.nix b/pkgs/development/python-modules/pyasyncore/default.nix index 23e09fe01400c..ce7f0919e1f3e 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/pyatem/default.nix b/pkgs/development/python-modules/pyatem/default.nix index a605dd4b1a3d3..2b571fb633820 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/pyatome/default.nix b/pkgs/development/python-modules/pyatome/default.nix index 52717116afb4c..630055abd582f 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 df80e01731eef..3e5fc81a6acd8 100644 --- a/pkgs/development/python-modules/pyatspi/default.nix +++ b/pkgs/development/python-modules/pyatspi/default.nix @@ -45,11 +45,11 @@ buildPythonPackage rec { }; }; - meta = with lib; { + meta = { description = "Python client bindings for D-Bus AT-SPI"; homepage = "https://wiki.linuxfoundation.org/accessibility/d-bus"; - license = licenses.gpl2; - maintainers = with maintainers; [ jtojnar ]; - platforms = with platforms; unix; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ jtojnar ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/development/python-modules/pyaudio/default.nix b/pkgs/development/python-modules/pyaudio/default.nix index d6d2749d6034f..a9541a00e420b 100644 --- a/pkgs/development/python-modules/pyaudio/default.nix +++ b/pkgs/development/python-modules/pyaudio/default.nix @@ -19,9 +19,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 a76479f797258..3ff24f635cf6f 100644 --- a/pkgs/development/python-modules/pyautogui/default.nix +++ b/pkgs/development/python-modules/pyautogui/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { 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 1d42aa9989f9a..e7e1186ae4f16 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 6e4a7e846b3ec..7911b5e287e41 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/pybindgen/default.nix b/pkgs/development/python-modules/pybindgen/default.nix index 63321d5c53c06..03849db3513a7 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/pybloom-live/default.nix b/pkgs/development/python-modules/pybloom-live/default.nix index 5000e4b72c635..d49fff06e7ace 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 ca745113c5925..c59e324c9d32f 100644 --- a/pkgs/development/python-modules/pybluez/default.nix +++ b/pkgs/development/python-modules/pybluez/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { "bluetooth.ble" ]; - meta = with lib; { + meta = { description = "Bluetooth Python extension module"; homepage = "https://github.com/pybluez/pybluez"; - license = licenses.gpl2; - maintainers = with maintainers; [ leenaars ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ leenaars ]; broken = stdenv.hostPlatform.isDarwin; # requires pyobjc-core, pyobjc-framework-Cocoa }; } diff --git a/pkgs/development/python-modules/pybox2d/default.nix b/pkgs/development/python-modules/pybox2d/default.nix index ae1fd153c7663..f3924ed6fe8cb 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/pybrowserid/default.nix b/pkgs/development/python-modules/pybrowserid/default.nix index d5783fa023124..80220fc62475d 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 e1651297a77c1..f8c0931a61e30 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/pybtex/default.nix b/pkgs/development/python-modules/pybtex/default.nix index 94df8e4f62bb6..4b6170fe336c9 100644 --- a/pkgs/development/python-modules/pybtex/default.nix +++ b/pkgs/development/python-modules/pybtex/default.nix @@ -26,9 +26,9 @@ buildPythonPackage rec { sha256 = "818eae35b61733e5c007c3fcd2cfb75ed1bc8b4173c1f70b56cc4c0802d34755"; }; - meta = with lib; { + meta = { homepage = "https://pybtex.org/"; description = "BibTeX-compatible bibliography processor written in Python"; - 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 95dbed9a924c4..4caf3fd989575 100644 --- a/pkgs/development/python-modules/pybullet/default.nix +++ b/pkgs/development/python-modules/pybullet/default.nix @@ -34,12 +34,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 fe5b332d91320..b845d447b8f12 100644 --- a/pkgs/development/python-modules/pycairo/default.nix +++ b/pkgs/development/python-modules/pycairo/default.nix @@ -44,10 +44,10 @@ 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 ]; diff --git a/pkgs/development/python-modules/pycangjie/default.nix b/pkgs/development/python-modules/pycangjie/default.nix index 80a992b14e46c..59b3f5287cd27 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; - maintainers = [ maintainers.linquize ]; - platforms = platforms.all; + license = lib.licenses.lgpl3Plus; + maintainers = [ lib.maintainers.linquize ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/python-modules/pycapnp/default.nix b/pkgs/development/python-modules/pycapnp/default.nix index 5276e951b3c7c..c395eec4b6d93 100644 --- a/pkgs/development/python-modules/pycapnp/default.nix +++ b/pkgs/development/python-modules/pycapnp/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "capnp" ]; - meta = with lib; { + meta = { homepage = "https://capnproto.github.io/pycapnp/"; maintainers = [ ]; - license = licenses.bsd2; + license = lib.licenses.bsd2; # No support for capnproto 1.0 yet # https://github.com/capnproto/pycapnp/issues/323 broken = lib.versionAtLeast capnproto.version "1.0"; diff --git a/pkgs/development/python-modules/pycardano/default.nix b/pkgs/development/python-modules/pycardano/default.nix index 973b84f4c035f..e4641562b47b3 100644 --- a/pkgs/development/python-modules/pycardano/default.nix +++ b/pkgs/development/python-modules/pycardano/default.nix @@ -67,10 +67,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycardano" ]; - meta = with lib; { + meta = { description = "Lightweight Cardano library in Python"; homepage = "https://github.com/Python-Cardano/pycardano"; - license = licenses.mit; - maintainers = with maintainers; [ t4ccer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ t4ccer ]; }; } diff --git a/pkgs/development/python-modules/pycec/default.nix b/pkgs/development/python-modules/pycec/default.nix index 5f6ef9f37c7c9..88d9e0e4da9b6 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/pycflow2dot/default.nix b/pkgs/development/python-modules/pycflow2dot/default.nix index 19289d0b6cbde..26f1cc62c1697 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; - maintainers = with maintainers; [ evils ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ evils ]; }; } diff --git a/pkgs/development/python-modules/pychannels/default.nix b/pkgs/development/python-modules/pychannels/default.nix index 48310b769912e..b1a1adcc0def4 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/pychart/default.nix b/pkgs/development/python-modules/pychart/default.nix index c6fa67c0912e6..59600ba41bad6 100644 --- a/pkgs/development/python-modules/pychart/default.nix +++ b/pkgs/development/python-modules/pychart/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { sha256 = "882650928776a7ca72e67054a9e0ac98f78645f279c0cfb5910db28f03f07c2e"; }; - meta = with lib; { + meta = { description = "Library for creating high quality encapsulated Postscript, PDF, PNG, or SVG charts"; homepage = "https://pypi.python.org/pypi/PyChart"; - license = licenses.gpl2; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/python-modules/pychm/default.nix b/pkgs/development/python-modules/pychm/default.nix index 8b7c443d66842..c450845d3e06e 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/pycketcasts/default.nix b/pkgs/development/python-modules/pycketcasts/default.nix index 7b4c51fcc6e85..c8209f68f266e 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 8b61e177f5db2..3128db5417487 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 56c5a7b7a9264..b176c18fe9675 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/pycm/default.nix b/pkgs/development/python-modules/pycm/default.nix index b560b9705cca8..11d94bb7f8739 100644 --- a/pkgs/development/python-modules/pycm/default.nix +++ b/pkgs/development/python-modules/pycm/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycm" ]; - meta = with lib; { + meta = { description = "Multiclass confusion matrix library"; homepage = "https://pycm.io"; - license = licenses.mit; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/pycocotools/default.nix b/pkgs/development/python-modules/pycocotools/default.nix index 64f64a51fc588..8fbe55741acc8 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/pycoin/default.nix b/pkgs/development/python-modules/pycoin/default.nix index f947b3a3e4f53..8d3b27efea18a 100644 --- a/pkgs/development/python-modules/pycoin/default.nix +++ b/pkgs/development/python-modules/pycoin/default.nix @@ -35,10 +35,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 b2b4ef94b8d3e..a5b740203a76d 100644 --- a/pkgs/development/python-modules/pycollada/default.nix +++ b/pkgs/development/python-modules/pycollada/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { # (upstream packaging issue) doCheck = false; - 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/pycoolmasternet-async/default.nix b/pkgs/development/python-modules/pycoolmasternet-async/default.nix index cf237b8bd8246..60b6d17b6322f 100644 --- a/pkgs/development/python-modules/pycoolmasternet-async/default.nix +++ b/pkgs/development/python-modules/pycoolmasternet-async/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycoolmasternet_async" ]; - meta = with lib; { + meta = { description = "Python library to control CoolMasterNet HVAC bridges over asyncio"; homepage = "https://github.com/OnFreund/pycoolmasternet-async"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pycotap/default.nix b/pkgs/development/python-modules/pycotap/default.nix index 7b730f20f0d4b..1d8996336ad5b 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/pycparser/default.nix b/pkgs/development/python-modules/pycparser/default.nix index 4372afb0efe1a..6a5cb12b5b00f 100644 --- a/pkgs/development/python-modules/pycparser/default.nix +++ b/pkgs/development/python-modules/pycparser/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { "tests" ]; - meta = with lib; { + meta = { description = "C parser in Python"; homepage = "https://github.com/eliben/pycparser"; - license = licenses.bsd3; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/pycrc/default.nix b/pkgs/development/python-modules/pycrc/default.nix index 146f0bf2600e6..b90804aea9d94 100644 --- a/pkgs/development/python-modules/pycrc/default.nix +++ b/pkgs/development/python-modules/pycrc/default.nix @@ -14,10 +14,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 770d7c3ca29a2..31b971cec1e27 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 121f69d3803d4..5b32494e526b6 100644 --- a/pkgs/development/python-modules/pycron/default.nix +++ b/pkgs/development/python-modules/pycron/default.nix @@ -41,10 +41,10 @@ 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 = with maintainers; [ globin ]; + maintainers = with lib.maintainers; [ globin ]; }; } diff --git a/pkgs/development/python-modules/pycryptodome/vectors.nix b/pkgs/development/python-modules/pycryptodome/vectors.nix index 349738ee0b2aa..745c83cca08c1 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/pycuda/default.nix b/pkgs/development/python-modules/pycuda/default.nix index 04ea92be7fb21..4d6f012c584a1 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; - maintainers = with maintainers; [ artuuge ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ artuuge ]; }; } diff --git a/pkgs/development/python-modules/pycups/default.nix b/pkgs/development/python-modules/pycups/default.nix index 8a89193a64ebf..178eddc96390f 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/pydal/default.nix b/pkgs/development/python-modules/pydal/default.nix index 82ceccfc66994..6ff0faae3fcce 100644 --- a/pkgs/development/python-modules/pydal/default.nix +++ b/pkgs/development/python-modules/pydal/default.nix @@ -39,10 +39,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/pydantic-scim/default.nix b/pkgs/development/python-modules/pydantic-scim/default.nix index 16282517f874d..323ddb299bf15 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/pydateinfer/default.nix b/pkgs/development/python-modules/pydateinfer/default.nix index 777e78efc9b1f..565d1f1cbe215 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 51cb247a51799..6c3e116b8595d 100644 --- a/pkgs/development/python-modules/pydeck/default.nix +++ b/pkgs/development/python-modules/pydeck/default.nix @@ -66,10 +66,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/pydelijn/default.nix b/pkgs/development/python-modules/pydelijn/default.nix index c64eef1c9a63d..67b057bca13c4 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 91fd500cbaca5..698a59f912270 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/pydes/default.nix b/pkgs/development/python-modules/pydes/default.nix index e04090e686dbd..d59d54c016b46 100644 --- a/pkgs/development/python-modules/pydes/default.nix +++ b/pkgs/development/python-modules/pydes/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { 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/pydevd/default.nix b/pkgs/development/python-modules/pydevd/default.nix index 20264af548657..cd31774846709 100644 --- a/pkgs/development/python-modules/pydevd/default.nix +++ b/pkgs/development/python-modules/pydevd/default.nix @@ -81,11 +81,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydevd" ]; - meta = with lib; { + meta = { description = "PyDev.Debugger (used in PyDev, PyCharm and VSCode Python)"; homepage = "https://github.com/fabioz/PyDev.Debugger"; - license = licenses.epl10; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.epl10; + maintainers = with lib.maintainers; [ onny ]; mainProgram = "pydevd"; }; } diff --git a/pkgs/development/python-modules/pydevtool/default.nix b/pkgs/development/python-modules/pydevtool/default.nix index de29d377379b9..bd48cb936603e 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/pydispatcher/default.nix b/pkgs/development/python-modules/pydispatcher/default.nix index 7094534c1563f..a2380f659e166 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/pydocumentdb/default.nix b/pkgs/development/python-modules/pydocumentdb/default.nix index d074f0a5feaeb..e6e20fb38033a 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 04a943c4cb984..6b6e6192e87fc 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 e74d54245d18e..cc98ea4147cc6 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/pydroid-ipcam/default.nix b/pkgs/development/python-modules/pydroid-ipcam/default.nix index 31ec5abd39cee..b4e6f8d28f0b3 100644 --- a/pkgs/development/python-modules/pydroid-ipcam/default.nix +++ b/pkgs/development/python-modules/pydroid-ipcam/default.nix @@ -31,10 +31,10 @@ 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"; - 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/pydruid/default.nix b/pkgs/development/python-modules/pydruid/default.nix index a8e1462aec290..9885c107b208d 100644 --- a/pkgs/development/python-modules/pydruid/default.nix +++ b/pkgs/development/python-modules/pydruid/default.nix @@ -52,10 +52,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 f9e09eb5cebcb..5e014f0091fed 100644 --- a/pkgs/development/python-modules/pydsdl/default.nix +++ b/pkgs/development/python-modules/pydsdl/default.nix @@ -31,7 +31,7 @@ buildPythonPackage rec { pytestFlagsArray = [ "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/pyebus/default.nix b/pkgs/development/python-modules/pyebus/default.nix index 5376a546c9b0b..92e388aaf3351 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/pyechonest/default.nix b/pkgs/development/python-modules/pyechonest/default.nix index c1a8766528d94..25172a3be2151 100644 --- a/pkgs/development/python-modules/pyechonest/default.nix +++ b/pkgs/development/python-modules/pyechonest/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { sha256 = "1da4b3b8b457232a7eb35b59a48390b3c208759b01d596acaa71e6a172b40495"; }; - meta = with lib; { + meta = { description = "Tap into The Echo Nest's Musical Brain for the best music search, information, recommendations and remix tools on the web"; homepage = "https://github.com/echonest/pyechonest"; }; diff --git a/pkgs/development/python-modules/pyeclib/default.nix b/pkgs/development/python-modules/pyeclib/default.nix index d025e5426f4f9..71fcbcdd852ad 100644 --- a/pkgs/development/python-modules/pyeclib/default.nix +++ b/pkgs/development/python-modules/pyeclib/default.nix @@ -52,10 +52,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; - maintainers = teams.openstack.members; + license = lib.licenses.bsd2; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/pyedimax/default.nix b/pkgs/development/python-modules/pyedimax/default.nix index dff8a0ffa899f..2ce6209621d27 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 3c3d7e63d2af9..7d76a2b02da37 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/pyeight/default.nix b/pkgs/development/python-modules/pyeight/default.nix index 6ccc5f099e4cb..84b77da53b2d4 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 75edc09520494..2daf95e51f1bd 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/pyenchant/default.nix b/pkgs/development/python-modules/pyenchant/default.nix index d7661d9b24a0f..ba384217dc3a9 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 = "pyenchant: 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/pyenvisalink/default.nix b/pkgs/development/python-modules/pyenvisalink/default.nix index 1e2489afa191a..396b4a6d9d51c 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/pyephember/default.nix b/pkgs/development/python-modules/pyephember/default.nix index 7efe8561c8834..acab655c1a66b 100644 --- a/pkgs/development/python-modules/pyephember/default.nix +++ b/pkgs/development/python-modules/pyephember/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyephember" ]; - meta = with lib; { + meta = { description = "Python client to the EPH Control Systems Ember API"; homepage = "https://github.com/ttroy50/pyephember"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = 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 47cf101d674bf..b0e2669fb3bd4 100644 --- a/pkgs/development/python-modules/pyepsg/default.nix +++ b/pkgs/development/python-modules/pyepsg/default.nix @@ -19,10 +19,10 @@ 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 = with maintainers; [ ]; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/pyerfa/default.nix b/pkgs/development/python-modules/pyerfa/default.nix index e5bd3e20e5be3..41938536558bc 100644 --- a/pkgs/development/python-modules/pyerfa/default.nix +++ b/pkgs/development/python-modules/pyerfa/default.nix @@ -50,7 +50,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 @@ -61,7 +61,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 dd9abeca4f313..f34bd03997415 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/pyexploitdb/default.nix b/pkgs/development/python-modules/pyexploitdb/default.nix index 843774d365bef..6e1ce4c9842df 100644 --- a/pkgs/development/python-modules/pyexploitdb/default.nix +++ b/pkgs/development/python-modules/pyexploitdb/default.nix @@ -33,11 +33,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/pyfakewebcam/default.nix b/pkgs/development/python-modules/pyfakewebcam/default.nix index 681b06644ac59..c88a4e993e855 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/pyfantom/default.nix b/pkgs/development/python-modules/pyfantom/default.nix index 901a2be7484f7..b7246730b359b 100644 --- a/pkgs/development/python-modules/pyfantom/default.nix +++ b/pkgs/development/python-modules/pyfantom/default.nix @@ -17,9 +17,9 @@ buildPythonPackage { # No tests included doCheck = false; - meta = with lib; { + meta = { homepage = "https://pyfantom.ni.fr.eu.org/"; description = "Wrapper for the LEGO Mindstorms Fantom Driver"; - license = licenses.gpl2; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/python-modules/pyfcm/default.nix b/pkgs/development/python-modules/pyfcm/default.nix index 3ab2ea6f350de..700dc4e722d86 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/pyfido/default.nix b/pkgs/development/python-modules/pyfido/default.nix index af48a98473019..017d3fd83d434 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 a236951c493c3..6b4544a8691fa 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 4042c0a235c53..1f3c219de1b06 100644 --- a/pkgs/development/python-modules/pyfireservicerota/default.nix +++ b/pkgs/development/python-modules/pyfireservicerota/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyfireservicerota" ]; - meta = with lib; { + meta = { 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 22190d150b407..9de1d55181171 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 09b80a3aaf145..2efdce00189d5 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 838ecd29dbfab..c79416e342b2d 100644 --- a/pkgs/development/python-modules/pyfluidsynth/default.nix +++ b/pkgs/development/python-modules/pyfluidsynth/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { 's|lib = .*\\\n[^\n]*|lib = "${lib.getLib fluidsynth}/lib/libfluidsynth${stdenv.hostPlatform.extensions.sharedLibrary}"|' ''; - 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/development/python-modules/pyfnip/default.nix b/pkgs/development/python-modules/pyfnip/default.nix index fd829efbbd83d..bfc7c17b74424 100644 --- a/pkgs/development/python-modules/pyfnip/default.nix +++ b/pkgs/development/python-modules/pyfnip/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pyfnip" ]; - meta = with lib; { + meta = { description = "Python client to get fido account data"; homepage = "https://github.com/juhaniemi/pyfnip"; - 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/pyformlang/default.nix b/pkgs/development/python-modules/pyformlang/default.nix index 8747d55313eb0..2ff393b401835 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 bbb4766547144..923c2a6ab750b 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 59aef896beeec..69e91b171cc23 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/pyfttt/default.nix b/pkgs/development/python-modules/pyfttt/default.nix index f31759aedc752..aa0c93156fc2e 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/pyfxa/default.nix b/pkgs/development/python-modules/pyfxa/default.nix index d3a4dcfac3ed5..13f0cfd97ac24 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 296d2d11670e2..d4f434bcea554 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/pygame-gui/default.nix b/pkgs/development/python-modules/pygame-gui/default.nix index 4b6132f164559..efab05ccbfc5e 100644 --- a/pkgs/development/python-modules/pygame-gui/default.nix +++ b/pkgs/development/python-modules/pygame-gui/default.nix @@ -71,11 +71,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/pygdbmi/default.nix b/pkgs/development/python-modules/pygdbmi/default.nix index 66fb880be525a..b2ec99d38e46b 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 238bffdeb2765..4682dbaafb55d 100644 --- a/pkgs/development/python-modules/pygetwindow/default.nix +++ b/pkgs/development/python-modules/pygetwindow/default.nix @@ -20,10 +20,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/pyglet/default.nix b/pkgs/development/python-modules/pyglet/default.nix index 663d6db5fb4db..de5ec36656662 100644 --- a/pkgs/development/python-modules/pyglet/default.nix +++ b/pkgs/development/python-modules/pyglet/default.nix @@ -106,10 +106,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyglet" ]; - meta = with lib; { + meta = { homepage = "http://www.pyglet.org/"; description = "Cross-platform windowing and multimedia library"; - license = licenses.bsd3; + license = lib.licenses.bsd3; inherit (mesa.meta) platforms; }; } diff --git a/pkgs/development/python-modules/pygments-markdown-lexer/default.nix b/pkgs/development/python-modules/pygments-markdown-lexer/default.nix index dd454bc4e8071..451e120d3eba5 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 3c6945e66dfeb..032506d33deb1 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; - maintainers = with maintainers; [ drupol ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ drupol ]; }; } diff --git a/pkgs/development/python-modules/pygmo/default.nix b/pkgs/development/python-modules/pygmo/default.nix index ab25b1093e993..3f42f2e7e7b36 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/pygobject/3.nix b/pkgs/development/python-modules/pygobject/3.nix index 88dfb1e1abb3d..d83adff01442c 100644 --- a/pkgs/development/python-modules/pygobject/3.nix +++ b/pkgs/development/python-modules/pygobject/3.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { }; }; - meta = with lib; { + meta = { homepage = "https://pygobject.readthedocs.io/"; description = "Python bindings for Glib"; - 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/python-modules/pygpgme/default.nix b/pkgs/development/python-modules/pygpgme/default.nix index a39bc08458ab6..0b3e07ee068c4 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 f6cf8b1a15954..c6a3a057f7147 100644 --- a/pkgs/development/python-modules/pygraphviz/default.nix +++ b/pkgs/development/python-modules/pygraphviz/default.nix @@ -53,11 +53,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 3313a921808df..13e2428c3f352 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 8ef39af5c3146..7cc002c9c2f3d 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 b4a404dc209f8..e4b7bd9cfdb28 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/pygti/default.nix b/pkgs/development/python-modules/pygti/default.nix index a26792696f275..1ff7ecab54c45 100644 --- a/pkgs/development/python-modules/pygti/default.nix +++ b/pkgs/development/python-modules/pygti/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { "pygti.gti" ]; - meta = with lib; { + meta = { description = "Access public transport information in Hamburg, Germany"; homepage = "https://github.com/vigonotion/pygti"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pygtkspellcheck/default.nix b/pkgs/development/python-modules/pygtkspellcheck/default.nix index f392f53a8c1a5..d995220fb8bc1 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 698906b19fc55..701b6dc3a7fd7 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/pyhcl/default.nix b/pkgs/development/python-modules/pyhcl/default.nix index d4abb9fabaae3..13b511422f759 100644 --- a/pkgs/development/python-modules/pyhcl/default.nix +++ b/pkgs/development/python-modules/pyhcl/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { coverage run --source hcl -m pytest tests ''; - 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/pyheif/default.nix b/pkgs/development/python-modules/pyheif/default.nix index 55e649722d186..0f0a59ace49d1 100644 --- a/pkgs/development/python-modules/pyheif/default.nix +++ b/pkgs/development/python-modules/pyheif/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { homepage = "https://github.com/carsales/pyheif"; description = "Python interface to libheif library"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyhocon/default.nix b/pkgs/development/python-modules/pyhocon/default.nix index 2becc21c26cee..bdf39be48a383 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 8b6b6e68627c7..15cd3f6956cf8 100644 --- a/pkgs/development/python-modules/pyhomematic/default.nix +++ b/pkgs/development/python-modules/pyhomematic/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyhomematic" ]; - meta = with lib; { + meta = { description = "Python 3 Interface to interact with Homematic devices"; homepage = "https://github.com/danielperna84/pyhomematic"; - 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 db00d9190ff05..643348b974e34 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 48726ee972602..0efe5afe0e82e 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 e5f36fe22d9d7..6c149d7600b61 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 a0b47a94cecb8..ef37ccb1e917f 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 f76788180202b..ad4d2e66d6906 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 6aebdaa47f524..65246a795719b 100644 --- a/pkgs/development/python-modules/pyicloud/default.nix +++ b/pkgs/development/python-modules/pyicloud/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { "test_storage" ]; - meta = with lib; { + meta = { description = "PyiCloud is a module which allows pythonistas to interact with iCloud webservices"; mainProgram = "icloud"; homepage = "https://github.com/picklepete/pyicloud"; - license = licenses.mit; - maintainers = [ maintainers.mic92 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.mic92 ]; }; } diff --git a/pkgs/development/python-modules/pyicumessageformat/default.nix b/pkgs/development/python-modules/pyicumessageformat/default.nix index f37cee1ad919e..145bb15682b5c 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 469fa542aa873..9cc07e89c3aed 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/pyinotify/default.nix b/pkgs/development/python-modules/pyinotify/default.nix index 8232ab456719f..427bd8a1ba346 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 a0e85755b8e74..c3d226a416c07 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/pyipv8/default.nix b/pkgs/development/python-modules/pyipv8/default.nix index ad57f8ab09cd6..af452b19ac567 100644 --- a/pkgs/development/python-modules/pyipv8/default.nix +++ b/pkgs/development/python-modules/pyipv8/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { doCheck = false; - 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/pyisbn/default.nix b/pkgs/development/python-modules/pyisbn/default.nix index fc4b9973c2dd7..2879467e6d987 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/pyjsparser/default.nix b/pkgs/development/python-modules/pyjsparser/default.nix index b0988585e21bc..5b747725c992c 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/pykalman/default.nix b/pkgs/development/python-modules/pykalman/default.nix index ce4e509174c81..0ed35334f080a 100644 --- a/pkgs/development/python-modules/pykalman/default.nix +++ b/pkgs/development/python-modules/pykalman/default.nix @@ -30,10 +30,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/pykdl/default.nix b/pkgs/development/python-modules/pykdl/default.nix index 6670f6d145d04..72aa56ee0a95c 100644 --- a/pkgs/development/python-modules/pykdl/default.nix +++ b/pkgs/development/python-modules/pykdl/default.nix @@ -44,12 +44,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 db1452a614513..687bc46998e97 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/pykerberos/default.nix b/pkgs/development/python-modules/pykerberos/default.nix index 8b8be76b12e53..7c1c22444cfc1 100644 --- a/pkgs/development/python-modules/pykerberos/default.nix +++ b/pkgs/development/python-modules/pykerberos/default.nix @@ -24,9 +24,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "kerberos" ]; - meta = with lib; { + meta = { description = "High-level interface to Kerberos"; - license = licenses.asl20; - maintainers = with maintainers; [ catern ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ catern ]; }; } diff --git a/pkgs/development/python-modules/pykira/default.nix b/pkgs/development/python-modules/pykira/default.nix index a23d3b695f6e8..885dfdacf49b8 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/pykmtronic/default.nix b/pkgs/development/python-modules/pykmtronic/default.nix index 5f2b4b4cbe11b..adc16ed59cd9b 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 f4f52879d7fe8..17e04de1a73e3 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/pykostalpiko/default.nix b/pkgs/development/python-modules/pykostalpiko/default.nix index c9c1838198181..680e065e12f4b 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 55cdaf71b4bb4..1530fca1a595a 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 974034c587566..ca8902404cd0c 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/pykwb/default.nix b/pkgs/development/python-modules/pykwb/default.nix index 8ff7ab1f68ff9..75e94d12a2ffd 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 46d3bb8bee03e..96177d14e52d6 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/pylatex/default.nix b/pkgs/development/python-modules/pylatex/default.nix index ecd6adf3cdd2e..a869ef8606168 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 d48fe47bf4473..0553cc4d381f2 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; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/pyld/default.nix b/pkgs/development/python-modules/pyld/default.nix index aa66ac581c3c0..80cd6039f3217 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/pylev/default.nix b/pkgs/development/python-modules/pylev/default.nix index 30831a8c5727b..de7a3fb6509ea 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/pylibconfig2/default.nix b/pkgs/development/python-modules/pylibconfig2/default.nix index 608bb4da583f3..2765a890d0add 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 97037747a25b2..acad87f943fae 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/pyliblo/default.nix b/pkgs/development/python-modules/pyliblo/default.nix index d5756f745b27e..9339cc319134e 100644 --- a/pkgs/development/python-modules/pyliblo/default.nix +++ b/pkgs/development/python-modules/pyliblo/default.nix @@ -34,9 +34,9 @@ buildPythonPackage rec { buildInputs = [ liblo ]; - meta = with lib; { + meta = { homepage = "https://das.nasophon.de/pyliblo/"; description = "Python wrapper for the liblo OSC library"; - license = licenses.lgpl21Only; + license = lib.licenses.lgpl21Only; }; } diff --git a/pkgs/development/python-modules/pylibmc/default.nix b/pkgs/development/python-modules/pylibmc/default.nix index e5730dfeb6144..fc321a83b8aad 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 99ffa65d6cd70..a7f72b84cd1ab 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-flask/default.nix b/pkgs/development/python-modules/pylint-flask/default.nix index 375d1e1757745..6feea260ac07f 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 815ea71898134..7ac04732a57c9 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/pylion/default.nix b/pkgs/development/python-modules/pylion/default.nix index 92d6823ffe6d2..f93a6078a3645 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 d6617e81798fc..0454464126c57 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/pylpsd/default.nix b/pkgs/development/python-modules/pylpsd/default.nix index f583391a0d432..53fcb286cfe63 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 27dd4c93d6fc8..9059427132be8 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/pyls-flake8/default.nix b/pkgs/development/python-modules/pyls-flake8/default.nix index c8b8329797a60..88d03fa3280db 100644 --- a/pkgs/development/python-modules/pyls-flake8/default.nix +++ b/pkgs/development/python-modules/pyls-flake8/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { 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 de2cbdae88b8d..cd8e88078c427 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 f58a67956e36a..0b722be673bb7 100644 --- a/pkgs/development/python-modules/pylsl/default.nix +++ b/pkgs/development/python-modules/pylsl/default.nix @@ -33,11 +33,11 @@ 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 ]; mainProgram = "pylsl"; }; } diff --git a/pkgs/development/python-modules/pylsqpack/default.nix b/pkgs/development/python-modules/pylsqpack/default.nix index e36214b2206cd..52d7f7a353bc3 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/pylyrics/default.nix b/pkgs/development/python-modules/pylyrics/default.nix index 189b9d184db0b..7de80141a227f 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 bd0ba29d90d10..2c016454bb7da 100644 --- a/pkgs/development/python-modules/pylzma/default.nix +++ b/pkgs/development/python-modules/pylzma/default.nix @@ -19,10 +19,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 3abfa6431e06e..c6a4f7f5b9fea 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 7e5a5bd5d8c47..e3c65188ceca8 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 d516ba9b38e79..f8dd0c8188d62 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/pymaven-patch/default.nix b/pkgs/development/python-modules/pymaven-patch/default.nix index a8622f2e9bd5d..c59e192662b37 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 7b145228b4cf9..1a6e2ff1a8acf 100644 --- a/pkgs/development/python-modules/pymavlink/default.nix +++ b/pkgs/development/python-modules/pymavlink/default.nix @@ -29,13 +29,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymavlink" ]; - meta = with lib; { + meta = { description = "Python MAVLink interface and utilities"; homepage = "https://github.com/ArduPilot/pymavlink"; - 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 0dfa35e4307c9..28a60b588c3b5 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 f447d15e45af1..80c6e6de4cf01 100644 --- a/pkgs/development/python-modules/pymdstat/default.nix +++ b/pkgs/development/python-modules/pymdstat/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "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 8702da9fb97bd..fca27943f307e 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/pymeeus/default.nix b/pkgs/development/python-modules/pymeeus/default.nix index 4178c593aa0bc..a48bbdd1878de 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/pymelcloud/default.nix b/pkgs/development/python-modules/pymelcloud/default.nix index d859da4ff22ac..3e6b58fb89d3f 100644 --- a/pkgs/development/python-modules/pymelcloud/default.nix +++ b/pkgs/development/python-modules/pymelcloud/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymelcloud" ]; - meta = with lib; { + meta = { description = "Python module for interacting with MELCloud"; homepage = "https://github.com/vilppuvuorinen/pymelcloud"; - 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/pymemoize/default.nix b/pkgs/development/python-modules/pymemoize/default.nix index 064c93931e63b..7b1b1a0aee101 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 1628f723aa700..023dfd740de1c 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/pymetar/default.nix b/pkgs/development/python-modules/pymetar/default.nix index f8657ddfcbf20..117a53b715f49 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/pymilter/default.nix b/pkgs/development/python-modules/pymilter/default.nix index 60f00f40464ff..535e9b7028101 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 a5f14cbfebfc8..5847535d40313 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/pymoo/default.nix b/pkgs/development/python-modules/pymoo/default.nix index 7f9b6c6908b6c..d420559e56968 100644 --- a/pkgs/development/python-modules/pymoo/default.nix +++ b/pkgs/development/python-modules/pymoo/default.nix @@ -98,10 +98,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymoo" ]; - meta = with lib; { + meta = { description = "Multi-objective Optimization in Python"; homepage = "https://pymoo.org/"; - license = licenses.asl20; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/pymorphy2/default.nix b/pkgs/development/python-modules/pymorphy2/default.nix index 748f7d8d24a39..989b9b95ea53e 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/pymorphy2/dicts-ru.nix b/pkgs/development/python-modules/pymorphy2/dicts-ru.nix index 4385990518762..8648633bb7ce9 100644 --- a/pkgs/development/python-modules/pymorphy2/dicts-ru.nix +++ b/pkgs/development/python-modules/pymorphy2/dicts-ru.nix @@ -15,10 +15,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymorphy2_dicts_ru" ]; - meta = with lib; { + meta = { description = "Russian dictionaries for pymorphy2"; homepage = "https://github.com/kmike/pymorphy2-dicts/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pymorphy3/default.nix b/pkgs/development/python-modules/pymorphy3/default.nix index 3e7a31f6989b1..91e6292d550bf 100644 --- a/pkgs/development/python-modules/pymorphy3/default.nix +++ b/pkgs/development/python-modules/pymorphy3/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymorphy3" ]; - meta = with lib; { + meta = { description = "Morphological analyzer/inflection engine for Russian and Ukrainian"; mainProgram = "pymorphy"; homepage = "https://github.com/no-plagiarism/pymorphy3"; - license = licenses.mit; - maintainers = with maintainers; [ jboy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jboy ]; }; } diff --git a/pkgs/development/python-modules/pymorphy3/dicts-ru.nix b/pkgs/development/python-modules/pymorphy3/dicts-ru.nix index 6206a0cfe472d..7b2936b5d5798 100644 --- a/pkgs/development/python-modules/pymorphy3/dicts-ru.nix +++ b/pkgs/development/python-modules/pymorphy3/dicts-ru.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymorphy3_dicts_ru" ]; - meta = with lib; { + meta = { description = "Russian dictionaries for pymorphy3"; homepage = "https://github.com/no-plagiarism/pymorphy3-dicts"; - license = licenses.mit; - maintainers = with maintainers; [ jboy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jboy ]; }; } diff --git a/pkgs/development/python-modules/pymorphy3/dicts-uk.nix b/pkgs/development/python-modules/pymorphy3/dicts-uk.nix index 62260cbc262d1..8d959ee404abb 100644 --- a/pkgs/development/python-modules/pymorphy3/dicts-uk.nix +++ b/pkgs/development/python-modules/pymorphy3/dicts-uk.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymorphy3_dicts_uk" ]; - meta = with lib; { + meta = { description = "Ukrainian dictionaries for pymorphy3"; homepage = "https://github.com/no-plagiarism/pymorphy3-dicts"; - license = licenses.mit; - maintainers = with maintainers; [ jboy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jboy ]; }; } diff --git a/pkgs/development/python-modules/pympler/default.nix b/pkgs/development/python-modules/pympler/default.nix index 4a786a4548632..2f90e2a73999a 100644 --- a/pkgs/development/python-modules/pympler/default.nix +++ b/pkgs/development/python-modules/pympler/default.nix @@ -55,9 +55,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 d33838cf5c849..d77431ce7e280 100644 --- a/pkgs/development/python-modules/pymsgbox/default.nix +++ b/pkgs/development/python-modules/pymsgbox/default.nix @@ -21,10 +21,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/pymumble/default.nix b/pkgs/development/python-modules/pymumble/default.nix index e6214b6a9023f..4a3c802d9dc4f 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 tjni ]; diff --git a/pkgs/development/python-modules/pymvglive/default.nix b/pkgs/development/python-modules/pymvglive/default.nix index acd4676499a89..68ff4dd0cd8d9 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 9178399610b30..182ff6b75d99d 100644 --- a/pkgs/development/python-modules/pymysensors/default.nix +++ b/pkgs/development/python-modules/pymysensors/default.nix @@ -54,11 +54,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mysensors" ]; - meta = with lib; { + meta = { description = "Python API for talking to a MySensors gateway"; mainProgram = "pymysensors"; homepage = "https://github.com/theolind/pymysensors"; - 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/pymysql/default.nix b/pkgs/development/python-modules/pymysql/default.nix index be019c73f1855..4064b432fbb21 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 9d1609d506ca5..73cd5912b0f3a 100644 --- a/pkgs/development/python-modules/pymysqlsa/default.nix +++ b/pkgs/development/python-modules/pymysqlsa/default.nix @@ -21,9 +21,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 0dd0b329acd0e..5ad616b013b04 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/pynac/default.nix b/pkgs/development/python-modules/pynac/default.nix index 0a5e1257a94c8..d4a1e684e0dfc 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/pynacl/default.nix b/pkgs/development/python-modules/pynacl/default.nix index cc610d62e388f..5f2cdc0a425a4 100644 --- a/pkgs/development/python-modules/pynacl/default.nix +++ b/pkgs/development/python-modules/pynacl/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nacl" ]; - meta = with lib; { + meta = { description = "Python binding to the Networking and Cryptography (NaCl) library"; homepage = "https://github.com/pyca/pynacl/"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pynamecheap/default.nix b/pkgs/development/python-modules/pynamecheap/default.nix index adf63d29af72f..cc44b5384c14e 100644 --- a/pkgs/development/python-modules/pynamecheap/default.nix +++ b/pkgs/development/python-modules/pynamecheap/default.nix @@ -21,9 +21,9 @@ buildPythonPackage rec { sha256 = "1g1cd2yc6rpdsc5ax7s93y5nfkf91gcvbgcaqyl9ida6srd9hr97"; }; - meta = with lib; { + meta = { description = "Namecheap API client in Python"; homepage = "https://github.com/Bemmu/PyNamecheap"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pynanoleaf/default.nix b/pkgs/development/python-modules/pynanoleaf/default.nix index 892900c118ba5..ba9e88f885d17 100644 --- a/pkgs/development/python-modules/pynanoleaf/default.nix +++ b/pkgs/development/python-modules/pynanoleaf/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pynanoleaf" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Oro/pynanoleaf"; description = "Python3 wrapper for the Nanoleaf API, capable of controlling both Nanoleaf Aurora and Nanoleaf Canvas"; - 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 46af3ed5db2fc..4a7f17dced0d2 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 919674c639fcc..d43117773698b 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 87cbebb03d7ff..9ffc2d8b86c4c 100644 --- a/pkgs/development/python-modules/pynest2d/default.nix +++ b/pkgs/development/python-modules/pynest2d/default.nix @@ -34,10 +34,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/pynndescent/default.nix b/pkgs/development/python-modules/pynndescent/default.nix index 00a3e513ea671..0ed1d5a6f535b 100644 --- a/pkgs/development/python-modules/pynndescent/default.nix +++ b/pkgs/development/python-modules/pynndescent/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pynndescent" ]; - meta = with lib; { + meta = { description = "Nearest Neighbor Descent"; homepage = "https://github.com/lmcinnes/pynndescent"; - license = licenses.bsd2; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ mic92 ]; }; } diff --git a/pkgs/development/python-modules/pynotifier/default.nix b/pkgs/development/python-modules/pynotifier/default.nix index f264d9a328036..cfdce46a30fb8 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 75bf1c748fba0..0830d50f2ec4f 100644 --- a/pkgs/development/python-modules/pynput/default.nix +++ b/pkgs/development/python-modules/pynput/default.nix @@ -65,11 +65,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 381000f97d090..756f4670b345d 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/pynut2/default.nix b/pkgs/development/python-modules/pynut2/default.nix index 44c687f125927..3d1752c455ce7 100644 --- a/pkgs/development/python-modules/pynut2/default.nix +++ b/pkgs/development/python-modules/pynut2/default.nix @@ -24,10 +24,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/pynx584/default.nix b/pkgs/development/python-modules/pynx584/default.nix index 524ddcc430d52..61196ae1baaba 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 52d94c093f67a..46b106e4c2619 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/pyogg/default.nix b/pkgs/development/python-modules/pyogg/default.nix index 03d51fef67fa2..ef3fa9ca1079d 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 5362e490e7e78..9e28e0d41b5ce 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/pyopengl/default.nix b/pkgs/development/python-modules/pyopengl/default.nix index a4c4b1cbf21d7..09e5dca2baff7 100644 --- a/pkgs/development/python-modules/pyopengl/default.nix +++ b/pkgs/development/python-modules/pyopengl/default.nix @@ -71,7 +71,7 @@ buildPythonPackage rec { # OpenGL looks for libraries during import, making this a somewhat decent test of the flaky patching above. pythonImportsCheck = "OpenGL"; - meta = with lib; { + meta = { homepage = "https://mcfletch.github.io/pyopengl/"; description = "PyOpenGL, the Python OpenGL bindings"; longDescription = '' @@ -80,7 +80,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/pyopenweathermap/default.nix b/pkgs/development/python-modules/pyopenweathermap/default.nix index fcdda39f9fd32..138d0bc7bb40d 100644 --- a/pkgs/development/python-modules/pyopenweathermap/default.nix +++ b/pkgs/development/python-modules/pyopenweathermap/default.nix @@ -43,10 +43,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 b9ef0e23a73f3..56229e987f5ea 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/pyownet/default.nix b/pkgs/development/python-modules/pyownet/default.nix index 2542877ef0e58..31fc7eac37468 100644 --- a/pkgs/development/python-modules/pyownet/default.nix +++ b/pkgs/development/python-modules/pyownet/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyownet.protocol" ]; - meta = with lib; { + meta = { description = "Python OWFS client library (owserver protocol)"; homepage = "https://github.com/miccoli/pyownet"; - license = licenses.lgpl3Plus; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.lgpl3Plus; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pypandoc/default.nix b/pkgs/development/python-modules/pypandoc/default.nix index 0aad26e59cb6d..694e6c08fa36e 100644 --- a/pkgs/development/python-modules/pypandoc/default.nix +++ b/pkgs/development/python-modules/pypandoc/default.nix @@ -42,11 +42,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 ed8bcb5e93c42..3491da82f714b 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 a5f681ac167d9..0ca73fe63c752 100644 --- a/pkgs/development/python-modules/pyparted/default.nix +++ b/pkgs/development/python-modules/pyparted/default.nix @@ -46,11 +46,11 @@ 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; - maintainers = with maintainers; [ lsix ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ lsix ]; }; } diff --git a/pkgs/development/python-modules/pypblib/default.nix b/pkgs/development/python-modules/pypblib/default.nix index f4971a6b25774..e5547b0c6a954 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 60203cd00fdc7..3e2ca8f780a95 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/pypcap/default.nix b/pkgs/development/python-modules/pypcap/default.nix index 4bf0723dc6ce5..92fec30b40f15 100644 --- a/pkgs/development/python-modules/pypcap/default.nix +++ b/pkgs/development/python-modules/pypcap/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pcap" ]; - meta = with lib; { + meta = { homepage = "https://github.com/pynetwork/pypcap"; description = "Simplified object-oriented Python wrapper for libpcap"; - license = licenses.bsd3; - maintainers = with maintainers; [ oxzi ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ oxzi ]; }; } diff --git a/pkgs/development/python-modules/pypdf3/default.nix b/pkgs/development/python-modules/pypdf3/default.nix index f611eb5ae0b9f..e74677c2b0bdb 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 3074eb61522d5..6c225f19dddd4 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 42c783a6e4c2e..1b6c53bed3313 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 2354927ec2d7a..ac4aafc044df5 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/pyphotonfile/default.nix b/pkgs/development/python-modules/pyphotonfile/default.nix index 315d9c9496edf..1a663828b44e0 100644 --- a/pkgs/development/python-modules/pyphotonfile/default.nix +++ b/pkgs/development/python-modules/pyphotonfile/default.nix @@ -26,9 +26,9 @@ buildPythonPackage { 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 1acaee0a89f2b..de323dc256e95 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; - maintainers = with maintainers; [ blaggacao ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ blaggacao ]; }; } diff --git a/pkgs/development/python-modules/pyplaato/default.nix b/pkgs/development/python-modules/pyplaato/default.nix index 35a3136c9edcb..ce06bd3672e0d 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 486b980bd4cbb..b09cb5ad950af 100644 --- a/pkgs/development/python-modules/pyplatec/default.nix +++ b/pkgs/development/python-modules/pyplatec/default.nix @@ -16,9 +16,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 eb06d04b5dbe7..94670eaa4cc8b 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://github.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 e15cfecdd72b3..096feab08a2b0 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 14e2c906f9a5e..dce09eeaf36e9 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/pyprecice/default.nix b/pkgs/development/python-modules/pyprecice/default.nix index c005eaaa23d39..f72af39fc1b66 100644 --- a/pkgs/development/python-modules/pyprecice/default.nix +++ b/pkgs/development/python-modules/pyprecice/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { # Do not use pythonImportsCheck because this will also initialize mpi which requires a network interface - meta = with lib; { + meta = { description = "Python language bindings for preCICE"; homepage = "https://github.com/precice/python-bindings"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ Scriptkiddi ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ Scriptkiddi ]; }; } diff --git a/pkgs/development/python-modules/pypresence/default.nix b/pkgs/development/python-modules/pypresence/default.nix index b01f7573511f1..ad8bd670b5258 100644 --- a/pkgs/development/python-modules/pypresence/default.nix +++ b/pkgs/development/python-modules/pypresence/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { doCheck = false; # tests require internet connection pythonImportsCheck = [ "pypresence" ]; - meta = with lib; { + meta = { homepage = "https://qwertyquerty.github.io/pypresence/html/index.html"; description = "Discord RPC client written in Python"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyprind/default.nix b/pkgs/development/python-modules/pyprind/default.nix index 9506f4c242187..374d38565698f 100644 --- a/pkgs/development/python-modules/pyprind/default.nix +++ b/pkgs/development/python-modules/pyprind/default.nix @@ -24,10 +24,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/pyptlib/default.nix b/pkgs/development/python-modules/pyptlib/default.nix index 04a7a13248a2f..98c1e46318ef1 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 cac77e5cc2cd2..b5734e72cceb1 100644 --- a/pkgs/development/python-modules/pypubsub/default.nix +++ b/pkgs/development/python-modules/pypubsub/default.nix @@ -26,7 +26,7 @@ buildPythonPackage rec { py.test ''; - meta = with lib; { + meta = { homepage = "https://github.com/schollii/pypubsub"; description = "Python 3 publish-subcribe library"; longDescription = '' @@ -39,7 +39,7 @@ buildPythonPackage rec { maintaining topics and messages in larger desktop- or server-based applications. ''; - license = licenses.bsd2; - maintainers = with maintainers; [ tfmoraes ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ tfmoraes ]; }; } diff --git a/pkgs/development/python-modules/pypugjs/default.nix b/pkgs/development/python-modules/pypugjs/default.nix index 455677a381668..a2622c8924b4d 100644 --- a/pkgs/development/python-modules/pypugjs/default.nix +++ b/pkgs/development/python-modules/pypugjs/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pytestCheckFlags = [ "pypugjs/testsuite" ]; - 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/pypytools/default.nix b/pkgs/development/python-modules/pypytools/default.nix index 6c6a74b43a9e3..7a3eb09253553 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/pyqldb/default.nix b/pkgs/development/python-modules/pyqldb/default.nix index 484e2d564c4f4..c24f53617f9eb 100644 --- a/pkgs/development/python-modules/pyqldb/default.nix +++ b/pkgs/development/python-modules/pyqldb/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyqldb" ]; - meta = with lib; { + meta = { description = "Python driver for Amazon QLDB"; homepage = "https://github.com/awslabs/amazon-qldb-driver-python"; - license = licenses.asl20; - maintainers = [ maintainers.terlar ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.terlar ]; }; } diff --git a/pkgs/development/python-modules/pyqrcode/default.nix b/pkgs/development/python-modules/pyqrcode/default.nix index c624964eecf3e..e6adf0c493a6f 100644 --- a/pkgs/development/python-modules/pyqrcode/default.nix +++ b/pkgs/development/python-modules/pyqrcode/default.nix @@ -17,10 +17,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 f00862f8804fb..d22fb322f5b76 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; - maintainers = with maintainers; [ nrdxp ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nrdxp ]; }; } diff --git a/pkgs/development/python-modules/pyqt/5.x.nix b/pkgs/development/python-modules/pyqt/5.x.nix index 5e1c966735559..6a9db0e253f76 100644 --- a/pkgs/development/python-modules/pyqt/5.x.nix +++ b/pkgs/development/python-modules/pyqt/5.x.nix @@ -198,11 +198,11 @@ 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; - maintainers = with maintainers; [ sander ]; + maintainers = with lib.maintainers; [ sander ]; }; } diff --git a/pkgs/development/python-modules/pyqt/6.x.nix b/pkgs/development/python-modules/pyqt/6.x.nix index a44e8b89dfa93..98096f56a74cf 100644 --- a/pkgs/development/python-modules/pyqt/6.x.nix +++ b/pkgs/development/python-modules/pyqt/6.x.nix @@ -146,11 +146,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 e4b6c28d8b536..e96f0ad2e020c 100644 --- a/pkgs/development/python-modules/pyqt/pyqt6-sip.nix +++ b/pkgs/development/python-modules/pyqt/pyqt6-sip.nix @@ -20,11 +20,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 4a4ceebf66a6e..374769d002f77 100644 --- a/pkgs/development/python-modules/pyqt/sip.nix +++ b/pkgs/development/python-modules/pyqt/sip.nix @@ -20,11 +20,11 @@ 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; - maintainers = with maintainers; [ sander ]; + maintainers = with lib.maintainers; [ sander ]; }; } diff --git a/pkgs/development/python-modules/pyqt3d/default.nix b/pkgs/development/python-modules/pyqt3d/default.nix index 487ab3a109859..c87af815d2884 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 a891942d1d457..7c97104770843 100644 --- a/pkgs/development/python-modules/pyqt5-stubs/default.nix +++ b/pkgs/development/python-modules/pyqt5-stubs/default.nix @@ -57,10 +57,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 2ee389ad20750..57890f079cea4 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 2d48412270719..ea026b0020231 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; - maintainers = with maintainers; [ paveloom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ paveloom ]; }; } diff --git a/pkgs/development/python-modules/pyqtdatavisualization/default.nix b/pkgs/development/python-modules/pyqtdatavisualization/default.nix index 9fce4b02bc7d2..7e3d806232909 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 fab1e6c4f8cc6..3c3ed30155d41 100644 --- a/pkgs/development/python-modules/pyquaternion/default.nix +++ b/pkgs/development/python-modules/pyquaternion/default.nix @@ -35,10 +35,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/pyqvrpro/default.nix b/pkgs/development/python-modules/pyqvrpro/default.nix index 53392e3cb18d6..6a974d7a69b9d 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 5ccd23833092e..e32c41d8d871d 100644 --- a/pkgs/development/python-modules/pyqwikswitch/default.nix +++ b/pkgs/development/python-modules/pyqwikswitch/default.nix @@ -28,10 +28,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; - maintainers = teams.home-assistant.members; + license = lib.licenses.mit; + maintainers = lib.teams.home-assistant.members; }; } diff --git a/pkgs/development/python-modules/pyrabbit2/default.nix b/pkgs/development/python-modules/pyrabbit2/default.nix index cd1da7f061843..40515e959ea2a 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/pyradios/default.nix b/pkgs/development/python-modules/pyradios/default.nix index 1d979d2678151..5128f1a95c2b4 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/pyramid-beaker/default.nix b/pkgs/development/python-modules/pyramid-beaker/default.nix index 87e9a30932cb3..81b173a49b974 100644 --- a/pkgs/development/python-modules/pyramid-beaker/default.nix +++ b/pkgs/development/python-modules/pyramid-beaker/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pyramid ]; - meta = with lib; { + meta = { description = "Beaker session factory backend for Pyramid"; homepage = "https://docs.pylonsproject.org/projects/pyramid_beaker/en/latest/"; # idk, see https://github.com/Pylons/pyramid_beaker/blob/master/LICENSE.txt - # license = licenses.mpl20; - maintainers = with maintainers; [ domenkozar ]; + # license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/pyramid-chameleon/default.nix b/pkgs/development/python-modules/pyramid-chameleon/default.nix index dadd0e534a3ff..dc1036930f2fa 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/pyramid-exclog/default.nix b/pkgs/development/python-modules/pyramid-exclog/default.nix index b88777f8692da..0c356dfc77980 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/pyramid-jinja2/default.nix b/pkgs/development/python-modules/pyramid-jinja2/default.nix index f15a3623ee239..a03aac470e980 100644 --- a/pkgs/development/python-modules/pyramid-jinja2/default.nix +++ b/pkgs/development/python-modules/pyramid-jinja2/default.nix @@ -50,10 +50,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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/pyramid-mako/default.nix b/pkgs/development/python-modules/pyramid-mako/default.nix index f362fae175173..4644bffdba25c 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/pyre-extensions/default.nix b/pkgs/development/python-modules/pyre-extensions/default.nix index 3e0fd51915a2f..d0d7beb95e0ca 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 793b3ab382fbf..f3e63a7743f8b 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/pyrect/default.nix b/pkgs/development/python-modules/pyrect/default.nix index 3b673068adaaa..4058e4019b210 100644 --- a/pkgs/development/python-modules/pyrect/default.nix +++ b/pkgs/development/python-modules/pyrect/default.nix @@ -28,10 +28,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/pyrender/default.nix b/pkgs/development/python-modules/pyrender/default.nix index 1399a21b6fdb1..5b9127e98db72 100644 --- a/pkgs/development/python-modules/pyrender/default.nix +++ b/pkgs/development/python-modules/pyrender/default.nix @@ -86,10 +86,10 @@ 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 ]; }; } diff --git a/pkgs/development/python-modules/pyrfc3339/default.nix b/pkgs/development/python-modules/pyrfc3339/default.nix index bf2abeb811d6f..38a919d952cd3 100644 --- a/pkgs/development/python-modules/pyrfc3339/default.nix +++ b/pkgs/development/python-modules/pyrfc3339/default.nix @@ -27,9 +27,9 @@ buildPythonPackage rec { doCheck = false; # tests are not including in PyPI tarball - meta = with lib; { + meta = { 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/pyric/default.nix b/pkgs/development/python-modules/pyric/default.nix index e8a29ae7258c8..23c2aa5856f90 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/pyrituals/default.nix b/pkgs/development/python-modules/pyrituals/default.nix index c8514f59ae787..e33fa505b02a6 100644 --- a/pkgs/development/python-modules/pyrituals/default.nix +++ b/pkgs/development/python-modules/pyrituals/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pyrituals" ]; - meta = with lib; { + meta = { description = "Python wrapper for the Rituals Perfume Genie API"; homepage = "https://github.com/milanmeu/pyrituals"; - 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/pyrmvtransport/default.nix b/pkgs/development/python-modules/pyrmvtransport/default.nix index 89eea0f2ecbb6..28c059c4cc415 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/pyrogram/default.nix b/pkgs/development/python-modules/pyrogram/default.nix index b7961fa3e690f..daf9ccd7869b6 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 eacbbe5b8b9c4..c515f22dd20e5 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/pyrr/default.nix b/pkgs/development/python-modules/pyrr/default.nix index a4f709f2dfb29..57ff0a6719c3f 100644 --- a/pkgs/development/python-modules/pyrr/default.nix +++ b/pkgs/development/python-modules/pyrr/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { 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 57804f9bd150c..037b9eb965177 100644 --- a/pkgs/development/python-modules/pyrsistent/default.nix +++ b/pkgs/development/python-modules/pyrsistent/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyrsistent" ]; - meta = with lib; { + meta = { homepage = "https://github.com/tobgu/pyrsistent/"; description = "Persistent/Functional/Immutable data structures"; - license = licenses.mit; - maintainers = with maintainers; [ desiderius ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ desiderius ]; }; } diff --git a/pkgs/development/python-modules/pyrss2gen/default.nix b/pkgs/development/python-modules/pyrss2gen/default.nix index f07f054cbce6c..eabcce0c2e2cf 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/pyrympro/default.nix b/pkgs/development/python-modules/pyrympro/default.nix index a53c74cee613d..f4c8e0ce2e269 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 499cb552b36e0..55d213e4a94ba 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/pysatochip/default.nix b/pkgs/development/python-modules/pysatochip/default.nix index 0921aa790e80e..1245889188b86 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 fcc440fe4c74e..97074e55e45d4 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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/pyscaffold/default.nix b/pkgs/development/python-modules/pyscaffold/default.nix index 5a0b13086071c..cc52232b8cc07 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 d5ba7c9b6d828..340746187d90d 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 0ee14743b5e9e..d9f6a4195daa6 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 6270dbc2d1d5e..5ea8a73f01523 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 cc70d4098ab85..ca282e87c2cb0 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 d84320a77a959..918316acf646d 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 4eeaafd14c229..f17e3c66fd9b6 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/pyscf/default.nix b/pkgs/development/python-modules/pyscf/default.nix index 24f5f6eaff5a6..3f88f9baa8c17 100644 --- a/pkgs/development/python-modules/pyscf/default.nix +++ b/pkgs/development/python-modules/pyscf/default.nix @@ -99,14 +99,14 @@ buildPythonPackage rec { "--ignore-glob=pyscf/grad/test/test_casscf.py" ]; - meta = with lib; { + meta = { description = "Python-based simulations of chemistry framework"; homepage = "https://github.com/pyscf/pyscf"; - license = licenses.asl20; + license = lib.licenses.asl20; platforms = [ "x86_64-linux" "x86_64-darwin" ]; - maintainers = [ maintainers.sheepforce ]; + maintainers = [ lib.maintainers.sheepforce ]; }; } diff --git a/pkgs/development/python-modules/pyschedule/default.nix b/pkgs/development/python-modules/pyschedule/default.nix index e3f09a5a58a0c..a62a288704fe1 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 5c7bc1afb9605..7501a1708ae93 100644 --- a/pkgs/development/python-modules/pyschemes/default.nix +++ b/pkgs/development/python-modules/pyschemes/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { 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/pyscreenshot/default.nix b/pkgs/development/python-modules/pyscreenshot/default.nix index 6112062c91e9b..0d2b47eacafad 100644 --- a/pkgs/development/python-modules/pyscreenshot/default.nix +++ b/pkgs/development/python-modules/pyscreenshot/default.nix @@ -36,10 +36,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 51898b3ed9254..5f7ca551c54cf 100644 --- a/pkgs/development/python-modules/pyscreeze/default.nix +++ b/pkgs/development/python-modules/pyscreeze/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { 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 69c613e21d561..b6fc96296e6e2 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 11445c064c062..0ac7435b8704d 100644 --- a/pkgs/development/python-modules/pyscss/default.nix +++ b/pkgs/development/python-modules/pyscss/default.nix @@ -25,10 +25,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 091eb865359b9..6261d92175024 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 118518859d0b1..febbced3467a1 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/pysensors/default.nix b/pkgs/development/python-modules/pysensors/default.nix index 8f09a6e19aedd..94cb0f65e4236 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/pysequoia/default.nix b/pkgs/development/python-modules/pysequoia/default.nix index f2c07cd5e4181..e53af482ec6e1 100644 --- a/pkgs/development/python-modules/pysequoia/default.nix +++ b/pkgs/development/python-modules/pysequoia/default.nix @@ -55,12 +55,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysequoia" ]; - meta = with lib; { + meta = { description = "This library provides OpenPGP facilities in Python through the Sequoia PGP library"; downloadPage = "https://codeberg.org/wiktor/pysequoia"; homepage = "https://sequoia-pgp.gitlab.io/pysequoia"; - license = licenses.asl20; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ doronbehar ]; # Broken since the 0.1.20 update according to ofborg. The errors are not clear... broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/development/python-modules/pyserial-asyncio/default.nix b/pkgs/development/python-modules/pyserial-asyncio/default.nix index bd48ff1b4527e..6de9984d2972c 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 156cf889185f1..07ae23c2ffac8 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 08ea007ba7b13..565abb80f9f3d 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/pyshp/default.nix b/pkgs/development/python-modules/pyshp/default.nix index 176e04eed522d..5c9c5f6064d3a 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/pyside2-tools/default.nix b/pkgs/development/python-modules/pyside2-tools/default.nix index c9d8af7009794..18d3c619f481c 100644 --- a/pkgs/development/python-modules/pyside2-tools/default.nix +++ b/pkgs/development/python-modules/pyside2-tools/default.nix @@ -60,10 +60,10 @@ 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 = with maintainers; [ gebner ]; + maintainers = with lib.maintainers; [ gebner ]; }; } diff --git a/pkgs/development/python-modules/pyside2/default.nix b/pkgs/development/python-modules/pyside2/default.nix index 81911928b169f..e91fe1972185f 100644 --- a/pkgs/development/python-modules/pyside2/default.nix +++ b/pkgs/development/python-modules/pyside2/default.nix @@ -91,12 +91,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 = with maintainers; [ gebner ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ gebner ]; + platforms = lib.platforms.all; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/development/python-modules/pysigma-backend-insightidr/default.nix b/pkgs/development/python-modules/pysigma-backend-insightidr/default.nix index 469366fdd4e94..4e80a326567ba 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/pysigset/default.nix b/pkgs/development/python-modules/pysigset/default.nix index e0ecf26d4f398..c1d980866a541 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/pysim/default.nix b/pkgs/development/python-modules/pysim/default.nix index 99563f726096f..ed2908f4d310d 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/pysingleton/default.nix b/pkgs/development/python-modules/pysingleton/default.nix index 1013951b0bba0..96461a73f82d1 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 95aedea3d074b..7e8f049cb8c0a 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/pyslim/default.nix b/pkgs/development/python-modules/pyslim/default.nix index 4d26124cdafb3..fd361b10534f4 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; - maintainers = with maintainers; [ alxsimon ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ alxsimon ]; }; } diff --git a/pkgs/development/python-modules/pyslurm/default.nix b/pkgs/development/python-modules/pyslurm/default.nix index 4361c2fbc2235..502b2371aeef4 100644 --- a/pkgs/development/python-modules/pyslurm/default.nix +++ b/pkgs/development/python-modules/pyslurm/default.nix @@ -37,11 +37,11 @@ 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; - maintainers = with maintainers; [ bhipple ]; - platforms = platforms.linux; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ bhipple ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/pysma/default.nix b/pkgs/development/python-modules/pysma/default.nix index 17d120b65e74d..b06b14230c39a 100644 --- a/pkgs/development/python-modules/pysma/default.nix +++ b/pkgs/development/python-modules/pysma/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysma" ]; - meta = with lib; { + meta = { description = "Python library for interacting with SMA Solar's WebConnect"; homepage = "https://github.com/kellerza/pysma"; - 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/pysmappee/default.nix b/pkgs/development/python-modules/pysmappee/default.nix index dbf3d11da54be..496ff315cd3a6 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/pysmbc/default.nix b/pkgs/development/python-modules/pysmbc/default.nix index e01646ae5b7a3..11fb0394cf390 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 dfa1075f08163..3dca63ed4d39b 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/pysml/default.nix b/pkgs/development/python-modules/pysml/default.nix index bc1a3d841cd58..a629841d26ac6 100644 --- a/pkgs/development/python-modules/pysml/default.nix +++ b/pkgs/development/python-modules/pysml/default.nix @@ -38,10 +38,10 @@ 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"; - 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 7197bb1b6bb57..f064fcc374154 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/pysnooper/default.nix b/pkgs/development/python-modules/pysnooper/default.nix index f8ce981e1d38f..a1c675b848b6b 100644 --- a/pkgs/development/python-modules/pysnooper/default.nix +++ b/pkgs/development/python-modules/pysnooper/default.nix @@ -23,10 +23,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/pysnow/default.nix b/pkgs/development/python-modules/pysnow/default.nix index 1a7c541daea0f..701ef7db57879 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 82c8c2dba332a..6c521221391ca 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 b9612be0978c4..8d01e4f60d96e 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/pysolr/default.nix b/pkgs/development/python-modules/pysolr/default.nix index 5a9a711f2815f..f0440666772b4 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 c27991b8ca09c..607b64ec37fab 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 a95787c5444a6..81644e3a969c7 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/pyspellchecker/default.nix b/pkgs/development/python-modules/pyspellchecker/default.nix index 693863346bb74..85d34588189fa 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 cdedf35b93a52..ccb5f325eb678 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 = with maintainers; [ abbradar ]; - license = licenses.gpl2; + maintainers = with lib.maintainers; [ abbradar ]; + license = lib.licenses.gpl2; }; } diff --git a/pkgs/development/python-modules/pyspice/default.nix b/pkgs/development/python-modules/pyspice/default.nix index c88331be6880a..6decff29f9142 100644 --- a/pkgs/development/python-modules/pyspice/default.nix +++ b/pkgs/development/python-modules/pyspice/default.nix @@ -47,10 +47,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 eda0db8b767cb..eb3f02e15010b 100644 --- a/pkgs/development/python-modules/pyspiflash/default.nix +++ b/pkgs/development/python-modules/pyspiflash/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "spiflash" ]; - meta = with lib; { + meta = { description = "SPI data flash device drivers in Python"; homepage = "https://github.com/eblot/pyspiflash"; - 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/pyspinel/default.nix b/pkgs/development/python-modules/pyspinel/default.nix index 7099e7e5a4e2d..7023864e98786 100644 --- a/pkgs/development/python-modules/pyspinel/default.nix +++ b/pkgs/development/python-modules/pyspinel/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "spinel" ]; - meta = with lib; { + meta = { description = "Interface to the OpenThread Network Co-Processor (NCP)"; homepage = "https://github.com/openthread/pyspinel"; - license = licenses.asl20; - maintainers = with maintainers; [ gebner ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ gebner ]; }; } diff --git a/pkgs/development/python-modules/pysptk/default.nix b/pkgs/development/python-modules/pysptk/default.nix index e148d8af8b06e..abc37c7b815d3 100644 --- a/pkgs/development/python-modules/pysptk/default.nix +++ b/pkgs/development/python-modules/pysptk/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysptk" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; 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/pysqlcipher3/default.nix b/pkgs/development/python-modules/pysqlcipher3/default.nix index 3b371ba727cff..1727d1dd49c8e 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 1c13452b0e558..4ac861149d2ff 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 9be5028a87879..b9ebc40d5b49b 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/pyssim/default.nix b/pkgs/development/python-modules/pyssim/default.nix index 6b910b1d72072..5b26bdd433d9d 100644 --- a/pkgs/development/python-modules/pyssim/default.nix +++ b/pkgs/development/python-modules/pyssim/default.nix @@ -48,11 +48,11 @@ buildPythonPackage rec { $out/bin/pyssim --cw --width 128 --height 128 test-images/test3-orig.jpg test-images/test3-rot.jpg | grep 0.938 ''; - meta = with lib; { + meta = { description = "Module for computing Structured Similarity Image Metric (SSIM) in Python"; mainProgram = "pyssim"; homepage = "https://github.com/jterrace/pyssim"; - license = licenses.mit; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/pystardict/default.nix b/pkgs/development/python-modules/pystardict/default.nix index ac890f7fdbf61..4938fac38e6b3 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/pystemd/default.nix b/pkgs/development/python-modules/pystemd/default.nix index 86be5f000ed51..b68f681427fe7 100644 --- a/pkgs/development/python-modules/pystemd/default.nix +++ b/pkgs/development/python-modules/pystemd/default.nix @@ -35,13 +35,13 @@ buildPythonPackage rec { checkPhase = "pytest tests"; - meta = with lib; { + meta = { description = '' Thin Cython-based wrapper on top of libsystemd, focused on exposing the dbus API via sd-bus in an automated and easy to consume way ''; homepage = "https://github.com/facebookincubator/pystemd/"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/development/python-modules/pystemmer/default.nix b/pkgs/development/python-modules/pystemmer/default.nix index 568f0bf2c80e7..4de0e3bd8666f 100644 --- a/pkgs/development/python-modules/pystemmer/default.nix +++ b/pkgs/development/python-modules/pystemmer/default.nix @@ -51,14 +51,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 632356001c59d..b311b45df8add 100644 --- a/pkgs/development/python-modules/pystray/default.nix +++ b/pkgs/development/python-modules/pystray/default.nix @@ -68,14 +68,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.linux; - maintainers = with maintainers; [ jojosch ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ jojosch ]; }; } diff --git a/pkgs/development/python-modules/pysubs2/default.nix b/pkgs/development/python-modules/pysubs2/default.nix index e03a87fffda02..a8899b213a43a 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/pysvn/default.nix b/pkgs/development/python-modules/pysvn/default.nix index da2930e541908..0c848f2dba5f1 100644 --- a/pkgs/development/python-modules/pysvn/default.nix +++ b/pkgs/development/python-modules/pysvn/default.nix @@ -67,11 +67,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/pysychonaut/default.nix b/pkgs/development/python-modules/pysychonaut/default.nix index 408338cb4ef5b..b43101ce12ee3 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/pysyncthru/default.nix b/pkgs/development/python-modules/pysyncthru/default.nix index 097071b98e516..159703bd10534 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 b1508c27a08e7..fe454cbfe0e14 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/pytankerkoenig/default.nix b/pkgs/development/python-modules/pytankerkoenig/default.nix index 67af158546972..7d29f005ecd7a 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 1e080f0bbad30..170379c8f2b70 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 335e53e31548c..9c5d846b4181d 100644 --- a/pkgs/development/python-modules/pytapo/default.nix +++ b/pkgs/development/python-modules/pytapo/default.nix @@ -36,10 +36,10 @@ 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"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fleaz ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fleaz ]; }; } diff --git a/pkgs/development/python-modules/pyte/default.nix b/pkgs/development/python-modules/pyte/default.nix index 0110008ae3dd5..eeb1b98467346 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/pytesseract/default.nix b/pkgs/development/python-modules/pytesseract/default.nix index e64c3e28a2b6e..47a8566f9970c 100644 --- a/pkgs/development/python-modules/pytesseract/default.nix +++ b/pkgs/development/python-modules/pytesseract/default.nix @@ -45,9 +45,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-annotate/default.nix b/pkgs/development/python-modules/pytest-annotate/default.nix index 31ed87e032138..6ba5a249da03e 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-arraydiff/default.nix b/pkgs/development/python-modules/pytest-arraydiff/default.nix index 4a1912e958782..5d178ff8e17c4 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 8b87d4422b579..043c5f622f490 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-astropy/default.nix b/pkgs/development/python-modules/pytest-astropy/default.nix index f620e14a51b6c..59467934c4907 100644 --- a/pkgs/development/python-modules/pytest-astropy/default.nix +++ b/pkgs/development/python-modules/pytest-astropy/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { # pytest-astropy is a meta package that only propagates requirements doCheck = false; - meta = with lib; { + meta = { description = "Meta-package containing dependencies for testing"; homepage = "https://astropy.org"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-black/default.nix b/pkgs/development/python-modules/pytest-black/default.nix index f46abe031c3f3..faaf60acfdfc4 100644 --- a/pkgs/development/python-modules/pytest-black/default.nix +++ b/pkgs/development/python-modules/pytest-black/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { doCheck = false; 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-catchlog/default.nix b/pkgs/development/python-modules/pytest-catchlog/default.nix index e4e2dffdbb29f..032a7b6f12ed4 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-cid/default.nix b/pkgs/development/python-modules/pytest-cid/default.nix index b49313a63f799..88a12e1b38b65 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-console-scripts/default.nix b/pkgs/development/python-modules/pytest-console-scripts/default.nix index e3f63c4686f04..2eeefc43a70c6 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 1a177559f3190..e2a53d65fd1bf 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 rec { 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 07f162465f9eb..5913a59a370a6 100644 --- a/pkgs/development/python-modules/pytest-cov/default.nix +++ b/pkgs/development/python-modules/pytest-cov/default.nix @@ -37,9 +37,9 @@ 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"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pytest-datafiles/default.nix b/pkgs/development/python-modules/pytest-datafiles/default.nix index 006a352318e02..fd4f2838cb5d9 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-doctestplus/default.nix b/pkgs/development/python-modules/pytest-doctestplus/default.nix index 911d834c26bb8..4ad73f8aee1d5 100644 --- a/pkgs/development/python-modules/pytest-doctestplus/default.nix +++ b/pkgs/development/python-modules/pytest-doctestplus/default.nix @@ -63,10 +63,10 @@ buildPythonPackage rec { "test_remote_data_ignore_warnings" ]; - 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 7f9a678468b8b..a89ebe0bd2ceb 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 d29fe9eee0e09..e2b2a9903acc6 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 e2a4f0e4a8ab3..d9ae40da022bd 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 594c16c4a87ff..5a7900a4b6a4a 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 5b10967a0b00b..a10eeaf91db03 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 { pytestFlagsArray = [ "--ignore=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-fixture-config/default.nix b/pkgs/development/python-modules/pytest-fixture-config/default.nix index 3c94e6de6c98f..af8aefe1bd93c 100644 --- a/pkgs/development/python-modules/pytest-fixture-config/default.nix +++ b/pkgs/development/python-modules/pytest-fixture-config/default.nix @@ -34,10 +34,10 @@ buildPythonPackage { doCheck = false; - meta = with lib; { + meta = { 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 6c9a42cd632ab..d7d60090d97c7 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-freezegun/default.nix b/pkgs/development/python-modules/pytest-freezegun/default.nix index 259f698431aba..802c68186dbee 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-golden/default.nix b/pkgs/development/python-modules/pytest-golden/default.nix index bf2de36a148ee..3d4f72f3a52d5 100644 --- a/pkgs/development/python-modules/pytest-golden/default.nix +++ b/pkgs/development/python-modules/pytest-golden/default.nix @@ -55,10 +55,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 18fa92f9279d2..e855dcfe1f3cd 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; - maintainers = teams.deshaw.members; + license = lib.licenses.mit; + maintainers = lib.teams.deshaw.members; }; } diff --git a/pkgs/development/python-modules/pytest-helpers-namespace/default.nix b/pkgs/development/python-modules/pytest-helpers-namespace/default.nix index ced0389f2887d..5de6872ce99e5 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 769eaffc3e034..f5b6fb35a7d53 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-image-diff/default.nix b/pkgs/development/python-modules/pytest-image-diff/default.nix index 59b32c8f11729..5e6ff93d1475f 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; - maintainers = with maintainers; [ evils ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ evils ]; }; } diff --git a/pkgs/development/python-modules/pytest-lazy-fixture/default.nix b/pkgs/development/python-modules/pytest-lazy-fixture/default.nix index 64afaa0d07862..b251c4287384b 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 f992192512977..be567fb2df4be 100644 --- a/pkgs/development/python-modules/pytest-lazy-fixtures/default.nix +++ b/pkgs/development/python-modules/pytest-lazy-fixtures/default.nix @@ -24,10 +24,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-logdog/default.nix b/pkgs/development/python-modules/pytest-logdog/default.nix index b047d86acc12f..3ee1160ae09c7 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 d1352941ba7da..8e9e9f78af686 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-metadata/default.nix b/pkgs/development/python-modules/pytest-metadata/default.nix index fc72d1843d388..1c2db8e9fcaa9 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 3ab4e4e63cbf3..771f6722be5d8 100644 --- a/pkgs/development/python-modules/pytest-mockservers/default.nix +++ b/pkgs/development/python-modules/pytest-mockservers/default.nix @@ -48,10 +48,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 d5bfa4402cbe6..7f18ddc71ca8a 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-order/default.nix b/pkgs/development/python-modules/pytest-order/default.nix index 04059a7e45fed..cd2c9720b14c6 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-param-files/default.nix b/pkgs/development/python-modules/pytest-param-files/default.nix index 793747e182486..8f8d2a73b258e 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-plt/default.nix b/pkgs/development/python-modules/pytest-plt/default.nix index 42e6e19abdf56..89545e7447290 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-pudb/default.nix b/pkgs/development/python-modules/pytest-pudb/default.nix index 376a7142af046..03b59ca3dc98d 100644 --- a/pkgs/development/python-modules/pytest-pudb/default.nix +++ b/pkgs/development/python-modules/pytest-pudb/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_pudb" ]; - meta = with lib; { + meta = { description = "Pytest PuDB debugger integration"; homepage = "https://github.com/wronglink/pytest-pudb"; - license = licenses.mit; - maintainers = with maintainers; [ thornycrackers ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thornycrackers ]; }; } diff --git a/pkgs/development/python-modules/pytest-pylint/default.nix b/pkgs/development/python-modules/pytest-pylint/default.nix index 5df06f4dbc35b..3322e4aceddde 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-qt/default.nix b/pkgs/development/python-modules/pytest-qt/default.nix index d418cfee9e1f3..285b1a99c5c74 100644 --- a/pkgs/development/python-modules/pytest-qt/default.nix +++ b/pkgs/development/python-modules/pytest-qt/default.nix @@ -31,10 +31,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 79ca2dc113634..bf61c40d16726 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 a2d818f070048..ee664ec90d86c 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 e6ce1e3a96e2d..061812c70566f 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 762a3a6fa0eca..0dcca1c25d806 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-recording/default.nix b/pkgs/development/python-modules/pytest-recording/default.nix index 01f8ef05d85b6..1c4678f32309c 100644 --- a/pkgs/development/python-modules/pytest-recording/default.nix +++ b/pkgs/development/python-modules/pytest-recording/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_recording" ]; - meta = with lib; { + meta = { description = "Pytest plugin that allows you recording of network interactions via VCR.py"; homepage = "https://github.com/kiwicom/pytest-recording"; - license = licenses.mit; - maintainers = with maintainers; [ jbgosselin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jbgosselin ]; }; } diff --git a/pkgs/development/python-modules/pytest-regressions/default.nix b/pkgs/development/python-modules/pytest-regressions/default.nix index bb1584aa162ef..b8dd180995040 100644 --- a/pkgs/development/python-modules/pytest-regressions/default.nix +++ b/pkgs/development/python-modules/pytest-regressions/default.nix @@ -66,7 +66,7 @@ buildPythonPackage rec { ]; }; - meta = with lib; { + meta = { description = "Pytest fixtures to write regression tests"; longDescription = '' pytest-regressions makes it simple to test general data, images, @@ -75,7 +75,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-rerunfailures/default.nix b/pkgs/development/python-modules/pytest-rerunfailures/default.nix index dbd2d5b20171f..f111dbc2ce64b 100644 --- a/pkgs/development/python-modules/pytest-rerunfailures/default.nix +++ b/pkgs/development/python-modules/pytest-rerunfailures/default.nix @@ -29,10 +29,10 @@ 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"; - 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 66389e622e64d..906be689b62eb 100644 --- a/pkgs/development/python-modules/pytest-resource-path/default.nix +++ b/pkgs/development/python-modules/pytest-resource-path/default.nix @@ -34,10 +34,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-server-fixtures/default.nix b/pkgs/development/python-modules/pytest-server-fixtures/default.nix index eddc3fc06fa94..00c64821a3c6a 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 intergration 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-shutil/default.nix b/pkgs/development/python-modules/pytest-shutil/default.nix index d8bde90932bf9..6fbce28e4a45a 100644 --- a/pkgs/development/python-modules/pytest-shutil/default.nix +++ b/pkgs/development/python-modules/pytest-shutil/default.nix @@ -63,10 +63,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 af40cceaa3206..08884ccec6a13 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 e8cfd7dc9b62a..3336640ba19cc 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-subtesthack/default.nix b/pkgs/development/python-modules/pytest-subtesthack/default.nix index abf57ae1832a8..5c1f2c06f97b0 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 ee0bd0220226c..1754859400dfb 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-timeout/default.nix b/pkgs/development/python-modules/pytest-timeout/default.nix index d916162e5a5ca..fb79424c8e6e4 100644 --- a/pkgs/development/python-modules/pytest-timeout/default.nix +++ b/pkgs/development/python-modules/pytest-timeout/default.nix @@ -34,11 +34,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/#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 b4851ea3a50a1..8ca97fdad6138 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 43464e3ce149a..bee544ba00bbb 100644 --- a/pkgs/development/python-modules/pytest-tornasync/default.nix +++ b/pkgs/development/python-modules/pytest-tornasync/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { 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-trio/default.nix b/pkgs/development/python-modules/pytest-trio/default.nix index 31caf8fc5e098..53a1540f8a73c 100644 --- a/pkgs/development/python-modules/pytest-trio/default.nix +++ b/pkgs/development/python-modules/pytest-trio/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_trio" ]; - meta = with lib; { + meta = { description = "Pytest plugin for trio"; homepage = "https://github.com/python-trio/pytest-trio"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pytest-vcr/default.nix b/pkgs/development/python-modules/pytest-vcr/default.nix index 2e77d3af8261a..a6b7bb85ca0e9 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 fc027dd939299..d3ae6ac0c9dd0 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-watch/default.nix b/pkgs/development/python-modules/pytest-watch/default.nix index 4008125457671..f8bf50c9fd4eb 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 a27712212d30f..d4a2751d98d56 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/pytestcache/default.nix b/pkgs/development/python-modules/pytestcache/default.nix index dbed88eb85fab..e5cb416f9f4a8 100644 --- a/pkgs/development/python-modules/pytestcache/default.nix +++ b/pkgs/development/python-modules/pytestcache/default.nix @@ -25,8 +25,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-awair/default.nix b/pkgs/development/python-modules/python-awair/default.nix index c814188477fa7..8eb1c16c2fcd1 100644 --- a/pkgs/development/python-modules/python-awair/default.nix +++ b/pkgs/development/python-modules/python-awair/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "python_awair" ]; - meta = with lib; { + meta = { description = "Python library for the Awair API"; homepage = "https://github.com/ahayworth/python_awair"; - 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-axolotl/default.nix b/pkgs/development/python-modules/python-axolotl/default.nix index 8af55b83ff587..08ec6b07708d9 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 = with maintainers; [ abbradar ]; - license = licenses.gpl3; + maintainers = with lib.maintainers; [ abbradar ]; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/python-baseconv/default.nix b/pkgs/development/python-modules/python-baseconv/default.nix index c6f9386ca36c1..ad8a7f8dcbd67 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-binance/default.nix b/pkgs/development/python-modules/python-binance/default.nix index c8f153e07ff7a..97232d8d7b6fb 100644 --- a/pkgs/development/python-modules/python-binance/default.nix +++ b/pkgs/development/python-modules/python-binance/default.nix @@ -60,10 +60,10 @@ 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; - maintainers = with maintainers; [ bhipple ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bhipple ]; }; } diff --git a/pkgs/development/python-modules/python-bring-api/default.nix b/pkgs/development/python-modules/python-bring-api/default.nix index 060c73d39cd44..af49ca9bc2f72 100644 --- a/pkgs/development/python-modules/python-bring-api/default.nix +++ b/pkgs/development/python-modules/python-bring-api/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "python_bring_api" ]; - meta = with lib; { + meta = { description = "Module to access the Bring! shopping lists API"; homepage = "https://github.com/eliasball/python-bring-api"; - 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 1aa40b81c0fb0..8c103537e00de 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-cinderclient/default.nix b/pkgs/development/python-modules/python-cinderclient/default.nix index 4d5a5b5a3e6c2..832930c1375c9 100644 --- a/pkgs/development/python-modules/python-cinderclient/default.nix +++ b/pkgs/development/python-modules/python-cinderclient/default.nix @@ -82,11 +82,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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-codon-tables/default.nix b/pkgs/development/python-modules/python-codon-tables/default.nix index f5fc127aa471c..f89b12a13db14 100644 --- a/pkgs/development/python-modules/python-codon-tables/default.nix +++ b/pkgs/development/python-modules/python-codon-tables/default.nix @@ -20,10 +20,10 @@ 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"; - 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 2a9dfd05a4599..6fb51350f6ec8 100644 --- a/pkgs/development/python-modules/python-constraint/default.nix +++ b/pkgs/development/python-modules/python-constraint/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; dontUseSetuptoolsCheck = true; - 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; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/python-crfsuite/default.nix b/pkgs/development/python-modules/python-crfsuite/default.nix index ae56a4e20418c..2b38d446a1075 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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/python-crontab/default.nix b/pkgs/development/python-modules/python-crontab/default.nix index c89cd3d07bdab..c9308a90169b2 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 364b266a9c73b..62e159edad8e1 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 aa82db324c160..5f2a7b1e730ed 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 e8e8e2c018f79..354fa5bca28c4 100644 --- a/pkgs/development/python-modules/python-daemon/default.nix +++ b/pkgs/development/python-modules/python-daemon/default.nix @@ -67,11 +67,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-debian/default.nix b/pkgs/development/python-modules/python-debian/default.nix index f20370b864989..a82e4656ee6ea 100644 --- a/pkgs/development/python-modules/python-debian/default.nix +++ b/pkgs/development/python-modules/python-debian/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "debian" ]; - meta = with lib; { + meta = { description = "Debian package related modules"; homepage = "https://salsa.debian.org/python-debian-team/python-debian"; changelog = "https://salsa.debian.org/python-debian-team/python-debian/-/blob/master/debian/changelog"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ nickcao ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/python-doi/default.nix b/pkgs/development/python-modules/python-doi/default.nix index c624d12845324..7ed4fa3c4ff26 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/alejandrogallo/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 30b817686a659..549b568f2014f 100644 --- a/pkgs/development/python-modules/python-dotenv/default.nix +++ b/pkgs/development/python-modules/python-dotenv/default.nix @@ -34,11 +34,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-editor/default.nix b/pkgs/development/python-modules/python-editor/default.nix index 21ae55ef67015..1e85300a51e73 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-ev3dev2/default.nix b/pkgs/development/python-modules/python-ev3dev2/default.nix index dc185aced7d11..67a039644f6bc 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 81ea4bff27ca3..8d17505c6f01a 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-flirt/default.nix b/pkgs/development/python-modules/python-flirt/default.nix index 47fdc3cfa08dc..5f96b350903e0 100644 --- a/pkgs/development/python-modules/python-flirt/default.nix +++ b/pkgs/development/python-modules/python-flirt/default.nix @@ -42,10 +42,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 d21202daac651..b81038d1a3c9a 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-gammu/default.nix b/pkgs/development/python-modules/python-gammu/default.nix index ed35a96f77520..39d5481727dd5 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-glanceclient/default.nix b/pkgs/development/python-modules/python-glanceclient/default.nix index dc456f383e11e..37722846fa700 100644 --- a/pkgs/development/python-modules/python-glanceclient/default.nix +++ b/pkgs/development/python-modules/python-glanceclient/default.nix @@ -87,10 +87,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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-google-nest/default.nix b/pkgs/development/python-modules/python-google-nest/default.nix index 39e4b707c5b97..026abda5bff48 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-heatclient/default.nix b/pkgs/development/python-modules/python-heatclient/default.nix index dd0a7220896ae..ccac36e058276 100644 --- a/pkgs/development/python-modules/python-heatclient/default.nix +++ b/pkgs/development/python-modules/python-heatclient/default.nix @@ -77,11 +77,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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-hl7/default.nix b/pkgs/development/python-modules/python-hl7/default.nix index 8edc669e8820c..c097f3791a237 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-http-client/default.nix b/pkgs/development/python-modules/python-http-client/default.nix index 7d303d71ef012..2283bd88c5ecf 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 319fe49f8d1fe..d7b322c495a02 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 { pytestFlagsArray = [ "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-ipmi/default.nix b/pkgs/development/python-modules/python-ipmi/default.nix index 05d37544e30b2..5770b46663121 100644 --- a/pkgs/development/python-modules/python-ipmi/default.nix +++ b/pkgs/development/python-modules/python-ipmi/default.nix @@ -39,11 +39,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-ironicclient/default.nix b/pkgs/development/python-modules/python-ironicclient/default.nix index c1b31bfb091a0..1101b452d784d 100644 --- a/pkgs/development/python-modules/python-ironicclient/default.nix +++ b/pkgs/development/python-modules/python-ironicclient/default.nix @@ -71,11 +71,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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-izone/default.nix b/pkgs/development/python-modules/python-izone/default.nix index 5a52d2d58a8af..4fba3e5f9ddfb 100644 --- a/pkgs/development/python-modules/python-izone/default.nix +++ b/pkgs/development/python-modules/python-izone/default.nix @@ -42,10 +42,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 e06a0760fbdd6..b2af2667d1d79 100644 --- a/pkgs/development/python-modules/python-jenkins/default.nix +++ b/pkgs/development/python-modules/python-jenkins/default.nix @@ -60,10 +60,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-json-logger/default.nix b/pkgs/development/python-modules/python-json-logger/default.nix index ba9de7ec3d1ea..d641fc9f56d74 100644 --- a/pkgs/development/python-modules/python-json-logger/default.nix +++ b/pkgs/development/python-modules/python-json-logger/default.nix @@ -33,10 +33,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 1ceb9d031cc69..7a7a7f187e7b7 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-keystoneclient/default.nix b/pkgs/development/python-modules/python-keystoneclient/default.nix index 3c25f946ea2ec..62f674cfac208 100644 --- a/pkgs/development/python-modules/python-keystoneclient/default.nix +++ b/pkgs/development/python-modules/python-keystoneclient/default.nix @@ -52,10 +52,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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-linux-procfs/default.nix b/pkgs/development/python-modules/python-linux-procfs/default.nix index 3a0ed111cb5cb..4139f7cea8c7d 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 71fddc53da0ac..5f835d1f7f7a4 100644 --- a/pkgs/development/python-modules/python-logstash/default.nix +++ b/pkgs/development/python-modules/python-logstash/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = with lib; { + meta = { description = "Python logging handler for Logstash"; homepage = "https://github.com/vklochan/python-logstash"; - maintainers = with maintainers; [ peterromfeldhk ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ peterromfeldhk ]; + 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 2d908d28c28f8..bed67fc98a6ab 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-ly/default.nix b/pkgs/development/python-modules/python-ly/default.nix index 1d7e39ccf446f..6fa7616575192 100644 --- a/pkgs/development/python-modules/python-ly/default.nix +++ b/pkgs/development/python-modules/python-ly/default.nix @@ -18,9 +18,9 @@ buildPythonPackage rec { # seem to be broken ATM: https://github.com/wbsoft/python-ly/issues/70 doCheck = false; - meta = with lib; { + meta = { description = "Tool and library for manipulating LilyPond files"; - 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 4b4ca0a50b8a2..5a1e8656c7cf4 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-magic/default.nix b/pkgs/development/python-modules/python-magic/default.nix index 942f4562d9dbb..0b2f757660c29 100644 --- a/pkgs/development/python-modules/python-magic/default.nix +++ b/pkgs/development/python-modules/python-magic/default.nix @@ -47,10 +47,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 c886b2154fb2e..bbfc88892ca2b 100644 --- a/pkgs/development/python-modules/python-manilaclient/default.nix +++ b/pkgs/development/python-modules/python-manilaclient/default.nix @@ -62,11 +62,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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-mapnik/default.nix b/pkgs/development/python-modules/python-mapnik/default.nix index 33770c3d82917..2b86ccfaa757e 100644 --- a/pkgs/development/python-modules/python-mapnik/default.nix +++ b/pkgs/development/python-modules/python-mapnik/default.nix @@ -129,11 +129,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mapnik" ]; - meta = with lib; { + meta = { description = "Python bindings for Mapnik"; maintainers = [ ]; homepage = "https://mapnik.org"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; broken = true; # At 2024-11-13, test_raster_warping fails. }; } diff --git a/pkgs/development/python-modules/python-mbedtls/default.nix b/pkgs/development/python-modules/python-mbedtls/default.nix index 8459559938c7e..e34273a7444d8 100644 --- a/pkgs/development/python-modules/python-mbedtls/default.nix +++ b/pkgs/development/python-modules/python-mbedtls/default.nix @@ -38,10 +38,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 048e53e7eb4c9..c3b8e28159b3b 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 2949211b9b274..13a302b872532 100644 --- a/pkgs/development/python-modules/python-miio/default.nix +++ b/pkgs/development/python-modules/python-miio/default.nix @@ -79,10 +79,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-mistralclient/default.nix b/pkgs/development/python-modules/python-mistralclient/default.nix index 6452fe3063e29..7c8c16addce75 100644 --- a/pkgs/development/python-modules/python-mistralclient/default.nix +++ b/pkgs/development/python-modules/python-mistralclient/default.nix @@ -85,11 +85,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"; - maintainers = teams.openstack.members; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-mnist/default.nix b/pkgs/development/python-modules/python-mnist/default.nix index ec7d447f36c24..2bd23d7404e0c 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 be922822f69c1..2eacc157a68fb 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 76570a0309803..1cf964d67050b 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; - maintainers = with maintainers; [ ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/python-musicpd/default.nix b/pkgs/development/python-modules/python-musicpd/default.nix index e5ed4cd9b2b3e..b83076f0f5e13 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-nest/default.nix b/pkgs/development/python-modules/python-nest/default.nix index bcac7a5cad8ec..75d14361c21b0 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 9aad7913c8d86..a22a4cfcca25e 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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-nmap/default.nix b/pkgs/development/python-modules/python-nmap/default.nix index 504d9bb561447..21d06b9d1536c 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 7717ff1bea522..9e3740df17efd 100644 --- a/pkgs/development/python-modules/python-novaclient/default.nix +++ b/pkgs/development/python-modules/python-novaclient/default.nix @@ -72,11 +72,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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-oauth2/default.nix b/pkgs/development/python-modules/python-oauth2/default.nix index 14bf4a05a425e..518e0c926aa94 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 bbd3b5f4d02ac..b9d584dd0784f 100644 --- a/pkgs/development/python-modules/python-octaviaclient/default.nix +++ b/pkgs/development/python-modules/python-octaviaclient/default.nix @@ -96,10 +96,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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-openems/default.nix b/pkgs/development/python-modules/python-openems/default.nix index a13f0d8bff844..7ca3f6f4537b0 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-openzwave/default.nix b/pkgs/development/python-modules/python-openzwave/default.nix index 6b516823c5aba..066f6dd2b6ea3 100644 --- a/pkgs/development/python-modules/python-openzwave/default.nix +++ b/pkgs/development/python-modules/python-openzwave/default.nix @@ -55,10 +55,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-owasp-zap-v2-4/default.nix b/pkgs/development/python-modules/python-owasp-zap-v2-4/default.nix index 5aaca9b14f110..a7014a6442602 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 @@ -34,10 +34,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 851cae395ad40..c8912328a88ce 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 731626689adf2..a17443cd4de17 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 8f126bca5a8d9..0f4e64fc368fd 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; [ abbradar mkg20001 ]; diff --git a/pkgs/development/python-modules/python-picnic-api/default.nix b/pkgs/development/python-modules/python-picnic-api/default.nix index 5267f99587c02..b00263ab1420b 100644 --- a/pkgs/development/python-modules/python-picnic-api/default.nix +++ b/pkgs/development/python-modules/python-picnic-api/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "python_picnic_api" ]; - meta = with lib; { + meta = { description = "Python wrapper for the Picnic API"; homepage = "https://github.com/MikeBrink/python-picnic-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/python-pidfile/default.nix b/pkgs/development/python-modules/python-pidfile/default.nix index 44a44306ee8e3..c9ad6cab2bb23 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 ]; - maintainers = with maintainers; [ lom ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ lom ]; }; } diff --git a/pkgs/development/python-modules/python-pipedrive/default.nix b/pkgs/development/python-modules/python-pipedrive/default.nix index 9f541ba8005c0..74edd260a94f2 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-pkcs11/default.nix b/pkgs/development/python-modules/python-pkcs11/default.nix index b4891105ce226..c452775c7cb3f 100644 --- a/pkgs/development/python-modules/python-pkcs11/default.nix +++ b/pkgs/development/python-modules/python-pkcs11/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pkcs11" ]; - meta = with lib; { + meta = { description = "PKCS#11/Cryptoki support for Python"; homepage = "https://github.com/danni/python-pkcs11"; - 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-rabbitair/default.nix b/pkgs/development/python-modules/python-rabbitair/default.nix index fee2f88d5038c..9fe4b64ecd271 100644 --- a/pkgs/development/python-modules/python-rabbitair/default.nix +++ b/pkgs/development/python-modules/python-rabbitair/default.nix @@ -51,10 +51,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-sat/default.nix b/pkgs/development/python-modules/python-sat/default.nix index bf1c6c45982c7..69efef6c978cd 100644 --- a/pkgs/development/python-modules/python-sat/default.nix +++ b/pkgs/development/python-modules/python-sat/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { EOF ''; - meta = with lib; { + meta = { description = "Toolkit to provide interface for various SAT (without optional dependancy py-aiger-cnf)"; homepage = "https://github.com/pysathq/pysat"; - license = licenses.mit; - maintainers = [ maintainers.marius851000 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.marius851000 ]; }; } diff --git a/pkgs/development/python-modules/python-simple-hipchat/default.nix b/pkgs/development/python-modules/python-simple-hipchat/default.nix index 61b1fa8eab31d..3744d15da3071 100644 --- a/pkgs/development/python-modules/python-simple-hipchat/default.nix +++ b/pkgs/development/python-modules/python-simple-hipchat/default.nix @@ -14,9 +14,9 @@ buildPythonPackage rec { sha256 = "0zy6prrj85jjc4xmxgfg8h94j81k6zhfxfffcbvq9b10jis1rgav"; }; - meta = with lib; { + meta = { description = "Easy peasy wrapper for HipChat's v1 API"; homepage = "https://github.com/kurttheviking/simple-hipchat-py"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/python-snap7/default.nix b/pkgs/development/python-modules/python-snap7/default.nix index 22bc349448c77..9ba694b63e711 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; - maintainers = with maintainers; [ freezeboy ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ freezeboy ]; }; } diff --git a/pkgs/development/python-modules/python-snappy/default.nix b/pkgs/development/python-modules/python-snappy/default.nix index eb6e12df362c1..140f450664249 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-status/default.nix b/pkgs/development/python-modules/python-status/default.nix index 5a1c14628dadc..a83073c4c912d 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-string-utils/default.nix b/pkgs/development/python-modules/python-string-utils/default.nix index 537f5f1f9a756..43b765a6fe8d9 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 9f4fca6cc4382..3a4bf31722ddf 100644 --- a/pkgs/development/python-modules/python-swiftclient/default.nix +++ b/pkgs/development/python-modules/python-swiftclient/default.nix @@ -55,11 +55,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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-tds/default.nix b/pkgs/development/python-modules/python-tds/default.nix index f4775b8e1798e..3865d9332d81c 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-trovo/default.nix b/pkgs/development/python-modules/python-trovo/default.nix index dace99e3b34e9..9dd313d0b31cf 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-twitter/default.nix b/pkgs/development/python-modules/python-twitter/default.nix index 1811ba176a1ee..45d0e8aee82f5 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 3edc24d30bbec..18b97e94e811c 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 01f1f2483282e..bdbaf25c478dc 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/python-unshare/default.nix b/pkgs/development/python-modules/python-unshare/default.nix index 1cfe02a07e2e9..010c70f76c1ad 100644 --- a/pkgs/development/python-modules/python-unshare/default.nix +++ b/pkgs/development/python-modules/python-unshare/default.nix @@ -18,11 +18,11 @@ buildPythonPackage { sha256 = "1h9biinhy5m7r2cj4abhvsg2hb6xjny3n2dxnj1336zpa082ys3h"; }; - meta = with lib; { + meta = { description = "Python bindings for the Linux unshare() syscall"; homepage = "https://github.com/thetincho/python-unshare"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/python-velbus/default.nix b/pkgs/development/python-modules/python-velbus/default.nix index d93267cbcfb4e..7acfd53df8e69 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-vipaccess/default.nix b/pkgs/development/python-modules/python-vipaccess/default.nix index b0d9e090e0ddd..ee5602d1cc63a 100644 --- a/pkgs/development/python-modules/python-vipaccess/default.nix +++ b/pkgs/development/python-modules/python-vipaccess/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pytest tests/ -k 'not test_check_token' ''; - meta = with lib; { + meta = { description = "Free software implementation of Symantec's VIP Access application and protocol"; mainProgram = "vipaccess"; homepage = "https://github.com/dlenski/python-vipaccess"; - license = licenses.asl20; - maintainers = with maintainers; [ aw ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aw ]; }; } diff --git a/pkgs/development/python-modules/python-vlc/default.nix b/pkgs/development/python-modules/python-vlc/default.nix index 3a58531de57c1..607c671cbb158 100644 --- a/pkgs/development/python-modules/python-vlc/default.nix +++ b/pkgs/development/python-modules/python-vlc/default.nix @@ -35,10 +35,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 230a3fbe2d2cd..5896d270a2853 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-wifi/default.nix b/pkgs/development/python-modules/python-wifi/default.nix index 2dfd18079c72a..b79cad19b5b2a 100644 --- a/pkgs/development/python-modules/python-wifi/default.nix +++ b/pkgs/development/python-modules/python-wifi/default.nix @@ -17,12 +17,12 @@ buildPythonPackage rec { sha256 = "149c3dznb63d82143cz5hqdim0mqjysz6p3yk0zv271vq3xnmzvv"; }; - meta = with lib; { + meta = { description = "Read & write wireless card capabilities using the Linux Wireless Extensions"; homepage = "http://pythonwifi.tuxfamily.org/"; # From the README: "pythonwifi is licensed under LGPLv2+, however, the # examples (e.g. iwconfig.py and iwlist.py) are licensed under GPLv2+." - license = with licenses; [ + license = with lib.licenses; [ lgpl2Plus gpl2Plus ]; diff --git a/pkgs/development/python-modules/python-wink/default.nix b/pkgs/development/python-modules/python-wink/default.nix index 464daf8ebd020..30556aa9bca8b 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 9abed704189a6..9c138c198e974 100644 --- a/pkgs/development/python-modules/python-xapp/default.nix +++ b/pkgs/development/python-modules/python-xapp/default.nix @@ -53,11 +53,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; - maintainers = teams.cinnamon.members; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; + maintainers = lib.teams.cinnamon.members; }; } diff --git a/pkgs/development/python-modules/python-xmp-toolkit/default.nix b/pkgs/development/python-modules/python-xmp-toolkit/default.nix index f5594e983ace5..05229ad3df4ba 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-zbar/default.nix b/pkgs/development/python-modules/python-zbar/default.nix index a7e8c64146fb0..b77cffd6820a8 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-application/default.nix b/pkgs/development/python-modules/python3-application/default.nix index b61ff595564f3..7f126b3409ea7 100644 --- a/pkgs/development/python-modules/python3-application/default.nix +++ b/pkgs/development/python-modules/python3-application/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "application" ]; - meta = with lib; { + meta = { description = "Collection of modules that are useful when building python applications"; homepage = "https://github.com/AGProjects/python3-application"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ chanley yureien ]; diff --git a/pkgs/development/python-modules/python3-eventlib/default.nix b/pkgs/development/python-modules/python3-eventlib/default.nix index 0181dfebb87ec..ccaed57ac9197 100644 --- a/pkgs/development/python-modules/python3-eventlib/default.nix +++ b/pkgs/development/python-modules/python3-eventlib/default.nix @@ -32,11 +32,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-openid/default.nix b/pkgs/development/python-modules/python3-openid/default.nix index e096743e909d7..6edcb500db2a1 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/pythondialog/default.nix b/pkgs/development/python-modules/pythondialog/default.nix index 59d7e96a6b628..2fb348c0ba911 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/pythonix/default.nix b/pkgs/development/python-modules/pythonix/default.nix index 18eb564192191..24445f3fead1f 100644 --- a/pkgs/development/python-modules/pythonix/default.nix +++ b/pkgs/development/python-modules/pythonix/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "nix" ]; - meta = with lib; { + meta = { description = '' Eval nix code from python. ''; maintainers = [ ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pytidylib/default.nix b/pkgs/development/python-modules/pytidylib/default.nix index 7f5b2db40dd68..a623602dfce6d 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 9f78f9d2f9fa1..7e05dad794f08 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/pytimeparse2/default.nix b/pkgs/development/python-modules/pytimeparse2/default.nix index d7ffec6a9b7d4..59de5d3fd1616 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 05e002a412c14..38eefde837c97 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 292283dca1bf6..86430ba82aba9 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 7d4588da73973..3e8edbdb3dec1 100644 --- a/pkgs/development/python-modules/pytmx/default.nix +++ b/pkgs/development/python-modules/pytmx/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { "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 98b20b6ffc460..60e14cff7f6a3 100644 --- a/pkgs/development/python-modules/pytomlpp/default.nix +++ b/pkgs/development/python-modules/pytomlpp/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytomlpp" ]; - meta = with lib; { + meta = { description = "Python wrapper for tomlplusplus"; homepage = "https://github.com/bobfang1992/pytomlpp"; - license = licenses.mit; - maintainers = with maintainers; [ evils ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ evils ]; }; } diff --git a/pkgs/development/python-modules/pytorch-msssim/default.nix b/pkgs/development/python-modules/pytorch-msssim/default.nix index 325450ab7ba72..32ca0b0caeec1 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/pytransportnsw/default.nix b/pkgs/development/python-modules/pytransportnsw/default.nix index db65727bf85d8..47caaaca07257 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 aef3709922bad..5e8138a15e099 100644 --- a/pkgs/development/python-modules/pytransportnswv2/default.nix +++ b/pkgs/development/python-modules/pytransportnswv2/default.nix @@ -33,10 +33,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/pytrends/default.nix b/pkgs/development/python-modules/pytrends/default.nix index c9e20859086ba..3593556402085 100644 --- a/pkgs/development/python-modules/pytrends/default.nix +++ b/pkgs/development/python-modules/pytrends/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytrends" ]; - meta = with lib; { + meta = { description = "Pseudo API for Google Trends"; homepage = "https://github.com/GeneralMills/pytrends"; - license = [ licenses.asl20 ]; - maintainers = [ maintainers.mmahut ]; + license = [ lib.licenses.asl20 ]; + maintainers = [ lib.maintainers.mmahut ]; }; } diff --git a/pkgs/development/python-modules/pytricia/default.nix b/pkgs/development/python-modules/pytricia/default.nix index f906b58fe0af4..a442d0234a3a9 100644 --- a/pkgs/development/python-modules/pytricia/default.nix +++ b/pkgs/development/python-modules/pytricia/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { sha256 = "0qp5774xkm700g35k5c76pck8pdzqlyzbaqgrz76a1yh67s2ri8h"; }; - meta = with lib; { + meta = { description = "Library for fast IP address lookup in Python"; homepage = "https://github.com/jsommers/pytricia"; - license = with licenses; [ lgpl3Plus ]; - maintainers = with maintainers; [ mkg ]; + license = with lib.licenses; [ lgpl3Plus ]; + maintainers = with lib.maintainers; [ mkg ]; }; } diff --git a/pkgs/development/python-modules/pyttsx3/default.nix b/pkgs/development/python-modules/pyttsx3/default.nix index ba9afeb6be85d..0663fc8096230 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 eabf55c89caa9..54e34999599c1 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 166afc4544339..2f92541885570 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/pytweening/default.nix b/pkgs/development/python-modules/pytweening/default.nix index b15a6e6b6a7a5..21280b657deb3 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 6725091b76c57..a938d254d1125 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 2d69cfdb0cfb4..ae02ab61217fb 100644 --- a/pkgs/development/python-modules/pytz/default.nix +++ b/pkgs/development/python-modules/pytz/default.nix @@ -27,11 +27,11 @@ 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; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pytzdata/default.nix b/pkgs/development/python-modules/pytzdata/default.nix index 8b66daba06afa..f02cf06d33922 100644 --- a/pkgs/development/python-modules/pytzdata/default.nix +++ b/pkgs/development/python-modules/pytzdata/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { # No tests doCheck = false; - meta = with lib; { + meta = { description = "Timezone database for Python"; homepage = "https://github.com/sdispater/pytzdata"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/pyu2f/default.nix b/pkgs/development/python-modules/pyu2f/default.nix index a3cf57ca2ebb9..4b38a3d743c32 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 e4a7a2a0b5f14..8f698acffcb1e 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 f7b75f0ff22e6..c7d1d1f3b5a22 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 0878c20a2c247..7e8660a2e8e4f 100644 --- a/pkgs/development/python-modules/pyunbound/default.nix +++ b/pkgs/development/python-modules/pyunbound/default.nix @@ -82,11 +82,11 @@ 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"; - maintainers = with maintainers; [ leenaars ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ leenaars ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/pyunifi/default.nix b/pkgs/development/python-modules/pyunifi/default.nix index b006354be12cf..88890c4af0857 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 3c0a2f30afad5..375979a68e3c8 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 7224907916d24..2cb035efde438 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 f5a4ad76af479..5eeac07b5cef9 100644 --- a/pkgs/development/python-modules/pyupgrade/default.nix +++ b/pkgs/development/python-modules/pyupgrade/default.nix @@ -27,11 +27,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/pyusb/default.nix b/pkgs/development/python-modules/pyusb/default.nix index c9fdbb623bebe..d73575733ead8 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 f817a04222de0..b9ae8487dec30 100644 --- a/pkgs/development/python-modules/pyuseragents/default.nix +++ b/pkgs/development/python-modules/pyuseragents/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "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 6c079b11712fb..10af8db65b426 100644 --- a/pkgs/development/python-modules/pyutil/default.nix +++ b/pkgs/development/python-modules/pyutil/default.nix @@ -56,7 +56,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 @@ -68,7 +68,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 00073be609f00..3a2c05f39e3cb 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/pyvera/default.nix b/pkgs/development/python-modules/pyvera/default.nix index 5a6c502e2eb00..b869cbe360fda 100644 --- a/pkgs/development/python-modules/pyvera/default.nix +++ b/pkgs/development/python-modules/pyvera/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyvera" ]; - meta = with lib; { + meta = { description = "Python library to control devices via the Vera hub"; homepage = "https://github.com/pavoni/pyvera"; - 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/pyverilog/default.nix b/pkgs/development/python-modules/pyverilog/default.nix index 9e7077a60f57d..1126cdbaa89da 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 d6328c4acf813..dd6fbd9c66cbd 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/pyvex/default.nix b/pkgs/development/python-modules/pyvex/default.nix index db95245c55f19..8f9e351fb02c1 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/pyvirtualdisplay/default.nix b/pkgs/development/python-modules/pyvirtualdisplay/default.nix index ac2a3bf68f695..b97e9e7c7ddfd 100644 --- a/pkgs/development/python-modules/pyvirtualdisplay/default.nix +++ b/pkgs/development/python-modules/pyvirtualdisplay/default.nix @@ -58,10 +58,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "-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 79b82c9cb040c..cd8f540ce2bd7 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 69e61ea9d0342..8eae7d3ba6007 100644 --- a/pkgs/development/python-modules/pyvisa-sim/default.nix +++ b/pkgs/development/python-modules/pyvisa-sim/default.nix @@ -46,10 +46,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 3a7fea7b051f9..b45e72ac6e598 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/pyvizio/default.nix b/pkgs/development/python-modules/pyvizio/default.nix index d981f8b142e4c..9cb445ecb4548 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/pyvo/default.nix b/pkgs/development/python-modules/pyvo/default.nix index fde13a3731a24..1fe47c7db9f31 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 10a846948f24d..170fbd8f6e66c 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 2a5ff3bd8e69f..7f683b3733cf8 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 f51d3c2dbce54..1e4afce1e8e9b 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/pywayland/default.nix b/pkgs/development/python-modules/pywayland/default.nix index 4dc2fb89330dc..add93074f19b1 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/pywebview/default.nix b/pkgs/development/python-modules/pywebview/default.nix index e6148c3a5b470..33b773c0511fb 100644 --- a/pkgs/development/python-modules/pywebview/default.nix +++ b/pkgs/development/python-modules/pywebview/default.nix @@ -65,10 +65,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/pywilight/default.nix b/pkgs/development/python-modules/pywilight/default.nix index 1c8d28858c75f..7a2e6d1192129 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/pywlroots/default.nix b/pkgs/development/python-modules/pywlroots/default.nix index 2e2d887b4c792..b5a2a7539c8e6 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 76addd25795e6..bd19017a3061b 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 aa196c646a69a..e4afa93a7b28b 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 0cb5b39462e6b..87e078f0ceb75 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 67fd9778ebb3b..d560e74a3e93c 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 744b5f02b3ea7..e2cb3b3ecc2f4 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 b7ec762f7d6b5..96fbe94f8d159 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.lgpl2; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/pyxeoma/default.nix b/pkgs/development/python-modules/pyxeoma/default.nix index 18199146a9210..1575b4b4a712b 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 c42d7f055c8c2..c09267bae9169 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 04d5ef2b5b969..3efd0c1e5f177 100644 --- a/pkgs/development/python-modules/pyxl3/default.nix +++ b/pkgs/development/python-modules/pyxl3/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { 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 36e33930d47d4..630f6cf3d671a 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/pyyaml-env-tag/default.nix b/pkgs/development/python-modules/pyyaml-env-tag/default.nix index 8167c85c6534f..75573bec2733a 100644 --- a/pkgs/development/python-modules/pyyaml-env-tag/default.nix +++ b/pkgs/development/python-modules/pyyaml-env-tag/default.nix @@ -25,10 +25,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-include/default.nix b/pkgs/development/python-modules/pyyaml-include/default.nix index 80b81f6dc9c23..e92859c8fa34b 100644 --- a/pkgs/development/python-modules/pyyaml-include/default.nix +++ b/pkgs/development/python-modules/pyyaml-include/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "yamlinclude" ]; - meta = with lib; { + meta = { description = "Extending PyYAML with a custom constructor for including YAML files within YAML files"; homepage = "https://github.com/tanbro/pyyaml-include"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyyardian/default.nix b/pkgs/development/python-modules/pyyardian/default.nix index 3dde9c9798d7e..99e542b87702d 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 bbb3ba23163f9..8a5e8d2cf2987 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/pyzbar/default.nix b/pkgs/development/python-modules/pyzbar/default.nix index 3a5c0b6ff36f7..e92e197588d27 100644 --- a/pkgs/development/python-modules/pyzbar/default.nix +++ b/pkgs/development/python-modules/pyzbar/default.nix @@ -48,10 +48,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 b6ae8556f82ab..e6095ca8f82f4 100644 --- a/pkgs/development/python-modules/pyzerproc/default.nix +++ b/pkgs/development/python-modules/pyzerproc/default.nix @@ -47,12 +47,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/pyzmq/default.nix b/pkgs/development/python-modules/pyzmq/default.nix index 6f7ecf6b10b6b..885a5dcf8fca1 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/qcengine/default.nix b/pkgs/development/python-modules/qcengine/default.nix index 4d5b62c62083f..79ec916e4d30e 100644 --- a/pkgs/development/python-modules/qcengine/default.nix +++ b/pkgs/development/python-modules/qcengine/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "qcengine" ]; - meta = with lib; { + meta = { description = "Quantum chemistry program executor and IO standardizer (QCSchema) for quantum chemistry"; mainProgram = "qcengine"; homepage = "http://docs.qcarchive.molssi.org/projects/qcelemental/"; - license = licenses.bsd3; - maintainers = with maintainers; [ sheepforce ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sheepforce ]; }; } diff --git a/pkgs/development/python-modules/qdarkstyle/default.nix b/pkgs/development/python-modules/qdarkstyle/default.nix index 80dca57b1d6a1..04bce0b8eed77 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/qdldl/default.nix b/pkgs/development/python-modules/qdldl/default.nix index b1c08a87a0743..1cccf1089d400 100644 --- a/pkgs/development/python-modules/qdldl/default.nix +++ b/pkgs/development/python-modules/qdldl/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "qdldl" ]; nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Free LDL factorization routine"; homepage = "https://github.com/oxfordcontrol/qdldl"; downloadPage = "https://github.com/oxfordcontrol/qdldl-python"; - license = licenses.asl20; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/qemu/default.nix b/pkgs/development/python-modules/qemu/default.nix index 4c182113c8faf..c760f9a50d9bc 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/qiskit-aer/default.nix b/pkgs/development/python-modules/qiskit-aer/default.nix index 62c404ff97200..ac350ee51b297 100644 --- a/pkgs/development/python-modules/qiskit-aer/default.nix +++ b/pkgs/development/python-modules/qiskit-aer/default.nix @@ -144,13 +144,13 @@ buildPythonPackage rec { postCheck = "popd"; - meta = with lib; { + meta = { broken = true; description = "High performance simulators for Qiskit"; homepage = "https://qiskit.org/aer"; downloadPage = "https://github.com/QISKit/qiskit-aer/releases"; changelog = "https://qiskit.org/documentation/release_notes.html"; - license = licenses.asl20; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/qiskit-finance/default.nix b/pkgs/development/python-modules/qiskit-finance/default.nix index 0fb5525fee2c6..6210111d6f65f 100644 --- a/pkgs/development/python-modules/qiskit-finance/default.nix +++ b/pkgs/development/python-modules/qiskit-finance/default.nix @@ -77,12 +77,12 @@ buildPythonPackage rec { ]; pytestFlagsArray = [ "--durations=10" ]; - meta = with lib; { + meta = { 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; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/qiskit-ibmq-provider/default.nix b/pkgs/development/python-modules/qiskit-ibmq-provider/default.nix index 833dec1f0d2c8..c210af0bc379d 100644 --- a/pkgs/development/python-modules/qiskit-ibmq-provider/default.nix +++ b/pkgs/development/python-modules/qiskit-ibmq-provider/default.nix @@ -97,11 +97,11 @@ buildPythonPackage rec { export QISKIT_TESTS=skip_online ''; - meta = with lib; { + meta = { description = "Qiskit provider for accessing the quantum devices and simulators at IBMQ"; homepage = "https://github.com/Qiskit/qiskit-ibmq-provider"; changelog = "https://qiskit.org/documentation/release_notes.html"; - license = licenses.asl20; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/qiskit-ignis/default.nix b/pkgs/development/python-modules/qiskit-ignis/default.nix index a51ad99805b9e..75d7a28ff1216 100644 --- a/pkgs/development/python-modules/qiskit-ignis/default.nix +++ b/pkgs/development/python-modules/qiskit-ignis/default.nix @@ -68,12 +68,12 @@ buildPythonPackage rec { "test_fitters" # Fails check that arrays are close. Might be due to aarch64 math issues. ]; - meta = with lib; { + meta = { description = "Qiskit tools for quantum hardware verification, noise characterization, and error correction"; homepage = "https://qiskit.org/ignis"; downloadPage = "https://github.com/QISKit/qiskit-ignis/releases"; changelog = "https://qiskit.org/documentation/release_notes.html"; - license = licenses.asl20; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/qiskit-machine-learning/default.nix b/pkgs/development/python-modules/qiskit-machine-learning/default.nix index 16c3e94431a2e..25d5c361c39e0 100644 --- a/pkgs/development/python-modules/qiskit-machine-learning/default.nix +++ b/pkgs/development/python-modules/qiskit-machine-learning/default.nix @@ -81,12 +81,12 @@ buildPythonPackage rec { "test_qgan_training" ]; - meta = with lib; { + meta = { 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; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/qiskit-optimization/default.nix b/pkgs/development/python-modules/qiskit-optimization/default.nix index 539f7bcbe28b5..cf66e422b5f8d 100644 --- a/pkgs/development/python-modules/qiskit-optimization/default.nix +++ b/pkgs/development/python-modules/qiskit-optimization/default.nix @@ -60,12 +60,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "qiskit_optimization" ]; pytestFlagsArray = [ "--durations=10" ]; - meta = with lib; { + meta = { 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; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/qiskit-terra/default.nix b/pkgs/development/python-modules/qiskit-terra/default.nix index eb433a22e8ef7..10e506ed685f7 100644 --- a/pkgs/development/python-modules/qiskit-terra/default.nix +++ b/pkgs/development/python-modules/qiskit-terra/default.nix @@ -213,7 +213,7 @@ buildPythonPackage rec { popd ''; - meta = with lib; { + meta = { description = "Provides the foundations for Qiskit"; longDescription = '' Allows the user to write quantum circuits easily, and takes care of the constraints of real hardware. @@ -221,7 +221,7 @@ buildPythonPackage rec { homepage = "https://qiskit.org/terra"; downloadPage = "https://github.com/QISKit/qiskit-terra/releases"; changelog = "https://qiskit.org/documentation/release_notes.html"; - license = licenses.asl20; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/qiskit/default.nix b/pkgs/development/python-modules/qiskit/default.nix index 9b0ca55c8eb0d..df4b1e546d576 100644 --- a/pkgs/development/python-modules/qiskit/default.nix +++ b/pkgs/development/python-modules/qiskit/default.nix @@ -64,13 +64,13 @@ buildPythonPackage rec { "qiskit.providers.ibmq" ]; - meta = with lib; { + meta = { description = "Software for developing quantum computing programs"; homepage = "https://qiskit.org"; downloadPage = "https://github.com/QISKit/qiskit/releases"; changelog = "https://qiskit.org/documentation/release_notes.html"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drewrisinger pandaman ]; diff --git a/pkgs/development/python-modules/qnap-qsw/default.nix b/pkgs/development/python-modules/qnap-qsw/default.nix index 697b0b98fe8a0..70a683335ed9e 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/qreactor/default.nix b/pkgs/development/python-modules/qreactor/default.nix index 5caaf04047e80..f0fb21e87ea84 100644 --- a/pkgs/development/python-modules/qreactor/default.nix +++ b/pkgs/development/python-modules/qreactor/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { 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-qt5/default.nix b/pkgs/development/python-modules/qscintilla-qt5/default.nix index 2ef0d3280f83d..2138db23159ba 100644 --- a/pkgs/development/python-modules/qscintilla-qt5/default.nix +++ b/pkgs/development/python-modules/qscintilla-qt5/default.nix @@ -77,10 +77,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "PyQt5.Qsci" ]; - meta = with lib; { + meta = { description = "Python binding to QScintilla, Qt based text editing control"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ lsix ]; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ lsix ]; homepage = "https://www.riverbankcomputing.com/software/qscintilla/"; }; } diff --git a/pkgs/development/python-modules/qt-material/default.nix b/pkgs/development/python-modules/qt-material/default.nix index 2a6d64c55e22d..7230a339ee222 100644 --- a/pkgs/development/python-modules/qt-material/default.nix +++ b/pkgs/development/python-modules/qt-material/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "qt_material" ]; - meta = with lib; { + meta = { description = "Material inspired stylesheet for PySide2, PySide6, PyQt5 and PyQt6"; homepage = "https://github.com/UN-GCPDS/qt-material"; - license = licenses.bsd2; - maintainers = with maintainers; [ _999eagle ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ _999eagle ]; }; } diff --git a/pkgs/development/python-modules/qt5reactor/default.nix b/pkgs/development/python-modules/qt5reactor/default.nix index 3e654ee8b993b..6bc07621c7d80 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/qtile/default.nix b/pkgs/development/python-modules/qtile/default.nix index 160109e182382..bcebe52df334a 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 cdac0a59c71d1..28607d87f1642 100644 --- a/pkgs/development/python-modules/qtpy/default.nix +++ b/pkgs/development/python-modules/qtpy/default.nix @@ -45,10 +45,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/quandl/default.nix b/pkgs/development/python-modules/quandl/default.nix index ea7a305eb3770..3de8e9f962cd5 100644 --- a/pkgs/development/python-modules/quandl/default.nix +++ b/pkgs/development/python-modules/quandl/default.nix @@ -57,11 +57,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-python/default.nix b/pkgs/development/python-modules/quantile-python/default.nix index 5d15c92520563..38cc9d2e3a39b 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/quantulum3/default.nix b/pkgs/development/python-modules/quantulum3/default.nix index 685145d941eaa..868bcfccd8808 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 e39b66b42ae64..0666e2cee9920 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/quaternion/default.nix b/pkgs/development/python-modules/quaternion/default.nix index c1fdad59ee1d1..a051390cb36f5 100644 --- a/pkgs/development/python-modules/quaternion/default.nix +++ b/pkgs/development/python-modules/quaternion/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { scipy ]; - meta = with lib; { + meta = { description = "Package add built-in support for quaternions to numpy"; homepage = "https://github.com/moble/quaternion"; - license = licenses.mit; - maintainers = [ maintainers.ocfox ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.ocfox ]; }; } diff --git a/pkgs/development/python-modules/qudida/default.nix b/pkgs/development/python-modules/qudida/default.nix index 6900eef961c7b..16c4704c30b2d 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/queuelib/default.nix b/pkgs/development/python-modules/queuelib/default.nix index 53105b8ef7495..2c42ab3a74ce0 100644 --- a/pkgs/development/python-modules/queuelib/default.nix +++ b/pkgs/development/python-modules/queuelib/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { buildInputs = [ pytest ]; - meta = with lib; { + meta = { description = "Collection of persistent (disk-based) queues for Python"; homepage = "https://github.com/scrapy/queuelib"; - 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 cfbabdb57e449..a7935ecfeef03 100644 --- a/pkgs/development/python-modules/quixote/default.nix +++ b/pkgs/development/python-modules/quixote/default.nix @@ -31,10 +31,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 a1de5b4107c39..8e8558b2a4260 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/radicale-infcloud/default.nix b/pkgs/development/python-modules/radicale-infcloud/default.nix index 073d5125859e1..b3386ce4bd0a9 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/radiotherm/default.nix b/pkgs/development/python-modules/radiotherm/default.nix index c574b09301b8b..f6df583a33ac1 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/railroad-diagrams/default.nix b/pkgs/development/python-modules/railroad-diagrams/default.nix index b8970bc1ccd4b..f66f93c6cca40 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 92fcac8b67ad0..28bf3c5ce3864 100644 --- a/pkgs/development/python-modules/rainbowstream/default.nix +++ b/pkgs/development/python-modules/rainbowstream/default.nix @@ -73,11 +73,11 @@ buildPythonPackage rec { 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/ramlfications/default.nix b/pkgs/development/python-modules/ramlfications/default.nix index 22fef92b576d2..062a872e626d2 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/random-user-agent/default.nix b/pkgs/development/python-modules/random-user-agent/default.nix index 086c8dab39370..4418e8f3e7883 100644 --- a/pkgs/development/python-modules/random-user-agent/default.nix +++ b/pkgs/development/python-modules/random-user-agent/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "random_user_agent" ]; - meta = with lib; { + meta = { description = "Module to get list of user agents based on filters"; homepage = "https://github.com/Luqman-Ud-Din/random_user_agent"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/random2/default.nix b/pkgs/development/python-modules/random2/default.nix index 89d544e54a9b7..46664c793c2ed 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 b4075202f51d5..5b6d433f752dd 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 912bee04ffc74..ed595423079db 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/rangeparser/default.nix b/pkgs/development/python-modules/rangeparser/default.nix index 60330d213a242..33bcd42e24e9d 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/rapidfuzz-capi/default.nix b/pkgs/development/python-modules/rapidfuzz-capi/default.nix index 342f09b2708b8..22102e4695d5b 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/ratelim/default.nix b/pkgs/development/python-modules/ratelim/default.nix index c48469168cba9..a8ede1537a19f 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 b17d017fbd6aa..9cd2cda3a889b 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 00f469329e660..eae89d508da0b 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 a5f23fbd37f82..64516cb83473d 100644 --- a/pkgs/development/python-modules/razdel/default.nix +++ b/pkgs/development/python-modules/razdel/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { pytestFlagsArray = [ "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/rbtools/default.nix b/pkgs/development/python-modules/rbtools/default.nix index bbab71ec70bb5..b4fc1a305e1e8 100644 --- a/pkgs/development/python-modules/rbtools/default.nix +++ b/pkgs/development/python-modules/rbtools/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { # The kgb test dependency is not in nixpkgs doCheck = false; - meta = with lib; { + meta = { homepage = "https://www.reviewboard.org/docs/rbtools/dev/"; description = "RBTools is a set of command line tools for working with Review Board and RBCommons"; mainProgram = "rbt"; - license = licenses.mit; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/rcssmin/default.nix b/pkgs/development/python-modules/rcssmin/default.nix index 21c9197e06738..7535df9955327 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/reactivex/default.nix b/pkgs/development/python-modules/reactivex/default.nix index ce3fc948ad7ce..099fb3e39cd02 100644 --- a/pkgs/development/python-modules/reactivex/default.nix +++ b/pkgs/development/python-modules/reactivex/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "reactivex" ]; - meta = with lib; { + meta = { description = "Library for composing asynchronous and event-based programs"; homepage = "https://github.com/ReactiveX/RxPY"; - 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/readability-lxml/default.nix b/pkgs/development/python-modules/readability-lxml/default.nix index 7c75c32be269e..c3f724bb97071 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/readlike/default.nix b/pkgs/development/python-modules/readlike/default.nix index fa7480f31ad4d..093dbfe508f85 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 9089bd1b44dd4..a3c04d862f4a3 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/default.nix b/pkgs/development/python-modules/readme/default.nix index 40ab041428977..c7142c7f2bf60 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 6d974563bc1e3..c373c4b69d8f1 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/recline/default.nix b/pkgs/development/python-modules/recline/default.nix index 253a44f618ef9..57bf50ef64d75 100644 --- a/pkgs/development/python-modules/recline/default.nix +++ b/pkgs/development/python-modules/recline/default.nix @@ -28,10 +28,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 35fd59c920a16..106591e837b6a 100644 --- a/pkgs/development/python-modules/reconplogger/default.nix +++ b/pkgs/development/python-modules/reconplogger/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "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/red-black-tree-mod/default.nix b/pkgs/development/python-modules/red-black-tree-mod/default.nix index 91de8a60cb74d..1353796499889 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 5938221f7c0d0..5a5062a695b65 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/gristlabs/asttokens"; 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/reedsolo/default.nix b/pkgs/development/python-modules/reedsolo/default.nix index f04427072774a..77af4c7f28037 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/refery/default.nix b/pkgs/development/python-modules/refery/default.nix index cddfa64d361f4..e434fa556596f 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 52cc78f0ee558..c9c51ff61e1f8 100644 --- a/pkgs/development/python-modules/reflex-hosting-cli/default.nix +++ b/pkgs/development/python-modules/reflex-hosting-cli/default.nix @@ -53,10 +53,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/default.nix b/pkgs/development/python-modules/reflink/default.nix index feb533ee69f00..48cbf42a2f3d6 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/regex/default.nix b/pkgs/development/python-modules/regex/default.nix index bc1a60eea0982..4bfec2553d52a 100644 --- a/pkgs/development/python-modules/regex/default.nix +++ b/pkgs/development/python-modules/regex/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "regex" ]; - meta = with lib; { + meta = { description = "Alternative regular expression module, to replace re"; homepage = "https://bitbucket.org/mrabarnett/mrab-regex"; - license = licenses.psfl; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.psfl; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/regional/default.nix b/pkgs/development/python-modules/regional/default.nix index ea995ee27a7db..858c89939deb0 100644 --- a/pkgs/development/python-modules/regional/default.nix +++ b/pkgs/development/python-modules/regional/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { "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 e59496b767d12..0cc281398da20 100644 --- a/pkgs/development/python-modules/regress/default.nix +++ b/pkgs/development/python-modules/regress/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { hash = "sha256-wHObfXWgcbSYxk5d17s44+1qIGYD/Ygefxp+el0fsEc="; }; - 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/related/default.nix b/pkgs/development/python-modules/related/default.nix index d36157d818ccc..98f2c53a2f4c2 100644 --- a/pkgs/development/python-modules/related/default.nix +++ b/pkgs/development/python-modules/related/default.nix @@ -48,10 +48,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 2db172bdeb5be..b65e70a7dada0 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/remote-pdb/default.nix b/pkgs/development/python-modules/remote-pdb/default.nix index c17f48d451554..040ec316501d4 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 e33a0276a4b96..923df4c3b2e42 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/rencode/default.nix b/pkgs/development/python-modules/rencode/default.nix index 388e7ec9cd810..5f4f856f9ed8f 100644 --- a/pkgs/development/python-modules/rencode/default.nix +++ b/pkgs/development/python-modules/rencode/default.nix @@ -28,10 +28,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 a4a701de99758..6b98f6887aad4 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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/renson-endura-delta/default.nix b/pkgs/development/python-modules/renson-endura-delta/default.nix index 45aec971ed7e2..80d967c27facf 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/reorder-python-imports/default.nix b/pkgs/development/python-modules/reorder-python-imports/default.nix index edb7175db01a9..9b4692be1bbf9 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 4ea2dab3e785c..5d35bc128083f 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/reportlab-qrcode/default.nix b/pkgs/development/python-modules/reportlab-qrcode/default.nix index 67d69ef8cf0ff..01354237280b3 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 9e35dff784b31..e6b8256e9c8f0 100644 --- a/pkgs/development/python-modules/reportlab/default.nix +++ b/pkgs/development/python-modules/reportlab/default.nix @@ -59,10 +59,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { 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/reprshed/default.nix b/pkgs/development/python-modules/reprshed/default.nix index fb05ed5726250..cda1c09028c98 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/requests-credssp/default.nix b/pkgs/development/python-modules/requests-credssp/default.nix index 428b4ac187771..1dcbd6b8d1dbe 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-hawk/default.nix b/pkgs/development/python-modules/requests-hawk/default.nix index 24370891b5ddd..1c82b8f72da5b 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 541604089e254..d8330bf3c3e82 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 70a5eebacdb5d..ceddeba6ab294 100644 --- a/pkgs/development/python-modules/requests-kerberos/default.nix +++ b/pkgs/development/python-modules/requests-kerberos/default.nix @@ -41,10 +41,10 @@ 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; - maintainers = with maintainers; [ catern ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ catern ]; }; } diff --git a/pkgs/development/python-modules/requests-oauthlib/default.nix b/pkgs/development/python-modules/requests-oauthlib/default.nix index 27b2ae885573a..791ce4d5304a8 100644 --- a/pkgs/development/python-modules/requests-oauthlib/default.nix +++ b/pkgs/development/python-modules/requests-oauthlib/default.nix @@ -42,10 +42,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 550465962e313..e7cfc7c294cb9 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-unixsocket/default.nix b/pkgs/development/python-modules/requests-unixsocket/default.nix index 12708f749bbef..cb3c5f854361f 100644 --- a/pkgs/development/python-modules/requests-unixsocket/default.nix +++ b/pkgs/development/python-modules/requests-unixsocket/default.nix @@ -45,10 +45,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"; - license = licenses.asl20; - maintainers = with maintainers; [ catern ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ catern ]; }; } diff --git a/pkgs/development/python-modules/requests-unixsocket2/default.nix b/pkgs/development/python-modules/requests-unixsocket2/default.nix index 83de0579a020b..0d9964f54ea53 100644 --- a/pkgs/development/python-modules/requests-unixsocket2/default.nix +++ b/pkgs/development/python-modules/requests-unixsocket2/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "requests_unixsocket" ]; - meta = with lib; { + meta = { description = "Use requests to talk HTTP via a UNIX domain socket"; homepage = "https://gitlab.com/thelabnyc/requests-unixsocket2"; - license = licenses.bsd0; - maintainers = with maintainers; [ mikut ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ mikut ]; }; } diff --git a/pkgs/development/python-modules/requests-wsgi-adapter/default.nix b/pkgs/development/python-modules/requests-wsgi-adapter/default.nix index 8cdec28f2abb2..4996883f4e0c3 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/requestsexceptions/default.nix b/pkgs/development/python-modules/requestsexceptions/default.nix index d545693191273..4a1fbfb6a06fd 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/reretry/default.nix b/pkgs/development/python-modules/reretry/default.nix index 240a37a611ec3..48e142790ab8b 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 7a4c3cf0dacd0..ba4afd73fafd1 100644 --- a/pkgs/development/python-modules/resampy/default.nix +++ b/pkgs/development/python-modules/resampy/default.nix @@ -42,10 +42,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/resize-right/default.nix b/pkgs/development/python-modules/resize-right/default.nix index 43afc063867a8..de413aac7500c 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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/rethinkdb/default.nix b/pkgs/development/python-modules/rethinkdb/default.nix index 2a3f6c1db08ad..dc8b004eedd3b 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/default.nix b/pkgs/development/python-modules/retry/default.nix index c4df5b909e443..3d80319ff604e 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 11eab85380a65..ec46e89ee4b28 100644 --- a/pkgs/development/python-modules/retrying/default.nix +++ b/pkgs/development/python-modules/retrying/default.nix @@ -25,10 +25,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/rfc3339-validator/default.nix b/pkgs/development/python-modules/rfc3339-validator/default.nix index d4f70dac0763c..27da24deb82d2 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 f95888578ac57..19250ac307f4f 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 bceb67a22594a..6d02c73139c3c 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 863d4562056d6..38ae307808897 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 25c77a68e95ef..fe50586b3bccb 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 596a2ca07290e..c0a8dfdc57eea 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 1765b46be03e9..16ea67efcf54c 100644 --- a/pkgs/development/python-modules/rfc7464/default.nix +++ b/pkgs/development/python-modules/rfc7464/default.nix @@ -15,10 +15,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/rich-rst/default.nix b/pkgs/development/python-modules/rich-rst/default.nix index 7291c6f7d82ec..cb2d5b44f9e13 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/rio-tiler/default.nix b/pkgs/development/python-modules/rio-tiler/default.nix index 9ee3f8d1acca9..1b975055603da 100644 --- a/pkgs/development/python-modules/rio-tiler/default.nix +++ b/pkgs/development/python-modules/rio-tiler/default.nix @@ -57,10 +57,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; maintainers = lib.teams.geospatial.members; # Tests broken with gdal 3.10 # https://github.com/cogeotiff/rio-tiler/issues/769 diff --git a/pkgs/development/python-modules/ripe-atlas-sagan/default.nix b/pkgs/development/python-modules/ripe-atlas-sagan/default.nix index 014f651e18c39..6e983a21170fa 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 737f941f8dbbb..7014f95b05950 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/ritassist/default.nix b/pkgs/development/python-modules/ritassist/default.nix index 8a3691b307c41..9d9d142d8cbdd 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 439d207aa58dd..fa64e12dc3ac3 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 c48b87d54094f..d24b59f641c37 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 7e06e06bc3b79..9ef7997916d3f 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.gpl3Plus; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ jpetrucciani ]; }; } diff --git a/pkgs/development/python-modules/rlax/default.nix b/pkgs/development/python-modules/rlax/default.nix index 9cd994e00d47b..f4bc1b415d0f5 100644 --- a/pkgs/development/python-modules/rlax/default.nix +++ b/pkgs/development/python-modules/rlax/default.nix @@ -73,10 +73,10 @@ buildPythonPackage rec { "test_unnormalize_linear" ]; - meta = with lib; { + meta = { description = "Library of reinforcement learning building blocks in JAX"; homepage = "https://github.com/deepmind/rlax"; - license = licenses.asl20; - maintainers = with maintainers; [ onny ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/rlp/default.nix b/pkgs/development/python-modules/rlp/default.nix index 3c258f2b8feaf..ca2af80a4f386 100644 --- a/pkgs/development/python-modules/rlp/default.nix +++ b/pkgs/development/python-modules/rlp/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rlp" ]; - 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 6a3664440a784..969db3fb3f6b0 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 7b691f638b44e..f90a6a41b3dc5 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/roadlib/default.nix b/pkgs/development/python-modules/roadlib/default.nix index 01061aefd2058..8a2025efb6797 100644 --- a/pkgs/development/python-modules/roadlib/default.nix +++ b/pkgs/development/python-modules/roadlib/default.nix @@ -34,10 +34,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 1ae3f05c56976..1aafc269e51cc 100644 --- a/pkgs/development/python-modules/roadrecon/default.nix +++ b/pkgs/development/python-modules/roadrecon/default.nix @@ -49,10 +49,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 e1cdcf4001e4e..29bbd22cf588b 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 c1e2803a6dc71..ccccb286aeb0d 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 00f5bce3267d3..4132f04d4d688 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 0e582aa3867b7..b343afa58f6e5 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 34a0e3c0a3abd..7b8e02f3e7e55 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 acdca91e53aa9..e8f43bc3fafe7 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 { pytestFlagsArray = [ "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 c9567e83f16ef..5e3cae9270b53 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 c8717a2ed2ace..a9d1afb9dd15d 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 048822afb1d04..ce3950b29430f 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 { pytestFlagsArray = [ "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 95efb791fe19f..96906603d0ac3 100644 --- a/pkgs/development/python-modules/robotstatuschecker/default.nix +++ b/pkgs/development/python-modules/robotstatuschecker/default.nix @@ -38,10 +38,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 dc19ae15154e8..110e20d69db59 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 5041ec57ab1a1..5baae3a107e8e 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/rollbar/default.nix b/pkgs/development/python-modules/rollbar/default.nix index cd71a84d64132..81d0769037b10 100644 --- a/pkgs/development/python-modules/rollbar/default.nix +++ b/pkgs/development/python-modules/rollbar/default.nix @@ -46,11 +46,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 83ab749a7889f..074b2108094e2 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/ropgadget/default.nix b/pkgs/development/python-modules/ropgadget/default.nix index cc07ee0c04ef9..94a4efd70a8fb 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 4d88ca3d47d88..3d3f6d18c3abc 100644 --- a/pkgs/development/python-modules/ropper/default.nix +++ b/pkgs/development/python-modules/ropper/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ropper" ]; - meta = with lib; { + meta = { description = "Show information about files in different file formats"; mainProgram = "ropper"; homepage = "https://scoding.de/ropper/"; - license = licenses.bsd3; - maintainers = with maintainers; [ bennofs ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bennofs ]; }; } diff --git a/pkgs/development/python-modules/routes/default.nix b/pkgs/development/python-modules/routes/default.nix index 925653572f363..9f2afb77bb097 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/rpcq/default.nix b/pkgs/development/python-modules/rpcq/default.nix index 19bd05550ca5a..ca66826fd7ba7 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/rpdb/default.nix b/pkgs/development/python-modules/rpdb/default.nix index ae689da1474ea..9ab1929f49d59 100644 --- a/pkgs/development/python-modules/rpdb/default.nix +++ b/pkgs/development/python-modules/rpdb/default.nix @@ -14,9 +14,9 @@ buildPythonPackage rec { sha256 = "5d1a1cee34378ab075879dc30fa6328d448a9f680a66c4e84cac7382ad92f15f"; }; - meta = with lib; { + meta = { description = "pdb wrapper with remote access via tcp socket"; homepage = "https://github.com/tamentis/rpdb"; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/rpi-bad-power/default.nix b/pkgs/development/python-modules/rpi-bad-power/default.nix index 00e7830fbd7c8..0d96ebc6f855a 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 569e8cd07c0c7..44bcf31750f08 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 899dc8c5c31ee..535c061a4d6f3 100644 --- a/pkgs/development/python-modules/rplcd/default.nix +++ b/pkgs/development/python-modules/rplcd/default.nix @@ -18,13 +18,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 064a7a7a90401..d5a3ab4c07d23 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 da05ba50a2717..231af0c3c4ecc 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 2b60f24e7d396..e9a13ff109b33 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/rsa/default.nix b/pkgs/development/python-modules/rsa/default.nix index e6ae0e7fd61eb..34beb00a78845 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 e76744b1fb46e..bc745427716f5 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 c7b99f6bfd683..e74e64f800a5b 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/rstr/default.nix b/pkgs/development/python-modules/rstr/default.nix index cf2a5ef42212b..29720b5dbf3f8 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 4202e2bb1af86..2ca60d5ab4cc4 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/rtmidi-python/default.nix b/pkgs/development/python-modules/rtmidi-python/default.nix index cdb87a0c86573..d24b097a825a6 100644 --- a/pkgs/development/python-modules/rtmidi-python/default.nix +++ b/pkgs/development/python-modules/rtmidi-python/default.nix @@ -40,10 +40,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 fe83ca2e32dc7..95f71ba8d0418 100644 --- a/pkgs/development/python-modules/rtoml/default.nix +++ b/pkgs/development/python-modules/rtoml/default.nix @@ -56,10 +56,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; - maintainers = with maintainers; [ evils ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ evils ]; }; } diff --git a/pkgs/development/python-modules/rtp/default.nix b/pkgs/development/python-modules/rtp/default.nix index ad27d151776c5..20016f3d23e4c 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/rtslib/default.nix b/pkgs/development/python-modules/rtslib/default.nix index 9e7378d1ed8e9..18643bce8af01 100644 --- a/pkgs/development/python-modules/rtslib/default.nix +++ b/pkgs/development/python-modules/rtslib/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pygobject3 ]; - meta = with lib; { + meta = { description = "Python object API for managing the Linux LIO kernel target"; mainProgram = "targetctl"; homepage = "https://github.com/open-iscsi/rtslib-fb"; - license = licenses.asl20; - platforms = platforms.linux; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/ruamel-base/default.nix b/pkgs/development/python-modules/ruamel-base/default.nix index 2d38ff808ddab..2ceefbf2f6f2e 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 58a41a102246c..3d27992ef9552 100644 --- a/pkgs/development/python-modules/ruamel-yaml-clib/default.nix +++ b/pkgs/development/python-modules/ruamel-yaml-clib/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { patches = [ ./fix-incompatible-function-pointers.patch ]; 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/default.nix b/pkgs/development/python-modules/ruamel-yaml/default.nix index eeb77714fddc8..32651b7a4ef2a 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 d2b485ee4f061..415ba66d68dbc 100644 --- a/pkgs/development/python-modules/rubymarshal/default.nix +++ b/pkgs/development/python-modules/rubymarshal/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rubymarshal" ]; - meta = with lib; { + meta = { homepage = "https://github.com/d9pouces/RubyMarshal/"; description = "Read and write Ruby-marshalled data"; - license = licenses.wtfpl; - maintainers = [ maintainers.ryantm ]; + license = lib.licenses.wtfpl; + maintainers = [ lib.maintainers.ryantm ]; }; } diff --git a/pkgs/development/python-modules/ruffus/default.nix b/pkgs/development/python-modules/ruffus/default.nix index f7c96b10d3e1a..00352062b761e 100644 --- a/pkgs/development/python-modules/ruffus/default.nix +++ b/pkgs/development/python-modules/ruffus/default.nix @@ -40,10 +40,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/rustworkx/default.nix b/pkgs/development/python-modules/rustworkx/default.nix index d2ee15fa36b16..82eb7ca8152f7 100644 --- a/pkgs/development/python-modules/rustworkx/default.nix +++ b/pkgs/development/python-modules/rustworkx/default.nix @@ -59,10 +59,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/ruuvitag-ble/default.nix b/pkgs/development/python-modules/ruuvitag-ble/default.nix index 990d4df699acf..c742d2c68035f 100644 --- a/pkgs/development/python-modules/ruuvitag-ble/default.nix +++ b/pkgs/development/python-modules/ruuvitag-ble/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ruuvitag_ble" ]; - meta = with lib; { + meta = { description = "Library for Ruuvitag BLE devices"; homepage = "https://github.com/Bluetooth-Devices/ruuvitag-ble"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = 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 30be2072b595e..6b7b636723b4b 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/sabctools/default.nix b/pkgs/development/python-modules/sabctools/default.nix index 4f07633db51f0..adeed252acec9 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 814ca92de8dbd..cf5330270969f 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/sacrebleu/default.nix b/pkgs/development/python-modules/sacrebleu/default.nix index 602d635a2fe65..99cea09a6579d 100644 --- a/pkgs/development/python-modules/sacrebleu/default.nix +++ b/pkgs/development/python-modules/sacrebleu/default.nix @@ -57,12 +57,12 @@ buildPythonPackage { pythonImportsCheck = [ "sacrebleu" ]; - meta = with lib; { + meta = { description = "Hassle-free computation of shareable, comparable, and reproducible BLEU, chrF, and TER scores"; mainProgram = "sacrebleu"; homepage = "https://github.com/mjpost/sacrebleu"; changelog = "https://github.com/mjpost/sacrebleu/blob/v{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/sacremoses/default.nix b/pkgs/development/python-modules/sacremoses/default.nix index 08960b6dbc398..00d2875b5f92f 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 d1920654d2ef3..85dbc04339e66 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/samsungctl/default.nix b/pkgs/development/python-modules/samsungctl/default.nix index 43ed26ace4e28..5e438dc1caaca 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/sane/default.nix b/pkgs/development/python-modules/sane/default.nix index 1b82f6039878e..41bae43c4b1e2 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/sanic-auth/default.nix b/pkgs/development/python-modules/sanic-auth/default.nix index 27555052af9c0..6ad9c2e20c936 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/sanix/default.nix b/pkgs/development/python-modules/sanix/default.nix index fd5636e28e739..b6ae26fc11b7e 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 e9ad2980e319a..0bfc48b339a05 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/sarif-om/default.nix b/pkgs/development/python-modules/sarif-om/default.nix index 98a9503f44572..1eabe2ee461e7 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/sasmodels/default.nix b/pkgs/development/python-modules/sasmodels/default.nix index 80f3509009f30..deb2619e344aa 100644 --- a/pkgs/development/python-modules/sasmodels/default.nix +++ b/pkgs/development/python-modules/sasmodels/default.nix @@ -58,10 +58,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sasmodels" ]; - meta = with lib; { + meta = { description = "Library of small angle scattering models"; homepage = "https://github.com/SasView/sasmodels"; - license = licenses.bsd3; - maintainers = with maintainers; [ rprospero ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ rprospero ]; }; } diff --git a/pkgs/development/python-modules/schema/default.nix b/pkgs/development/python-modules/schema/default.nix index 37a608515e7c7..aa6f9c30ac5ce 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/schemainspect/default.nix b/pkgs/development/python-modules/schemainspect/default.nix index 65077eb806d85..04b54b0ba1c26 100644 --- a/pkgs/development/python-modules/schemainspect/default.nix +++ b/pkgs/development/python-modules/schemainspect/default.nix @@ -104,10 +104,10 @@ buildPythonPackage rec { rm -r ./source/deploy ''; - meta = with lib; { + meta = { description = "Schema inspection for PostgreSQL, and potentially others"; homepage = "https://github.com/djrobstep/schemainspect"; - license = with licenses; [ unlicense ]; - maintainers = with maintainers; [ soispha ]; + license = with lib.licenses; [ unlicense ]; + maintainers = with lib.maintainers; [ soispha ]; }; } diff --git a/pkgs/development/python-modules/schemdraw/default.nix b/pkgs/development/python-modules/schemdraw/default.nix index 0bf09e59751c2..779445c8e9eaf 100644 --- a/pkgs/development/python-modules/schemdraw/default.nix +++ b/pkgs/development/python-modules/schemdraw/default.nix @@ -60,11 +60,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 20267d300d69a..0ad8359871fb7 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/scienceplots/default.nix b/pkgs/development/python-modules/scienceplots/default.nix index b6421ce40a87d..3a4e3656277eb 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-fmm/default.nix b/pkgs/development/python-modules/scikit-fmm/default.nix index f7fac9f6394f9..b540b6e400595 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 d184f566657e5..2b9bbbfd36084 100644 --- a/pkgs/development/python-modules/scikit-fuzzy/default.nix +++ b/pkgs/development/python-modules/scikit-fuzzy/default.nix @@ -42,10 +42,10 @@ buildPythonPackage { pythonImportsCheck = [ "skfuzzy" ]; - meta = with lib; { + meta = { homepage = "https://github.com/scikit-fuzzy/scikit-fuzzy"; description = "Fuzzy logic toolkit for scientific Python"; - 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 4fd972b259959..de053a920f3c0 100644 --- a/pkgs/development/python-modules/scikit-misc/default.nix +++ b/pkgs/development/python-modules/scikit-misc/default.nix @@ -63,10 +63,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-survival/default.nix b/pkgs/development/python-modules/scikit-survival/default.nix index 4e391874a85d0..de19207cb35a3 100644 --- a/pkgs/development/python-modules/scikit-survival/default.nix +++ b/pkgs/development/python-modules/scikit-survival/default.nix @@ -82,10 +82,10 @@ buildPythonPackage rec { # 27079905.88052468 to far from 27079905.880496684 "test_coxnet"; - meta = with lib; { + meta = { description = "Survival analysis built on top of scikit-learn"; homepage = "https://github.com/sebp/scikit-survival"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ GuillaumeDesforges ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ GuillaumeDesforges ]; }; } diff --git a/pkgs/development/python-modules/scikit-tda/default.nix b/pkgs/development/python-modules/scikit-tda/default.nix index ea4be734701c6..aa36b958343ca 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/scour/default.nix b/pkgs/development/python-modules/scour/default.nix index 815a267c03916..ffda524843d58 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 cf95431301a7c..fb448a5b17ba3 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 63014b75aa347..165b4b0b795ec 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 36163e8a0c91e..36e462bff4d88 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 rec { "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-splash/default.nix b/pkgs/development/python-modules/scrapy-splash/default.nix index f3de180ef9487..aad28bb1e542e 100644 --- a/pkgs/development/python-modules/scrapy-splash/default.nix +++ b/pkgs/development/python-modules/scrapy-splash/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "scrapy_splash" ]; - meta = with lib; { + meta = { description = "Scrapy+Splash for JavaScript integration"; homepage = "https://github.com/scrapy-plugins/scrapy-splash"; - license = licenses.bsd3; - maintainers = with maintainers; [ evanjs ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ evanjs ]; }; } diff --git a/pkgs/development/python-modules/screed/default.nix b/pkgs/development/python-modules/screed/default.nix index 68dfdfb88c763..a37670fb5cb62 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 b90be59b6d662..47e427f1b8610 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/scripttest/default.nix b/pkgs/development/python-modules/scripttest/default.nix index a480429b6f31f..d7005288508a7 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/sdds/default.nix b/pkgs/development/python-modules/sdds/default.nix index ec1aa7461196e..b740badeda2db 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 08ef15ac3dcf0..6f775615c85bc 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/seabreeze/default.nix b/pkgs/development/python-modules/seabreeze/default.nix index 50d6846a902bb..08cf66f3f5172 100644 --- a/pkgs/development/python-modules/seabreeze/default.nix +++ b/pkgs/development/python-modules/seabreeze/default.nix @@ -83,10 +83,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 cef289ff5c8ec..d298d95477ade 100644 --- a/pkgs/development/python-modules/seasonal/default.nix +++ b/pkgs/development/python-modules/seasonal/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { pytestCheckHook ] ++ lib.flatten (builtins.attrValues 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/seccomp/default.nix b/pkgs/development/python-modules/seccomp/default.nix index 2e8830277b944..8f8de15024e49 100644 --- a/pkgs/development/python-modules/seccomp/default.nix +++ b/pkgs/development/python-modules/seccomp/default.nix @@ -24,9 +24,9 @@ buildPythonPackage rec { 'libraries=["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 8e59e1efe9579..9868f18fbc067 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/secure/default.nix b/pkgs/development/python-modules/secure/default.nix index f78cda89176c3..9ca0d12079e74 100644 --- a/pkgs/development/python-modules/secure/default.nix +++ b/pkgs/development/python-modules/secure/default.nix @@ -30,10 +30,10 @@ 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"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/seekpath/default.nix b/pkgs/development/python-modules/seekpath/default.nix index 257955ed8d5c1..7954f569db900 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/selenium/default.nix b/pkgs/development/python-modules/selenium/default.nix index c596ec3b40c61..65468f92cecdd 100644 --- a/pkgs/development/python-modules/selenium/default.nix +++ b/pkgs/development/python-modules/selenium/default.nix @@ -81,10 +81,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 26f33ea2a3682..f621998accd23 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 e69a920bc8ea8..34542c0313118 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/semver/default.nix b/pkgs/development/python-modules/semver/default.nix index abc07f74c1673..8f686eb9f002e 100644 --- a/pkgs/development/python-modules/semver/default.nix +++ b/pkgs/development/python-modules/semver/default.nix @@ -41,12 +41,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/sensirion-ble/default.nix b/pkgs/development/python-modules/sensirion-ble/default.nix index 19159e7d734fa..86d7d9c841d26 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/sentence-splitter/default.nix b/pkgs/development/python-modules/sentence-splitter/default.nix index 1b88987698ce1..ea4289dc46bd3 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 e89a52fa0fbbc..21e06e926006a 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 8a7a2328f9b47..d4a17f2a458ed 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/sepaxml/default.nix b/pkgs/development/python-modules/sepaxml/default.nix index d1e12b2ae1fad..f9763c6c756f0 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/seqeval/default.nix b/pkgs/development/python-modules/seqeval/default.nix index a8a06ed89ab24..d473a7400f154 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 3ef9e2798b06a..0240fe68890b1 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 abc9e1378b108..42d3fc1ddf4b1 100644 --- a/pkgs/development/python-modules/serializable/default.nix +++ b/pkgs/development/python-modules/serializable/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { 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/serpy/default.nix b/pkgs/development/python-modules/serpy/default.nix index 10f0561849722..190cbd29f0547 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 82451b5d8716e..f56b73715ee69 100644 --- a/pkgs/development/python-modules/servefile/default.nix +++ b/pkgs/development/python-modules/servefile/default.nix @@ -39,11 +39,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 4d1c79fda5abd..4c7229fe87cd5 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/setproctitle/default.nix b/pkgs/development/python-modules/setproctitle/default.nix index e07667cdd05c1..23e872a2e009d 100644 --- a/pkgs/development/python-modules/setproctitle/default.nix +++ b/pkgs/development/python-modules/setproctitle/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { # tries to compile programs with dependencies that aren't available disabledTestPaths = [ "tests/setproctitle_test.py" ]; - meta = with lib; { + meta = { description = "Allows a process to change its title (as displayed by system tools such as ps and top)"; homepage = "https://github.com/dvarrazzo/py-setproctitle"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ exi ]; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ exi ]; }; } diff --git a/pkgs/development/python-modules/setupmeta/default.nix b/pkgs/development/python-modules/setupmeta/default.nix index 8b65a9f1eb4cb..229ce223e3e1d 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-declarative-requirements/default.nix b/pkgs/development/python-modules/setuptools-declarative-requirements/default.nix index 694be226df0d5..4c7ee4a66f4c4 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-dso/default.nix b/pkgs/development/python-modules/setuptools-dso/default.nix index 094c66d1c4a08..30c762aed2dcf 100644 --- a/pkgs/development/python-modules/setuptools-dso/default.nix +++ b/pkgs/development/python-modules/setuptools-dso/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "setuptools extension for building non-Python Dynamic Shared Objects"; homepage = "https://github.com/mdavidsaver/setuptools_dso"; - license = licenses.bsd3; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/development/python-modules/setuptools-git/default.nix b/pkgs/development/python-modules/setuptools-git/default.nix index ae5b4224ad0fe..9c4f56b5b7762 100644 --- a/pkgs/development/python-modules/setuptools-git/default.nix +++ b/pkgs/development/python-modules/setuptools-git/default.nix @@ -18,9 +18,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ pkgs.git ]; doCheck = false; - meta = with lib; { + meta = { description = "Setuptools revision control system plugin for Git"; homepage = "https://pypi.python.org/pypi/setuptools-git"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/setuptools-lint/default.nix b/pkgs/development/python-modules/setuptools-lint/default.nix index 3c89bdecda355..8cb3496bd8a66 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-trial/default.nix b/pkgs/development/python-modules/setuptools-trial/default.nix index 3d1bd90167dcc..9dc6b77404ab9 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/seventeentrack/default.nix b/pkgs/development/python-modules/seventeentrack/default.nix index d0331594e3fd5..4b19981ac5865 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/sgmllib3k/default.nix b/pkgs/development/python-modules/sgmllib3k/default.nix index 1670a533e664e..9fa707ea0efcb 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 ce2826708c466..ea76a35ab1641 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 bafc4dc661f4c..c0ffd94576c8f 100644 --- a/pkgs/development/python-modules/sh/default.nix +++ b/pkgs/development/python-modules/sh/default.nix @@ -50,10 +50,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 11d580eaf8894..f990f3aab1e97 100644 --- a/pkgs/development/python-modules/shamir-mnemonic/default.nix +++ b/pkgs/development/python-modules/shamir-mnemonic/default.nix @@ -33,11 +33,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/sharkiq/default.nix b/pkgs/development/python-modules/sharkiq/default.nix index 210820060ab8c..7fc1c9644435a 100644 --- a/pkgs/development/python-modules/sharkiq/default.nix +++ b/pkgs/development/python-modules/sharkiq/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sharkiq" ]; - meta = with lib; { + meta = { description = "Python API for Shark IQ robots"; homepage = "https://github.com/JeffResc/sharkiq"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/shellescape/default.nix b/pkgs/development/python-modules/shellescape/default.nix index fe0a29458b6f0..cc31f50cda546 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/shiboken2/default.nix b/pkgs/development/python-modules/shiboken2/default.nix index 88f59fc86ebb2..26caa4c7eafd7 100644 --- a/pkgs/development/python-modules/shiboken2/default.nix +++ b/pkgs/development/python-modules/shiboken2/default.nix @@ -54,14 +54,14 @@ 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 ]; homepage = "https://wiki.qt.io/Qt_for_Python"; - maintainers = with maintainers; [ gebner ]; + maintainers = with lib.maintainers; [ gebner ]; }; } diff --git a/pkgs/development/python-modules/shippai/default.nix b/pkgs/development/python-modules/shippai/default.nix index e005b12dded32..eddc037ee5f0d 100644 --- a/pkgs/development/python-modules/shippai/default.nix +++ b/pkgs/development/python-modules/shippai/default.nix @@ -15,10 +15,10 @@ buildPythonPackage rec { sha256 = "0r6iwvmay8ygn2m15pyjrk9am4mfpk7rkf0lcbcb15pnabixlyzj"; }; - meta = with lib; { + meta = { description = "Use Rust failures as Python exceptions"; homepage = "https://github.com/untitaker/shippai"; - license = licenses.mit; - maintainers = with maintainers; [ gebner ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gebner ]; }; } diff --git a/pkgs/development/python-modules/shiv/default.nix b/pkgs/development/python-modules/shiv/default.nix index 7c7e6add3e114..711d1c9d45fe4 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/should-dsl/default.nix b/pkgs/development/python-modules/should-dsl/default.nix index 1760ed454397f..2405b8cfb9389 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 a08a874d690c0..26afc1e28dd37 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 b98b48df2cd99..c7b12e7f7df37 100644 --- a/pkgs/development/python-modules/showit/default.nix +++ b/pkgs/development/python-modules/showit/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { 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/shutilwhich/default.nix b/pkgs/development/python-modules/shutilwhich/default.nix index bc022fbe0f853..9215b628f38af 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/signalslot/default.nix b/pkgs/development/python-modules/signalslot/default.nix index d6f122f2a56a6..a7e12c9c0a326 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 a03238cf2e00c..5ca33a44a5b2d 100644 --- a/pkgs/development/python-modules/signedjson/default.nix +++ b/pkgs/development/python-modules/signedjson/default.nix @@ -41,10 +41,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/sigstore-protobuf-specs/default.nix b/pkgs/development/python-modules/sigstore-protobuf-specs/default.nix index 043b47e243108..c85d90023d961 100644 --- a/pkgs/development/python-modules/sigstore-protobuf-specs/default.nix +++ b/pkgs/development/python-modules/sigstore-protobuf-specs/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sigstore_protobuf_specs" ]; - meta = with lib; { + meta = { description = "Library for serializing and deserializing Sigstore messages"; homepage = "https://pypi.org/project/sigstore-protobuf-specs/"; - 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 46c3e3caad9f6..14db70d8628ce 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 2bd0bd80be065..ebface191aaf4 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/simple-di/default.nix b/pkgs/development/python-modules/simple-di/default.nix index b8d32effc0983..6bd7b22893dbf 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 023b604c8a57a..2a0fa0b00924f 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 dd5aa752cdbd7..c33455ae7cdbe 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-websocket-server/default.nix b/pkgs/development/python-modules/simple-websocket-server/default.nix index e7e2c0af5ae4e..968f95774f115 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/simpleaudio/default.nix b/pkgs/development/python-modules/simpleaudio/default.nix index 8e336d4e61c2f..1518b29537aef 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 bfa761b59e442..cdb3f6998f67f 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/simplehound/default.nix b/pkgs/development/python-modules/simplehound/default.nix index bf2efed90c09a..def6defc36333 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/simplekml/default.nix b/pkgs/development/python-modules/simplekml/default.nix index 99637db57a430..3b0a7b27845f2 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/simplenote/default.nix b/pkgs/development/python-modules/simplenote/default.nix index 2c3203446683d..e930779bb7b5c 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 66a54f722b3d4..a5268939622a7 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/simplesqlite/default.nix b/pkgs/development/python-modules/simplesqlite/default.nix index 7272c88661840..ae64f3c9d49fc 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/single-version/default.nix b/pkgs/development/python-modules/single-version/default.nix index 960efdb9a2184..e2aa68dbdced8 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/siosocks/default.nix b/pkgs/development/python-modules/siosocks/default.nix index 7bbcce74073f0..d0717e4ecd8ce 100644 --- a/pkgs/development/python-modules/siosocks/default.nix +++ b/pkgs/development/python-modules/siosocks/default.nix @@ -45,10 +45,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 8dc26ddfdc0dd..8a751bf48c0ab 100644 --- a/pkgs/development/python-modules/sip/4.x.nix +++ b/pkgs/development/python-modules/sip/4.x.nix @@ -57,15 +57,15 @@ 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 sander ]; - 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 bf83c5c8c1420..fb5c68b645aab 100644 --- a/pkgs/development/python-modules/sip/default.nix +++ b/pkgs/development/python-modules/sip/default.nix @@ -44,10 +44,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; - maintainers = with maintainers; [ nrdxp ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nrdxp ]; }; } diff --git a/pkgs/development/python-modules/skidl/default.nix b/pkgs/development/python-modules/skidl/default.nix index 06871bd079051..b8c6f3e4a4e82 100644 --- a/pkgs/development/python-modules/skidl/default.nix +++ b/pkgs/development/python-modules/skidl/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "skidl" ]; - meta = with lib; { + meta = { description = "Module that extends Python with the ability to design electronic circuits"; mainProgram = "netlist_to_skidl"; homepage = "https://xess.com/skidl/docs/_site/"; - 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 00d5dd7a784e2..4688088cf439c 100644 --- a/pkgs/development/python-modules/sklearn-deap/default.nix +++ b/pkgs/development/python-modules/sklearn-deap/default.nix @@ -46,10 +46,10 @@ 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 ]; }; } diff --git a/pkgs/development/python-modules/skrl/default.nix b/pkgs/development/python-modules/skrl/default.nix index b7fddfd9e7825..8f09325a8f382 100644 --- a/pkgs/development/python-modules/skrl/default.nix +++ b/pkgs/development/python-modules/skrl/default.nix @@ -61,10 +61,10 @@ buildPythonPackage rec { "skrl.utils.model_instantiators" ]; - meta = with lib; { + meta = { description = "Reinforcement learning library using PyTorch focusing on readability and simplicity"; 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/skyfield/default.nix b/pkgs/development/python-modules/skyfield/default.nix index b917cf214890e..d4bd2b6fe10e4 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 2ce2555a25ca6..437222b0d1ebc 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 275948b3970d2..e2dd2da68d104 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 5baa8bb7405fe..cbe75473a3c02 100644 --- a/pkgs/development/python-modules/skytemple-files/default.nix +++ b/pkgs/development/python-modules/skytemple-files/default.nix @@ -88,12 +88,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 20c6187a2c25a..92252050a7636 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 8b29df6930884..cc05c19563cb5 100644 --- a/pkgs/development/python-modules/skytemple-rust/default.nix +++ b/pkgs/development/python-modules/skytemple-rust/default.nix @@ -47,10 +47,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 64bd47671d034..9b57d09e6bbe6 100644 --- a/pkgs/development/python-modules/skytemple-ssb-debugger/default.nix +++ b/pkgs/development/python-modules/skytemple-ssb-debugger/default.nix @@ -61,11 +61,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/skytemple-ssb-emulator/default.nix b/pkgs/development/python-modules/skytemple-ssb-emulator/default.nix index 8b5f71030667c..e664b84817c62 100644 --- a/pkgs/development/python-modules/skytemple-ssb-emulator/default.nix +++ b/pkgs/development/python-modules/skytemple-ssb-emulator/default.nix @@ -66,10 +66,10 @@ buildPythonPackage rec { doCheck = false; # there are no tests pythonImportsCheck = [ "skytemple_ssb_emulator" ]; - meta = with lib; { + meta = { description = "SkyTemple Script Engine Debugger Emulator Backend"; homepage = "https://github.com/SkyTemple/skytemple-ssb-emulator"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/development/python-modules/sleekxmpp/default.nix b/pkgs/development/python-modules/sleekxmpp/default.nix index 9c8031a6b878b..382cc7c28e7cb 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 2804be073b9e5..4a4aabecfaa56 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/slicedimage/default.nix b/pkgs/development/python-modules/slicedimage/default.nix index 8c7b0e242ce44..1535017bf4fdf 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 79e514f7ee9be..321d3f40ffe4e 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 6dc89369d0c39..971535e87eeb7 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/slob/default.nix b/pkgs/development/python-modules/slob/default.nix index 3e72030896d55..4f2bbbf28ef8b 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 182b0475766af..5793024310381 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/slpp/default.nix b/pkgs/development/python-modules/slpp/default.nix index 10c964c61177c..81a55bdd52e0c 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 3e9a885a6023b..43764114020b4 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; - maintainers = with maintainers; [ ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/sly/default.nix b/pkgs/development/python-modules/sly/default.nix index 6087af1deee5f..c8389467b8e59 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 85e94d6c6244c..5761a08106cdd 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/smarthab/default.nix b/pkgs/development/python-modules/smarthab/default.nix index 44bde1243e8c5..27338295d1235 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/smbus-cffi/default.nix b/pkgs/development/python-modules/smbus-cffi/default.nix index 7d76327862c9d..b0404817f168d 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/smdebug-rulesconfig/default.nix b/pkgs/development/python-modules/smdebug-rulesconfig/default.nix index 6f91ebe4c79a9..7d00176180da9 100644 --- a/pkgs/development/python-modules/smdebug-rulesconfig/default.nix +++ b/pkgs/development/python-modules/smdebug-rulesconfig/default.nix @@ -19,10 +19,10 @@ 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; - maintainers = with maintainers; [ nequissimus ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nequissimus ]; }; } diff --git a/pkgs/development/python-modules/smpp-pdu/default.nix b/pkgs/development/python-modules/smpp-pdu/default.nix index a515b53716274..eee5ce21f6d2b 100644 --- a/pkgs/development/python-modules/smpp-pdu/default.nix +++ b/pkgs/development/python-modules/smpp-pdu/default.nix @@ -25,10 +25,10 @@ buildPythonPackage { pythonImportsCheck = [ "smpp.pdu" ]; - 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/snakebite/default.nix b/pkgs/development/python-modules/snakebite/default.nix index 26fffc7559336..ceaa2d92f0029 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 e52b88742253c..dbd270c24561a 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-report-plugins/default.nix b/pkgs/development/python-modules/snakemake-interface-report-plugins/default.nix index 137aa8ae88a88..5625260df5d7f 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 a50fec7250535..1c290e8b22700 100644 --- a/pkgs/development/python-modules/snakemake-interface-storage-plugins/default.nix +++ b/pkgs/development/python-modules/snakemake-interface-storage-plugins/default.nix @@ -32,10 +32,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 e3da29ae9b042..35f974fb4e971 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 = "A 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 e4e19b2e2f296..26a45339b0b14 100644 --- a/pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix +++ b/pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix @@ -37,10 +37,10 @@ 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"; - 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 9c88ce9f45a4b..6cf4dcf889ec1 100644 --- a/pkgs/development/python-modules/snakemake-storage-plugin-xrootd/default.nix +++ b/pkgs/development/python-modules/snakemake-storage-plugin-xrootd/default.nix @@ -36,10 +36,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/snapcast/default.nix b/pkgs/development/python-modules/snapcast/default.nix index f7d6f387a1ef4..235feae58d360 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/snapshottest/default.nix b/pkgs/development/python-modules/snapshottest/default.nix index 244a1627f11cb..f8f39d6687bc2 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 c48cfd27f9b19..6fdf026ff6c7a 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 5bfe0e6c191b3..4908346c2e593 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/snowballstemmer/default.nix b/pkgs/development/python-modules/snowballstemmer/default.nix index 37a2a51390d86..14995d06dd5ee 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/snuggs/default.nix b/pkgs/development/python-modules/snuggs/default.nix index b742c8d6985ad..3b01accf0147e 100644 --- a/pkgs/development/python-modules/snuggs/default.nix +++ b/pkgs/development/python-modules/snuggs/default.nix @@ -43,10 +43,10 @@ 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 = with maintainers; [ ]; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/socketio-client/default.nix b/pkgs/development/python-modules/socketio-client/default.nix index 4f71777668217..e6c06494f693a 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 a71ca58179743..2f066e8e225da 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 dd653621d6c58..7aa951b4dc44a 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/sockjs/default.nix b/pkgs/development/python-modules/sockjs/default.nix index c41bef8e1c7fc..871487e24a1c2 100644 --- a/pkgs/development/python-modules/sockjs/default.nix +++ b/pkgs/development/python-modules/sockjs/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sockjs" ]; - meta = with lib; { + meta = { description = "Sockjs server"; homepage = "https://github.com/aio-libs/sockjs"; - license = licenses.asl20; - maintainers = with maintainers; [ freezeboy ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ freezeboy ]; }; } diff --git a/pkgs/development/python-modules/socksio/default.nix b/pkgs/development/python-modules/socksio/default.nix index decae7430fa27..27af0ec3d25bd 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 e09d1aeb025ad..22776c772094b 100644 --- a/pkgs/development/python-modules/socksipy-branch/default.nix +++ b/pkgs/development/python-modules/socksipy-branch/default.nix @@ -14,9 +14,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/solc-select/default.nix b/pkgs/development/python-modules/solc-select/default.nix index 3a9e0f7bb4a98..7786056c09905 100644 --- a/pkgs/development/python-modules/solc-select/default.nix +++ b/pkgs/development/python-modules/solc-select/default.nix @@ -25,10 +25,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 124945750e7da..52fe27ab89b5e 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 = "A 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/somfy-mylink-synergy/default.nix b/pkgs/development/python-modules/somfy-mylink-synergy/default.nix index 1bb28e17cd1fe..137b187b00526 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/sonarr/default.nix b/pkgs/development/python-modules/sonarr/default.nix index 479ae69e96b94..a40313aa2293a 100644 --- a/pkgs/development/python-modules/sonarr/default.nix +++ b/pkgs/development/python-modules/sonarr/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sonarr" ]; - meta = with lib; { + meta = { description = "Asynchronous Python client for the Sonarr API"; homepage = "https://github.com/ctalkington/python-sonarr"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/sopel/default.nix b/pkgs/development/python-modules/sopel/default.nix index 744c4550d9ebf..bf2516e635876 100644 --- a/pkgs/development/python-modules/sopel/default.nix +++ b/pkgs/development/python-modules/sopel/default.nix @@ -75,11 +75,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/sortedcollections/default.nix b/pkgs/development/python-modules/sortedcollections/default.nix index a525167635b69..bf7af7a8c3fab 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 967119bbe776c..985644224307c 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 6fd5c0b67494b..2dbb4d6e6cbd0 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 ae4e101f5f648..12c45859016c1 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/soxr/default.nix b/pkgs/development/python-modules/soxr/default.nix index dfd38d2a22ebe..9f2a169cca1f1 100644 --- a/pkgs/development/python-modules/soxr/default.nix +++ b/pkgs/development/python-modules/soxr/default.nix @@ -69,10 +69,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { 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 9315953b5a25c..bb72fbfd2c51c 100644 --- a/pkgs/development/python-modules/spacy-alignments/default.nix +++ b/pkgs/development/python-modules/spacy-alignments/default.nix @@ -43,10 +43,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 8ac6396cf0abc..667c91f9e5680 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, becaus 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 a71f1dd6dc619..3ca1fa96dc72d 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/lookups-data.nix b/pkgs/development/python-modules/spacy/lookups-data.nix index 3e1e024350d83..a664f7d2cfded 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/spark-parser/default.nix b/pkgs/development/python-modules/spark-parser/default.nix index 46eea5136304e..86b142cdcb97e 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 6641278651290..8f85ba8902723 100644 --- a/pkgs/development/python-modules/sparklines/default.nix +++ b/pkgs/development/python-modules/sparklines/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sparklines" ]; - 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; [ rhoriguchi ]; - license = licenses.gpl3Only; + maintainers = with lib.maintainers; [ rhoriguchi ]; + license = lib.licenses.gpl3Only; }; } diff --git a/pkgs/development/python-modules/sparqlwrapper/default.nix b/pkgs/development/python-modules/sparqlwrapper/default.nix index 20c32f52379fb..76b1c502df804 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 48314a348209c..8605d8e43f5fc 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/speaklater/default.nix b/pkgs/development/python-modules/speaklater/default.nix index 1529e200f731b..27f670f8a8d90 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 780ef60bb996f..4be3379c42ca9 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/speedtest-cli/default.nix b/pkgs/development/python-modules/speedtest-cli/default.nix index 3a995087f7d0e..22facf0066242 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 domenkozar ]; diff --git a/pkgs/development/python-modules/speg/default.nix b/pkgs/development/python-modules/speg/default.nix index 1ec6bc84493d1..46116244a9e13 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 806f39efa63b3..9d6022801b311 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; - maintainers = with maintainers; [ abbradar ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ abbradar ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/python-modules/sphinx-autobuild/default.nix b/pkgs/development/python-modules/sphinx-autobuild/default.nix index 33314d868f6d2..3653dfc318bb9 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-automodapi/default.nix b/pkgs/development/python-modules/sphinx-automodapi/default.nix index 4cc944113d71d..0bd954e5492aa 100644 --- a/pkgs/development/python-modules/sphinx-automodapi/default.nix +++ b/pkgs/development/python-modules/sphinx-automodapi/default.nix @@ -55,10 +55,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_automodapi" ]; - meta = with lib; { + meta = { description = "Sphinx extension for generating API documentation"; homepage = "https://github.com/astropy/sphinx-automodapi"; - 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 9afde893cfde9..030d61b84c9d4 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-comments/default.nix b/pkgs/development/python-modules/sphinx-comments/default.nix index 65dedffdfacbb..217c084115b17 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-fortran/default.nix b/pkgs/development/python-modules/sphinx-fortran/default.nix index e01342e8e6eb8..d3dc686a7cb13 100644 --- a/pkgs/development/python-modules/sphinx-fortran/default.nix +++ b/pkgs/development/python-modules/sphinx-fortran/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { 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 5a36420dc4306..de6d7a1ff23ac 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 42b2ff02e0fce..f93132698af1d 100644 --- a/pkgs/development/python-modules/sphinx-intl/default.nix +++ b/pkgs/development/python-modules/sphinx-intl/default.nix @@ -40,10 +40,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 ea8f4268fb973..68d23f1113803 100644 --- a/pkgs/development/python-modules/sphinx-issues/default.nix +++ b/pkgs/development/python-modules/sphinx-issues/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { cp README.html $doc/share/doc/$name/html ''; - 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 7627dddd4ba54..92cbb670aa801 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-markdown-parser/default.nix b/pkgs/development/python-modules/sphinx-markdown-parser/default.nix index a8409208c4938..75d50c7dea4db 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 6c9d36c69f0c1..b9478eeb300bd 100644 --- a/pkgs/development/python-modules/sphinx-markdown-tables/default.nix +++ b/pkgs/development/python-modules/sphinx-markdown-tables/default.nix @@ -23,10 +23,10 @@ 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"; - maintainers = with maintainers; [ Madouura ]; - license = licenses.gpl3; + maintainers = with lib.maintainers; [ Madouura ]; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/sphinx-prompt/default.nix b/pkgs/development/python-modules/sphinx-prompt/default.nix index e549417bbaccd..a157a450f06a6 100644 --- a/pkgs/development/python-modules/sphinx-prompt/default.nix +++ b/pkgs/development/python-modules/sphinx-prompt/default.nix @@ -55,10 +55,10 @@ buildPythonPackage rec { # versions >=1.8.0 cannot be build from source passthru.skipBulkUpdate = true; - 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-serve/default.nix b/pkgs/development/python-modules/sphinx-serve/default.nix index 1b0ab4166f272..e0798d6084034 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-tabs/default.nix b/pkgs/development/python-modules/sphinx-tabs/default.nix index f2ba6a6019e38..831796e32d8ff 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-togglebutton/default.nix b/pkgs/development/python-modules/sphinx-togglebutton/default.nix index 4af3ba41ce103..45c6354fc7570 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 35eee667daf4e..4cc13d3cfb98e 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; - maintainers = with maintainers; [ davidtwco ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ davidtwco ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-apidoc/default.nix b/pkgs/development/python-modules/sphinxcontrib-apidoc/default.nix index 359b5387f6399..99e1ce8f7ffcc 100644 --- a/pkgs/development/python-modules/sphinxcontrib-apidoc/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-apidoc/default.nix @@ -31,10 +31,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; - maintainers = teams.openstack.members; + license = lib.licenses.bsd2; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-applehelp/default.nix b/pkgs/development/python-modules/sphinxcontrib-applehelp/default.nix index 9a9e1a2e0078e..b6cc0eec5d9e0 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; - maintainers = teams.sphinx.members; + license = lib.licenses.bsd2; + maintainers = lib.teams.sphinx.members; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-asyncio/default.nix b/pkgs/development/python-modules/sphinxcontrib-asyncio/default.nix index f935b694e630d..5c00e404ee6f2 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 ce7df8dcba700..fb6cf370dcbc4 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 377682ae25299..7cc9a4f7b7f4b 100644 --- a/pkgs/development/python-modules/sphinxcontrib-bibtex/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-bibtex/default.nix @@ -51,10 +51,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 159cc00b32efa..51d3b8e199c95 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-devhelp/default.nix b/pkgs/development/python-modules/sphinxcontrib-devhelp/default.nix index d2daaded5b90b..729b49ffd2bce 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 = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document"; homepage = "https://github.com/sphinx-doc/sphinxcontrib-devhelp"; - license = licenses.bsd2; - maintainers = teams.sphinx.members; + license = lib.licenses.bsd2; + maintainers = lib.teams.sphinx.members; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-excel-table/default.nix b/pkgs/development/python-modules/sphinxcontrib-excel-table/default.nix index 329db4319a51a..5f10d8ecf383b 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 1d2850bb20b29..7a8f0f8ef49a9 100644 --- a/pkgs/development/python-modules/sphinxcontrib-fulltoc/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-fulltoc/default.nix @@ -31,10 +31,10 @@ 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/"; - 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 3279faae01287..4dc933d0505e8 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; - maintainers = teams.sphinx.members; + license = lib.licenses.bsd2; + maintainers = lib.teams.sphinx.members; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-httpdomain/default.nix b/pkgs/development/python-modules/sphinxcontrib-httpdomain/default.nix index a483e50deea39..6aedbb6abdf32 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-jsmath/default.nix b/pkgs/development/python-modules/sphinxcontrib-jsmath/default.nix index 9ce7c66abc997..a76e27defacc3 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 = "sphinxcontrib-jsmath is a sphinx extension which renders display math in HTML via JavaScript"; homepage = "https://github.com/sphinx-doc/sphinxcontrib-jsmath"; - license = licenses.bsd0; - maintainers = teams.sphinx.members; + license = lib.licenses.bsd0; + maintainers = lib.teams.sphinx.members; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-log-cabinet/default.nix b/pkgs/development/python-modules/sphinxcontrib-log-cabinet/default.nix index e748295202797..d62ed72920953 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 524c9b0946747..f59288041195e 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 a95cd57dec85d..97fe3b22f4bce 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; - maintainers = with maintainers; [ drupol ]; + license = lib.licenses.bola11; + maintainers = with lib.maintainers; [ drupol ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-newsfeed/default.nix b/pkgs/development/python-modules/sphinxcontrib-newsfeed/default.nix index 2f7b6c1ee34df..29282610790f4 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 56ca8292903cc..be8404a0280ba 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; - maintainers = with maintainers; [ davidtwco ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ davidtwco ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-openapi/default.nix b/pkgs/development/python-modules/sphinxcontrib-openapi/default.nix index 1076db106fcb9..da92f50fbfb80 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 e21f983ee759a..f41829dcb7581 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 6a455531ab0d4..b30b52cbef77b 100644 --- a/pkgs/development/python-modules/sphinxcontrib-programoutput/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-programoutput/default.nix @@ -24,10 +24,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 755deb678526a..fd2560d9849d6 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 = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document"; homepage = "https://github.com/sphinx-doc/sphinxcontrib-qthelp"; - license = licenses.bsd2; - maintainers = teams.sphinx.members; + license = lib.licenses.bsd2; + maintainers = lib.teams.sphinx.members; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-seqdiag/default.nix b/pkgs/development/python-modules/sphinxcontrib-seqdiag/default.nix index fbca10bced535..1be84945ad2f5 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; - maintainers = with maintainers; [ davidtwco ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ davidtwco ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-tikz/default.nix b/pkgs/development/python-modules/sphinxcontrib-tikz/default.nix index 50c892cd5cd51..af372f13bf952 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 3f56d44878e65..ddcd6cfb02f02 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 51375672c6c63..0d8de0c666d89 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 169515df63f4e..f03e68dd06d64 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/spiderpy/default.nix b/pkgs/development/python-modules/spiderpy/default.nix index 88823aff54ba4..afcde96fdb529 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 1e62e9b3f988e..9939d2a663164 100644 --- a/pkgs/development/python-modules/spidev/default.nix +++ b/pkgs/development/python-modules/spidev/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "spidev" ]; - meta = with lib; { + meta = { 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 a5dcf83a68c12..049894a49bb05 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/splinter/default.nix b/pkgs/development/python-modules/splinter/default.nix index 8ceac913de9e0..515282fb938fc 100644 --- a/pkgs/development/python-modules/splinter/default.nix +++ b/pkgs/development/python-modules/splinter/default.nix @@ -83,11 +83,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "splinter" ]; - meta = with lib; { + meta = { changelog = "https://splinter.readthedocs.io/en/latest/news.html"; description = "Browser abstraction for web acceptance testing"; homepage = "https://github.com/cobrateam/splinter"; - license = licenses.bsd3; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/spur/default.nix b/pkgs/development/python-modules/spur/default.nix index ee72cb91612f8..6e5cd5baa7c5c 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 ecc1b8034ade1..ec0e839febcb5 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/sqids/default.nix b/pkgs/development/python-modules/sqids/default.nix index c398c844dc5f5..801347f4995c6 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 0c0d631bf1512..b4b6a87471cee 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-views/default.nix b/pkgs/development/python-modules/sqlalchemy-views/default.nix index 5f9bdfce9b35b..63c7c6af8da07 100644 --- a/pkgs/development/python-modules/sqlalchemy-views/default.nix +++ b/pkgs/development/python-modules/sqlalchemy-views/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sqlalchemy_views" ]; - meta = with lib; { + meta = { description = "Adds CreateView and DropView constructs to SQLAlchemy"; homepage = "https://github.com/jklukas/sqlalchemy-views"; - license = licenses.mit; - maintainers = with maintainers; [ cpcloud ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/sqlbag/default.nix b/pkgs/development/python-modules/sqlbag/default.nix index 3915bf562e0f0..04a46ec5b4f79 100644 --- a/pkgs/development/python-modules/sqlbag/default.nix +++ b/pkgs/development/python-modules/sqlbag/default.nix @@ -78,11 +78,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sqlbag" ]; - meta = with lib; { + meta = { description = "Handy python code for doing database things"; homepage = "https://github.com/djrobstep/sqlbag"; - license = with licenses; [ unlicense ]; - maintainers = with maintainers; [ soispha ]; + license = with lib.licenses; [ unlicense ]; + maintainers = with lib.maintainers; [ soispha ]; broken = true; # Fails to build against the current flask version }; } diff --git a/pkgs/development/python-modules/sqlcipher3/default.nix b/pkgs/development/python-modules/sqlcipher3/default.nix index 5286d78f7cd38..536cf6479b905 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-fts4/default.nix b/pkgs/development/python-modules/sqlite-fts4/default.nix index 0ea1f02bbff32..170371d917c77 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/sqliteschema/default.nix b/pkgs/development/python-modules/sqliteschema/default.nix index f4c5c89e08e72..fd387e7f55c5d 100644 --- a/pkgs/development/python-modules/sqliteschema/default.nix +++ b/pkgs/development/python-modules/sqliteschema/default.nix @@ -47,10 +47,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/squarify/default.nix b/pkgs/development/python-modules/squarify/default.nix index 496e922a59d14..03394271afea7 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 fdd8cc8b4b053..9b583b42c9dec 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 e3c9c04fe6d35..e68267b0d045d 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/srt/default.nix b/pkgs/development/python-modules/srt/default.nix index b1badbc6c71ba..af45188083b93 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 3ffba90e953bf..98c24b3564359 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/sseclient/default.nix b/pkgs/development/python-modules/sseclient/default.nix index 70927d104e5dc..6ccb999ca9255 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 a54b198a4533c..6175e125d03be 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/sshpubkeys/default.nix b/pkgs/development/python-modules/sshpubkeys/default.nix index 0f2fc24474a12..e7f9c4a741f1e 100644 --- a/pkgs/development/python-modules/sshpubkeys/default.nix +++ b/pkgs/development/python-modules/sshpubkeys/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { ecdsa ]; - meta = with lib; { + meta = { description = "OpenSSH Public Key Parser for Python"; homepage = "https://github.com/ojarva/python-sshpubkeys"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sshtunnel/default.nix b/pkgs/development/python-modules/sshtunnel/default.nix index ecb8e24d01a4c..d6a6549061e51 100644 --- a/pkgs/development/python-modules/sshtunnel/default.nix +++ b/pkgs/development/python-modules/sshtunnel/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { "read_ssh_config" ]; - 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 422a775e1ef51..59697b0d19876 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/stanio/default.nix b/pkgs/development/python-modules/stanio/default.nix index a87e753c1886f..82ebe10ebf955 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/starkbank-ecdsa/default.nix b/pkgs/development/python-modules/starkbank-ecdsa/default.nix index cb8d939006e2b..ed0e3c17a9cc6 100644 --- a/pkgs/development/python-modules/starkbank-ecdsa/default.nix +++ b/pkgs/development/python-modules/starkbank-ecdsa/default.nix @@ -33,10 +33,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/starline/default.nix b/pkgs/development/python-modules/starline/default.nix index 4fbccc73f76a6..fa96ab4bac007 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 96903ff8e51f1..7af6dafba694d 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/staticjinja/default.nix b/pkgs/development/python-modules/staticjinja/default.nix index 2967f11b9aa67..ddeb59a2f4f84 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 2136f016fc2c0..83351a8b77e91 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/statsd/default.nix b/pkgs/development/python-modules/statsd/default.nix index b524a0f2d7c03..8779937799013 100644 --- a/pkgs/development/python-modules/statsd/default.nix +++ b/pkgs/development/python-modules/statsd/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "statsd/tests.py" ]; - meta = with lib; { - maintainers = with maintainers; [ domenkozar ]; + meta = { + maintainers = with lib.maintainers; [ domenkozar ]; description = "Simple statsd client"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/jsocol/pystatsd"; }; } diff --git a/pkgs/development/python-modules/stdiomask/default.nix b/pkgs/development/python-modules/stdiomask/default.nix index 5a78a3a727e19..32f605562a929 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/stemming/default.nix b/pkgs/development/python-modules/stemming/default.nix index 98ef1eea9b092..b6c61a2a7f1f4 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 57c1723b86c30..c3be9bffc6ea2 100644 --- a/pkgs/development/python-modules/stestr/default.nix +++ b/pkgs/development/python-modules/stestr/default.nix @@ -55,11 +55,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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/stevedore/default.nix b/pkgs/development/python-modules/stevedore/default.nix index 3e6d8669e4757..be3af2ee20b22 100644 --- a/pkgs/development/python-modules/stevedore/default.nix +++ b/pkgs/development/python-modules/stevedore/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "stevedore" ]; - meta = with lib; { + meta = { description = "Manage dynamic plugins for Python applications"; homepage = "https://docs.openstack.org/stevedore/"; - license = licenses.asl20; - maintainers = teams.openstack.members ++ (with maintainers; [ fab ]); + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members ++ (with lib.maintainers; [ fab ]); }; } diff --git a/pkgs/development/python-modules/stickytape/default.nix b/pkgs/development/python-modules/stickytape/default.nix index 9a788d6a2ac1e..e142ec0e7fbef 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/stopit/default.nix b/pkgs/development/python-modules/stopit/default.nix index 4569b1ba88e2a..2b3bbd2d4d32a 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/strct/default.nix b/pkgs/development/python-modules/strct/default.nix index 989b4e006d30b..c59c79e7ba37e 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 1375f6eae7859..d0c4605a6b718 100644 --- a/pkgs/development/python-modules/streamcontroller-plugin-tools/default.nix +++ b/pkgs/development/python-modules/streamcontroller-plugin-tools/default.nix @@ -23,11 +23,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 e921659e22841..021bc481c792b 100644 --- a/pkgs/development/python-modules/streamdeck/default.nix +++ b/pkgs/development/python-modules/streamdeck/default.nix @@ -28,10 +28,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 0d13b9db97cca..901c1292f66c3 100644 --- a/pkgs/development/python-modules/streaming-form-data/default.nix +++ b/pkgs/development/python-modules/streaming-form-data/default.nix @@ -42,10 +42,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 6ca91eaa33ca4..c14515aba8624 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/streamz/default.nix b/pkgs/development/python-modules/streamz/default.nix index eea52b8fa8f26..2aab843926d97 100644 --- a/pkgs/development/python-modules/streamz/default.nix +++ b/pkgs/development/python-modules/streamz/default.nix @@ -77,10 +77,10 @@ buildPythonPackage rec { "streamz/tests/test_kafka.py" ]; - meta = with lib; { + meta = { description = "Pipelines to manage continuous streams of data"; homepage = "https://github.com/python-streamz/streamz"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/strict-rfc3339/default.nix b/pkgs/development/python-modules/strict-rfc3339/default.nix index 5f4cfe3b7c4bb..275fcd0e6104b 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 9e5a4ed1e3e35..ba0dcd378943a 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 9b5fe137e0871..32ba9eed8a5ce 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 6fa57744e1f93..b9c84339a678a 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 c7637bb082c7c..704cf8f4fff01 100644 --- a/pkgs/development/python-modules/stringly/default.nix +++ b/pkgs/development/python-modules/stringly/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ typing-extensions ]; - 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/stubserver/default.nix b/pkgs/development/python-modules/stubserver/default.nix index af0ba80ce0609..ed9d728eb5b6e 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/stups-cli-support/default.nix b/pkgs/development/python-modules/stups-cli-support/default.nix index 7b37464a69be5..46e5f746d4e28 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-pierone/default.nix b/pkgs/development/python-modules/stups-pierone/default.nix index 1415e07ab1afc..49a03bf471830 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 3d9c4cd07735e..a2614e55969ec 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 1c54cdb512120..d381a2fcb2b19 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 5af44d4639219..99fc7eb2ee8e4 100644 --- a/pkgs/development/python-modules/stytra/default.nix +++ b/pkgs/development/python-modules/stytra/default.nix @@ -82,10 +82,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/subunit2sql/default.nix b/pkgs/development/python-modules/subunit2sql/default.nix index 402ee1a7bc3ec..efa94539b09b6 100644 --- a/pkgs/development/python-modules/subunit2sql/default.nix +++ b/pkgs/development/python-modules/subunit2sql/default.nix @@ -52,11 +52,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "subunit2sql" ]; - meta = with lib; { + meta = { description = "Command to Read a subunit file or stream and put the data in a SQL DB"; homepage = "https://opendev.org/opendev/subunit2sql"; - license = licenses.asl20; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; # version 1.10.0 is incomptaible with oslo-db 14.0.0 broken = true; }; diff --git a/pkgs/development/python-modules/subzerod/default.nix b/pkgs/development/python-modules/subzerod/default.nix index 49d59c66833d3..0147d7690c83a 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/sumtypes/default.nix b/pkgs/development/python-modules/sumtypes/default.nix index 91ae86b01206c..42db7c3fcedc5 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 cc7c01702c3df..3a27ca91a67cb 100644 --- a/pkgs/development/python-modules/sunpy/default.nix +++ b/pkgs/development/python-modules/sunpy/default.nix @@ -155,10 +155,10 @@ buildPythonPackage rec { # "sunpy" # ]; - meta = with lib; { + meta = { description = "Python for Solar Physics"; homepage = "https://sunpy.org"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; broken = true; }; diff --git a/pkgs/development/python-modules/sunwatcher/default.nix b/pkgs/development/python-modules/sunwatcher/default.nix index 0fcac2bfb205f..da40b71db315b 100644 --- a/pkgs/development/python-modules/sunwatcher/default.nix +++ b/pkgs/development/python-modules/sunwatcher/default.nix @@ -25,10 +25,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 = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/surepy/default.nix b/pkgs/development/python-modules/surepy/default.nix index 62d616a6e2e76..8a345cb266d3e 100644 --- a/pkgs/development/python-modules/surepy/default.nix +++ b/pkgs/development/python-modules/surepy/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "surepy" ]; - meta = with lib; { + meta = { description = "Python library to interact with the Sure Petcare API"; mainProgram = "surepy"; homepage = "https://github.com/benleb/surepy"; - 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/surt/default.nix b/pkgs/development/python-modules/surt/default.nix index 74e5723eb9062..753c691ae533d 100644 --- a/pkgs/development/python-modules/surt/default.nix +++ b/pkgs/development/python-modules/surt/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { "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/svgutils/default.nix b/pkgs/development/python-modules/svgutils/default.nix index b628b4ea5bafd..d9adb074189c4 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 24bb2622ecc19..f4da66ed192a7 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 c6f41fd03b1cb..5a6ab5ec9bbe2 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 b71ae59cca9ba..b83f47d800a6c 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 483958aedc61d..f2557cf39f919 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; - maintainers = teams.openstack.members; + license = lib.licenses.asl20; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/symengine/default.nix b/pkgs/development/python-modules/symengine/default.nix index 19c8984f06c40..b8ded8da5f820 100644 --- a/pkgs/development/python-modules/symengine/default.nix +++ b/pkgs/development/python-modules/symengine/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Python library providing wrappers to SymEngine"; homepage = "https://github.com/symengine/symengine.py"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/syncer/default.nix b/pkgs/development/python-modules/syncer/default.nix index aed4172d9a3f4..29f88b338c200 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 6666d2db45e50..47761591e590e 100644 --- a/pkgs/development/python-modules/synergy/default.nix +++ b/pkgs/development/python-modules/synergy/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; 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 411f43337fe20..44c24d295b718 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 cc833dd4ae8b9..999a78bf98ffb 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/systembridge/default.nix b/pkgs/development/python-modules/systembridge/default.nix index 3af2cb7c4964d..92fc3ffbe76a3 100644 --- a/pkgs/development/python-modules/systembridge/default.nix +++ b/pkgs/development/python-modules/systembridge/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "systembridge" ]; - meta = with lib; { + meta = { description = "Python module for connecting to System Bridge"; homepage = "https://github.com/timmo001/system-bridge-connector-py"; - 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/sysv-ipc/default.nix b/pkgs/development/python-modules/sysv-ipc/default.nix index d7e2f628756fe..d3eefd6d81c2d 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/tabview/default.nix b/pkgs/development/python-modules/tabview/default.nix index 4db25a42b8cd0..94fc809c9bda8 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 ad437fd3497bb..50117d34678c7 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 ed06454a5f6ab..de88517100acd 100644 --- a/pkgs/development/python-modules/tag-expressions/default.nix +++ b/pkgs/development/python-modules/tag-expressions/default.nix @@ -22,10 +22,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/tahoma-api/default.nix b/pkgs/development/python-modules/tahoma-api/default.nix index 13744f25f24d0..037abeb0edeeb 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 dbdc4e527962c..f515778913972 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/takethetime/default.nix b/pkgs/development/python-modules/takethetime/default.nix index e5671d5c08e8d..1c2b812d16c2d 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/tappy/default.nix b/pkgs/development/python-modules/tappy/default.nix index 916ac21e3d8ec..94b325ec7662c 100644 --- a/pkgs/development/python-modules/tappy/default.nix +++ b/pkgs/development/python-modules/tappy/default.nix @@ -36,12 +36,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "tap" ]; - meta = with lib; { + meta = { description = "Set of tools for working with the Test Anything Protocol (TAP) in Python"; homepage = "https://github.com/python-tap/tappy"; changelog = "https://tappy.readthedocs.io/en/latest/releases.html"; mainProgram = "tappy"; - license = licenses.bsd2; - maintainers = with maintainers; [ sfrijters ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ sfrijters ]; }; } diff --git a/pkgs/development/python-modules/taskw/default.nix b/pkgs/development/python-modules/taskw/default.nix index 8e3e33cac1ed1..56d9f27415fbd 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/taxi/default.nix b/pkgs/development/python-modules/taxi/default.nix index 6fd45eef85ebe..77852770d74e4 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/tblib/default.nix b/pkgs/development/python-modules/tblib/default.nix index 86a036c47d5da..b73ec5a83aa41 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/tcolorpy/default.nix b/pkgs/development/python-modules/tcolorpy/default.nix index bfbf2305841c3..284b428ada2b0 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 4de4e9a39a971..666fc074468e7 100644 --- a/pkgs/development/python-modules/tcxparser/default.nix +++ b/pkgs/development/python-modules/tcxparser/default.nix @@ -31,10 +31,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/teamcity-messages/default.nix b/pkgs/development/python-modules/teamcity-messages/default.nix index b68f7acbca927..beace14889ae3 100644 --- a/pkgs/development/python-modules/teamcity-messages/default.nix +++ b/pkgs/development/python-modules/teamcity-messages/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "teamcity" ]; - meta = with lib; { + meta = { description = "Python unit test reporting to TeamCity"; homepage = "https://github.com/JetBrains/teamcity-messages"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/teletype/default.nix b/pkgs/development/python-modules/teletype/default.nix index 73aa506b29aa1..d05f236ecee88 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 18b67b6bf5022..ac19a12d1eebe 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 67d20a25250af..32e9970b28de5 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 c7a824b92c2ee..19581cb86d907 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 2dc1a2af1ffdb..b906df75b8589 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 1e9762bbaf0ce..f8782503e4436 100644 --- a/pkgs/development/python-modules/tempest/default.nix +++ b/pkgs/development/python-modules/tempest/default.nix @@ -94,11 +94,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"; - maintainers = teams.openstack.members; + maintainers = lib.teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/tensorboard-data-server/default.nix b/pkgs/development/python-modules/tensorboard-data-server/default.nix index ef0662c4c2dac..f52cb185a8e7d 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/tensorboard-plugin-profile/default.nix b/pkgs/development/python-modules/tensorboard-plugin-profile/default.nix index 9719d1d0c6a0b..d88ee89165eb5 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 4a5760e3e92ed..c68c9fe2e18a4 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/tensorflow-datasets/default.nix b/pkgs/development/python-modules/tensorflow-datasets/default.nix index fb0f9d589b393..f5b2ddc3282f2 100644 --- a/pkgs/development/python-modules/tensorflow-datasets/default.nix +++ b/pkgs/development/python-modules/tensorflow-datasets/default.nix @@ -171,10 +171,10 @@ buildPythonPackage rec { "tensorflow_datasets/text/c4_utils_test.py" ]; - meta = with lib; { + meta = { description = "Library of datasets ready to use with TensorFlow"; homepage = "https://www.tensorflow.org/datasets/overview"; - license = licenses.asl20; - maintainers = with maintainers; [ ndl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ndl ]; }; } diff --git a/pkgs/development/python-modules/tensorflow-estimator/bin.nix b/pkgs/development/python-modules/tensorflow-estimator/bin.nix index 1acfcec9a8780..a0f231e731cc5 100644 --- a/pkgs/development/python-modules/tensorflow-estimator/bin.nix +++ b/pkgs/development/python-modules/tensorflow-estimator/bin.nix @@ -24,10 +24,10 @@ 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; - maintainers = with maintainers; [ jyp ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jyp ]; }; } diff --git a/pkgs/development/python-modules/tensorflow-metadata/default.nix b/pkgs/development/python-modules/tensorflow-metadata/default.nix index 19c5eefa5d0a6..f4188240d9299 100644 --- a/pkgs/development/python-modules/tensorflow-metadata/default.nix +++ b/pkgs/development/python-modules/tensorflow-metadata/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "tensorflow_metadata" ]; - meta = with lib; { + meta = { description = "Standard representations for metadata that are useful when training machine learning models with TensorFlow"; homepage = "https://github.com/tensorflow/metadata"; - license = licenses.asl20; - maintainers = with maintainers; [ ndl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ndl ]; }; } diff --git a/pkgs/development/python-modules/tensorrt/default.nix b/pkgs/development/python-modules/tensorrt/default.nix index b69986fdc7e71..046757998044c 100644 --- a/pkgs/development/python-modules/tensorrt/default.nix +++ b/pkgs/development/python-modules/tensorrt/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "tensorrt" ]; - meta = with lib; { + meta = { description = "Python bindings for TensorRT, a high-performance deep learning interface"; homepage = "https://developer.nvidia.com/tensorrt"; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ aidalgol ]; + maintainers = with lib.maintainers; [ aidalgol ]; broken = !(cudaPackages ? tensorrt) || !(cudaPackages ? cudnn); }; } diff --git a/pkgs/development/python-modules/termcolor/default.nix b/pkgs/development/python-modules/termcolor/default.nix index 1755f671b3ee8..4ef7319d85783 100644 --- a/pkgs/development/python-modules/termcolor/default.nix +++ b/pkgs/development/python-modules/termcolor/default.nix @@ -26,9 +26,9 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { 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 f0b6dcf9310ee..255c900824a2b 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 7773844c2febc..7517b923c66d0 100644 --- a/pkgs/development/python-modules/terminado/default.nix +++ b/pkgs/development/python-modules/terminado/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pytestCheckHook ]; - 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 f88cc61838da2..7dd13c858f80f 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/terminaltexteffects/default.nix b/pkgs/development/python-modules/terminaltexteffects/default.nix index 2879d7e9dd270..c07a049a355f5 100644 --- a/pkgs/development/python-modules/terminaltexteffects/default.nix +++ b/pkgs/development/python-modules/terminaltexteffects/default.nix @@ -23,13 +23,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "terminaltexteffects" ]; - meta = with lib; { + meta = { description = "A collection of visual effects that can be applied to terminal piped stdin text"; homepage = "https://chrisbuilds.github.io/terminaltexteffects"; changelog = "https://chrisbuilds.github.io/terminaltexteffects/changeblog/"; - license = licenses.mit; - platforms = with platforms; unix; - maintainers = with maintainers; [ qwqawawow ]; + license = lib.licenses.mit; + platforms = with lib.platforms; unix; + maintainers = with lib.maintainers; [ qwqawawow ]; mainProgram = "tte"; }; } diff --git a/pkgs/development/python-modules/termplotlib/default.nix b/pkgs/development/python-modules/termplotlib/default.nix index c4112b3e16293..834636acd51a6 100644 --- a/pkgs/development/python-modules/termplotlib/default.nix +++ b/pkgs/development/python-modules/termplotlib/default.nix @@ -47,10 +47,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 a3d752b7e7a7a..f982ad0a4adba 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/tesla-wall-connector/default.nix b/pkgs/development/python-modules/tesla-wall-connector/default.nix index cc5907be5b37a..3cf57b3894c84 100644 --- a/pkgs/development/python-modules/tesla-wall-connector/default.nix +++ b/pkgs/development/python-modules/tesla-wall-connector/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "tesla_wall_connector" ]; - meta = with lib; { + meta = { description = "Library for communicating with a Tesla Wall Connector"; homepage = "https://github.com/einarhauks/tesla-wall-connector"; - 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/test-tube/default.nix b/pkgs/development/python-modules/test-tube/default.nix index d133362c3fb2f..20ef4e92148d8 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 3e6661ceb687b..a7e17c4f6b25d 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/testing-common-database/default.nix b/pkgs/development/python-modules/testing-common-database/default.nix index 0555bd8ee0252..67a287fbe9590 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/testing-postgresql/default.nix b/pkgs/development/python-modules/testing-postgresql/default.nix index 1b16def315807..17120a5deb417 100644 --- a/pkgs/development/python-modules/testing-postgresql/default.nix +++ b/pkgs/development/python-modules/testing-postgresql/default.nix @@ -61,11 +61,11 @@ buildPythonPackage rec { # https://github.com/NixOS/nixpkgs/pull/74716#issuecomment-598546916 __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Use temporary postgresql instance in testing"; homepage = "https://github.com/tk0miya/testing.postgresql"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ jluttine ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/testpath/default.nix b/pkgs/development/python-modules/testpath/default.nix index 913226ddc78b0..1299343270e39 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 ec6a5d6624254..d30375552f04f 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/testresources/default.nix b/pkgs/development/python-modules/testresources/default.nix index 7d4710c743882..1b3c499c49dea 100644 --- a/pkgs/development/python-modules/testresources/default.nix +++ b/pkgs/development/python-modules/testresources/default.nix @@ -34,9 +34,9 @@ buildPythonPackage rec { unittestCheckHook ]; - meta = with lib; { + meta = { description = "Pyunit extension for managing expensive test resources"; homepage = "https://launchpad.net/testresources"; - 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 f46f4e2f2c1ac..81c48bafe257d 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 14f1c9cfbd2e9..c09b2f02fb442 100644 --- a/pkgs/development/python-modules/texsoup/default.nix +++ b/pkgs/development/python-modules/texsoup/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { --replace "--cov=TexSoup" "" ''; - 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 dd72689635ee6..cb8cd5bb8f3d0 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 31e94229e7712..494e3119c7b50 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/textfsm/default.nix b/pkgs/development/python-modules/textfsm/default.nix index 89ba02bf4f258..e8338b7ed6752 100644 --- a/pkgs/development/python-modules/textfsm/default.nix +++ b/pkgs/development/python-modules/textfsm/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + meta = { 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/textparser/default.nix b/pkgs/development/python-modules/textparser/default.nix index f0f2e0b16a3d9..0005a0b7e921c 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/textual-slider/default.nix b/pkgs/development/python-modules/textual-slider/default.nix index 1a6734a314620..7239920a39b29 100644 --- a/pkgs/development/python-modules/textual-slider/default.nix +++ b/pkgs/development/python-modules/textual-slider/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { 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/textwrap3/default.nix b/pkgs/development/python-modules/textwrap3/default.nix index 1cf7dcb376ead..d03aa915059de 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/tf2onnx/default.nix b/pkgs/development/python-modules/tf2onnx/default.nix index cd904628903a9..b1974657e1f7e 100644 --- a/pkgs/development/python-modules/tf2onnx/default.nix +++ b/pkgs/development/python-modules/tf2onnx/default.nix @@ -72,11 +72,11 @@ buildPythonPackage rec { disabledTests = [ "test_profile_conversion_time" ]; - meta = with lib; { + meta = { description = "Convert TensorFlow, Keras, Tensorflow.js and Tflite models to ONNX"; homepage = "https://github.com/onnx/tensorflow-onnx"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; # Duplicated `protobuf` in the derivation: # - version 4.24.4 (from onnx), the default version of protobuf in nixpkgs # - version 4.21.12 (from tensorflow), pinned as such because tensorflow is outdated and does diff --git a/pkgs/development/python-modules/tflearn/default.nix b/pkgs/development/python-modules/tflearn/default.nix index 3bd15b7fba5e1..36e2953e0a84d 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 7e64bdf019902..b11c09135942e 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/thespian/default.nix b/pkgs/development/python-modules/thespian/default.nix index 67a1906a3c032..2345768ead182 100644 --- a/pkgs/development/python-modules/thespian/default.nix +++ b/pkgs/development/python-modules/thespian/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { # CI configuration and do not need to be duplicated here. doCheck = false; - meta = with lib; { + meta = { description = "Python Actor concurrency library"; homepage = "http://thespianpy.com/"; - license = licenses.mit; - maintainers = [ maintainers.kquick ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.kquick ]; }; } diff --git a/pkgs/development/python-modules/thorlabspm100/default.nix b/pkgs/development/python-modules/thorlabspm100/default.nix index c88dab853f579..84c6b88e259d1 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 bdc80d921c048..d196d3274fe2c 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 d3e0499b03546..e14ee1d3ba3b7 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 d70d027dd91ba..53eac9f3bbaf4 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 e98cdd6fdd2f0..9083e7f29a6c8 100644 --- a/pkgs/development/python-modules/threat9-test-bed/default.nix +++ b/pkgs/development/python-modules/threat9-test-bed/default.nix @@ -51,11 +51,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 e20e1aea09acb..9412b58a08017 100644 --- a/pkgs/development/python-modules/three-merge/default.nix +++ b/pkgs/development/python-modules/three-merge/default.nix @@ -21,10 +21,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 e3301d3ab4ccb..16d4e6715db65 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/throttler/default.nix b/pkgs/development/python-modules/throttler/default.nix index 42e006f77b45f..0e5033ace70c9 100644 --- a/pkgs/development/python-modules/throttler/default.nix +++ b/pkgs/development/python-modules/throttler/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "tests/" ]; - meta = with lib; { + meta = { description = "Zero-dependency Python package for easy throttling with asyncio support"; homepage = "https://github.com/uburuntu/throttler"; - license = licenses.mit; - maintainers = with maintainers; [ renatoGarcia ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ renatoGarcia ]; }; } diff --git a/pkgs/development/python-modules/tika/default.nix b/pkgs/development/python-modules/tika/default.nix index 8d2148523f814..4c18d001087f8 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 7999fe4a66ed7..f767a1f287f76 100644 --- a/pkgs/development/python-modules/tiktoken/default.nix +++ b/pkgs/development/python-modules/tiktoken/default.nix @@ -67,10 +67,10 @@ buildPythonPackage { pythonImportsCheck = [ "tiktoken" ]; - meta = with lib; { + meta = { description = "tiktoken is a 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/tikzplotlib/default.nix b/pkgs/development/python-modules/tikzplotlib/default.nix index e09c735f4c1f6..cbeb2e0f31a96 100644 --- a/pkgs/development/python-modules/tikzplotlib/default.nix +++ b/pkgs/development/python-modules/tikzplotlib/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pandas ]; - meta = with lib; { + meta = { description = "Save matplotlib figures as TikZ/PGFplots for smooth integration into LaTeX"; homepage = "https://github.com/nschloe/tikzplotlib"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/tiledb/default.nix b/pkgs/development/python-modules/tiledb/default.nix index 29d8bb27c3f86..fa2017081ed5a 100644 --- a/pkgs/development/python-modules/tiledb/default.nix +++ b/pkgs/development/python-modules/tiledb/default.nix @@ -73,10 +73,10 @@ buildPythonPackage rec { ''; pythonImportsCheck = [ "tiledb" ]; - meta = with lib; { + meta = { description = "Python interface to the TileDB storage manager"; homepage = "https://github.com/TileDB-Inc/TileDB-Py"; - license = licenses.mit; + license = lib.licenses.mit; # tiledb/core.cc:556:30: error: ‘struct std::array’ has no member named ‘second’ broken = true; }; diff --git a/pkgs/development/python-modules/tiler/default.nix b/pkgs/development/python-modules/tiler/default.nix index 40766f6436c6d..0ce7eb97af7fa 100644 --- a/pkgs/development/python-modules/tiler/default.nix +++ b/pkgs/development/python-modules/tiler/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "tiler" ]; - meta = with lib; { + meta = { description = "N-dimensional NumPy array tiling and merging with overlapping, padding and tapering"; homepage = "https://the-lay.github.io/tiler/"; - license = licenses.mit; - maintainers = with maintainers; [ atila ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ atila ]; }; } diff --git a/pkgs/development/python-modules/tilestache/default.nix b/pkgs/development/python-modules/tilestache/default.nix index 23fe0e26ea7cb..e1e4748ca10a5 100644 --- a/pkgs/development/python-modules/tilestache/default.nix +++ b/pkgs/development/python-modules/tilestache/default.nix @@ -32,9 +32,9 @@ buildPythonPackage rec { werkzeug ]; - meta = with lib; { + meta = { description = "Tile server for rendered geographic data"; homepage = "http://tilestache.org"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/timeago/default.nix b/pkgs/development/python-modules/timeago/default.nix index a1bd21cf16ae5..0a75abcf0e398 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 8099f646606cb..a859a6e790e80 100644 --- a/pkgs/development/python-modules/timecop/default.nix +++ b/pkgs/development/python-modules/timecop/default.nix @@ -30,10 +30,10 @@ 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; - maintainers = with maintainers; [ zakame ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ zakame ]; }; } diff --git a/pkgs/development/python-modules/timelib/default.nix b/pkgs/development/python-modules/timelib/default.nix index 15e7251dd6a01..7f887f245ead4 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 ea7750dfc97e6..272001642a893 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 d1ac79f37995f..a0a59ba5923ad 100644 --- a/pkgs/development/python-modules/timeslot/default.nix +++ b/pkgs/development/python-modules/timeslot/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { 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/timing-asgi/default.nix b/pkgs/development/python-modules/timing-asgi/default.nix index e08bea2534fa9..dc5610f6d4c7e 100644 --- a/pkgs/development/python-modules/timing-asgi/default.nix +++ b/pkgs/development/python-modules/timing-asgi/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "ASGI middleware to emit timing metrics with something like statsd"; homepage = "https://pypi.org/project/timing-asgi"; - license = licenses.mit; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/timy/default.nix b/pkgs/development/python-modules/timy/default.nix index 678623fabd0e1..9b01510b86c7e 100644 --- a/pkgs/development/python-modules/timy/default.nix +++ b/pkgs/development/python-modules/timy/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { 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/tinycss2/default.nix b/pkgs/development/python-modules/tinycss2/default.nix index 2631f4d0149e3..16dcc2574ce3c 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/tinysegmenter/default.nix b/pkgs/development/python-modules/tinysegmenter/default.nix index 788332d379e8c..e52da624ab0cc 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/titlecase/default.nix b/pkgs/development/python-modules/titlecase/default.nix index 4fd97242ccd3f..d39021cebba07 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/tlds/default.nix b/pkgs/development/python-modules/tlds/default.nix index dd6b0ed1c8253..e46bed2a5d5db 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-parser/default.nix b/pkgs/development/python-modules/tls-parser/default.nix index 9c5cc5724f196..0c10a1eb28bd8 100644 --- a/pkgs/development/python-modules/tls-parser/default.nix +++ b/pkgs/development/python-modules/tls-parser/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tls_parser" ]; - meta = with lib; { + meta = { description = "Small library to parse TLS records"; homepage = "https://github.com/nabla-c0d3/tls_parser"; - 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/tlslite/default.nix b/pkgs/development/python-modules/tlslite/default.nix index 069377735f6b9..cecb44c4aa788 100644 --- a/pkgs/development/python-modules/tlslite/default.nix +++ b/pkgs/development/python-modules/tlslite/default.nix @@ -13,9 +13,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 4e3045ddff503..0a42cbed16ff5 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 9c97153d9d22d..877f6b91653b0 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/default.nix b/pkgs/development/python-modules/todoist/default.nix index 9a7eec1354f61..de18f5288e569 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/tokenize-rt/default.nix b/pkgs/development/python-modules/tokenize-rt/default.nix index 1634f76813630..c5dfcfd393490 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 59a19b81a3f92..44ea387e6a386 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 6aa7f9bd31134..c1467b4c01ec9 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/toml/default.nix b/pkgs/development/python-modules/toml/default.nix index 883bfeaeed6db..3c1483d936f41 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 3741f4e2881e9..bd2e957cc126a 100644 --- a/pkgs/development/python-modules/tomli-w/default.nix +++ b/pkgs/development/python-modules/tomli-w/default.nix @@ -21,10 +21,10 @@ 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"; - 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 20ae66d60fcd4..157d26d80aa0b 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/toposort/default.nix b/pkgs/development/python-modules/toposort/default.nix index 12644de66f1e4..b994894d42aba 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/torchdiffeq/default.nix b/pkgs/development/python-modules/torchdiffeq/default.nix index fed9c71ce5465..c8aebe73144e8 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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/torchinfo/default.nix b/pkgs/development/python-modules/torchinfo/default.nix index f86da623e86c5..ad5fb1cdfa1d3 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/torchio/default.nix b/pkgs/development/python-modules/torchio/default.nix index 7f611e839326c..5c58327a4748f 100644 --- a/pkgs/development/python-modules/torchio/default.nix +++ b/pkgs/development/python-modules/torchio/default.nix @@ -63,10 +63,10 @@ buildPythonPackage rec { "torchio.data" ]; - meta = with lib; { + meta = { description = "Medical imaging toolkit for deep learning"; homepage = "https://torchio.readthedocs.io"; - license = licenses.asl20; - maintainers = [ maintainers.bcdarwin ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/torchlibrosa/default.nix b/pkgs/development/python-modules/torchlibrosa/default.nix index 8587f6382b237..3c20af7eeeec9 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/tornado/default.nix b/pkgs/development/python-modules/tornado/default.nix index a4cbb09bf5531..24bd301f969c3 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 d6f257dfa9ad3..31b702fc16165 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 18fc52c24aa66..adfaa1b590161 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/tqdm/default.nix b/pkgs/development/python-modules/tqdm/default.nix index 7da990f0b8def..f343c9eba7955 100644 --- a/pkgs/development/python-modules/tqdm/default.nix +++ b/pkgs/development/python-modules/tqdm/default.nix @@ -56,11 +56,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 a0b3eef17ab51..b3749f3035d48 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/tracing/default.nix b/pkgs/development/python-modules/tracing/default.nix index 1740e6d7bad33..5628f0cfd5a63 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/trampoline/default.nix b/pkgs/development/python-modules/trampoline/default.nix index 6cc163885ccc7..1f95968f0fb5f 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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/transforms3d/default.nix b/pkgs/development/python-modules/transforms3d/default.nix index 4550649e63925..e504830cf8aa7 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/translate-toolkit/default.nix b/pkgs/development/python-modules/translate-toolkit/default.nix index b309c81130c12..b49bde1e741af 100644 --- a/pkgs/development/python-modules/translate-toolkit/default.nix +++ b/pkgs/development/python-modules/translate-toolkit/default.nix @@ -63,10 +63,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "translate" ]; - meta = with lib; { + meta = { description = "Useful localization tools for building localization & translation systems"; homepage = "https://toolkit.translatehouse.org/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ erictapen ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ erictapen ]; }; } diff --git a/pkgs/development/python-modules/translatehtml/default.nix b/pkgs/development/python-modules/translatehtml/default.nix index da93e4d8484bb..3ae69fd354e17 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 b4857a4893b9f..3a37f8f64c84f 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/translationstring/default.nix b/pkgs/development/python-modules/translationstring/default.nix index 1110c6c58e910..879ab7606729d 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/translitcodec/default.nix b/pkgs/development/python-modules/translitcodec/default.nix index 2b77a2fceb519..f1ec3ce17f09b 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/tree-sitter-html/default.nix b/pkgs/development/python-modules/tree-sitter-html/default.nix index 12ca1b6c087dd..869144f1e6fc5 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 07a5d35ef7517..d97957417441d 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 92124bfd2020f..460fde7ee00bd 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 9636b3dc95354..4231315ce1f9a 100644 --- a/pkgs/development/python-modules/tree-sitter-languages/default.nix +++ b/pkgs/development/python-modules/tree-sitter-languages/default.nix @@ -53,12 +53,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "tree_sitter_languages" ]; - meta = with lib; { + meta = { 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"; + broken = lib.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 8e801284b285f..7996187181e63 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 8820bd0680b41..652d3b5a6e0ff 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/treelog/default.nix b/pkgs/development/python-modules/treelog/default.nix index 7739b8253bb42..f99de27d6748a 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/treeo/default.nix b/pkgs/development/python-modules/treeo/default.nix index 694ac20116db2..d647d723c8655 100644 --- a/pkgs/development/python-modules/treeo/default.nix +++ b/pkgs/development/python-modules/treeo/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { nativeCheckInputs = [ jaxlib ]; pythonImportsCheck = [ "treeo" ]; - meta = with lib; { + meta = { description = "Small library for creating and manipulating custom JAX Pytree classes"; homepage = "https://github.com/cgarciae/treeo"; - license = licenses.mit; - maintainers = with maintainers; [ ndl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ndl ]; # obsolete as of 2023-02-27 and not updated for more than a year as of 2023-08 broken = true; }; diff --git a/pkgs/development/python-modules/treex/default.nix b/pkgs/development/python-modules/treex/default.nix index 6f0de8163934d..a7cdfaa5d463c 100644 --- a/pkgs/development/python-modules/treex/default.nix +++ b/pkgs/development/python-modules/treex/default.nix @@ -68,10 +68,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "treex" ]; - meta = with lib; { + meta = { description = "Pytree Module system for Deep Learning in JAX"; homepage = "https://github.com/cgarciae/treex"; - license = licenses.mit; - maintainers = with maintainers; [ ndl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ndl ]; }; } diff --git a/pkgs/development/python-modules/treq/default.nix b/pkgs/development/python-modules/treq/default.nix index aa313179af97f..b74507980e652 100644 --- a/pkgs/development/python-modules/treq/default.nix +++ b/pkgs/development/python-modules/treq/default.nix @@ -53,10 +53,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 5f4093965fd00..0bbbab1ac6e64 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/tritonclient/default.nix b/pkgs/development/python-modules/tritonclient/default.nix index 47c87866aad12..10ce3c4661262 100644 --- a/pkgs/development/python-modules/tritonclient/default.nix +++ b/pkgs/development/python-modules/tritonclient/default.nix @@ -53,11 +53,11 @@ buildPythonPackage { }; }; - 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/trueskill/default.nix b/pkgs/development/python-modules/trueskill/default.nix index 8013f252ac9e7..51d8baadf93dd 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 aa11cc3425501..8cf30ff9580c6 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 dc7ff78166819..41be4a2c1629a 100644 --- a/pkgs/development/python-modules/trustme/default.nix +++ b/pkgs/development/python-modules/trustme/default.nix @@ -41,14 +41,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; [ catern ]; + maintainers = with lib.maintainers; [ catern ]; }; } diff --git a/pkgs/development/python-modules/ttach/default.nix b/pkgs/development/python-modules/ttach/default.nix index d8430b7922a36..c30a4757d7c15 100644 --- a/pkgs/development/python-modules/ttach/default.nix +++ b/pkgs/development/python-modules/ttach/default.nix @@ -26,10 +26,10 @@ 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 ]; - maintainers = with maintainers; [ cfhammill ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ cfhammill ]; }; } diff --git a/pkgs/development/python-modules/ttstokenizer/default.nix b/pkgs/development/python-modules/ttstokenizer/default.nix index a920d85e88cdb..621d1dc4a8179 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 df51ef91265ae..18ae25a8be436 100644 --- a/pkgs/development/python-modules/tubes/default.nix +++ b/pkgs/development/python-modules/tubes/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { 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/tunigo/default.nix b/pkgs/development/python-modules/tunigo/default.nix index 034aed0251b31..f7aec298ffb94 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 8d9af7740283d..000fb654f2cd6 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 d24bc3fecedee..8117f65b1fafc 100644 --- a/pkgs/development/python-modules/tuya-device-sharing-sdk/default.nix +++ b/pkgs/development/python-modules/tuya-device-sharing-sdk/default.nix @@ -34,10 +34,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 cf8c96e1b1439..7ba2dc3f29592 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 eb56f96547d6f..efb00849bcfda 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 31877a0e58d90..fc9675c2d1f13 100644 --- a/pkgs/development/python-modules/tvdb-api/default.nix +++ b/pkgs/development/python-modules/tvdb-api/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { # 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/tweedledum/default.nix b/pkgs/development/python-modules/tweedledum/default.nix index bb7f83599ecdb..c676b9c1ddc05 100644 --- a/pkgs/development/python-modules/tweedledum/default.nix +++ b/pkgs/development/python-modules/tweedledum/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pytestFlagsArray = [ "python/test" ]; - meta = with lib; { + meta = { description = "Library for synthesizing and manipulating quantum circuits"; homepage = "https://github.com/boschmitt/tweedledum"; - license = licenses.mit; - maintainers = with maintainers; [ drewrisinger ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/twiggy/default.nix b/pkgs/development/python-modules/twiggy/default.nix index 1c1759aeb8152..203485032b876 100644 --- a/pkgs/development/python-modules/twiggy/default.nix +++ b/pkgs/development/python-modules/twiggy/default.nix @@ -18,11 +18,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/twinkly-client/default.nix b/pkgs/development/python-modules/twinkly-client/default.nix index 4f348b29a0ee8..7d66ecfc2907a 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/twitch-python/default.nix b/pkgs/development/python-modules/twitch-python/default.nix index 0f5cfad85ac4f..55559085f2f33 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 545b7784b9a01..1a99c1db5c34f 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/txamqp/default.nix b/pkgs/development/python-modules/txamqp/default.nix index f9dacc571c58e..29177008af2eb 100644 --- a/pkgs/development/python-modules/txamqp/default.nix +++ b/pkgs/development/python-modules/txamqp/default.nix @@ -17,10 +17,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 33ed4a66a68e4..83f1809a0ec3e 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 aa30df3c3c1cd..433b9cdbd58f6 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 27443da459bb6..80a5d3b7fe26d 100644 --- a/pkgs/development/python-modules/txredisapi/default.nix +++ b/pkgs/development/python-modules/txredisapi/default.nix @@ -33,10 +33,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 62b4b5c4ef0d6..9d9c20422f034 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/txzmq/default.nix b/pkgs/development/python-modules/txzmq/default.nix index 6c521d2f69f32..93bee7de6905a 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/typechecks/default.nix b/pkgs/development/python-modules/typechecks/default.nix index 4d7da1759f311..bd2fe24fed7bf 100644 --- a/pkgs/development/python-modules/typechecks/default.nix +++ b/pkgs/development/python-modules/typechecks/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { 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/libmagic.nix b/pkgs/development/python-modules/typecode/libmagic.nix index 7d1add320b4cb..ec5eb7a967feb 100644 --- a/pkgs/development/python-modules/typecode/libmagic.nix +++ b/pkgs/development/python-modules/typecode/libmagic.nix @@ -37,11 +37,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/nexB/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-ast/default.nix b/pkgs/development/python-modules/typed-ast/default.nix index 9cf7744433028..14578e0ea8a86 100644 --- a/pkgs/development/python-modules/typed-ast/default.nix +++ b/pkgs/development/python-modules/typed-ast/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { "typed_ast.conversions" ]; - meta = with lib; { + meta = { description = "Python AST modules with type comment support"; homepage = "https://github.com/python/typed_ast"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/typer-shell/default.nix b/pkgs/development/python-modules/typer-shell/default.nix index 61052dcd5eb77..cae8a1e826a35 100644 --- a/pkgs/development/python-modules/typer-shell/default.nix +++ b/pkgs/development/python-modules/typer-shell/default.nix @@ -47,10 +47,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/default.nix b/pkgs/development/python-modules/types-aiobotocore/default.nix index 7413b694bb826..814443ff33a1a 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-beautifulsoup4/default.nix b/pkgs/development/python-modules/types-beautifulsoup4/default.nix index 17cc87e26b01f..0e3efcee9a1be 100644 --- a/pkgs/development/python-modules/types-beautifulsoup4/default.nix +++ b/pkgs/development/python-modules/types-beautifulsoup4/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bs4-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for beautifulsoup4"; homepage = "https://pypi.org/project/types-beautifulsoup4/"; - 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-click/default.nix b/pkgs/development/python-modules/types-click/default.nix index 29f2da7b2303e..7ad9e8bc0ba26 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 c14b2e4ded7a0..758ed3fc055dc 100644 --- a/pkgs/development/python-modules/types-colorama/default.nix +++ b/pkgs/development/python-modules/types-colorama/default.nix @@ -20,10 +20,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 5823b56f66372..91ed78aa794bf 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 fde52c82ab8f8..e5129c0c89076 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 88874e3be5656..19f5c6148b80e 100644 --- a/pkgs/development/python-modules/types-decorator/default.nix +++ b/pkgs/development/python-modules/types-decorator/default.nix @@ -22,10 +22,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 3d26a47ee404a..8ca4d882cd763 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 = 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-docopt/default.nix b/pkgs/development/python-modules/types-docopt/default.nix index 3825b907c0cc1..ac1ae5695dacd 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 8d60dc8a1f77e..462eb9c8093ba 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-enum34/default.nix b/pkgs/development/python-modules/types-enum34/default.nix index ace209f28c86a..a419b065c3be2 100644 --- a/pkgs/development/python-modules/types-enum34/default.nix +++ b/pkgs/development/python-modules/types-enum34/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "enum-python2-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for enum34"; 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-freezegun/default.nix b/pkgs/development/python-modules/types-freezegun/default.nix index 26456f53f6d74..a87687e39bd30 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 7478d77dc8a79..69222b47b53c6 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 e7916e63218c8..b655ddd2ebcd7 100644 --- a/pkgs/development/python-modules/types-html5lib/default.nix +++ b/pkgs/development/python-modules/types-html5lib/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "html5lib-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for html5lib"; homepage = "https://pypi.org/project/types-html5lib/"; - 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-ipaddress/default.nix b/pkgs/development/python-modules/types-ipaddress/default.nix index 216195c6e1ce7..52bce19e64b03 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-markdown/default.nix b/pkgs/development/python-modules/types-markdown/default.nix index fb3cea743ad95..cf1657fc39ec8 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 37b313bc59e95..e4779fac7ac80 100644 --- a/pkgs/development/python-modules/types-mock/default.nix +++ b/pkgs/development/python-modules/types-mock/default.nix @@ -20,10 +20,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 fadbfb610b190..2a637cce55d89 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 885cfe353e244..5527741caa2c8 100644 --- a/pkgs/development/python-modules/types-protobuf/default.nix +++ b/pkgs/development/python-modules/types-protobuf/default.nix @@ -22,10 +22,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 e850eb837c5b0..fd2d1e03cb8c6 100644 --- a/pkgs/development/python-modules/types-psutil/default.nix +++ b/pkgs/development/python-modules/types-psutil/default.nix @@ -19,10 +19,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 19234ab8ae0cd..a67775298ee47 100644 --- a/pkgs/development/python-modules/types-psycopg2/default.nix +++ b/pkgs/development/python-modules/types-psycopg2/default.nix @@ -21,10 +21,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 1df09d2fb578f..36f9352d9ec39 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 43dda7067fe7c..6f9e962864287 100644 --- a/pkgs/development/python-modules/types-python-dateutil/default.nix +++ b/pkgs/development/python-modules/types-python-dateutil/default.nix @@ -22,10 +22,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 44e9fcaabd3c5..54d9ac1ab41ef 100644 --- a/pkgs/development/python-modules/types-pytz/default.nix +++ b/pkgs/development/python-modules/types-pytz/default.nix @@ -22,10 +22,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 31fe7ac1de197..48bf414652402 100644 --- a/pkgs/development/python-modules/types-pyyaml/default.nix +++ b/pkgs/development/python-modules/types-pyyaml/default.nix @@ -20,10 +20,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 1b832700620b4..efcf8586e0e1d 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 124bcfe8874ff..404cf7fa000ff 100644 --- a/pkgs/development/python-modules/types-requests/default.nix +++ b/pkgs/development/python-modules/types-requests/default.nix @@ -29,10 +29,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 04eed20ab8e54..02964fc04ce97 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 e18bd2e288e7e..71b473338f8a9 100644 --- a/pkgs/development/python-modules/types-s3transfer/default.nix +++ b/pkgs/development/python-modules/types-s3transfer/default.nix @@ -26,10 +26,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 d5b91eb172036..998f10288c2a2 100644 --- a/pkgs/development/python-modules/types-setuptools/default.nix +++ b/pkgs/development/python-modules/types-setuptools/default.nix @@ -22,10 +22,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 570581e05ac04..90b2005198caa 100644 --- a/pkgs/development/python-modules/types-tabulate/default.nix +++ b/pkgs/development/python-modules/types-tabulate/default.nix @@ -22,10 +22,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 040177b5e68fd..cdbfe471ff9e9 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-tqdm/default.nix b/pkgs/development/python-modules/types-tqdm/default.nix index ff3f5c189a0de..8828c678328b4 100644 --- a/pkgs/development/python-modules/types-tqdm/default.nix +++ b/pkgs/development/python-modules/types-tqdm/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { # This package does not have tests. doCheck = false; - meta = with lib; { + meta = { description = "Typing stubs for tqdm"; homepage = "https://pypi.org/project/types-tqdm/"; - license = licenses.asl20; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/types-typed-ast/default.nix b/pkgs/development/python-modules/types-typed-ast/default.nix index 13713c669519c..c875b889c3051 100644 --- a/pkgs/development/python-modules/types-typed-ast/default.nix +++ b/pkgs/development/python-modules/types-typed-ast/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "typed_ast-stubs" ]; - meta = with lib; { + meta = { description = "Typing stubs for typed-ast"; homepage = "https://github.com/python/typeshed"; - license = licenses.asl20; - maintainers = with maintainers; [ veehaitch ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ veehaitch ]; }; } diff --git a/pkgs/development/python-modules/types-ujson/default.nix b/pkgs/development/python-modules/types-ujson/default.nix index cbd3c4c7c08bb..91b7f8cfb88f1 100644 --- a/pkgs/development/python-modules/types-ujson/default.nix +++ b/pkgs/development/python-modules/types-ujson/default.nix @@ -22,10 +22,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 e3c91f48197fd..4455be29ee797 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 adb56fd0ad826..fbf720ebcffc3 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/typesystem/default.nix b/pkgs/development/python-modules/typesystem/default.nix index 41a4b5147fa9a..9190267819ca9 100644 --- a/pkgs/development/python-modules/typesystem/default.nix +++ b/pkgs/development/python-modules/typesystem/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "typesystem" ]; - meta = with lib; { + meta = { description = "Type system library for Python"; homepage = "https://github.com/encode/typesystem"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/typing-inspect/default.nix b/pkgs/development/python-modules/typing-inspect/default.nix index ce03e47d7614e..5d5e70f731087 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/typogrify/default.nix b/pkgs/development/python-modules/typogrify/default.nix index a2a17791eaa93..923872206dd13 100644 --- a/pkgs/development/python-modules/typogrify/default.nix +++ b/pkgs/development/python-modules/typogrify/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "typogrify.filters" ]; - meta = with lib; { + meta = { description = "Filters to enhance web typography, including support for Django & Jinja templates"; homepage = "https://github.com/mintchaos/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 7ef57e00a0e80..3c4d3255f8fef 100644 --- a/pkgs/development/python-modules/tzdata/default.nix +++ b/pkgs/development/python-modules/tzdata/default.nix @@ -28,10 +28,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/uamqp/default.nix b/pkgs/development/python-modules/uamqp/default.nix index 46decc51d9312..9f599d0335793 100644 --- a/pkgs/development/python-modules/uamqp/default.nix +++ b/pkgs/development/python-modules/uamqp/default.nix @@ -85,10 +85,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "uamqp" ]; - meta = with lib; { + meta = { description = "AMQP 1.0 client library for Python"; homepage = "https://github.com/Azure/azure-uamqp-python"; - license = licenses.mit; - maintainers = with maintainers; [ maxwilson ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/uarray/default.nix b/pkgs/development/python-modules/uarray/default.nix index aff3471aa9328..c509031a48dd3 100644 --- a/pkgs/development/python-modules/uarray/default.nix +++ b/pkgs/development/python-modules/uarray/default.nix @@ -64,10 +64,10 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Universal array library"; homepage = "https://github.com/Quansight-Labs/uarray"; - license = licenses.bsd0; + license = lib.licenses.bsd0; maintainers = [ lib.maintainers.pbsds ]; }; } diff --git a/pkgs/development/python-modules/uc-micro-py/default.nix b/pkgs/development/python-modules/uc-micro-py/default.nix index 40f6db04b0a0e..80e8cb491bc8d 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/udatetime/default.nix b/pkgs/development/python-modules/udatetime/default.nix index 41b97a8115028..4a75e15700297 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; - maintainers = with maintainers; [ globin ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ globin ]; }; } diff --git a/pkgs/development/python-modules/ueagle/default.nix b/pkgs/development/python-modules/ueagle/default.nix index 5edd077416ef6..409b344c5fdfb 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/ueberzug/default.nix b/pkgs/development/python-modules/ueberzug/default.nix index 633e2d9d7db27..8694b9d06742e 100644 --- a/pkgs/development/python-modules/ueberzug/default.nix +++ b/pkgs/development/python-modules/ueberzug/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ueberzug" ]; - meta = with lib; { + meta = { homepage = "https://github.com/seebye/ueberzug"; description = "Alternative for w3mimgdisplay"; mainProgram = "ueberzug"; - license = licenses.gpl3; - maintainers = with maintainers; [ Br1ght0ne ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ Br1ght0ne ]; }; } 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 7eca9f144b1d0..19f2a31b97331 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 201413ed9b9de..82f3daf5cf5ff 100644 --- a/pkgs/development/python-modules/ufolib2/default.nix +++ b/pkgs/development/python-modules/ufolib2/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ufoLib2" ]; - meta = with lib; { + meta = { 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 714a5cac45f3d..5993296e9e375 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 48637f4088a0b..b368e9c0cc0ab 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 123ba62afdfd1..edffec16f8bf2 100644 --- a/pkgs/development/python-modules/ufoprocessor/default.nix +++ b/pkgs/development/python-modules/ufoprocessor/default.nix @@ -44,10 +44,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 06144b1359441..bab9755220b65 100644 --- a/pkgs/development/python-modules/uharfbuzz/default.nix +++ b/pkgs/development/python-modules/uharfbuzz/default.nix @@ -45,10 +45,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 c84408b339ed2..f619c7541d309 100644 --- a/pkgs/development/python-modules/uhi/default.nix +++ b/pkgs/development/python-modules/uhi/default.nix @@ -27,10 +27,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/ujson/default.nix b/pkgs/development/python-modules/ujson/default.nix index 129f731b3caee..52fab36e204b9 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 136303b02b72e..011bf43ca662e 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 611e21ed8ada2..7a9cddd044a20 100644 --- a/pkgs/development/python-modules/ukpostcodeparser/default.nix +++ b/pkgs/development/python-modules/ukpostcodeparser/default.nix @@ -16,11 +16,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/ultraheat-api/default.nix b/pkgs/development/python-modules/ultraheat-api/default.nix index 9b345f073379b..c7614dcdbd628 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 407edb28ff88d..dc887510576bc 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 b1a33f1a1d9b3..248b5c4bf8454 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/uncertainties/default.nix b/pkgs/development/python-modules/uncertainties/default.nix index e7bfba65d81d6..e3017d6b969b6 100644 --- a/pkgs/development/python-modules/uncertainties/default.nix +++ b/pkgs/development/python-modules/uncertainties/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "uncertainties" ]; - meta = with lib; { + meta = { homepage = "https://pythonhosted.org/uncertainties/"; description = "Transparent calculations with uncertainties on the quantities involved (aka error propagation)"; - maintainers = with maintainers; [ rnhmjoj ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ rnhmjoj ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/undefined/default.nix b/pkgs/development/python-modules/undefined/default.nix index 59cf5c2a84792..e8f0f58601476 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 = "Ever needed a global object that act as None but not quite?"; 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 bcb349bfe36db..a5770ffac2efe 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 = with lib.maintainers; [ paveloom ]; }; } diff --git a/pkgs/development/python-modules/unicode-slugify/default.nix b/pkgs/development/python-modules/unicode-slugify/default.nix index 32e7a66db70aa..cc9981233145d 100644 --- a/pkgs/development/python-modules/unicode-slugify/default.nix +++ b/pkgs/development/python-modules/unicode-slugify/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "slugify/tests.py" ]; - meta = with lib; { + meta = { description = "Generates unicode slugs"; homepage = "https://pypi.org/project/unicode-slugify/"; - license = licenses.bsd3; - maintainers = with maintainers; [ mmai ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mmai ]; }; } diff --git a/pkgs/development/python-modules/unicodecsv/default.nix b/pkgs/development/python-modules/unicodecsv/default.nix index 1355a7bab4c78..e5e6578e607ab 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/unicorn/default.nix b/pkgs/development/python-modules/unicorn/default.nix index b1b630c237daf..449b8629fb893 100644 --- a/pkgs/development/python-modules/unicorn/default.nix +++ b/pkgs/development/python-modules/unicorn/default.nix @@ -46,11 +46,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/unicurses/default.nix b/pkgs/development/python-modules/unicurses/default.nix index bdb2a33f81096..0e1a767d42d6c 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/unidic-lite/default.nix b/pkgs/development/python-modules/unidic-lite/default.nix index 3152b87253131..936248508fb21 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; - maintainers = teams.tts.members; + license = lib.licenses.mit; + maintainers = lib.teams.tts.members; }; } diff --git a/pkgs/development/python-modules/unidic/default.nix b/pkgs/development/python-modules/unidic/default.nix index 02f6d4d6bd80f..7204b2ddbae79 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/unifi/default.nix b/pkgs/development/python-modules/unifi/default.nix index daebd11ee3c0a..ee89cbd9f8968 100644 --- a/pkgs/development/python-modules/unifi/default.nix +++ b/pkgs/development/python-modules/unifi/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # upstream has no tests doCheck = false; - meta = with lib; { + meta = { description = "API towards the Ubiquity Networks UniFi controller"; homepage = "https://pypi.python.org/pypi/unifi/"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/unifiled/default.nix b/pkgs/development/python-modules/unifiled/default.nix index 0c2ec7dd96459..9e531e2ad6860 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 95393e5d0c6dc..daad747a52d9e 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/unittest-data-provider/default.nix b/pkgs/development/python-modules/unittest-data-provider/default.nix index a9deef7e2eab3..8a0670fa6e2c7 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/unix-ar/default.nix b/pkgs/development/python-modules/unix-ar/default.nix index 04155e74221e7..b4875f96294f8 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 786392e556db6..f45ffc6078a3f 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 b539d805f66ef..2eea89693ca8e 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/untangle/default.nix b/pkgs/development/python-modules/untangle/default.nix index 59b8ba763c8e3..e28e8c57110a0 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 e4f6eea843e1c..be7c41eed5991 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 3e8fc7fc5f2f6..4881d66114ba2 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 616afc78bcd4b..6cc6ee4813182 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/update-checker/default.nix b/pkgs/development/python-modules/update-checker/default.nix index 848028378a452..54dc1c5523573 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 1ad99b7ff4bd4..65590975f1887 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 d6f92a0e40619..834fcab35d413 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 dd8e8cbea6348..643167d0a522f 100644 --- a/pkgs/development/python-modules/uplc/default.nix +++ b/pkgs/development/python-modules/uplc/default.nix @@ -39,11 +39,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "uplc" ]; - meta = with lib; { + meta = { description = "Python implementation of untyped plutus language core"; homepage = "https://github.com/OpShin/uplc"; - license = licenses.mit; - maintainers = with maintainers; [ t4ccer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ t4ccer ]; mainProgram = "opshin"; }; } diff --git a/pkgs/development/python-modules/upnpy/default.nix b/pkgs/development/python-modules/upnpy/default.nix index b6677afbd2b2f..0d71bc6b457fc 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-monitor/default.nix b/pkgs/development/python-modules/uptime-kuma-monitor/default.nix index dcc901125d661..f7a543c623332 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 d20bd4dc5506c..afe5a5128843f 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/uranium/default.nix b/pkgs/development/python-modules/uranium/default.nix index 3084b3018a0d0..116093c4bef51 100644 --- a/pkgs/development/python-modules/uranium/default.nix +++ b/pkgs/development/python-modules/uranium/default.nix @@ -54,12 +54,12 @@ 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; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar gebner ]; diff --git a/pkgs/development/python-modules/uri-template/default.nix b/pkgs/development/python-modules/uri-template/default.nix index c96b60c1baf22..8fcb7b5c0bc7e 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/url-normalize/default.nix b/pkgs/development/python-modules/url-normalize/default.nix index b914c8ae61ebf..271ffe6def1dc 100644 --- a/pkgs/development/python-modules/url-normalize/default.nix +++ b/pkgs/development/python-modules/url-normalize/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "url_normalize" ]; - meta = with lib; { + meta = { description = "URL normalization for Python"; homepage = "https://github.com/niksite/url-normalize"; - 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/urlgrabber/default.nix b/pkgs/development/python-modules/urlgrabber/default.nix index 11d97578bae95..75c0fa5829bcd 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/urlpy/default.nix b/pkgs/development/python-modules/urlpy/default.nix index fda5519701faa..7e1fc83509aaa 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 bac278b2b3be2..3410e04421265 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/usbtmc/default.nix b/pkgs/development/python-modules/usbtmc/default.nix index 9220c3acde9e2..7e933a6c98c51 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 1da16e9c68642..072c3185b2347 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/ush/default.nix b/pkgs/development/python-modules/ush/default.nix index 714bb5a630b08..9989eec1f2715 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/utils/default.nix b/pkgs/development/python-modules/utils/default.nix index e76fa6e6bab06..d7d229d44ed72 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/uxsim/default.nix b/pkgs/development/python-modules/uxsim/default.nix index 345d78df0aeb2..897f255e53d99 100644 --- a/pkgs/development/python-modules/uxsim/default.nix +++ b/pkgs/development/python-modules/uxsim/default.nix @@ -55,10 +55,10 @@ buildPythonPackage rec { --replace-fail '$NIX_QT_PLUGIN_PATH' '${qt5.qtbase.bin}/${qt5.qtbase.qtPluginPrefix}' ''; - meta = with lib; { + meta = { 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 2c5f79f51e30b..e11c01582b061 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/validate-email/default.nix b/pkgs/development/python-modules/validate-email/default.nix index 441a0671461c9..99413a899e4f4 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/validobj/default.nix b/pkgs/development/python-modules/validobj/default.nix index 65076a08843da..700b8d1b425f9 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/varint/default.nix b/pkgs/development/python-modules/varint/default.nix index 4430fd84f3182..e8741ebeca826 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/vcver/default.nix b/pkgs/development/python-modules/vcver/default.nix index 5dcbab7dc6d9c..748309699f32d 100644 --- a/pkgs/development/python-modules/vcver/default.nix +++ b/pkgs/development/python-modules/vcver/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "vcver" ]; - meta = with lib; { + meta = { description = "Reference Implementation of vcver"; homepage = "https://github.com/toumorokoshi/vcver-python"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/vcversioner/default.nix b/pkgs/development/python-modules/vcversioner/default.nix index 25d569b23cf5c..afbd2e6f1cc0c 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 1eaa92a65ef32..dbe58cc292063 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/venstarcolortouch/default.nix b/pkgs/development/python-modules/venstarcolortouch/default.nix index 5d8dbb07e0334..ef68e478e10d2 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 439bc5f58b23d..3cc071505ce04 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.bsd0; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/verboselogs/default.nix b/pkgs/development/python-modules/verboselogs/default.nix index 63393b593fc6e..15f1cb47bec5b 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 178568e87b009..5c7db23012d9a 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/versioningit/default.nix b/pkgs/development/python-modules/versioningit/default.nix index 05dc14a795578..060c7e6a0e30e 100644 --- a/pkgs/development/python-modules/versioningit/default.nix +++ b/pkgs/development/python-modules/versioningit/default.nix @@ -58,12 +58,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 4dbb69bd781f2..1a8535b10f565 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 d2e3d84727f14..d812439e72bb6 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/veryprettytable/default.nix b/pkgs/development/python-modules/veryprettytable/default.nix index 01ee6b6930cc3..596bb2b30a354 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 d6a386b0e00ef..fcc7b1530d67b 100644 --- a/pkgs/development/python-modules/vfblib/default.nix +++ b/pkgs/development/python-modules/vfblib/default.nix @@ -40,10 +40,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 7b06fe7a82528..38669ea027188 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 ed37faf4bb1f4..0be19fa99e437 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 fb41510d12ddb..d216f69ac3bd1 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 763445cc9ad04..e0cda56a9349c 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 c4e28ff23f442..2f0fc2fd5d2b0 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/virt-firmware/default.nix b/pkgs/development/python-modules/virt-firmware/default.nix index 3e327a51474e0..49d37e0971e7e 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/virtkey/default.nix b/pkgs/development/python-modules/virtkey/default.nix index 553721e83eea5..6ad5b3be0763e 100644 --- a/pkgs/development/python-modules/virtkey/default.nix +++ b/pkgs/development/python-modules/virtkey/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { xorgproto ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Extension to emulate keypresses and to get the layout information from the X server"; homepage = "https://launchpad.net/virtkey"; - license = licenses.gpl3; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/virtualenv-clone/default.nix b/pkgs/development/python-modules/virtualenv-clone/default.nix index 056e38a32923b..9e937ca941b77 100644 --- a/pkgs/development/python-modules/virtualenv-clone/default.nix +++ b/pkgs/development/python-modules/virtualenv-clone/default.nix @@ -31,11 +31,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/virtualenvwrapper/default.nix b/pkgs/development/python-modules/virtualenvwrapper/default.nix index 6466e08496f6e..8d028d5ee7775 100644 --- a/pkgs/development/python-modules/virtualenvwrapper/default.nix +++ b/pkgs/development/python-modules/virtualenvwrapper/default.nix @@ -76,9 +76,9 @@ buildPythonPackage rec { done ''; - meta = with lib; { + meta = { description = "Enhancements to virtualenv"; homepage = "https://pypi.python.org/pypi/virtualenvwrapper"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/development/python-modules/visions/default.nix b/pkgs/development/python-modules/visions/default.nix index 58b325b3877f1..3117ffc423a82 100644 --- a/pkgs/development/python-modules/visions/default.nix +++ b/pkgs/development/python-modules/visions/default.nix @@ -69,10 +69,10 @@ buildPythonPackage rec { "visions" ]; - meta = with lib; { + meta = { description = "Type system for data analysis in Python"; homepage = "https://dylan-profiler.github.io/visions"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ bcdarwin ]; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/visitor/default.nix b/pkgs/development/python-modules/visitor/default.nix index 8bab0d88fe4a7..727703ca1556a 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/vmprof/default.nix b/pkgs/development/python-modules/vmprof/default.nix index e8b28062a829a..181a319b83215 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/vnoise/default.nix b/pkgs/development/python-modules/vnoise/default.nix index 169f5b3fd61b2..e49893c288591 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 44a769b306b32..624f0402a6de0 100644 --- a/pkgs/development/python-modules/vobject/default.nix +++ b/pkgs/development/python-modules/vobject/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "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 3ad6ca6542475..be77d04fd0427 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/voluptuous-stubs/default.nix b/pkgs/development/python-modules/voluptuous-stubs/default.nix index 1f77a12b41831..27a2f5e2195a5 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/vowpalwabbit/default.nix b/pkgs/development/python-modules/vowpalwabbit/default.nix index 5dbf58739c750..2d87238ee0689 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 188ef50b36f12..0b8fdbecb630a 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 9454a25ad81a8..d2e502dde7de0 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 87a16ca58bf56..e5500d6cf762a 100644 --- a/pkgs/development/python-modules/vqgan-jax/default.nix +++ b/pkgs/development/python-modules/vqgan-jax/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { 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 94ebbbe5e4a37..3e1f3917f3605 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 6c339204f3dc8..e77ab7456ca0b 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 77ce5707c5d17..699141afa2615 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/vultr/default.nix b/pkgs/development/python-modules/vultr/default.nix index 4e10e0144243e..87c603bd22591 100644 --- a/pkgs/development/python-modules/vultr/default.nix +++ b/pkgs/development/python-modules/vultr/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "vultr" ]; - meta = with lib; { + meta = { description = "Vultr.com API Client"; homepage = "https://github.com/spry-group/python-vultr"; - license = licenses.mit; - maintainers = with maintainers; [ lihop ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lihop ]; }; } diff --git a/pkgs/development/python-modules/vxi11/default.nix b/pkgs/development/python-modules/vxi11/default.nix index f68979cf2feae..22e2d8587e6ad 100644 --- a/pkgs/development/python-modules/vxi11/default.nix +++ b/pkgs/development/python-modules/vxi11/default.nix @@ -36,11 +36,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/wadllib/default.nix b/pkgs/development/python-modules/wadllib/default.nix index f5bbaddb6c346..5012671e5d567 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/waitress-django/default.nix b/pkgs/development/python-modules/waitress-django/default.nix index cb0c46abb611c..9dd47056135fb 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 79e9b73780bb2..c3760298c4a80 100644 --- a/pkgs/development/python-modules/waitress/default.nix +++ b/pkgs/development/python-modules/waitress/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { "test_service_port" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Pylons/waitress"; description = "Waitress WSGI server"; mainProgram = "waitress-serve"; - license = licenses.zpl21; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.zpl21; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/wallet-py3k/default.nix b/pkgs/development/python-modules/wallet-py3k/default.nix index fb50398d5be4e..4db87cefc4e2d 100644 --- a/pkgs/development/python-modules/wallet-py3k/default.nix +++ b/pkgs/development/python-modules/wallet-py3k/default.nix @@ -33,10 +33,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/waqiasync/default.nix b/pkgs/development/python-modules/waqiasync/default.nix index c627c24290ffa..6aa01f97f44e7 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 da0aa6c92563c..c9d278e872e48 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 1459c11820ca3..c77e01f5c3385 100644 --- a/pkgs/development/python-modules/warcio/default.nix +++ b/pkgs/development/python-modules/warcio/default.nix @@ -58,12 +58,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/warlock/default.nix b/pkgs/development/python-modules/warlock/default.nix index 0725368b171be..0c3a12aa5ee0d 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 911aa135a7758..744e65b709537 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 4dc8e940b3b31..72429ff6540b5 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/wasserstein/default.nix b/pkgs/development/python-modules/wasserstein/default.nix index c9a9495b42ef3..27e1758f7b725 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 74c772b54a198..d166dd0de8013 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 610ad9cb4d226..a06a89cbdb27e 100644 --- a/pkgs/development/python-modules/watchdog-gevent/default.nix +++ b/pkgs/development/python-modules/watchdog-gevent/default.nix @@ -50,10 +50,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/watchfiles/default.nix b/pkgs/development/python-modules/watchfiles/default.nix index f6710e1523a92..8278002ec0b41 100644 --- a/pkgs/development/python-modules/watchfiles/default.nix +++ b/pkgs/development/python-modules/watchfiles/default.nix @@ -76,11 +76,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "watchfiles" ]; - meta = with lib; { + meta = { description = "File watching and code reload"; mainProgram = "watchfiles"; homepage = "https://watchfiles.helpmanual.io/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/watchgod/default.nix b/pkgs/development/python-modules/watchgod/default.nix index 10b93b346dd11..984d244cfe4ad 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; - maintainers = with maintainers; [ globin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ globin ]; }; } diff --git a/pkgs/development/python-modules/wavedrom/default.nix b/pkgs/development/python-modules/wavedrom/default.nix index d5e36be1e9f19..2a041f5fb4e32 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 9711e2684038e..136b5ef00bf79 100644 --- a/pkgs/development/python-modules/wavefile/default.nix +++ b/pkgs/development/python-modules/wavefile/default.nix @@ -50,11 +50,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 = with maintainers; [ yuu ]; - license = licenses.gpl3Plus; + maintainers = with lib.maintainers; [ yuu ]; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/development/python-modules/wavinsentio/default.nix b/pkgs/development/python-modules/wavinsentio/default.nix index b7b1f1cd645f6..3a8fcf73f16a0 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 = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with 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 222a3566600fb..df741dae16fda 100644 --- a/pkgs/development/python-modules/waybackpy/default.nix +++ b/pkgs/development/python-modules/waybackpy/default.nix @@ -26,10 +26,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 3812a83ffbfc1..65c6635440517 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 fb7328d5c34f6..f8848d7ac67e0 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 4faf5b1805ceb..431f194524e1b 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/weasyprint/default.nix b/pkgs/development/python-modules/weasyprint/default.nix index bc6c57e940838..d50a3c4cddae5 100644 --- a/pkgs/development/python-modules/weasyprint/default.nix +++ b/pkgs/development/python-modules/weasyprint/default.nix @@ -92,10 +92,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "weasyprint" ]; - meta = with lib; { + meta = { description = "Converts web documents to PDF"; mainProgram = "weasyprint"; homepage = "https://weasyprint.org/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/web-cache/default.nix b/pkgs/development/python-modules/web-cache/default.nix index fbc9cf2aaa8cf..816ee85cab5a7 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 39275ca1eb7a4..ad0d0950a9b7b 100644 --- a/pkgs/development/python-modules/web/default.nix +++ b/pkgs/development/python-modules/web/default.nix @@ -36,14 +36,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/web3/default.nix b/pkgs/development/python-modules/web3/default.nix index 08fc850f9e507..d192050bc5156 100644 --- a/pkgs/development/python-modules/web3/default.nix +++ b/pkgs/development/python-modules/web3/default.nix @@ -65,10 +65,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "web3" ]; - meta = with lib; { + meta = { description = "Python interface for interacting with the Ethereum blockchain and ecosystem"; homepage = "https://web3py.readthedocs.io/"; - license = licenses.mit; - maintainers = with maintainers; [ hellwolf ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hellwolf ]; }; } diff --git a/pkgs/development/python-modules/webargs/default.nix b/pkgs/development/python-modules/webargs/default.nix index 6f8287733b583..1e85e6b59c9a8 100644 --- a/pkgs/development/python-modules/webargs/default.nix +++ b/pkgs/development/python-modules/webargs/default.nix @@ -48,10 +48,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/webcolors/default.nix b/pkgs/development/python-modules/webcolors/default.nix index 4d24df46c2135..10a4060b1642b 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/webdavclient3/default.nix b/pkgs/development/python-modules/webdavclient3/default.nix index 861c83691bcef..d87b8941543bd 100644 --- a/pkgs/development/python-modules/webdavclient3/default.nix +++ b/pkgs/development/python-modules/webdavclient3/default.nix @@ -45,11 +45,11 @@ 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; - maintainers = with maintainers; [ dmrauh ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dmrauh ]; mainProgram = "wdc"; }; } diff --git a/pkgs/development/python-modules/weblate-language-data/default.nix b/pkgs/development/python-modules/weblate-language-data/default.nix index 78465b8869220..8c19baae0c60c 100644 --- a/pkgs/development/python-modules/weblate-language-data/default.nix +++ b/pkgs/development/python-modules/weblate-language-data/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "weblate_language_data" ]; - meta = with lib; { + meta = { description = "Language definitions used by Weblate"; homepage = "https://github.com/WeblateOrg/language-data"; - 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 07b5a76e75d0f..12868ed8c27d6 100644 --- a/pkgs/development/python-modules/webob/default.nix +++ b/pkgs/development/python-modules/webob/default.nix @@ -47,10 +47,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/webtest/default.nix b/pkgs/development/python-modules/webtest/default.nix index da51af3e701b5..802fbd16c45ea 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/default.nix b/pkgs/development/python-modules/webthing/default.nix index 4f4ede0e8ba1d..096e695ac7858 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/wheel-filename/default.nix b/pkgs/development/python-modules/wheel-filename/default.nix index 303008d4d2540..ee4252abeab2e 100644 --- a/pkgs/development/python-modules/wheel-filename/default.nix +++ b/pkgs/development/python-modules/wheel-filename/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "wheel_filename" ]; - meta = with lib; { + meta = { description = "Parse wheel filenames"; mainProgram = "wheel-filename"; homepage = "https://github.com/jwodder/wheel-filename"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = with lib.maintainers; [ ayazhafiz ]; }; } diff --git a/pkgs/development/python-modules/wheezy-captcha/default.nix b/pkgs/development/python-modules/wheezy-captcha/default.nix index 4582ce93a6b4b..13380be1b8d26 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 fcdaf64d802ca..a83f5e8574701 100644 --- a/pkgs/development/python-modules/wheezy-template/default.nix +++ b/pkgs/development/python-modules/wheezy-template/default.nix @@ -15,11 +15,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/whichcraft/default.nix b/pkgs/development/python-modules/whichcraft/default.nix index e2156831dbb2f..7c7ac4e269aea 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 a9dbccf3140c3..7315f54075bf7 100644 --- a/pkgs/development/python-modules/whirlpool-sixth-sense/default.nix +++ b/pkgs/development/python-modules/whirlpool-sixth-sense/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "whirlpool" ]; - meta = with lib; { + meta = { description = "Python library for Whirlpool 6th Sense appliances"; homepage = "https://github.com/abmantis/whirlpool-sixth-sense/"; - 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/whisper/default.nix b/pkgs/development/python-modules/whisper/default.nix index db71448bb53b6..4f0689ba4cc72 100644 --- a/pkgs/development/python-modules/whisper/default.nix +++ b/pkgs/development/python-modules/whisper/default.nix @@ -33,13 +33,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "whisper" ]; - meta = with lib; { + meta = { homepage = "https://github.com/graphite-project/whisper"; description = "Fixed size round-robin style database"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ offline basvandijk ]; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/development/python-modules/whoosh/default.nix b/pkgs/development/python-modules/whoosh/default.nix index b56a590a3fa6d..ab26eb35fb6ff 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 9b961c89a9a91..ff99c627be500 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/wifi/default.nix b/pkgs/development/python-modules/wifi/default.nix index b99d4782f47ba..20a6b3655dea1 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/default.nix b/pkgs/development/python-modules/wikipedia/default.nix index 93d23d7209a76..023fc3a53115e 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/winsspi/default.nix b/pkgs/development/python-modules/winsspi/default.nix index 3008cb6f92f3c..b21c7d58d093b 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/woodblock/default.nix b/pkgs/development/python-modules/woodblock/default.nix index 12c71c8c55a71..14e28aff13fbf 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/wordfreq/default.nix b/pkgs/development/python-modules/wordfreq/default.nix index d11d3562af6ad..7d1a262e95258 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/worldengine/default.nix b/pkgs/development/python-modules/worldengine/default.nix index a9a5b5153fbd5..9af993b9b12f0 100644 --- a/pkgs/development/python-modules/worldengine/default.nix +++ b/pkgs/development/python-modules/worldengine/default.nix @@ -67,11 +67,11 @@ buildPythonPackage rec { disabledTests = [ "TestSerialization" ]; - meta = with lib; { + meta = { broken = true; homepage = "https://github.com/mindwerks/worldengine"; description = "World generator using simulation of plates, rain shadow, erosion, etc"; - license = licenses.mit; - maintainers = with maintainers; [ rardiol ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ rardiol ]; }; } diff --git a/pkgs/development/python-modules/wrapt/default.nix b/pkgs/development/python-modules/wrapt/default.nix index 59c93a6163767..586970e506cc9 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 0bac9b4da09ed..03cbcba56a92d 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/wsdiscovery/default.nix b/pkgs/development/python-modules/wsdiscovery/default.nix index 9d5d1e884cb44..222bf9d4779c6 100644 --- a/pkgs/development/python-modules/wsdiscovery/default.nix +++ b/pkgs/development/python-modules/wsdiscovery/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "wsdiscovery" ]; - meta = with lib; { + meta = { description = "WS-Discovery implementation for Python"; homepage = "https://github.com/andreikop/python-ws-discovery"; - 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/wsgiprox/default.nix b/pkgs/development/python-modules/wsgiprox/default.nix index 98bb446f92321..42d0e27d433ab 100644 --- a/pkgs/development/python-modules/wsgiprox/default.nix +++ b/pkgs/development/python-modules/wsgiprox/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # 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 25c66e98cf6dc..75e8afe3e60b0 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/wsgitools/default.nix b/pkgs/development/python-modules/wsgitools/default.nix index 83b33529214d3..2d7c58a03c277 100644 --- a/pkgs/development/python-modules/wsgitools/default.nix +++ b/pkgs/development/python-modules/wsgitools/default.nix @@ -27,8 +27,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 @@ -37,7 +37,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/wsnsimpy/default.nix b/pkgs/development/python-modules/wsnsimpy/default.nix index 37b7b0f41e0a5..42a306c8f5613 100644 --- a/pkgs/development/python-modules/wsnsimpy/default.nix +++ b/pkgs/development/python-modules/wsnsimpy/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "wsnsimpy" ] ++ lib.optional enableVisualization "wsnsimpy.wsnsimpy_tk"; - meta = with lib; { + meta = { description = "SimPy-based WSN Simulator"; homepage = "https://pypi.org/project/wsnsimpy/"; - license = licenses.bsd2; - maintainers = with maintainers; [ dmrauh ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ dmrauh ]; }; } diff --git a/pkgs/development/python-modules/wsproto/default.nix b/pkgs/development/python-modules/wsproto/default.nix index 880e10b59d7fc..6013beee94e0e 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 932b96d349bcb..4bad85b106c7e 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/x11-hash/default.nix b/pkgs/development/python-modules/x11-hash/default.nix index 92af43fad444d..8bdc0ef987066 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 69359f1578fde..ef35b04cbb099 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/xarray-einstats/default.nix b/pkgs/development/python-modules/xarray-einstats/default.nix index d769bb080fe7c..84e622a3d858d 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/xboxapi/default.nix b/pkgs/development/python-modules/xboxapi/default.nix index 49ea1ec581b5c..13a3d9d1ecfb5 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/xdg/default.nix b/pkgs/development/python-modules/xdg/default.nix index 4a2efae3a8fb8..371d0294713c2 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/xdot/default.nix b/pkgs/development/python-modules/xdot/default.nix index 944b9f4619e90..6ac7981e1660b 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 4c31e36ff1288..1c12db32b4eb9 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/xkbcommon/default.nix b/pkgs/development/python-modules/xkbcommon/default.nix index 5d5ce94309598..f842b6c6a4e3c 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 709a26328ac4c..2420e37e6419b 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/xlrd/default.nix b/pkgs/development/python-modules/xlrd/default.nix index d5a98d170ab52..4cb80e140e368 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 a949b0b7d21ad..a58f46547ec80 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 919849730f8e5..98afe19d4a979 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 cd1510b263c58..8f7b52fcc208f 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 c56cd4e8130df..67aad175937f5 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/xmldiff/default.nix b/pkgs/development/python-modules/xmldiff/default.nix index 6bf2fd9607d66..868341a8cfac4 100644 --- a/pkgs/development/python-modules/xmldiff/default.nix +++ b/pkgs/development/python-modules/xmldiff/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "xmldiff" ]; - meta = with lib; { + meta = { description = "Creates diffs of XML files"; homepage = "https://github.com/Shoobx/xmldiff"; changelog = "https://github.com/Shoobx/xmldiff/blob/master/CHANGES.rst"; - license = licenses.mit; - maintainers = with maintainers; [ sfrijters ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sfrijters ]; }; } diff --git a/pkgs/development/python-modules/xmljson/default.nix b/pkgs/development/python-modules/xmljson/default.nix index 3f1e37c9a38e6..42aba72a328f1 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/xmlsec/default.nix b/pkgs/development/python-modules/xmlsec/default.nix index 3d6d6bc50acd1..0bfb4aab36a60 100644 --- a/pkgs/development/python-modules/xmlsec/default.nix +++ b/pkgs/development/python-modules/xmlsec/default.nix @@ -63,10 +63,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "xmlsec" ]; - meta = with lib; { + meta = { description = "Python bindings for the XML Security Library"; homepage = "https://github.com/mehcode/python-xmlsec"; - license = licenses.mit; - maintainers = with maintainers; [ zhaofengli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zhaofengli ]; }; } diff --git a/pkgs/development/python-modules/xmltodict/default.nix b/pkgs/development/python-modules/xmltodict/default.nix index 0000eea5f4058..f4006cf9e7d49 100644 --- a/pkgs/development/python-modules/xmltodict/default.nix +++ b/pkgs/development/python-modules/xmltodict/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "xmltodict" ]; - meta = with lib; { + meta = { description = "Makes working with XML feel like you are working with JSON"; homepage = "https://github.com/martinblech/xmltodict"; - 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 e5cbf9fc8932c..feb8e524b60b5 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/xpath-expressions/default.nix b/pkgs/development/python-modules/xpath-expressions/default.nix index 56d514db4055c..f4a1e50867c77 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 631cf33a77c27..ff0b18558b0c1 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 4427858a8157f..c97cad3f01557 100644 --- a/pkgs/development/python-modules/xstatic-asciinema-player/default.nix +++ b/pkgs/development/python-modules/xstatic-asciinema-player/default.nix @@ -17,10 +17,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 419e051889303..7e393a9115d23 100644 --- a/pkgs/development/python-modules/xstatic-bootbox/default.nix +++ b/pkgs/development/python-modules/xstatic-bootbox/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # no tests implemented doCheck = false; - meta = with lib; { + meta = { homepage = "http://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 55e1f68761a00..1572594d46f52 100644 --- a/pkgs/development/python-modules/xstatic-bootstrap/default.nix +++ b/pkgs/development/python-modules/xstatic-bootstrap/default.nix @@ -17,10 +17,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 7f8d70372a3d4..0a85ecfb6f41a 100644 --- a/pkgs/development/python-modules/xstatic-font-awesome/default.nix +++ b/pkgs/development/python-modules/xstatic-font-awesome/default.nix @@ -17,10 +17,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 cb5efd7aebb82..7cea97e6aac37 100644 --- a/pkgs/development/python-modules/xstatic-jquery-file-upload/default.nix +++ b/pkgs/development/python-modules/xstatic-jquery-file-upload/default.nix @@ -20,10 +20,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 9af1d20c0cdb6..c48490025460d 100644 --- a/pkgs/development/python-modules/xstatic-jquery-ui/default.nix +++ b/pkgs/development/python-modules/xstatic-jquery-ui/default.nix @@ -20,10 +20,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 2e3f4b9831a5b..37ff0b5ac32f6 100644 --- a/pkgs/development/python-modules/xstatic-jquery/default.nix +++ b/pkgs/development/python-modules/xstatic-jquery/default.nix @@ -17,10 +17,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 39c41f74ced71..9af31ee1eb195 100644 --- a/pkgs/development/python-modules/xstatic-pygments/default.nix +++ b/pkgs/development/python-modules/xstatic-pygments/default.nix @@ -17,10 +17,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 fb7b2b1e90014..b922328aea6a9 100644 --- a/pkgs/development/python-modules/xstatic/default.nix +++ b/pkgs/development/python-modules/xstatic/default.nix @@ -17,10 +17,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/xtensor-python/default.nix b/pkgs/development/python-modules/xtensor-python/default.nix index 14d063a802d6a..e946500d6df36 100644 --- a/pkgs/development/python-modules/xtensor-python/default.nix +++ b/pkgs/development/python-modules/xtensor-python/default.nix @@ -39,11 +39,11 @@ toPythonModule ( checkTarget = "xtest"; - meta = with lib; { + meta = { homepage = "https://github.com/xtensor-stack/xtensor-python"; description = "Python bindings for the xtensor C++ multi-dimensional array library"; - license = licenses.bsd3; - maintainers = with maintainers; [ lsix ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ lsix ]; }; }) ) diff --git a/pkgs/development/python-modules/xvfbwrapper/default.nix b/pkgs/development/python-modules/xvfbwrapper/default.nix index 148a3de0371b6..76d65a404952f 100644 --- a/pkgs/development/python-modules/xvfbwrapper/default.nix +++ b/pkgs/development/python-modules/xvfbwrapper/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { nativeCheckInputs = [ mock ]; - meta = with lib; { + meta = { description = "Run headless display inside X virtual framebuffer (Xvfb)"; homepage = "https://github.com/cgoldberg/xvfbwrapper"; - license = licenses.mit; - maintainers = with maintainers; [ ashgillman ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ashgillman ]; }; } diff --git a/pkgs/development/python-modules/yacs/default.nix b/pkgs/development/python-modules/yacs/default.nix index f3e15c5ce41ef..e8b5d63afe004 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/yamlordereddictloader/default.nix b/pkgs/development/python-modules/yamlordereddictloader/default.nix index b1f4a0caa6522..c29cc6acd681c 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 4a5b520eddf79..0c08510a82574 100644 --- a/pkgs/development/python-modules/yangson/default.nix +++ b/pkgs/development/python-modules/yangson/default.nix @@ -37,11 +37,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 3590f22ba67a6..ba65f681036d9 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; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/development/python-modules/yapsy/default.nix b/pkgs/development/python-modules/yapsy/default.nix index 256d421f918fe..a7fe6eb5a5169 100644 --- a/pkgs/development/python-modules/yapsy/default.nix +++ b/pkgs/development/python-modules/yapsy/default.nix @@ -26,9 +26,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "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/yargy/default.nix b/pkgs/development/python-modules/yargy/default.nix index b4350676665f1..c99c968c79c59 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 ]; pytestFlagsArray = [ "tests" ]; - meta = with lib; { + meta = { description = "Rule-based facts extraction for Russian language"; homepage = "https://github.com/natasha/yargu"; - license = licenses.mit; - maintainers = with maintainers; [ npatsakula ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ npatsakula ]; }; } diff --git a/pkgs/development/python-modules/yaspin/default.nix b/pkgs/development/python-modules/yaspin/default.nix index 826c64475f060..db11f15bbf80d 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 45be718071780..c38715fa8966c 100644 --- a/pkgs/development/python-modules/yaswfp/default.nix +++ b/pkgs/development/python-modules/yaswfp/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { 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 e6765bf0df11f..30d2a9175d3a9 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/youseedee/default.nix b/pkgs/development/python-modules/youseedee/default.nix index e35be6b565684..1a0d876ff6de5 100644 --- a/pkgs/development/python-modules/youseedee/default.nix +++ b/pkgs/development/python-modules/youseedee/default.nix @@ -46,10 +46,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/youtube-search-python/default.nix b/pkgs/development/python-modules/youtube-search-python/default.nix index 344427e53e168..2d49f04980fee 100644 --- a/pkgs/development/python-modules/youtube-search-python/default.nix +++ b/pkgs/development/python-modules/youtube-search-python/default.nix @@ -25,10 +25,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 9b575729b34d5..d02138db28820 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/yoyo-migrations/default.nix b/pkgs/development/python-modules/yoyo-migrations/default.nix index f0688fdc1e74d..8e22ddc8eb9e1 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 dfc1ae08903ec..f52c28d278764 100644 --- a/pkgs/development/python-modules/yq/default.nix +++ b/pkgs/development/python-modules/yq/default.nix @@ -44,11 +44,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; [ womfoo SuperSandro2000 ]; diff --git a/pkgs/development/python-modules/yubico-client/default.nix b/pkgs/development/python-modules/yubico-client/default.nix index c32239120ba7e..3b098e133c4b2 100644 --- a/pkgs/development/python-modules/yubico-client/default.nix +++ b/pkgs/development/python-modules/yubico-client/default.nix @@ -20,10 +20,10 @@ 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/"; - maintainers = with maintainers; [ peterromfeldhk ]; - license = licenses.bsd3; + maintainers = with lib.maintainers; [ peterromfeldhk ]; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/yubico/default.nix b/pkgs/development/python-modules/yubico/default.nix index 68da9e13b6c8d..8549374a12c33 100644 --- a/pkgs/development/python-modules/yubico/default.nix +++ b/pkgs/development/python-modules/yubico/default.nix @@ -24,10 +24,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/zbaemon/default.nix b/pkgs/development/python-modules/zbaemon/default.nix index ee859b099d943..5be73ed2d3594 100644 --- a/pkgs/development/python-modules/zbaemon/default.nix +++ b/pkgs/development/python-modules/zbaemon/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { # too many deps.. doCheck = false; - meta = with lib; { + meta = { description = "Daemon process control library and tools for Unix-based systems"; homepage = "https://pypi.python.org/pypi/zdaemon"; - license = licenses.zpl20; + license = lib.licenses.zpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/zc-lockfile/default.nix b/pkgs/development/python-modules/zc-lockfile/default.nix index 2d7c5dc0c87ef..22ca478acec0e 100644 --- a/pkgs/development/python-modules/zc-lockfile/default.nix +++ b/pkgs/development/python-modules/zc-lockfile/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { buildInputs = [ mock ]; propagatedBuildInputs = [ zope-testing ]; - meta = with lib; { + meta = { description = "Inter-process locks"; homepage = "https://www.python.org/pypi/zc.lockfile"; - license = licenses.zpl20; + license = lib.licenses.zpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/zcs/default.nix b/pkgs/development/python-modules/zcs/default.nix index d6aaad9d8ab79..0425a93f33947 100644 --- a/pkgs/development/python-modules/zcs/default.nix +++ b/pkgs/development/python-modules/zcs/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { ${python.interpreter} test/test_zcs.py ''; - meta = with lib; { + meta = { description = "Configuration system which takes advantage of both argparse and yacs"; homepage = "https://github.com/DIYer22/zcs"; - license = licenses.mit; - maintainers = with maintainers; [ lucasew ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lucasew ]; }; } diff --git a/pkgs/development/python-modules/zeroc-ice/default.nix b/pkgs/development/python-modules/zeroc-ice/default.nix index 7d6cc236f8f4c..70f744d6c0572 100644 --- a/pkgs/development/python-modules/zeroc-ice/default.nix +++ b/pkgs/development/python-modules/zeroc-ice/default.nix @@ -28,12 +28,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "Ice" ]; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; 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 = with maintainers; [ abbradar ]; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/zerorpc/default.nix b/pkgs/development/python-modules/zerorpc/default.nix index 25523376be32b..1ee354d22bc4e 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 5f46e398bbcb5..56e672f29aa9f 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 b4c5db9ec61a7..4b2ec00450d53 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 07616470b31ee..f92829e94c0c7 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/zict/default.nix b/pkgs/development/python-modules/zict/default.nix index b2305bc243fdc..30d91cd3e7149 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 048fc2b17d105..0c4a010546f09 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/zimports/default.nix b/pkgs/development/python-modules/zimports/default.nix index f5d50241a8810..eb8673e2a54a1 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/zipp/default.nix b/pkgs/development/python-modules/zipp/default.nix index 273606c8f3a63..7e3d8a2b67246 100644 --- a/pkgs/development/python-modules/zipp/default.nix +++ b/pkgs/development/python-modules/zipp/default.nix @@ -39,10 +39,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/zope-deferredimport/default.nix b/pkgs/development/python-modules/zope-deferredimport/default.nix index 7cc6f18d5e3d4..02f665a0c8411 100644 --- a/pkgs/development/python-modules/zope-deferredimport/default.nix +++ b/pkgs/development/python-modules/zope-deferredimport/default.nix @@ -27,9 +27,9 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Allows you to perform imports names that will only be resolved when used in the code"; homepage = "https://github.com/zopefoundation/zope.deferredimport"; - license = licenses.zpl21; + license = lib.licenses.zpl21; }; } diff --git a/pkgs/development/python-modules/zope-event/default.nix b/pkgs/development/python-modules/zope-event/default.nix index 805fc285e0a0d..ba16bbc2256f9 100644 --- a/pkgs/development/python-modules/zope-event/default.nix +++ b/pkgs/development/python-modules/zope-event/default.nix @@ -13,10 +13,10 @@ buildPythonPackage rec { hash = "sha256-gdmIEwRvyGzEE242mP7mKKMoL5wyDbGGWMIXSSNfzoA="; }; - meta = with lib; { + meta = { description = "Event publishing system"; homepage = "https://pypi.org/project/zope.event/"; - license = licenses.zpl20; + license = lib.licenses.zpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/zope-filerepresentation/default.nix b/pkgs/development/python-modules/zope-filerepresentation/default.nix index 347b634831f49..bca0f3b2584cc 100644 --- a/pkgs/development/python-modules/zope-filerepresentation/default.nix +++ b/pkgs/development/python-modules/zope-filerepresentation/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { cd src/zope/filerepresentation && python -m unittest ''; - meta = with lib; { + meta = { homepage = "https://zopefilerepresentation.readthedocs.io/"; description = "File-system Representation Interfaces"; - license = licenses.zpl20; + license = lib.licenses.zpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/zope-hookable/default.nix b/pkgs/development/python-modules/zope-hookable/default.nix index 8af1d3d0b7521..0809ff7f9f491 100644 --- a/pkgs/development/python-modules/zope-hookable/default.nix +++ b/pkgs/development/python-modules/zope-hookable/default.nix @@ -21,9 +21,9 @@ buildPythonPackage rec { nativeCheckInputs = [ zope-testing ]; - meta = with lib; { + meta = { description = "Supports the efficient creation of “hookable” objects"; homepage = "https://github.com/zopefoundation/zope.hookable"; - license = licenses.zpl21; + license = lib.licenses.zpl21; }; } diff --git a/pkgs/development/python-modules/zope-location/default.nix b/pkgs/development/python-modules/zope-location/default.nix index 19dfb93b98c92..2b07301e18690 100644 --- a/pkgs/development/python-modules/zope-location/default.nix +++ b/pkgs/development/python-modules/zope-location/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/zopefoundation/zope.location/"; description = "Zope Location"; - license = licenses.zpl20; + license = lib.licenses.zpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/zope-schema/default.nix b/pkgs/development/python-modules/zope-schema/default.nix index a1f4a8f263f7a..23a3abf4eb41d 100644 --- a/pkgs/development/python-modules/zope-schema/default.nix +++ b/pkgs/development/python-modules/zope-schema/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # Package seems to work fine. doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/zopefoundation/zope.schema"; description = "zope.interface extension for defining data schemas"; - license = licenses.zpl20; + license = lib.licenses.zpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/zope-size/default.nix b/pkgs/development/python-modules/zope-size/default.nix index d526d01e3fa0f..0988ac9ed7b7a 100644 --- a/pkgs/development/python-modules/zope-size/default.nix +++ b/pkgs/development/python-modules/zope-size/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { zope-interface ]; - meta = with lib; { + meta = { homepage = "https://github.com/zopefoundation/zope.size"; description = "Interfaces and simple adapter that give the size of an object"; - license = licenses.zpl20; + license = lib.licenses.zpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/zope-testrunner/default.nix b/pkgs/development/python-modules/zope-testrunner/default.nix index fbc82b59f7bd7..5eb3e81069f45 100644 --- a/pkgs/development/python-modules/zope-testrunner/default.nix +++ b/pkgs/development/python-modules/zope-testrunner/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { doCheck = false; # custom test modifies sys.path - meta = with lib; { + meta = { description = "Flexible test runner with layer support"; mainProgram = "zope-testrunner"; homepage = "https://pypi.python.org/pypi/zope.testrunner"; - license = licenses.zpl20; + license = lib.licenses.zpl20; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/zopfli/default.nix b/pkgs/development/python-modules/zopfli/default.nix index 93941dd579555..0e28ccdfaac04 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/zstandard/default.nix b/pkgs/development/python-modules/zstandard/default.nix index e902ea024198b..54d50424568bf 100644 --- a/pkgs/development/python-modules/zstandard/default.nix +++ b/pkgs/development/python-modules/zstandard/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "zstandard" ]; - meta = with lib; { + meta = { description = "zstandard bindings for Python"; homepage = "https://github.com/indygreg/python-zstandard"; - license = licenses.bsdOriginal; - maintainers = with maintainers; [ arnoldfarkas ]; + license = lib.licenses.bsdOriginal; + maintainers = with lib.maintainers; [ arnoldfarkas ]; }; } diff --git a/pkgs/development/python-modules/zstd/default.nix b/pkgs/development/python-modules/zstd/default.nix index b4a335efca11a..786d9c61af6db 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/zulip/default.nix b/pkgs/development/python-modules/zulip/default.nix index d5bec61a0c0f5..2ed612a5f6c0a 100644 --- a/pkgs/development/python-modules/zulip/default.nix +++ b/pkgs/development/python-modules/zulip/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "zulip" ]; - meta = with lib; { + meta = { description = "Bindings for the Zulip message API"; homepage = "https://github.com/zulip/python-zulip-api"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/zxcvbn-rs-py/default.nix b/pkgs/development/python-modules/zxcvbn-rs-py/default.nix index dcfc2f8d66408..bc02c454a85af 100644 --- a/pkgs/development/python-modules/zxcvbn-rs-py/default.nix +++ b/pkgs/development/python-modules/zxcvbn-rs-py/default.nix @@ -34,11 +34,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 1c4708846e138..c74ffe7538eb0 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 d4b2630bd4cd6..1d8435285c13c 100644 --- a/pkgs/development/python2-modules/attrs/default.nix +++ b/pkgs/development/python2-modules/attrs/default.nix @@ -32,10 +32,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 bff2f2723340b..c829643c78da7 100644 --- a/pkgs/development/python2-modules/configparser/default.nix +++ b/pkgs/development/python2-modules/configparser/default.nix @@ -24,9 +24,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 b2cf685df1438..2a45ce5f58eeb 100644 --- a/pkgs/development/python2-modules/enum/default.nix +++ b/pkgs/development/python2-modules/enum/default.nix @@ -18,10 +18,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 15ba0afec8b68..b64de65f27362 100644 --- a/pkgs/development/python2-modules/filelock/default.nix +++ b/pkgs/development/python2-modules/filelock/default.nix @@ -18,10 +18,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 035962759c4ca..56d780ed400d6 100644 --- a/pkgs/development/python2-modules/futures/default.nix +++ b/pkgs/development/python2-modules/futures/default.nix @@ -25,10 +25,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 ed9e049bc9559..0f2aaefe8faaa 100644 --- a/pkgs/development/python2-modules/hypothesis/default.nix +++ b/pkgs/development/python2-modules/hypothesis/default.nix @@ -54,9 +54,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 72b37433c5122..687bd217b8f48 100644 --- a/pkgs/development/python2-modules/importlib-metadata/default.nix +++ b/pkgs/development/python2-modules/importlib-metadata/default.nix @@ -35,9 +35,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 53f9bb60379d6..c9ab7948419b8 100644 --- a/pkgs/development/python2-modules/jinja2/default.nix +++ b/pkgs/development/python2-modules/jinja2/default.nix @@ -33,15 +33,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 7bff587591e13..eec0f0e1e8247 100644 --- a/pkgs/development/python2-modules/markupsafe/default.nix +++ b/pkgs/development/python2-modules/markupsafe/default.nix @@ -13,11 +13,11 @@ 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; - maintainers = with maintainers; [ domenkozar ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python2-modules/mock/default.nix b/pkgs/development/python2-modules/mock/default.nix index 63298dfc38dfe..c40fe70f076bb 100644 --- a/pkgs/development/python2-modules/mock/default.nix +++ b/pkgs/development/python2-modules/mock/default.nix @@ -36,10 +36,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/pycairo/default.nix b/pkgs/development/python2-modules/pycairo/default.nix index 85430cae6ac27..ed4f1f2e6e213 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 01920854cb043..88a4375b0029b 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 9ba5ce952e17e..b2fd22a0ed2ee 100644 --- a/pkgs/development/python2-modules/pygtk/default.nix +++ b/pkgs/development/python2-modules/pygtk/default.nix @@ -89,10 +89,10 @@ 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 ]; }; } diff --git a/pkgs/development/python2-modules/pyparsing/default.nix b/pkgs/development/python2-modules/pyparsing/default.nix index 52566d07ce5e9..6a5052bbf4fdd 100644 --- a/pkgs/development/python2-modules/pyparsing/default.nix +++ b/pkgs/development/python2-modules/pyparsing/default.nix @@ -38,10 +38,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 73b845f753079..726f2e27b175c 100644 --- a/pkgs/development/python2-modules/pytest-xdist/default.nix +++ b/pkgs/development/python2-modules/pytest-xdist/default.nix @@ -49,10 +49,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/scandir/default.nix b/pkgs/development/python2-modules/scandir/default.nix index 650dee1ddf83c..6df59fe19d986 100644 --- a/pkgs/development/python2-modules/scandir/default.nix +++ b/pkgs/development/python2-modules/scandir/default.nix @@ -20,10 +20,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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python2-modules/setuptools-scm/default.nix b/pkgs/development/python2-modules/setuptools-scm/default.nix index ef0e4de6b2be1..0e51aa745f403 100644 --- a/pkgs/development/python2-modules/setuptools-scm/default.nix +++ b/pkgs/development/python2-modules/setuptools-scm/default.nix @@ -20,10 +20,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 1e7c78532e592..08a5bf98de4d8 100644 --- a/pkgs/development/python2-modules/setuptools/default.nix +++ b/pkgs/development/python2-modules/setuptools/default.nix @@ -75,10 +75,10 @@ buildPythonPackage rec { # 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 1d6f07eb87809..17e1f593acd59 100644 --- a/pkgs/development/python2-modules/typing/default.nix +++ b/pkgs/development/python2-modules/typing/default.nix @@ -36,9 +36,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/zipp/default.nix b/pkgs/development/python2-modules/zipp/default.nix index b4aed672ffa94..abd211e89af0f 100644 --- a/pkgs/development/python2-modules/zipp/default.nix +++ b/pkgs/development/python2-modules/zipp/default.nix @@ -33,9 +33,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/5/clr/test-rocm-smi.nix b/pkgs/development/rocm-modules/5/clr/test-rocm-smi.nix index 16bf1287001a5..1de5d40683199 100644 --- a/pkgs/development/rocm-modules/5/clr/test-rocm-smi.nix +++ b/pkgs/development/rocm-modules/5/clr/test-rocm-smi.nix @@ -21,7 +21,7 @@ makeImpureTest { rocm-smi | grep -A1 GPU ''; - meta = with lib; { - maintainers = teams.rocm.members; + meta = { + maintainers = lib.teams.rocm.members; }; } diff --git a/pkgs/development/rocm-modules/5/rdc/default.nix b/pkgs/development/rocm-modules/5/rdc/default.nix index 7c8b26f16cf79..6814a693e0ee6 100644 --- a/pkgs/development/rocm-modules/5/rdc/default.nix +++ b/pkgs/development/rocm-modules/5/rdc/default.nix @@ -130,12 +130,12 @@ stdenv.mkDerivation (finalAttrs: { repo = 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 ]; - maintainers = teams.rocm.members; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + maintainers = lib.teams.rocm.members; + platforms = lib.platforms.linux; # broken = versions.minor finalAttrs.version != versions.minor rocm-smi.version || versionAtLeast finalAttrs.version "6.0.0"; broken = true; # Too many errors, unsure how to fix }; diff --git a/pkgs/development/rocm-modules/5/rocm-docs-core/default.nix b/pkgs/development/rocm-modules/5/rocm-docs-core/default.nix index f199bc9b9277e..a7e1d00410397 100644 --- a/pkgs/development/rocm-modules/5/rocm-docs-core/default.nix +++ b/pkgs/development/rocm-modules/5/rocm-docs-core/default.nix @@ -57,14 +57,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/RadeonOpenCompute/rocm-docs-core"; - license = with licenses; [ + license = with lib.licenses; [ mit cc-by-40 ]; - maintainers = teams.rocm.members; - platforms = platforms.linux; + maintainers = lib.teams.rocm.members; + platforms = lib.platforms.linux; }; } 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 dfbb67343e3f4..7712c0fd87604 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; { - maintainers = teams.rocm.members; + meta = { + maintainers = lib.teams.rocm.members; }; } diff --git a/pkgs/development/rocm-modules/6/migraphx/default.nix b/pkgs/development/rocm-modules/6/migraphx/default.nix index 137f3a2347087..d44b79ef721eb 100644 --- a/pkgs/development/rocm-modules/6/migraphx/default.nix +++ b/pkgs/development/rocm-modules/6/migraphx/default.nix @@ -176,12 +176,12 @@ stdenv.mkDerivation (finalAttrs: { repo = finalAttrs.src.repo; }; - meta = with lib; { + meta = { description = "AMD's graph optimization engine"; homepage = "https://github.com/ROCm/AMDMIGraphX"; - license = with licenses; [ mit ]; - maintainers = teams.rocm.members; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + maintainers = lib.teams.rocm.members; + platforms = lib.platforms.linux; broken = true; }; }) diff --git a/pkgs/development/rocm-modules/6/rdc/default.nix b/pkgs/development/rocm-modules/6/rdc/default.nix index 2422ef71579c7..ab957670e665f 100644 --- a/pkgs/development/rocm-modules/6/rdc/default.nix +++ b/pkgs/development/rocm-modules/6/rdc/default.nix @@ -130,12 +130,12 @@ stdenv.mkDerivation (finalAttrs: { repo = 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 ]; - maintainers = teams.rocm.members; - platforms = platforms.linux; + license = with lib.licenses; [ mit ]; + maintainers = lib.teams.rocm.members; + platforms = lib.platforms.linux; # broken = versions.minor finalAttrs.version != versions.minor rocm-smi.version || versionAtLeast finalAttrs.version "7.0.0"; broken = true; # Too many errors, unsure how to fix }; diff --git a/pkgs/development/tcl-modules/by-name/ex/expect/package.nix b/pkgs/development/tcl-modules/by-name/ex/expect/package.nix index ae1c8ae21cc1b..595b5d0fcf61c 100644 --- a/pkgs/development/tcl-modules/by-name/ex/expect/package.nix +++ b/pkgs/development/tcl-modules/by-name/ex/expect/package.nix @@ -68,12 +68,12 @@ tcl.mkTclDerivation rec { "dev" ]; - meta = with lib; { + meta = { description = "Tool for automating interactive applications"; homepage = "https://expect.sourceforge.net/"; - license = licenses.publicDomain; - platforms = platforms.unix; + license = lib.licenses.publicDomain; + platforms = lib.platforms.unix; mainProgram = "expect"; - maintainers = with maintainers; [ SuperSandro2000 ]; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/tcl-modules/by-name/in/incrtcl/package.nix b/pkgs/development/tcl-modules/by-name/in/incrtcl/package.nix index 2da1f8192428b..ca8f54c51570e 100644 --- a/pkgs/development/tcl-modules/by-name/in/incrtcl/package.nix +++ b/pkgs/development/tcl-modules/by-name/in/incrtcl/package.nix @@ -40,11 +40,11 @@ mkTclDerivation rec { "man" ]; - meta = with lib; { + meta = { homepage = "https://incrtcl.sourceforge.net/"; description = "Object Oriented Enhancements for Tcl/Tk"; - license = licenses.tcltk; - platforms = platforms.unix; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.tcltk; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/development/tcl-modules/by-name/it/itktcl/package.nix b/pkgs/development/tcl-modules/by-name/it/itktcl/package.nix index 7d856b6b18833..cf7336834ab35 100644 --- a/pkgs/development/tcl-modules/by-name/it/itktcl/package.nix +++ b/pkgs/development/tcl-modules/by-name/it/itktcl/package.nix @@ -42,11 +42,11 @@ mkTclDerivation rec { "man" ]; - meta = with lib; { + meta = { homepage = "https://incrtcl.sourceforge.net/"; description = "Mega-widget toolkit for incr Tk"; - license = licenses.tcltk; - platforms = platforms.unix; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.tcltk; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/development/tcl-modules/by-name/mu/mustache-tcl/package.nix b/pkgs/development/tcl-modules/by-name/mu/mustache-tcl/package.nix index ff61e9a8d94bf..b64329b3d974f 100644 --- a/pkgs/development/tcl-modules/by-name/mu/mustache-tcl/package.nix +++ b/pkgs/development/tcl-modules/by-name/mu/mustache-tcl/package.nix @@ -26,11 +26,11 @@ mkTclDerivation rec { cp $src/pkgIndex.tcl $out/lib/mustache-tcl/pkgIndex.tcl ''; - meta = with lib; { + meta = { homepage = "https://github.com/ianka/mustache.tcl"; description = "Tcl implementation of the mustache templating language"; - license = licenses.bsd2; - platforms = platforms.all; - maintainers = with maintainers; [ nat-418 ]; + license = lib.licenses.bsd2; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ nat-418 ]; }; } diff --git a/pkgs/development/tcl-modules/by-name/tc/tcl-fcgi/package.nix b/pkgs/development/tcl-modules/by-name/tc/tcl-fcgi/package.nix index 6f281c8289082..1d7fa4c1bb93b 100644 --- a/pkgs/development/tcl-modules/by-name/tc/tcl-fcgi/package.nix +++ b/pkgs/development/tcl-modules/by-name/tc/tcl-fcgi/package.nix @@ -25,11 +25,11 @@ mkTclDerivation rec { cp -r $src/tcl-src/* $out/lib/tcl-fcgi/ ''; - meta = with lib; { + meta = { homepage = "https://github.com/mpcjanssen/tcl-fcgi"; description = "Tcl interface for the FastCGI protocol"; - license = licenses.bsd2; + license = lib.licenses.bsd2; platforms = tclx.meta.platforms; - maintainers = with maintainers; [ nat-418 ]; + maintainers = with lib.maintainers; [ nat-418 ]; }; } diff --git a/pkgs/development/tcl-modules/by-name/tc/tclreadline/package.nix b/pkgs/development/tcl-modules/by-name/tc/tclreadline/package.nix index 90c8fa7f3e6cb..cb403532d3efe 100644 --- a/pkgs/development/tcl-modules/by-name/tc/tclreadline/package.nix +++ b/pkgs/development/tcl-modules/by-name/tc/tclreadline/package.nix @@ -58,11 +58,11 @@ mkTclDerivation rec { done ''; - meta = with lib; { + meta = { description = "GNU readline for interactive tcl shells"; homepage = "https://github.com/flightaware/tclreadline"; - license = licenses.bsd3; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/tcl-modules/by-name/ti/tix/package.nix b/pkgs/development/tcl-modules/by-name/ti/tix/package.nix index 9257d4a760aad..05dc008784f39 100644 --- a/pkgs/development/tcl-modules/by-name/ti/tix/package.nix +++ b/pkgs/development/tcl-modules/by-name/ti/tix/package.nix @@ -53,11 +53,11 @@ tcl.mkTclDerivation { "--libdir=\${prefix}/lib" ]; - meta = with lib; { + meta = { description = "Widget library for Tcl/Tk"; homepage = "https://tix.sourceforge.net/"; - platforms = platforms.all; - license = with licenses; [ + platforms = lib.platforms.all; + license = with lib.licenses; [ bsd2 # tix gpl2 # patches from portage ]; diff --git a/pkgs/development/tcl-modules/critcl/default.nix b/pkgs/development/tcl-modules/critcl/default.nix index 045b9a28958c5..c772b0813d3b0 100644 --- a/pkgs/development/tcl-modules/critcl/default.nix +++ b/pkgs/development/tcl-modules/critcl/default.nix @@ -37,12 +37,12 @@ mkTclDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Easily embed C code in Tcl"; homepage = "https://andreas-kupries.github.io/critcl/"; - license = licenses.tcltk; + license = lib.licenses.tcltk; mainProgram = "critcl"; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/tools/amazon-qldb-shell/default.nix b/pkgs/development/tools/amazon-qldb-shell/default.nix index 6cd0c01ad20ac..33403bd38e635 100644 --- a/pkgs/development/tools/amazon-qldb-shell/default.nix +++ b/pkgs/development/tools/amazon-qldb-shell/default.nix @@ -36,11 +36,11 @@ let passthru.tests.version = testers.testVersion { inherit package; }; - meta = with lib; { + meta = { description = "Interface to send PartiQL statements to Amazon Quantum Ledger Database (QLDB)"; homepage = "https://github.com/awslabs/amazon-qldb-shell"; - license = licenses.asl20; - maintainers = [ maintainers.terlar ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.terlar ]; mainProgram = "qldb"; # See https://hydra.nixos.org/build/255146098/log. broken = true; # Added 2024-04-06 diff --git a/pkgs/development/tools/ammonite/default.nix b/pkgs/development/tools/ammonite/default.nix index 5e550fec189a5..4d2961b6291e1 100644 --- a/pkgs/development/tools/ammonite/default.nix +++ b/pkgs/development/tools/ammonite/default.nix @@ -73,7 +73,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. @@ -82,10 +82,10 @@ 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; - maintainers = [ maintainers.nequissimus ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.nequissimus ]; mainProgram = "amm"; - platforms = platforms.all; + platforms = lib.platforms.all; }; }; in diff --git a/pkgs/development/tools/analysis/dotenv-linter/default.nix b/pkgs/development/tools/analysis/dotenv-linter/default.nix index aa6bf93b4e2b7..b8aff226be99f 100644 --- a/pkgs/development/tools/analysis/dotenv-linter/default.nix +++ b/pkgs/development/tools/analysis/dotenv-linter/default.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security; - 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/development/tools/analysis/ikos/default.nix b/pkgs/development/tools/analysis/ikos/default.nix index f4ff446abe595..1934bd1870668 100644 --- a/pkgs/development/tools/analysis/ikos/default.nix +++ b/pkgs/development/tools/analysis/ikos/default.nix @@ -75,10 +75,10 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { homepage = "https://github.com/NASA-SW-VnV/ikos"; description = "Static analyzer for C/C++ based on the theory of Abstract Interpretation"; - license = licenses.nasa13; - maintainers = with maintainers; [ atnnn ]; + license = lib.licenses.nasa13; + maintainers = with lib.maintainers; [ atnnn ]; }; } 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 dab9eb7504ab1..09baa7ecd39e3 100644 --- a/pkgs/development/tools/analysis/include-what-you-use/default.nix +++ b/pkgs/development/tools/analysis/include-what-you-use/default.nix @@ -50,7 +50,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 @@ -61,7 +61,7 @@ stdenv.mkDerivation rec { replacing #includes with forward-declares when possible. ''; homepage = "https://include-what-you-use.org"; - license = licenses.bsd3; - platforms = platforms.unix; + license = lib.licenses.bsd3; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/analysis/jdepend/default.nix b/pkgs/development/tools/analysis/jdepend/default.nix index 6ba10c6611c7f..7bb6a9cd40c38 100644 --- a/pkgs/development/tools/analysis/jdepend/default.nix +++ b/pkgs/development/tools/analysis/jdepend/default.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/development/tools/analysis/massif-visualizer/default.nix b/pkgs/development/tools/analysis/massif-visualizer/default.nix index d459bd320ac16..18bd939878b78 100644 --- a/pkgs/development/tools/analysis/massif-visualizer/default.nix +++ b/pkgs/development/tools/analysis/massif-visualizer/default.nix @@ -43,11 +43,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/qcachegrind/default.nix b/pkgs/development/tools/analysis/qcachegrind/default.nix index 352160006742a..5b63d7d41062d 100644 --- a/pkgs/development/tools/analysis/qcachegrind/default.nix +++ b/pkgs/development/tools/analysis/qcachegrind/default.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation { wrapQtApp "$out/bin/qcachegrind" ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Qt GUI to visualize profiling data"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ periklis ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ periklis ]; }; } diff --git a/pkgs/development/tools/analysis/rizin/cutter.nix b/pkgs/development/tools/analysis/rizin/cutter.nix index 213894fa62e36..b611451b6834b 100644 --- a/pkgs/development/tools/analysis/rizin/cutter.nix +++ b/pkgs/development/tools/analysis/rizin/cutter.nix @@ -97,12 +97,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/sigdb.nix b/pkgs/development/tools/analysis/rizin/sigdb.nix index 3aa1c91f33a18..5bbe6685ca8b3 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/sparse/default.nix b/pkgs/development/tools/analysis/sparse/default.nix index 1d0f338228e93..4788e378ad1fd 100644 --- a/pkgs/development/tools/analysis/sparse/default.nix +++ b/pkgs/development/tools/analysis/sparse/default.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { 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/development/tools/analysis/tflint-plugins/tflint-ruleset-google.nix b/pkgs/development/tools/analysis/tflint-plugins/tflint-ruleset-google.nix index 07792ae475cb3..fd2d0e3644629 100644 --- a/pkgs/development/tools/analysis/tflint-plugins/tflint-ruleset-google.nix +++ b/pkgs/development/tools/analysis/tflint-plugins/tflint-ruleset-google.nix @@ -29,11 +29,11 @@ buildGoModule rec { mv $out/bin/${pname} $out/github.com/terraform-linters/${pname}/${version}/ ''; - 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/apko/default.nix b/pkgs/development/tools/apko/default.nix index 1d3f7403c6920..43d09fbf5bab1 100644 --- a/pkgs/development/tools/apko/default.nix +++ b/pkgs/development/tools/apko/default.nix @@ -74,13 +74,13 @@ buildGoModule rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { homepage = "https://apko.dev/"; changelog = "https://github.com/chainguard-dev/apko/blob/main/NEWS.md"; description = "Build OCI images using APK directly without Dockerfile"; mainProgram = "apko"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jk developer-guy emilylange diff --git a/pkgs/development/tools/asn2quickder/default.nix b/pkgs/development/tools/asn2quickder/default.nix index be236cb5464d9..9b758d1c333e7 100644 --- a/pkgs/development/tools/asn2quickder/default.nix +++ b/pkgs/development/tools/asn2quickder/default.nix @@ -44,11 +44,11 @@ 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; - maintainers = with maintainers; [ leenaars ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ leenaars ]; }; } diff --git a/pkgs/development/tools/bashate/default.nix b/pkgs/development/tools/bashate/default.nix index 3cbf97398953a..83fef72651351 100644 --- a/pkgs/development/tools/bashate/default.nix +++ b/pkgs/development/tools/bashate/default.nix @@ -39,11 +39,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "bashate" ]; - meta = with lib; { + meta = { description = "Style enforcement for bash programs"; mainProgram = "bashate"; homepage = "https://opendev.org/openstack/bashate"; - license = with licenses; [ asl20 ]; - maintainers = teams.openstack.members ++ (with maintainers; [ fab ]); + license = with lib.licenses; [ asl20 ]; + maintainers = lib.teams.openstack.members ++ (with lib.maintainers; [ fab ]); }; } diff --git a/pkgs/development/tools/boomerang/default.nix b/pkgs/development/tools/boomerang/default.nix index ca639ca9b254d..b96d48068359a 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/alibuild/default.nix b/pkgs/development/tools/build-managers/alibuild/default.nix index ff502781d3170..3b435e0a91a0d 100644 --- a/pkgs/development/tools/build-managers/alibuild/default.nix +++ b/pkgs/development/tools/build-managers/alibuild/default.nix @@ -22,10 +22,10 @@ python.pkgs.buildPythonApplication rec { distro ]; - meta = with lib; { + meta = { homepage = "https://alisw.github.io/alibuild/"; description = "Build tool for ALICE experiment software"; - license = licenses.gpl3; - maintainers = with maintainers; [ ktf ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ ktf ]; }; } diff --git a/pkgs/development/tools/build-managers/buck/default.nix b/pkgs/development/tools/build-managers/buck/default.nix index c4066663a9d93..a5010236588ca 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 0e410058be416..5c40e196d62e8 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 01a1b52dcf60c..5a8ffc0eb4581 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/drake/default.nix b/pkgs/development/tools/build-managers/drake/default.nix index 3ccf765d354e2..a96c917ea3b94 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/fac/default.nix b/pkgs/development/tools/build-managers/fac/default.nix index ce8b4a52cf2b0..2fa0c1d90e44c 100644 --- a/pkgs/development/tools/build-managers/fac/default.nix +++ b/pkgs/development/tools/build-managers/fac/default.nix @@ -36,7 +36,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 @@ -51,9 +51,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/development/tools/build-managers/moon/default.nix b/pkgs/development/tools/build-managers/moon/default.nix index dac18aead95cf..bd592aaf96080 100644 --- a/pkgs/development/tools/build-managers/moon/default.nix +++ b/pkgs/development/tools/build-managers/moon/default.nix @@ -37,11 +37,11 @@ rustPlatform.buildRustPackage rec { # Some tests fail, because test using internet connection and install NodeJS by example doCheck = false; - meta = with lib; { + meta = { description = "Task runner and repo management tool for the web ecosystem, written in Rust"; mainProgram = "moon"; homepage = "https://github.com/moonrepo/moon"; - license = licenses.mit; - maintainers = with maintainers; [ flemzord ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flemzord ]; }; } diff --git a/pkgs/development/tools/build-managers/qbs/default.nix b/pkgs/development/tools/build-managers/qbs/default.nix index fb2cb702e5b57..9bac8e827fc09 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/rake/default.nix b/pkgs/development/tools/build-managers/rake/default.nix index 73dbe5bea416c..56037ee6555b3 100644 --- a/pkgs/development/tools/build-managers/rake/default.nix +++ b/pkgs/development/tools/build-managers/rake/default.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/development/tools/build-managers/shards/default.nix b/pkgs/development/tools/build-managers/shards/default.nix index dd4a752025617..8af98573f2600 100644 --- a/pkgs/development/tools/build-managers/shards/default.nix +++ b/pkgs/development/tools/build-managers/shards/default.nix @@ -27,11 +27,11 @@ let # 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/development/tools/build-managers/xmake/default.nix b/pkgs/development/tools/build-managers/xmake/default.nix index cc741ffbf65e9..5b2152e64681b 100644 --- a/pkgs/development/tools/build-managers/xmake/default.nix +++ b/pkgs/development/tools/build-managers/xmake/default.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Cross-platform build utility based on Lua"; homepage = "https://xmake.io"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rewine rennsax ]; diff --git a/pkgs/development/tools/cadre/default.nix b/pkgs/development/tools/cadre/default.nix index 1694f36647ee4..d64c41b3d7d15 100644 --- a/pkgs/development/tools/cadre/default.nix +++ b/pkgs/development/tools/cadre/default.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/development/tools/ceedling/default.nix b/pkgs/development/tools/ceedling/default.nix index 9648000d679e3..564ac83c71ca4 100644 --- a/pkgs/development/tools/ceedling/default.nix +++ b/pkgs/development/tools/ceedling/default.nix @@ -8,10 +8,10 @@ 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; + license = lib.licenses.mit; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/cmake-format/default.nix b/pkgs/development/tools/cmake-format/default.nix index 37d7b3219701f..d46e910553ca2 100644 --- a/pkgs/development/tools/cmake-format/default.nix +++ b/pkgs/development/tools/cmake-format/default.nix @@ -34,12 +34,12 @@ buildPythonApplication rec { doCheck = false; - meta = with lib; { + meta = { description = "Source code formatter for cmake listfiles"; homepage = "https://github.com/cheshirekow/cmake_format"; - license = licenses.gpl3; - maintainers = [ maintainers.tobim ]; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.tobim ]; mainProgram = "cmake-format"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/development/tools/cocoapods/default.nix b/pkgs/development/tools/cocoapods/default.nix index ced83c48468e2..37bdfb8775405 100644 --- a/pkgs/development/tools/cocoapods/default.nix +++ b/pkgs/development/tools/cocoapods/default.nix @@ -16,12 +16,12 @@ 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; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.darwin; + maintainers = with lib.maintainers; [ peterromfeldhk ]; mainProgram = "pod"; diff --git a/pkgs/development/tools/cocogitto/default.nix b/pkgs/development/tools/cocogitto/default.nix index 4b0b7d5eb433c..832a251777718 100644 --- a/pkgs/development/tools/cocogitto/default.nix +++ b/pkgs/development/tools/cocogitto/default.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/development/tools/compass/default.nix b/pkgs/development/tools/compass/default.nix index c8e214c1cffa4..f30e4bce5aeab 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/pkg.nix b/pkgs/development/tools/continuous-integration/buildbot/pkg.nix index 44c4e9591116d..a5b28bbe2bcc5 100644 --- a/pkgs/development/tools/continuous-integration/buildbot/pkg.nix +++ b/pkgs/development/tools/continuous-integration/buildbot/pkg.nix @@ -23,10 +23,10 @@ buildPythonPackage { disabled = !isPy3k; - meta = with lib; { + meta = { homepage = "https://buildbot.net/"; description = "Buildbot Packaging Helper"; - maintainers = teams.buildbot.members; - license = licenses.gpl2; + maintainers = lib.teams.buildbot.members; + 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 cfbc3b33f5334..ffb3c5d9e332f 100644 --- a/pkgs/development/tools/continuous-integration/buildbot/worker.nix +++ b/pkgs/development/tools/continuous-integration/buildbot/worker.nix @@ -51,10 +51,10 @@ buildPythonPackage ({ smoke-test = nixosTests.buildbot; }; - meta = with lib; { + meta = { homepage = "https://buildbot.net/"; description = "Buildbot Worker Daemon"; - maintainers = teams.buildbot.members; - license = licenses.gpl2; + maintainers = lib.teams.buildbot.members; + 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 5258908cdef4d..e7fddbf9f6c3c 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 @@ -26,11 +26,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/corundum/default.nix b/pkgs/development/tools/corundum/default.nix index 8864f859a583d..6a7223f2e4a3f 100644 --- a/pkgs/development/tools/corundum/default.nix +++ b/pkgs/development/tools/corundum/default.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/development/tools/cotton/default.nix b/pkgs/development/tools/cotton/default.nix index a8271a144fee8..8dd16dcb87739 100644 --- a/pkgs/development/tools/cotton/default.nix +++ b/pkgs/development/tools/cotton/default.nix @@ -27,12 +27,12 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ]; - meta = with lib; { + meta = { description = "Package manager for JavaScript projects"; mainProgram = "cotton"; homepage = "https://github.com/danielhuang/cotton"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ dit7ya figsoda ]; diff --git a/pkgs/development/tools/database/dynein/default.nix b/pkgs/development/tools/database/dynein/default.nix index d48d25f040264..daa1849e52745 100644 --- a/pkgs/development/tools/database/dynein/default.nix +++ b/pkgs/development/tools/database/dynein/default.nix @@ -37,12 +37,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; - maintainers = with maintainers; [ pimeys ]; + license = lib.licenses.asl20; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ pimeys ]; }; } diff --git a/pkgs/development/tools/database/indradb/default.nix b/pkgs/development/tools/database/indradb/default.nix index 87ff3688641ae..39a893de7340e 100644 --- a/pkgs/development/tools/database/indradb/default.nix +++ b/pkgs/development/tools/database/indradb/default.nix @@ -14,12 +14,12 @@ let sha256 = "sha256-g4Jam7yxMc+piYQzgMvVsNTF+ce1U3thzYl/M9rKG4o="; }; - meta = with lib; { + meta = { 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/pgsync/default.nix b/pkgs/development/tools/database/pgsync/default.nix index d1ae5a11b34a7..b5c74595dcfc0 100644 --- a/pkgs/development/tools/database/pgsync/default.nix +++ b/pkgs/development/tools/database/pgsync/default.nix @@ -11,10 +11,10 @@ bundlerApp rec { 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/development/tools/database/prisma-engines/default.nix b/pkgs/development/tools/database/prisma-engines/default.nix index bc296c87e3a3f..1d529cf9cecd3 100644 --- a/pkgs/development/tools/database/prisma-engines/default.nix +++ b/pkgs/development/tools/database/prisma-engines/default.nix @@ -66,13 +66,13 @@ rustPlatform.buildRustPackage rec { # Tests are long to compile doCheck = false; - 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; [ pimeys tomhoule aqrln diff --git a/pkgs/development/tools/database/replibyte/default.nix b/pkgs/development/tools/database/replibyte/default.nix index a71e141362394..e46031fd0da72 100644 --- a/pkgs/development/tools/database/replibyte/default.nix +++ b/pkgs/development/tools/database/replibyte/default.nix @@ -44,11 +44,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/development/tools/database/sqlitebrowser/default.nix b/pkgs/development/tools/database/sqlitebrowser/default.nix index bbd3453ce1bad..5180cde8752ab 100644 --- a/pkgs/development/tools/database/sqlitebrowser/default.nix +++ b/pkgs/development/tools/database/sqlitebrowser/default.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { description = "DB Browser for SQLite"; mainProgram = "sqlitebrowser"; homepage = "https://sqlitebrowser.org/"; - license = licenses.gpl3; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/tools/database/surrealdb-migrations/default.nix b/pkgs/development/tools/database/surrealdb-migrations/default.nix index e3dc5c8d62bc0..611da35eaf698 100644 --- a/pkgs/development/tools/database/surrealdb-migrations/default.nix +++ b/pkgs/development/tools/database/surrealdb-migrations/default.nix @@ -56,11 +56,11 @@ rustPlatform.buildRustPackage rec { }; }; - 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/development/tools/devbox/default.nix b/pkgs/development/tools/devbox/default.nix index 17e0daee15175..6fddae3616aed 100644 --- a/pkgs/development/tools/devbox/default.nix +++ b/pkgs/development/tools/devbox/default.nix @@ -38,11 +38,11 @@ buildGoModule rec { --zsh <($out/bin/devbox completion zsh) ''; - meta = with lib; { + meta = { description = "Instant, easy, predictable shells and containers"; homepage = "https://www.jetpack.io/devbox"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ urandom lagoja ]; diff --git a/pkgs/development/tools/esbuild/netlify.nix b/pkgs/development/tools/esbuild/netlify.nix index 5431b56ddbf7e..927830b6c793e 100644 --- a/pkgs/development/tools/esbuild/netlify.nix +++ b/pkgs/development/tools/esbuild/netlify.nix @@ -24,11 +24,11 @@ buildGoModule rec { }; }; - 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 7bbeee4a15363..958e07dab50af 100644 --- a/pkgs/development/tools/flatpak-builder/default.nix +++ b/pkgs/development/tools/flatpak-builder/default.nix @@ -153,12 +153,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 a00ddf3cb699d..8b763c1ad1cba 100644 --- a/pkgs/development/tools/gammaray/default.nix +++ b/pkgs/development/tools/gammaray/default.nix @@ -60,12 +60,12 @@ 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"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ rewine ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rewine ]; mainProgram = "gammaray"; }; } diff --git a/pkgs/development/tools/gauge/default.nix b/pkgs/development/tools/gauge/default.nix index 841cd521057b2..6edc9c8e297fa 100644 --- a/pkgs/development/tools/gauge/default.nix +++ b/pkgs/development/tools/gauge/default.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/development/tools/geckodriver/default.nix b/pkgs/development/tools/geckodriver/default.nix index 85c58a9d77bb1..41bc312294a1a 100644 --- a/pkgs/development/tools/geckodriver/default.nix +++ b/pkgs/development/tools/geckodriver/default.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { Security ]; - 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/development/tools/git-ps-rs/default.nix b/pkgs/development/tools/git-ps-rs/default.nix index 10299c5d439b8..2270298b24fad 100644 --- a/pkgs/development/tools/git-ps-rs/default.nix +++ b/pkgs/development/tools/git-ps-rs/default.nix @@ -29,11 +29,11 @@ rustPlatform.buildRustPackage rec { dbus ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ Security ]; - 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/development/tools/github-changelog-generator/default.nix b/pkgs/development/tools/github-changelog-generator/default.nix index 4faae1cfe0e6c..6df22424bca27 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/github/cligh/default.nix b/pkgs/development/tools/github/cligh/default.nix index c6ccd1588cea4..fdbd87f6651df 100644 --- a/pkgs/development/tools/github/cligh/default.nix +++ b/pkgs/development/tools/github/cligh/default.nix @@ -24,7 +24,7 @@ buildPythonApplication rec { pygithub ]; - meta = with lib; { + meta = { homepage = "http://the-brannons.com/software/cligh.html"; description = "Simple command-line interface to the facilities of Github"; mainProgram = "cligh"; @@ -35,8 +35,8 @@ buildPythonApplication rec { in the early stage of development. It is by no means feature-complete. A friend and I consider it useful, but others may not. ''; - platforms = platforms.all; - license = licenses.bsd3; + platforms = lib.platforms.all; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/development/tools/glslviewer/default.nix b/pkgs/development/tools/glslviewer/default.nix index dc2dc3f7c457c..b497799507291 100644 --- a/pkgs/development/tools/glslviewer/default.nix +++ b/pkgs/development/tools/glslviewer/default.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { ffmpeg ] ++ lib.optional stdenv.hostPlatform.isDarwin Cocoa; - 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/development/tools/gptcommit/default.nix b/pkgs/development/tools/gptcommit/default.nix index 6ef0590ffbf5a..e7af0b3cbe1c2 100644 --- a/pkgs/development/tools/gptcommit/default.nix +++ b/pkgs/development/tools/gptcommit/default.nix @@ -42,12 +42,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/development/tools/graphql-client/default.nix b/pkgs/development/tools/graphql-client/default.nix index 8a9817bd430d4..aaaf140796948 100644 --- a/pkgs/development/tools/graphql-client/default.nix +++ b/pkgs/development/tools/graphql-client/default.nix @@ -27,14 +27,14 @@ rustPlatform.buildRustPackage rec { openssl ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ Security ]; - 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/development/tools/hotdoc/default.nix b/pkgs/development/tools/hotdoc/default.nix index a8c1b30f53f8a..9d1bc1fa4ea3f 100644 --- a/pkgs/development/tools/hotdoc/default.nix +++ b/pkgs/development/tools/hotdoc/default.nix @@ -123,10 +123,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/htmlq/default.nix b/pkgs/development/tools/htmlq/default.nix index 120521c71b6cc..44eb419a5f6f9 100644 --- a/pkgs/development/tools/htmlq/default.nix +++ b/pkgs/development/tools/htmlq/default.nix @@ -23,11 +23,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/development/tools/irony-server/default.nix b/pkgs/development/tools/irony-server/default.nix index 2a2b97222d19b..df196cf112eb3 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/jazzy/default.nix b/pkgs/development/tools/jazzy/default.nix index ef04d10d5c4a5..52f088b9524c8 100644 --- a/pkgs/development/tools/jazzy/default.nix +++ b/pkgs/development/tools/jazzy/default.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; [ peterromfeldhk nicknovitski ]; diff --git a/pkgs/development/tools/kdash/default.nix b/pkgs/development/tools/kdash/default.nix index fe6d7f868979b..2085142d19519 100644 --- a/pkgs/development/tools/kdash/default.nix +++ b/pkgs/development/tools/kdash/default.nix @@ -35,11 +35,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-jm0UCKDy6TrogMPavB86lvk8yKZXubTGGbApk+oP2RQ="; - 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/development/tools/kubie/default.nix b/pkgs/development/tools/kubie/default.nix index 9ac575221749a..d3c0305c0283f 100644 --- a/pkgs/development/tools/kubie/default.nix +++ b/pkgs/development/tools/kubie/default.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { installShellCompletion completion/kubie.bash ''; - 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/development/tools/kustomize/3.nix b/pkgs/development/tools/kustomize/3.nix index 1d8382f01a555..4e72e6bd024f7 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 e7f9c4e978fed..aba1db270bd30 100644 --- a/pkgs/development/tools/kustomize/4.nix +++ b/pkgs/development/tools/kustomize/4.nix @@ -42,7 +42,7 @@ buildGoModule rec { --zsh <($out/bin/kustomize completion zsh) ''; - meta = with lib; { + meta = { description = "Customization of kubernetes YAML configurations"; mainProgram = "kustomize"; longDescription = '' @@ -51,8 +51,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/default.nix b/pkgs/development/tools/kustomize/default.nix index fec68830047f5..e1b74740a7dfa 100644 --- a/pkgs/development/tools/kustomize/default.nix +++ b/pkgs/development/tools/kustomize/default.nix @@ -40,7 +40,7 @@ buildGoModule rec { --zsh <($out/bin/kustomize completion zsh) ''; - meta = with lib; { + meta = { description = "Customization of kubernetes YAML configurations"; mainProgram = "kustomize"; longDescription = '' @@ -49,8 +49,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 704754d945a20..606d55fe847a7 100644 --- a/pkgs/development/tools/kustomize/kustomize-sops.nix +++ b/pkgs/development/tools/kustomize/kustomize-sops.nix @@ -27,14 +27,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 1555dc35e824a..ee347a86788ce 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 7f43ffe95f5d9..713ee60220076 100644 --- a/pkgs/development/tools/language-servers/fortls/default.nix +++ b/pkgs/development/tools/language-servers/fortls/default.nix @@ -28,11 +28,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 419f372c9be1b..7ec61bd2c22eb 100644 --- a/pkgs/development/tools/language-servers/fortran-language-server/default.nix +++ b/pkgs/development/tools/language-servers/fortran-language-server/default.nix @@ -16,11 +16,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/ldid/default.nix b/pkgs/development/tools/ldid/default.nix index c0c2645ab0946..47a8b2a0c72c4 100644 --- a/pkgs/development/tools/ldid/default.nix +++ b/pkgs/development/tools/ldid/default.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Link Identity Editor"; homepage = "https://cydia.saurik.com/info/ldid/"; - maintainers = with maintainers; [ wegank ]; - platforms = platforms.unix; - license = licenses.agpl3Only; + maintainers = with lib.maintainers; [ wegank ]; + platforms = lib.platforms.unix; + license = lib.licenses.agpl3Only; }; } diff --git a/pkgs/development/tools/license_finder/default.nix b/pkgs/development/tools/license_finder/default.nix index c30860a9a4ba2..6eb7fe397a9ce 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/marksman/default.nix b/pkgs/development/tools/marksman/default.nix index 73404de176247..fb0923d4726a0 100644 --- a/pkgs/development/tools/marksman/default.nix +++ b/pkgs/development/tools/marksman/default.nix @@ -43,7 +43,7 @@ buildDotnetModule rec { }; }; - meta = with lib; { + meta = { description = "Language Server for Markdown"; longDescription = '' Marksman is a program that integrates with your editor @@ -54,8 +54,8 @@ buildDotnetModule rec { references that enable Zettelkasten-like note taking. ''; homepage = "https://github.com/artempyanykh/marksman"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ stasjok plusgut ]; diff --git a/pkgs/development/tools/minizinc/default.nix b/pkgs/development/tools/minizinc/default.nix index 346fdb18811dc..96f6e8ffb4472 100644 --- a/pkgs/development/tools/minizinc/default.nix +++ b/pkgs/development/tools/minizinc/default.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation (finalAttrs: { simple = callPackage ./simple-test { }; }; - meta = with lib; { + meta = { homepage = "https://www.minizinc.org/"; description = "Medium-level constraint modelling language"; longDescription = '' @@ -62,8 +62,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; - maintainers = [ maintainers.sheenobu ]; + license = lib.licenses.mpl20; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.sheenobu ]; }; }) diff --git a/pkgs/development/tools/minizinc/ide.nix b/pkgs/development/tools/minizinc/ide.nix index 3c348570f6bb0..9124abc14c004 100644 --- a/pkgs/development/tools/minizinc/ide.nix +++ b/pkgs/development/tools/minizinc/ide.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { --set QT_QPA_PLATFORM_PLUGIN_PATH "${qtbase}/lib/qt-6/plugins/platforms" ''; - meta = with lib; { + meta = { homepage = "https://www.minizinc.org/"; description = "IDE for MiniZinc, a medium-level constraint modelling language"; mainProgram = "MiniZincIDE"; @@ -64,8 +64,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 4fa03389760d5..8751317729fa3 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.17.x.nix b/pkgs/development/tools/misc/automake/automake-1.17.x.nix index 91f8857c0a229..7aa29d7b603d8 100644 --- a/pkgs/development/tools/misc/automake/automake-1.17.x.nix +++ b/pkgs/development/tools/misc/automake/automake-1.17.x.nix @@ -36,16 +36,16 @@ stdenv.mkDerivation rec { # "fixed" path in generated files! dontPatchShebangs = true; - meta = with lib; { + meta = { branch = "1.17"; 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/libbfd.nix b/pkgs/development/tools/misc/binutils/2.38/libbfd.nix index c24d238261155..c40deb2a9e46e 100644 --- a/pkgs/development/tools/misc/binutils/2.38/libbfd.nix +++ b/pkgs/development/tools/misc/binutils/2.38/libbfd.nix @@ -64,7 +64,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 @@ -73,8 +73,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 90377382eafb5..b6cbfaabd66d4 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/libbfd.nix b/pkgs/development/tools/misc/binutils/libbfd.nix index 0985fff642cde..443c90ef83c87 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 e118e56d59aee..496dc83620f10 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 279c1238f055a..98bfab55f6b9b 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/creduce/default.nix b/pkgs/development/tools/misc/creduce/default.nix index a893a0acb8a18..07e84659571bd 100644 --- a/pkgs/development/tools/misc/creduce/default.nix +++ b/pkgs/development/tools/misc/creduce/default.nix @@ -80,12 +80,12 @@ stdenv.mkDerivation rec { 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 @@ -94,6 +94,6 @@ stdenv.mkDerivation rec { 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/cvise/default.nix b/pkgs/development/tools/misc/cvise/default.nix index 36804494f921d..7efe41006a61d 100644 --- a/pkgs/development/tools/misc/cvise/default.nix +++ b/pkgs/development/tools/misc/cvise/default.nix @@ -78,11 +78,11 @@ buildPythonApplication rec { "test_simple_reduction" ]; - meta = with lib; { + meta = { homepage = "https://github.com/marxin/cvise"; description = "Super-parallel Python port of C-Reduce"; - license = licenses.ncsa; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.ncsa; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/tools/misc/dura/default.nix b/pkgs/development/tools/misc/dura/default.nix index 2b1e38d295aa8..36bb4c2a166ab 100644 --- a/pkgs/development/tools/misc/dura/default.nix +++ b/pkgs/development/tools/misc/dura/default.nix @@ -41,7 +41,7 @@ rustPlatform.buildRustPackage rec { pkg-config ]; - meta = with lib; { + meta = { description = "Background process that saves uncommitted changes on git"; mainProgram = "dura"; longDescription = '' @@ -52,7 +52,7 @@ rustPlatform.buildRustPackage rec { checkout a "dura" branch and recover. ''; homepage = "https://github.com/tkellogg/dura"; - license = licenses.asl20; - maintainers = with maintainers; [ drupol ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ drupol ]; }; } diff --git a/pkgs/development/tools/misc/fswatch/default.nix b/pkgs/development/tools/misc/fswatch/default.nix index bce63deb9f039..fc97476da1c50 100644 --- a/pkgs/development/tools/misc/fswatch/default.nix +++ b/pkgs/development/tools/misc/fswatch/default.nix @@ -34,12 +34,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/development/tools/misc/gdbgui/default.nix b/pkgs/development/tools/misc/gdbgui/default.nix index d58d874c7ccaf..30570b976e163 100644 --- a/pkgs/development/tools/misc/gdbgui/default.nix +++ b/pkgs/development/tools/misc/gdbgui/default.nix @@ -43,13 +43,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 1feff837877a0..53c8977ef08f1 100644 --- a/pkgs/development/tools/misc/gede/default.nix +++ b/pkgs/development/tools/misc/gede/default.nix @@ -43,12 +43,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/kdbg/default.nix b/pkgs/development/tools/misc/kdbg/default.nix index f442bd5613414..c73fd7f68b748 100644 --- a/pkgs/development/tools/misc/kdbg/default.nix +++ b/pkgs/development/tools/misc/kdbg/default.nix @@ -42,7 +42,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 @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { stepping through code. ''; mainProgram = "kdbg"; - license = licenses.gpl2; - maintainers = [ maintainers.catern ]; + license = lib.licenses.gpl2; + maintainers = [ lib.maintainers.catern ]; }; } diff --git a/pkgs/development/tools/misc/linuxkit/default.nix b/pkgs/development/tools/misc/linuxkit/default.nix index d646d96ea9ef2..d44ca7a9b06cf 100644 --- a/pkgs/development/tools/misc/linuxkit/default.nix +++ b/pkgs/development/tools/misc/linuxkit/default.nix @@ -65,11 +65,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/mdl/default.nix b/pkgs/development/tools/misc/mdl/default.nix index 77720c8435d68..4f03050560511 100644 --- a/pkgs/development/tools/misc/mdl/default.nix +++ b/pkgs/development/tools/misc/mdl/default.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/development/tools/misc/one_gadget/default.nix b/pkgs/development/tools/misc/one_gadget/default.nix index d03d231e3744b..1f8b1de0a8de6 100644 --- a/pkgs/development/tools/misc/one_gadget/default.nix +++ b/pkgs/development/tools/misc/one_gadget/default.nix @@ -19,15 +19,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/development/tools/misc/patchelf/default.nix b/pkgs/development/tools/misc/patchelf/default.nix index 7b65465a2b10e..1c72d8c290b26 100644 --- a/pkgs/development/tools/misc/patchelf/default.nix +++ b/pkgs/development/tools/misc/patchelf/default.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { # https://github.com/NixOS/patchelf/issues/417 && stdenv.cc.targetPrefix == ""; - 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/premake/default.nix b/pkgs/development/tools/misc/premake/default.nix index 1435c2c4c5785..6ed590eb6293e 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 42c927e5b32d6..c252842ffdd3b 100644 --- a/pkgs/development/tools/misc/qtspim/default.nix +++ b/pkgs/development/tools/misc/qtspim/default.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { 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 7b959c4fa1020..38fd326c84404 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/tokei/default.nix b/pkgs/development/tools/misc/tokei/default.nix index a577405c730c6..5fe0ee96a94bc 100644 --- a/pkgs/development/tools/misc/tokei/default.nix +++ b/pkgs/development/tools/misc/tokei/default.nix @@ -31,17 +31,17 @@ rustPlatform.buildRustPackage rec { # enable all output formats buildFeatures = [ "all" ]; - meta = with lib; { + meta = { description = "Program that allows you to count your code, quickly"; longDescription = '' Tokei is a program that displays statistics about your code. Tokei will show number of files, total lines within those files and code, comments, and blanks grouped by language. ''; homepage = "https://github.com/XAMPPRocky/tokei"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ gebner ]; + maintainers = with lib.maintainers; [ gebner ]; mainProgram = "tokei"; }; } diff --git a/pkgs/development/tools/misc/travis/default.nix b/pkgs/development/tools/misc/travis/default.nix index 52ae177172d30..06d571221be6b 100644 --- a/pkgs/development/tools/misc/travis/default.nix +++ b/pkgs/development/tools/misc/travis/default.nix @@ -12,12 +12,12 @@ bundlerEnv { passthru.updateScript = bundlerUpdateScript "travis"; - meta = with lib; { + meta = { description = "CLI and Ruby client library for Travis CI"; mainProgram = "travis"; homepage = "https://github.com/travis-ci/travis.rb"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm nicknovitski ]; diff --git a/pkgs/development/tools/misc/usb-modeswitch/data.nix b/pkgs/development/tools/misc/usb-modeswitch/data.nix index 2317c825e5304..f341c8c38da5a 100644 --- a/pkgs/development/tools/misc/usb-modeswitch/data.nix +++ b/pkgs/development/tools/misc/usb-modeswitch/data.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { # the usb_modeswitch.d directory nativeBuildInputs = [ tcl ]; - meta = with lib; { + meta = { description = "Device database and the rules file for 'multi-mode' USB devices"; inherit (usb-modeswitch.meta) license maintainers platforms; }; diff --git a/pkgs/development/tools/misc/usb-modeswitch/default.nix b/pkgs/development/tools/misc/usb-modeswitch/default.nix index 64b80c0392166..c16acb517d117 100644 --- a/pkgs/development/tools/misc/usb-modeswitch/default.nix +++ b/pkgs/development/tools/misc/usb-modeswitch/default.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/development/tools/misc/watson-ruby/default.nix b/pkgs/development/tools/misc/watson-ruby/default.nix index bceddf51643f6..0061a6b6545ac 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 e7dd2ec40735a..9bc4601b56dad 100644 --- a/pkgs/development/tools/misc/whatstyle/default.nix +++ b/pkgs/development/tools/misc/whatstyle/default.nix @@ -27,12 +27,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/xxdiff/default.nix b/pkgs/development/tools/misc/xxdiff/default.nix index 1da47d6c51c57..80047e9546127 100644 --- a/pkgs/development/tools/misc/xxdiff/default.nix +++ b/pkgs/development/tools/misc/xxdiff/default.nix @@ -53,15 +53,15 @@ mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Graphical file and directories comparator and merge tool"; mainProgram = "xxdiff"; homepage = "http://furius.ca/xxdiff/"; - license = licenses.gpl2; - maintainers = with maintainers; [ + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ pSub raskin ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/tools/misc/yakut/default.nix b/pkgs/development/tools/misc/yakut/default.nix index 9fabbb56fd1d1..1759b4f7dc279 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; - maintainers = teams.ororatech.members; + license = lib.licenses.mit; + maintainers = lib.teams.ororatech.members; }; } diff --git a/pkgs/development/tools/ocaml/camlp4/default.nix b/pkgs/development/tools/ocaml/camlp4/default.nix index 89cdc1eb6ec33..9f24c10b6460a 100644 --- a/pkgs/development/tools/ocaml/camlp4/default.nix +++ b/pkgs/development/tools/ocaml/camlp4/default.nix @@ -146,7 +146,7 @@ else dontStrip = true; - meta = with lib; { + meta = { description = "Software system for writing extensible parsers for programming languages"; homepage = "https://github.com/ocaml/camlp4"; platforms = ocaml.meta.platforms or [ ]; diff --git a/pkgs/development/tools/ocaml/camlp5/default.nix b/pkgs/development/tools/ocaml/camlp5/default.nix index 59189e3f2139b..a21d3beb8fc80 100644 --- a/pkgs/development/tools/ocaml/camlp5/default.nix +++ b/pkgs/development/tools/ocaml/camlp5/default.nix @@ -79,16 +79,16 @@ else dontStrip = true; - meta = with lib; { + meta = { description = "Preprocessor-pretty-printer for OCaml"; longDescription = '' Camlp5 is a preprocessor and pretty-printer for OCaml programs. It also provides parsing and printing tools. ''; homepage = "https://camlp5.github.io/"; - license = licenses.bsd3; + license = lib.licenses.bsd3; platforms = ocaml.meta.platforms or [ ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ maggesi vbgl ]; diff --git a/pkgs/development/tools/ocaml/dune/1.nix b/pkgs/development/tools/ocaml/dune/1.nix index c05a03f2700d8..76b5542f02b60 100644 --- a/pkgs/development/tools/ocaml/dune/1.nix +++ b/pkgs/development/tools/ocaml/dune/1.nix @@ -36,11 +36,11 @@ else dontAddStaticConfigureFlags = true; configurePlatforms = [ ]; - meta = with lib; { + meta = { homepage = "https://dune.build/"; description = "Composable build system"; - maintainers = [ maintainers.vbgl ]; - license = licenses.mit; + maintainers = [ lib.maintainers.vbgl ]; + license = lib.licenses.mit; inherit (ocaml.meta) platforms; }; } diff --git a/pkgs/development/tools/ocaml/merlin/default.nix b/pkgs/development/tools/ocaml/merlin/default.nix index 12aaeac1fddda..554043876c0a1 100644 --- a/pkgs/development/tools/ocaml/merlin/default.nix +++ b/pkgs/development/tools/ocaml/merlin/default.nix @@ -47,10 +47,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 10420f81acc65..f65941a34bec0 100644 --- a/pkgs/development/tools/ocaml/merlin/dot-merlin-reader.nix +++ b/pkgs/development/tools/ocaml/merlin/dot-merlin-reader.nix @@ -29,11 +29,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 4d3536ad6524a..94d84ebdff61d 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; [ + license = lib.licenses.lgpl21; + maintainers = with lib.maintainers; [ vbgl maggesi ]; diff --git a/pkgs/development/tools/ocaml/ocaml-recovery-parser/default.nix b/pkgs/development/tools/ocaml/ocaml-recovery-parser/default.nix index 2057bb0c8f3e6..e547a8250c380 100644 --- a/pkgs/development/tools/ocaml/ocaml-recovery-parser/default.nix +++ b/pkgs/development/tools/ocaml/ocaml-recovery-parser/default.nix @@ -35,15 +35,15 @@ lib.throwIf (lib.versionAtLeast ocaml.version "5.0") 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"; }; } diff --git a/pkgs/development/tools/ocaml/ocamlbuild/default.nix b/pkgs/development/tools/ocaml/ocamlbuild/default.nix index a383d37608905..448974ee78b7a 100644 --- a/pkgs/development/tools/ocaml/ocamlbuild/default.nix +++ b/pkgs/development/tools/ocaml/ocamlbuild/default.nix @@ -46,11 +46,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 fee5a45b3f5dc..fe9ae463ea705 100644 --- a/pkgs/development/tools/ocaml/ocamlscript/default.nix +++ b/pkgs/development/tools/ocaml/ocamlscript/default.nix @@ -33,12 +33,12 @@ lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08") 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"; }; } diff --git a/pkgs/development/tools/ocaml/ocp-build/default.nix b/pkgs/development/tools/ocaml/ocp-build/default.nix index d7d780d1a6d59..90db552ca0239 100644 --- a/pkgs/development/tools/ocaml/ocp-build/default.nix +++ b/pkgs/development/tools/ocaml/ocp-build/default.nix @@ -46,7 +46,7 @@ lib.throwIf (lib.versionAtLeast ocaml.version "5.0") 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 @@ -56,8 +56,8 @@ lib.throwIf (lib.versionAtLeast ocaml.version "5.0") 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"; 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 73c834c6624fa..9292c3272cf06 100644 --- a/pkgs/development/tools/ocaml/ocp-indent/default.nix +++ b/pkgs/development/tools/ocaml/ocp-indent/default.nix @@ -24,11 +24,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 ab01fa1a32a81..bda989f71a853 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 df89324aba6ae..dc476806e1bb6 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/flex/2.5.35.nix b/pkgs/development/tools/parsing/flex/2.5.35.nix index e27af76401422..3f31e0e669487 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 c6c62b2cc2dcd..6b702cd954d02 100644 --- a/pkgs/development/tools/parsing/flex/default.nix +++ b/pkgs/development/tools/parsing/flex/default.nix @@ -65,10 +65,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/javacc/default.nix b/pkgs/development/tools/parsing/javacc/default.nix index 8845ae95f2f98..fe7b0bcb87038 100644 --- a/pkgs/development/tools/parsing/javacc/default.nix +++ b/pkgs/development/tools/parsing/javacc/default.nix @@ -54,12 +54,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"; - maintainers = teams.deshaw.members; + maintainers = lib.teams.deshaw.members; }; }) diff --git a/pkgs/development/tools/perseus-cli/default.nix b/pkgs/development/tools/perseus-cli/default.nix index ba37dc5e14178..4454d18d9658f 100644 --- a/pkgs/development/tools/perseus-cli/default.nix +++ b/pkgs/development/tools/perseus-cli/default.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { --prefix PATH : "${lib.makeBinPath [ wasm-pack ]}" ''; - meta = with lib; { + meta = { homepage = "https://arctic-hen7.github.io/perseus"; 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/development/tools/profiling/sysprof/default.nix b/pkgs/development/tools/profiling/sysprof/default.nix index 837a0c8f05728..6bda68117a089 100644 --- a/pkgs/development/tools/profiling/sysprof/default.nix +++ b/pkgs/development/tools/profiling/sysprof/default.nix @@ -74,7 +74,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "System-wide profiler for Linux"; homepage = "https://gitlab.gnome.org/GNOME/sysprof"; longDescription = '' @@ -84,8 +84,8 @@ stdenv.mkDerivation (finalAttrs: { do not need to be recompiled. In fact they don't even have to be restarted. ''; - license = licenses.gpl3Plus; - maintainers = teams.gnome.members; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/tools/prospector/setoptconf.nix b/pkgs/development/tools/prospector/setoptconf.nix index dfd3824fdf13b..ed1e36418294e 100644 --- a/pkgs/development/tools/prospector/setoptconf.nix +++ b/pkgs/development/tools/prospector/setoptconf.nix @@ -16,11 +16,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/pry/default.nix b/pkgs/development/tools/pry/default.nix index 678f58b8fe9aa..357a8ef0c4348 100644 --- a/pkgs/development/tools/pry/default.nix +++ b/pkgs/development/tools/pry/default.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/development/tools/qtcreator/default.nix b/pkgs/development/tools/qtcreator/default.nix index aed03b72322a9..58a862c0f8af6 100644 --- a/pkgs/development/tools/qtcreator/default.nix +++ b/pkgs/development/tools/qtcreator/default.nix @@ -87,7 +87,7 @@ stdenv.mkDerivation rec { "--set-default PERFPROFILER_PARSER_FILEPATH ${lib.getBin perf}/bin" ]; - meta = with lib; { + meta = { description = "Cross-platform IDE tailored to the needs of Qt developers"; longDescription = '' Qt Creator is a cross-platform IDE (integrated development environment) @@ -95,8 +95,8 @@ stdenv.mkDerivation rec { advanced code editor, a visual debugger and a GUI designer. ''; homepage = "https://wiki.qt.io/Qt_Creator"; - license = licenses.gpl3Only; # annotated with The Qt Company GPL Exception 1.0 - maintainers = [ maintainers.rewine ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; # annotated with The Qt Company GPL Exception 1.0 + maintainers = [ lib.maintainers.rewine ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/tools/rdbtools/default.nix b/pkgs/development/tools/rdbtools/default.nix index 5bad05ad3fc7d..83eabb8b49c68 100644 --- a/pkgs/development/tools/rdbtools/default.nix +++ b/pkgs/development/tools/rdbtools/default.nix @@ -23,10 +23,10 @@ buildPythonApplication rec { # No tests in published package doCheck = false; - meta = with lib; { + meta = { description = "Parse Redis dump.rdb files, Analyze Memory, and Export Data to JSON"; homepage = "https://github.com/sripathikrishnan/redis-rdb-tools"; - license = licenses.mit; - maintainers = with maintainers; [ offline ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ offline ]; }; } diff --git a/pkgs/development/tools/rebazel/default.nix b/pkgs/development/tools/rebazel/default.nix index 33592b76e8536..1f16e9407102f 100644 --- a/pkgs/development/tools/rebazel/default.nix +++ b/pkgs/development/tools/rebazel/default.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ]; - meta = with lib; { + meta = { description = "tool for expediting bazel build workflows"; mainProgram = "rebazel"; homepage = "https://github.com/meetup/rebazel"; - license = licenses.mit; - maintainers = with maintainers; [ zimbatm ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm ]; }; } diff --git a/pkgs/development/tools/redis-dump/default.nix b/pkgs/development/tools/redis-dump/default.nix index d40f2247acd9d..0e29ae1c00a97 100644 --- a/pkgs/development/tools/redis-dump/default.nix +++ b/pkgs/development/tools/redis-dump/default.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/development/tools/rufo/default.nix b/pkgs/development/tools/rufo/default.nix index ebd32f78be7bb..319f9af025efe 100644 --- a/pkgs/development/tools/rufo/default.nix +++ b/pkgs/development/tools/rufo/default.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/development/tools/rust/cargo-asm/default.nix b/pkgs/development/tools/rust/cargo-asm/default.nix index f8cd24e153d3b..7146a04094cd3 100644 --- a/pkgs/development/tools/rust/cargo-asm/default.nix +++ b/pkgs/development/tools/rust/cargo-asm/default.nix @@ -25,10 +25,10 @@ rustPlatform.buildRustPackage rec { # LLVM/compiler versions. doCheck = false; - meta = with lib; { + meta = { description = "Display the assembly or LLVM-IR generated for Rust source code"; homepage = "https://github.com/gnzlbg/cargo-asm"; - license = licenses.mit; - maintainers = with maintainers; [ matthiasbeyer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-bazel/default.nix b/pkgs/development/tools/rust/cargo-bazel/default.nix index 35db4be2116be..5f04d6fb522cc 100644 --- a/pkgs/development/tools/rust/cargo-bazel/default.nix +++ b/pkgs/development/tools/rust/cargo-bazel/default.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/development/tools/rust/cargo-cyclonedx/default.nix b/pkgs/development/tools/rust/cargo-cyclonedx/default.nix index a8430563625c8..3d703497acdbc 100644 --- a/pkgs/development/tools/rust/cargo-cyclonedx/default.nix +++ b/pkgs/development/tools/rust/cargo-cyclonedx/default.nix @@ -39,7 +39,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 = '' @@ -49,7 +49,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/development/tools/rust/cargo-flamegraph/default.nix b/pkgs/development/tools/rust/cargo-flamegraph/default.nix index 05d2642b0fc11..bbf7e7f43938b 100644 --- a/pkgs/development/tools/rust/cargo-flamegraph/default.nix +++ b/pkgs/development/tools/rust/cargo-flamegraph/default.nix @@ -36,14 +36,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/development/tools/rust/cargo-fund/default.nix b/pkgs/development/tools/rust/cargo-fund/default.nix index 50e3b7db2bf09..0cd659ad0e9cf 100644 --- a/pkgs/development/tools/rust/cargo-fund/default.nix +++ b/pkgs/development/tools/rust/cargo-fund/default.nix @@ -36,14 +36,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/development/tools/rust/cargo-hf2/default.nix b/pkgs/development/tools/rust/cargo-hf2/default.nix index 08544400fc46e..4298f1f1b89b1 100644 --- a/pkgs/development/tools/rust/cargo-hf2/default.nix +++ b/pkgs/development/tools/rust/cargo-hf2/default.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { buildInputs = [ libusb1 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ AppKit ]; - 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/development/tools/rust/cargo-inspect/default.nix b/pkgs/development/tools/rust/cargo-inspect/default.nix index 47f236d0b525a..bccca5dd2cad4 100644 --- a/pkgs/development/tools/rust/cargo-inspect/default.nix +++ b/pkgs/development/tools/rust/cargo-inspect/default.nix @@ -21,15 +21,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-+cYbejdZOmvaX8jdf1llAvaTefPVtIOl1fqGm5tHMRk="; - meta = with lib; { + meta = { description = "See what Rust is doing behind the curtains"; mainProgram = "cargo-inspect"; homepage = "https://github.com/mre/cargo-inspect"; - license = with licenses; [ + license = with lib.licenses; [ mit asl20 ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ minijackson matthiasbeyer ]; diff --git a/pkgs/development/tools/rust/cargo-lambda/default.nix b/pkgs/development/tools/rust/cargo-lambda/default.nix index 3c4ad5f0a714f..a06ee16d5e091 100644 --- a/pkgs/development/tools/rust/cargo-lambda/default.nix +++ b/pkgs/development/tools/rust/cargo-lambda/default.nix @@ -58,12 +58,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Cargo subcommand to help you work with AWS Lambda"; mainProgram = "cargo-lambda"; homepage = "https://cargo-lambda.info"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ taylor1791 calavera matthiasbeyer diff --git a/pkgs/development/tools/rust/cargo-ndk/default.nix b/pkgs/development/tools/rust/cargo-ndk/default.nix index c0231216b4bad..6c927235fa56a 100644 --- a/pkgs/development/tools/rust/cargo-ndk/default.nix +++ b/pkgs/development/tools/rust/cargo-ndk/default.nix @@ -25,14 +25,14 @@ rustPlatform.buildRustPackage rec { Foundation ]; - 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 ]; - maintainers = with maintainers; [ mglolenstine ]; + maintainers = with lib.maintainers; [ mglolenstine ]; }; } diff --git a/pkgs/development/tools/rust/cargo-udeps/default.nix b/pkgs/development/tools/rust/cargo-udeps/default.nix index 76f0401e72f38..d4f9866a315a9 100644 --- a/pkgs/development/tools/rust/cargo-udeps/default.nix +++ b/pkgs/development/tools/rust/cargo-udeps/default.nix @@ -39,11 +39,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/development/tools/rust/cargo-vet/default.nix b/pkgs/development/tools/rust/cargo-vet/default.nix index af5364e9a206c..9aa6af35498f5 100644 --- a/pkgs/development/tools/rust/cargo-vet/default.nix +++ b/pkgs/development/tools/rust/cargo-vet/default.nix @@ -26,15 +26,15 @@ rustPlatform.buildRustPackage rec { "--skip=test_project" ]; - meta = with lib; { + meta = { description = "Tool to help projects ensure that third-party Rust dependencies have been audited by a trusted source"; mainProgram = "cargo-vet"; homepage = "https://mozilla.github.io/cargo-vet"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ figsoda jk matthiasbeyer diff --git a/pkgs/development/tools/rust/cargo-watch/default.nix b/pkgs/development/tools/rust/cargo-watch/default.nix index 0ba5fd8b450fe..5d352b195ef79 100644 --- a/pkgs/development/tools/rust/cargo-watch/default.nix +++ b/pkgs/development/tools/rust/cargo-watch/default.nix @@ -36,12 +36,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/development/tools/rust/cargo-web/default.nix b/pkgs/development/tools/rust/cargo-web/default.nix index ace033d6a1140..a0fb6e914829a 100644 --- a/pkgs/development/tools/rust/cargo-web/default.nix +++ b/pkgs/development/tools/rust/cargo-web/default.nix @@ -42,14 +42,14 @@ rustPlatform.buildRustPackage rec { Security ]; - meta = with lib; { + meta = { description = "Cargo subcommand for the client-side Web"; mainProgram = "cargo-web"; homepage = "https://github.com/koute/cargo-web"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ clevor ]; + maintainers = with lib.maintainers; [ clevor ]; }; } diff --git a/pkgs/development/tools/rust/cargo-whatfeatures/default.nix b/pkgs/development/tools/rust/cargo-whatfeatures/default.nix index ad29ce3774975..797e4b60b1369 100644 --- a/pkgs/development/tools/rust/cargo-whatfeatures/default.nix +++ b/pkgs/development/tools/rust/cargo-whatfeatures/default.nix @@ -25,15 +25,15 @@ rustPlatform.buildRustPackage rec { buildInputs = [ openssl ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ Security ]; - 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/development/tools/rust/duckscript/default.nix b/pkgs/development/tools/rust/duckscript/default.nix index adebe70d878ab..0c90289cdfe06 100644 --- a/pkgs/development/tools/rust/duckscript/default.nix +++ b/pkgs/development/tools/rust/duckscript/default.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-TX/Xi57fn85GjHc74icxhsQ6n7FwqzGIr3Qoc2o681E="; - 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/development/tools/rust/humility/default.nix b/pkgs/development/tools/rust/humility/default.nix index b443575175651..667f7dce28cec 100644 --- a/pkgs/development/tools/rust/humility/default.nix +++ b/pkgs/development/tools/rust/humility/default.nix @@ -52,11 +52,11 @@ rustPlatform.buildRustPackage rec { }; }; - 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/development/tools/rust/rustup-toolchain-install-master/default.nix b/pkgs/development/tools/rust/rustup-toolchain-install-master/default.nix index 5f531bff222ee..f4bc7fdc3078b 100644 --- a/pkgs/development/tools/rust/rustup-toolchain-install-master/default.nix +++ b/pkgs/development/tools/rust/rustup-toolchain-install-master/default.nix @@ -61,11 +61,11 @@ rustPlatform.buildRustPackage rec { ln -sf ${./Cargo.lock} Cargo.lock ''; - 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; - maintainers = with maintainers; [ davidtwco ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ davidtwco ]; }; } diff --git a/pkgs/development/tools/rust/rustup/default.nix b/pkgs/development/tools/rust/rustup/default.nix index e0de754928fc0..7ff4b4f488a05 100644 --- a/pkgs/development/tools/rust/rustup/default.nix +++ b/pkgs/development/tools/rust/rustup/default.nix @@ -138,13 +138,13 @@ rustPlatform.buildRustPackage rec { hardening_unsupported_flags = ""; }; - meta = with lib; { + meta = { description = "Rust toolchain installer"; homepage = "https://www.rustup.rs/"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = [ maintainers.mic92 ]; + maintainers = [ lib.maintainers.mic92 ]; }; } diff --git a/pkgs/development/tools/rust/sqlx-cli/default.nix b/pkgs/development/tools/rust/sqlx-cli/default.nix index 989c51f464e91..42eeb3ed32301 100644 --- a/pkgs/development/tools/rust/sqlx-cli/default.nix +++ b/pkgs/development/tools/rust/sqlx-cli/default.nix @@ -70,11 +70,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "SQLx's associated command-line utility 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/development/tools/sass/default.nix b/pkgs/development/tools/sass/default.nix index 2c81f7fdf1813..1b2e3d58992f0 100644 --- a/pkgs/development/tools/sass/default.nix +++ b/pkgs/development/tools/sass/default.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/development/tools/scry/default.nix b/pkgs/development/tools/scry/default.nix index e1982a96df90a..11697fc956bab 100644 --- a/pkgs/development/tools/scry/default.nix +++ b/pkgs/development/tools/scry/default.nix @@ -43,11 +43,11 @@ crystal.buildCrystalPackage rec { # the binary doesn't take any arguments, so this will hang doInstallCheck = false; - meta = with lib; { + meta = { description = "Code analysis server for the Crystal programming language"; homepage = "https://github.com/crystal-lang-tools/scry"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg Br1ght0ne ]; diff --git a/pkgs/development/tools/scss-lint/default.nix b/pkgs/development/tools/scss-lint/default.nix index 4d5cbab9945f2..9957fe44cfcd2 100644 --- a/pkgs/development/tools/scss-lint/default.nix +++ b/pkgs/development/tools/scss-lint/default.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/development/tools/simavr/default.nix b/pkgs/development/tools/simavr/default.nix index 9a8dc3ef60e71..77478e5b50093 100644 --- a/pkgs/development/tools/simavr/default.nix +++ b/pkgs/development/tools/simavr/default.nix @@ -62,13 +62,13 @@ 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; - maintainers = with maintainers; [ goodrone ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ goodrone ]; }; } diff --git a/pkgs/development/tools/solarus-quest-editor/default.nix b/pkgs/development/tools/solarus-quest-editor/default.nix index 873314138265d..8ef3e436737ae 100644 --- a/pkgs/development/tools/solarus-quest-editor/default.nix +++ b/pkgs/development/tools/solarus-quest-editor/default.nix @@ -53,7 +53,7 @@ mkDerivation rec { glm ]; - meta = with lib; { + meta = { description = "Editor for the Zelda-like ARPG game engine, Solarus"; mainProgram = "solarus-quest-editor"; longDescription = '' @@ -62,9 +62,9 @@ mkDerivation rec { Games can be created easily using the editor. ''; homepage = "https://www.solarus-games.org"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/tools/spr/default.nix b/pkgs/development/tools/spr/default.nix index 9d7467383a8df..4ec29c902322b 100644 --- a/pkgs/development/tools/spr/default.nix +++ b/pkgs/development/tools/spr/default.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security; - meta = with lib; { + meta = { description = "Submit pull requests for individual, amendable, rebaseable commits to GitHub"; mainProgram = "spr"; homepage = "https://github.com/getcord/spr"; - license = licenses.mit; - maintainers = with maintainers; [ sven-of-cord ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sven-of-cord ]; }; } diff --git a/pkgs/development/tools/sqlint/default.nix b/pkgs/development/tools/sqlint/default.nix index a78c35ac1ecba..8c0d754ce9603 100644 --- a/pkgs/development/tools/sqlint/default.nix +++ b/pkgs/development/tools/sqlint/default.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/development/tools/toluapp/default.nix b/pkgs/development/tools/toluapp/default.nix index fbe1416808f74..8c80874c961a0 100644 --- a/pkgs/development/tools/toluapp/default.nix +++ b/pkgs/development/tools/toluapp/default.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { ./headers.patch ]; - 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 = [ ]; 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 fde6ca673de1f..4cc64c20888f0 100644 --- a/pkgs/development/tools/tora/default.nix +++ b/pkgs/development/tools/tora/default.nix @@ -74,11 +74,11 @@ mkDerivation { ''--prefix PATH : ${lib.getBin graphviz}/bin'' ]; - 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; }; } diff --git a/pkgs/development/tools/viceroy/default.nix b/pkgs/development/tools/viceroy/default.nix index 6220337c275cb..f43ea7ab212b2 100644 --- a/pkgs/development/tools/viceroy/default.nix +++ b/pkgs/development/tools/viceroy/default.nix @@ -25,15 +25,15 @@ rustPlatform.buildRustPackage rec { "--package viceroy-lib" ]; - meta = with lib; { + meta = { description = "Viceroy 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 shyim ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/tools/wasmedge/default.nix b/pkgs/development/tools/wasmedge/default.nix index d21ac338f34f9..ab054f1562db3 100644 --- a/pkgs/development/tools/wasmedge/default.nix +++ b/pkgs/development/tools/wasmedge/default.nix @@ -58,11 +58,11 @@ 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/tools/worker-build/default.nix b/pkgs/development/tools/worker-build/default.nix index 6e4a2d0320ac8..bd02a936f17ee 100644 --- a/pkgs/development/tools/worker-build/default.nix +++ b/pkgs/development/tools/worker-build/default.nix @@ -31,14 +31,14 @@ rustPlatform.buildRustPackage rec { # missing some module upstream to run the tests doCheck = false; - meta = with lib; { + meta = { description = "This is a tool to be used as a custom build command for a Cloudflare Workers `workers-rs` project"; mainProgram = "worker-build"; homepage = "https://github.com/cloudflare/workers-rs"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ happysalada ]; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/tools/wrangler_1/default.nix b/pkgs/development/tools/wrangler_1/default.nix index 259139fc661b7..dbdb94bd0fc2e 100644 --- a/pkgs/development/tools/wrangler_1/default.nix +++ b/pkgs/development/tools/wrangler_1/default.nix @@ -42,14 +42,14 @@ 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 ]; - maintainers = with maintainers; [ Br1ght0ne ]; + maintainers = with lib.maintainers; [ Br1ght0ne ]; }; } diff --git a/pkgs/development/tools/xcode-install/default.nix b/pkgs/development/tools/xcode-install/default.nix index 4b753b74d9f8a..d1216237865be 100644 --- a/pkgs/development/tools/xcode-install/default.nix +++ b/pkgs/development/tools/xcode-install/default.nix @@ -8,11 +8,11 @@ bundlerApp { gemdir = ./.; exes = [ "xcversion" ]; - 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/development/tools/xcpretty/default.nix b/pkgs/development/tools/xcpretty/default.nix index 322e3f4cae179..592681b808f9d 100644 --- a/pkgs/development/tools/xcpretty/default.nix +++ b/pkgs/development/tools/xcpretty/default.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/development/web/pnpm-lock-export/default.nix b/pkgs/development/web/pnpm-lock-export/default.nix index 2a019d5920f65..f139629599e3f 100644 --- a/pkgs/development/web/pnpm-lock-export/default.nix +++ b/pkgs/development/web/pnpm-lock-export/default.nix @@ -26,11 +26,11 @@ buildNpmPackage rec { updateScript = ./update.sh; }; - meta = with lib; { + meta = { description = "Utility for converting pnpm-lock.yaml to other lockfile formats"; mainProgram = "pnpm-lock-export"; homepage = "https://github.com/cvent/pnpm-lock-export"; - license = licenses.mit; - maintainers = with maintainers; [ ambroisie ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/games/0ad/data.nix b/pkgs/games/0ad/data.nix index 9165b107be4dd..e34cd377ce508 100644 --- a/pkgs/games/0ad/data.nix +++ b/pkgs/games/0ad/data.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/games/90secondportraits/default.nix b/pkgs/games/90secondportraits/default.nix index 3d0f95f304a8b..87f81c3922fc2 100644 --- a/pkgs/games/90secondportraits/default.nix +++ b/pkgs/games/90secondportraits/default.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Silly speed painting game"; mainProgram = "90secondportraits"; - maintainers = with maintainers; [ leenaars ]; - platforms = platforms.linux; - license = with licenses; [ + maintainers = with lib.maintainers; [ leenaars ]; + platforms = lib.platforms.linux; + license = with lib.licenses; [ zlib cc-by-sa-40 cc-by-sa-30 # vendored diff --git a/pkgs/games/amoeba/data.nix b/pkgs/games/amoeba/data.nix index fcffe73b1d628..321d484e264cb 100644 --- a/pkgs/games/amoeba/data.nix +++ b/pkgs/games/amoeba/data.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { cp demo.dat $out/share/amoeba/ ''; - meta = with lib; { + meta = { description = "Fast-paced, polished OpenGL demonstration by Excess (data files)"; homepage = "https://packages.qa.debian.org/a/amoeba-data.html"; - license = licenses.unfree; - maintainers = [ maintainers.dezgeg ]; - platforms = platforms.all; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.dezgeg ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/games/amoeba/default.nix b/pkgs/games/amoeba/default.nix index 274e91ba33dcb..20bd7f37f64f7 100644 --- a/pkgs/games/amoeba/default.nix +++ b/pkgs/games/amoeba/default.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { installManPage ../debian/amoeba.1 ''; - meta = with lib; { + meta = { description = "Fast-paced, polished OpenGL demonstration by Excess"; homepage = "https://packages.qa.debian.org/a/amoeba.html"; - license = licenses.gpl2Only; # Engine is GPLv2, data files in amoeba-data nonfree - maintainers = [ maintainers.dezgeg ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; # Engine is GPLv2, data files in amoeba-data nonfree + maintainers = [ lib.maintainers.dezgeg ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/games/anki/bin.nix b/pkgs/games/anki/bin.nix index 11c03ec3bebe9..08b46b33c47cf 100644 --- a/pkgs/games/anki/bin.nix +++ b/pkgs/games/anki/bin.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; [ mahmoudk1000 ]; + maintainers = with lib.maintainers; [ mahmoudk1000 ]; }; passthru = { diff --git a/pkgs/games/black-hole-solver/default.nix b/pkgs/games/black-hole-solver/default.nix index dc9e1c7e96720..15ba45b44228f 100644 --- a/pkgs/games/black-hole-solver/default.nix +++ b/pkgs/games/black-hole-solver/default.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { patchShebangs ./scripts ''; - meta = with lib; { + meta = { description = "Solver for Solitaire variants Golf, Black Hole, and All in a Row"; mainProgram = "black-hole-solve"; homepage = "https://www.shlomifish.org/open-source/projects/black-hole-solitaire-solver/"; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/games/bugdom/default.nix b/pkgs/games/bugdom/default.nix index 76cf666873dff..80b42af79d87f 100644 --- a/pkgs/games/bugdom/default.nix +++ b/pkgs/games/bugdom/default.nix @@ -79,12 +79,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/games/bzflag/default.nix b/pkgs/games/bzflag/default.nix index b2036bb6d0db0..bb5148156743f 100644 --- a/pkgs/games/bzflag/default.nix +++ b/pkgs/games/bzflag/default.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { CoreServices ]; - meta = with lib; { + meta = { description = "Multiplayer 3D Tank game"; homepage = "https://bzflag.org/"; - license = licenses.lgpl21Plus; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/games/cataclysm-dda/pkgs/tilesets/UndeadPeople/default.nix b/pkgs/games/cataclysm-dda/pkgs/tilesets/UndeadPeople/default.nix index 30c2793f6a8fd..4b3039fbefb62 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/chessx/default.nix b/pkgs/games/chessx/default.nix index e76cccc685328..ae94cb63a7c02 100644 --- a/pkgs/games/chessx/default.nix +++ b/pkgs/games/chessx/default.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://chessx.sourceforge.io/"; description = "Browse and analyse chess games"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ luispedro ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ luispedro ]; + platforms = lib.platforms.linux; mainProgram = "chessx"; }; }) diff --git a/pkgs/games/chiaki-ng/default.nix b/pkgs/games/chiaki-ng/default.nix index edd5f112420d7..affa53d2680b2 100644 --- a/pkgs/games/chiaki-ng/default.nix +++ b/pkgs/games/chiaki-ng/default.nix @@ -112,16 +112,16 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { homepage = "https://streetpea.github.io/chiaki-ng/"; description = "Next-Generation of Chiaki (the open-source remote play client for PlayStation)"; # Includes OpenSSL linking exception that we currently have no way # to represent. # # See also: - license = licenses.agpl3Only; - maintainers = with maintainers; [ devusb ]; - platforms = platforms.linux; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ devusb ]; + platforms = lib.platforms.linux; mainProgram = "chiaki"; }; } diff --git a/pkgs/games/chiaki/default.nix b/pkgs/games/chiaki/default.nix index 2c9f319029e42..ef0d78bae469a 100644 --- a/pkgs/games/chiaki/default.nix +++ b/pkgs/games/chiaki/default.nix @@ -60,12 +60,12 @@ mkDerivation rec { installCheckPhase = "$out/bin/chiaki --help"; - meta = with lib; { + meta = { homepage = "https://git.sr.ht/~thestr4ng3r/chiaki"; description = "Free and Open Source PlayStation Remote Play Client"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "chiaki"; }; } diff --git a/pkgs/games/crossfire/crossfire-arch.nix b/pkgs/games/crossfire/crossfire-arch.nix index cb21856eab9f8..d3df20b1bb129 100644 --- a/pkgs/games/crossfire/crossfire-arch.nix +++ b/pkgs/games/crossfire/crossfire-arch.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { cp -a . "$out/" ''; - 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/games/crossfire/crossfire-client.nix b/pkgs/games/crossfire/crossfire-client.nix index 99c3ae355af6f..8005185b818a9 100644 --- a/pkgs/games/crossfire/crossfire-client.nix +++ b/pkgs/games/crossfire/crossfire-client.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation rec { ]; 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/games/crossfire/crossfire-maps.nix b/pkgs/games/crossfire/crossfire-maps.nix index 7740452d054d5..51bc967bbb952 100644 --- a/pkgs/games/crossfire/crossfire-maps.nix +++ b/pkgs/games/crossfire/crossfire-maps.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { cp -a . "$out/" ''; - 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/games/crossfire/crossfire-server.nix b/pkgs/games/crossfire/crossfire-server.nix index a22eb9dc11936..ad2203c4f2a08 100644 --- a/pkgs/games/crossfire/crossfire-server.nix +++ b/pkgs/games/crossfire/crossfire-server.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { 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/games/curseofwar/default.nix b/pkgs/games/curseofwar/default.nix index 2bf91002024e8..a6f411ca53ce6 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/cutechess/default.nix b/pkgs/games/cutechess/default.nix index 05a75351e9e29..08935be0d7bea 100644 --- a/pkgs/games/cutechess/default.nix +++ b/pkgs/games/cutechess/default.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation (finalAttrs: { install -Dm444 $src/docs/cutechess-engines.json.5 -t $out/share/man/man5/ ''; - meta = with lib; { + meta = { description = "GUI, CLI, and library for playing chess"; homepage = "https://cutechess.com/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; - platforms = with platforms; (linux ++ windows); + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ]; + platforms = with lib.platforms; (linux ++ windows); mainProgram = "cutechess"; }; }) diff --git a/pkgs/games/ddnet/default.nix b/pkgs/games/ddnet/default.nix index a9874dce375b9..74ca49a3c958c 100644 --- a/pkgs/games/ddnet/default.nix +++ b/pkgs/games/ddnet/default.nix @@ -116,7 +116,7 @@ stdenv.mkDerivation rec { install_name_tool -change "$out/lib/libsteam_api.dylib" "$out/lib/ddnet/libsteam_api.dylib" "$out/bin/DDNet" ''; - meta = with lib; { + meta = { description = "Teeworlds modification with a unique cooperative gameplay"; longDescription = '' DDraceNetwork (DDNet) is an actively maintained version of DDRace, @@ -126,8 +126,8 @@ stdenv.mkDerivation rec { design your own maps, or run your own server. ''; homepage = "https://ddnet.org"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sirseruju lom ncfavier diff --git a/pkgs/games/deliantra/arch.nix b/pkgs/games/deliantra/arch.nix index 24fdaa82df487..2419ce218a58c 100644 --- a/pkgs/games/deliantra/arch.nix +++ b/pkgs/games/deliantra/arch.nix @@ -20,14 +20,14 @@ stdenv.mkDerivation rec { ${deliantra-server}/bin/cfutil --install-arch . ''; - meta = with lib; { + meta = { description = "Archetype data for the Deliantra free MMORPG"; homepage = "http://www.deliantra.net/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus agpl3Plus ]; - platforms = platforms.linux; - maintainers = with maintainers; [ ToxicFrog ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ToxicFrog ]; }; } diff --git a/pkgs/games/deliantra/data.nix b/pkgs/games/deliantra/data.nix index 7d16f4a3d9151..90acb5d18993c 100644 --- a/pkgs/games/deliantra/data.nix +++ b/pkgs/games/deliantra/data.nix @@ -16,15 +16,15 @@ symlinkJoin rec { "${deliantra-server}/share/deliantra-server" ]; - meta = with lib; { + meta = { description = "Combined game data (maps + archetypes) for the Deliantra free MMORPG"; homepage = "http://www.deliantra.net/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus agpl3Plus ]; - platforms = platforms.linux; - maintainers = with maintainers; [ ToxicFrog ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ToxicFrog ]; hydraPlatforms = [ ]; }; } diff --git a/pkgs/games/deliantra/maps.nix b/pkgs/games/deliantra/maps.nix index f630a1e50d3a7..f23e722671c60 100644 --- a/pkgs/games/deliantra/maps.nix +++ b/pkgs/games/deliantra/maps.nix @@ -20,14 +20,14 @@ stdenv.mkDerivation rec { ${deliantra-server}/bin/cfutil --install-maps . ''; - meta = with lib; { + meta = { description = "Map data for the Deliantra free MMORPG"; homepage = "http://www.deliantra.net/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus agpl3Plus ]; - platforms = platforms.linux; - maintainers = with maintainers; [ ToxicFrog ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ToxicFrog ]; }; } diff --git a/pkgs/games/deliantra/server.nix b/pkgs/games/deliantra/server.nix index 9f92d99aad1ba..157182fc9be65 100644 --- a/pkgs/games/deliantra/server.nix +++ b/pkgs/games/deliantra/server.nix @@ -80,14 +80,14 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/deliantra-server --prefix PERL5LIB : $PERL5LIB ''; - meta = with lib; { + meta = { description = "Server for the Deliantra free MMORPG"; homepage = "http://www.deliantra.net/"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus agpl3Plus ]; - platforms = platforms.linux; - maintainers = with maintainers; [ ToxicFrog ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ToxicFrog ]; }; } diff --git a/pkgs/games/doom-ports/doomrunner/default.nix b/pkgs/games/doom-ports/doomrunner/default.nix index c61055e190aba..69d9fa93aa246 100644 --- a/pkgs/games/doom-ports/doomrunner/default.nix +++ b/pkgs/games/doom-ports/doomrunner/default.nix @@ -54,13 +54,13 @@ stdenv.mkDerivation (finalAttrs: { exec = "DoomRunner"; }; - meta = with lib; { + meta = { description = "Graphical launcher of ZDoom and derivatives"; mainProgram = "DoomRunner"; homepage = "https://github.com/Youda008/DoomRunner/"; changelog = "https://github.com/Youda008/DoomRunner/blob/${finalAttrs.src.rev}/changelog.txt"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ keenanweaver ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ keenanweaver ]; }; }) diff --git a/pkgs/games/doom-ports/doomseeker/default.nix b/pkgs/games/doom-ports/doomseeker/default.nix index eb1b4dedce92a..69e25c3c23b5c 100644 --- a/pkgs/games/doom-ports/doomseeker/default.nix +++ b/pkgs/games/doom-ports/doomseeker/default.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation { ln -s $out/lib/doomseeker/doomseeker $out/bin/ ''; - meta = with lib; { + meta = { homepage = "http://doomseeker.drdteam.org/"; description = "Multiplayer server browser for many Doom source ports"; mainProgram = "doomseeker"; - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/games/doom-ports/zandronum/alpha/default.nix b/pkgs/games/doom-ports/zandronum/alpha/default.nix index 0cacb54b2f2df..68b227f66982d 100644 --- a/pkgs/games/doom-ports/zandronum/alpha/default.nix +++ b/pkgs/games/doom-ports/zandronum/alpha/default.nix @@ -118,11 +118,11 @@ stdenv.mkDerivation rec { inherit fmod sqlite; }; - meta = with lib; { + meta = { homepage = "https://zandronum.com/"; description = "Multiplayer oriented port, based off Skulltag, for Doom and Doom II by id Software"; - maintainers = with maintainers; [ lassulus ]; - license = licenses.sleepycat; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ lassulus ]; + license = lib.licenses.sleepycat; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/games/doom-ports/zandronum/default.nix b/pkgs/games/doom-ports/zandronum/default.nix index 9a39719d42db1..c413b53553d9b 100644 --- a/pkgs/games/doom-ports/zandronum/default.nix +++ b/pkgs/games/doom-ports/zandronum/default.nix @@ -118,12 +118,12 @@ stdenv.mkDerivation rec { inherit fmod sqlite; }; - meta = with lib; { + meta = { homepage = "https://zandronum.com/"; description = "Multiplayer oriented port, based off Skulltag, for Doom and Doom II by id Software"; mainProgram = "zandronum-server"; - maintainers = with maintainers; [ lassulus ]; - license = licenses.sleepycat; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ lassulus ]; + license = lib.licenses.sleepycat; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/games/doom-ports/zandronum/fmod.nix b/pkgs/games/doom-ports/zandronum/fmod.nix index 030f20e084e49..36d0e24d9250d 100644 --- a/pkgs/games/doom-ports/zandronum/fmod.nix +++ b/pkgs/games/doom-ports/zandronum/fmod.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/games/doom-ports/zdoom/bcc-git.nix b/pkgs/games/doom-ports/zdoom/bcc-git.nix index 3c78b892970cc..89f80be2df1b1 100644 --- a/pkgs/games/doom-ports/zdoom/bcc-git.nix +++ b/pkgs/games/doom-ports/zdoom/bcc-git.nix @@ -27,11 +27,11 @@ 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; - maintainers = with maintainers; [ ertes ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ertes ]; }; } diff --git a/pkgs/games/doom-ports/zdoom/default.nix b/pkgs/games/doom-ports/zdoom/default.nix index d34f4498c5d6d..44994bececb18 100644 --- a/pkgs/games/doom-ports/zdoom/default.nix +++ b/pkgs/games/doom-ports/zdoom/default.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/games/doom-ports/zdoom/zdbsp.nix b/pkgs/games/doom-ports/zdoom/zdbsp.nix index bef477e1fc152..17e36344718fc 100644 --- a/pkgs/games/doom-ports/zdoom/zdbsp.nix +++ b/pkgs/games/doom-ports/zdoom/zdbsp.nix @@ -28,15 +28,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/games/duckmarines/default.nix b/pkgs/games/duckmarines/default.nix index 36fdccc01c5ab..ed32b1e19b790 100644 --- a/pkgs/games/duckmarines/default.nix +++ b/pkgs/games/duckmarines/default.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { ln -s ${desktopItem}/share/applications/* $out/share/applications/ ''; - meta = with lib; { + meta = { description = "Duck-themed action puzzle video game"; - maintainers = with maintainers; [ leenaars ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ leenaars ]; + platforms = lib.platforms.linux; hydraPlatforms = [ ]; - license = licenses.free; + license = lib.licenses.free; downloadPage = "http://tangramgames.dk/games/duckmarines"; }; diff --git a/pkgs/games/dxx-rebirth/default.nix b/pkgs/games/dxx-rebirth/default.nix index 4226c37bb6a95..5d4efe1496437 100644 --- a/pkgs/games/dxx-rebirth/default.nix +++ b/pkgs/games/dxx-rebirth/default.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation rec { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Source Port of the Descent 1 and 2 engines"; homepage = "https://www.dxx-rebirth.com/"; - license = licenses.gpl3; - maintainers = with maintainers; [ peterhoeg ]; - platforms = with platforms; linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/games/easyrpg-player/default.nix b/pkgs/games/easyrpg-player/default.nix index be92949cb91a6..0ece96c42888f 100644 --- a/pkgs/games/easyrpg-player/default.nix +++ b/pkgs/games/easyrpg-player/default.nix @@ -128,12 +128,12 @@ stdenv.mkDerivation rec { enableParallelChecking = true; - meta = with lib; { + meta = { description = "RPG Maker 2000/2003 and EasyRPG games interpreter"; homepage = "https://easyrpg.org/"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = lib.optionalString stdenv.hostPlatform.isDarwin "EasyRPG Player"; }; } diff --git a/pkgs/games/exult/default.nix b/pkgs/games/exult/default.nix index 4f26dbed108a5..e081cd46bea35 100644 --- a/pkgs/games/exult/default.nix +++ b/pkgs/games/exult/default.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { makeFlags = [ "NIX_DESTDIR=$(out)" ]; # see postPatch configureFlags = lib.optional (!enableTools) "--disable-tools"; - meta = with lib; { + meta = { description = "Exult is a project to recreate Ultima VII for modern operating systems"; longDescription = '' Ultima VII, an RPG from the early 1990's, still has a huge following. But, @@ -72,8 +72,8 @@ stdenv.mkDerivation rec { possible. ''; homepage = "http://exult.info"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ azahi ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ azahi ]; mainProgram = "exult"; }; } diff --git a/pkgs/games/ferium/default.nix b/pkgs/games/ferium/default.nix index 1073764cbaead..1642b213228fc 100644 --- a/pkgs/games/ferium/default.nix +++ b/pkgs/games/ferium/default.nix @@ -41,12 +41,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/games/flare/engine.nix b/pkgs/games/flare/engine.nix index 8d4069874bd6d..69183ed5ce753 100644 --- a/pkgs/games/flare/engine.nix +++ b/pkgs/games/flare/engine.nix @@ -31,14 +31,14 @@ stdenv.mkDerivation rec { SDL2_ttf ] ++ lib.optional stdenv.hostPlatform.isDarwin Cocoa; - meta = with lib; { + meta = { description = "Free/Libre Action Roleplaying Engine"; homepage = "https://github.com/flareteam/flare-engine"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ aanderse McSinyx ]; - license = [ licenses.gpl3 ]; - platforms = platforms.unix; + license = [ lib.licenses.gpl3 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/games/flare/game.nix b/pkgs/games/flare/game.nix index 74dbcaaaae318..a89c3b102ffe9 100644 --- a/pkgs/games/flare/game.nix +++ b/pkgs/games/flare/game.nix @@ -18,14 +18,14 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Fantasy action RPG using the FLARE engine"; homepage = "https://github.com/flareteam/flare-game"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ aanderse McSinyx ]; - license = [ licenses.cc-by-sa-30 ]; - platforms = platforms.unix; + license = [ lib.licenses.cc-by-sa-30 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/games/flightgear/default.nix b/pkgs/games/flightgear/default.nix index ec9b9358b1559..90760172a43a0 100644 --- a/pkgs/games/flightgear/default.nix +++ b/pkgs/games/flightgear/default.nix @@ -104,12 +104,12 @@ stdenv.mkDerivation rec { "--set FG_ROOT ${data}/share/FlightGear" ]; - meta = with lib; { + meta = { description = "Flight simulator"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; hydraPlatforms = [ ]; # disabled from hydra because it's so big - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "fgfs"; }; } diff --git a/pkgs/games/fltrator/default.nix b/pkgs/games/fltrator/default.nix index d1a39f76a1309..63d80f7b34f2b 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/garden-of-coloured-lights/default.nix b/pkgs/games/garden-of-coloured-lights/default.nix index a26cea2796129..6525c74d26a97 100644 --- a/pkgs/games/garden-of-coloured-lights/default.nix +++ b/pkgs/games/garden-of-coloured-lights/default.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { # `eclass'; eclass.o:src/eclass.c:21: first defined here env.NIX_CFLAGS_COMPILE = "-fcommon"; - meta = with lib; { + meta = { description = "Old-school vertical shoot-em-up / bullet hell"; mainProgram = "garden"; homepage = "https://garden.sourceforge.net/drupal/"; maintainers = [ ]; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/games/gogdl/default.nix b/pkgs/games/gogdl/default.nix index 08161f7f3c1f8..e2e519a48f37f 100644 --- a/pkgs/games/gogdl/default.nix +++ b/pkgs/games/gogdl/default.nix @@ -30,12 +30,12 @@ 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 ]; - maintainers = with maintainers; [ aidalgol ]; + license = with lib.licenses; [ gpl3 ]; + maintainers = with lib.maintainers; [ aidalgol ]; }; # Upstream no longer create git tags when bumping the version, so we have to diff --git a/pkgs/games/gscrabble/default.nix b/pkgs/games/gscrabble/default.nix index 95146c8f88048..9069bb3dcd67c 100644 --- a/pkgs/games/gscrabble/default.nix +++ b/pkgs/games/gscrabble/default.nix @@ -48,15 +48,15 @@ buildPythonApplication { ) ''; - meta = with lib; { + meta = { # Fails to build, propably 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/gshogi/default.nix b/pkgs/games/gshogi/default.nix index 3fdd60a5fa2c4..518e9db7c5351 100644 --- a/pkgs/games/gshogi/default.nix +++ b/pkgs/games/gshogi/default.nix @@ -40,12 +40,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/games/heroic/default.nix b/pkgs/games/heroic/default.nix index c14915ccdbd8c..01b07282cd2ec 100644 --- a/pkgs/games/heroic/default.nix +++ b/pkgs/games/heroic/default.nix @@ -106,12 +106,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Native GOG, Epic, and Amazon Games Launcher for Linux, Windows and Mac"; homepage = "https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher"; changelog = "https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher/releases"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ aidalgol ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ aidalgol ]; # Heroic may work on nix-darwin, but it needs a dedicated maintainer for the platform. # It may also work on other Linux targets, but all the game stores only # support x86 Linux, so it would require extra hacking to run games via QEMU diff --git a/pkgs/games/iortcw/sp.nix b/pkgs/games/iortcw/sp.nix index 92ee59c6891cc..b338ecbbf8277 100644 --- a/pkgs/games/iortcw/sp.nix +++ b/pkgs/games/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/games/legendary-gl/default.nix b/pkgs/games/legendary-gl/default.nix index 7888c2111f519..4de7fe2d7c264 100644 --- a/pkgs/games/legendary-gl/default.nix +++ b/pkgs/games/legendary-gl/default.nix @@ -31,11 +31,11 @@ buildPythonApplication rec { pythonImportsCheck = [ "legendary" ]; - meta = with lib; { + meta = { description = "Free and open-source Epic Games Launcher alternative"; homepage = "https://github.com/derrod/legendary"; - license = licenses.gpl3; - maintainers = with maintainers; [ equirosa ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ equirosa ]; mainProgram = "legendary"; }; diff --git a/pkgs/games/libremines/default.nix b/pkgs/games/libremines/default.nix index b3b7cda9d4c60..0e384977ca084 100644 --- a/pkgs/games/libremines/default.nix +++ b/pkgs/games/libremines/default.nix @@ -34,15 +34,15 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DUSE_QT6=TRUE" ]; - meta = with lib; { + meta = { description = "Qt based Minesweeper game"; mainProgram = "libremines"; longDescription = '' A Free/Libre and Open Source Software Qt based Minesweeper game available for GNU/Linux, FreeBSD and Windows systems. ''; homepage = "https://bollos00.github.io/LibreMines"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ aleksana ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ aleksana ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/games/lincity/default.nix b/pkgs/games/lincity/default.nix index 9bfdc8e189c1f..ed175dc0b886d 100644 --- a/pkgs/games/lincity/default.nix +++ b/pkgs/games/lincity/default.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation rec { # multiple definition of `monthgraph_style'; ldsvguts.o:/build/lincity-1.13.1/screen.h:23: first defined here env.NIX_CFLAGS_COMPILE = "-fcommon"; - meta = with lib; { + meta = { description = "City simulation game"; mainProgram = "xlincity"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; homepage = "https://sourceforge.net/projects/lincity"; maintainers = [ ]; # ../lcintl.h:14:10: fatal error: 'libintl.h' file not found diff --git a/pkgs/games/lincity/ng.nix b/pkgs/games/lincity/ng.nix index 6ca8b8c647159..25a63b98da79c 100644 --- a/pkgs/games/lincity/ng.nix +++ b/pkgs/games/lincity/ng.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "City building game"; mainProgram = "lincity-ng"; - 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/games/linthesia/default.nix b/pkgs/games/linthesia/default.nix index a214c80b77921..99c56548c7bcf 100644 --- a/pkgs/games/linthesia/default.nix +++ b/pkgs/games/linthesia/default.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { gtk3.out # icon cache ]; - meta = with lib; { + meta = { description = "Game of playing music using a MIDI keyboard following a MIDI file"; mainProgram = "linthesia"; inherit (src.meta) homepage; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/games/liquidwar/5.nix b/pkgs/games/liquidwar/5.nix index 1d49a6cef6e74..3a2e401dacaeb 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 c974c71ecd50a..0ac6905c9f343 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/lzwolf/default.nix b/pkgs/games/lzwolf/default.nix index 44551efd384a4..1f4eae7926478 100644 --- a/pkgs/games/lzwolf/default.nix +++ b/pkgs/games/lzwolf/default.nix @@ -81,12 +81,12 @@ stdenv.mkDerivation rec { ln -s $out/lib/lzwolf/lzwolf $out/bin/lzwolf ''; - meta = with lib; { + meta = { homepage = "https://bitbucket.org/linuxwolf6/lzwolf"; description = "Enhanced fork of ECWolf, a Wolfenstein 3D source port"; mainProgram = "lzwolf"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ tgunnoe ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ tgunnoe ]; }; } diff --git a/pkgs/games/mrrescue/default.nix b/pkgs/games/mrrescue/default.nix index c42364f0d71d8..3ba5c0c7a40b1 100644 --- a/pkgs/games/mrrescue/default.nix +++ b/pkgs/games/mrrescue/default.nix @@ -58,12 +58,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/games/nile/default.nix b/pkgs/games/nile/default.nix index aa24289ba0704..2b0d11a3d915f 100644 --- a/pkgs/games/nile/default.nix +++ b/pkgs/games/nile/default.nix @@ -51,12 +51,12 @@ buildPythonApplication { pythonImportsCheck = [ "nile" ]; - meta = with lib; { + meta = { description = "Unofficial Amazon Games client"; mainProgram = "nile"; homepage = "https://github.com/imLinguin/nile"; - license = with licenses; [ gpl3 ]; - maintainers = with maintainers; [ aidalgol ]; + license = with lib.licenses; [ gpl3 ]; + maintainers = with lib.maintainers; [ aidalgol ]; }; passthru.updateScript = gitUpdater { diff --git a/pkgs/games/npush/default.nix b/pkgs/games/npush/default.nix index f8a5b732c066d..0328d803cd76d 100644 --- a/pkgs/games/npush/default.nix +++ b/pkgs/games/npush/default.nix @@ -42,13 +42,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "https://npush.sourceforge.net/"; description = "Sokoban-like game"; mainProgram = "npush"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = with platforms; unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/games/openmw/tes3mp.nix b/pkgs/games/openmw/tes3mp.nix index f94d288f93d9c..a9c66c91f3eda 100644 --- a/pkgs/games/openmw/tes3mp.nix +++ b/pkgs/games/openmw/tes3mp.nix @@ -129,11 +129,11 @@ let mv $out/bin/tes3mp-* $out/libexec ''; - meta = with lib; { + meta = { description = "Multiplayer for TES3:Morrowind based on OpenMW"; homepage = "https://tes3mp.com/"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ peterhoeg ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/games/openrw/default.nix b/pkgs/games/openrw/default.nix index fdec4d1fe7700..86d6e40517a08 100644 --- a/pkgs/games/openrw/default.nix +++ b/pkgs/games/openrw/default.nix @@ -64,16 +64,16 @@ stdenv.mkDerivation { Cocoa ]; - meta = with lib; { + meta = { description = "Unofficial open source recreation of the classic Grand Theft Auto III game executable"; homepage = "https://github.com/rwengine/openrw"; - license = licenses.gpl3; + license = lib.licenses.gpl3; longDescription = '' OpenRW is an open source re-implementation of Rockstar Games' Grand Theft Auto III, a classic 3D action game first published in 2001. ''; - maintainers = with maintainers; [ kragniz ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ kragniz ]; + platforms = lib.platforms.all; mainProgram = "rwgame"; }; } diff --git a/pkgs/games/openttd/grfcodec.nix b/pkgs/games/openttd/grfcodec.nix index e9d559793adf3..287aacdbc6651 100644 --- a/pkgs/games/openttd/grfcodec.nix +++ b/pkgs/games/openttd/grfcodec.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { 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 b2ce587d1aa4c..751ceb456fe3a 100644 --- a/pkgs/games/openttd/nml.nix +++ b/pkgs/games/openttd/nml.nix @@ -20,11 +20,11 @@ python3.pkgs.buildPythonApplication rec { ply ]; - 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/orthorobot/default.nix b/pkgs/games/orthorobot/default.nix index 5278cd20c6e12..b582f4d31c95b 100644 --- a/pkgs/games/orthorobot/default.nix +++ b/pkgs/games/orthorobot/default.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Recharge the robot"; mainProgram = "orthorobot"; - maintainers = with maintainers; [ leenaars ]; - platforms = platforms.linux; - license = licenses.free; + maintainers = with lib.maintainers; [ leenaars ]; + platforms = lib.platforms.linux; + license = lib.licenses.free; downloadPage = "https://stabyourself.net/orthorobot/"; }; } diff --git a/pkgs/games/pegasus-frontend/default.nix b/pkgs/games/pegasus-frontend/default.nix index de566c43e6a81..94f2c4b0ab691 100644 --- a/pkgs/games/pegasus-frontend/default.nix +++ b/pkgs/games/pegasus-frontend/default.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { SDL2 ]; - meta = with lib; { + meta = { description = "Cross platform, customizable graphical frontend for launching emulators and managing your game collection"; mainProgram = "pegasus-fe"; homepage = "https://pegasus-frontend.org/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ tengkuizdihar ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ tengkuizdihar ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/games/pentobi/default.nix b/pkgs/games/pentobi/default.nix index cbcddf570b032..657891db9af68 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/pro-office-calculator/default.nix b/pkgs/games/pro-office-calculator/default.nix index 88894e2fb99d1..f2aecc4509148 100644 --- a/pkgs/games/pro-office-calculator/default.nix +++ b/pkgs/games/pro-office-calculator/default.nix @@ -26,12 +26,12 @@ mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Completely normal office calculator"; mainProgram = "procalc"; homepage = "https://proofficecalculator.com/"; - maintainers = [ maintainers.pmiddend ]; - platforms = platforms.linux; - license = licenses.gpl3; + maintainers = [ lib.maintainers.pmiddend ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; }; } diff --git a/pkgs/games/pysolfc/default.nix b/pkgs/games/pysolfc/default.nix index dede95fe0c80c..261bc995bc028 100644 --- a/pkgs/games/pysolfc/default.nix +++ b/pkgs/games/pysolfc/default.nix @@ -101,11 +101,11 @@ python311Packages.buildPythonApplication rec { ] ); - meta = with lib; { + meta = { description = "A collection of more than 1000 solitaire card games"; mainProgram = "pysol.py"; homepage = "https://pysolfc.sourceforge.io"; - license = licenses.gpl3; - maintainers = with maintainers; [ ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/games/qtads/default.nix b/pkgs/games/qtads/default.nix index 4de706b5c50dc..32b86d0b03a10 100644 --- a/pkgs/games/qtads/default.nix +++ b/pkgs/games/qtads/default.nix @@ -37,12 +37,12 @@ mkDerivation rec { qtbase ]; - meta = with lib; { + meta = { homepage = "https://realnc.github.io/qtads/"; description = "Multimedia interpreter for TADS games"; mainProgram = "qtads"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ orivej ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ orivej ]; }; } diff --git a/pkgs/games/quake2/yquake2/default.nix b/pkgs/games/quake2/yquake2/default.nix index 08d3c3e40dbef..f9b63b4926d0d 100644 --- a/pkgs/games/quake2/yquake2/default.nix +++ b/pkgs/games/quake2/yquake2/default.nix @@ -102,12 +102,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/quake3/content/demo.nix b/pkgs/games/quake3/content/demo.nix index 9b3b4d06245b8..24ce3089e858f 100644 --- a/pkgs/games/quake3/content/demo.nix +++ b/pkgs/games/quake3/content/demo.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation { preferLocalBuild = true; - meta = with lib; { + meta = { description = "Quake 3 Arena demo content"; - license = licenses.unfreeRedistributable; - platforms = platforms.all; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.unfreeRedistributable; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/games/quake3/content/hires.nix b/pkgs/games/quake3/content/hires.nix index 2195e41313529..199cae13abce0 100644 --- a/pkgs/games/quake3/content/hires.nix +++ b/pkgs/games/quake3/content/hires.nix @@ -21,10 +21,10 @@ stdenv.mkDerivation { 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 e3b5485960702..46c44cd5229d1 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; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.unfreeRedistributable; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/games/rare/default.nix b/pkgs/games/rare/default.nix index d3d74c09a34b7..94a69d61e243d 100644 --- a/pkgs/games/rare/default.nix +++ b/pkgs/games/rare/default.nix @@ -55,12 +55,12 @@ buildPythonApplication rec { # Project has no tests doCheck = false; - meta = with lib; { + meta = { description = "GUI for Legendary, an Epic Games Launcher open source alternative"; homepage = "https://github.com/RareDevs/Rare"; maintainers = [ ]; - license = licenses.gpl3Only; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; mainProgram = "rare"; }; } diff --git a/pkgs/games/rogue/default.nix b/pkgs/games/rogue/default.nix index dcb16306767a6..06b57ae9e3c92 100644 --- a/pkgs/games/rogue/default.nix +++ b/pkgs/games/rogue/default.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { buildInputs = [ ncurses ]; - meta = with lib; { + meta = { homepage = "http://rogue.rogueforge.net/rogue-5-4/"; description = "Final version of the original Rogue game developed for the UNIX operating system"; mainProgram = "rogue"; - platforms = platforms.all; - license = licenses.bsd3; + platforms = lib.platforms.all; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/games/rott/default.nix b/pkgs/games/rott/default.nix index a91187730151d..b4b40debe3292 100644 --- a/pkgs/games/rott/default.nix +++ b/pkgs/games/rott/default.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "SDL port of Rise of the Triad"; mainProgram = "rott"; homepage = "https://icculus.org/rott/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ sander ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ sander ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/games/scummvm/default.nix b/pkgs/games/scummvm/default.nix index 716a4787dbfc3..e7291633e9643 100644 --- a/pkgs/games/scummvm/default.nix +++ b/pkgs/games/scummvm/default.nix @@ -95,12 +95,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Program to run certain classic graphical point-and-click adventure games (such as Monkey Island)"; mainProgram = "scummvm"; homepage = "https://www.scummvm.org/"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.peterhoeg ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.peterhoeg ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/games/sgt-puzzles/default.nix b/pkgs/games/sgt-puzzles/default.nix index 257bad506f5d8..59b68a044759c 100644 --- a/pkgs/games/sgt-puzzles/default.nix +++ b/pkgs/games/sgt-puzzles/default.nix @@ -88,14 +88,14 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Simon Tatham's portable puzzle collection"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raskin tomfitzhenry ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; homepage = "https://www.chiark.greenend.org.uk/~sgtatham/puzzles/"; }; } diff --git a/pkgs/games/soi/default.nix b/pkgs/games/soi/default.nix index c99a422fe27d1..50d2981e2c069 100644 --- a/pkgs/games/soi/default.nix +++ b/pkgs/games/soi/default.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { "-DLUABIND_LIBRARY=${luabind}/lib/libluabind09.a" ]; - meta = with lib; { + meta = { description = "Physics-based puzzle game"; mainProgram = "soi"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; - license = licenses.free; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; + license = lib.licenses.free; downloadPage = "https://sourceforge.net/projects/soi/files/"; }; } diff --git a/pkgs/games/solarus/default.nix b/pkgs/games/solarus/default.nix index 90b988de4796e..ad55b459efd69 100644 --- a/pkgs/games/solarus/default.nix +++ b/pkgs/games/solarus/default.nix @@ -59,16 +59,16 @@ mkDerivation rec { mv $out/lib $lib ''; - meta = with lib; { + meta = { description = "Zelda-like ARPG game engine"; longDescription = '' Solarus is a game engine for Zelda-like ARPG games written in lua. Many full-fledged games have been writen for the engine. ''; homepage = "https://www.solarus-games.org"; - license = licenses.gpl3; + license = lib.licenses.gpl3; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/games/spring/default.nix b/pkgs/games/spring/default.nix index 410de8382c938..6b6658727684c 100644 --- a/pkgs/games/spring/default.nix +++ b/pkgs/games/spring/default.nix @@ -92,11 +92,11 @@ stdenv.mkDerivation rec { --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ stdenv.cc.cc ]}" ''; - meta = with lib; { + meta = { homepage = "https://springrts.com/"; description = "Powerful real-time strategy (RTS) game engine"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ qknight domenkozar sorki diff --git a/pkgs/games/spring/springlobby.nix b/pkgs/games/spring/springlobby.nix index dc3ae4ef6d7a7..0331b5e6bc158 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 domenkozar ]; diff --git a/pkgs/games/stuntrally/default.nix b/pkgs/games/stuntrally/default.nix index c847ad4ceda48..3ec31737ee193 100644 --- a/pkgs/games/stuntrally/default.nix +++ b/pkgs/games/stuntrally/default.nix @@ -81,11 +81,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/the-butterfly-effect/default.nix b/pkgs/games/the-butterfly-effect/default.nix index 8e03d34c8d2bf..1316e97143cf0 100644 --- a/pkgs/games/the-butterfly-effect/default.nix +++ b/pkgs/games/the-butterfly-effect/default.nix @@ -45,12 +45,12 @@ mkDerivation rec { cp -r ../usr/share $out/ ''; - meta = with lib; { + meta = { description = "Physics-based game vaguely similar to Incredible Machine"; mainProgram = "tbe"; homepage = "http://the-butterfly-effect.org/"; - maintainers = [ maintainers.raskin ]; - platforms = platforms.linux; - license = licenses.gpl2Only; + maintainers = [ lib.maintainers.raskin ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/games/toppler/default.nix b/pkgs/games/toppler/default.nix index 0c9290dcc4d94..4a422fe32ce95 100644 --- a/pkgs/games/toppler/default.nix +++ b/pkgs/games/toppler/default.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation (finalAttrs: { hardeningDisable = [ "format" ]; - meta = with lib; { + meta = { description = "Jump and run game, reimplementation of Tower Toppler/Nebulus"; homepage = "https://gitlab.com/roever/toppler"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ fgaz ]; - platforms = platforms.all; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ fgaz ]; + platforms = lib.platforms.all; }; }) diff --git a/pkgs/games/vessel/default.nix b/pkgs/games/vessel/default.nix index 0aad0143aa601..010c971bd1987 100644 --- a/pkgs/games/vessel/default.nix +++ b/pkgs/games/vessel/default.nix @@ -88,7 +88,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, @@ -97,8 +97,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/games/vimgolf/default.nix b/pkgs/games/vimgolf/default.nix index f2e6c5075f14f..5d4ac5ce13db9 100644 --- a/pkgs/games/vimgolf/default.nix +++ b/pkgs/games/vimgolf/default.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/games/warsow/default.nix b/pkgs/games/warsow/default.nix index 57fe262babd4e..08ef1975af3da 100644 --- a/pkgs/games/warsow/default.nix +++ b/pkgs/games/warsow/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { done ''; - meta = with lib; { + meta = { description = "Multiplayer FPS game designed for competitive gaming"; longDescription = '' Set in a futuristic cartoon-like world where rocketlauncher-wielding @@ -37,8 +37,8 @@ stdenv.mkDerivation rec { and macOS. ''; homepage = "http://www.warsow.net"; - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ astsmtl abbradar ]; diff --git a/pkgs/games/warsow/engine.nix b/pkgs/games/warsow/engine.nix index 0d2ef4cfaae1f..ffcf4ab0a829e 100644 --- a/pkgs/games/warsow/engine.nix +++ b/pkgs/games/warsow/engine.nix @@ -80,15 +80,15 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Multiplayer FPS game designed for competitive gaming (engine only)"; homepage = "http://www.warsow.net"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ astsmtl abbradar ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; broken = stdenv.hostPlatform.isAarch64; }; } diff --git a/pkgs/games/xpilot/bloodspilot-server.nix b/pkgs/games/xpilot/bloodspilot-server.nix index 2e3ac840ea67a..9ab1eaa14f0f8 100644 --- a/pkgs/games/xpilot/bloodspilot-server.nix +++ b/pkgs/games/xpilot/bloodspilot-server.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { ./server-gcc5.patch ]; - meta = with lib; { + meta = { description = "Multiplayer X11 space combat game (server part)"; mainProgram = "xpilots"; homepage = "http://bloodspilot.sf.net/"; - 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/games/xpilot/default.nix b/pkgs/games/xpilot/default.nix index 8e011af62f299..dff558994f0e9 100644 --- a/pkgs/games/xpilot/default.nix +++ b/pkgs/games/xpilot/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { patches = [ ./xpilot-ng-gcc-14-fix.patch ]; - meta = with lib; { + meta = { description = "Multiplayer X11 space combat game"; homepage = "http://xpilot.sf.net/"; - 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/kde/misc/kup/default.nix b/pkgs/kde/misc/kup/default.nix index 60ae6db479e90..bc09b0beb88b1 100644 --- a/pkgs/kde/misc/kup/default.nix +++ b/pkgs/kde/misc/kup/default.nix @@ -17,8 +17,8 @@ mkKdeDerivation rec { extraBuildInputs = [ libgit2 ]; - meta = with lib; { - license = licenses.gpl2Plus; - maintainers = [ maintainers.pwoelfel ]; + meta = { + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.pwoelfel ]; }; } diff --git a/pkgs/kde/third-party/applet-window-buttons6/default.nix b/pkgs/kde/third-party/applet-window-buttons6/default.nix index 282978fbc338a..3f2db83df50ba 100644 --- a/pkgs/kde/third-party/applet-window-buttons6/default.nix +++ b/pkgs/kde/third-party/applet-window-buttons6/default.nix @@ -35,10 +35,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/misc/apulse/default.nix b/pkgs/misc/apulse/default.nix index c8bc4d7140ec0..3edb5d0a225f8 100644 --- a/pkgs/misc/apulse/default.nix +++ b/pkgs/misc/apulse/default.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { "-DLOG_TO_STDERR=${oz logToStderr}" ]; - meta = with lib; { + meta = { description = "PulseAudio emulation for ALSA"; homepage = "https://github.com/i-rinat/apulse"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = [ maintainers.jagajaga ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.jagajaga ]; mainProgram = "apulse"; }; } diff --git a/pkgs/misc/autotiling/default.nix b/pkgs/misc/autotiling/default.nix index ff7f4b147d6c1..90ebed2d8bfdf 100644 --- a/pkgs/misc/autotiling/default.nix +++ b/pkgs/misc/autotiling/default.nix @@ -23,12 +23,12 @@ buildPythonApplication rec { ]; doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/nwg-piotr/autotiling"; description = "Script for sway and i3 to automatically switch the horizontal / vertical window split orientation"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ artturin ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ artturin ]; mainProgram = "autotiling"; }; } diff --git a/pkgs/misc/calaos/installer/default.nix b/pkgs/misc/calaos/installer/default.nix index 311b87f6b4297..8dfba5e749308 100644 --- a/pkgs/misc/calaos/installer/default.nix +++ b/pkgs/misc/calaos/installer/default.nix @@ -39,12 +39,12 @@ mkDerivation rec { cp -a calaos_installer $out/bin ''; - meta = with lib; { + meta = { description = "Calaos Installer, a tool to create calaos configuration"; mainProgram = "calaos_installer"; homepage = "https://www.calaos.fr/"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ tiramiseb ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ tiramiseb ]; }; } diff --git a/pkgs/misc/cliscord/default.nix b/pkgs/misc/cliscord/default.nix index 0ceb9ca462a29..aa88b93b69935 100644 --- a/pkgs/misc/cliscord/default.nix +++ b/pkgs/misc/cliscord/default.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Z8ras6W4BnAWjHe6rPd1X1d3US5gq7CxnBAkW//OTsg="; - meta = with lib; { + meta = { description = "Simple command-line tool to send text and files to discord"; homepage = "https://github.com/somebody1234/cliscord"; - license = licenses.mit; - maintainers = with maintainers; [ lom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lom ]; mainProgram = "cliscord"; }; } diff --git a/pkgs/misc/cups/cups-pk-helper.nix b/pkgs/misc/cups/cups-pk-helper.nix index ede2192354222..f3d4001ee708c 100644 --- a/pkgs/misc/cups/cups-pk-helper.nix +++ b/pkgs/misc/cups/cups-pk-helper.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/misc/drivers/gutenprint/default.nix b/pkgs/misc/drivers/gutenprint/default.nix index 56b628ad90546..e24d10d9396d6 100644 --- a/pkgs/misc/drivers/gutenprint/default.nix +++ b/pkgs/misc/drivers/gutenprint/default.nix @@ -74,11 +74,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/misc/drivers/sc-controller/default.nix b/pkgs/misc/drivers/sc-controller/default.nix index 49d54543a5a87..7262e9212a3aa 100644 --- a/pkgs/misc/drivers/sc-controller/default.nix +++ b/pkgs/misc/drivers/sc-controller/default.nix @@ -80,13 +80,13 @@ buildPythonApplication rec { ) ''; - meta = with lib; { + meta = { homepage = "https://github.com/C0rn3j/sc-controller"; # donations: https://www.patreon.com/kozec description = "User-mode driver and GUI for Steam Controller and other controllers"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ orivej rnhmjoj ]; diff --git a/pkgs/misc/drivers/spacenavd/default.nix b/pkgs/misc/drivers/spacenavd/default.nix index 7c0eb92e33a76..1b61553f656f4 100644 --- a/pkgs/misc/drivers/spacenavd/default.nix +++ b/pkgs/misc/drivers/spacenavd/default.nix @@ -32,12 +32,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/misc/jackaudio/default.nix b/pkgs/misc/jackaudio/default.nix index ea9700f1c3038..ab8f46a9bbfaa 100644 --- a/pkgs/misc/jackaudio/default.nix +++ b/pkgs/misc/jackaudio/default.nix @@ -127,12 +127,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = with lib; { + meta = { description = "JACK audio connection kit, version 2 with jackdbus"; homepage = "https://jackaudio.org"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; pkgConfigModules = [ "jack" ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/misc/jackaudio/jack1.nix b/pkgs/misc/jackaudio/jack1.nix index fa31d8ae5fbbf..6877a2bc1edf0 100644 --- a/pkgs/misc/jackaudio/jack1.nix +++ b/pkgs/misc/jackaudio/jack1.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/misc/jackaudio/tools.nix b/pkgs/misc/jackaudio/tools.nix index 25b0b5af38ab0..f7b8a24df338f 100644 --- a/pkgs/misc/jackaudio/tools.nix +++ b/pkgs/misc/jackaudio/tools.nix @@ -62,11 +62,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/misc/jitsi-meet-prosody/default.nix b/pkgs/misc/jitsi-meet-prosody/default.nix index e7517c27e615f..09b0fd97e656e 100644 --- a/pkgs/misc/jitsi-meet-prosody/default.nix +++ b/pkgs/misc/jitsi-meet-prosody/default.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; - maintainers = teams.jitsi.members; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = lib.teams.jitsi.members; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/misc/lilypond/default.nix b/pkgs/misc/lilypond/default.nix index 3892a3d733b6f..1df7345b45809 100644 --- a/pkgs/misc/lilypond/default.nix +++ b/pkgs/misc/lilypond/default.nix @@ -121,15 +121,15 @@ stdenv.mkDerivation rec { supportedFeatures = [ "commit" ]; }; - meta = with lib; { + meta = { description = "Music typesetting system"; homepage = "http://lilypond.org/"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ marcweber yurrriq ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; FONTCONFIG_FILE = lib.optional stdenv.hostPlatform.isDarwin (makeFontsConf { diff --git a/pkgs/misc/logging/beats/7.x.nix b/pkgs/misc/logging/beats/7.x.nix index 58641f46a11f6..9d9da332dfe75 100644 --- a/pkgs/misc/logging/beats/7.x.nix +++ b/pkgs/misc/logging/beats/7.x.nix @@ -28,15 +28,15 @@ 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; [ fadenb 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 9315bdd8ca3da..d784a84dad297 100644 --- a/pkgs/misc/opcua-client-gui/default.nix +++ b/pkgs/misc/opcua-client-gui/default.nix @@ -53,11 +53,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/screensavers/slock/default.nix b/pkgs/misc/screensavers/slock/default.nix index 99c2372f09b9a..4780c5156faa6 100644 --- a/pkgs/misc/screensavers/slock/default.nix +++ b/pkgs/misc/screensavers/slock/default.nix @@ -46,18 +46,18 @@ stdenv.mkDerivation (finalAttrs: { url = "git://git.suckless.org/slock"; }; - meta = with lib; { + meta = { homepage = "https://tools.suckless.org/slock"; description = "Simple X display locker"; mainProgram = "slock"; longDescription = '' Simple X display locker. This is the simplest X screen locker. ''; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ astsmtl qusic ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }) diff --git a/pkgs/misc/t-rec/default.nix b/pkgs/misc/t-rec/default.nix index fd33e41c1ea7b..a5a7fe102876b 100644 --- a/pkgs/misc/t-rec/default.nix +++ b/pkgs/misc/t-rec/default.nix @@ -41,11 +41,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-orgSmGtZwTqlWSpUjU17QRgDlbheo2DbS1YI7l4MhmM="; - meta = with lib; { + meta = { description = "Blazingly fast terminal recorder that generates animated gif images for the web written in rust"; homepage = "https://github.com/sassman/t-rec-rs"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ hoverbear matthiasbeyer ]; diff --git a/pkgs/os-specific/bsd/freebsd/pkgs/libspl.nix b/pkgs/os-specific/bsd/freebsd/pkgs/libspl.nix index c444975549ad6..131836c0fd56a 100644 --- a/pkgs/os-specific/bsd/freebsd/pkgs/libspl.nix +++ b/pkgs/os-specific/bsd/freebsd/pkgs/libspl.nix @@ -15,8 +15,8 @@ mkDerivation { export MAKEOBJDIRPREFIX=$TMP/obj ''; - meta = with lib; { - platform = platforms.freebsd; - license = licenses.cddl; + meta = { + platform = lib.platforms.freebsd; + 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 8b13f7ba9d767..371e35ea4fb15 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 e926557fc444f..0eeb2fa2ee244 100644 --- a/pkgs/os-specific/bsd/netbsd/pkgs/mkDerivation.nix +++ b/pkgs/os-specific/bsd/netbsd/pkgs/mkDerivation.nix @@ -91,13 +91,13 @@ lib.makeOverridable ( strictDeps = true; - meta = with lib; { - maintainers = with maintainers; [ + meta = { + maintainers = with lib.maintainers; [ matthewbauer 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 69d457a180d8d..9cd766c9d1d54 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 = "A 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 0e0778d394a62..11947bf2f0c8f 100644 --- a/pkgs/os-specific/bsd/openbsd/pkgs/mkDerivation.nix +++ b/pkgs/os-specific/bsd/openbsd/pkgs/mkDerivation.nix @@ -78,10 +78,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/asitop/default.nix b/pkgs/os-specific/darwin/asitop/default.nix index 7e20f26889b79..c707399c1482e 100644 --- a/pkgs/os-specific/darwin/asitop/default.nix +++ b/pkgs/os-specific/darwin/asitop/default.nix @@ -24,11 +24,11 @@ python3.pkgs.buildPythonApplication rec { psutil ]; - meta = with lib; { + meta = { homepage = "https://github.com/tlkh/asitop"; description = "Perf monitoring CLI tool for Apple Silicon"; - platforms = platforms.darwin; - license = licenses.mit; - maintainers = with maintainers; [ juliusrickert ]; + platforms = lib.platforms.darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ juliusrickert ]; }; } diff --git a/pkgs/os-specific/darwin/defaultbrowser/default.nix b/pkgs/os-specific/darwin/defaultbrowser/default.nix index f4f4c885d144e..986aee529e848 100644 --- a/pkgs/os-specific/darwin/defaultbrowser/default.nix +++ b/pkgs/os-specific/darwin/defaultbrowser/default.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { buildInputs = [ Foundation ]; - 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/os-specific/darwin/duti/default.nix b/pkgs/os-specific/darwin/duti/default.nix index 6d46f002ae133..a4c6de2ff4ee9 100644 --- a/pkgs/os-specific/darwin/duti/default.nix +++ b/pkgs/os-specific/darwin/duti/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { 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 @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { a Microsoft Word document has a UTI of com.microsoft.word.doc. Using duti, the user can change which application acts as the default handler for a given UTI. ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matthewbauer 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/os-specific/darwin/khd/default.nix b/pkgs/os-specific/darwin/khd/default.nix index 474d750ecc8c7..daf58d1750a24 100644 --- a/pkgs/os-specific/darwin/khd/default.nix +++ b/pkgs/os-specific/darwin/khd/default.nix @@ -44,12 +44,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/os-specific/darwin/openwith/default.nix b/pkgs/os-specific/darwin/openwith/default.nix index f9bf5ffb94e77..38856f6b0325f 100644 --- a/pkgs/os-specific/darwin/openwith/default.nix +++ b/pkgs/os-specific/darwin/openwith/default.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { 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/os-specific/darwin/osx-cpu-temp/default.nix b/pkgs/os-specific/darwin/osx-cpu-temp/default.nix index 59c92f9d434a5..238cb87f7969e 100644 --- a/pkgs/os-specific/darwin/osx-cpu-temp/default.nix +++ b/pkgs/os-specific/darwin/osx-cpu-temp/default.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { 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/os-specific/darwin/qes/default.nix b/pkgs/os-specific/darwin/qes/default.nix index 5b824da0f5871..3899c0c5bd146 100644 --- a/pkgs/os-specific/darwin/qes/default.nix +++ b/pkgs/os-specific/darwin/qes/default.nix @@ -20,11 +20,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/os-specific/darwin/reattach-to-user-namespace/default.nix b/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix index 9aacbce1c790b..73068c3fb8edc 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/rewrite-tbd/default.nix b/pkgs/os-specific/darwin/rewrite-tbd/default.nix index 1026d9a8983a3..1b519f80782e0 100644 --- a/pkgs/os-specific/darwin/rewrite-tbd/default.nix +++ b/pkgs/os-specific/darwin/rewrite-tbd/default.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation { "PREFIX=${placeholder "out"}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/thefloweringash/rewrite-tbd/"; description = "Rewrite filepath in .tbd to Nix applicable format"; mainProgram = "rewrite-tbd"; - platforms = platforms.unix; - license = licenses.mit; + platforms = lib.platforms.unix; + license = lib.licenses.mit; }; } diff --git a/pkgs/os-specific/darwin/sigtool/default.nix b/pkgs/os-specific/darwin/sigtool/default.nix index 41dccbfff6c0b..f9872578826f8 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/linux/acpi-call/default.nix b/pkgs/os-specific/linux/acpi-call/default.nix index 0b4101246930f..bada9e4e052d6 100644 --- a/pkgs/os-specific/linux/acpi-call/default.nix +++ b/pkgs/os-specific/linux/acpi-call/default.nix @@ -30,15 +30,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 f7c4a9edbc1a0..440293f92a7d4 100644 --- a/pkgs/os-specific/linux/akvcam/default.nix +++ b/pkgs/os-specific/linux/akvcam/default.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Virtual camera driver for Linux"; homepage = "https://github.com/webcamoid/akvcam"; - maintainers = with maintainers; [ freezeboy ]; - platforms = platforms.linux; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ freezeboy ]; + platforms = lib.platforms.linux; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/os-specific/linux/apfs/default.nix b/pkgs/os-specific/linux/apfs/default.nix index d8bf15f0a8458..894fef18ea25b 100644 --- a/pkgs/os-specific/linux/apfs/default.nix +++ b/pkgs/os-specific/linux/apfs/default.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation { passthru.tests.apfs = nixosTests.apfs; - meta = with lib; { + meta = { description = "APFS module for linux"; longDescription = '' The Apple File System (APFS) is the copy-on-write filesystem currently @@ -43,8 +43,8 @@ stdenv.mkDerivation { Encryption is still not in the works though. ''; homepage = "https://github.com/linux-apfs/linux-apfs-rw"; - 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/os-specific/linux/bbswitch/default.nix b/pkgs/os-specific/linux/bbswitch/default.nix index 67c4bcbbcb0fd..bfd37eca02267 100644 --- a/pkgs/os-specific/linux/bbswitch/default.nix +++ b/pkgs/os-specific/linux/bbswitch/default.nix @@ -61,14 +61,14 @@ 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" "i686-linux" ]; homepage = "https://github.com/Bumblebee-Project/bbswitch"; - maintainers = with maintainers; [ abbradar ]; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ abbradar ]; + 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 be53b12a42ce5..b224bf1c7a965 100644 --- a/pkgs/os-specific/linux/bionic-prebuilt/default.nix +++ b/pkgs/os-specific/linux/bionic-prebuilt/default.nix @@ -152,11 +152,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/cpupower-gui/default.nix b/pkgs/os-specific/linux/cpupower-gui/default.nix index f29cce5b8f196..0711f7e77b802 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 c2e881b33c313..91f0c0baf5a21 100644 --- a/pkgs/os-specific/linux/cpupower/default.nix +++ b/pkgs/os-specific/linux/cpupower/default.nix @@ -45,11 +45,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/decklink/default.nix b/pkgs/os-specific/linux/decklink/default.nix index c5d1b570ab510..f1fe812f5c52f 100644 --- a/pkgs/os-specific/linux/decklink/default.nix +++ b/pkgs/os-specific/linux/decklink/default.nix @@ -41,12 +41,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/device-tree/raspberrypi.nix b/pkgs/os-specific/linux/device-tree/raspberrypi.nix index d7617f64cfc6c..0e80cfad86058 100644 --- a/pkgs/os-specific/linux/device-tree/raspberrypi.nix +++ b/pkgs/os-specific/linux/device-tree/raspberrypi.nix @@ -35,7 +35,7 @@ stdenvNoCC.mkDerivation { # Compatible overlays that may be used overlays = "${raspberrypifw}/share/raspberrypi/boot/overlays"; }; - meta = with lib; { + meta = { inherit (raspberrypifw.meta) homepage license; description = "DTBs for the Raspberry Pi"; }; diff --git a/pkgs/os-specific/linux/digimend/default.nix b/pkgs/os-specific/linux/digimend/default.nix index 31d68acc53166..9aa7aef0fcede 100644 --- a/pkgs/os-specific/linux/digimend/default.nix +++ b/pkgs/os-specific/linux/digimend/default.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { "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; [ gebner ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ gebner ]; + 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 6b19320dd9e32..5bac5dc5c6761 100644 --- a/pkgs/os-specific/linux/dpdk-kmods/default.nix +++ b/pkgs/os-specific/linux/dpdk-kmods/default.nix @@ -31,11 +31,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 ce944bce3e0a5..d800fd764ee59 100644 --- a/pkgs/os-specific/linux/drbd/driver.nix +++ b/pkgs/os-specific/linux/drbd/driver.nix @@ -46,12 +46,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 408412481ac72..55cbc577e69e5 100644 --- a/pkgs/os-specific/linux/drbd/utils.nix +++ b/pkgs/os-specific/linux/drbd/utils.nix @@ -122,12 +122,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 963b683a85936..35e12d0f9ceda 100644 --- a/pkgs/os-specific/linux/ena/default.nix +++ b/pkgs/os-specific/linux/ena/default.nix @@ -48,14 +48,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/facetimehd/default.nix b/pkgs/os-specific/linux/facetimehd/default.nix index 078ef38339572..9f29eebfd7576 100644 --- a/pkgs/os-specific/linux/facetimehd/default.nix +++ b/pkgs/os-specific/linux/facetimehd/default.nix @@ -38,11 +38,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/ffado/default.nix b/pkgs/os-specific/linux/ffado/default.nix index c34d964eeb470..19b792524b32d 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 10ca576bd6ec3..b85f5f60385c8 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 ec5ec8ef98c28..a1f135480b600 100644 --- a/pkgs/os-specific/linux/firmware/raspberrypi/armstubs.nix +++ b/pkgs/os-specific/linux/firmware/raspberrypi/armstubs.nix @@ -54,10 +54,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/freeipa/default.nix b/pkgs/os-specific/linux/freeipa/default.nix index 5a60b256bde16..2934c790f9885 100644 --- a/pkgs/os-specific/linux/freeipa/default.nix +++ b/pkgs/os-specific/linux/freeipa/default.nix @@ -156,7 +156,7 @@ stdenv.mkDerivation rec { rm -rf $out/etc/ipa $out/var/lib/ipa-client/sysrestore ''; - meta = with lib; { + meta = { description = "Identity, Policy and Audit system"; longDescription = '' IPA is an integrated solution to provide centrally managed Identity (users, @@ -166,9 +166,9 @@ stdenv.mkDerivation rec { and integration with Active Directory based infrastructures (Trusts). ''; homepage = "https://www.freeipa.org/"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.s1341 ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.s1341 ]; + 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 dd005e6dc4e68..7040f36b34b6a 100644 --- a/pkgs/os-specific/linux/fwts/module.nix +++ b/pkgs/os-specific/linux/fwts/module.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { "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/gcadapter-oc-kmod/default.nix b/pkgs/os-specific/linux/gcadapter-oc-kmod/default.nix index c56914fcee7a7..83bd07f5c8788 100644 --- a/pkgs/os-specific/linux/gcadapter-oc-kmod/default.nix +++ b/pkgs/os-specific/linux/gcadapter-oc-kmod/default.nix @@ -31,11 +31,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-t150/default.nix b/pkgs/os-specific/linux/hid-t150/default.nix index 7cb40d01aaffe..d9b1e2899c648 100644 --- a/pkgs/os-specific/linux/hid-t150/default.nix +++ b/pkgs/os-specific/linux/hid-t150/default.nix @@ -30,11 +30,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/i7z/default.nix b/pkgs/os-specific/linux/i7z/default.nix index cb01e684735ac..1149e0524d53b 100644 --- a/pkgs/os-specific/linux/i7z/default.nix +++ b/pkgs/os-specific/linux/i7z/default.nix @@ -53,12 +53,12 @@ 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; - maintainers = with maintainers; [ bluescreen303 ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ bluescreen303 ]; # broken on ARM platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/os-specific/linux/iptables/default.nix b/pkgs/os-specific/linux/iptables/default.nix index b0737e3e8d6a7..1f5b7698c0c45 100644 --- a/pkgs/os-specific/linux/iptables/default.nix +++ b/pkgs/os-specific/linux/iptables/default.nix @@ -74,12 +74,12 @@ 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; - maintainers = with maintainers; [ fpletz ]; - license = licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ fpletz ]; + license = lib.licenses.gpl2Plus; downloadPage = "https://www.netfilter.org/projects/iptables/files/"; }; } diff --git a/pkgs/os-specific/linux/it87/default.nix b/pkgs/os-specific/linux/it87/default.nix index d5d8c60d92fd5..6b5545c3b037e 100644 --- a/pkgs/os-specific/linux/it87/default.nix +++ b/pkgs/os-specific/linux/it87/default.nix @@ -32,14 +32,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/hannesha/it87"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; platforms = [ "x86_64-linux" "i686-linux" ]; - maintainers = teams.lumiguide.members; + maintainers = lib.teams.lumiguide.members; }; } diff --git a/pkgs/os-specific/linux/kernel-headers/default.nix b/pkgs/os-specific/linux/kernel-headers/default.nix index 722965fed1e14..86de6e2a34378 100644 --- a/pkgs/os-specific/linux/kernel-headers/default.nix +++ b/pkgs/os-specific/linux/kernel-headers/default.nix @@ -131,10 +131,10 @@ let echo "${version}-default" > $out/include/config/kernel.release ''; - meta = with lib; { + meta = { description = "Header files and scripts for Linux kernel"; - license = licenses.gpl2Only; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; }; }; in diff --git a/pkgs/os-specific/linux/kernel/gpio-utils.nix b/pkgs/os-specific/linux/kernel/gpio-utils.nix index 75bdf6434e6a6..d4eb9d3c75ea4 100644 --- a/pkgs/os-specific/linux/kernel/gpio-utils.nix +++ b/pkgs/os-specific/linux/kernel/gpio-utils.nix @@ -21,10 +21,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/os-specific/linux/libbpf/0.x.nix b/pkgs/os-specific/linux/libbpf/0.x.nix index 603fded29262e..d5203c070c075 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/mba6x_bl/default.nix b/pkgs/os-specific/linux/mba6x_bl/default.nix index 2f5358e6ea15d..5a3c15b346d65 100644 --- a/pkgs/os-specific/linux/mba6x_bl/default.nix +++ b/pkgs/os-specific/linux/mba6x_bl/default.nix @@ -26,11 +26,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/mcelog/default.nix b/pkgs/os-specific/linux/mcelog/default.nix index 28eb2ef55385d..f5cdb7295570a 100644 --- a/pkgs/os-specific/linux/mcelog/default.nix +++ b/pkgs/os-specific/linux/mcelog/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { --replace /usr/sbin $out/bin ''; - meta = with lib; { + meta = { description = "Log x86 machine checks: memory, IO, and CPU hardware errors"; mainProgram = "mcelog"; longDescription = '' @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { errors are logged to /var/log/mcelog or syslog or the journal. ''; homepage = "http://mcelog.org/"; - license = licenses.gpl2Plus; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/bash/2.nix b/pkgs/os-specific/linux/minimal-bootstrap/bash/2.nix index fd273838c9544..5d062c04e5b97 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; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; + 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 32daa77ed55da..ca6e942810b8d 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; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; + 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 3292dd0528dd6..8ad8f521a31ff 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; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; + 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 ccceabe9a6e4f..e86f94ac863b1 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; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.unix; + license = lib.licenses.bsdOriginal; + maintainers = lib.teams.minimal-bootstrap.members; + 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 9edf6402fbed8..cbd409e817eeb 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; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; + 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 b37e94a5f2632..3f6fb3fd768fb 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; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; + 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 e6648b5987bee..5673132e0ed96 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; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = lib.teams.minimal-bootstrap.members; + 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 d731ee8037e41..46fe74851f9f6 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; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; + 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 d95c66d86337c..9e10fa1b84167 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; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gnugrep/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/gnugrep/default.nix index 62dd295eefe87..4749480f35089 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; 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 bced960269653..c9380f47c751e 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gnumake/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gnumake/default.nix @@ -162,13 +162,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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; 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 d2b53fb9a97fb..8bed4811de51a 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; 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 66de5351204a8..69cb1912d923c 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; 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 658f05923ac3e..9a8e65caad721 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; 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 aa702b245b978..d8e72151c2941 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; 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 f674dcfffa9b5..0d53cd5772389 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; 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 84d46b8f5743f..2750464bf0523 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; 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 8013bd5a91c5a..3bd3e4715b300 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; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; + 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 5262083a1d0ac..1d09d06f4e21d 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 ]; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.unix; + maintainers = lib.teams.minimal-bootstrap.members; + 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 2eece86cf1d31..1ed17765a0fd2 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 ]; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.unix; + maintainers = lib.teams.minimal-bootstrap.members; + 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 ec3fa5aa7bdf2..e7fbbab3c48f5 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; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.minimal-bootstrap.members; + 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 0aef4ced911b3..7e0f02d03d550 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.mit; + maintainers = lib.teams.minimal-bootstrap.members; 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 dfde3aff704f2..2fef2da3a466a 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; 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 e1224326e7204..3415f049aa8a7 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; 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 12e7b1f833c62..45b6d4387386a 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; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.all; + license = lib.licenses.lgpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; + 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 ac1bb84b9f3e5..d6629bf26781d 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; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = lib.teams.minimal-bootstrap.members; + platforms = lib.platforms.unix; }; } 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 82f38b7d939cf..113c101432ecb 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; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = lib.teams.minimal-bootstrap.members; + platforms = lib.platforms.all; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/tinycc/bootstrappable.nix b/pkgs/os-specific/linux/minimal-bootstrap/tinycc/bootstrappable.nix index 594ac6768a60b..3ca65cc16480e 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.lgpl21Only; + maintainers = lib.teams.minimal-bootstrap.members; 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 76f5ff9587ae4..730e41cfcef6b 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.lgpl21Only; + maintainers = lib.teams.minimal-bootstrap.members; 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 75b64f579c482..04b778cd6d369 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; - maintainers = teams.minimal-bootstrap.members; + license = lib.licenses.lgpl21Only; + maintainers = lib.teams.minimal-bootstrap.members; 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 5ef744115642b..38ec703a5e362 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 ]; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.unix; + maintainers = lib.teams.minimal-bootstrap.members; + platforms = lib.platforms.unix; }; } '' diff --git a/pkgs/os-specific/linux/mm-tools/default.nix b/pkgs/os-specific/linux/mm-tools/default.nix index ed592fc83514a..1bab417158b3b 100644 --- a/pkgs/os-specific/linux/mm-tools/default.nix +++ b/pkgs/os-specific/linux/mm-tools/default.nix @@ -12,9 +12,9 @@ stdenv.mkDerivation { preConfigure = "cd tools/mm"; - meta = with lib; { + meta = { inherit (linux.meta) license platforms; description = "Set of virtual memory tools"; - maintainers = [ maintainers.evils ]; + maintainers = [ lib.maintainers.evils ]; }; } diff --git a/pkgs/os-specific/linux/mwprocapture/default.nix b/pkgs/os-specific/linux/mwprocapture/default.nix index 28c2e11e429cb..eecc90003a5f8 100644 --- a/pkgs/os-specific/linux/mwprocapture/default.nix +++ b/pkgs/os-specific/linux/mwprocapture/default.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { "$out"/bin/mwcap-info ''; - meta = with lib; { + meta = { homepage = "https://www.magewell.com/"; description = "Linux driver for the Magewell Pro Capture family"; - license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ flexiondotorg ]; - platforms = platforms.linux; + license = lib.licenses.unfreeRedistributable; + maintainers = with lib.maintainers; [ flexiondotorg ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/nct6687d/default.nix b/pkgs/os-specific/linux/nct6687d/default.nix index 19d52276ecef3..cad394edb0f4f 100644 --- a/pkgs/os-specific/linux/nct6687d/default.nix +++ b/pkgs/os-specific/linux/nct6687d/default.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { 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/nullfs/default.nix b/pkgs/os-specific/linux/nullfs/default.nix index 62a71829b2e13..75528eff40685 100644 --- a/pkgs/os-specific/linux/nullfs/default.nix +++ b/pkgs/os-specific/linux/nullfs/default.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "A 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/opensnitch-ebpf/default.nix b/pkgs/os-specific/linux/opensnitch-ebpf/default.nix index 1c3fd836d813b..eb297191e4795 100644 --- a/pkgs/os-specific/linux/opensnitch-ebpf/default.nix +++ b/pkgs/os-specific/linux/opensnitch-ebpf/default.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "eBPF process monitor module for OpenSnitch"; homepage = "https://github.com/evilsocket/opensnitch"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ onny ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ onny ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/ply/default.nix b/pkgs/os-specific/linux/ply/default.nix index 3e1dfa2967061..fec55a51ecac8 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/prl-tools/default.nix b/pkgs/os-specific/linux/prl-tools/default.nix index b5ac3562128ac..a736266c19ede 100644 --- a/pkgs/os-specific/linux/prl-tools/default.nix +++ b/pkgs/os-specific/linux/prl-tools/default.nix @@ -180,14 +180,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/os-specific/linux/procps-ng/default.nix b/pkgs/os-specific/linux/procps-ng/default.nix index 59cdf14af493b..2484b954151d0 100644 --- a/pkgs/os-specific/linux/procps-ng/default.nix +++ b/pkgs/os-specific/linux/procps-ng/default.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { execer cannot bin/{ps,top,free} ''; - meta = with lib; { + meta = { homepage = "https://gitlab.com/procps-ng/procps"; description = "Utilities that give information about processes using the /proc filesystem"; priority = 11; # less than coreutils, which also provides "kill" and "uptime" - license = licenses.gpl2Plus; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/os-specific/linux/qc71_laptop/default.nix b/pkgs/os-specific/linux/qc71_laptop/default.nix index 952337ef282b4..744c5ed2529ff 100644 --- a/pkgs/os-specific/linux/qc71_laptop/default.nix +++ b/pkgs/os-specific/linux/qc71_laptop/default.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Linux driver for QC71 laptop"; homepage = "https://github.com/pobrn/qc71_laptop/"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ aacebedo ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ aacebedo ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/rfkill/udev.nix b/pkgs/os-specific/linux/rfkill/udev.nix index 9d5ce46533e29..321f9a06374d6 100644 --- a/pkgs/os-specific/linux/rfkill/udev.nix +++ b/pkgs/os-specific/linux/rfkill/udev.nix @@ -51,11 +51,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/rtl8189es/default.nix b/pkgs/os-specific/linux/rtl8189es/default.nix index a0588c5ce20c0..980bc45c502d8 100644 --- a/pkgs/os-specific/linux/rtl8189es/default.nix +++ b/pkgs/os-specific/linux/rtl8189es/default.nix @@ -51,11 +51,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/rtl8189fs/default.nix b/pkgs/os-specific/linux/rtl8189fs/default.nix index 520d4feeaee69..bdf28275fe2c7 100644 --- a/pkgs/os-specific/linux/rtl8189fs/default.nix +++ b/pkgs/os-specific/linux/rtl8189fs/default.nix @@ -17,11 +17,11 @@ rtl8189es.overrideAttrs (drv: rec { sha256 = "sha256-pziaUM6XfF4Tt9yfWUnLUiTw+sw6uZrr1HcaXdRQ31E="; }; - meta = with lib; { + meta = { description = "Driver for Realtek rtl8189fs"; homepage = "https://github.com/jwrdegoede/rtl8189ES_linux/tree/rtl8189fs"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ puffnfresh ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ puffnfresh ]; }; }) diff --git a/pkgs/os-specific/linux/rtl8192eu/default.nix b/pkgs/os-specific/linux/rtl8192eu/default.nix index 0737d1fae87c9..f434df543c023 100644 --- a/pkgs/os-specific/linux/rtl8192eu/default.nix +++ b/pkgs/os-specific/linux/rtl8192eu/default.nix @@ -39,12 +39,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; - 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 a429d075feb50..afc63b4ab3e4d 100644 --- a/pkgs/os-specific/linux/rtl8812au/default.nix +++ b/pkgs/os-specific/linux/rtl8812au/default.nix @@ -54,11 +54,11 @@ 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 ]; }; } diff --git a/pkgs/os-specific/linux/rtl8814au/default.nix b/pkgs/os-specific/linux/rtl8814au/default.nix index c808fa95dd243..b2c99582a2340 100644 --- a/pkgs/os-specific/linux/rtl8814au/default.nix +++ b/pkgs/os-specific/linux/rtl8814au/default.nix @@ -36,10 +36,10 @@ 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 ]; }; } diff --git a/pkgs/os-specific/linux/rtl8821au/default.nix b/pkgs/os-specific/linux/rtl8821au/default.nix index dacc0d1a357fa..fbab08571e549 100644 --- a/pkgs/os-specific/linux/rtl8821au/default.nix +++ b/pkgs/os-specific/linux/rtl8821au/default.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "rtl8821AU and rtl8812AU chipset driver with firmware"; homepage = "https://github.com/morrownr/8821au"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; platforms = lib.platforms.linux; - maintainers = with maintainers; [ plchldr ]; + maintainers = with lib.maintainers; [ plchldr ]; }; } diff --git a/pkgs/os-specific/linux/rtl8821cu/default.nix b/pkgs/os-specific/linux/rtl8821cu/default.nix index 270d6832f4127..1c08d0eb28aa0 100644 --- a/pkgs/os-specific/linux/rtl8821cu/default.nix +++ b/pkgs/os-specific/linux/rtl8821cu/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Realtek rtl8821cu driver"; homepage = "https://github.com/morrownr/8821cu"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = [ maintainers.contrun ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.contrun ]; }; } diff --git a/pkgs/os-specific/linux/rtl8852au/default.nix b/pkgs/os-specific/linux/rtl8852au/default.nix index 5adbffc6fba9a..e98d035870dbb 100644 --- a/pkgs/os-specific/linux/rtl8852au/default.nix +++ b/pkgs/os-specific/linux/rtl8852au/default.nix @@ -57,11 +57,11 @@ 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; - platforms = platforms.linux; - maintainers = with maintainers; [ lonyelon ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ lonyelon ]; }; }) diff --git a/pkgs/os-specific/linux/rtl8852bu/default.nix b/pkgs/os-specific/linux/rtl8852bu/default.nix index db6c419a35416..523959df02317 100644 --- a/pkgs/os-specific/linux/rtl8852bu/default.nix +++ b/pkgs/os-specific/linux/rtl8852bu/default.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Driver for Realtek rtl8852bu and rtl8832bu chipsets, provides the 8852bu mod"; homepage = "https://github.com/morrownr/rtl8852bu"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ lonyelon ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ lonyelon ]; }; } diff --git a/pkgs/os-specific/linux/rtl88x2bu/default.nix b/pkgs/os-specific/linux/rtl88x2bu/default.nix index 91ed7cf9b4905..6e690cbd21349 100644 --- a/pkgs/os-specific/linux/rtl88x2bu/default.nix +++ b/pkgs/os-specific/linux/rtl88x2bu/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Realtek rtl88x2bu driver"; homepage = "https://github.com/morrownr/88x2bu-20210702"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ otavio ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ otavio ]; }; } diff --git a/pkgs/os-specific/linux/ryzen-smu/default.nix b/pkgs/os-specific/linux/ryzen-smu/default.nix index 40226010ec9e8..691ddf42d9f4e 100644 --- a/pkgs/os-specific/linux/ryzen-smu/default.nix +++ b/pkgs/os-specific/linux/ryzen-smu/default.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Linux kernel driver that exposes access to the SMU (System Management Unit) for certain AMD Ryzen Processors"; homepage = "https://gitlab.com/leogx9r/ryzen_smu"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ Cryolitia phdyellow ]; diff --git a/pkgs/os-specific/linux/sinit/default.nix b/pkgs/os-specific/linux/sinit/default.nix index 6f4f279750c66..2272c3a43ef58 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 764891a4bbc1e..77365652cd631 100644 --- a/pkgs/os-specific/linux/tmon/default.nix +++ b/pkgs/os-specific/linux/tmon/default.nix @@ -25,11 +25,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 6557063373e74..c4c5d87d474b9 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 f9e00616f0b18..41813a87ecfa5 100644 --- a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix +++ b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix @@ -63,11 +63,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/turbostat/default.nix b/pkgs/os-specific/linux/turbostat/default.nix index dcec8df4eca9f..22bf211fa072a 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/udisks/2-default.nix b/pkgs/os-specific/linux/udisks/2-default.nix index 9672e77615422..08178f164765b 100644 --- a/pkgs/os-specific/linux/udisks/2-default.nix +++ b/pkgs/os-specific/linux/udisks/2-default.nix @@ -147,14 +147,14 @@ stdenv.mkDerivation rec { tests.vm = nixosTests.udisks2; }; - meta = with lib; { + meta = { description = "Daemon, tools and libraries to access and manipulate disks, storage devices and technologies"; homepage = "https://www.freedesktop.org/wiki/Software/udisks/"; - license = with licenses; [ + license = with lib.licenses; [ lgpl2Plus gpl2Plus ]; # lgpl2Plus for the library, gpl2Plus for the tools & daemon - maintainers = teams.freedesktop.members ++ (with maintainers; [ johnazoidberg ]); - platforms = platforms.linux; + maintainers = lib.teams.freedesktop.members ++ (with lib.maintainers; [ johnazoidberg ]); + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/usbrelay/default.nix b/pkgs/os-specific/linux/usbrelay/default.nix index bf5935b6af677..3f1e6bf610070 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/v86d/default.nix b/pkgs/os-specific/linux/v86d/default.nix index a86fa31baec04..a629da0274543 100644 --- a/pkgs/os-specific/linux/v86d/default.nix +++ b/pkgs/os-specific/linux/v86d/default.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { buildInputs = [ klibc ]; - meta = with lib; { + meta = { description = "Daemon to run x86 code in an emulated environment"; mainProgram = "v86d"; homepage = "https://github.com/mjanusz/v86d"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ codyopel ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ codyopel ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/os-specific/linux/vmm_clock/default.nix b/pkgs/os-specific/linux/vmm_clock/default.nix index e4dbbf89b1055..2edb6cf156e59 100644 --- a/pkgs/os-specific/linux/vmm_clock/default.nix +++ b/pkgs/os-specific/linux/vmm_clock/default.nix @@ -33,11 +33,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 64925ce884b65..f11e373f8c733 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 75c17d40a0e0b..2f031b37b9346 100644 --- a/pkgs/os-specific/linux/wpa_supplicant/default.nix +++ b/pkgs/os-specific/linux/wpa_supplicant/default.nix @@ -161,14 +161,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 60289d136c960..57fe44ff5e12c 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 1183b4dc32b77..7d850fac60d6b 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/xp-pen-drivers/g430/default.nix b/pkgs/os-specific/linux/xp-pen-drivers/g430/default.nix index f316217cf3478..a24f9b76f8035 100644 --- a/pkgs/os-specific/linux/xp-pen-drivers/g430/default.nix +++ b/pkgs/os-specific/linux/xp-pen-drivers/g430/default.nix @@ -41,11 +41,11 @@ mkDerivation rec { cp config.xml $out/bin/config.xml ''; - meta = with lib; { + meta = { homepage = "https://www.xp-pen.com/download-46.html"; description = "Driver for XP-PEN Pentablet drawing tablets"; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; + license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; maintainers = [ ]; }; diff --git a/pkgs/os-specific/linux/xpadneo/default.nix b/pkgs/os-specific/linux/xpadneo/default.nix index 39ce3e1c71a3c..f2d6c4e652523 100644 --- a/pkgs/os-specific/linux/xpadneo/default.nix +++ b/pkgs/os-specific/linux/xpadneo/default.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Advanced Linux driver for Xbox One wireless controllers"; homepage = "https://atar-axis.github.io/xpadneo"; - 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; }; }) diff --git a/pkgs/os-specific/linux/zenergy/default.nix b/pkgs/os-specific/linux/zenergy/default.nix index cfdb63d2a1352..d8027b6f9e644 100644 --- a/pkgs/os-specific/linux/zenergy/default.nix +++ b/pkgs/os-specific/linux/zenergy/default.nix @@ -35,11 +35,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 ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ wizardlink ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/os-specific/windows/dlfcn/default.nix b/pkgs/os-specific/windows/dlfcn/default.nix index 1f4ea20d550da..dfbd5574baa1a 100644 --- a/pkgs/os-specific/windows/dlfcn/default.nix +++ b/pkgs/os-specific/windows/dlfcn/default.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { homepage = "https://github.com/dlfcn-win32/dlfcn-win32"; description = "Set of functions that allows runtime dynamic library loading"; - license = licenses.mit; - platforms = platforms.windows; - maintainers = with maintainers; [ marius851000 ]; + license = lib.licenses.mit; + platforms = lib.platforms.windows; + maintainers = with lib.maintainers; [ marius851000 ]; }; } diff --git a/pkgs/os-specific/windows/pthread-w32/default.nix b/pkgs/os-specific/windows/pthread-w32/default.nix index 0db99bf4c97dc..8617e0bd1b9f6 100644 --- a/pkgs/os-specific/windows/pthread-w32/default.nix +++ b/pkgs/os-specific/windows/pthread-w32/default.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "POSIX threads library for Windows"; homepage = "https://sourceware.org/pthreads-win32"; - license = licenses.lgpl21Plus; + license = lib.licenses.lgpl21Plus; maintainers = [ ]; - platforms = platforms.windows; + platforms = lib.platforms.windows; }; } diff --git a/pkgs/servers/akkoma/emoji/blobs_gg.nix b/pkgs/servers/akkoma/emoji/blobs_gg.nix index 39522f22b1e8a..19e429ebf54f0 100644 --- a/pkgs/servers/akkoma/emoji/blobs_gg.nix +++ b/pkgs/servers/akkoma/emoji/blobs_gg.nix @@ -30,10 +30,10 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Blob emoji from blobs.gg repacked as APNG"; homepage = "https://blobs.gg"; - license = licenses.asl20; - maintainers = with maintainers; [ mvs ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mvs ]; }; } diff --git a/pkgs/servers/asterisk/default.nix b/pkgs/servers/asterisk/default.nix index fb50f3b31437e..4e2c22b43d43a 100644 --- a/pkgs/servers/asterisk/default.nix +++ b/pkgs/servers/asterisk/default.nix @@ -150,12 +150,12 @@ let ${lib.optionalString (lib.versionAtLeast version "17.0.0") "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/bindle/default.nix b/pkgs/servers/bindle/default.nix index 07507e00adde7..70e6f03952a66 100644 --- a/pkgs/servers/bindle/default.nix +++ b/pkgs/servers/bindle/default.nix @@ -36,11 +36,11 @@ rustPlatform.buildRustPackage rec { "--all-features" ]; - meta = with lib; { + meta = { description = "Bindle: Aggregate Object Storage"; homepage = "https://github.com/deislabs/bindle"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/servers/binserve/default.nix b/pkgs/servers/binserve/default.nix index df1cf540b52ce..b155684dbe18d 100644 --- a/pkgs/servers/binserve/default.nix +++ b/pkgs/servers/binserve/default.nix @@ -22,7 +22,7 @@ rustPlatform.buildRustPackage rec { doCheck = false; - meta = with lib; { + meta = { description = "Fast production-ready static web server"; homepage = "https://github.com/mufeedvh/binserve"; longDescription = '' @@ -30,9 +30,9 @@ rustPlatform.buildRustPackage rec { (HTTPS), routing, hot reloading, caching, templating, and security in a single-binary you can set up with zero code ''; - license = licenses.mit; - maintainers = with maintainers; [ snapdgn ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ snapdgn ]; + platforms = lib.platforms.unix; mainProgram = "binserve"; }; } diff --git a/pkgs/servers/computing/torque/default.nix b/pkgs/servers/computing/torque/default.nix index 74b5fa8dd043e..6653b22d053ee 100644 --- a/pkgs/servers/computing/torque/default.nix +++ b/pkgs/servers/computing/torque/default.nix @@ -90,10 +90,10 @@ stdenv.mkDerivation { install -Dm755 torque.setup buildutils/pbs_mkdirs -t $out/bin/ ''; - meta = with lib; { + meta = { homepage = "http://www.adaptivecomputing.com/products/open-source/torque"; description = "Resource management system for submitting and controlling jobs on supercomputers, clusters, and grids"; - platforms = platforms.linux; + platforms = lib.platforms.linux; license = "TORQUEv1.1"; }; } diff --git a/pkgs/servers/dcnnt/default.nix b/pkgs/servers/dcnnt/default.nix index 9506193c5bc51..f356e4fa8cda3 100644 --- a/pkgs/servers/dcnnt/default.nix +++ b/pkgs/servers/dcnnt/default.nix @@ -18,15 +18,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/dict/libmaa.nix b/pkgs/servers/dict/libmaa.nix index b9deb77368d77..4945cb7e459b5 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 ea3ba3bfd8249..c8fcd868f06ae 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 21d3f5d9a43a7..778a806bf752c 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/etcd/3.4.nix b/pkgs/servers/etcd/3.4.nix index ee7b4919f194b..9e1530e76cf11 100644 --- a/pkgs/servers/etcd/3.4.nix +++ b/pkgs/servers/etcd/3.4.nix @@ -29,10 +29,10 @@ buildGoModule rec { install -Dm755 bin/* bin/functional/cmd/* -t $out/bin ''; - 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; [ offline ]; + maintainers = with lib.maintainers; [ offline ]; }; } diff --git a/pkgs/servers/fedigroups/default.nix b/pkgs/servers/fedigroups/default.nix index 83e53c195fcf9..720a2ff2c12b2 100644 --- a/pkgs/servers/fedigroups/default.nix +++ b/pkgs/servers/fedigroups/default.nix @@ -44,13 +44,13 @@ rustPlatform.buildRustPackage rec { openssl ] ++ lib.optional stdenv.hostPlatform.isDarwin Security; - 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/servers/foundationdb/python.nix b/pkgs/servers/foundationdb/python.nix index 152f704ee1473..56d0b7eb9e02c 100644 --- a/pkgs/servers/foundationdb/python.nix +++ b/pkgs/servers/foundationdb/python.nix @@ -18,10 +18,10 @@ buildPythonPackage { doCheck = false; - meta = with lib; { + meta = { description = "Python bindings for FoundationDB"; homepage = "https://www.foundationdb.org"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ thoughtpolice ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/servers/geospatial/martin/default.nix b/pkgs/servers/geospatial/martin/default.nix index f23ea254a336d..5d7361672f728 100644 --- a/pkgs/servers/geospatial/martin/default.nix +++ b/pkgs/servers/geospatial/martin/default.nix @@ -61,13 +61,13 @@ rustPlatform.buildRustPackage rec { "--skip tables_multiple_geom_ok" ]; - meta = with lib; { + meta = { 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/servers/hockeypuck/server.nix b/pkgs/servers/hockeypuck/server.nix index deb5a52ee2005..1aa5849ad24de 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; - maintainers = [ maintainers.etu ]; + license = lib.licenses.agpl3Plus; + maintainers = [ lib.maintainers.etu ]; }; } diff --git a/pkgs/servers/hockeypuck/web.nix b/pkgs/servers/hockeypuck/web.nix index 2d6a75975ad43..ac13998bfa4ee 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; - maintainers = [ maintainers.etu ]; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.etu ]; }; } diff --git a/pkgs/servers/home-assistant/custom-components/awtrix/package.nix b/pkgs/servers/home-assistant/custom-components/awtrix/package.nix index afe9a0c71c886..48aaa52d5ccf6 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 095fd4b5cd8c8..6a90276b43664 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 9968ba73fc357..71f211f1c6e7c 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/garmin_connect/package.nix b/pkgs/servers/home-assistant/custom-components/garmin_connect/package.nix index 1c38cb0125007..ed120511f29fa 100644 --- a/pkgs/servers/home-assistant/custom-components/garmin_connect/package.nix +++ b/pkgs/servers/home-assistant/custom-components/garmin_connect/package.nix @@ -23,13 +23,13 @@ buildHomeAssistantComponent { tzlocal ]; - meta = with lib; { + meta = { description = "The 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 abe5ba0995886..f0d50bbad063c 100644 --- a/pkgs/servers/home-assistant/custom-components/govee-lan/package.nix +++ b/pkgs/servers/home-assistant/custom-components/govee-lan/package.nix @@ -43,10 +43,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 a87bb0c1e5c8e..9ace56873262b 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/midea_ac/package.nix b/pkgs/servers/home-assistant/custom-components/midea_ac/package.nix index 711a9ab2eda25..18bc94d326cdb 100644 --- a/pkgs/servers/home-assistant/custom-components/midea_ac/package.nix +++ b/pkgs/servers/home-assistant/custom-components/midea_ac/package.nix @@ -19,11 +19,11 @@ buildHomeAssistantComponent rec { dependencies = [ msmart-ng ]; - meta = with lib; { + meta = { 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/ntfy/package.nix b/pkgs/servers/home-assistant/custom-components/ntfy/package.nix index 9ff55f87cc114..34854e6b366d1 100644 --- a/pkgs/servers/home-assistant/custom-components/ntfy/package.nix +++ b/pkgs/servers/home-assistant/custom-components/ntfy/package.nix @@ -21,10 +21,10 @@ 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; [ koral ]; - license = licenses.gpl3; + maintainers = with lib.maintainers; [ koral ]; + license = lib.licenses.gpl3; }; } 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 8a6df713f4166..e4e10fee4075c 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/hourly-weather/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/hourly-weather/package.nix index c665e7f3a2cc2..89ececbbda11b 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 674dd3b4e7416..21a5e5fb99e65 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/rmv-card/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/rmv-card/package.nix index ec1fc6b201e0a..16519311cb119 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/universal-remote-card/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/universal-remote-card/package.nix index cb6a6963faf33..6e91910030f1f 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 7caf03b226a0e..a07a1083191c9 100755 --- 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 d08b8dd0ba60f..e8fe72b7be891 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/default.nix b/pkgs/servers/home-assistant/default.nix index fecafa2b8a398..1f895270ded8f 100644 --- a/pkgs/servers/home-assistant/default.nix +++ b/pkgs/servers/home-assistant/default.nix @@ -529,12 +529,12 @@ python.pkgs.buildPythonApplication rec { }; }; - meta = with lib; { + meta = { homepage = "https://home-assistant.io/"; description = "Open source home automation that puts local control and privacy first"; - license = licenses.asl20; - maintainers = teams.home-assistant.members; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = lib.teams.home-assistant.members; + platforms = lib.platforms.linux; mainProgram = "hass"; }; } 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 3691aa8e80bbe..151e409c0a778 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 4eb67f02c9a0b..4e628ab48bcf6 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 340bc3a962ed1..eb840288de785 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 2ee6f59041a49..7845140a4a886 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 0fb6d8d0a0ac0..5e8b8faa6b404 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_itk/default.nix b/pkgs/servers/http/apache-modules/mod_itk/default.nix index 514be6f129947..baa050b5e8764 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 abf2ddaa3f524..12296de0bf0b5 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 2f4b754cfc6b1..92bdbcee2fa9e 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 09089855d1cde..4c08d2aaf22de 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 0f8962b275c00..d7a216b6ee077 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 40561e41ba88e..a65f9ae40d69a 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 140d598a66f64..ee3f764ba5ad2 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 5f375343ba69b..c7400c6d37f06 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 2de2d5a65b3c3..9a835527f92ef 100644 --- a/pkgs/servers/http/apache-modules/mod_timestamp/default.nix +++ b/pkgs/servers/http/apache-modules/mod_timestamp/default.nix @@ -39,12 +39,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/showoff/default.nix b/pkgs/servers/http/showoff/default.nix index 9c94b43b77d6a..058a1f09844de 100644 --- a/pkgs/servers/http/showoff/default.nix +++ b/pkgs/servers/http/showoff/default.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/servers/http/tengine/default.nix b/pkgs/servers/http/tengine/default.nix index 812784ebd394d..209633efffc3b 100644 --- a/pkgs/servers/http/tengine/default.nix +++ b/pkgs/servers/http/tengine/default.nix @@ -150,12 +150,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 e2d621e9cdc64..3ff979374792e 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/theme-april/default.nix b/pkgs/servers/icingaweb2/theme-april/default.nix index 51633ea0a8d01..3ee96dfb11f7f 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 5e3afdc72bb3e..0b6c110e9f13e 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 da9aaaf6a4996..82e76da65ead7 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 e38ea325e2ab4..75a18da9d6190 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 618e78a1bd747..d02f376adf54f 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 7fc162b90b25a..9cbe14cc8be1d 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/irc/charybdis/default.nix b/pkgs/servers/irc/charybdis/default.nix index 1b9dc07574661..604f681854349 100644 --- a/pkgs/servers/irc/charybdis/default.nix +++ b/pkgs/servers/irc/charybdis/default.nix @@ -44,12 +44,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/servers/jicofo/default.nix b/pkgs/servers/jicofo/default.nix index da3829bae8f88..d11f872a62300 100644 --- a/pkgs/servers/jicofo/default.nix +++ b/pkgs/servers/jicofo/default.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; - maintainers = teams.jitsi.members; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = lib.teams.jitsi.members; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/servers/jitsi-videobridge/default.nix b/pkgs/servers/jitsi-videobridge/default.nix index d9d8d21c9983d..489b44bc75b75 100644 --- a/pkgs/servers/jitsi-videobridge/default.nix +++ b/pkgs/servers/jitsi-videobridge/default.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; - maintainers = teams.jitsi.members; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = lib.teams.jitsi.members; + platforms = lib.platforms.linux; mainProgram = "jitsi-videobridge"; }; } diff --git a/pkgs/servers/klipper/klipper-firmware.nix b/pkgs/servers/klipper/klipper-firmware.nix index b314379be190b..06a0963af0e02 100644 --- a/pkgs/servers/klipper/klipper-firmware.nix +++ b/pkgs/servers/klipper/klipper-firmware.nix @@ -55,10 +55,10 @@ stdenv.mkDerivation rec { dontFixup = true; - meta = with lib; { + meta = { inherit (klipper.meta) homepage license; description = "Firmware part of Klipper"; - maintainers = with maintainers; [ vtuan10 ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ vtuan10 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/servers/mail/opensmtpd/extras.nix b/pkgs/servers/mail/opensmtpd/extras.nix index 0acf74133d9b5..a14ad2833d1e2 100644 --- a/pkgs/servers/mail/opensmtpd/extras.nix +++ b/pkgs/servers/mail/opensmtpd/extras.nix @@ -101,12 +101,12 @@ stdenv.mkDerivation rec { lib.optionalString enableRedis "-I${hiredis}/include/hiredis -lhiredis" + lib.optionalString enableMysql " -L${libmysqlclient}/lib/mysql"; - meta = with lib; { + meta = { homepage = "https://www.opensmtpd.org/"; description = "Extra plugins for the OpenSMTPD mail server"; - license = licenses.isc; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.isc; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ gebner ekleog ]; diff --git a/pkgs/servers/mail/opensmtpd/filter-rspamd.nix b/pkgs/servers/mail/opensmtpd/filter-rspamd.nix index 0cba39036ffe8..a8730e7018e05 100644 --- a/pkgs/servers/mail/opensmtpd/filter-rspamd.nix +++ b/pkgs/servers/mail/opensmtpd/filter-rspamd.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/servers/mail/public-inbox/default.nix b/pkgs/servers/mail/public-inbox/default.nix index 9360f1bef003c..399ccc3cb415d 100644 --- a/pkgs/servers/mail/public-inbox/default.nix +++ b/pkgs/servers/mail/public-inbox/default.nix @@ -182,13 +182,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/spf-engine/default.nix b/pkgs/servers/mail/spf-engine/default.nix index ee5d6d74d1d0e..b611ca9f872c5 100644 --- a/pkgs/servers/mail/spf-engine/default.nix +++ b/pkgs/servers/mail/spf-engine/default.nix @@ -34,10 +34,10 @@ buildPythonApplication rec { "spf_engine.policyd_spf" ]; - meta = with lib; { + meta = { homepage = "https://launchpad.net/spf-engine/"; description = "Postfix policy engine for Sender Policy Framework (SPF) checking"; - maintainers = with maintainers; [ abbradar ]; - license = licenses.asl20; + maintainers = with lib.maintainers; [ abbradar ]; + license = lib.licenses.asl20; }; } diff --git a/pkgs/servers/mail/system-sendmail/default.nix b/pkgs/servers/mail/system-sendmail/default.nix index 3bef265103eb4..5c372134953be 100644 --- a/pkgs/servers/mail/system-sendmail/default.nix +++ b/pkgs/servers/mail/system-sendmail/default.nix @@ -36,12 +36,12 @@ 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; - maintainers = with maintainers; [ ekleog ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ekleog ]; mainProgram = "sendmail"; }; } diff --git a/pkgs/servers/mastodon/default.nix b/pkgs/servers/mastodon/default.nix index 6c71ac6e7b4f9..40cc3a4d6559c 100644 --- a/pkgs/servers/mastodon/default.nix +++ b/pkgs/servers/mastodon/default.nix @@ -171,16 +171,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/matrix-synapse/plugins/mjolnir-antispam.nix b/pkgs/servers/matrix-synapse/plugins/mjolnir-antispam.nix index 0aab990f3c22e..a49c95d61a261 100644 --- a/pkgs/servers/matrix-synapse/plugins/mjolnir-antispam.nix +++ b/pkgs/servers/matrix-synapse/plugins/mjolnir-antispam.nix @@ -24,7 +24,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, @@ -32,8 +32,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/servers/matrix-synapse/plugins/pam.nix b/pkgs/servers/matrix-synapse/plugins/pam.nix index 5f535a6be4d7f..c286b380ba289 100644 --- a/pkgs/servers/matrix-synapse/plugins/pam.nix +++ b/pkgs/servers/matrix-synapse/plugins/pam.nix @@ -27,10 +27,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/servers/matrix-synapse/plugins/rendezvous.nix b/pkgs/servers/matrix-synapse/plugins/rendezvous.nix index 921a62adf9cb3..642c9aa326867 100644 --- a/pkgs/servers/matrix-synapse/plugins/rendezvous.nix +++ b/pkgs/servers/matrix-synapse/plugins/rendezvous.nix @@ -41,10 +41,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/servers/matrix-synapse/plugins/shared-secret-auth.nix b/pkgs/servers/matrix-synapse/plugins/shared-secret-auth.nix index d2455a0009b24..eb885fe68975d 100644 --- a/pkgs/servers/matrix-synapse/plugins/shared-secret-auth.nix +++ b/pkgs/servers/matrix-synapse/plugins/shared-secret-auth.nix @@ -23,10 +23,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/servers/matrix-synapse/tools/rust-synapse-compress-state/default.nix b/pkgs/servers/matrix-synapse/tools/rust-synapse-compress-state/default.nix index 67c8f7497834c..1f3036b4b18f0 100644 --- a/pkgs/servers/matrix-synapse/tools/rust-synapse-compress-state/default.nix +++ b/pkgs/servers/matrix-synapse/tools/rust-synapse-compress-state/default.nix @@ -40,12 +40,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/servers/mautrix-signal/default.nix b/pkgs/servers/mautrix-signal/default.nix index 3a295d272dab4..f043fdfe30552 100644 --- a/pkgs/servers/mautrix-signal/default.nix +++ b/pkgs/servers/mautrix-signal/default.nix @@ -59,11 +59,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; [ niklaskorz ma27 ]; diff --git a/pkgs/servers/mautrix-telegram/default.nix b/pkgs/servers/mautrix-telegram/default.nix index 140289ae418d1..ff92d79ef4816 100644 --- a/pkgs/servers/mautrix-telegram/default.nix +++ b/pkgs/servers/mautrix-telegram/default.nix @@ -79,12 +79,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/memos/default.nix b/pkgs/servers/memos/default.nix index 1037aa4379d88..1fdb861b8f1b8 100644 --- a/pkgs/servers/memos/default.nix +++ b/pkgs/servers/memos/default.nix @@ -51,11 +51,11 @@ buildGoModule rec { updateScript = ./update.sh; }; - meta = with lib; { + meta = { homepage = "https://usememos.com"; description = "Lightweight, self-hosted memo hub"; - maintainers = with maintainers; [ indexyz ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ indexyz ]; + license = lib.licenses.mit; mainProgram = "memos"; }; } diff --git a/pkgs/servers/misc/qremotecontrol-server/default.nix b/pkgs/servers/misc/qremotecontrol-server/default.nix index 02a044e5250ad..6114f32fdd350 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 efd40acbfeefb..7cc2ee6c6a20b 100644 --- a/pkgs/servers/mobilizon/default.nix +++ b/pkgs/servers/mobilizon/default.nix @@ -153,11 +153,11 @@ 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/"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ minijackson erictapen ]; diff --git a/pkgs/servers/monitoring/alerta/client.nix b/pkgs/servers/monitoring/alerta/client.nix index 80c59beb8174f..a90923978503b 100644 --- a/pkgs/servers/monitoring/alerta/client.nix +++ b/pkgs/servers/monitoring/alerta/client.nix @@ -26,10 +26,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/servers/monitoring/alerta/default.nix b/pkgs/servers/monitoring/alerta/default.nix index 4d2fae037fbd3..6cee364d65586 100644 --- a/pkgs/servers/monitoring/alerta/default.nix +++ b/pkgs/servers/monitoring/alerta/default.nix @@ -41,11 +41,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/servers/monitoring/grafana/plugins/bsull-console-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/bsull-console-datasource/default.nix index 30f38f1c4ae47..0bf3adfcd5383 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 rec { pname = "bsull-console-datasource"; version = "1.0.1"; zipHash = "sha256-V6D/VIdwwQvG21nVMXD/xF86Uy8WRecL2RjyDTZr1wQ="; - meta = with lib; { + meta = { description = "This is a streaming 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 aa8520e69b8e1..eb68f22bc450e 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 rec { 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 3c1c3410f2484..a89a5c0479abb 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 rec { pname = "fetzerch-sunandmoon-datasource"; version = "0.3.3"; zipHash = "sha256-IJe1OiPt9MxqqPymuH0K27jToSb92M0P4XGZXvk0paE="; - meta = with lib; { + meta = { description = "SunAndMoon is a Datasource Plugin for Grafana that 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 ba37338605265..784f69535fafa 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 rec { pname = "frser-sqlite-datasource"; version = "3.5.0"; zipHash = "sha256-BwAurFpMyyR318HMzVXCnOEQWM8W2vPPisXhhklFLBY="; - meta = with lib; { + meta = { description = "This is a Grafana backend plugin to allow using an SQLite database as a data source. The SQLite database needs to be accessible to the filesystem of the device where Grafana itself is running."; - 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 a5ed12fbfa475..2d503a7939e4a 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 rec { pname = "grafadruid-druid-datasource"; version = "1.4.1"; zipHash = "sha256-7atxqRqKqop6ABQ+ead6wR/YRpJaV8j/Ri4VB9FXMu8="; - 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-clock-panel/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-clock-panel/default.nix index 0165770335f79..e2d6ceb718692 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 rec { pname = "grafana-clock-panel"; version = "2.1.8"; zipHash = "sha256-QLvq2CSlJuEaYAazn8MoY3XCiXeRILj4dTp/aqrHL/k="; - 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 a1250b353cf9f..245eff40afac2 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 rec { pname = "grafana-discourse-datasource"; version = "2.0.2"; zipHash = "sha256-0MTxPe7RJHMA0SwjOcFlbi4VkhlLUFP+5r2DsHAaffc="; - meta = with lib; { + meta = { description = "The Discourse data source plugin allows users to search and view topics, posts, users, tags, categories, and reports on a given Discourse forum."; - 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-github-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-github-datasource/default.nix index f76beec1866f4..1bd6fa83d84c0 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 rec { x86_64-darwin = "sha256-UBwc8CZRRHsEKpzTgn5PNXjxLzETyWKGsDFtXZnkRW4="; aarch64-darwin = "sha256-xgQ7s3QP7Sq8ni0n54NE/nYlyALIESfXNKncruAWty0="; }; - meta = with lib; { + meta = { description = "The GitHub datasource 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 4e258eb813781..15d53055dc0e9 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 rec { x86_64-darwin = "sha256-EwE6w67ARVp/2GE9pSqaD5TuBnsgwsDLZCrEXPfRfUE="; aarch64-darwin = "sha256-3UGd/t1k6aZsKsQCplLV9klmjQAga19VaopHx330xUs="; }; - meta = with lib; { + meta = { description = "The 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/grafana-mqtt-datasource/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-mqtt-datasource/default.nix index e132e831fc66e..35d242977d350 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 rec { x86_64-darwin = "sha256-PZmUkghYawU5aKA536u3/LCzsvkIFVJIzl1FVWcrKTI="; aarch64-darwin = "sha256-9FP7UbNI4q4nqRTzlNKcEPnJ9mdqzOL4E0nuEAdFNJw="; }; - meta = with lib; { + meta = { description = "The MQTT data source plugin allows you to 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 8767f2b51e885..3104c023cee5b 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.10.2"; zipHash = "sha256-wRgzdPKSA24O4kSDhaO/09uOG6lIoJGWUGOgX1vdjlU="; - meta = with lib; { + meta = { description = "Developer-friendly incident response for Grafana"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = lib.teams.fslabs.members; - 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 3a5955efcb4cb..e3f7bcb937709 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 rec { x86_64-darwin = "sha256-6rqdTsYcqjqcXtM20ekJguT42w5dr4EUHvNuRDIU6k0="; aarch64-darwin = "sha256-Z4ISwwkFJXXdVcLOspAK8euI4yor4Ii08K7zZffY9tM="; }; - meta = with lib; { + meta = { description = "The 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/grafana-piechart-panel/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-piechart-panel/default.nix index 168295c64cd5c..67f506293b640 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 rec { 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 05c59191dc9bb..96769577a739d 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 rec { pname = "grafana-polystat-panel"; version = "2.1.13"; zipHash = "sha256-O8YOSVLhJ1hDNbBHKwkikNBOjQTrGofGklVTalgDH4I="; - 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-worldmap-panel/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-worldmap-panel/default.nix index 630e5833667c3..669f217897169 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 rec { 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 cdf6b85c2a81d..7e533f64d2816 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 rec { pname = "marcusolsson-calendar-panel"; version = "3.7.0"; zipHash = "sha256-O8EvkS+lWq2qaIj1HJzPagRGhrEENvY1YDBusvUejM0="; - 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 bafa04400514a..ba6724a928685 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 rec { x86_64-darwin = "sha256-6sGA06INQbiRCd23ykdtUWAR+oA3YFh57KBT7zWUP44="; aarch64-darwin = "sha256-gzQRcPeRqLvl27SB18hTTtcHx/namT2V0NOgX5J1mbs="; }; - meta = with lib; { + meta = { description = "The Grafana CSV Datasource plugin is designed to 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 55b5f39d90ad6..f3db50ba45b5b 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 rec { pname = "marcusolsson-dynamictext-panel"; version = "5.4.0"; zipHash = "sha256-IgPON60oRqO52W64UvHuwYoa6UG2NfDWIA4S2HfkGQs="; - 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 f2ca72a12134a..d98fadf750913 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 rec { pname = "marcusolsson-json-datasource"; version = "1.3.17"; zipHash = "sha256-L1G5s9fEEuvNs5AWXlT00f+dU2/2Rtjm4R3kpFc4NRg="; - meta = with lib; { + meta = { description = "The 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 f3dedc247bdb2..82d2b743710d9 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 rec { 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 4d21fe4fffece..202bbf89723be 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 rec { 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 e58da0bebd830..4ce01bd9d48d2 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 rec { 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 28cdd3f09446b..5cd8b6ae228c9 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 rec { pname = "ventura-psychrometric-panel"; version = "4.5.1"; zipHash = "sha256-Y/Eh3eWZkPS8Q1eha7sEJ3wTMI7QxOr7MEbPc25fnGg="; - 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 ecb8b7f707271..95f934915e8c0 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 rec { pname = "volkovlabs-echarts-panel"; version = "6.4.1"; zipHash = "sha256-RHOfFKplZs0gbD/esvrpXkkPKPfo5R4zjCUJWPpkDNU="; - meta = with lib; { + meta = { description = "The Apache ECharts plugin is a 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 21eb1fb5cf41a..ee95c7fa97461 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 rec { pname = "volkovlabs-form-panel"; version = "4.6.0"; zipHash = "sha256-ne2dfCr+PBodeaxGfZL0VrAxHLYEAaeQfuZQf2F3s0s="; - meta = with lib; { + meta = { description = "The Data Manipulation Panel is the first 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 06c5b41e798ae..3d8fe518a6d34 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 rec { pname = "volkovlabs-rss-datasource"; version = "4.2.0"; zipHash = "sha256-+3tgvpH6xlJORqN4Sx7qwzsiQZoLwdarzhx6kHvtOoY="; - meta = with lib; { + meta = { description = "The RSS/Atom data source is a 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 abeffe05dc109..7ee7359701085 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 rec { pname = "volkovlabs-variable-panel"; version = "3.5.0"; zipHash = "sha256-SqMTCdB+8OUo94zJ3eS5NoCeyjc7sdMCR0CTvVe/L1g="; - meta = with lib; { + meta = { description = "The 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 7c6eab7d4931b..b4b7e8bbb2903 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 rec { 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 53840bcfc4541..b7bc0cb46fa15 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/atlas-exporter.nix b/pkgs/servers/monitoring/prometheus/atlas-exporter.nix index 5aaa34f65c52f..1ec66d08a9cb6 100644 --- a/pkgs/servers/monitoring/prometheus/atlas-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/atlas-exporter.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-tR+OHxj/97AixuAp0Kx9xQsKPAxpvF6hDha5BgMBha0="; - meta = with lib; { + meta = { description = "Prometheus exporter for RIPE Atlas measurement results"; mainProgram = "atlas_exporter"; homepage = "https://github.com/czerwonk/atlas_exporter"; - license = licenses.lgpl3; - maintainers = with maintainers; [ clerie ]; + license = lib.licenses.lgpl3; + maintainers = with lib.maintainers; [ clerie ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/aws-s3-exporter.nix b/pkgs/servers/monitoring/prometheus/aws-s3-exporter.nix index bdfee37adbde4..dab85987e9a1b 100644 --- a/pkgs/servers/monitoring/prometheus/aws-s3-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/aws-s3-exporter.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Exports Prometheus metrics about S3 buckets and objects"; mainProgram = "s3_exporter"; homepage = "https://github.com/ribbybibby/s3_exporter"; - license = licenses.asl20; - maintainers = [ maintainers.mmahut ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.mmahut ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/bitcoin-exporter.nix b/pkgs/servers/monitoring/prometheus/bitcoin-exporter.nix index 6740df977e4ea..c90a9be9f79d0 100644 --- a/pkgs/servers/monitoring/prometheus/bitcoin-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/bitcoin-exporter.nix @@ -35,12 +35,12 @@ python3Packages.buildPythonApplication rec { cp -r dashboard README.md $out/share/${pname}/ ''; - meta = with lib; { + meta = { description = "Prometheus exporter for Bitcoin Core nodes"; mainProgram = "bitcoind-monitor.py"; homepage = "https://github.com/jvstein/bitcoin-prometheus-exporter"; - license = licenses.bsd3; - maintainers = with maintainers; [ mmilata ]; - platforms = platforms.all; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mmilata ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/monitoring/prometheus/fastly-exporter.nix b/pkgs/servers/monitoring/prometheus/fastly-exporter.nix index fba05cc25c236..78697454cf327 100644 --- a/pkgs/servers/monitoring/prometheus/fastly-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/fastly-exporter.nix @@ -22,11 +22,11 @@ buildGoModule rec { inherit (nixosTests.prometheus-exporters) fastly; }; - meta = with lib; { + meta = { description = "Prometheus exporter for the Fastly Real-time Analytics API"; homepage = "https://github.com/fastly/fastly-exporter"; - license = licenses.asl20; - maintainers = teams.deshaw.members; + license = lib.licenses.asl20; + maintainers = lib.teams.deshaw.members; mainProgram = "fastly-exporter"; }; } diff --git a/pkgs/servers/monitoring/prometheus/flow-exporter.nix b/pkgs/servers/monitoring/prometheus/flow-exporter.nix index 2de347f3010d6..84a6fc634a058 100644 --- a/pkgs/servers/monitoring/prometheus/flow-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/flow-exporter.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-2raOUOPiMUMydIsfSsnwUAAiM7WyMio1NgL1EoADr2s="; - meta = with lib; { + meta = { description = "Export network flows from kafka to Prometheus"; mainProgram = "flow-exporter"; homepage = "https://github.com/neptune-networks/flow-exporter"; - license = licenses.mit; - maintainers = with maintainers; [ kloenk ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kloenk ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/servers/monitoring/prometheus/gitlab-ci-pipelines-exporter.nix b/pkgs/servers/monitoring/prometheus/gitlab-ci-pipelines-exporter.nix index 21feb543c9d43..2bd6921bb74e1 100644 --- a/pkgs/servers/monitoring/prometheus/gitlab-ci-pipelines-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/gitlab-ci-pipelines-exporter.nix @@ -24,12 +24,12 @@ buildGoModule rec { vendorHash = "sha256-LPS0paXtzNAOFW8FUAFbcEcVTtp3WFh6N/f6tuFPT50="; doCheck = true; - meta = with lib; { + meta = { description = "Prometheus / OpenMetrics exporter for GitLab CI pipelines insights"; mainProgram = "gitlab-ci-pipelines-exporter"; homepage = "https://github.com/mvisonneau/gitlab-ci-pipelines-exporter"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mmahut mvisonneau ]; diff --git a/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix b/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix index 527c8e0b2d0d4..cd1df13263f3f 100644 --- a/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "HAProxy Exporter for the Prometheus monitoring system"; mainProgram = "haproxy_exporter"; homepage = "https://github.com/prometheus/haproxy_exporter"; - license = licenses.asl20; - maintainers = with maintainers; [ benley ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ benley ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/imap-mailstat-exporter.nix b/pkgs/servers/monitoring/prometheus/imap-mailstat-exporter.nix index e8f18e916bdca..b3749325ef1cf 100644 --- a/pkgs/servers/monitoring/prometheus/imap-mailstat-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/imap-mailstat-exporter.nix @@ -20,12 +20,12 @@ buildGoModule rec { nativeBuildInputs = [ installShellFiles ]; - meta = with lib; { + meta = { description = "Export Prometheus-style metrics about how many emails you have in your INBOX and in additional configured folders"; mainProgram = "imap-mailstat-exporter"; homepage = "https://github.com/bt909/imap-mailstat-exporter"; - license = licenses.mit; - maintainers = with maintainers; [ raboof ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ raboof ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/servers/monitoring/prometheus/kthxbye.nix b/pkgs/servers/monitoring/prometheus/kthxbye.nix index 5d2a5c4170961..4f52ac82c9e67 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/mongodb-exporter.nix b/pkgs/servers/monitoring/prometheus/mongodb-exporter.nix index c22a8e8dcda49..6c983794f5fab 100644 --- a/pkgs/servers/monitoring/prometheus/mongodb-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/mongodb-exporter.nix @@ -32,11 +32,11 @@ buildGoModule rec { # nixpkgs doesn't have mongodb application available; doCheck = false; - meta = with lib; { + meta = { description = "Prometheus exporter for MongoDB including sharding, replication and storage engines"; homepage = "https://github.com/percona/mongodb_exporter"; - license = licenses.asl20; - maintainers = with maintainers; [ undefined-moe ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ undefined-moe ]; mainProgram = "mongodb_exporter"; }; } diff --git a/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix b/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix index e23db58e2bc33..b1783aaba23e7 100644 --- a/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix @@ -36,12 +36,12 @@ buildGoModule rec { "-short" ]; - meta = with lib; { + meta = { description = "Prometheus exporter for MySQL server metrics"; mainProgram = "mysqld_exporter"; homepage = "https://github.com/prometheus/mysqld_exporter"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ benley globin ]; diff --git a/pkgs/servers/monitoring/prometheus/nats-exporter.nix b/pkgs/servers/monitoring/prometheus/nats-exporter.nix index 3ea933d485272..d680f70117af3 100644 --- a/pkgs/servers/monitoring/prometheus/nats-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/nats-exporter.nix @@ -40,10 +40,10 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Exporter for NATS metrics"; homepage = "https://github.com/nats-io/prometheus-nats-exporter"; - license = licenses.asl20; - maintainers = with maintainers; [ bbigras ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bbigras ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/nut-exporter.nix b/pkgs/servers/monitoring/prometheus/nut-exporter.nix index e831319e1b391..df157e77ca886 100644 --- a/pkgs/servers/monitoring/prometheus/nut-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/nut-exporter.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-DGCNYklINPPzC7kCdEUS7TqVvg2SnKFqe0qHs5RSmzY="; - meta = with lib; { + meta = { description = "Prometheus exporter for Network UPS Tools"; mainProgram = "nut_exporter"; homepage = "https://github.com/DRuggeri/nut_exporter"; - license = licenses.asl20; - maintainers = with maintainers; [ jhh ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jhh ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/pgbouncer-exporter.nix b/pkgs/servers/monitoring/prometheus/pgbouncer-exporter.nix index 569e845010997..356bd3773e640 100644 --- a/pkgs/servers/monitoring/prometheus/pgbouncer-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/pgbouncer-exporter.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-PjoS56MdYpDOuSTHHo5lGL9KlWlu3ycA08qim8jrnSU="; - meta = with lib; { + meta = { description = "Prometheus exporter for PgBouncer"; mainProgram = "pgbouncer_exporter"; homepage = "https://github.com/prometheus-community/pgbouncer_exporter"; - license = licenses.mit; - maintainers = with maintainers; [ _1000101 ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ _1000101 ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/servers/monitoring/prometheus/php-fpm-exporter.nix b/pkgs/servers/monitoring/prometheus/php-fpm-exporter.nix index c4c25909beddb..5996192422059 100644 --- a/pkgs/servers/monitoring/prometheus/php-fpm-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/php-fpm-exporter.nix @@ -53,11 +53,11 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/hipages/php-fpm_exporter"; description = "Prometheus exporter for PHP-FPM"; - license = licenses.asl20; - maintainers = with maintainers; [ gaelreyrol ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ gaelreyrol ]; mainProgram = "php-fpm_exporter"; }; } diff --git a/pkgs/servers/monitoring/prometheus/pihole-exporter.nix b/pkgs/servers/monitoring/prometheus/pihole-exporter.nix index 27ce43d42d599..b1514cacb6f82 100644 --- a/pkgs/servers/monitoring/prometheus/pihole-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/pihole-exporter.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-Wn4W7e8v/njvODA0znqtZsMRfcH6L6r5biAOwfyKUAU="; - meta = with lib; { + meta = { description = "Prometheus exporter for PI-Hole's Raspberry PI ad blocker"; mainProgram = "pihole-exporter"; homepage = "https://github.com/eko/pihole-exporter"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/ping-exporter.nix b/pkgs/servers/monitoring/prometheus/ping-exporter.nix index 60e60a795e3ba..60bc80eb52978 100644 --- a/pkgs/servers/monitoring/prometheus/ping-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/ping-exporter.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-1oNbg6lu9xLJKeYOzK23HOTLJc3KWri7z4/2AZ7Hzms="; - meta = with lib; { + meta = { description = "Prometheus exporter for ICMP echo requests"; mainProgram = "ping_exporter"; homepage = "https://github.com/czerwonk/ping_exporter"; - license = licenses.mit; - maintainers = with maintainers; [ nudelsalat ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nudelsalat ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/prom2json.nix b/pkgs/servers/monitoring/prometheus/prom2json.nix index d11e1a16aa214..9f2069f9b7341 100644 --- a/pkgs/servers/monitoring/prometheus/prom2json.nix +++ b/pkgs/servers/monitoring/prometheus/prom2json.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-pCy4oECZnvoODezUD1+lOT46yWUr78zvnHgEB2BJN3c="; - 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/pve-exporter.nix b/pkgs/servers/monitoring/prometheus/pve-exporter.nix index 6a33e12071294..a517bfa5b5f2e 100644 --- a/pkgs/servers/monitoring/prometheus/pve-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/pve-exporter.nix @@ -31,11 +31,11 @@ python3.pkgs.buildPythonApplication rec { inherit (nixosTests.prometheus-exporters) pve; }; - meta = with lib; { + meta = { description = "Exposes information gathered from Proxmox VE cluster for use by the Prometheus monitoring system"; mainProgram = "pve_exporter"; homepage = "https://github.com/prometheus-pve/prometheus-pve-exporter"; - license = licenses.asl20; - maintainers = with maintainers; [ nukaduka ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nukaduka ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/rabbitmq-exporter.nix b/pkgs/servers/monitoring/prometheus/rabbitmq-exporter.nix index 87144e1c6bdbe..977678c14c77a 100644 --- a/pkgs/servers/monitoring/prometheus/rabbitmq-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/rabbitmq-exporter.nix @@ -27,11 +27,11 @@ buildGoModule rec { "-skip=TestWholeApp|TestExporter" ]; - meta = with lib; { + meta = { description = "Prometheus exporter for RabbitMQ"; mainProgram = "rabbitmq_exporter"; homepage = "https://github.com/kbudde/rabbitmq_exporter"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/sabnzbd-exporter.nix b/pkgs/servers/monitoring/prometheus/sabnzbd-exporter.nix index 05034b4b33276..a40eae84653a6 100644 --- a/pkgs/servers/monitoring/prometheus/sabnzbd-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/sabnzbd-exporter.nix @@ -39,12 +39,12 @@ python3Packages.buildPythonApplication rec { inherit (nixosTests.prometheus-exporters) sabnzbd; }; - meta = with lib; { + meta = { description = "Prometheus exporter for sabnzbd"; homepage = "https://github.com/msroest/sabnzbd_exporter"; - license = licenses.mit; - maintainers = with maintainers; [ fugi ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fugi ]; + platforms = lib.platforms.all; mainProgram = "sabnzbd_exporter.py"; }; } diff --git a/pkgs/servers/monitoring/prometheus/sachet.nix b/pkgs/servers/monitoring/prometheus/sachet.nix index 8011b96e23a2e..168694f24e850 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/sql-exporter.nix b/pkgs/servers/monitoring/prometheus/sql-exporter.nix index 6826e16145c46..44b7c16d802f8 100644 --- a/pkgs/servers/monitoring/prometheus/sql-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/sql-exporter.nix @@ -38,11 +38,11 @@ buildGoModule rec { command = "sql_exporter -version"; }; - meta = with lib; { + meta = { description = "Flexible SQL exporter for Prometheus"; mainProgram = "sql_exporter"; homepage = "https://github.com/justwatchcom/sql_exporter"; - license = licenses.mit; - maintainers = with maintainers; [ justinas ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ justinas ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/v2ray-exporter.nix b/pkgs/servers/monitoring/prometheus/v2ray-exporter.nix index 9a3f339b5fbff..f10136cb971cb 100644 --- a/pkgs/servers/monitoring/prometheus/v2ray-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/v2ray-exporter.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-+jrD+QatTrMaAdbxy5mpCm8lF37XDIy1GFyEiUibA2k="; - meta = with lib; { + meta = { description = "Prometheus exporter for V2Ray daemon"; mainProgram = "v2ray-exporter"; homepage = "https://github.com/wi1dcard/v2ray-exporter"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/zfs-exporter.nix b/pkgs/servers/monitoring/prometheus/zfs-exporter.nix index 0091485c92464..d754ef7ad283a 100644 --- a/pkgs/servers/monitoring/prometheus/zfs-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/zfs-exporter.nix @@ -31,11 +31,11 @@ buildGoModule rec { install -Dm444 -t $out/share/doc/${pname} *.md ''; - meta = with lib; { + meta = { description = "ZFS Exporter for the Prometheus monitoring system"; mainProgram = "zfs_exporter"; homepage = "https://github.com/pdf/zfs_exporter"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/servers/monitoring/riemann-dash/default.nix b/pkgs/servers/monitoring/riemann-dash/default.nix index 5c3133df60365..b61da9ca97b70 100644 --- a/pkgs/servers/monitoring/riemann-dash/default.nix +++ b/pkgs/servers/monitoring/riemann-dash/default.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/servers/mtprotoproxy/default.nix b/pkgs/servers/mtprotoproxy/default.nix index 4c0ed8d0abda5..aa0ada39e1b22 100644 --- a/pkgs/servers/mtprotoproxy/default.nix +++ b/pkgs/servers/mtprotoproxy/default.nix @@ -32,12 +32,12 @@ 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 = with maintainers; [ abbradar ]; + maintainers = with lib.maintainers; [ abbradar ]; mainProgram = "mtprotoproxy"; }; } diff --git a/pkgs/servers/nominatim/default.nix b/pkgs/servers/nominatim/default.nix index 55fd98d636674..b60de80d49577 100644 --- a/pkgs/servers/nominatim/default.nix +++ b/pkgs/servers/nominatim/default.nix @@ -78,12 +78,12 @@ stdenv.mkDerivation rec { ln -s ${countryGrid} ./data/country_osm_grid.sql.gz ''; - meta = with lib; { + meta = { description = "Search engine for OpenStreetMap data"; homepage = "https://nominatim.org/"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.mausch ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.mausch ]; mainProgram = "nominatim"; }; } diff --git a/pkgs/servers/nosql/apache-jena/binary.nix b/pkgs/servers/nosql/apache-jena/binary.nix index 8e2eb98f4bd8b..aacd7d1f49925 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.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; homepage = "https://jena.apache.org"; downloadPage = "https://archive.apache.org/dist/jena/binaries/"; }; diff --git a/pkgs/servers/nosql/influxdb/default.nix b/pkgs/servers/nosql/influxdb/default.nix index efd6a31d3baa8..0d2c2751af8f0 100644 --- a/pkgs/servers/nosql/influxdb/default.nix +++ b/pkgs/servers/nosql/influxdb/default.nix @@ -106,11 +106,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 85b3e910b6969..12686d2f01cd3 100644 --- a/pkgs/servers/nosql/influxdb2/cli.nix +++ b/pkgs/servers/nosql/influxdb2/cli.nix @@ -38,11 +38,11 @@ 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 = with maintainers; [ abbradar ]; + maintainers = with lib.maintainers; [ abbradar ]; mainProgram = "influx"; }; } diff --git a/pkgs/servers/nosql/influxdb2/default.nix b/pkgs/servers/nosql/influxdb2/default.nix index 61d4b8ec260b3..0171c0f9e5cbc 100644 --- a/pkgs/servers/nosql/influxdb2/default.nix +++ b/pkgs/servers/nosql/influxdb2/default.nix @@ -142,10 +142,10 @@ 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 = with maintainers; [ abbradar ]; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/servers/nosql/influxdb2/provision.nix b/pkgs/servers/nosql/influxdb2/provision.nix index 01be841f6a8a8..40fb2e9accfb2 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 12db726fdb56d..3dbb87f2b4b7a 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/osmocom/libasn1c/default.nix b/pkgs/servers/osmocom/libasn1c/default.nix index 17bbd5200c336..998aac70ca42b 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/peertube/default.nix b/pkgs/servers/peertube/default.nix index 3b52900577afb..fa0a807036bb2 100644 --- a/pkgs/servers/peertube/default.nix +++ b/pkgs/servers/peertube/default.nix @@ -185,7 +185,7 @@ stdenv.mkDerivation rec { passthru.tests.peertube = nixosTests.peertube; - meta = with lib; { + meta = { description = "Free software to take back control of your videos"; longDescription = '' PeerTube aspires to be a decentralized and free/libre alternative to video @@ -201,7 +201,7 @@ stdenv.mkDerivation rec { though if the administrator of your instance had previously connected it with other instances. ''; - license = licenses.agpl3Plus; + license = lib.licenses.agpl3Plus; homepage = "https://joinpeertube.org/"; platforms = [ "x86_64-linux" @@ -209,7 +209,7 @@ stdenv.mkDerivation rec { # feasible, looking for maintainer to help out # "x86_64-darwin" "aarch64-darwin" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ immae izorkin stevenroose diff --git a/pkgs/servers/persistent-evdev/default.nix b/pkgs/servers/persistent-evdev/default.nix index 36f125c913fa0..75b78137878ec 100644 --- a/pkgs/servers/persistent-evdev/default.nix +++ b/pkgs/servers/persistent-evdev/default.nix @@ -39,12 +39,12 @@ buildPythonPackage rec { # has no tests doCheck = false; - 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/pinnwand/steck.nix b/pkgs/servers/pinnwand/steck.nix index f4f8578c0797a..eb4e76619ff6a 100644 --- a/pkgs/servers/pinnwand/steck.nix +++ b/pkgs/servers/pinnwand/steck.nix @@ -41,11 +41,11 @@ python3Packages.buildPythonApplication rec { passthru.tests = nixosTests.pinnwand; - meta = with lib; { + meta = { homepage = "https://github.com/supakeen/steck"; - license = licenses.mit; + license = lib.licenses.mit; description = "Client for pinnwand pastebin"; mainProgram = "steck"; - maintainers = with maintainers; [ hexa ]; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/servers/pleroma/default.nix b/pkgs/servers/pleroma/default.nix index 166c9eccb4f0c..bf00fddaac5a4 100644 --- a/pkgs/servers/pleroma/default.nix +++ b/pkgs/servers/pleroma/default.nix @@ -199,15 +199,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/servers/plik/programs.nix b/pkgs/servers/plik/programs.nix index 791cd96d03b79..93af23baaaaa8 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 = with maintainers; [ freezeboy ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ freezeboy ]; + license = lib.licenses.mit; mainProgram = "plik"; }; diff --git a/pkgs/servers/polaris/web.nix b/pkgs/servers/polaris/web.nix index 39cc8e9065612..6e524bbe18e83 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 ced6bdbb0695c..8bebbc39c54c7 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; - maintainers = with maintainers; [ gebner ]; - platforms = platforms.linux; + license = lib.licenses.artistic1; + maintainers = with lib.maintainers; [ gebner ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/servers/roapi/http.nix b/pkgs/servers/roapi/http.nix index 21d5359e7fd7a..105961e034049 100644 --- a/pkgs/servers/roapi/http.nix +++ b/pkgs/servers/roapi/http.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/servers/search/lnx/default.nix b/pkgs/servers/search/lnx/default.nix index 99ebed0a82379..08a88a2db2605 100644 --- a/pkgs/servers/search/lnx/default.nix +++ b/pkgs/servers/search/lnx/default.nix @@ -31,12 +31,12 @@ rustPlatform.buildRustPackage { DiskArbitration Foundation ]; - meta = with lib; { + meta = { description = "Insanely fast, Feature-rich searching. lnx is the adaptable, typo tollerant deployment of the tantivy search engine. Standing on the shoulders of giants."; 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/servers/search/qdrant/default.nix b/pkgs/servers/search/qdrant/default.nix index e86b1d85ac726..a72579ea7d9da 100644 --- a/pkgs/servers/search/qdrant/default.nix +++ b/pkgs/servers/search/qdrant/default.nix @@ -56,14 +56,14 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Vector Search Engine for the next generation of AI applications"; longDescription = '' Expects a config file at config/config.yaml with content similar to https://github.com/qdrant/qdrant/blob/master/config/config.yaml ''; homepage = "https://github.com/qdrant/qdrant"; - license = licenses.asl20; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/servers/search/quickwit/default.nix b/pkgs/servers/search/quickwit/default.nix index f056a726d4762..1d66a6bf46acb 100644 --- a/pkgs/servers/search/quickwit/default.nix +++ b/pkgs/servers/search/quickwit/default.nix @@ -140,11 +140,11 @@ rustPlatform.buildRustPackage rec { "--skip=io::tests::test_controlled_writer_limited_sync" ]; - meta = with lib; { + meta = { 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/servers/shairplay/default.nix b/pkgs/servers/shairplay/default.nix index 3bfdd8ead9afb..d7eb009476ac6 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 264b225b0c08c..056a97e02344b 100644 --- a/pkgs/servers/shishi/default.nix +++ b/pkgs/servers/shishi/default.nix @@ -89,11 +89,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/sickbeard/sickgear.nix b/pkgs/servers/sickbeard/sickgear.nix index a8c7602a01309..ee8a7e3a47b1e 100644 --- a/pkgs/servers/sickbeard/sickgear.nix +++ b/pkgs/servers/sickbeard/sickgear.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/servers/sks/default.nix b/pkgs/servers/sks/default.nix index e93d3e4cd9506..b26af1257e44f 100644 --- a/pkgs/servers/sks/default.nix +++ b/pkgs/servers/sks/default.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { # Copy the web examples for the NixOS module postInstall = "cp -R sampleWeb $webSamples"; - meta = with lib; { + meta = { description = "Easily deployable & decentralized OpenPGP keyserver"; longDescription = '' SKS is an OpenPGP keyserver whose goal is to provide easy to deploy, @@ -79,8 +79,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/spicedb/zed.nix b/pkgs/servers/spicedb/zed.nix index a2bc602936201..5e1fce400aaaa 100644 --- a/pkgs/servers/spicedb/zed.nix +++ b/pkgs/servers/spicedb/zed.nix @@ -21,7 +21,7 @@ buildGoModule rec { "-X 'github.com/jzelinskie/cobrautil/v2.Version=${src.rev}'" ]; - meta = with lib; { + meta = { description = "Command line for managing SpiceDB"; mainProgram = "zed"; longDescription = '' @@ -29,7 +29,7 @@ buildGoModule rec { Google Zanzibar. zed is the command line client for SpiceDB. ''; homepage = "https://authzed.com/"; - license = licenses.asl20; - maintainers = with maintainers; [ thoughtpolice ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/servers/sql/mariadb/connector-c/default.nix b/pkgs/servers/sql/mariadb/connector-c/default.nix index 6b5a5674078f6..f301adceec8e4 100644 --- a/pkgs/servers/sql/mariadb/connector-c/default.nix +++ b/pkgs/servers/sql/mariadb/connector-c/default.nix @@ -84,10 +84,10 @@ 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"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ globin ]; - platforms = platforms.all; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ globin ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/servers/sql/mssql/jdbc/jtds.nix b/pkgs/servers/sql/mssql/jdbc/jtds.nix index 91b3dfd03ba27..51678ec3793aa 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 4ab28170e2310..ad7259f60cd59 100644 --- a/pkgs/servers/sql/mysql/8.0.x.nix +++ b/pkgs/servers/sql/mysql/8.0.x.nix @@ -123,11 +123,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; - maintainers = with maintainers; [ orivej ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ orivej ]; + 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 1e7946b0b4de6..bf1c4c25daeca 100644 --- a/pkgs/servers/sql/percona-server/8_0.nix +++ b/pkgs/servers/sql/percona-server/8_0.nix @@ -193,15 +193,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; - maintainers = teams.flyingcircus.members; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.flyingcircus.members; + 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 068c5b946700d..a72f7873c3460 100644 --- a/pkgs/servers/sql/percona-server/8_4.nix +++ b/pkgs/servers/sql/percona-server/8_4.nix @@ -215,15 +215,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; - maintainers = teams.flyingcircus.members; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = lib.teams.flyingcircus.members; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/servers/sql/postgresql/ext/cstore_fdw.nix b/pkgs/servers/sql/postgresql/ext/cstore_fdw.nix index 232eec17e0ab9..3641bf661cc0d 100644 --- a/pkgs/servers/sql/postgresql/ext/cstore_fdw.nix +++ b/pkgs/servers/sql/postgresql/ext/cstore_fdw.nix @@ -20,12 +20,12 @@ buildPostgresqlExtension rec { sha256 = "sha256-02wcCqs8A5ZOZX080fgcNJTQrYQctnlwnA8+YPaRTZc="; }; - meta = with lib; { - broken = versionAtLeast postgresql.version "14"; + meta = { + broken = lib.versionAtLeast postgresql.version "14"; description = "Columnar storage for PostgreSQL"; homepage = "https://github.com/citusdata/cstore_fdw"; - maintainers = with maintainers; [ thoughtpolice ]; + maintainers = with lib.maintainers; [ thoughtpolice ]; platforms = postgresql.meta.platforms; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/servers/sql/postgresql/ext/h3-pg.nix b/pkgs/servers/sql/postgresql/ext/h3-pg.nix index 67a1b33c968a1..15333511259a5 100644 --- a/pkgs/servers/sql/postgresql/ext/h3-pg.nix +++ b/pkgs/servers/sql/postgresql/ext/h3-pg.nix @@ -53,10 +53,10 @@ buildPostgresqlExtension (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "PostgreSQL bindings for H3, a hierarchical hexagonal geospatial indexing system"; homepage = "https://github.com/zachasme/h3-pg"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; inherit (postgresql.meta) platforms; }; diff --git a/pkgs/servers/sql/postgresql/ext/hypopg.nix b/pkgs/servers/sql/postgresql/ext/hypopg.nix index f85a743d9fca2..b8049961d08f4 100644 --- a/pkgs/servers/sql/postgresql/ext/hypopg.nix +++ b/pkgs/servers/sql/postgresql/ext/hypopg.nix @@ -24,11 +24,11 @@ buildPostgresqlExtension rec { }; }; - meta = with lib; { + meta = { description = "Hypothetical Indexes for PostgreSQL"; homepage = "https://hypopg.readthedocs.io"; - license = licenses.postgresql; + license = lib.licenses.postgresql; platforms = postgresql.meta.platforms; - maintainers = with maintainers; [ bbigras ]; + maintainers = with lib.maintainers; [ bbigras ]; }; } diff --git a/pkgs/servers/sql/postgresql/ext/jsonb_deep_sum.nix b/pkgs/servers/sql/postgresql/ext/jsonb_deep_sum.nix index dbff8f7e8eb80..44195d3a5e9e8 100644 --- a/pkgs/servers/sql/postgresql/ext/jsonb_deep_sum.nix +++ b/pkgs/servers/sql/postgresql/ext/jsonb_deep_sum.nix @@ -17,11 +17,11 @@ buildPostgresqlExtension rec { sha256 = "sha256-W1wNILAwTAjFPezq+grdRMA59KEnMZDz69n9xQUqdc0="; }; - meta = with lib; { + meta = { description = "PostgreSQL extension to easily add jsonb numeric"; homepage = "https://github.com/furstenheim/jsonb_deep_sum"; - maintainers = with maintainers; [ _1000101 ]; + maintainers = with lib.maintainers; [ _1000101 ]; platforms = postgresql.meta.platforms; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/sql/postgresql/ext/lantern.nix b/pkgs/servers/sql/postgresql/ext/lantern.nix index fcfd82e613458..0ad3269999e9e 100644 --- a/pkgs/servers/sql/postgresql/ext/lantern.nix +++ b/pkgs/servers/sql/postgresql/ext/lantern.nix @@ -51,11 +51,11 @@ buildPostgresqlExtension (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "PostgreSQL vector database extension for building AI applications"; homepage = "https://lantern.dev/"; changelog = "https://github.com/lanterndata/lantern/blob/${finalAttrs.src.rev}/CHANGELOG.md"; - license = licenses.agpl3Only; + license = lib.licenses.agpl3Only; maintainers = [ ]; platforms = postgresql.meta.platforms; }; diff --git a/pkgs/servers/sql/postgresql/ext/periods.nix b/pkgs/servers/sql/postgresql/ext/periods.nix index 343482d26c7bd..9553b95fbb5be 100644 --- a/pkgs/servers/sql/postgresql/ext/periods.nix +++ b/pkgs/servers/sql/postgresql/ext/periods.nix @@ -17,11 +17,11 @@ buildPostgresqlExtension rec { sha256 = "sha256-97v6+WNDcYb/KivlE/JBlRIZ3gYHj68AlK0fylp1cPo="; }; - meta = with lib; { + meta = { description = "PostgreSQL extension implementing SQL standard functionality for PERIODs and SYSTEM VERSIONING"; homepage = "https://github.com/xocolatl/periods"; - maintainers = with maintainers; [ ivan ]; + maintainers = with lib.maintainers; [ ivan ]; platforms = postgresql.meta.platforms; - license = licenses.postgresql; + license = lib.licenses.postgresql; }; } diff --git a/pkgs/servers/sql/postgresql/ext/pg_bigm.nix b/pkgs/servers/sql/postgresql/ext/pg_bigm.nix index bf05673a54934..f4a4c8c5685ef 100644 --- a/pkgs/servers/sql/postgresql/ext/pg_bigm.nix +++ b/pkgs/servers/sql/postgresql/ext/pg_bigm.nix @@ -20,11 +20,11 @@ buildPostgresqlExtension rec { makeFlags = [ "USE_PGXS=1" ]; - meta = with lib; { + meta = { description = "Text similarity measurement and index searching based on bigrams"; homepage = "https://pgbigm.osdn.jp/"; maintainers = [ ]; platforms = postgresql.meta.platforms; - license = licenses.postgresql; + license = lib.licenses.postgresql; }; } diff --git a/pkgs/servers/sql/postgresql/ext/pg_ed25519.nix b/pkgs/servers/sql/postgresql/ext/pg_ed25519.nix index fc64df1db4994..09da89e76983e 100644 --- a/pkgs/servers/sql/postgresql/ext/pg_ed25519.nix +++ b/pkgs/servers/sql/postgresql/ext/pg_ed25519.nix @@ -16,12 +16,12 @@ buildPostgresqlExtension rec { sha256 = "16w3qx3wj81bzfhydl2pjhn8b1jak6h7ja9wq1kc626g0siggqi0"; }; - meta = with lib; { + meta = { description = "PostgreSQL extension for signing and verifying ed25519 signatures"; homepage = "https://gitlab.com/dwagin/pg_ed25519"; - maintainers = [ maintainers.renzo ]; + maintainers = [ lib.maintainers.renzo ]; platforms = postgresql.meta.platforms; - license = licenses.mit; + license = lib.licenses.mit; # Broken on darwin and linux (JIT) with no upstream fix available. broken = lib.versionAtLeast postgresql.version "16" && stdenv.cc.isClang; }; diff --git a/pkgs/servers/sql/postgresql/ext/pg_hint_plan.nix b/pkgs/servers/sql/postgresql/ext/pg_hint_plan.nix index 20d31530164e0..e200bc8f518fc 100644 --- a/pkgs/servers/sql/postgresql/ext/pg_hint_plan.nix +++ b/pkgs/servers/sql/postgresql/ext/pg_hint_plan.nix @@ -57,11 +57,11 @@ buildPostgresqlExtension { enableUpdateScript = false; - meta = with lib; { + meta = { description = "Extension to tweak PostgreSQL execution plans using so-called 'hints' in SQL comments"; homepage = "https://github.com/ossc-db/pg_hint_plan"; - maintainers = with maintainers; [ _1000101 ]; + maintainers = with lib.maintainers; [ _1000101 ]; platforms = postgresql.meta.platforms; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/servers/sql/postgresql/ext/pg_libversion.nix b/pkgs/servers/sql/postgresql/ext/pg_libversion.nix index 2360944e555d6..470cbda443827 100644 --- a/pkgs/servers/sql/postgresql/ext/pg_libversion.nix +++ b/pkgs/servers/sql/postgresql/ext/pg_libversion.nix @@ -30,11 +30,11 @@ buildPostgresqlExtension (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = with lib; { + meta = { description = "PostgreSQL extension with support for version string comparison"; homepage = "https://github.com/repology/postgresql-libversion"; - license = licenses.mit; - maintainers = [ maintainers.jopejoe1 ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.jopejoe1 ]; platforms = postgresql.meta.platforms; }; }) diff --git a/pkgs/servers/sql/postgresql/ext/pg_rational.nix b/pkgs/servers/sql/postgresql/ext/pg_rational.nix index d2131b9f8c786..6e4aa3d4b42c7 100644 --- a/pkgs/servers/sql/postgresql/ext/pg_rational.nix +++ b/pkgs/servers/sql/postgresql/ext/pg_rational.nix @@ -17,11 +17,11 @@ buildPostgresqlExtension rec { sha256 = "sha256-Sp5wuX2nP3KGyWw7MFa11rI1CPIKIWBt8nvBSsASIEw="; }; - meta = with lib; { + meta = { description = "Precise fractional arithmetic for PostgreSQL"; homepage = "https://github.com/begriffs/pg_rational"; - maintainers = with maintainers; [ netcrns ]; + maintainers = with lib.maintainers; [ netcrns ]; platforms = postgresql.meta.platforms; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/servers/sql/postgresql/ext/pg_relusage.nix b/pkgs/servers/sql/postgresql/ext/pg_relusage.nix index 4379dc1ffdc91..bcd5aa36f51b4 100644 --- a/pkgs/servers/sql/postgresql/ext/pg_relusage.nix +++ b/pkgs/servers/sql/postgresql/ext/pg_relusage.nix @@ -17,11 +17,11 @@ buildPostgresqlExtension rec { sha256 = "8hJNjQ9MaBk3J9a73l+yQMwMW/F2N8vr5PO2o+5GvYs="; }; - meta = with lib; { + meta = { description = "pg_relusage extension for PostgreSQL: discover and log the relations used in your statements"; homepage = "https://github.com/adept/pg_relusage"; - maintainers = with maintainers; [ thenonameguy ]; + maintainers = with lib.maintainers; [ thenonameguy ]; platforms = postgresql.meta.platforms; - license = licenses.postgresql; + license = lib.licenses.postgresql; }; } diff --git a/pkgs/servers/sql/postgresql/ext/pg_repack.nix b/pkgs/servers/sql/postgresql/ext/pg_repack.nix index f7cb29c40ad5f..558127fb8c088 100644 --- a/pkgs/servers/sql/postgresql/ext/pg_repack.nix +++ b/pkgs/servers/sql/postgresql/ext/pg_repack.nix @@ -31,7 +31,7 @@ buildPostgresqlExtension (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Reorganize tables in PostgreSQL databases with minimal locks"; longDescription = '' pg_repack is a PostgreSQL extension which lets you remove bloat from tables and indexes, and optionally restore @@ -40,8 +40,8 @@ buildPostgresqlExtension (finalAttrs: { with performance comparable to using CLUSTER directly. ''; homepage = "https://github.com/reorg/pg_repack"; - license = licenses.bsd3; - maintainers = with maintainers; [ danbst ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ danbst ]; inherit (postgresql.meta) platforms; mainProgram = "pg_repack"; }; diff --git a/pkgs/servers/sql/postgresql/ext/pg_roaringbitmap.nix b/pkgs/servers/sql/postgresql/ext/pg_roaringbitmap.nix index eeade122d1e16..875a24378a1b6 100644 --- a/pkgs/servers/sql/postgresql/ext/pg_roaringbitmap.nix +++ b/pkgs/servers/sql/postgresql/ext/pg_roaringbitmap.nix @@ -18,11 +18,11 @@ buildPostgresqlExtension (finalAttrs: { hash = "sha256-E6vqawnsRsAIajGDgJcTUWV1H8GFFboTjhmVfemUGbs="; }; - meta = with lib; { + meta = { description = "RoaringBitmap extension for PostgreSQL"; homepage = "https://github.com/ChenHuajun/pg_roaringbitmap"; changelog = "https://github.com/ChenHuajun/pg_roaringbitmap/blob/${finalAttrs.src.rev}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = [ ]; inherit (postgresql.meta) platforms; }; diff --git a/pkgs/servers/sql/postgresql/ext/pg_squeeze.nix b/pkgs/servers/sql/postgresql/ext/pg_squeeze.nix index 13bbd7a330b7d..b9b21b8840d9c 100644 --- a/pkgs/servers/sql/postgresql/ext/pg_squeeze.nix +++ b/pkgs/servers/sql/postgresql/ext/pg_squeeze.nix @@ -41,11 +41,11 @@ buildPostgresqlExtension (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "PostgreSQL extension for automatic bloat cleanup"; homepage = "https://github.com/cybertec-postgresql/pg_squeeze"; changelog = "https://github.com/cybertec-postgresql/pg_squeeze/blob/${finalAttrs.src.rev}/NEWS"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; platforms = postgresql.meta.platforms; }; diff --git a/pkgs/servers/sql/postgresql/ext/pgjwt.nix b/pkgs/servers/sql/postgresql/ext/pgjwt.nix index 9b3afd821dbd9..4b9fcc208cc4e 100644 --- a/pkgs/servers/sql/postgresql/ext/pgjwt.nix +++ b/pkgs/servers/sql/postgresql/ext/pgjwt.nix @@ -34,13 +34,13 @@ buildPostgresqlExtension (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "PostgreSQL implementation of JSON Web Tokens"; longDescription = '' sign() and verify() functions to create and verify JSON Web Tokens. ''; - license = licenses.mit; + license = lib.licenses.mit; platforms = postgresql.meta.platforms; - maintainers = with maintainers; [ spinus ]; + maintainers = with lib.maintainers; [ spinus ]; }; }) diff --git a/pkgs/servers/sql/postgresql/ext/pgtap.nix b/pkgs/servers/sql/postgresql/ext/pgtap.nix index 314b1530583da..209391f873bff 100644 --- a/pkgs/servers/sql/postgresql/ext/pgtap.nix +++ b/pkgs/servers/sql/postgresql/ext/pgtap.nix @@ -55,7 +55,7 @@ buildPostgresqlExtension (finalAttrs: { installPhase = "touch $out"; }; - meta = with lib; { + meta = { description = "Unit testing framework for PostgreSQL"; longDescription = '' pgTAP is a unit testing framework for PostgreSQL written in PL/pgSQL and PL/SQL. @@ -63,9 +63,9 @@ buildPostgresqlExtension (finalAttrs: { as well as the ability to integrate with other TAP-emitting test frameworks. It can also be used in the xUnit testing style. ''; - maintainers = with maintainers; [ willibutz ]; + maintainers = with lib.maintainers; [ willibutz ]; homepage = "https://pgtap.org"; inherit (postgresql.meta) platforms; - license = licenses.mit; + license = lib.licenses.mit; }; }) diff --git a/pkgs/servers/sql/postgresql/ext/repmgr.nix b/pkgs/servers/sql/postgresql/ext/repmgr.nix index a80ac369b7d48..cf6bec6912392 100644 --- a/pkgs/servers/sql/postgresql/ext/repmgr.nix +++ b/pkgs/servers/sql/postgresql/ext/repmgr.nix @@ -27,11 +27,11 @@ buildPostgresqlExtension rec { json_c ]; - meta = with lib; { + meta = { homepage = "https://repmgr.org/"; description = "Replication manager for PostgreSQL cluster"; - license = licenses.postgresql; + license = lib.licenses.postgresql; platforms = postgresql.meta.platforms; - maintainers = with maintainers; [ zimbatm ]; + maintainers = with lib.maintainers; [ zimbatm ]; }; } diff --git a/pkgs/servers/sql/postgresql/ext/rum.nix b/pkgs/servers/sql/postgresql/ext/rum.nix index f681efd5b9df6..d94e0c50e2f87 100644 --- a/pkgs/servers/sql/postgresql/ext/rum.nix +++ b/pkgs/servers/sql/postgresql/ext/rum.nix @@ -48,11 +48,11 @@ buildPostgresqlExtension (finalAttrs: { installPhase = "touch $out"; }; - meta = with lib; { + meta = { description = "Full text search index method for PostgreSQL"; homepage = "https://github.com/postgrespro/rum"; - license = licenses.postgresql; + license = lib.licenses.postgresql; platforms = postgresql.meta.platforms; - maintainers = with maintainers; [ DeeUnderscore ]; + maintainers = with lib.maintainers; [ DeeUnderscore ]; }; }) diff --git a/pkgs/servers/sql/postgresql/ext/smlar.nix b/pkgs/servers/sql/postgresql/ext/smlar.nix index fa788db081ad5..cfcd741780e12 100644 --- a/pkgs/servers/sql/postgresql/ext/smlar.nix +++ b/pkgs/servers/sql/postgresql/ext/smlar.nix @@ -18,11 +18,11 @@ buildPostgresqlExtension rec { makeFlags = [ "USE_PGXS=1" ]; - meta = with lib; { + meta = { description = "Compute similary of any one-dimensional arrays"; homepage = "http://sigaev.ru/git/gitweb.cgi?p=smlar.git"; platforms = postgresql.meta.platforms; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; # Broken on darwin and linux (JIT) with no upstream fix available. broken = lib.versionAtLeast postgresql.version "16" && stdenv.cc.isClang; diff --git a/pkgs/servers/sql/postgresql/ext/temporal_tables.nix b/pkgs/servers/sql/postgresql/ext/temporal_tables.nix index 03692a3ad7b63..9c2ff366bb36c 100644 --- a/pkgs/servers/sql/postgresql/ext/temporal_tables.nix +++ b/pkgs/servers/sql/postgresql/ext/temporal_tables.nix @@ -17,11 +17,11 @@ buildPostgresqlExtension rec { sha256 = "sha256-7+DCSPAPhsokWDq/5IXNhd7jY6FfzxxUjlsg/VJeD3k="; }; - meta = with lib; { + meta = { description = "Temporal Tables PostgreSQL Extension"; homepage = "https://github.com/arkhipov/temporal_tables"; - maintainers = with maintainers; [ ggpeti ]; + maintainers = with lib.maintainers; [ ggpeti ]; platforms = postgresql.meta.platforms; - license = licenses.bsd2; + license = lib.licenses.bsd2; }; } diff --git a/pkgs/servers/sql/postgresql/ext/timescaledb_toolkit.nix b/pkgs/servers/sql/postgresql/ext/timescaledb_toolkit.nix index e877aadd66d13..d5331072afe14 100644 --- a/pkgs/servers/sql/postgresql/ext/timescaledb_toolkit.nix +++ b/pkgs/servers/sql/postgresql/ext/timescaledb_toolkit.nix @@ -32,11 +32,11 @@ # tests take really long doCheck = false; - meta = with lib; { + meta = { description = "Provide additional tools to ease all things analytic when using TimescaleDB"; homepage = "https://github.com/timescale/timescaledb-toolkit"; - maintainers = with maintainers; [ typetetris ]; + maintainers = with lib.maintainers; [ typetetris ]; platforms = postgresql.meta.platforms; - license = licenses.tsl; + license = lib.licenses.tsl; }; } diff --git a/pkgs/servers/sql/postgresql/ext/tsja.nix b/pkgs/servers/sql/postgresql/ext/tsja.nix index 15df1763e2bf3..fffe139ff8cbd 100644 --- a/pkgs/servers/sql/postgresql/ext/tsja.nix +++ b/pkgs/servers/sql/postgresql/ext/tsja.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { passthru.tests = nixosTests.postgresql.tsja.passthru.override postgresql; - meta = with lib; { + meta = { description = "PostgreSQL extension implementing Japanese text search"; homepage = "https://www.amris.jp/tsja/index.html"; - maintainers = with maintainers; [ chayleaf ]; + maintainers = with lib.maintainers; [ chayleaf ]; # GNU-specific linker options are used - platforms = platforms.gnu; - license = licenses.gpl2Only; + platforms = lib.platforms.gnu; + license = lib.licenses.gpl2Only; }; } diff --git a/pkgs/servers/tautulli/default.nix b/pkgs/servers/tautulli/default.nix index 09ff1cfdeeea3..9f80416988ca9 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/tracing/honeycomb/honeymarker/default.nix b/pkgs/servers/tracing/honeycomb/honeymarker/default.nix index f916716c3eb5a..48cee9392cd76 100644 --- a/pkgs/servers/tracing/honeycomb/honeymarker/default.nix +++ b/pkgs/servers/tracing/honeycomb/honeymarker/default.nix @@ -17,11 +17,11 @@ import ./versions.nix ( hash = sha256; }; - meta = with lib; { + meta = { description = "provides a 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/servers/tracing/honeycomb/honeytail/default.nix b/pkgs/servers/tracing/honeycomb/honeytail/default.nix index cebed31d72133..124b54439e427 100644 --- a/pkgs/servers/tracing/honeycomb/honeytail/default.nix +++ b/pkgs/servers/tracing/honeycomb/honeytail/default.nix @@ -17,11 +17,11 @@ import ./versions.nix ( hash = sha256; }; - 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/servers/tracing/honeycomb/honeyvent/default.nix b/pkgs/servers/tracing/honeycomb/honeyvent/default.nix index 7f083e5c377fe..d3c2fe1cc8cdd 100644 --- a/pkgs/servers/tracing/honeycomb/honeyvent/default.nix +++ b/pkgs/servers/tracing/honeycomb/honeyvent/default.nix @@ -17,11 +17,11 @@ import ./versions.nix ( hash = sha256; }; - 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/servers/tt-rss/default.nix b/pkgs/servers/tt-rss/default.nix index fb7320fa6aec2..bc6d85523f100 100644 --- a/pkgs/servers/tt-rss/default.nix +++ b/pkgs/servers/tt-rss/default.nix @@ -34,15 +34,15 @@ stdenv.mkDerivation rec { updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; }; - meta = with lib; { + meta = { description = "Web-based news feed (RSS/Atom) aggregator"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; 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/servers/unpackerr/default.nix b/pkgs/servers/unpackerr/default.nix index 0e01767fa2ba7..bbb54824d52ea 100644 --- a/pkgs/servers/unpackerr/default.nix +++ b/pkgs/servers/unpackerr/default.nix @@ -31,11 +31,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/servers/varnish/default.nix b/pkgs/servers/varnish/default.nix index d1d67d74b1532..25ae11abe190f 100644 --- a/pkgs/servers/varnish/default.nix +++ b/pkgs/servers/varnish/default.nix @@ -79,12 +79,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; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }; in diff --git a/pkgs/servers/varnish/digest.nix b/pkgs/servers/varnish/digest.nix index 763e534a56976..25a0200fddd47 100644 --- a/pkgs/servers/varnish/digest.nix +++ b/pkgs/servers/varnish/digest.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Digest and HMAC vmod"; homepage = "https://github.com/varnish/libvmod-digest"; inherit (varnish.meta) license platforms maintainers; diff --git a/pkgs/servers/varnish/dynamic.nix b/pkgs/servers/varnish/dynamic.nix index da1df5fc50a69..5d11c7532fba1 100644 --- a/pkgs/servers/varnish/dynamic.nix +++ b/pkgs/servers/varnish/dynamic.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation { ''; configureFlags = [ "VMOD_DIR=$(out)/lib/varnish/vmods" ]; - meta = with lib; { + meta = { description = "Dynamic director similar to the DNS director from Varnish 3"; homepage = "https://github.com/nigoroll/libvmod-dynamic"; inherit (varnish.meta) license platforms maintainers; diff --git a/pkgs/servers/varnish/modules.nix b/pkgs/servers/varnish/modules.nix index 225d5c5e9f42e..0dde0ee0215c7 100644 --- a/pkgs/servers/varnish/modules.nix +++ b/pkgs/servers/varnish/modules.nix @@ -43,7 +43,7 @@ let postInstall = "find $out -type f -exec remove-references-to -t ${varnish.dev} '{}' +"; # varnish.dev captured only as __FILE__ in assert messages - meta = with lib; { + meta = { description = "Collection of Varnish Cache modules (vmods) by Varnish Software"; homepage = "https://github.com/varnish/varnish-modules"; inherit (varnish.meta) license platforms maintainers; diff --git a/pkgs/servers/web-apps/bookstack/default.nix b/pkgs/servers/web-apps/bookstack/default.nix index f52cc3c3ef0eb..3c0df9a6c4f61 100644 --- a/pkgs/servers/web-apps/bookstack/default.nix +++ b/pkgs/servers/web-apps/bookstack/default.nix @@ -36,15 +36,15 @@ package.override rec { sha256 = "sha256-uuek56256NCIhvvLYTHgbRBea66SUg+9xnfcOsK5Bo0="; }; - meta = with lib; { + meta = { description = "Platform to create documentation/wiki content built with PHP & Laravel"; longDescription = '' A platform for storing and organising information and documentation. Details for BookStack can be found on the official website at https://www.bookstackapp.com/. ''; homepage = "https://www.bookstackapp.com/"; - license = licenses.mit; - maintainers = with maintainers; [ ymarkus ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ymarkus ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/servers/web-apps/discourse/default.nix b/pkgs/servers/web-apps/discourse/default.nix index 9b0e635d9ba86..fe076ae4b7012 100644 --- a/pkgs/servers/web-apps/discourse/default.nix +++ b/pkgs/servers/web-apps/discourse/default.nix @@ -438,11 +438,11 @@ let runHook postInstall ''; - 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 = "Discourse is an open source discussion platform"; }; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-assign/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-assign/default.nix index e90a8e4948568..8fe240c3b239a 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-assign/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-assign/default.nix @@ -12,10 +12,10 @@ mkDiscoursePlugin { rev = "6472f4593e1a4abbb457288db012ddb10f0b16f5"; sha256 = "sha256-+jcL/6ddXldUG0VvcWiEMaFk0f37HyOf+bOFEMzuoXo="; }; - 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 = "Discourse Plugin for assigning users to a topic"; }; } 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 b07422f3a58b1..95f19c6b7c7b9 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 = "6a26e5937b48bbf3ca9bd19e4f40adc513bcd774"; sha256 = "sha256-dWXvCZLxhCxte/88EnYOsy1gjBWjk24BjUM01s55CaU="; }; - 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-calendar/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-calendar/default.nix index 4c162508575e0..54c13446daf42 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-calendar/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-calendar/default.nix @@ -13,10 +13,10 @@ mkDiscoursePlugin { rev = "908ad614bc412f831f929ca726a4bda0b9ccaab6"; sha256 = "sha256-ZzzcmTY/w9wa5wTR7ofJiNVmXwoKTKaKN202O80DO9g="; }; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-calendar"; - maintainers = with maintainers; [ ryantm ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ ryantm ]; + license = lib.licenses.mit; description = "Adds the ability to create a dynamic calendar in the first post of a topic"; }; } diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-canned-replies/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-canned-replies/default.nix index b6f6c113ea248..218e7daacdd42 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-canned-replies/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-canned-replies/default.nix @@ -12,10 +12,10 @@ mkDiscoursePlugin { rev = "732598b6cdc86c74622bb15bfeaebb05611bbc25"; sha256 = "sha256-t0emNsPT8o0ralUedt33ufH0VLl4/12lVBBCnzfdRxE="; }; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-canned-replies"; - maintainers = with maintainers; [ talyz ]; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ talyz ]; + license = lib.licenses.gpl2Only; description = "Adds support for inserting a canned reply into the composer window via a UI"; }; } diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-chat-integration/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-chat-integration/default.nix index 75c022b66250b..3c906f6bbe8e1 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-chat-integration/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-chat-integration/default.nix @@ -12,10 +12,10 @@ mkDiscoursePlugin { rev = "e19808d4ad3f7d16cd9b93f315ca586f694e6288"; sha256 = "sha256-EplT9bQFtOvraSkFpBpe7TyNLROsdcRXz79j4MNPEs4="; }; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-chat-integration"; - maintainers = with maintainers; [ dpausp ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ dpausp ]; + license = lib.licenses.mit; description = "This plugin integrates Discourse with a number of external chatroom systems"; }; } diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-checklist/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-checklist/default.nix index d9934bc3d8729..bbc20eb99a28f 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-checklist/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-checklist/default.nix @@ -12,10 +12,10 @@ mkDiscoursePlugin { rev = "6fcf9fed5c3ae3baf9ddd1cca9cef4dc089996c1"; sha256 = "sha256-RIuoqZo7dW1DXbfbWhyyhCOGe4R5sLerzFW2TT0zO6U="; }; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-checklist"; - maintainers = with maintainers; [ ryantm ]; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ ryantm ]; + license = lib.licenses.gpl2Only; description = "Simple checklist rendering plugin for discourse"; }; } diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-data-explorer/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-data-explorer/default.nix index 51e565b143e3c..509e76777cbdb 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-data-explorer/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-data-explorer/default.nix @@ -12,10 +12,10 @@ mkDiscoursePlugin { rev = "2d0dc39767f0c68d333f113c550731a5546c3137"; sha256 = "sha256-3eQDMzTjfcSip94BXy1/VcbulsTsL1EHjRs41c27+ns="; }; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-data-explorer"; - maintainers = with maintainers; [ ryantm ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ ryantm ]; + license = lib.licenses.mit; description = "SQL Queries for admins in Discourse"; }; } 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 b87cf87d990f0..c4cbc279fa58e 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 = "7721b1646dead4719c02868ef7965f1b27c74eb3"; sha256 = "sha256-k2m88wsUmxAXC2LLvElwHVlMp6UzGSLDzEB+HJmKm5g="; }; - 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-github/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-github/default.nix index 8809625fd6dfe..d294880e3981a 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-github/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-github/default.nix @@ -13,10 +13,10 @@ mkDiscoursePlugin { rev = "e24de3f5cd6ec5cef17dc3e07dfb3bfac8867e08"; sha256 = "sha256-MbVYIsO2m0O5FriF5HphNhLcazgAJzIsl0aVd2YQGaA="; }; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-github"; - maintainers = with maintainers; [ talyz ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ talyz ]; + license = lib.licenses.mit; description = "Adds GitHub badges and linkback functionality"; }; 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 52b7dbc093fe3..f2187dbda443a 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 @@ -13,10 +13,10 @@ mkDiscoursePlugin { rev = "edcf06957090e8d978a89fe7b07a6ba56fe35214"; sha256 = "sha256-VxBBip8QEXDQGDOsU5cXjUZe2HThJn20BPsNr33KhKI="; }; - 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-math/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-math/default.nix index 9fec32d7f7493..ac2fa96d7e6a5 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-math/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-math/default.nix @@ -12,10 +12,10 @@ mkDiscoursePlugin { rev = "19ab34b62ab75589419ee39af7d6ba2fec1bdc4a"; sha256 = "sha256-Z6+Bx1DKEE+s1flt5K/HfevzXsA+mA0YfQxmg7JQMfA="; }; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-math"; - maintainers = with maintainers; [ talyz ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ talyz ]; + license = lib.licenses.mit; description = "Official MathJax support for Discourse"; }; } diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-migratepassword/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-migratepassword/default.nix index 862e53fa44333..45b7b10772ec5 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-migratepassword/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-migratepassword/default.nix @@ -13,10 +13,10 @@ mkDiscoursePlugin { rev = "a732ae244cd4125561fd225a67bae95ef5f738d0"; sha256 = "sha256-EO+QnFTy3PgxZ92DZBm9sP8sFAny3ZpFw+faTX32j7Q="; }; - meta = with lib; { + meta = { homepage = "https://github.com/communiteq/discourse-migratepassword"; - maintainers = with maintainers; [ ryantm ]; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ ryantm ]; + license = lib.licenses.gpl2Only; description = "Support migrated password hashes"; }; } diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/default.nix index 3a2c9e026a1f3..7724c8395336b 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/default.nix @@ -13,10 +13,10 @@ mkDiscoursePlugin { rev = "07e30e59bf5ca3925328e936359a5564d7f5b0af"; sha256 = "sha256-uqxwUjbkS2o9r9pvnTgv+3jzFhUOb8KmorT3ody2d3o="; }; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-openid-connect"; - maintainers = with maintainers; [ mkg20001 ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ mkg20001 ]; + license = lib.licenses.mit; description = "Discourse plugin to integrate Discourse with an openid-connect login provider"; }; } 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 6ad453601be4e..43be98fe51326 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-reactions/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-reactions/default.nix index 50881d6782fb5..fac5b567b4be0 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-reactions/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-reactions/default.nix @@ -12,10 +12,10 @@ mkDiscoursePlugin { rev = "c4cde3bb12841733d1f2ac4df1bb099aae15cece"; sha256 = "sha256-JXyXBJX7PBYmVylZ7PE+14RnlgR4EA1XBSue1ek0P/g="; }; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-reactions"; - maintainers = with maintainers; [ bbenno ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ bbenno ]; + license = lib.licenses.mit; description = "Allows users to react to a post from a choice of emojis, rather than only the like heart"; }; } 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 4d9fe87853a28..9f6b9e56afb32 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 = "16bde9b0bcb3b517cfabc0ea740c10b091157799"; sha256 = "sha256-tn1AKiRPaunqlrtcC/6NETUnNxJq1uNi+IIF0TZPbDg="; }; - 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-solved/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-solved/default.nix index 14aac40df9bd8..4755eb42a655d 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-solved/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-solved/default.nix @@ -12,10 +12,10 @@ mkDiscoursePlugin { rev = "1bbdfd8f5681171dc3f0e9ea93cd56997dc7938a"; sha256 = "sha256-nuF/tCoHgsKE+wjQ3BRV1s1X77vjQiASLRCWErh64C4="; }; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-solved"; - maintainers = with maintainers; [ talyz ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ talyz ]; + license = lib.licenses.mit; description = "Allow accepted answers on topics"; }; } diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-spoiler-alert/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-spoiler-alert/default.nix index 75f78b9d6b70f..98beec135063c 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-spoiler-alert/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-spoiler-alert/default.nix @@ -12,10 +12,10 @@ mkDiscoursePlugin { rev = "42b77ec048b9b386a8b25a22bfec6472817da465"; sha256 = "sha256-BQeID+y9RvmcnuNsodOMXseVvre5QYxv+E/ul8bucUI="; }; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-spoiler-alert"; - maintainers = with maintainers; [ talyz ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ talyz ]; + license = lib.licenses.mit; description = "Hide spoilers behind the spoiler-alert jQuery plugin"; }; } diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-voting/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-voting/default.nix index 1fe9b05ccadc4..3d23da26a9505 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-voting/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-voting/default.nix @@ -12,10 +12,10 @@ mkDiscoursePlugin { rev = "4ebcd1187b59290b79db8c61c89df9f72bf1363c"; sha256 = "sha256-aDJKy7Qpsj1n+HrumoORUo+R9HF3gQ0juJBKXj7GHsY="; }; - meta = with lib; { + meta = { homepage = "https://github.com/discourse/discourse-voting"; - maintainers = with maintainers; [ dpausp ]; - license = licenses.gpl2Only; + maintainers = with lib.maintainers; [ dpausp ]; + license = lib.licenses.gpl2Only; description = "Adds the ability for voting on a topic within a specified category in Discourse"; }; } 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 f9fa3c7559314..f019ab9b7ae3b 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 = "bb124c211c37873c1d54e96e7063f1868c65d0ad"; sha256 = "sha256-xAFpt/uVW8+Y2wwL20u/rMixcFgygwrarsdRsywsbmQ="; }; - 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 5b2af5aed37f9..9b82baaef2370 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/jitsi-meet/default.nix b/pkgs/servers/web-apps/jitsi-meet/default.nix index 5702b0b9299b9..a64a139b5293b 100644 --- a/pkgs/servers/web-apps/jitsi-meet/default.nix +++ b/pkgs/servers/web-apps/jitsi-meet/default.nix @@ -31,16 +31,16 @@ stdenv.mkDerivation rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Secure, Simple and Scalable Video Conferences"; longDescription = '' Jitsi Meet is an open-source (Apache) WebRTC JavaScript application that uses Jitsi Videobridge to provide high quality, secure and scalable video conferences. ''; homepage = "https://github.com/jitsi/jitsi-meet"; - license = licenses.asl20; - maintainers = teams.jitsi.members; - platforms = platforms.all; + license = lib.licenses.asl20; + maintainers = lib.teams.jitsi.members; + platforms = lib.platforms.all; inherit (olm.meta) knownVulnerabilities; }; } diff --git a/pkgs/servers/web-apps/lemmy/server.nix b/pkgs/servers/web-apps/lemmy/server.nix index 6a8bd6f06daf3..69a065823fb36 100644 --- a/pkgs/servers/web-apps/lemmy/server.nix +++ b/pkgs/servers/web-apps/lemmy/server.nix @@ -68,11 +68,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/lemmy/ui.nix b/pkgs/servers/web-apps/lemmy/ui.nix index b423bcd8748fb..91013485ddc78 100644 --- a/pkgs/servers/web-apps/lemmy/ui.nix +++ b/pkgs/servers/web-apps/lemmy/ui.nix @@ -82,11 +82,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.tests.lemmy-ui = nixosTests.lemmy; passthru.commit_sha = finalAttrs.src.rev; - 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/wordpress/generic.nix b/pkgs/servers/web-apps/wordpress/generic.nix index 640fb34f1b914..a41887c0aaf73 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 = "WordPress is 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/quartz-wm/default.nix b/pkgs/servers/x11/quartz-wm/default.nix index b6a1c1f525be4..f6d8e2e174011 100644 --- a/pkgs/servers/x11/quartz-wm/default.nix +++ b/pkgs/servers/x11/quartz-wm/default.nix @@ -37,9 +37,9 @@ stdenv.mkDerivation { Xplugin Foundation ]; - meta = with lib; { - license = licenses.apple-psl20; - platforms = platforms.darwin; - maintainers = with maintainers; [ matthewbauer ]; + meta = { + license = lib.licenses.apple-psl20; + platforms = lib.platforms.darwin; + maintainers = with lib.maintainers; [ matthewbauer ]; }; } diff --git a/pkgs/servers/x11/xorg/xcb-util-xrm.nix b/pkgs/servers/x11/xorg/xcb-util-xrm.nix index 487e0cb406616..e5a8b06942428 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 eb46bb349a433..b7ba7acc05ff5 100644 --- a/pkgs/servers/x11/xorg/xwayland.nix +++ b/pkgs/servers/x11/xorg/xwayland.nix @@ -128,15 +128,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/shells/carapace/default.nix b/pkgs/shells/carapace/default.nix index fb90bfb8ffa4c..b0a3f521bb13a 100644 --- a/pkgs/shells/carapace/default.nix +++ b/pkgs/shells/carapace/default.nix @@ -35,11 +35,11 @@ buildGoModule rec { 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/shells/fish/babelfish.nix b/pkgs/shells/fish/babelfish.nix index d5a317b618634..368bdee4b4abb 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 2f25dcf87060e..39e2cd738a3d7 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; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/shells/fish/plugins/autopair.nix b/pkgs/shells/fish/plugins/autopair.nix index 6832c0bf746ba..1bca9e22b4dc9 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; [ figsoda kidonng pyrox0 diff --git a/pkgs/shells/fish/plugins/bass.nix b/pkgs/shells/fish/plugins/bass.nix index f14be816f7af8..3b1a682b5849a 100644 --- a/pkgs/shells/fish/plugins/bass.nix +++ b/pkgs/shells/fish/plugins/bass.nix @@ -26,10 +26,10 @@ 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; - maintainers = with maintainers; [ beezow ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ beezow ]; }; } diff --git a/pkgs/shells/fish/plugins/bobthefish.nix b/pkgs/shells/fish/plugins/bobthefish.nix index b2c723b275e9c..25ee3f5025409 100644 --- a/pkgs/shells/fish/plugins/bobthefish.nix +++ b/pkgs/shells/fish/plugins/bobthefish.nix @@ -14,10 +14,10 @@ buildFishPlugin { sha256 = "sha256-LB4g+EA3C7OxTuHfcxfgl8IVBe5NufFc+5z9VcS0Bt0="; }; - 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 39d16ea6100b4..4242840c8252b 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 c70dc11fd3e4e..660eff3632ef2 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 b2c76ce1d86e8..4c3df1817ac67 100644 --- a/pkgs/shells/fish/plugins/colored-man-pages.nix +++ b/pkgs/shells/fish/plugins/colored-man-pages.nix @@ -15,10 +15,10 @@ buildFishPlugin rec { 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 7c94772dc8df3..3f031abe487ca 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 0b287d39ba2fc..a3b4ae23068b8 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 fa9d1c3839a05..dcec083218a37 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 ac9548b23523a..fe1713f991e09 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 5c6886cba67fc..34559a9f84244 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.nix b/pkgs/shells/fish/plugins/fzf.nix index 8e9d99a18a9da..fccbc588c715a 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 664c897500827..5924feabbde1e 100644 --- a/pkgs/shells/fish/plugins/git-abbr.nix +++ b/pkgs/shells/fish/plugins/git-abbr.nix @@ -14,10 +14,10 @@ buildFishPlugin rec { 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 0a1370f715616..0a6b078aad786 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 af713bcc20137..58068c8db6b01 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 33e708e94f82e..c141599bd293b 100644 --- a/pkgs/shells/fish/plugins/humantime-fish.nix +++ b/pkgs/shells/fish/plugins/humantime-fish.nix @@ -20,10 +20,10 @@ buildFishPlugin rec { 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 4b7a7c3eeb406..5a796a58eed23 100644 --- a/pkgs/shells/fish/plugins/hydro.nix +++ b/pkgs/shells/fish/plugins/hydro.nix @@ -15,10 +15,10 @@ buildFishPlugin rec { hash = "sha256-0MMiM0NRbjZPJLAMDXb+Frgm+du80XpAviPqkwoHjDA="; }; - meta = with lib; { + meta = { description = "Ultra-pure, lag-free prompt with async Git status"; homepage = "https://github.com/jorgebucaran/hydro"; - license = licenses.mit; - maintainers = with maintainers; [ pyrox0 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/shells/fish/plugins/pisces.nix b/pkgs/shells/fish/plugins/pisces.nix index be59b248277b3..0ddbe19c83b3f 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 c137cc2cded9f..826215e0ed032 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/sponge.nix b/pkgs/shells/fish/plugins/sponge.nix index 81b29d7753662..c10e0c6b62b7b 100644 --- a/pkgs/shells/fish/plugins/sponge.nix +++ b/pkgs/shells/fish/plugins/sponge.nix @@ -15,10 +15,10 @@ buildFishPlugin rec { sha256 = "sha256-MdcZUDRtNJdiyo2l9o5ma7nAX84xEJbGFhAVhK+Zm1w="; }; - meta = with lib; { + meta = { description = "keeps your fish shell history clean from typos, incorrectly used commands and everything you don't want to store due to privacy reasons"; homepage = "https://github.com/meaningful-ooo/sponge"; - license = licenses.mit; - maintainers = with maintainers; [ quantenzitrone ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ quantenzitrone ]; }; } diff --git a/pkgs/shells/fish/plugins/tide.nix b/pkgs/shells/fish/plugins/tide.nix index a0bfc69e95e7a..2378917199244 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 8acdec2cbd65e..e075197c2a7f0 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 743164202ddf4..53e5a0683b466 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 0bf42ecb56fd7..e613a746cc144 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 dd453cd8bdd13..b81ca55a77da1 100644 --- a/pkgs/shells/nushell/default.nix +++ b/pkgs/shells/nushell/default.nix @@ -89,11 +89,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; [ Br1ght0ne johntitor joaquintrinanes diff --git a/pkgs/shells/nushell/plugins/dbus.nix b/pkgs/shells/nushell/plugins/dbus.nix index 91b2633315396..3908f8b892319 100644 --- a/pkgs/shells/nushell/plugins/dbus.nix +++ b/pkgs/shells/nushell/plugins/dbus.nix @@ -41,12 +41,12 @@ rustPlatform.buildRustPackage rec { ''; }; - meta = with lib; { + meta = { description = "Nushell plugin for communicating with D-Bus"; mainProgram = "nu_plugin_dbus"; homepage = "https://github.com/devyn/nu_plugin_dbus"; - license = licenses.mit; - maintainers = with maintainers; [ aftix ]; - platforms = with platforms; linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aftix ]; + platforms = with lib.platforms; linux; }; } diff --git a/pkgs/shells/nushell/plugins/highlight.nix b/pkgs/shells/nushell/plugins/highlight.nix index efb7bb99087db..c5f552a29f827 100644 --- a/pkgs/shells/nushell/plugins/highlight.nix +++ b/pkgs/shells/nushell/plugins/highlight.nix @@ -36,12 +36,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "A nushell plugin for syntax highlighting."; mainProgram = "nu_plugin_highlight"; homepage = "https://github.com/cptpiepmatz/nu-plugin-highlight"; - license = licenses.mit; - maintainers = with maintainers; [ mgttlinger ]; - platforms = with platforms; all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mgttlinger ]; + platforms = with lib.platforms; all; }; } diff --git a/pkgs/shells/nushell/plugins/net.nix b/pkgs/shells/nushell/plugins/net.nix index 4b28ddf74b744..c229c5c7924e1 100644 --- a/pkgs/shells/nushell/plugins/net.nix +++ b/pkgs/shells/nushell/plugins/net.nix @@ -30,11 +30,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Nushell plugin to list system network interfaces"; homepage = "https://github.com/fennewald/nu_plugin_net"; - license = licenses.mit; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ happysalada ]; mainProgram = "nu_plugin_net"; }; } diff --git a/pkgs/shells/nushell/plugins/skim.nix b/pkgs/shells/nushell/plugins/skim.nix index f93a752f06b5b..329cd54df3b11 100644 --- a/pkgs/shells/nushell/plugins/skim.nix +++ b/pkgs/shells/nushell/plugins/skim.nix @@ -44,12 +44,12 @@ rustPlatform.buildRustPackage rec { ''; }; - meta = with lib; { + meta = { description = "A nushell plugin that adds integrates the skim fuzzy finder"; mainProgram = "nu_plugin_skim"; homepage = "https://github.com/idanarye/nu_plugin_skim"; - license = licenses.mit; - maintainers = with maintainers; [ aftix ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aftix ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/shells/nushell/plugins/units.nix b/pkgs/shells/nushell/plugins/units.nix index d929d02860717..82fa3b3088082 100644 --- a/pkgs/shells/nushell/plugins/units.nix +++ b/pkgs/shells/nushell/plugins/units.nix @@ -30,12 +30,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "A nushell plugin for easily converting between common units."; mainProgram = "nu_plugin_units"; homepage = "https://github.com/JosephTLyons/nu_plugin_units"; - license = licenses.mit; - maintainers = with maintainers; [ mgttlinger ]; - platforms = with platforms; all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ mgttlinger ]; + platforms = with lib.platforms; all; }; } diff --git a/pkgs/tools/X11/bumblebee/default.nix b/pkgs/tools/X11/bumblebee/default.nix index 50c9209288e18..a16f7cb646839 100644 --- a/pkgs/tools/X11/bumblebee/default.nix +++ b/pkgs/tools/X11/bumblebee/default.nix @@ -175,11 +175,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; - maintainers = with maintainers; [ abbradar ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ abbradar ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/X11/libstrangle/default.nix b/pkgs/tools/X11/libstrangle/default.nix index bf6a529848c01..fb63ed546b228 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/primus/lib.nix b/pkgs/tools/X11/primus/lib.nix index 7e6572f66a9a5..c2a8ea583e525 100644 --- a/pkgs/tools/X11/primus/lib.nix +++ b/pkgs/tools/X11/primus/lib.nix @@ -57,14 +57,14 @@ stdenv.mkDerivation { passthru.glvnd = if nvidia_x11 != null && nvidia_x11.useGLVND then nvidia_x11 else null; - meta = with lib; { + meta = { description = "Low-overhead client-side GPU offloading"; homepage = "https://github.com/amonakov/primus"; platforms = [ "i686-linux" "x86_64-linux" ]; - license = licenses.bsd2; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/tools/X11/virtualgl/lib.nix b/pkgs/tools/X11/virtualgl/lib.nix index 744fbfc50a81a..59e5643dbde3a 100644 --- a/pkgs/tools/X11/virtualgl/lib.nix +++ b/pkgs/tools/X11/virtualgl/lib.nix @@ -62,11 +62,11 @@ 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 = licenses.wxWindows; - platforms = platforms.linux; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.wxWindows; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ abbradar ]; }; } diff --git a/pkgs/tools/X11/xdragon/default.nix b/pkgs/tools/X11/xdragon/default.nix index babdb75224cb8..9fac2280cbefd 100644 --- a/pkgs/tools/X11/xdragon/default.nix +++ b/pkgs/tools/X11/xdragon/default.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation (finalAttrs: { ln -s $out/bin/dragon $out/bin/xdragon ''; - meta = with lib; { + meta = { description = "Simple drag-and-drop source/sink for X (called dragon in upstream)"; homepage = "https://github.com/mwh/dragon"; - license = licenses.gpl3; - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ das_j ]; mainProgram = "xdragon"; }; }) diff --git a/pkgs/tools/X11/xidlehook/default.nix b/pkgs/tools/X11/xidlehook/default.nix index c2a209d7f513f..dd24bfbbf1618 100644 --- a/pkgs/tools/X11/xidlehook/default.nix +++ b/pkgs/tools/X11/xidlehook/default.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/tools/admin/aws-mfa/default.nix b/pkgs/tools/admin/aws-mfa/default.nix index 69b2a5a566228..3fc6c006f4011 100644 --- a/pkgs/tools/admin/aws-mfa/default.nix +++ b/pkgs/tools/admin/aws-mfa/default.nix @@ -43,11 +43,11 @@ 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/tools/admin/awsume/default.nix b/pkgs/tools/admin/awsume/default.nix index 267de059adb36..c0d4bd1cbcd4b 100644 --- a/pkgs/tools/admin/awsume/default.nix +++ b/pkgs/tools/admin/awsume/default.nix @@ -52,11 +52,11 @@ buildPythonApplication rec { doCheck = false; - meta = with lib; { + meta = { description = "Utility for easily assuming AWS IAM roles from the command line"; homepage = "https://github.com/trek10inc/awsume"; - license = [ licenses.mit ]; + license = [ lib.licenses.mit ]; mainProgram = "awsume"; - maintainers = [ maintainers.nilp0inter ]; + maintainers = [ lib.maintainers.nilp0inter ]; }; } diff --git a/pkgs/tools/admin/drawterm/default.nix b/pkgs/tools/admin/drawterm/default.nix index e0a648a62b50e..1dc1f9df9e0fe 100644 --- a/pkgs/tools/admin/drawterm/default.nix +++ b/pkgs/tools/admin/drawterm/default.nix @@ -83,12 +83,12 @@ stdenv.mkDerivation { tests = nixosTests.drawterm; }; - meta = with lib; { + meta = { description = "Connect to Plan 9 CPU servers from other operating systems"; homepage = "https://drawterm.9front.org/"; - license = licenses.mit; - maintainers = with maintainers; [ moody ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ moody ]; + platforms = lib.platforms.linux; mainProgram = "drawterm"; }; } diff --git a/pkgs/tools/admin/fastlane/default.nix b/pkgs/tools/admin/fastlane/default.nix index ef7b6ed16eede..a9422cf28273f 100644 --- a/pkgs/tools/admin/fastlane/default.nix +++ b/pkgs/tools/admin/fastlane/default.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; [ peterromfeldhk nicknovitski shahrukh330 diff --git a/pkgs/tools/admin/itamae/default.nix b/pkgs/tools/admin/itamae/default.nix index fbcb6e3c05f93..58cdb70696593 100644 --- a/pkgs/tools/admin/itamae/default.nix +++ b/pkgs/tools/admin/itamae/default.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/tools/admin/meraki-cli/default.nix b/pkgs/tools/admin/meraki-cli/default.nix index 30d8dc648c8cd..f6e7a5f381918 100644 --- a/pkgs/tools/admin/meraki-cli/default.nix +++ b/pkgs/tools/admin/meraki-cli/default.nix @@ -48,12 +48,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 93a503d716cc4..299bd669d5acf 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-packages/pulumi-aws-native.nix b/pkgs/tools/admin/pulumi-packages/pulumi-aws-native.nix index af57f166b7029..3af587d17061a 100644 --- a/pkgs/tools/admin/pulumi-packages/pulumi-aws-native.nix +++ b/pkgs/tools/admin/pulumi-packages/pulumi-aws-native.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 trundle ]; diff --git a/pkgs/tools/admin/pulumi-packages/pulumi-azure-native.nix b/pkgs/tools/admin/pulumi-packages/pulumi-azure-native.nix index 75356bff02218..5eedd704135ab 100644 --- a/pkgs/tools/admin/pulumi-packages/pulumi-azure-native.nix +++ b/pkgs/tools/admin/pulumi-packages/pulumi-azure-native.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 trundle ]; diff --git a/pkgs/tools/admin/pulumi-packages/pulumi-command.nix b/pkgs/tools/admin/pulumi-packages/pulumi-command.nix index 30910187208b3..7b00798d714aa 100644 --- a/pkgs/tools/admin/pulumi-packages/pulumi-command.nix +++ b/pkgs/tools/admin/pulumi-packages/pulumi-command.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 trundle ]; diff --git a/pkgs/tools/admin/pulumi-packages/pulumi-language-go.nix b/pkgs/tools/admin/pulumi-packages/pulumi-language-go.nix index 01d1fec500c51..f9b726d7ff63d 100644 --- a/pkgs/tools/admin/pulumi-packages/pulumi-language-go.nix +++ b/pkgs/tools/admin/pulumi-packages/pulumi-language-go.nix @@ -20,10 +20,10 @@ buildGoModule rec { # go: inconsistent vendoring in ... doCheck = false; - meta = with lib; { + meta = { description = "Golang language host plugin for Pulumi"; mainProgram = "pulumi-language-go"; homepage = "https://github.com/pulumi/pulumi/tree/master/sdk/go"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/tools/admin/pulumi-packages/pulumi-random.nix b/pkgs/tools/admin/pulumi-packages/pulumi-random.nix index 63461ae137136..c7eadb402e1a7 100644 --- a/pkgs/tools/admin/pulumi-packages/pulumi-random.nix +++ b/pkgs/tools/admin/pulumi-packages/pulumi-random.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 trundle ]; diff --git a/pkgs/tools/admin/trinsic-cli/default.nix b/pkgs/tools/admin/trinsic-cli/default.nix index 06926669fc759..0aba5ae2a7b64 100644 --- a/pkgs/tools/admin/trinsic-cli/default.nix +++ b/pkgs/tools/admin/trinsic-cli/default.nix @@ -20,14 +20,14 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security ]; - 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/tools/archivers/gbl/default.nix b/pkgs/tools/archivers/gbl/default.nix index 889c6b5ad1a7c..6fa46972d70ec 100644 --- a/pkgs/tools/archivers/gbl/default.nix +++ b/pkgs/tools/archivers/gbl/default.nix @@ -43,15 +43,15 @@ rustPlatform.buildRustPackage rec { passthru.tests.version = testers.testVersion { package = gbl; }; - meta = with lib; { + meta = { description = "GBL Firmware file manipulation"; longDescription = '' Utility to read, create and manipulate `.gbl` firmware update files targeting the Silicon Labs Gecko Bootloader. ''; homepage = "https://github.com/jonas-schievink/gbl"; - license = licenses.mit; - maintainers = [ maintainers.raboof ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.raboof ]; mainProgram = "gbl"; }; } diff --git a/pkgs/tools/archivers/pax/default.nix b/pkgs/tools/archivers/pax/default.nix index bc1673b9d7f9a..74382a8ed68ea 100644 --- a/pkgs/tools/archivers/pax/default.nix +++ b/pkgs/tools/archivers/pax/default.nix @@ -32,11 +32,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; - maintainers = with maintainers; [ gebner ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ gebner ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/archivers/quickbms/default.nix b/pkgs/tools/archivers/quickbms/default.nix index 15e2a2e4d91e5..6ccf430b7bb27 100644 --- a/pkgs/tools/archivers/quickbms/default.nix +++ b/pkgs/tools/archivers/quickbms/default.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Universal script based file extractor and reimporter"; homepage = "https://aluigi.altervista.org/quickbms.htm"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; maintainers = [ ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "quickbms"; }; } diff --git a/pkgs/tools/archivers/unrar-wrapper/default.nix b/pkgs/tools/archivers/unrar-wrapper/default.nix index 0355624b27642..228b0c8658d74 100644 --- a/pkgs/tools/archivers/unrar-wrapper/default.nix +++ b/pkgs/tools/archivers/unrar-wrapper/default.nix @@ -30,15 +30,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/archivers/zpaq/default.nix b/pkgs/tools/archivers/zpaq/default.nix index af927a4a45de9..d7383f62a8c0c 100644 --- a/pkgs/tools/archivers/zpaq/default.nix +++ b/pkgs/tools/archivers/zpaq/default.nix @@ -33,12 +33,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/tools/archivers/zpaq/zpaqd.nix b/pkgs/tools/archivers/zpaq/zpaqd.nix index 7a56de6a2cd2b..06df4b15aa4a9 100644 --- a/pkgs/tools/archivers/zpaq/zpaqd.nix +++ b/pkgs/tools/archivers/zpaq/zpaqd.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/tools/audio/kaldi/default.nix b/pkgs/tools/audio/kaldi/default.nix index 4e7381a8f407e..67cba4be5303d 100644 --- a/pkgs/tools/audio/kaldi/default.nix +++ b/pkgs/tools/audio/kaldi/default.nix @@ -92,11 +92,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/tools/audio/mpd-sima/default.nix b/pkgs/tools/audio/mpd-sima/default.nix index cd8196e1b1e58..ddb13246e717b 100644 --- a/pkgs/tools/audio/mpd-sima/default.nix +++ b/pkgs/tools/audio/mpd-sima/default.nix @@ -30,11 +30,11 @@ buildPythonApplication rec { export HOME="$(mktemp -d)" ''; - meta = with lib; { + meta = { description = "Autoqueuing mpd client"; homepage = "https://kaliko.me/mpd-sima/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ apfelkuchen6 ]; mainProgram = "mpd-sima"; }; diff --git a/pkgs/tools/audio/qastools/default.nix b/pkgs/tools/audio/qastools/default.nix index 37af3d9e7a61f..0632ed7a4525f 100644 --- a/pkgs/tools/audio/qastools/default.nix +++ b/pkgs/tools/audio/qastools/default.nix @@ -30,11 +30,11 @@ 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; [ orivej ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ orivej ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/audio/video2midi/default.nix b/pkgs/tools/audio/video2midi/default.nix index c9bd76310e0ad..36b5a75298e4a 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/yabridgectl/default.nix b/pkgs/tools/audio/yabridgectl/default.nix index 4e69dc8462da1..834076ba09a92 100644 --- a/pkgs/tools/audio/yabridgectl/default.nix +++ b/pkgs/tools/audio/yabridgectl/default.nix @@ -40,12 +40,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/awsbck/default.nix b/pkgs/tools/backup/awsbck/default.nix index 361c2fea583fa..a8c632c8bfefe 100644 --- a/pkgs/tools/backup/awsbck/default.nix +++ b/pkgs/tools/backup/awsbck/default.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/tools/backup/bacula/default.nix b/pkgs/tools/backup/bacula/default.nix index 7e63b75652966..93faea7d84c09 100644 --- a/pkgs/tools/backup/bacula/default.nix +++ b/pkgs/tools/backup/bacula/default.nix @@ -74,17 +74,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/tools/backup/bupstash/default.nix b/pkgs/tools/backup/bupstash/default.nix index 5897238ef42ab..a18b4f84fa004 100644 --- a/pkgs/tools/backup/bupstash/default.nix +++ b/pkgs/tools/backup/bupstash/default.nix @@ -35,12 +35,12 @@ 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; - maintainers = with maintainers; [ andrewchambers ]; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ andrewchambers ]; mainProgram = "bupstash"; }; } diff --git a/pkgs/tools/backup/httrack/default.nix b/pkgs/tools/backup/httrack/default.nix index 9187f6ce51570..cd0b843be34ac 100644 --- a/pkgs/tools/backup/httrack/default.nix +++ b/pkgs/tools/backup/httrack/default.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/tools/backup/httrack/qt.nix b/pkgs/tools/backup/httrack/qt.nix index bc9eba0b923b0..db5d7159e8f87 100644 --- a/pkgs/tools/backup/httrack/qt.nix +++ b/pkgs/tools/backup/httrack/qt.nix @@ -46,13 +46,13 @@ mkDerivation rec { --replace /usr/share/httraqt/ $out/share/httraqt ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Easy-to-use offline browser / website mirroring utility - QT frontend"; mainProgram = "httraqt"; homepage = "http://www.httrack.com"; - license = licenses.gpl3; - maintainers = with maintainers; [ peterhoeg ]; - platforms = with platforms; unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/tools/backup/monolith/default.nix b/pkgs/tools/backup/monolith/default.nix index fa567086015b0..94b834f6f56b4 100644 --- a/pkgs/tools/backup/monolith/default.nix +++ b/pkgs/tools/backup/monolith/default.nix @@ -39,13 +39,13 @@ 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; broken = stdenv.isDarwin; - maintainers = with maintainers; [ Br1ght0ne ]; + maintainers = with lib.maintainers; [ Br1ght0ne ]; }; } diff --git a/pkgs/tools/backup/percona-xtrabackup/generic.nix b/pkgs/tools/backup/percona-xtrabackup/generic.nix index 3f4cdd86cf10a..d3b3ea388e9b3 100644 --- a/pkgs/tools/backup/percona-xtrabackup/generic.nix +++ b/pkgs/tools/backup/percona-xtrabackup/generic.nix @@ -106,11 +106,11 @@ 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 = teams.flyingcircus.members ++ [ maintainers.izorkin ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = lib.teams.flyingcircus.members ++ [ lib.maintainers.izorkin ]; }; }) diff --git a/pkgs/tools/backup/rdedup/default.nix b/pkgs/tools/backup/rdedup/default.nix index b11c7c9aab1c3..22b4370a62074 100644 --- a/pkgs/tools/backup/rdedup/default.nix +++ b/pkgs/tools/backup/rdedup/default.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage rec { xz ] ++ (lib.optional stdenv.hostPlatform.isDarwin Security); - 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/tools/backup/ugarit-manifest-maker/default.nix b/pkgs/tools/backup/ugarit-manifest-maker/default.nix index 0334352c87626..9f8b1fc821998 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 724f65495b5ce..7ceec6eedea59 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/brasero/default.nix b/pkgs/tools/cd-dvd/brasero/default.nix index 508a588041da2..2fefdd57c720d 100644 --- a/pkgs/tools/cd-dvd/brasero/default.nix +++ b/pkgs/tools/cd-dvd/brasero/default.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/tools/cd-dvd/cdrtools/default.nix b/pkgs/tools/cd-dvd/cdrtools/default.nix index d9b86e6081d4f..6080819d3cd19 100644 --- a/pkgs/tools/cd-dvd/cdrtools/default.nix +++ b/pkgs/tools/cd-dvd/cdrtools/default.nix @@ -60,15 +60,15 @@ stdenv.mkDerivation rec { hardeningDisable = lib.optional stdenv.hostPlatform.isMusl "fortify"; - meta = with lib; { + meta = { homepage = "https://cdrtools.sourceforge.net/private/cdrecord.html"; description = "Highly portable CD/DVD/BluRay command line recording software"; - license = with licenses; [ + license = with lib.licenses; [ cddl gpl2Plus lgpl21 ]; - platforms = with platforms; linux ++ darwin; + platforms = with lib.platforms; linux ++ darwin; # Licensing issues: This package contains code licensed under CDDL, GPL2 # and LGPL2. There is a debate regarding the legality of distributing this # package in binary form. diff --git a/pkgs/tools/cd-dvd/unetbootin/default.nix b/pkgs/tools/cd-dvd/unetbootin/default.nix index bd2e66c72b473..cfcda5d5350ab 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 c39868078bdae..5d84b4a52f54f 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 46cd16374b321..4d3aade452959 100644 --- a/pkgs/tools/compression/bzip2/default.nix +++ b/pkgs/tools/compression/bzip2/default.nix @@ -74,14 +74,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/xdelta/default.nix b/pkgs/tools/compression/xdelta/default.nix index 971811517a2e0..81ad7b9b25025 100644 --- a/pkgs/tools/compression/xdelta/default.nix +++ b/pkgs/tools/compression/xdelta/default.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/tools/compression/xdelta/unstable.nix b/pkgs/tools/compression/xdelta/unstable.nix index a8272fdb76534..75420d1f70fe2 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/filesystems/afsctool/default.nix b/pkgs/tools/filesystems/afsctool/default.nix index 4ebcd4e1da678..71258bec9c5ef 100644 --- a/pkgs/tools/filesystems/afsctool/default.nix +++ b/pkgs/tools/filesystems/afsctool/default.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { sparsehash ]; - meta = with lib; { + meta = { description = "Utility that allows end-users to leverage HFS+/APFS compression"; - license = licenses.unfree; - maintainers = [ maintainers.viraptor ]; - platforms = platforms.darwin; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.viraptor ]; + platforms = lib.platforms.darwin; homepage = "https://github.com/RJVB/afsctool"; }; } diff --git a/pkgs/tools/filesystems/android-file-transfer/default.nix b/pkgs/tools/filesystems/android-file-transfer/default.nix index d7a48f8ed9ed2..352403893e855 100644 --- a/pkgs/tools/filesystems/android-file-transfer/default.nix +++ b/pkgs/tools/filesystems/android-file-transfer/default.nix @@ -42,11 +42,11 @@ 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/tools/filesystems/ceph/old-python-packages/cryptography-vectors.nix b/pkgs/tools/filesystems/ceph/old-python-packages/cryptography-vectors.nix index 74fd8dd956768..74bc41127e8e8 100644 --- a/pkgs/tools/filesystems/ceph/old-python-packages/cryptography-vectors.nix +++ b/pkgs/tools/filesystems/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/tools/filesystems/ceph/old-python-packages/trustme.nix b/pkgs/tools/filesystems/ceph/old-python-packages/trustme.nix index 31578bcb8d7d8..de8befd9e9177 100644 --- a/pkgs/tools/filesystems/ceph/old-python-packages/trustme.nix +++ b/pkgs/tools/filesystems/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/tools/filesystems/disorderfs/default.nix b/pkgs/tools/filesystems/disorderfs/default.nix index 294222cb50447..e15225bc89de7 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/duff/default.nix b/pkgs/tools/filesystems/duff/default.nix index 3fca46a96bbd1..a93ea8d84cf69 100644 --- a/pkgs/tools/filesystems/duff/default.nix +++ b/pkgs/tools/filesystems/duff/default.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/tools/filesystems/encfs/default.nix b/pkgs/tools/filesystems/encfs/default.nix index dcc80c0acca7a..e6f95b828ada5 100644 --- a/pkgs/tools/filesystems/encfs/default.nix +++ b/pkgs/tools/filesystems/encfs/default.nix @@ -51,13 +51,13 @@ stdenv.mkDerivation rec { "-DINSTALL_LIBENCFS=ON" ]; - 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; }; } diff --git a/pkgs/tools/filesystems/fuse-ext2/default.nix b/pkgs/tools/filesystems/fuse-ext2/default.nix index 49ae5aa6e2f14..405b50286ac37 100644 --- a/pkgs/tools/filesystems/fuse-ext2/default.nix +++ b/pkgs/tools/filesystems/fuse-ext2/default.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/tools/filesystems/irods/common.nix b/pkgs/tools/filesystems/irods/common.nix index 9f77802b66ce7..2acbe776dea81 100644 --- a/pkgs/tools/filesystems/irods/common.nix +++ b/pkgs/tools/filesystems/irods/common.nix @@ -94,7 +94,7 @@ patchShebangs ./packaging ./scripts ''; - meta = with lib; { + meta = { description = "Integrated Rule-Oriented Data System (iRODS)"; longDescription = '' The Integrated Rule-Oriented Data System (iRODS) is open source data management diff --git a/pkgs/tools/filesystems/kdiskmark/default.nix b/pkgs/tools/filesystems/kdiskmark/default.nix index e094f6ce5ee8a..3040e8faa30aa 100644 --- a/pkgs/tools/filesystems/kdiskmark/default.nix +++ b/pkgs/tools/filesystems/kdiskmark/default.nix @@ -46,7 +46,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 @@ -54,9 +54,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/tools/filesystems/kio-fuse/default.nix b/pkgs/tools/filesystems/kio-fuse/default.nix index 72fff84067026..ad6e84e2f10bb 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 3b89c3c00c79a..0edb96509d456 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/filesystems/mkspiffs/default.nix b/pkgs/tools/filesystems/mkspiffs/default.nix index 808b27dd687df..9ae60f3b028a5 100644 --- a/pkgs/tools/filesystems/mkspiffs/default.nix +++ b/pkgs/tools/filesystems/mkspiffs/default.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { cp mkspiffs $out/bin ''; - meta = with lib; { + meta = { description = "Tool to build and unpack SPIFFS images"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/igrr/mkspiffs"; - maintainers = with maintainers; [ haslersn ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ haslersn ]; + platforms = lib.platforms.linux; mainProgram = "mkspiffs"; }; } diff --git a/pkgs/tools/filesystems/ntfs-3g/default.nix b/pkgs/tools/filesystems/ntfs-3g/default.nix index ff1347c6c7e1d..542b2b42f9f4f 100644 --- a/pkgs/tools/filesystems/ntfs-3g/default.nix +++ b/pkgs/tools/filesystems/ntfs-3g/default.nix @@ -84,12 +84,12 @@ 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 ]; - platforms = with platforms; darwin ++ linux; - license = with licenses; [ + maintainers = with lib.maintainers; [ dezgeg ]; + platforms = with lib.platforms; darwin ++ linux; + license = with lib.licenses; [ gpl2Plus # ntfs-3g itself lgpl2Plus # fuse-lite ]; diff --git a/pkgs/tools/filesystems/romdirfs/default.nix b/pkgs/tools/filesystems/romdirfs/default.nix index 387d17ce1861c..54edabe5d9eba 100644 --- a/pkgs/tools/filesystems/romdirfs/default.nix +++ b/pkgs/tools/filesystems/romdirfs/default.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { ]; buildInputs = [ fuse ]; - 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/tools/filesystems/securefs/default.nix b/pkgs/tools/filesystems/securefs/default.nix index 1dd426b55a370..bd5857500ac57 100644 --- a/pkgs/tools/filesystems/securefs/default.nix +++ b/pkgs/tools/filesystems/securefs/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; buildInputs = [ fuse ]; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Transparent encryption filesystem"; longDescription = '' @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { automatically updated to contain the encrypted and authenticated contents. ''; - license = with licenses; [ + license = with lib.licenses; [ bsd2 mit ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "securefs"; }; } diff --git a/pkgs/tools/filesystems/squashfs-tools-ng/default.nix b/pkgs/tools/filesystems/squashfs-tools-ng/default.nix index 5e8625f3f5355..ec03bb270700b 100644 --- a/pkgs/tools/filesystems/squashfs-tools-ng/default.nix +++ b/pkgs/tools/filesystems/squashfs-tools-ng/default.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/tools/filesystems/ssdfs-utils/default.nix b/pkgs/tools/filesystems/ssdfs-utils/default.nix index b176a4530e300..6c8d203d69c7f 100644 --- a/pkgs/tools/filesystems/ssdfs-utils/default.nix +++ b/pkgs/tools/filesystems/ssdfs-utils/default.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/tools/filesystems/ubidump/default.nix b/pkgs/tools/filesystems/ubidump/default.nix index 72ef56fa47f8e..6bd8d3cfe44ea 100644 --- a/pkgs/tools/filesystems/ubidump/default.nix +++ b/pkgs/tools/filesystems/ubidump/default.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/tools/games/ajour/default.nix b/pkgs/tools/games/ajour/default.nix index d0e4dc5285ce0..cea2f34eb0cf0 100644 --- a/pkgs/tools/games/ajour/default.nix +++ b/pkgs/tools/games/ajour/default.nix @@ -88,7 +88,7 @@ rustPlatform.buildRustPackage rec { } ''; - meta = with lib; { + meta = { description = "World of Warcraft addon manager written in Rust"; mainProgram = "ajour"; longDescription = '' @@ -98,8 +98,8 @@ rustPlatform.buildRustPackage rec { ''; homepage = "https://github.com/casperstorm/ajour"; changelog = "https://github.com/casperstorm/ajour/blob/master/CHANGELOG.md"; - license = licenses.mit; + license = lib.licenses.mit; broken = stdenv.hostPlatform.isDarwin; - maintainers = with maintainers; [ hexa ]; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/tools/games/mymcplus/default.nix b/pkgs/tools/games/mymcplus/default.nix index b6623698d9c9c..beaca0364d347 100644 --- a/pkgs/tools/games/mymcplus/default.nix +++ b/pkgs/tools/games/mymcplus/default.nix @@ -25,11 +25,11 @@ pythonPackages.buildPythonApplication rec { wxpython ]; - 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/tools/games/pokefinder/default.nix b/pkgs/tools/games/pokefinder/default.nix index ed9d62db08ce2..9989e982076b1 100644 --- a/pkgs/tools/games/pokefinder/default.nix +++ b/pkgs/tools/games/pokefinder/default.nix @@ -89,12 +89,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/games/slipstream/default.nix b/pkgs/tools/games/slipstream/default.nix index 8269072876f38..8333ff31e4086 100644 --- a/pkgs/tools/games/slipstream/default.nix +++ b/pkgs/tools/games/slipstream/default.nix @@ -44,11 +44,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/tools/games/steamback/default.nix b/pkgs/tools/games/steamback/default.nix index 662b6a06c6d88..4a41b9b0e8628 100644 --- a/pkgs/tools/games/steamback/default.nix +++ b/pkgs/tools/games/steamback/default.nix @@ -55,11 +55,11 @@ buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Decky plugin to add versioned save-game snapshots to Steam-cloud enabled games"; mainProgram = "steamback"; homepage = "https://github.com/geeksville/steamback"; - license = licenses.gpl3; - maintainers = with maintainers; [ AngryAnt ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ AngryAnt ]; }; } diff --git a/pkgs/tools/graphics/goverlay/default.nix b/pkgs/tools/graphics/goverlay/default.nix index b59d5de8ac3c0..aedf0b1fe44f9 100644 --- a/pkgs/tools/graphics/goverlay/default.nix +++ b/pkgs/tools/graphics/goverlay/default.nix @@ -97,12 +97,12 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Opensource project that aims to create a Graphical UI to help manage Linux overlays"; homepage = "https://github.com/benjamimgois/goverlay"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.linux; mainProgram = "goverlay"; }; } diff --git a/pkgs/tools/graphics/hobbits/default.nix b/pkgs/tools/graphics/hobbits/default.nix index 6a429f9e70656..bd1621d156896 100644 --- a/pkgs/tools/graphics/hobbits/default.nix +++ b/pkgs/tools/graphics/hobbits/default.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isAarch64 "-Wno-error=narrowing"; - meta = with lib; { + meta = { description = "Multi-platform GUI for bit-based analysis, processing, and visualization"; homepage = "https://github.com/Mahlet-Inc/hobbits"; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/graphics/nifskope/default.nix b/pkgs/tools/graphics/nifskope/default.nix index 26e0d03540b94..f7a3b4378132f 100644 --- a/pkgs/tools/graphics/nifskope/default.nix +++ b/pkgs/tools/graphics/nifskope/default.nix @@ -74,12 +74,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 cca813af3c220..31c734bed7e19 100644 --- a/pkgs/tools/graphics/pfstools/default.nix +++ b/pkgs/tools/graphics/pfstools/default.nix @@ -90,11 +90,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 1135804cde704..e5c2e7d9ce8bb 100644 --- a/pkgs/tools/graphics/pixel2svg/default.nix +++ b/pkgs/tools/graphics/pixel2svg/default.nix @@ -19,11 +19,11 @@ python310Packages.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 438737633ef0f..c8efbf199abb2 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 8597b97d34d0c..1542834e4a70c 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 075846b697bae..053a43006461f 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-tools/default.nix b/pkgs/tools/graphics/vulkan-tools/default.nix index 435671c1915de..d4cbf8fd05991 100644 --- a/pkgs/tools/graphics/vulkan-tools/default.nix +++ b/pkgs/tools/graphics/vulkan-tools/default.nix @@ -88,7 +88,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 @@ -96,8 +96,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/tools/graphics/zbar/default.nix b/pkgs/tools/graphics/zbar/default.nix index 93d3b480248aa..601a5ca88c93a 100644 --- a/pkgs/tools/graphics/zbar/default.nix +++ b/pkgs/tools/graphics/zbar/default.nix @@ -160,7 +160,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 @@ -169,9 +169,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/fcitx5-anthy.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-anthy.nix index b604a7e838bfd..bbf96f2301a1d 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 33b4571da34db..9c0ac16711dbb 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 101db511b1556..4561f5acb5871 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-chinese-addons.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-chinese-addons.nix @@ -72,15 +72,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 618eb1587fda6..afe2e51316d2d 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 d59449b7d6a14..1d1befadd3a61 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-gtk.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-gtk.nix @@ -73,11 +73,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 86271423a8416..44eb847e0d129 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 ec040d344998b..f33a0371f1be3 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 8d6640b3254ae..eae5f9ce113ab 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-m17n.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-m17n.nix @@ -42,11 +42,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 e7ada4963a1af..5e78ac0cee897 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 1ef0ac41f3213..d5764d6c9af71 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-rime.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-rime.nix @@ -50,11 +50,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 34bfa097dca2b..df6980f9678b7 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-skk.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-skk.nix @@ -50,11 +50,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 4d8845c0c2d37..be4fba105252d 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 8a584ec672026..d155bbcb480e0 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 07ae7b36fb779..e409b137381ee 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-unikey.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-unikey.nix @@ -39,11 +39,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 867f31a7203ed..5bcaa57756eb8 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix @@ -48,13 +48,13 @@ 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; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ gebner ericsagnes ]; diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-bamboo/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-bamboo/default.nix index 3341b2ff2ed51..1013cd2956eb0 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; - maintainers = with maintainers; [ astronaut0212 ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ astronaut0212 ]; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix index 0db733c430348..74a9e1a8b676b 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; - maintainers = with maintainers; [ ericsagnes ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ericsagnes ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-kkc/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-kkc/default.nix index 88b58a571025c..3bfe33103db7c 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-kkc/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-kkc/default.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { ln -s ${skkDictionaries.l}/share/skk $out/share/skk ''; - meta = with lib; { + meta = { isIbusEngine = true; description = "libkkc (Japanese Kana Kanji input method) engine for ibus"; homepage = "https://github.com/ueno/ibus-kkc"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ vanzef ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ vanzef ]; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-libpinyin/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-libpinyin/default.nix index 6e6a00d180270..c8955370f0bb1 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-libpinyin/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-libpinyin/default.nix @@ -61,14 +61,14 @@ stdenv.mkDerivation rec { json-glib ]; - meta = with lib; { + meta = { isIbusEngine = true; description = "IBus interface to the libpinyin input method"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ linsui ericsagnes ]; - 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 c723247f2aa1c..c539d2a043f58 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 04624b495eac9..708e56034b955 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; - maintainers = with maintainers; [ ericsagnes ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ericsagnes ]; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-rime/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-rime/default.nix index ad1aae82f1702..9975e206c1366 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-rime/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-rime/default.nix @@ -48,12 +48,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-chinese/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-table-chinese/default.nix index e829835af7e8a..4924a58f5b7aa 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-table-chinese/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-table-chinese/default.nix @@ -79,12 +79,12 @@ stdenv.mkDerivation { python3 ]; - meta = with lib; { + meta = { isIbusEngine = true; description = "Chinese tables for IBus-Table"; homepage = "https://github.com/definite/ibus-table-chinese"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ pneumaticat ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pneumaticat ]; }; } 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 b473188a6a579..8e4926e3317aa 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 66f88cc3c5923..783ff014a0d47 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 b587e1cbfa735..ea386b3dd5258 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 = with maintainers; [ ncfavier ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ ncfavier ]; + platforms = lib.platforms.linux; isIbusEngine = true; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-uniemoji/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-uniemoji/default.nix index d273629860913..828252b1ebd67 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-uniemoji/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-uniemoji/default.nix @@ -55,15 +55,15 @@ stdenv.mkDerivation rec { wrapGApp $out/share/ibus-uniemoji/uniemoji.py ''; - meta = with lib; { + meta = { isIbusEngine = true; description = "Input method (ibus) for entering unicode symbols and emoji by name"; homepage = "https://github.com/salty-horse/ibus-uniemoji"; - license = with licenses; [ + license = with lib.licenses; [ gpl3 mit ]; - platforms = platforms.linux; - maintainers = with maintainers; [ aske ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ aske ]; }; } diff --git a/pkgs/tools/inputmethods/ibus/default.nix b/pkgs/tools/inputmethods/ibus/default.nix index d3161f748743d..434456fb4c5aa 100644 --- a/pkgs/tools/inputmethods/ibus/default.nix +++ b/pkgs/tools/inputmethods/ibus/default.nix @@ -195,11 +195,11 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/ibus/ibus"; description = "Intelligent Input Bus, input method framework"; - license = licenses.lgpl21Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ ttuegel ]; + license = lib.licenses.lgpl21Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ttuegel ]; }; } diff --git a/pkgs/tools/inputmethods/input-remapper/default.nix b/pkgs/tools/inputmethods/input-remapper/default.nix index 4713d7f2f4c00..c5a3cb2d871ce 100644 --- a/pkgs/tools/inputmethods/input-remapper/default.nix +++ b/pkgs/tools/inputmethods/input-remapper/default.nix @@ -150,12 +150,12 @@ in passthru.tests = nixosTests.input-remapper; - meta = with lib; { + meta = { description = "Easy to use tool to change the mapping of your input device buttons"; homepage = "https://github.com/sezanzeb/input-remapper"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ LunNova ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ LunNova ]; mainProgram = "input-remapper-gtk"; }; }).overrideAttrs diff --git a/pkgs/tools/inputmethods/interception-tools/caps2esc.nix b/pkgs/tools/inputmethods/interception-tools/caps2esc.nix index 6e9b8f32800a2..ca7c9eb6dfcf6 100644 --- a/pkgs/tools/inputmethods/interception-tools/caps2esc.nix +++ b/pkgs/tools/inputmethods/interception-tools/caps2esc.nix @@ -19,12 +19,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; - maintainers = [ maintainers.vyp ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.vyp ]; + 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 d9a786213bfb1..6e362867e2678 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/misc/3llo/default.nix b/pkgs/tools/misc/3llo/default.nix index 45c1e633d050f..75fb348b1a695 100644 --- a/pkgs/tools/misc/3llo/default.nix +++ b/pkgs/tools/misc/3llo/default.nix @@ -7,9 +7,9 @@ bundlerApp { exes = [ "3llo" ]; - meta = with lib; { + meta = { description = "Trello interactive CLI on terminal"; - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/qcam/3llo"; maintainers = [ ]; }; diff --git a/pkgs/tools/misc/android-tools/default.nix b/pkgs/tools/misc/android-tools/default.nix index 95af0ed528ce5..4c979e65eacc1 100644 --- a/pkgs/tools/misc/android-tools/default.nix +++ b/pkgs/tools/misc/android-tools/default.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { export GOCACHE=$TMPDIR/go-cache ''; - meta = with lib; { + meta = { description = "Android SDK platform tools"; longDescription = '' Android SDK Platform-Tools is a component for the Android SDK. It @@ -74,11 +74,11 @@ stdenv.mkDerivation rec { # https://developer.android.com/studio/command-line#tools-platform # https://developer.android.com/studio/releases/platform-tools homepage = "https://github.com/nmeum/android-tools"; - license = with licenses; [ + license = with lib.licenses; [ asl20 unicode-dfs-2015 ]; - platforms = platforms.unix; - maintainers = with maintainers; [ primeos ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ primeos ]; }; } diff --git a/pkgs/tools/misc/antimicrox/default.nix b/pkgs/tools/misc/antimicrox/default.nix index 76ea224f19d73..ee694a0e035e6 100644 --- a/pkgs/tools/misc/antimicrox/default.nix +++ b/pkgs/tools/misc/antimicrox/default.nix @@ -39,12 +39,12 @@ mkDerivation rec { --replace "/usr/lib/udev/rules.d/" "$out/lib/udev/rules.d/" ''; - 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 19379ae96ffed..bd068bb062707 100644 --- a/pkgs/tools/misc/anystyle-cli/default.nix +++ b/pkgs/tools/misc/anystyle-cli/default.nix @@ -34,12 +34,12 @@ 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; [ shamilton ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ shamilton ]; mainProgram = "anystyle"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/misc/aoc-cli/default.nix b/pkgs/tools/misc/aoc-cli/default.nix index 6f4cdad5240e0..0e503b2643975 100644 --- a/pkgs/tools/misc/aoc-cli/default.nix +++ b/pkgs/tools/misc/aoc-cli/default.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-EluP4N3UBQeEKVdHTs4O0THXji+nAyE52nGKsxA3AA4="; - 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/tools/misc/birdfont/default.nix b/pkgs/tools/misc/birdfont/default.nix index 5581175a65838..08ffb7503245c 100644 --- a/pkgs/tools/misc/birdfont/default.nix +++ b/pkgs/tools/misc/birdfont/default.nix @@ -61,10 +61,10 @@ stdenv.mkDerivation rec { installPhase = "./install.py"; - 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 edfe0c80dda8b..a7ac651058667 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/brotab/default.nix b/pkgs/tools/misc/brotab/default.nix index 8fe0143d92582..c9e430f11dfb0 100644 --- a/pkgs/tools/misc/brotab/default.nix +++ b/pkgs/tools/misc/brotab/default.nix @@ -46,10 +46,10 @@ python.pkgs.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/tools/misc/chafa/default.nix b/pkgs/tools/misc/chafa/default.nix index 23954dc675966..bf5f01bcba9a8 100644 --- a/pkgs/tools/misc/chafa/default.nix +++ b/pkgs/tools/misc/chafa/default.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { # https://github.com/NixOS/nixpkgs/pull/240893#issuecomment-1635347507 NIX_LDFLAGS = [ "-lwebp" ]; - meta = with lib; { + meta = { description = "Terminal graphics for the 21st century"; homepage = "https://hpjansson.org/chafa/"; - license = licenses.lgpl3Plus; - platforms = platforms.all; - maintainers = [ maintainers.mog ]; + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.mog ]; mainProgram = "chafa"; }; } diff --git a/pkgs/tools/misc/chef-cli/default.nix b/pkgs/tools/misc/chef-cli/default.nix index dd273aff3d7f8..088ab23a36618 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 f33ada649a344..0c168185a49f3 100644 --- a/pkgs/tools/misc/ckb-next/default.nix +++ b/pkgs/tools/misc/ckb-next/default.nix @@ -69,11 +69,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/contacts/default.nix b/pkgs/tools/misc/contacts/default.nix index 83535fb9d0333..296edd8dd00ad 100644 --- a/pkgs/tools/misc/contacts/default.nix +++ b/pkgs/tools/misc/contacts/default.nix @@ -34,12 +34,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/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix index d7ce076e8a85b..143479db38caa 100644 --- a/pkgs/tools/misc/coreutils/default.nix +++ b/pkgs/tools/misc/coreutils/default.nix @@ -241,7 +241,7 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/coreutils/"; description = "GNU Core Utilities"; longDescription = '' @@ -249,9 +249,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/cutecom/default.nix b/pkgs/tools/misc/cutecom/default.nix index 0fc665fbd739f..622547e249b57 100644 --- a/pkgs/tools/misc/cutecom/default.nix +++ b/pkgs/tools/misc/cutecom/default.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { cp cutecom.1 "$out/share/man/man1" ''; - meta = with lib; { + meta = { description = "Graphical serial terminal"; homepage = "https://gitlab.com/cutecom/cutecom/"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ bennofs ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ bennofs ]; + platforms = lib.platforms.unix; mainProgram = "cutecom"; }; } diff --git a/pkgs/tools/misc/dialogbox/default.nix b/pkgs/tools/misc/dialogbox/default.nix index 6287ed999ab24..6a51e522fd46e 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; - maintainers = with maintainers; [ AndersonTorres ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ AndersonTorres ]; + platforms = lib.platforms.unix; mainProgram = "dialogbox"; }; } diff --git a/pkgs/tools/misc/didyoumean/default.nix b/pkgs/tools/misc/didyoumean/default.nix index 76d52622a839d..53623546505ee 100644 --- a/pkgs/tools/misc/didyoumean/default.nix +++ b/pkgs/tools/misc/didyoumean/default.nix @@ -44,11 +44,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/tools/misc/dijo/default.nix b/pkgs/tools/misc/dijo/default.nix index 9a4867971252a..0568f9642858e 100644 --- a/pkgs/tools/misc/dijo/default.nix +++ b/pkgs/tools/misc/dijo/default.nix @@ -19,10 +19,10 @@ rustPlatform.buildRustPackage rec { }; cargoHash = "sha256-o3+KcE7ozu6eUgwsOSr9DOoIo+/BZ3bJZe+WYQLXHpY="; - meta = with lib; { + meta = { description = "Scriptable, curses-based, digital habit tracker"; homepage = "https://github.com/NerdyPepper/dijo"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; mainProgram = "dijo"; }; diff --git a/pkgs/tools/misc/diskus/default.nix b/pkgs/tools/misc/diskus/default.nix index 4157819810863..fee5bdb906e45 100644 --- a/pkgs/tools/misc/diskus/default.nix +++ b/pkgs/tools/misc/diskus/default.nix @@ -21,15 +21,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-7xGt+HDX20Bxwdff0Ca/D6lcT3baumeiUmIPXSh5NYM="; - 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/tools/misc/docker-sync/default.nix b/pkgs/tools/misc/docker-sync/default.nix index 0336a7b07e089..7e86c779812c4 100644 --- a/pkgs/tools/misc/docker-sync/default.nix +++ b/pkgs/tools/misc/docker-sync/default.nix @@ -15,15 +15,15 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "docker-sync"; - meta = with lib; { + meta = { description = "Run your application at full speed while syncing your code for development"; homepage = "http://docker-sync.io"; - license = licenses.gpl3; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ manveru nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "docker-sync"; }; } diff --git a/pkgs/tools/misc/dvtm/dvtm.nix b/pkgs/tools/misc/dvtm/dvtm.nix index 8bf1dd971d057..5374e5b52f498 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/eludris/default.nix b/pkgs/tools/misc/eludris/default.nix index 19def0a87cbe0..0e7cc71824623 100644 --- a/pkgs/tools/misc/eludris/default.nix +++ b/pkgs/tools/misc/eludris/default.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/tools/misc/envchain/default.nix b/pkgs/tools/misc/envchain/default.nix index cfbc7b343d1b3..54171e155066a 100644 --- a/pkgs/tools/misc/envchain/default.nix +++ b/pkgs/tools/misc/envchain/default.nix @@ -40,11 +40,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/tools/misc/esphome/dashboard.nix b/pkgs/tools/misc/esphome/dashboard.nix index 8cc6f8faa9f4b..633ded5159605 100644 --- a/pkgs/tools/misc/esphome/dashboard.nix +++ b/pkgs/tools/misc/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/tools/misc/ffsend/default.nix b/pkgs/tools/misc/ffsend/default.nix index f2de570ff6065..dfed283c2eb80 100644 --- a/pkgs/tools/misc/ffsend/default.nix +++ b/pkgs/tools/misc/ffsend/default.nix @@ -94,7 +94,7 @@ rustPlatform.buildRustPackage rec { ''; # There's also .elv and .ps1 completion files but I don't know where to install those - meta = with lib; { + meta = { description = "Easily and securely share files from the command line. A fully featured Firefox Send client"; longDescription = '' Easily and securely share files and directories from the command line through a safe, private @@ -103,9 +103,9 @@ rustPlatform.buildRustPackage rec { web browser. ''; homepage = "https://gitlab.com/timvisee/ffsend"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ equirosa ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ equirosa ]; + platforms = lib.platforms.unix; mainProgram = "ffsend"; }; } diff --git a/pkgs/tools/misc/file/default.nix b/pkgs/tools/misc/file/default.nix index 40becb915e1fa..b0ba25fc959b0 100644 --- a/pkgs/tools/misc/file/default.nix +++ b/pkgs/tools/misc/file/default.nix @@ -47,13 +47,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/flowgger/default.nix b/pkgs/tools/misc/flowgger/default.nix index 0ad0f183b5409..af2726cc6a2ad 100644 --- a/pkgs/tools/misc/flowgger/default.nix +++ b/pkgs/tools/misc/flowgger/default.nix @@ -33,10 +33,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/tools/misc/fluentd/default.nix b/pkgs/tools/misc/fluentd/default.nix index e87f69408ac83..d7140f31c836f 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/freshfetch/default.nix b/pkgs/tools/misc/freshfetch/default.nix index a8e327120484c..73b88d5f51afd 100644 --- a/pkgs/tools/misc/freshfetch/default.nix +++ b/pkgs/tools/misc/freshfetch/default.nix @@ -39,11 +39,11 @@ rustPlatform.buildRustPackage rec { IOKit ]; - meta = with lib; { + meta = { description = "Fresh take on neofetch"; homepage = "https://github.com/k4rakara/freshfetch"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "freshfetch"; }; } diff --git a/pkgs/tools/misc/fwup/default.nix b/pkgs/tools/misc/fwup/default.nix index 1b434c71aea8a..b8ba24e0cc8c9 100644 --- a/pkgs/tools/misc/fwup/default.nix +++ b/pkgs/tools/misc/fwup/default.nix @@ -67,11 +67,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/tools/misc/gaphor/default.nix b/pkgs/tools/misc/gaphor/default.nix index c19cb78cecf7f..dc35c16bc5897 100644 --- a/pkgs/tools/misc/gaphor/default.nix +++ b/pkgs/tools/misc/gaphor/default.nix @@ -98,11 +98,11 @@ buildPythonApplication rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Simple modeling tool written in Python"; maintainers = [ ] ++ lib.teams.gnome-circle.members; homepage = "https://github.com/gaphor/gaphor"; - license = licenses.asl20; + license = lib.licenses.asl20; platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/misc/gazelle-origin/default.nix b/pkgs/tools/misc/gazelle-origin/default.nix index 37ef0aedd9ccc..7c4fe835f60aa 100644 --- a/pkgs/tools/misc/gazelle-origin/default.nix +++ b/pkgs/tools/misc/gazelle-origin/default.nix @@ -28,12 +28,12 @@ buildPythonApplication rec { pythonImportsCheck = [ "gazelleorigin" ]; - meta = with lib; { + meta = { description = "Tool for generating origin files using the API of Gazelle-based torrent trackers"; homepage = "https://github.com/spinfast319/gazelle-origin"; # TODO license is unspecified in the upstream, as well as the fork - license = licenses.unfree; - maintainers = with maintainers; [ somasis ]; + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ somasis ]; mainProgram = "gazelle-origin"; }; } diff --git a/pkgs/tools/misc/gh-cal/default.nix b/pkgs/tools/misc/gh-cal/default.nix index 9d099cf6a7aa0..91f73d230286c 100644 --- a/pkgs/tools/misc/gh-cal/default.nix +++ b/pkgs/tools/misc/gh-cal/default.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/tools/misc/grc/default.nix b/pkgs/tools/misc/grc/default.nix index 109b1b3479386..b1b92b7ce94ca 100644 --- a/pkgs/tools/misc/grc/default.nix +++ b/pkgs/tools/misc/grc/default.nix @@ -39,20 +39,20 @@ buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "http://kassiopeia.juls.savba.sk/~garabik/software/grc.html"; description = "Generic text colouriser"; longDescription = '' Generic Colouriser is yet another colouriser (written in Python) for beautifying your logfiles or output of commands. ''; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ azahi lovek323 peterhoeg ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "grc"; }; } diff --git a/pkgs/tools/misc/grub4dos/default.nix b/pkgs/tools/misc/grub4dos/default.nix index af5cc1d8b0e22..36dc1c77d3e29 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 = with maintainers; [ abbradar ]; - platforms = platforms.linux; - license = licenses.gpl2Plus; + maintainers = with lib.maintainers; [ abbradar ]; + 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 10c67af8cd80c..97dc53555fef9 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/h/default.nix b/pkgs/tools/misc/h/default.nix index 9777c5d1a001b..cece6f86a3628 100644 --- a/pkgs/tools/misc/h/default.nix +++ b/pkgs/tools/misc/h/default.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/tools/misc/haste-client/default.nix b/pkgs/tools/misc/haste-client/default.nix index abaf8312dc35c..0ff27c6a0fd71 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 4ee7101efd53c..0b2437bf2ed21 100644 --- a/pkgs/tools/misc/hdf5/default.nix +++ b/pkgs/tools/misc/hdf5/default.nix @@ -134,7 +134,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 @@ -142,9 +142,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/heimdall/default.nix b/pkgs/tools/misc/heimdall/default.nix index 90af4652dad1a..d3eb485b75d41 100644 --- a/pkgs/tools/misc/heimdall/default.nix +++ b/pkgs/tools/misc/heimdall/default.nix @@ -55,13 +55,13 @@ mkDerivation rec { install -m644 ../OSX/README.txt $out/share/doc/heimdall/README.osx ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "http://www.glassechidna.com.au/products/heimdall/"; description = "Cross-platform tool suite to flash firmware onto Samsung Galaxy S devices"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.unix; mainProgram = "heimdall"; }; } diff --git a/pkgs/tools/misc/hiksink/default.nix b/pkgs/tools/misc/hiksink/default.nix index 4e9a4172cfa0b..feec10eecf6c1 100644 --- a/pkgs/tools/misc/hiksink/default.nix +++ b/pkgs/tools/misc/hiksink/default.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage rec { Security ]; - meta = with lib; { + meta = { description = "Tool to convert Hikvision camera events to MQTT"; homepage = "https://github.com/CornerBit/HikSink"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "hik_sink"; }; } diff --git a/pkgs/tools/misc/homesick/default.nix b/pkgs/tools/misc/homesick/default.nix index 72b63f099e891..2af627ba9b202 100644 --- a/pkgs/tools/misc/homesick/default.nix +++ b/pkgs/tools/misc/homesick/default.nix @@ -17,7 +17,7 @@ bundlerEnv { passthru.updateScript = bundlerUpdateScript "homesick"; - meta = with lib; { + meta = { description = "Your home directory is your castle. Don't leave your dotfiles behind"; longDescription = '' Homesick is sorta like rip, but for dotfiles. It uses git to clone a repository containing @@ -25,12 +25,12 @@ bundlerEnv { place with a single command. ''; homepage = "https://github.com/technicalpickles/homesick"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aaronschif nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "homesick"; }; } diff --git a/pkgs/tools/misc/html-proofer/default.nix b/pkgs/tools/misc/html-proofer/default.nix index 32d810ee4e41b..0b8202d03fd40 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/iay/default.nix b/pkgs/tools/misc/iay/default.nix index 01f1205f9dc2b..903b5a339b00a 100644 --- a/pkgs/tools/misc/iay/default.nix +++ b/pkgs/tools/misc/iay/default.nix @@ -42,11 +42,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 omasanori ]; diff --git a/pkgs/tools/misc/inspec/default.nix b/pkgs/tools/misc/inspec/default.nix index e020191a3a796..eb3f3c2530adc 100644 --- a/pkgs/tools/misc/inspec/default.nix +++ b/pkgs/tools/misc/inspec/default.nix @@ -15,11 +15,11 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "inspec"; - meta = with lib; { + meta = { description = "Inspec is an open-source testing framework for infrastructure with a human- and machine-readable language for specifying compliance, security and policy requirements"; homepage = "https://inspec.io/"; - license = licenses.asl20; - maintainers = with maintainers; [ dylanmtaylor ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dylanmtaylor ]; mainProgram = "inspec"; }; } diff --git a/pkgs/tools/misc/jsonwatch/default.nix b/pkgs/tools/misc/jsonwatch/default.nix index f2cd306ecced4..4977faea623d0 100644 --- a/pkgs/tools/misc/jsonwatch/default.nix +++ b/pkgs/tools/misc/jsonwatch/default.nix @@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Io51qbZOVcOKyMvo9/GTPXkGiJwjxcIPK3y7vAuTJOM="; - meta = with lib; { + meta = { description = "Like watch -d but for JSON"; longDescription = '' jsonwatch is a command line utility with which you can track @@ -27,8 +27,8 @@ rustPlatform.buildRustPackage rec { differences when the data changes. ''; homepage = "https://github.com/dbohdan/jsonwatch"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "jsonwatch"; }; } diff --git a/pkgs/tools/misc/kakoune-cr/default.nix b/pkgs/tools/misc/kakoune-cr/default.nix index 4d97fc89794c5..1b2e4e3dcbd91 100644 --- a/pkgs/tools/misc/kakoune-cr/default.nix +++ b/pkgs/tools/misc/kakoune-cr/default.nix @@ -47,14 +47,14 @@ crystal.buildCrystalPackage rec { $out/bin/kcr --help ''; - meta = with lib; { + meta = { homepage = "https://github.com/alexherbo2/kakoune.cr"; description = "Command-line tool for Kakoune"; - license = licenses.unlicense; - maintainers = with maintainers; [ + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ philiptaron malte-v ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/misc/kcollectd/default.nix b/pkgs/tools/misc/kcollectd/default.nix index 86fb2628866d8..5a221a6c0ff93 100644 --- a/pkgs/tools/misc/kcollectd/default.nix +++ b/pkgs/tools/misc/kcollectd/default.nix @@ -51,10 +51,10 @@ mkDerivation rec { breeze-icons ]; - meta = with lib; { + meta = { description = "Graphical frontend to collectd"; homepage = "https://www.antonioerusso.com/projects/kcollectd/"; - maintainers = [ maintainers.symphorien ]; + maintainers = [ lib.maintainers.symphorien ]; license = [ lib.licenses.gpl3Plus ]; platforms = lib.platforms.linux; mainProgram = "kcollectd"; diff --git a/pkgs/tools/misc/killport/default.nix b/pkgs/tools/misc/killport/default.nix index 514d61a3bf150..b918f8ba857c2 100644 --- a/pkgs/tools/misc/killport/default.nix +++ b/pkgs/tools/misc/killport/default.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ rustPlatform.bindgenHook ]; - meta = with lib; { + meta = { description = "Command-line tool to easily kill processes running on a specified port"; homepage = "https://github.com/jkfran/killport"; - license = licenses.mit; - maintainers = with maintainers; [ sno2wman ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sno2wman ]; mainProgram = "killport"; }; } diff --git a/pkgs/tools/misc/kronometer/default.nix b/pkgs/tools/misc/kronometer/default.nix index f8442ecd6c467..2d05c96919d61 100644 --- a/pkgs/tools/misc/kronometer/default.nix +++ b/pkgs/tools/misc/kronometer/default.nix @@ -18,11 +18,11 @@ mkDerivation rec { sha256 = "sha256-dbnhom8PRo0Bay3DzS2P0xQSrJaMXD51UadQL3z6xHY="; }; - 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/krunner-translator/default.nix b/pkgs/tools/misc/krunner-translator/default.nix index ce20c400f5b95..bedc82c09fd62 100644 --- a/pkgs/tools/misc/krunner-translator/default.nix +++ b/pkgs/tools/misc/krunner-translator/default.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { substituteInPlace src/translateShellProcess.cpp --replace "start(\"trans\", arguments);" "start(\"${translate-shell}/bin/trans\", arguments);" ''; - meta = with lib; { + meta = { description = "Plugin for KRunner which integrates a translator, supports Google Translate, Bing Translator, youdao and Baidu Fanyi"; homepage = "https://github.com/naraesk/krunner-translator"; - license = licenses.gpl3; - maintainers = with maintainers; [ pongo1231 ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ pongo1231 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/misc/lice/default.nix b/pkgs/tools/misc/lice/default.nix index 0c41956f51b5f..e75646adeb041 100644 --- a/pkgs/tools/misc/lice/default.nix +++ b/pkgs/tools/misc/lice/default.nix @@ -18,12 +18,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/lighthouse-steamvr/default.nix b/pkgs/tools/misc/lighthouse-steamvr/default.nix index f614301a010c0..94ee085e9b25d 100644 --- a/pkgs/tools/misc/lighthouse-steamvr/default.nix +++ b/pkgs/tools/misc/lighthouse-steamvr/default.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { buildInputs = [ dbus ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ AppKit ]; - 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/tools/misc/logstash/contrib.nix b/pkgs/tools/misc/logstash/contrib.nix index a6469d830b765..1c9fabfa05714 100644 --- a/pkgs/tools/misc/logstash/contrib.nix +++ b/pkgs/tools/misc/logstash/contrib.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Community-maintained logstash plugins"; homepage = "https://github.com/elasticsearch/logstash-contrib"; license = lib.licenses.asl20; diff --git a/pkgs/tools/misc/lolcat/default.nix b/pkgs/tools/misc/lolcat/default.nix index b91c5c9967eea..b875f8d4c4d99 100644 --- a/pkgs/tools/misc/lolcat/default.nix +++ b/pkgs/tools/misc/lolcat/default.nix @@ -11,11 +11,11 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "lolcat"; - meta = with lib; { + meta = { description = "Rainbow version of cat"; homepage = "https://github.com/busyloop/lolcat"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ StillerHarpo manveru nicknovitski diff --git a/pkgs/tools/misc/lorri/default.nix b/pkgs/tools/misc/lorri/default.nix index a30f368ba76a1..db9154c545a16 100644 --- a/pkgs/tools/misc/lorri/default.nix +++ b/pkgs/tools/misc/lorri/default.nix @@ -71,11 +71,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/tools/misc/minicom/default.nix b/pkgs/tools/misc/minicom/default.nix index f953f57cef2b1..ad3c98d0244ea 100644 --- a/pkgs/tools/misc/minicom/default.nix +++ b/pkgs/tools/misc/minicom/default.nix @@ -58,16 +58,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/tools/misc/moreutils/default.nix b/pkgs/tools/misc/moreutils/default.nix index e4b6f639a055c..79e9fadd32a70 100644 --- a/pkgs/tools/misc/moreutils/default.nix +++ b/pkgs/tools/misc/moreutils/default.nix @@ -56,14 +56,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/mpremote/default.nix b/pkgs/tools/misc/mpremote/default.nix index 20a4954a718e1..959c8626366be 100644 --- a/pkgs/tools/misc/mpremote/default.nix +++ b/pkgs/tools/misc/mpremote/default.nix @@ -33,12 +33,12 @@ buildPythonApplication rec { pythonImportsCheck = [ "mpremote" ]; - meta = with lib; { + meta = { description = "Integrated set of utilities to remotely interact with and automate a MicroPython device over a serial connection"; homepage = "https://github.com/micropython/micropython/blob/master/tools/mpremote/README.md"; - platforms = platforms.unix; - license = licenses.mit; - maintainers = with maintainers; [ _999eagle ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ _999eagle ]; mainProgram = "mpremote"; }; } diff --git a/pkgs/tools/misc/mpy-utils/default.nix b/pkgs/tools/misc/mpy-utils/default.nix index c971d272ec445..58ba11890da2c 100644 --- a/pkgs/tools/misc/mpy-utils/default.nix +++ b/pkgs/tools/misc/mpy-utils/default.nix @@ -21,11 +21,11 @@ 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/tools/misc/ncdu/1.nix b/pkgs/tools/misc/ncdu/1.nix index fde4411d393c8..4d4fbe2e5bc31 100644 --- a/pkgs/tools/misc/ncdu/1.nix +++ b/pkgs/tools/misc/ncdu/1.nix @@ -16,12 +16,12 @@ stdenv.mkDerivation rec { buildInputs = [ ncurses ]; - meta = with lib; { + meta = { description = "Disk usage analyzer with an ncurses interface"; homepage = "https://dev.yorhel.nl/ncdu"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.mit; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "ncdu"; }; } diff --git a/pkgs/tools/misc/ntfy-sh/default.nix b/pkgs/tools/misc/ntfy-sh/default.nix index b4601e2f365ac..31586c27d5997 100644 --- a/pkgs/tools/misc/ntfy-sh/default.nix +++ b/pkgs/tools/misc/ntfy-sh/default.nix @@ -70,11 +70,11 @@ buildGoModule rec { tests.ntfy-sh = nixosTests.ntfy-sh; }; - meta = with lib; { + meta = { description = "Send push notifications to your phone or desktop via PUT/POST"; homepage = "https://ntfy.sh"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arjan-s fpletz ]; diff --git a/pkgs/tools/misc/ntfy/default.nix b/pkgs/tools/misc/ntfy/default.nix index c79ca23e1b5e6..330eb4a0fca8e 100644 --- a/pkgs/tools/misc/ntfy/default.nix +++ b/pkgs/tools/misc/ntfy/default.nix @@ -99,11 +99,11 @@ python.pkgs.buildPythonApplication rec { HOME=$(mktemp -d) ${python.interpreter} setup.py test ''; - meta = with lib; { + meta = { description = "Utility for sending notifications, on demand and when commands finish"; homepage = "http://ntfy.rtfd.org/"; - license = licenses.gpl3; - maintainers = with maintainers; [ kamilchm ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ kamilchm ]; mainProgram = "ntfy"; }; } diff --git a/pkgs/tools/misc/ntfy/webpush.nix b/pkgs/tools/misc/ntfy/webpush.nix index 242a450524058..cd9903189c93d 100644 --- a/pkgs/tools/misc/ntfy/webpush.nix +++ b/pkgs/tools/misc/ntfy/webpush.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { # no tests, just a script doCheck = false; - meta = with lib; { + meta = { description = "cloudbell webpush notification support for ntfy"; homepage = "https://dschep.github.io/ntfy-webpush/"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/tools/misc/ocs-url/default.nix b/pkgs/tools/misc/ocs-url/default.nix index 968b3bd5692e4..85095945ed938 100644 --- a/pkgs/tools/misc/ocs-url/default.nix +++ b/pkgs/tools/misc/ocs-url/default.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { 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/tools/misc/octofetch/default.nix b/pkgs/tools/misc/octofetch/default.nix index cfee7e5caef56..884d218d0bee0 100644 --- a/pkgs/tools/misc/octofetch/default.nix +++ b/pkgs/tools/misc/octofetch/default.nix @@ -27,10 +27,10 @@ rustPlatform.buildRustPackage rec { lib.optionals stdenv.hostPlatform.isLinux [ openssl ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ Security ]; - 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/tools/misc/online-judge-template-generator/default.nix b/pkgs/tools/misc/online-judge-template-generator/default.nix index 5eb3cd93224a9..79b0dc19c1f88 100644 --- a/pkgs/tools/misc/online-judge-template-generator/default.nix +++ b/pkgs/tools/misc/online-judge-template-generator/default.nix @@ -43,10 +43,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/owofetch/default.nix b/pkgs/tools/misc/owofetch/default.nix index 3de70679c933e..fcbc016fe4274 100644 --- a/pkgs/tools/misc/owofetch/default.nix +++ b/pkgs/tools/misc/owofetch/default.nix @@ -26,12 +26,12 @@ rustPlatform.buildRustPackage rec { DiskArbitration ]; - 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/tools/misc/pandoc-acro/default.nix b/pkgs/tools/misc/pandoc-acro/default.nix index 429d870cbb3e1..e70fac9b09b40 100644 --- a/pkgs/tools/misc/pandoc-acro/default.nix +++ b/pkgs/tools/misc/pandoc-acro/default.nix @@ -60,11 +60,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 cea1141753018..769dc3045aecf 100644 --- a/pkgs/tools/misc/pandoc-drawio-filter/default.nix +++ b/pkgs/tools/misc/pandoc-drawio-filter/default.nix @@ -44,11 +44,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 0947d6769aac9..30124ea4b11a2 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 226405ba1429c..ee38652cd89d8 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 f075776a4b0f0..f14d1f96ce2ed 100644 --- a/pkgs/tools/misc/pandoc-imagine/default.nix +++ b/pkgs/tools/misc/pandoc-imagine/default.nix @@ -25,14 +25,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 f35f88fa9e30a..d9abaefd06d8a 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-plantuml-filter/default.nix b/pkgs/tools/misc/pandoc-plantuml-filter/default.nix index d90cb0e52f973..4160599f253fc 100644 --- a/pkgs/tools/misc/pandoc-plantuml-filter/default.nix +++ b/pkgs/tools/misc/pandoc-plantuml-filter/default.nix @@ -18,11 +18,11 @@ buildPythonApplication rec { pandocfilters ]; - meta = with lib; { + meta = { homepage = "https://github.com/timofurrer/pandoc-plantuml-filter"; description = "Pandoc filter which converts PlantUML code blocks to PlantUML images"; - license = licenses.mit; - maintainers = with maintainers; [ cmcdragonkai ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cmcdragonkai ]; mainProgram = "pandoc-plantuml"; }; } diff --git a/pkgs/tools/misc/pandoc-secnos/default.nix b/pkgs/tools/misc/pandoc-secnos/default.nix index d76e2d905fe99..87245face55a5 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 eede87b92e19b..24009a29ec14d 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/parcellite/default.nix b/pkgs/tools/misc/parcellite/default.nix index a39b4d9f8ac88..8d15dd8a93d4b 100644 --- a/pkgs/tools/misc/parcellite/default.nix +++ b/pkgs/tools/misc/parcellite/default.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { gappsWrapperArgs+=(--prefix PATH : "${which}/bin:${xdotool}/bin") ''; - meta = with lib; { + meta = { description = "Lightweight GTK clipboard manager"; homepage = "https://github.com/rickyrockrat/parcellite"; - license = licenses.gpl3Plus; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; mainProgram = "parcellite"; }; } diff --git a/pkgs/tools/misc/pdd/default.nix b/pkgs/tools/misc/pdd/default.nix index 6946aa3728a4d..854dd8e964c71 100644 --- a/pkgs/tools/misc/pdd/default.nix +++ b/pkgs/tools/misc/pdd/default.nix @@ -22,7 +22,7 @@ buildPythonApplication rec { installFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { homepage = "https://github.com/jarun/pdd"; description = "Tiny date, time diff calculator"; longDescription = '' @@ -34,7 +34,7 @@ buildPythonApplication rec { timezone. ''; maintainers = [ ]; - license = licenses.gpl3; + license = lib.licenses.gpl3; mainProgram = "pdd"; }; } diff --git a/pkgs/tools/misc/powerline-rs/default.nix b/pkgs/tools/misc/powerline-rs/default.nix index fdffb8829532a..d126e1b20b262 100644 --- a/pkgs/tools/misc/powerline-rs/default.nix +++ b/pkgs/tools/misc/powerline-rs/default.nix @@ -49,11 +49,11 @@ rustPlatform.buildRustPackage rec { install -Dm 755 "${COMPLETION_OUT}/powerline-rs.fish" "$out/share/fish/vendor_completions.d/powerline-rs" ''; - meta = with lib; { + meta = { description = "powerline-shell rewritten in Rust, inspired by powerline-go"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "powerline-rs"; }; } diff --git a/pkgs/tools/misc/pws/default.nix b/pkgs/tools/misc/pws/default.nix index 9486166946a88..0b857aaee739b 100644 --- a/pkgs/tools/misc/pws/default.nix +++ b/pkgs/tools/misc/pws/default.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/tools/misc/qjoypad/default.nix b/pkgs/tools/misc/qjoypad/default.nix index e26bcf6d403c3..138f61b80576c 100644 --- a/pkgs/tools/misc/qjoypad/default.nix +++ b/pkgs/tools/misc/qjoypad/default.nix @@ -33,7 +33,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 @@ -53,8 +53,8 @@ mkDerivation rec { ''; homepage = "https://github.com/panzi/qjoypad/"; license = lib.licenses.gpl2Only; - maintainers = with maintainers; [ astsmtl ]; - platforms = with platforms; linux; + maintainers = with lib.maintainers; [ astsmtl ]; + platforms = with lib.platforms; linux; mainProgram = "qjoypad"; }; } diff --git a/pkgs/tools/misc/qmake2cmake/default.nix b/pkgs/tools/misc/qmake2cmake/default.nix index e6507c8a5df68..5886f6cc14b43 100644 --- a/pkgs/tools/misc/qmake2cmake/default.nix +++ b/pkgs/tools/misc/qmake2cmake/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { export HOME=$(mktemp -d) ''; - meta = with lib; { + meta = { description = "Tool to convert qmake .pro files to CMakeLists.txt"; homepage = "https://wiki.qt.io/Qmake2cmake"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ wegank ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ wegank ]; }; } diff --git a/pkgs/tools/misc/qt5ct/default.nix b/pkgs/tools/misc/qt5ct/default.nix index 33c02241a4ad2..5c869d08636a4 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/qt6ct/default.nix b/pkgs/tools/misc/qt6ct/default.nix index 1a6db96d0023d..a38f4989a944f 100644 --- a/pkgs/tools/misc/qt6ct/default.nix +++ b/pkgs/tools/misc/qt6ct/default.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation (finalAttrs: { "LIBDIR=${placeholder "out"}/lib" ]; - meta = with lib; { + meta = { description = "Qt6 Configuration Tool"; homepage = "https://github.com/trialuser02/qt6ct"; - platforms = platforms.linux; - license = licenses.bsd2; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ Flakebi Scrumplex ]; diff --git a/pkgs/tools/misc/r3ctl/default.nix b/pkgs/tools/misc/r3ctl/default.nix index 5e315286c4279..892b618e44f96 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 5b39116a42cfe..d9156426e5e24 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/riemann-tools/default.nix b/pkgs/tools/misc/riemann-tools/default.nix index b864e407c8ae8..2a0d47172b78f 100644 --- a/pkgs/tools/misc/riemann-tools/default.nix +++ b/pkgs/tools/misc/riemann-tools/default.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/tools/misc/rmlint/default.nix b/pkgs/tools/misc/rmlint/default.nix index a32223f9df2f7..acf9dc10c0645 100644 --- a/pkgs/tools/misc/rmlint/default.nix +++ b/pkgs/tools/misc/rmlint/default.nix @@ -88,12 +88,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 6dfe9d0a0a634..9b221367de132 100644 --- a/pkgs/tools/misc/scfbuild/default.nix +++ b/pkgs/tools/misc/scfbuild/default.nix @@ -39,11 +39,11 @@ buildPythonApplication { runHook postInstall ''; - meta = with lib; { + meta = { description = "SVGinOT color font builder"; homepage = "https://github.com/13rac1/scfbuild"; - license = licenses.gpl3; - maintainers = with maintainers; [ abbradar ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ abbradar ]; mainProgram = "scfbuild"; }; } diff --git a/pkgs/tools/misc/seaborn-data/default.nix b/pkgs/tools/misc/seaborn-data/default.nix index 555c9991b63be..a4449e9cce9d2 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/serverspec/default.nix b/pkgs/tools/misc/serverspec/default.nix index 8c9e405bcecd3..8b735ef8138a7 100644 --- a/pkgs/tools/misc/serverspec/default.nix +++ b/pkgs/tools/misc/serverspec/default.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/tools/misc/shadowenv/default.nix b/pkgs/tools/misc/shadowenv/default.nix index fd577be3a88fb..1b0617e24b1d5 100644 --- a/pkgs/tools/misc/shadowenv/default.nix +++ b/pkgs/tools/misc/shadowenv/default.nix @@ -36,10 +36,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/tools/misc/sheldon/default.nix b/pkgs/tools/misc/sheldon/default.nix index c827afe52914f..81d59fe3785e9 100644 --- a/pkgs/tools/misc/sheldon/default.nix +++ b/pkgs/tools/misc/sheldon/default.nix @@ -65,12 +65,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/tools/misc/starship/default.nix b/pkgs/tools/misc/starship/default.nix index 2de7e22032d7b..22799f232d3fb 100644 --- a/pkgs/tools/misc/starship/default.nix +++ b/pkgs/tools/misc/starship/default.nix @@ -69,11 +69,11 @@ rustPlatform.buildRustPackage rec { inherit (nixosTests) starship; }; - meta = with lib; { + meta = { description = "Minimal, blazing fast, and extremely customizable prompt for any shell"; homepage = "https://starship.rs"; - license = licenses.isc; - maintainers = with maintainers; [ + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ danth davidtwco Br1ght0ne diff --git a/pkgs/tools/misc/synth/default.nix b/pkgs/tools/misc/synth/default.nix index d52c72be5de3a..b69f703aaa3e0 100644 --- a/pkgs/tools/misc/synth/default.nix +++ b/pkgs/tools/misc/synth/default.nix @@ -33,10 +33,10 @@ rustPlatform.buildRustPackage rec { # requires unstable rust features RUSTC_BOOTSTRAP = 1; - meta = with lib; { + meta = { description = "Tool for generating realistic data using a declarative data model"; homepage = "https://github.com/getsynth/synth"; - license = licenses.asl20; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/tools/misc/t/default.nix b/pkgs/tools/misc/t/default.nix index 2662a072b7ec1..ca029d36effe8 100644 --- a/pkgs/tools/misc/t/default.nix +++ b/pkgs/tools/misc/t/default.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/tools/misc/tab-rs/default.nix b/pkgs/tools/misc/tab-rs/default.nix index c6698c446bdba..646da2dd02d7b 100644 --- a/pkgs/tools/misc/tab-rs/default.nix +++ b/pkgs/tools/misc/tab-rs/default.nix @@ -24,10 +24,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/tools/misc/td/default.nix b/pkgs/tools/misc/td/default.nix index 9d7edd8f2b88a..94a237a6c5daa 100644 --- a/pkgs/tools/misc/td/default.nix +++ b/pkgs/tools/misc/td/default.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/tools/misc/teamocil/default.nix b/pkgs/tools/misc/teamocil/default.nix index 8dd13b640cca0..e7232fd32b37f 100644 --- a/pkgs/tools/misc/teamocil/default.nix +++ b/pkgs/tools/misc/teamocil/default.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/tools/misc/timidity/default.nix b/pkgs/tools/misc/timidity/default.nix index a624efc237599..9357087cb48f5 100644 --- a/pkgs/tools/misc/timidity/default.nix +++ b/pkgs/tools/misc/timidity/default.nix @@ -120,12 +120,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/tools/misc/tmux-sessionizer/default.nix b/pkgs/tools/misc/tmux-sessionizer/default.nix index a68cf47fb86c8..da8f96f621cf3 100644 --- a/pkgs/tools/misc/tmux-sessionizer/default.nix +++ b/pkgs/tools/misc/tmux-sessionizer/default.nix @@ -50,11 +50,11 @@ rustPlatform.buildRustPackage { --zsh <($out/bin/tms --generate zsh) ''; - 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/tools/misc/torrenttools/default.nix b/pkgs/tools/misc/torrenttools/default.nix index 27e7eae1bd45f..2c81929dcd0c9 100644 --- a/pkgs/tools/misc/torrenttools/default.nix +++ b/pkgs/tools/misc/torrenttools/default.nix @@ -94,12 +94,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "CLI tool for creating, inspecting and modifying BitTorrent metafiles"; homepage = "https://github.com/fbdtemme/torrenttools"; - license = licenses.mit; - maintainers = with maintainers; [ azahi ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ azahi ]; + platforms = lib.platforms.unix; mainProgram = "torrenttools"; }; } diff --git a/pkgs/tools/misc/toybox/default.nix b/pkgs/tools/misc/toybox/default.nix index 37695fb066a83..24d353ea6f31c 100644 --- a/pkgs/tools/misc/toybox/default.nix +++ b/pkgs/tools/misc/toybox/default.nix @@ -77,12 +77,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/tools/misc/trackma/default.nix b/pkgs/tools/misc/trackma/default.nix index 69f91e5af2eb5..a34df354865a1 100644 --- a/pkgs/tools/misc/trackma/default.nix +++ b/pkgs/tools/misc/trackma/default.nix @@ -109,11 +109,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/tools/misc/tremor-rs/default.nix b/pkgs/tools/misc/tremor-rs/default.nix index 897fe98394e61..f6249d403a5f6 100644 --- a/pkgs/tools/misc/tremor-rs/default.nix +++ b/pkgs/tools/misc/tremor-rs/default.nix @@ -90,14 +90,14 @@ rustPlatform.buildRustPackage rec { cargoBuildFlags = [ "-p tremor-cli" ]; - meta = with lib; { + meta = { description = '' Early stage event processing system for unstructured data with rich support for structural pattern matching, filtering and transformation ''; homepage = "https://www.tremor.rs/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ humancalico happysalada ]; diff --git a/pkgs/tools/misc/tremor-rs/ls.nix b/pkgs/tools/misc/tremor-rs/ls.nix index 990c6e38a814b..7f1ca83cdf954 100644 --- a/pkgs/tools/misc/tremor-rs/ls.nix +++ b/pkgs/tools/misc/tremor-rs/ls.nix @@ -19,10 +19,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-/RKwmslhMm30QxviVV7HthDHSmTmaGZn1hdt6bNF3d4="; - meta = with lib; { + meta = { description = "Tremor Language Server (Trill)"; homepage = "https://www.tremor.rs/docs/next/getting-started/tooling"; - license = licenses.asl20; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ happysalada ]; }; } diff --git a/pkgs/tools/misc/ttfautohint/default.nix b/pkgs/tools/misc/ttfautohint/default.nix index 711e62d88febc..7a20d810a67b8 100644 --- a/pkgs/tools/misc/ttfautohint/default.nix +++ b/pkgs/tools/misc/ttfautohint/default.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = with lib; { + meta = { description = "Automatic hinter for TrueType fonts"; mainProgram = "ttfautohint"; longDescription = '' @@ -56,9 +56,9 @@ stdenv.mkDerivation rec { information given by FreeType’s auto-hinting module. ''; homepage = "https://www.freetype.org/ttfautohint"; - license = licenses.gpl2Plus; # or the FreeType License (BSD + advertising clause) + license = lib.licenses.gpl2Plus; # or the FreeType License (BSD + advertising clause) maintainers = [ ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/misc/twurl/default.nix b/pkgs/tools/misc/twurl/default.nix index 2587d6f0b2c04..dfec771f4f17e 100644 --- a/pkgs/tools/misc/twurl/default.nix +++ b/pkgs/tools/misc/twurl/default.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 = "MIT"; - maintainers = with maintainers; [ brecht ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ brecht ]; + platforms = lib.platforms.unix; mainProgram = "twurl"; }; } diff --git a/pkgs/tools/misc/ultrastar-creator/default.nix b/pkgs/tools/misc/ultrastar-creator/default.nix index 05772fba6bec1..2af29bf9ae836 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 8017c5653531c..870ac9b4987a4 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/valeronoi/default.nix b/pkgs/tools/misc/valeronoi/default.nix index 9b43a8387dd7c..0b8a1969a484b 100644 --- a/pkgs/tools/misc/valeronoi/default.nix +++ b/pkgs/tools/misc/valeronoi/default.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/ccoors/Valeronoi/"; description = "WiFi mapping companion app for Valetudo"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ nova-madeline maeve ]; diff --git a/pkgs/tools/misc/veikk-linux-driver-gui/default.nix b/pkgs/tools/misc/veikk-linux-driver-gui/default.nix index 8069e7cec5d1c..e97e5d2c78429 100644 --- a/pkgs/tools/misc/veikk-linux-driver-gui/default.nix +++ b/pkgs/tools/misc/veikk-linux-driver-gui/default.nix @@ -27,12 +27,12 @@ mkDerivation rec { cp veikk-linux-driver-gui $out/bin ''; - meta = with lib; { + meta = { description = "Configuration tool for the VEIKK Linux driver"; homepage = "https://github.com/jlam55555/veikk-linux-driver-gui/"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = with maintainers; [ nicbk ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ nicbk ]; mainProgram = "veikk-linux-driver-gui"; }; } diff --git a/pkgs/tools/misc/vimpager/build.nix b/pkgs/tools/misc/vimpager/build.nix index f3e146fd14f13..d8dfc0dd3c85d 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 eff91e14f940d..9ad29db381521 100644 --- a/pkgs/tools/misc/vimwiki-markdown/default.nix +++ b/pkgs/tools/misc/vimwiki-markdown/default.nix @@ -20,11 +20,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/vrc-get/default.nix b/pkgs/tools/misc/vrc-get/default.nix index ec5c92ee9012c..a98d170efc362 100644 --- a/pkgs/tools/misc/vrc-get/default.nix +++ b/pkgs/tools/misc/vrc-get/default.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/tools/misc/wagyu/default.nix b/pkgs/tools/misc/wagyu/default.nix index d95c29509be43..681dac00b307e 100644 --- a/pkgs/tools/misc/wagyu/default.nix +++ b/pkgs/tools/misc/wagyu/default.nix @@ -23,14 +23,14 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security; - 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/tools/misc/watchexec/default.nix b/pkgs/tools/misc/watchexec/default.nix index c8a51356f0154..29a97413518f3 100644 --- a/pkgs/tools/misc/watchexec/default.nix +++ b/pkgs/tools/misc/watchexec/default.nix @@ -44,11 +44,11 @@ rustPlatform.buildRustPackage rec { installShellCompletion --zsh --name _watchexec completions/zsh ''; - meta = with lib; { + meta = { description = "Executes commands in response to file modifications"; homepage = "https://watchexec.github.io/"; - license = with licenses; [ asl20 ]; - maintainers = [ maintainers.michalrus ]; + license = with lib.licenses; [ asl20 ]; + maintainers = [ lib.maintainers.michalrus ]; mainProgram = "watchexec"; }; } diff --git a/pkgs/tools/misc/wyrd/default.nix b/pkgs/tools/misc/wyrd/default.nix index 75598abbfd116..d6d58adbb809e 100644 --- a/pkgs/tools/misc/wyrd/default.nix +++ b/pkgs/tools/misc/wyrd/default.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { --prefix PATH : "${lib.makeBinPath [ remind ]}" ''; - meta = with lib; { + meta = { description = "Text-based front-end to Remind"; longDescription = '' Wyrd is a text-based front-end to Remind, a sophisticated @@ -53,9 +53,9 @@ stdenv.mkDerivation rec { ''; homepage = "https://gitlab.com/wyrd-calendar/wyrd"; downloadPage = "https://gitlab.com/wyrd-calendar/wyrd"; - license = licenses.gpl2Only; - maintainers = [ maintainers.prikhi ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = [ lib.maintainers.prikhi ]; + platforms = lib.platforms.unix; mainProgram = "wyrd"; }; } diff --git a/pkgs/tools/misc/xvfb-run/default.nix b/pkgs/tools/misc/xvfb-run/default.nix index e2c2dc742e4cc..fe4935c1f3c2c 100644 --- a/pkgs/tools/misc/xvfb-run/default.nix +++ b/pkgs/tools/misc/xvfb-run/default.nix @@ -69,11 +69,11 @@ stdenvNoCC.mkDerivation rec { 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 8b05f19e74475..b9a453737bffb 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/yubikey-manager-qt/default.nix b/pkgs/tools/misc/yubikey-manager-qt/default.nix index 9012e9b592792..a8892f9a173b5 100644 --- a/pkgs/tools/misc/yubikey-manager-qt/default.nix +++ b/pkgs/tools/misc/yubikey-manager-qt/default.nix @@ -82,12 +82,12 @@ mkDerivation rec { qtWrapperArgs+=(--prefix PYTHONPATH : "$program_PYTHONPATH") ''; - meta = with lib; { + meta = { description = "Cross-platform application for configuring any YubiKey over all USB interfaces"; homepage = "https://developers.yubico.com/yubikey-manager-qt/"; - license = licenses.bsd2; - maintainers = [ maintainers.cbley ]; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.cbley ]; mainProgram = "ykman-gui"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/misc/yubikey-personalization-gui/default.nix b/pkgs/tools/misc/yubikey-personalization-gui/default.nix index 1698737f20009..68c8e165f2f33 100644 --- a/pkgs/tools/misc/yubikey-personalization-gui/default.nix +++ b/pkgs/tools/misc/yubikey-personalization-gui/default.nix @@ -51,12 +51,12 @@ mkDerivation rec { done ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; homepage = "https://developers.yubico.com/yubikey-personalization-gui"; description = "QT based cross-platform utility designed to facilitate reconfiguration of the Yubikey"; - license = licenses.bsd2; - platforms = platforms.unix; + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; mainProgram = "yubikey-personalization-gui"; }; } diff --git a/pkgs/tools/networking/acme-client/default.nix b/pkgs/tools/networking/acme-client/default.nix index 539c93807448b..6523c9eb9ac63 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/anevicon/default.nix b/pkgs/tools/networking/anevicon/default.nix index 5aaec8d47fd6d..92d98ab23181a 100644 --- a/pkgs/tools/networking/anevicon/default.nix +++ b/pkgs/tools/networking/anevicon/default.nix @@ -38,11 +38,11 @@ rustPlatform.buildRustPackage rec { # Tries to send large UDP packets that Darwin rejects. doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "UDP-based load generator"; homepage = "https://github.com/rozgo/anevicon"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "anevicon"; }; } diff --git a/pkgs/tools/networking/apc-temp-fetch/default.nix b/pkgs/tools/networking/apc-temp-fetch/default.nix index b25672dd19e17..e960e0de67d3b 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 62eac3d811f3e..6d8ca301ee029 100644 --- a/pkgs/tools/networking/axel/default.nix +++ b/pkgs/tools/networking/axel/default.nix @@ -40,12 +40,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/bore-cli/default.nix b/pkgs/tools/networking/bore-cli/default.nix index c680a5d9b3808..93764c4e9f0a8 100644 --- a/pkgs/tools/networking/bore-cli/default.nix +++ b/pkgs/tools/networking/bore-cli/default.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { ]; # 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/tools/networking/bore/default.nix b/pkgs/tools/networking/bore/default.nix index e74ea0a5fae7c..43909b826d89c 100644 --- a/pkgs/tools/networking/bore/default.nix +++ b/pkgs/tools/networking/bore/default.nix @@ -55,10 +55,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/tools/networking/cmst/default.nix b/pkgs/tools/networking/cmst/default.nix index 54189d2083318..bf5b37a4e0981 100644 --- a/pkgs/tools/networking/cmst/default.nix +++ b/pkgs/tools/networking/cmst/default.nix @@ -36,15 +36,15 @@ mkDerivation rec { rev-prefix = "${pname}-"; }; - meta = with lib; { + meta = { description = "QT GUI for Connman with system tray icon"; mainProgram = "cmst"; homepage = "https://github.com/andrew-bibb/cmst"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ matejc romildo ]; - platforms = platforms.linux; - license = licenses.mit; + platforms = lib.platforms.linux; + license = lib.licenses.mit; }; } diff --git a/pkgs/tools/networking/cocom/default.nix b/pkgs/tools/networking/cocom/default.nix index f3ae01d96eb96..25666ba4ffea5 100644 --- a/pkgs/tools/networking/cocom/default.nix +++ b/pkgs/tools/networking/cocom/default.nix @@ -24,11 +24,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/tools/networking/curl-impersonate/firefox/default.nix b/pkgs/tools/networking/curl-impersonate/firefox/default.nix index 73b4458ec8db8..1634d9087440d 100644 --- a/pkgs/tools/networking/curl-impersonate/firefox/default.nix +++ b/pkgs/tools/networking/curl-impersonate/firefox/default.nix @@ -184,15 +184,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/tools/networking/dnschef/default.nix b/pkgs/tools/networking/dnschef/default.nix index 598126e9aa722..73b461aebfb5c 100644 --- a/pkgs/tools/networking/dnschef/default.nix +++ b/pkgs/tools/networking/dnschef/default.nix @@ -23,11 +23,11 @@ buildPythonApplication rec { 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/dnstracer/default.nix b/pkgs/tools/networking/dnstracer/default.nix index e182a086771d8..6dd65a9767e8b 100644 --- a/pkgs/tools/networking/dnstracer/default.nix +++ b/pkgs/tools/networking/dnstracer/default.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/tools/networking/dogdns/default.nix b/pkgs/tools/networking/dogdns/default.nix index 17d994fe2ae58..4a9b9a6e37231 100644 --- a/pkgs/tools/networking/dogdns/default.nix +++ b/pkgs/tools/networking/dogdns/default.nix @@ -67,11 +67,11 @@ rustPlatform.buildRustPackage rec { installManPage ./target/man/*.1 ''; - meta = with lib; { + meta = { description = "Command-line DNS client"; homepage = "https://dns.lookup.dog"; - license = licenses.eupl12; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.eupl12; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "dog"; }; } diff --git a/pkgs/tools/networking/drill/default.nix b/pkgs/tools/networking/drill/default.nix index 3679932ff225f..000d15522af47 100644 --- a/pkgs/tools/networking/drill/default.nix +++ b/pkgs/tools/networking/drill/default.nix @@ -36,11 +36,11 @@ rustPlatform.buildRustPackage rec { Security ]; - meta = with lib; { + meta = { description = "HTTP load testing application inspired by Ansible syntax"; homepage = "https://github.com/fcsonline/drill"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ Br1ght0ne ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ Br1ght0ne ]; mainProgram = "drill"; }; } diff --git a/pkgs/tools/networking/ebpf-verifier/default.nix b/pkgs/tools/networking/ebpf-verifier/default.nix index cd31356411c23..549b0bbb6106d 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/fast-ssh/default.nix b/pkgs/tools/networking/fast-ssh/default.nix index 2da8a048d6f42..90b262dcc166a 100644 --- a/pkgs/tools/networking/fast-ssh/default.nix +++ b/pkgs/tools/networking/fast-ssh/default.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security; - 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/tools/networking/flannel/plugin.nix b/pkgs/tools/networking/flannel/plugin.nix index 1d986666272e1..9432b7930b44b 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 = "flannel CNI plugin"; 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 42b9d4ed05223..4bd245318c970 100644 --- a/pkgs/tools/networking/gandi-cli/default.nix +++ b/pkgs/tools/networking/gandi-cli/default.nix @@ -30,11 +30,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 a80f06768022c..ffd2cc522847b 100644 --- a/pkgs/tools/networking/globalprotect-openconnect/default.nix +++ b/pkgs/tools/networking/globalprotect-openconnect/default.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { --replace /etc/gpservice $out/etc/gpservice; ''; - 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 1be8d6d62a6a0..2ccf6bb68a176 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/gp-saml-gui/default.nix b/pkgs/tools/networking/gp-saml-gui/default.nix index d0347a62e785f..98ba098382947 100644 --- a/pkgs/tools/networking/gp-saml-gui/default.nix +++ b/pkgs/tools/networking/gp-saml-gui/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { ) ''; - meta = with lib; { + meta = { description = "Interactively authenticate to GlobalProtect VPNs that require SAML"; mainProgram = "gp-saml-gui"; homepage = "https://github.com/dlenski/gp-saml-gui"; - license = licenses.gpl3Only; - maintainers = [ maintainers.pallix ]; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.pallix ]; }; } diff --git a/pkgs/tools/networking/hue-cli/default.nix b/pkgs/tools/networking/hue-cli/default.nix index afb732a32e52d..20c24f6178d67 100644 --- a/pkgs/tools/networking/hue-cli/default.nix +++ b/pkgs/tools/networking/hue-cli/default.nix @@ -11,12 +11,12 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "hue-cli"; - meta = with lib; { + meta = { description = "Command line interface for controlling Philips Hue system's lights and bridge"; homepage = "https://github.com/birkirb/hue-cli"; - license = licenses.mit; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ manveru nicknovitski ]; diff --git a/pkgs/tools/networking/knock/package.nix b/pkgs/tools/networking/knock/package.nix index c7b591c7939d3..26fc0dbcee8ce 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/lldpd/default.nix b/pkgs/tools/networking/lldpd/default.nix index 042fd3c652346..906b12e018ef9 100644 --- a/pkgs/tools/networking/lldpd/default.nix +++ b/pkgs/tools/networking/lldpd/default.nix @@ -58,11 +58,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/tools/networking/miniupnpd/default.nix b/pkgs/tools/networking/miniupnpd/default.nix index fea5ea98d2001..5da35a1a1e5c8 100644 --- a/pkgs/tools/networking/miniupnpd/default.nix +++ b/pkgs/tools/networking/miniupnpd/default.nix @@ -112,11 +112,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/mozwire/default.nix b/pkgs/tools/networking/mozwire/default.nix index 65887a39bac2e..378d5cd64c40a 100644 --- a/pkgs/tools/networking/mozwire/default.nix +++ b/pkgs/tools/networking/mozwire/default.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-YXVH7kx5CiurTeXiphjDgcYxxovKtTF3Q9y/XOyVPUA="; - 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/tools/networking/namespaced-openvpn/default.nix b/pkgs/tools/networking/namespaced-openvpn/default.nix index ec48d87230492..ce74cd82937ad 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/networkd-notify/default.nix b/pkgs/tools/networking/networkd-notify/default.nix index 316ef60a5672a..21c642a349b5b 100644 --- a/pkgs/tools/networking/networkd-notify/default.nix +++ b/pkgs/tools/networking/networkd-notify/default.nix @@ -52,12 +52,12 @@ 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/tools/networking/networkmanager/libnma/default.nix b/pkgs/tools/networking/networkmanager/libnma/default.nix index 84331343c09a4..78fec709d0af8 100644 --- a/pkgs/tools/networking/networkmanager/libnma/default.nix +++ b/pkgs/tools/networking/networkmanager/libnma/default.nix @@ -114,11 +114,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+ - maintainers = teams.gnome.members; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; # Mix of GPL and LPGL 2+ + maintainers = lib.teams.gnome.members; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/networking/networkmanager/tray.nix b/pkgs/tools/networking/networkmanager/tray.nix index 1e1882c35cf90..5071301b1f90f 100644 --- a/pkgs/tools/networking/networkmanager/tray.nix +++ b/pkgs/tools/networking/networkmanager/tray.nix @@ -39,12 +39,12 @@ mkDerivation rec { modemmanager-qt ]; - meta = with lib; { + meta = { description = "Simple Network Manager frontend written in Qt"; mainProgram = "nm-tray"; homepage = "https://github.com/palinek/nm-tray"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ dtzWill ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dtzWill ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/networking/nxdomain/default.nix b/pkgs/tools/networking/nxdomain/default.nix index 8c5c5897296ea..4c039bfd7b927 100644 --- a/pkgs/tools/networking/nxdomain/default.nix +++ b/pkgs/tools/networking/nxdomain/default.nix @@ -25,12 +25,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/ockam/default.nix b/pkgs/tools/networking/ockam/default.nix index c03b1006e20b4..97bc95f4f85f8 100644 --- a/pkgs/tools/networking/ockam/default.nix +++ b/pkgs/tools/networking/ockam/default.nix @@ -46,10 +46,10 @@ rustPlatform.buildRustPackage { # too many tests fail for now doCheck = false; - 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/tools/networking/openconnect/common.nix b/pkgs/tools/networking/openconnect/common.nix index 1c432ee7493d3..4287d9b078bfa 100644 --- a/pkgs/tools/networking/openconnect/common.nix +++ b/pkgs/tools/networking/openconnect/common.nix @@ -58,11 +58,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; [ pradeepchhetri tricktron alyaeanyx diff --git a/pkgs/tools/networking/openvpn/default.nix b/pkgs/tools/networking/openvpn/default.nix index a10eec9cd2cae..b09b15b81fd07 100644 --- a/pkgs/tools/networking/openvpn/default.nix +++ b/pkgs/tools/networking/openvpn/default.nix @@ -69,13 +69,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/update-resolv-conf.nix b/pkgs/tools/networking/openvpn/update-resolv-conf.nix index 4d8adb867e472..4aaea63193a6d 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 = with maintainers; [ abbradar ]; - license = licenses.gpl2Only; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ abbradar ]; + 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 bc0ef08d56c95..51ce93de31aac 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/pingu/default.nix b/pkgs/tools/networking/pingu/default.nix index f2fba66aab865..5ba48460d69ca 100644 --- a/pkgs/tools/networking/pingu/default.nix +++ b/pkgs/tools/networking/pingu/default.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-xn6la6E0C5QASXxNee1Py/rBs4ls9X/ePeg4Q1e2UyU="; - meta = with lib; { + meta = { description = "Ping command implementation in Go but with colorful output and pingu ascii art"; homepage = "https://github.com/sheepla/pingu/"; - license = licenses.mit; - maintainers = with maintainers; [ CactiChameleon9 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ CactiChameleon9 ]; mainProgram = "pingu"; }; } diff --git a/pkgs/tools/networking/privoxy/default.nix b/pkgs/tools/networking/privoxy/default.nix index 5d70b379e6efd..1440c2c41ff70 100644 --- a/pkgs/tools/networking/privoxy/default.nix +++ b/pkgs/tools/networking/privoxy/default.nix @@ -60,13 +60,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/rosenpass/default.nix b/pkgs/tools/networking/rosenpass/default.nix index 1ec285b64a895..0b03485d6dce8 100644 --- a/pkgs/tools/networking/rosenpass/default.nix +++ b/pkgs/tools/networking/rosenpass/default.nix @@ -43,14 +43,14 @@ rustPlatform.buildRustPackage rec { passthru.tests.rosenpass = nixosTests.rosenpass; - meta = with lib; { + meta = { description = "Build post-quantum-secure VPNs with WireGuard"; homepage = "https://rosenpass.eu/"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; - maintainers = with maintainers; [ wucke13 ]; + maintainers = with lib.maintainers; [ wucke13 ]; platforms = [ "aarch64-darwin" "aarch64-linux" diff --git a/pkgs/tools/networking/s3cmd/default.nix b/pkgs/tools/networking/s3cmd/default.nix index 767fc3011fd8d..7c71222aa2158 100644 --- a/pkgs/tools/networking/s3cmd/default.nix +++ b/pkgs/tools/networking/s3cmd/default.nix @@ -24,11 +24,11 @@ buildPythonApplication rec { dontUseSetuptoolsCheck = true; - 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/s3rs/default.nix b/pkgs/tools/networking/s3rs/default.nix index d3714fb56c4b1..856d854a998e0 100644 --- a/pkgs/tools/networking/s3rs/default.nix +++ b/pkgs/tools/networking/s3rs/default.nix @@ -30,11 +30,11 @@ rustPlatform.buildRustPackage rec { ]; buildInputs = [ openssl ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ Security ]; - 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/tools/networking/spoof-mac/default.nix b/pkgs/tools/networking/spoof-mac/default.nix index 7bd2111474466..7b1101abf18ac 100644 --- a/pkgs/tools/networking/spoof-mac/default.nix +++ b/pkgs/tools/networking/spoof-mac/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { 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 2f7093bfb6a47..af4c1627c2286 100644 --- a/pkgs/tools/networking/spoofer/default.nix +++ b/pkgs/tools/networking/spoofer/default.nix @@ -36,7 +36,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 = '' @@ -51,8 +51,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; maintainers = with lib.maintainers; [ leenaars ]; mainProgram = "spoofer-prober"; }; diff --git a/pkgs/tools/networking/suckit/default.nix b/pkgs/tools/networking/suckit/default.nix index f80a34b2a202e..47c4c3cd33f81 100644 --- a/pkgs/tools/networking/suckit/default.nix +++ b/pkgs/tools/networking/suckit/default.nix @@ -31,14 +31,14 @@ 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 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "suckit"; }; } diff --git a/pkgs/tools/networking/tcpreplay/default.nix b/pkgs/tools/networking/tcpreplay/default.nix index 0f612f17d386a..aea1362d6dce0 100644 --- a/pkgs/tools/networking/tcpreplay/default.nix +++ b/pkgs/tools/networking/tcpreplay/default.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/tools/networking/tunnelto/default.nix b/pkgs/tools/networking/tunnelto/default.nix index 5754470843487..c81378705b8c3 100644 --- a/pkgs/tools/networking/tunnelto/default.nix +++ b/pkgs/tools/networking/tunnelto/default.nix @@ -33,10 +33,10 @@ rustPlatform.buildRustPackage rec { ++ lib.optionals stdenv.hostPlatform.isLinux [ openssl ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ Security ]; - meta = with lib; { + meta = { description = "Expose your local web server to the internet with a public URL"; homepage = "https://tunnelto.dev"; - license = licenses.mit; - maintainers = with maintainers; [ Br1ght0ne ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Br1ght0ne ]; }; } diff --git a/pkgs/tools/networking/veilid/default.nix b/pkgs/tools/networking/veilid/default.nix index dbe5b78331b6a..416fb0751bae2 100644 --- a/pkgs/tools/networking/veilid/default.nix +++ b/pkgs/tools/networking/veilid/default.nix @@ -72,12 +72,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/tools/networking/vpn-slice/default.nix b/pkgs/tools/networking/vpn-slice/default.nix index ea23ece8b5ded..9bdab2217a627 100644 --- a/pkgs/tools/networking/vpn-slice/default.nix +++ b/pkgs/tools/networking/vpn-slice/default.nix @@ -43,11 +43,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/networking/wg-netmanager/default.nix b/pkgs/tools/networking/wg-netmanager/default.nix index b9a2353c84262..58a945a22e80a 100644 --- a/pkgs/tools/networking/wg-netmanager/default.nix +++ b/pkgs/tools/networking/wg-netmanager/default.nix @@ -28,7 +28,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, @@ -37,14 +37,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/tools/networking/wireguard-go/default.nix b/pkgs/tools/networking/wireguard-go/default.nix index f94e55656bd3d..f9b0aed9fa40d 100644 --- a/pkgs/tools/networking/wireguard-go/default.nix +++ b/pkgs/tools/networking/wireguard-go/default.nix @@ -38,11 +38,11 @@ buildGoModule rec { 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 zx2c4 ]; diff --git a/pkgs/tools/networking/wireguard-tools/default.nix b/pkgs/tools/networking/wireguard-tools/default.nix index 0c85c9154be59..3144e37a594d7 100644 --- a/pkgs/tools/networking/wireguard-tools/default.nix +++ b/pkgs/tools/networking/wireguard-tools/default.nix @@ -76,7 +76,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. @@ -87,8 +87,8 @@ 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; [ ericsagnes zx2c4 globin @@ -96,6 +96,6 @@ stdenv.mkDerivation rec { d-xo ]; mainProgram = "wg"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/networking/wireguard-vanity-address/default.nix b/pkgs/tools/networking/wireguard-vanity-address/default.nix index e64a8a59f5c76..f9d0dcdc507fd 100644 --- a/pkgs/tools/networking/wireguard-vanity-address/default.nix +++ b/pkgs/tools/networking/wireguard-vanity-address/default.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-0bkyopkssqH0vfaWkFC3dV2o7Q3EuDEOM8JvRB9ekLU="; - meta = with lib; { + meta = { description = "Find Wireguard VPN keypairs with a specific readable string"; homepage = "https://github.com/warner/wireguard-vanity-address"; - license = licenses.mit; - maintainers = with maintainers; [ bcc32 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ bcc32 ]; mainProgram = "wireguard-vanity-address"; }; } diff --git a/pkgs/tools/networking/xdp-tools/default.nix b/pkgs/tools/networking/xdp-tools/default.nix index a3ce1a2d087bf..dcacc53058bbe 100644 --- a/pkgs/tools/networking/xdp-tools/default.nix +++ b/pkgs/tools/networking/xdp-tools/default.nix @@ -73,19 +73,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/tools/nix/nixci/default.nix b/pkgs/tools/nix/nixci/default.nix index 3e6866df79c7a..76737c8f27b09 100644 --- a/pkgs/tools/nix/nixci/default.nix +++ b/pkgs/tools/nix/nixci/default.nix @@ -57,11 +57,11 @@ rustPlatform.buildRustPackage rec { hash = "sha256-Vey9n9hIlWiSAZ6CCTpkrL6jt4r2JvT2ik9wa2bjeC0="; }; - meta = with lib; { + meta = { description = "Define and build CI for Nix projects anywhere"; homepage = "https://github.com/srid/nixci"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ srid shivaraj-bh rsrohitsingh682 diff --git a/pkgs/tools/package-management/elm-github-install/default.nix b/pkgs/tools/package-management/elm-github-install/default.nix index d5b945fcb205b..fd5e1ce3c4949 100644 --- a/pkgs/tools/package-management/elm-github-install/default.nix +++ b/pkgs/tools/package-management/elm-github-install/default.nix @@ -16,15 +16,15 @@ bundlerEnv rec { passthru.updateScript = bundlerUpdateScript "elm-github-install"; - meta = with lib; { + meta = { description = "Install Elm packages from git repositories"; homepage = "https://github.com/gdotdesign/elm-github-install"; - license = licenses.unfree; - maintainers = with maintainers; [ + license = lib.licenses.unfree; + maintainers = with lib.maintainers; [ roberth nicknovitski ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "elm-install"; }; } diff --git a/pkgs/tools/package-management/fpm/default.nix b/pkgs/tools/package-management/fpm/default.nix index d3da891a7ae1a..640eba252bead 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/fusesoc/default.nix b/pkgs/tools/package-management/fusesoc/default.nix index ccadb2a71a1fb..62b5e48b5a79b 100644 --- a/pkgs/tools/package-management/fusesoc/default.nix +++ b/pkgs/tools/package-management/fusesoc/default.nix @@ -45,11 +45,11 @@ 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/tools/package-management/gx/default.nix b/pkgs/tools/package-management/gx/default.nix index d78c07643b603..dfc3cb6ab846d 100644 --- a/pkgs/tools/package-management/gx/default.nix +++ b/pkgs/tools/package-management/gx/default.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/tools/package-management/libcomps/default.nix b/pkgs/tools/package-management/libcomps/default.nix index 048c6af62c3a7..78fcbf5868bd2 100644 --- a/pkgs/tools/package-management/libcomps/default.nix +++ b/pkgs/tools/package-management/libcomps/default.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { moveToOutput "lib/${python.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/tools/package-management/librepo/default.nix b/pkgs/tools/package-management/librepo/default.nix index ffb6053cd0a35..0b15a344e684c 100644 --- a/pkgs/tools/package-management/librepo/default.nix +++ b/pkgs/tools/package-management/librepo/default.nix @@ -67,11 +67,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Library providing C and Python (libcURL like) API for downloading linux repository metadata and packages"; homepage = "https://rpm-software-management.github.io/librepo/"; - license = licenses.lgpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ copumpkin ]; + license = lib.licenses.lgpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ copumpkin ]; }; } diff --git a/pkgs/tools/package-management/licensee/default.nix b/pkgs/tools/package-management/licensee/default.nix index dcb6b7417706a..1f1a10d66ac27 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-du/default.nix b/pkgs/tools/package-management/nix-du/default.nix index 9a3decc9e0520..8d2ef952096b9 100644 --- a/pkgs/tools/package-management/nix-du/default.nix +++ b/pkgs/tools/package-management/nix-du/default.nix @@ -41,12 +41,12 @@ rustPlatform.buildRustPackage rec { rustPlatform.bindgenHook ]; - meta = with lib; { + meta = { description = "Tool to determine which gc-roots take space in your nix store"; homepage = "https://github.com/symphorien/nix-du"; - license = licenses.lgpl3Only; - maintainers = [ maintainers.symphorien ]; - platforms = platforms.unix; + license = lib.licenses.lgpl3Only; + maintainers = [ lib.maintainers.symphorien ]; + platforms = lib.platforms.unix; mainProgram = "nix-du"; }; } diff --git a/pkgs/tools/package-management/nix-pin/default.nix b/pkgs/tools/package-management/nix-pin/default.nix index b249652e98194..a723af05f85b9 100644 --- a/pkgs/tools/package-management/nix-pin/default.nix +++ b/pkgs/tools/package-management/nix-pin/default.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/tools/package-management/nix-visualize/default.nix b/pkgs/tools/package-management/nix-visualize/default.nix index fab3aa952647d..19ae534e3b4de 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 rec { # 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/protontricks/default.nix b/pkgs/tools/package-management/protontricks/default.nix index 084e873d63f4a..430d58073aff6 100644 --- a/pkgs/tools/package-management/protontricks/default.nix +++ b/pkgs/tools/package-management/protontricks/default.nix @@ -84,11 +84,11 @@ buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Simple wrapper for running Winetricks commands for Proton-enabled games"; homepage = "https://github.com/Matoking/protontricks"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ kira-bruneau ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ kira-bruneau ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/tools/package-management/yarn-lock-converter/default.nix b/pkgs/tools/package-management/yarn-lock-converter/default.nix index 4bba600ea0203..b4763a36f80df 100644 --- a/pkgs/tools/package-management/yarn-lock-converter/default.nix +++ b/pkgs/tools/package-management/yarn-lock-converter/default.nix @@ -41,11 +41,11 @@ buildNpmPackage rec { updateScript = ./update.sh; }; - meta = with lib; { + meta = { description = "Converts modern Yarn v2+ yarn.lock files into a Yarn v1 format"; homepage = "https://github.com/VHT/yarn-lock-converter"; - license = licenses.mit; - maintainers = with maintainers; [ gador ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gador ]; mainProgram = "yarn-lock-converter"; }; } diff --git a/pkgs/tools/security/age-plugin-ledger/default.nix b/pkgs/tools/security/age-plugin-ledger/default.nix index e5b5ccfdbe7f6..b9bc50da13eec 100644 --- a/pkgs/tools/security/age-plugin-ledger/default.nix +++ b/pkgs/tools/security/age-plugin-ledger/default.nix @@ -36,14 +36,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/tools/security/b2sum/default.nix b/pkgs/tools/security/b2sum/default.nix index 04c0e3e895439..36558ed007a13 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 = "B2sum utility is similar to the md5sum or shasum utilities but for BLAKE2"; 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/bmrsa/11.nix b/pkgs/tools/security/bmrsa/11.nix index f3bf100ff745e..19f0b6d0bf324 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/cewl/default.nix b/pkgs/tools/security/cewl/default.nix index e415a1bdc9509..a3fba89be541d 100644 --- a/pkgs/tools/security/cewl/default.nix +++ b/pkgs/tools/security/cewl/default.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { mv $out/bin/cewl.rb $out/bin/cewl ''; - meta = with lib; { + meta = { description = "Custom wordlist generator"; mainProgram = "cewl"; homepage = "https://digi.ninja/projects/cewl.php/"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; }; } diff --git a/pkgs/tools/security/chrome-token-signing/default.nix b/pkgs/tools/security/chrome-token-signing/default.nix index 51e4aceb9bcef..330383160a026 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/clamav/default.nix b/pkgs/tools/security/clamav/default.nix index 3a3b264ef3d6a..628bd3033a17c 100644 --- a/pkgs/tools/security/clamav/default.nix +++ b/pkgs/tools/security/clamav/default.nix @@ -79,15 +79,15 @@ 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 globin ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/security/cve-bin-tool/default.nix b/pkgs/tools/security/cve-bin-tool/default.nix index 444b5e435fece..3c547ab7ccfb4 100644 --- a/pkgs/tools/security/cve-bin-tool/default.nix +++ b/pkgs/tools/security/cve-bin-tool/default.nix @@ -85,10 +85,10 @@ buildPythonApplication rec { passthru.tests.version = testers.testVersion { package = cve-bin-tool; }; - meta = with lib; { + meta = { description = "CVE Binary Checker Tool"; homepage = "https://github.com/intel/cve-bin-tool"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; maintainers = [ ]; }; } diff --git a/pkgs/tools/security/ecryptfs/helper.nix b/pkgs/tools/security/ecryptfs/helper.nix index 4f2070f8bd289..1efe9e52761da 100644 --- a/pkgs/tools/security/ecryptfs/helper.nix +++ b/pkgs/tools/security/ecryptfs/helper.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation { makeWrapper "${python2.interpreter}" "$out/bin/ecryptfs-helper" --add-flags "$out/libexec/ecryptfs-helper.py" ''; - meta = with lib; { + meta = { description = "Helper script to create/mount/unemount encrypted directories using eCryptfs without needing root permissions"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ obadz ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ obadz ]; + platforms = lib.platforms.linux; hydraPlatforms = [ ]; }; } diff --git a/pkgs/tools/security/firefox_decrypt/default.nix b/pkgs/tools/security/firefox_decrypt/default.nix index 5bc8dbe86aa09..0a354dd13d0d7 100644 --- a/pkgs/tools/security/firefox_decrypt/default.nix +++ b/pkgs/tools/security/firefox_decrypt/default.nix @@ -37,11 +37,11 @@ buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/unode/firefox_decrypt"; description = "Tool to extract passwords from profiles of Mozilla Firefox and derivates"; mainProgram = "firefox_decrypt"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ schnusch ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ schnusch ]; }; } diff --git a/pkgs/tools/security/fwbuilder/default.nix b/pkgs/tools/security/fwbuilder/default.nix index 284e302f0188b..30c50213f7685 100644 --- a/pkgs/tools/security/fwbuilder/default.nix +++ b/pkgs/tools/security/fwbuilder/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { qtwayland ]; - meta = with lib; { + meta = { description = "GUI Firewall Management Application"; longDescription = '' Firewall Builder is a GUI firewall management application for iptables, @@ -49,8 +49,8 @@ stdenv.mkDerivation rec { managed from a single UI. ''; homepage = "https://github.com/fwbuilder/fwbuilder"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = [ maintainers.elatov ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.elatov ]; }; } diff --git a/pkgs/tools/security/genpass/default.nix b/pkgs/tools/security/genpass/default.nix index 5fd2fd3b0b72c..80f6e9fa613c6 100644 --- a/pkgs/tools/security/genpass/default.nix +++ b/pkgs/tools/security/genpass/default.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/tools/security/ghidra/extensions/ghidraninja-ghidra-scripts/default.nix b/pkgs/tools/security/ghidra/extensions/ghidraninja-ghidra-scripts/default.nix index 1e4fcefabdc3e..51e8b58838d7c 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 6cddb49b8dc03..eea040e5e4824 100644 --- a/pkgs/tools/security/ghidra/extensions/gnudisassembler/default.nix +++ b/pkgs/tools/security/ghidra/extensions/gnudisassembler/default.nix @@ -60,10 +60,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/ret-sync/default.nix b/pkgs/tools/security/ghidra/extensions/ret-sync/default.nix index e7791eb90b2b7..57bc754257c50 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/hashcat/default.nix b/pkgs/tools/security/hashcat/default.nix index 03e99733500bc..9be24ed496039 100644 --- a/pkgs/tools/security/hashcat/default.nix +++ b/pkgs/tools/security/hashcat/default.nix @@ -101,13 +101,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/tools/security/keybase/kbfs.nix b/pkgs/tools/security/keybase/kbfs.nix index f09affe19c7b9..5353aa455aee2 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/krunner-pass/default.nix b/pkgs/tools/security/krunner-pass/default.nix index 00f76354d09df..af442f05f6794 100644 --- a/pkgs/tools/security/krunner-pass/default.nix +++ b/pkgs/tools/security/krunner-pass/default.nix @@ -53,11 +53,11 @@ mkDerivation rec { "-DCMAKE_POLICY_DEFAULT_CMP0012=NEW" ]; - meta = with lib; { + meta = { description = "Integrates krunner with pass the unix standard password manager (https://www.passwordstore.org/)"; homepage = "https://github.com/akermu/krunner-pass"; - license = licenses.gpl3; - maintainers = with maintainers; [ ysndr ]; - platforms = platforms.unix; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ ysndr ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/security/lethe/default.nix b/pkgs/tools/security/lethe/default.nix index bd07d73130cf9..4a947eb443981 100644 --- a/pkgs/tools/security/lethe/default.nix +++ b/pkgs/tools/security/lethe/default.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security; - 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/tools/security/libmodsecurity/default.nix b/pkgs/tools/security/libmodsecurity/default.nix index a5d840d44df0f..00ac82beb97ad 100644 --- a/pkgs/tools/security/libmodsecurity/default.nix +++ b/pkgs/tools/security/libmodsecurity/default.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/tools/security/maigret/default.nix b/pkgs/tools/security/maigret/default.nix index ec4f2103295bb..4849dc19072d5 100644 --- a/pkgs/tools/security/maigret/default.nix +++ b/pkgs/tools/security/maigret/default.nix @@ -104,10 +104,10 @@ python3.pkgs.buildPythonApplication rec { "maigret" ]; - meta = with lib; { + meta = { description = "Tool to collect details about an username"; homepage = "https://maigret.readthedocs.io"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/tools/security/metasploit/default.nix b/pkgs/tools/security/metasploit/default.nix index 1406fb4aeff06..13975e05cc4a7 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 1a59c38496f88..59c9c411af816 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/ossec/agent.nix b/pkgs/tools/security/ossec/agent.nix index 28f29c9c045e0..62b4036668bd7 100644 --- a/pkgs/tools/security/ossec/agent.nix +++ b/pkgs/tools/security/ossec/agent.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Open source host-based instrusion detection system"; homepage = "https://www.ossec.net"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ happysalada ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ happysalada ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/tools/security/ossec/server.nix b/pkgs/tools/security/ossec/server.nix index 29587552cfe7d..7000e6c24c6b7 100644 --- a/pkgs/tools/security/ossec/server.nix +++ b/pkgs/tools/security/ossec/server.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Open source host-based instrusion detection system"; homepage = "https://www.ossec.net"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ happysalada ]; - platforms = platforms.all; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ happysalada ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/tools/security/pass/extensions/audit/default.nix b/pkgs/tools/security/pass/extensions/audit/default.nix index 4aa96fe409098..84cc5b65aeb18 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 633b0be00cc77..689525089b895 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 54c7e0f8e12cf..1291ebeea5dd5 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 085b77342fbe1..460ef0c7b03eb 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/otp.nix b/pkgs/tools/security/pass/extensions/otp.nix index dbde743461af7..783334b412bd6 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 f9ad7fe0f8941..16d0b6858e1fb 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 6f53159c9b670..767be885f6134 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/plasma-pass/default.nix b/pkgs/tools/security/plasma-pass/default.nix index 5ab24a28b7ce0..fe76a01e20d30 100644 --- a/pkgs/tools/security/plasma-pass/default.nix +++ b/pkgs/tools/security/plasma-pass/default.nix @@ -39,11 +39,11 @@ mkDerivation rec { extra-cmake-modules ]; - meta = with lib; { + meta = { description = "Plasma applet to access passwords from pass, the standard UNIX password manager"; homepage = "https://invent.kde.org/plasma/plasma-pass"; - license = licenses.lgpl21Plus; - maintainers = with maintainers; [ matthiasbeyer ]; - platforms = platforms.unix; + license = lib.licenses.lgpl21Plus; + maintainers = with lib.maintainers; [ matthiasbeyer ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/security/qdigidoc/default.nix b/pkgs/tools/security/qdigidoc/default.nix index 2e8af2ecb3b1c..a8706e41748ee 100644 --- a/pkgs/tools/security/qdigidoc/default.nix +++ b/pkgs/tools/security/qdigidoc/default.nix @@ -66,13 +66,13 @@ 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/tools/security/rblake2sum/default.nix b/pkgs/tools/security/rblake2sum/default.nix index 805bfbf8ec9d0..0164f540da2be 100644 --- a/pkgs/tools/security/rblake2sum/default.nix +++ b/pkgs/tools/security/rblake2sum/default.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage { buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security ]; - 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/tools/security/rblake3sum/default.nix b/pkgs/tools/security/rblake3sum/default.nix index 84f1c7283238a..2f0c9ff8abe73 100644 --- a/pkgs/tools/security/rblake3sum/default.nix +++ b/pkgs/tools/security/rblake3sum/default.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage { buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security ]; - 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/tools/security/ronin/default.nix b/pkgs/tools/security/ronin/default.nix index d5a3a0080bdab..ac78dd5df1e5f 100644 --- a/pkgs/tools/security/ronin/default.nix +++ b/pkgs/tools/security/ronin/default.nix @@ -29,10 +29,10 @@ bundlerEnv { passthru.updateScript = bundlerUpdateScript "ronin"; - 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/tools/security/rucredstash/default.nix b/pkgs/tools/security/rucredstash/default.nix index 9fe739ed814bc..92ba4f556d5c8 100644 --- a/pkgs/tools/security/rucredstash/default.nix +++ b/pkgs/tools/security/rucredstash/default.nix @@ -25,11 +25,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/tools/security/saml2aws/default.nix b/pkgs/tools/security/saml2aws/default.nix index 4a0d7254a3514..3fa2b94d3bb17 100644 --- a/pkgs/tools/security/saml2aws/default.nix +++ b/pkgs/tools/security/saml2aws/default.nix @@ -38,11 +38,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/tools/security/sbomnix/default.nix b/pkgs/tools/security/sbomnix/default.nix index 11fe22a01e177..9df1274cdf0f8 100644 --- a/pkgs/tools/security/sbomnix/default.nix +++ b/pkgs/tools/security/sbomnix/default.nix @@ -81,15 +81,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/tools/security/schleuder/cli/default.nix b/pkgs/tools/security/schleuder/cli/default.nix index c65c16d409059..7d799dedd149f 100644 --- a/pkgs/tools/security/schleuder/cli/default.nix +++ b/pkgs/tools/security/schleuder/cli/default.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/tools/security/schleuder/default.nix b/pkgs/tools/security/schleuder/default.nix index eb4403d6f4eeb..6974a2357a948 100644 --- a/pkgs/tools/security/schleuder/default.nix +++ b/pkgs/tools/security/schleuder/default.nix @@ -24,7 +24,7 @@ bundlerApp { inherit (nixosTests) schleuder; }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Schleuder is an 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/tools/security/solo2-cli/default.nix b/pkgs/tools/security/solo2-cli/default.nix index 4e4004e9c8b5a..124d631d24d8e 100644 --- a/pkgs/tools/security/solo2-cli/default.nix +++ b/pkgs/tools/security/solo2-cli/default.nix @@ -54,14 +54,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/tools/security/stoken/default.nix b/pkgs/tools/security/stoken/default.nix index bef9a55bd31d8..ad9c62f285bd3 100644 --- a/pkgs/tools/security/stoken/default.nix +++ b/pkgs/tools/security/stoken/default.nix @@ -37,11 +37,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 11afcd40003e0..9944a17696a48 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/security/whatweb/default.nix b/pkgs/tools/security/whatweb/default.nix index f672f4410245b..85c3e44a467bd 100644 --- a/pkgs/tools/security/whatweb/default.nix +++ b/pkgs/tools/security/whatweb/default.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Next generation web scanner"; 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/tools/security/wpscan/default.nix b/pkgs/tools/security/wpscan/default.nix index afc92814244f3..591d97e753caa 100644 --- a/pkgs/tools/security/wpscan/default.nix +++ b/pkgs/tools/security/wpscan/default.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/tools/security/zsteg/default.nix b/pkgs/tools/security/zsteg/default.nix index c078189f4f29c..7bb8927afc1e1 100644 --- a/pkgs/tools/security/zsteg/default.nix +++ b/pkgs/tools/security/zsteg/default.nix @@ -7,11 +7,11 @@ bundlerApp { exes = [ "zsteg" ]; - 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/tools/system/clinfo/default.nix b/pkgs/tools/system/clinfo/default.nix index 48b5d4672b8a1..2420ecb7d26a9 100644 --- a/pkgs/tools/system/clinfo/default.nix +++ b/pkgs/tools/system/clinfo/default.nix @@ -29,15 +29,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/tools/system/collectd/default.nix b/pkgs/tools/system/collectd/default.nix index 4be42d86237ed..2e128c530c166 100644 --- a/pkgs/tools/system/collectd/default.nix +++ b/pkgs/tools/system/collectd/default.nix @@ -75,11 +75,11 @@ stdenv.mkDerivation rec { inherit (nixosTests) collectd; }; - meta = with lib; { + meta = { description = "Daemon which collects system performance statistics periodically"; homepage = "https://collectd.org"; - 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/tools/system/colorls/default.nix b/pkgs/tools/system/colorls/default.nix index ff4677735bd2f..f4aef2d1c76fb 100644 --- a/pkgs/tools/system/colorls/default.nix +++ b/pkgs/tools/system/colorls/default.nix @@ -13,11 +13,11 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "colorls"; - meta = with lib; { + meta = { description = "Prettified LS"; homepage = "https://github.com/athityakumar/colorls"; - license = with licenses; mit; - maintainers = with maintainers; [ + license = with lib.licenses; mit; + maintainers = with lib.maintainers; [ lukebfox nicknovitski cbley diff --git a/pkgs/tools/system/hiera-eyaml/default.nix b/pkgs/tools/system/hiera-eyaml/default.nix index 8c19af264fa9a..4befa4e398cc2 100644 --- a/pkgs/tools/system/hiera-eyaml/default.nix +++ b/pkgs/tools/system/hiera-eyaml/default.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/TomPoulton/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/tools/system/hw-probe/default.nix b/pkgs/tools/system/hw-probe/default.nix index 0f032aa138a69..0f5fd1b0acb88 100644 --- a/pkgs/tools/system/hw-probe/default.nix +++ b/pkgs/tools/system/hw-probe/default.nix @@ -145,15 +145,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/tools.nix b/pkgs/tools/system/minijail/tools.nix index 54acc4a1193af..030fa13e0be7c 100644 --- a/pkgs/tools/system/minijail/tools.nix +++ b/pkgs/tools/system/minijail/tools.nix @@ -37,10 +37,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/pciutils/default.nix b/pkgs/tools/system/pciutils/default.nix index 345afacf0016b..9a4c1bcc16546 100644 --- a/pkgs/tools/system/pciutils/default.nix +++ b/pkgs/tools/system/pciutils/default.nix @@ -68,12 +68,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/tools/system/pdisk/default.nix b/pkgs/tools/system/pdisk/default.nix index 43e2ef61d70d1..c909784f285cf 100644 --- a/pkgs/tools/system/pdisk/default.nix +++ b/pkgs/tools/system/pdisk/default.nix @@ -82,14 +82,14 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Low-level Apple partition table editor for Linux, OSS Apple version"; homepage = "https://github.com/apple-oss-distributions/pdisk"; - license = with licenses; [ + license = with lib.licenses; [ hpnd # original license statements seems to match this (in files that are shared with mac-fdisk) apple-psl10 # new files ]; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/system/plan9port/default.nix b/pkgs/tools/system/plan9port/default.nix index 0be74e21dd25a..2d946b22d0d33 100644 --- a/pkgs/tools/system/plan9port/default.nix +++ b/pkgs/tools/system/plan9port/default.nix @@ -136,15 +136,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 ehmry ftrvxmtrx @@ -153,7 +153,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/system/procodile/default.nix b/pkgs/tools/system/procodile/default.nix index 43faa0af6e590..d365875768f42 100644 --- a/pkgs/tools/system/procodile/default.nix +++ b/pkgs/tools/system/procodile/default.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://adam.ac/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/tools/system/smartmontools/default.nix b/pkgs/tools/system/smartmontools/default.nix index b8c594dde4701..caea82daf0e63 100644 --- a/pkgs/tools/system/smartmontools/default.nix +++ b/pkgs/tools/system/smartmontools/default.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation rec { ]; 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/tools/system/stacer/default.nix b/pkgs/tools/system/stacer/default.nix index 05303b472ac98..917345e94dde3 100644 --- a/pkgs/tools/system/stacer/default.nix +++ b/pkgs/tools/system/stacer/default.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { install -Dm644 ../translations/*.qm -t $out/share/stacer/translations ''; - meta = with lib; { + meta = { description = "Linux System Optimizer and Monitoring"; homepage = "https://github.com/oguzhaninan/stacer"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ dit7ya ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ dit7ya ]; + platforms = lib.platforms.linux; mainProgram = "stacer"; }; } diff --git a/pkgs/tools/system/uefitool/common.nix b/pkgs/tools/system/uefitool/common.nix index fa8da1a9ac8ad..a8911d0d0004a 100644 --- a/pkgs/tools/system/uefitool/common.nix +++ b/pkgs/tools/system/uefitool/common.nix @@ -46,12 +46,12 @@ mkDerivation rec { cp ${lib.concatStringsSep " " installFiles} "$out"/bin ''; - meta = with lib; { + meta = { description = "UEFI firmware image viewer and editor"; homepage = "https://github.com/LongSoft/uefitool"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = [ ]; # uefitool supposedly works on other platforms, but their build script only works on linux in nixpkgs - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/tools/text/amber/default.nix b/pkgs/tools/text/amber/default.nix index 67deb89c3936d..75c2d74385365 100644 --- a/pkgs/tools/text/amber/default.nix +++ b/pkgs/tools/text/amber/default.nix @@ -25,10 +25,10 @@ rustPlatform.buildRustPackage rec { Security ]; - 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/tools/text/coloursum/default.nix b/pkgs/tools/text/coloursum/default.nix index b080b63b36bd3..f9de9dd909d71 100644 --- a/pkgs/tools/text/coloursum/default.nix +++ b/pkgs/tools/text/coloursum/default.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security; - 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/tools/text/diffr/default.nix b/pkgs/tools/text/diffr/default.nix index 577cb46b07b55..d991da6e390a3 100644 --- a/pkgs/tools/text/diffr/default.nix +++ b/pkgs/tools/text/diffr/default.nix @@ -25,11 +25,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 ]; - maintainers = with maintainers; [ davidtwco ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ davidtwco ]; }; } diff --git a/pkgs/tools/text/diffutils/default.nix b/pkgs/tools/text/diffutils/default.nix index ceeae464da4d0..5dc01d345a335 100644 --- a/pkgs/tools/text/diffutils/default.nix +++ b/pkgs/tools/text/diffutils/default.nix @@ -55,11 +55,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; - maintainers = with maintainers; [ das_j ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ das_j ]; }; } diff --git a/pkgs/tools/text/fastmod/default.nix b/pkgs/tools/text/fastmod/default.nix index 6e02473b52aae..7bc523640e435 100644 --- a/pkgs/tools/text/fastmod/default.nix +++ b/pkgs/tools/text/fastmod/default.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { Security ]; - 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/tools/text/gawk/gawkextlib.nix b/pkgs/tools/text/gawk/gawkextlib.nix index c567b39b07d7b..6ccfa7765f121 100644 --- a/pkgs/tools/text/gawk/gawkextlib.nix +++ b/pkgs/tools/text/gawk/gawkextlib.nix @@ -73,7 +73,7 @@ let inherit doCheck; nativeCheckInputs = [ more ]; - meta = with lib; { + meta = { homepage = "https://sourceforge.net/projects/gawkextlib/"; description = "Dynamically loaded extension libraries for GNU AWK"; mainProgram = "xmlgawk"; @@ -85,9 +85,9 @@ let database, use the GD graphics library, and perform unlimited precision MPFR calculations. ''; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ tomberek ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ tomberek ]; }; } ); diff --git a/pkgs/tools/text/glogg/default.nix b/pkgs/tools/text/glogg/default.nix index e3ac44ff4dbd6..82bf058537203 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/highlight/default.nix b/pkgs/tools/text/highlight/default.nix index 6f61197371849..8a122eb416104 100644 --- a/pkgs/tools/text/highlight/default.nix +++ b/pkgs/tools/text/highlight/default.nix @@ -71,12 +71,12 @@ 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; - maintainers = with maintainers; [ willibutz ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ willibutz ]; }; }; diff --git a/pkgs/tools/text/kdiff3/default.nix b/pkgs/tools/text/kdiff3/default.nix index aeb8b5f9c32d4..d9b7edb70053d 100644 --- a/pkgs/tools/text/kdiff3/default.nix +++ b/pkgs/tools/text/kdiff3/default.nix @@ -43,12 +43,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 ]; - platforms = with platforms; linux ++ darwin; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = with lib.platforms; linux ++ darwin; }; }) diff --git a/pkgs/tools/text/languagetool-rust/default.nix b/pkgs/tools/text/languagetool-rust/default.nix index 5cca7a529beb0..ae8387c5f5beb 100644 --- a/pkgs/tools/text/languagetool-rust/default.nix +++ b/pkgs/tools/text/languagetool-rust/default.nix @@ -79,11 +79,11 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/ltrs completions zsh) ''; - meta = with lib; { + meta = { description = "LanguageTool API in Rust"; homepage = "https://github.com/jeertmans/languagetool-rust"; - license = licenses.mit; - maintainers = with maintainers; [ name-snrl ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ name-snrl ]; mainProgram = "ltrs"; }; } diff --git a/pkgs/tools/text/mdbook-admonish/default.nix b/pkgs/tools/text/mdbook-admonish/default.nix index fcd1724910985..496cd1b2c545e 100644 --- a/pkgs/tools/text/mdbook-admonish/default.nix +++ b/pkgs/tools/text/mdbook-admonish/default.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ]; - meta = with lib; { + meta = { description = "Preprocessor for mdbook to add Material Design admonishments"; mainProgram = "mdbook-admonish"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jmgilman Frostman matthiasbeyer diff --git a/pkgs/tools/text/mdbook-epub/default.nix b/pkgs/tools/text/mdbook-epub/default.nix index ca662eaefcb7c..88d5a9dd8a36f 100644 --- a/pkgs/tools/text/mdbook-epub/default.nix +++ b/pkgs/tools/text/mdbook-epub/default.nix @@ -36,12 +36,12 @@ rustPlatform.buildRustPackage { CoreServices ]; - meta = with lib; { + meta = { description = "mdbook backend for generating an e-book in the EPUB format"; mainProgram = "mdbook-epub"; homepage = "https://michael-f-bryan.github.io/mdbook-epub"; - license = licenses.mpl20; - maintainers = with maintainers; [ + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ yuu matthiasbeyer ]; diff --git a/pkgs/tools/text/mdbook-footnote/default.nix b/pkgs/tools/text/mdbook-footnote/default.nix index ea66ed24a3be7..47ce6da2e42ca 100644 --- a/pkgs/tools/text/mdbook-footnote/default.nix +++ b/pkgs/tools/text/mdbook-footnote/default.nix @@ -20,12 +20,12 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ]; - meta = with lib; { + meta = { description = "Preprocessor for mdbook to support the inclusion of automatically numbered footnotes"; mainProgram = "mdbook-footnote"; homepage = "https://github.com/daviddrysdale/mdbook-footnote"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ brianmcgillion matthiasbeyer ]; diff --git a/pkgs/tools/text/mdbook-linkcheck/default.nix b/pkgs/tools/text/mdbook-linkcheck/default.nix index 40dd80c93bea4..3eee7927f3309 100644 --- a/pkgs/tools/text/mdbook-linkcheck/default.nix +++ b/pkgs/tools/text/mdbook-linkcheck/default.nix @@ -33,12 +33,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/tools/text/mdbook-plantuml/default.nix b/pkgs/tools/text/mdbook-plantuml/default.nix index 01640999080ff..b6dc30022b665 100644 --- a/pkgs/tools/text/mdbook-plantuml/default.nix +++ b/pkgs/tools/text/mdbook-plantuml/default.nix @@ -35,12 +35,12 @@ rustPlatform.buildRustPackage rec { buildInputs = [ openssl ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ]; - meta = with lib; { + meta = { description = "mdBook preprocessor to render PlantUML diagrams to png images in the book output directory"; mainProgram = "mdbook-plantuml"; homepage = "https://github.com/sytsereitsma/mdbook-plantuml"; - license = [ licenses.mit ]; - maintainers = with maintainers; [ + license = [ lib.licenses.mit ]; + maintainers = with lib.maintainers; [ jcouyang matthiasbeyer ]; diff --git a/pkgs/tools/text/mdbook-toc/default.nix b/pkgs/tools/text/mdbook-toc/default.nix index d56e23bf95431..6bad3d372b557 100644 --- a/pkgs/tools/text/mdbook-toc/default.nix +++ b/pkgs/tools/text/mdbook-toc/default.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ]; - meta = with lib; { + meta = { description = "Preprocessor for mdbook to add inline Table of Contents support"; mainProgram = "mdbook-toc"; homepage = "https://github.com/badboy/mdbook-toc"; - license = [ licenses.mpl20 ]; - maintainers = with maintainers; [ matthiasbeyer ]; + license = [ lib.licenses.mpl20 ]; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/tools/text/mecab/default.nix b/pkgs/tools/text/mecab/default.nix index 135351f6a1b03..9cbf246aa6150 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 6a97585d4cfb8..5cc31c19fa4ff 100644 --- a/pkgs/tools/text/nltk-data/default.nix +++ b/pkgs/tools/text/nltk-data/default.nix @@ -10,12 +10,12 @@ let version = "0-unstable-2024-07-29"; nativeBuildInputs = [ unzip ]; dontBuild = true; - meta = with lib; { + meta = { description = "NLTK Data"; homepage = "https://github.com/nltk/nltk_data"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ happysalada ]; + license = lib.licenses.asl20; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ happysalada ]; }; }; makeNltkDataPackage = diff --git a/pkgs/tools/text/patchutils/generic.nix b/pkgs/tools/text/patchutils/generic.nix index 047b4cfd55cc2..3be96dbef5c90 100644 --- a/pkgs/tools/text/patchutils/generic.nix +++ b/pkgs/tools/text/patchutils/generic.nix @@ -45,11 +45,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/pinyin-tool/default.nix b/pkgs/tools/text/pinyin-tool/default.nix index 54520d5d317e1..513def7c512da 100644 --- a/pkgs/tools/text/pinyin-tool/default.nix +++ b/pkgs/tools/text/pinyin-tool/default.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security ]; - 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; - maintainers = with maintainers; [ neonfuz ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ neonfuz ]; }; } diff --git a/pkgs/tools/text/poedit/default.nix b/pkgs/tools/text/poedit/default.nix index 8b702994a000a..d8cadba55f6fd 100644 --- a/pkgs/tools/text/poedit/default.nix +++ b/pkgs/tools/text/poedit/default.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/tools/text/proselint/default.nix b/pkgs/tools/text/proselint/default.nix index a5bb06bc5b75a..921f47400aaa3 100644 --- a/pkgs/tools/text/proselint/default.nix +++ b/pkgs/tools/text/proselint/default.nix @@ -24,11 +24,11 @@ buildPythonApplication rec { six ]; - meta = with lib; { + meta = { description = "Linter for prose"; mainProgram = "proselint"; homepage = "http://proselint.com"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } diff --git a/pkgs/tools/text/ruby-zoom/default.nix b/pkgs/tools/text/ruby-zoom/default.nix index 2364fa7fc4b41..2f83759c20b93 100644 --- a/pkgs/tools/text/ruby-zoom/default.nix +++ b/pkgs/tools/text/ruby-zoom/default.nix @@ -13,14 +13,14 @@ bundlerEnv { passthru.updateScript = bundlerUpdateScript "ruby-zoom"; - meta = with lib; { + meta = { description = "Quickly open CLI search results in your favorite editor"; homepage = "https://gitlab.com/mjwhitta/zoom"; - license = with licenses; gpl3; - maintainers = with maintainers; [ + license = with lib.licenses; gpl3; + maintainers = with lib.maintainers; [ vmandela nicknovitski ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/text/uniscribe/default.nix b/pkgs/tools/text/uniscribe/default.nix index 94b49a0b4d239..992b7adb9e62f 100644 --- a/pkgs/tools/text/uniscribe/default.nix +++ b/pkgs/tools/text/uniscribe/default.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { 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/text/xsv/default.nix b/pkgs/tools/text/xsv/default.nix index 5dcc9a862bb29..9a3c2541530aa 100644 --- a/pkgs/tools/text/xsv/default.nix +++ b/pkgs/tools/text/xsv/default.nix @@ -21,14 +21,14 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security; - meta = with lib; { + meta = { description = "Fast CSV toolkit written in Rust"; mainProgram = "xsv"; homepage = "https://github.com/BurntSushi/xsv"; - license = with licenses; [ + license = with lib.licenses; [ unlicense # or mit ]; - maintainers = [ maintainers.jgertm ]; + maintainers = [ lib.maintainers.jgertm ]; }; } diff --git a/pkgs/tools/typesetting/asciidoctor-with-extensions/default.nix b/pkgs/tools/typesetting/asciidoctor-with-extensions/default.nix index 1c21d82386591..c39ed47258ad7 100644 --- a/pkgs/tools/typesetting/asciidoctor-with-extensions/default.nix +++ b/pkgs/tools/typesetting/asciidoctor-with-extensions/default.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/tools/typesetting/asciidoctor/default.nix b/pkgs/tools/typesetting/asciidoctor/default.nix index 43218736abc1d..88651f1c8d5b1 100644 --- a/pkgs/tools/typesetting/asciidoctor/default.nix +++ b/pkgs/tools/typesetting/asciidoctor/default.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/tools/typesetting/kramdown-asciidoc/default.nix b/pkgs/tools/typesetting/kramdown-asciidoc/default.nix index ac2c5d8a5a636..24f6b7dc6fe7e 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 037ab1389b919..1a5521f0555ee 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 9cd5580826991..b64a4c9320508 100644 --- a/pkgs/tools/typesetting/tex/tetex/default.nix +++ b/pkgs/tools/typesetting/tex/tetex/default.nix @@ -86,11 +86,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/video/atomicparsley/default.nix b/pkgs/tools/video/atomicparsley/default.nix index 3b5ccde7979e8..6c949a0e1b57b 100644 --- a/pkgs/tools/video/atomicparsley/default.nix +++ b/pkgs/tools/video/atomicparsley/default.nix @@ -45,12 +45,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/tools/video/swftools/default.nix b/pkgs/tools/video/swftools/default.nix index 85ada19739dec..60ab7234fa84a 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/ec2instanceconnectcli/default.nix b/pkgs/tools/virtualization/ec2instanceconnectcli/default.nix index 050f93a052a65..63f20028dc934 100644 --- a/pkgs/tools/virtualization/ec2instanceconnectcli/default.nix +++ b/pkgs/tools/virtualization/ec2instanceconnectcli/default.nix @@ -25,10 +25,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 d08d2c1eaf695..88c83cbd9385e 100644 --- a/pkgs/tools/virtualization/google-compute-engine/default.nix +++ b/pkgs/tools/virtualization/google-compute-engine/default.nix @@ -56,11 +56,11 @@ buildPythonPackage rec { doCheck = false; 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 4c55b39097981..e91a78a964460 100644 --- a/pkgs/tools/virtualization/supermin/default.nix +++ b/pkgs/tools/virtualization/supermin/default.nix @@ -39,12 +39,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/tools/wayland/swaytools/default.nix b/pkgs/tools/wayland/swaytools/default.nix index 3f994ef03eb27..f9f6ab077724a 100644 --- a/pkgs/tools/wayland/swaytools/default.nix +++ b/pkgs/tools/wayland/swaytools/default.nix @@ -23,11 +23,11 @@ buildPythonApplication rec { propagatedBuildInputs = [ slurp ]; - meta = with lib; { + meta = { homepage = "https://github.com/tmccombs/swaytools"; description = "Collection of simple tools for sway (and i3)"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ atila ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ atila ]; + platforms = lib.platforms.linux; }; }