diff --git a/pkgs/applications/audio/calf/default.nix b/pkgs/applications/audio/calf/default.nix index eee2d7f1b2dde9..1fd061e9930fd4 100644 --- a/pkgs/applications/audio/calf/default.nix +++ b/pkgs/applications/audio/calf/default.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { lv2 ]; - meta = { + meta = with lib; { homepage = "https://calf-studio-gear.org"; description = "Set of high quality open source audio plugins for musicians"; - license = lib.licenses.lgpl2; + license = licenses.lgpl2; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "calfjackhost"; }; } diff --git a/pkgs/applications/audio/easyabc/default.nix b/pkgs/applications/audio/easyabc/default.nix index 16026b12750dce..c932f0e4c17d41 100644 --- a/pkgs/applications/audio/easyabc/default.nix +++ b/pkgs/applications/audio/easyabc/default.nix @@ -83,12 +83,12 @@ python.pkgs.buildPythonApplication { runHook postInstall ''; - meta = { + meta = with lib; { description = "ABC music notation editor"; mainProgram = "easyabc"; homepage = "https://easyabc.sourceforge.net/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ mausch ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ mausch ]; }; } diff --git a/pkgs/applications/audio/ladspa-sdk/default.nix b/pkgs/applications/audio/ladspa-sdk/default.nix index 0103db6a7422be..bd47d2410a3601 100644 --- a/pkgs/applications/audio/ladspa-sdk/default.nix +++ b/pkgs/applications/audio/ladspa-sdk/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { # it's probably still useful to run the part that creates the file. doCheck = true; - meta = { + meta = with lib; { description = "SDK for the LADSPA audio plugin standard"; longDescription = '' The LADSPA SDK, including the ladspa.h API header file, @@ -43,8 +43,8 @@ stdenv.mkDerivation rec { three example programs (applyplugin, analyseplugin and listplugins). ''; homepage = "http://www.ladspa.org/ladspa_sdk/overview.html"; - license = lib.licenses.lgpl2; - maintainers = [ lib.maintainers.magnetophon ]; - platforms = lib.platforms.linux; + license = licenses.lgpl2; + maintainers = [ maintainers.magnetophon ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/audio/ladspa-sdk/ladspah.nix b/pkgs/applications/audio/ladspa-sdk/ladspah.nix index fae714eb19ae3a..b649034cf03573 100644 --- a/pkgs/applications/audio/ladspa-sdk/ladspah.nix +++ b/pkgs/applications/audio/ladspa-sdk/ladspah.nix @@ -16,15 +16,15 @@ stdenv.mkDerivation rec { cp src/ladspa.h $out/include/ladspa.h ''; - meta = { + meta = with lib; { description = "LADSPA format audio plugins header file"; longDescription = '' The ladspa.h API header file from the LADSPA SDK. For the full SDK, use the ladspa-sdk package. ''; homepage = "http://www.ladspa.org/ladspa_sdk/overview.html"; - license = lib.licenses.lgpl2; - maintainers = [ lib.maintainers.magnetophon ]; - platforms = lib.platforms.all; + license = licenses.lgpl2; + maintainers = [ maintainers.magnetophon ]; + platforms = platforms.all; }; } diff --git a/pkgs/applications/audio/magnetophonDSP/CharacterCompressor/default.nix b/pkgs/applications/audio/magnetophonDSP/CharacterCompressor/default.nix index 6de1768401157d..4fd2ab1ef321cc 100644 --- a/pkgs/applications/audio/magnetophonDSP/CharacterCompressor/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/CharacterCompressor/default.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { cp -r CharacterCompressorMono.lv2/ $out/lib/lv2 ''; - meta = { + meta = with lib; { description = "Compressor with character. For jack and lv2"; homepage = "https://github.com/magnetophon/CharacterCompressor"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.magnetophon ]; + license = licenses.gpl3; + maintainers = [ maintainers.magnetophon ]; }; } diff --git a/pkgs/applications/audio/magnetophonDSP/CompBus/default.nix b/pkgs/applications/audio/magnetophonDSP/CompBus/default.nix index 528c972a9829e4..a31d3d93e9d174 100644 --- a/pkgs/applications/audio/magnetophonDSP/CompBus/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/CompBus/default.nix @@ -44,10 +44,10 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with lib; { description = "Group of compressors mixed into a bus, sidechained from that mix bus. For jack and lv2"; homepage = "https://github.com/magnetophon/CompBus"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.magnetophon ]; + license = licenses.gpl3; + maintainers = [ maintainers.magnetophon ]; }; } diff --git a/pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix b/pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix index b10cb501e12e1f..5abd5f5aae6656 100644 --- a/pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/ConstantDetuneChorus/default.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { cp -r ConstantDetuneChorus.lv2/ $out/lib/lv2 ''; - meta = { + meta = with lib; { description = "Chorus algorithm that maintains constant and symmetric detuning depth (in cents), regardless of modulation rate. For jack and lv2"; homepage = "https://github.com/magnetophon/constant-detune-chorus"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.magnetophon ]; + license = licenses.gpl3; + maintainers = [ maintainers.magnetophon ]; # ERROR3 : n is NaN in an Interval broken = true; }; diff --git a/pkgs/applications/audio/magnetophonDSP/LazyLimiter/default.nix b/pkgs/applications/audio/magnetophonDSP/LazyLimiter/default.nix index cc968b5226cc7c..b571cfdc8f920f 100644 --- a/pkgs/applications/audio/magnetophonDSP/LazyLimiter/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/LazyLimiter/default.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { cp -r LazyLimiter.lv2/ $out/lib/lv2 ''; - meta = { + meta = with lib; { description = "Fast yet clean lookahead limiter for jack and lv2"; homepage = "https://magnetophon.github.io/LazyLimiter/"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.magnetophon ]; + license = licenses.gpl2; + maintainers = [ maintainers.magnetophon ]; }; } diff --git a/pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix b/pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix index 3dfea346b60a3c..ad1dc29506bc60 100644 --- a/pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix @@ -45,10 +45,10 @@ stdenv.mkDerivation rec { cp -r MBdistortion.lv2/ $out/lib/lv2 ''; - meta = { + meta = with lib; { description = "Mid-side multiband distortion for jack and lv2"; homepage = "https://github.com/magnetophon/MBdistortion"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.magnetophon ]; + license = licenses.gpl2; + maintainers = [ maintainers.magnetophon ]; }; } diff --git a/pkgs/applications/audio/magnetophonDSP/RhythmDelay/default.nix b/pkgs/applications/audio/magnetophonDSP/RhythmDelay/default.nix index ab7e651fc691af..c8e3ca4f6f1a0c 100644 --- a/pkgs/applications/audio/magnetophonDSP/RhythmDelay/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/RhythmDelay/default.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { cp -r RhythmDelay.lv2/ $out/lib/lv2 ''; - meta = { + meta = with lib; { description = "Tap a rhythm into your delay! For jack and lv2"; homepage = "https://github.com/magnetophon/RhythmDelay"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.magnetophon ]; + license = licenses.gpl3; + maintainers = [ maintainers.magnetophon ]; }; } diff --git a/pkgs/applications/audio/magnetophonDSP/VoiceOfFaust/default.nix b/pkgs/applications/audio/magnetophonDSP/VoiceOfFaust/default.nix index 983e3924f815fd..69a7ec94c92e7c 100644 --- a/pkgs/applications/audio/magnetophonDSP/VoiceOfFaust/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/VoiceOfFaust/default.nix @@ -46,10 +46,10 @@ stdenv.mkDerivation rec { sed -i "s@../PureData/OscSendVoc.pd@$out/bin/PureData/OscSendVoc.pd@g" launchers/pitchTracker ''; - meta = { + meta = with lib; { description = "Turn your voice into a synthesizer"; homepage = "https://github.com/magnetophon/VoiceOfFaust"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.magnetophon ]; + license = licenses.gpl3; + maintainers = [ maintainers.magnetophon ]; }; } diff --git a/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix b/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix index beb40dcbfecec0..04e5d6816e12c0 100644 --- a/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/faustCompressors/default.nix @@ -49,10 +49,10 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with lib; { description = "Collection of bread and butter compressors"; homepage = "https://github.com/magnetophon/faustCompressors"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.magnetophon ]; + license = licenses.gpl3; + maintainers = [ maintainers.magnetophon ]; }; } diff --git a/pkgs/applications/audio/magnetophonDSP/pluginUtils/default.nix b/pkgs/applications/audio/magnetophonDSP/pluginUtils/default.nix index 7c81a87cfe9fa4..93e2d5f633175a 100644 --- a/pkgs/applications/audio/magnetophonDSP/pluginUtils/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/pluginUtils/default.nix @@ -44,10 +44,10 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with lib; { description = "Some simple utility lv2 plugins"; homepage = "https://github.com/magnetophon/pluginUtils"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.magnetophon ]; + license = licenses.gpl3; + maintainers = [ maintainers.magnetophon ]; }; } diff --git a/pkgs/applications/audio/magnetophonDSP/shelfMultiBand/default.nix b/pkgs/applications/audio/magnetophonDSP/shelfMultiBand/default.nix index 70020efe098072..8d88867071223a 100644 --- a/pkgs/applications/audio/magnetophonDSP/shelfMultiBand/default.nix +++ b/pkgs/applications/audio/magnetophonDSP/shelfMultiBand/default.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { cp -r shelfMultiBandMono.lv2/ $out/lib/lv2 ''; - meta = { + meta = with lib; { description = "Multiband compressor made from shelving filters"; homepage = "https://github.com/magnetophon/shelfMultiBand"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.magnetophon ]; + license = licenses.gpl3; + maintainers = [ maintainers.magnetophon ]; }; } diff --git a/pkgs/applications/audio/non/default.nix b/pkgs/applications/audio/non/default.nix index 28ce729667e3d4..569beee34a4019 100644 --- a/pkgs/applications/audio/non/default.nix +++ b/pkgs/applications/audio/non/default.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation { env.CXXFLAGS = "-std=c++14"; - meta = { + meta = with lib; { description = "Lightweight and lightning fast modular Digital Audio Workstation"; homepage = "http://non.tuxfamily.org"; - license = lib.licenses.lgpl21; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.nico202 ]; + license = licenses.lgpl21; + platforms = platforms.linux; + maintainers = [ maintainers.nico202 ]; }; } diff --git a/pkgs/applications/audio/parrot/default.nix b/pkgs/applications/audio/parrot/default.nix index c34bd7649b13bd..532a1aa36e9501 100644 --- a/pkgs/applications/audio/parrot/default.nix +++ b/pkgs/applications/audio/parrot/default.nix @@ -51,11 +51,11 @@ rustPlatform.buildRustPackage { tagPrefix = "v"; }; - meta = { + meta = with lib; { description = "Hassle-free Discord music bot"; homepage = "https://github.com/aquelemiguel/parrot"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ gerg-l ]; + license = licenses.mit; + maintainers = with maintainers; [ gerg-l ]; mainProgram = "parrot"; }; } diff --git a/pkgs/applications/audio/pd-plugins/timbreid/default.nix b/pkgs/applications/audio/pd-plugins/timbreid/default.nix index b11e6ffcdb55e2..2e9bc577efd0d0 100644 --- a/pkgs/applications/audio/pd-plugins/timbreid/default.nix +++ b/pkgs/applications/audio/pd-plugins/timbreid/default.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { rm -rf $out/share/ ''; - meta = { + meta = with lib; { description = "Collection of audio feature analysis externals for puredata"; homepage = "http://williambrent.conflations.com/pages/research.html"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.magnetophon ]; - platforms = lib.platforms.linux; + license = licenses.gpl3; + maintainers = [ maintainers.magnetophon ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/audio/pd-plugins/zexy/default.nix b/pkgs/applications/audio/pd-plugins/zexy/default.nix index 642ccee603b80f..2e0b21c96cbe3e 100644 --- a/pkgs/applications/audio/pd-plugins/zexy/default.nix +++ b/pkgs/applications/audio/pd-plugins/zexy/default.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { rm -rf $out/lib ''; - meta = { + meta = with lib; { description = "Swiss army knife for puredata"; homepage = "http://puredata.info/downloads/zexy"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.magnetophon ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = [ maintainers.magnetophon ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/audio/projectm/default.nix b/pkgs/applications/audio/projectm/default.nix index 09db5ad83393ff..dad5375338ef26 100644 --- a/pkgs/applications/audio/projectm/default.nix +++ b/pkgs/applications/audio/projectm/default.nix @@ -54,11 +54,11 @@ mkDerivation rec { rm $out/bin/projectM-unittest ''; - meta = { + meta = with lib; { homepage = "https://github.com/projectM-visualizer/projectm"; description = "Cross-platform Milkdrop-compatible music visualizer"; - license = lib.licenses.lgpl21; - platforms = lib.platforms.unix; + license = licenses.lgpl21; + platforms = platforms.unix; maintainers = [ ]; longDescription = '' The open-source project that reimplements the esteemed Winamp Milkdrop by Geiss in a more modern, cross-platform reusable library. diff --git a/pkgs/applications/blockchains/cryptop/default.nix b/pkgs/applications/blockchains/cryptop/default.nix index 61ab913b2e1562..5c9c337569a1db 100644 --- a/pkgs/applications/blockchains/cryptop/default.nix +++ b/pkgs/applications/blockchains/cryptop/default.nix @@ -25,11 +25,11 @@ buildPythonApplication rec { # No tests in archive doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/huwwp/cryptop"; description = "Command line Cryptocurrency Portfolio"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ bhipple ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ bhipple ]; mainProgram = "cryptop"; }; } diff --git a/pkgs/applications/blockchains/monero-gui/default.nix b/pkgs/applications/blockchains/monero-gui/default.nix index f1173d97f8d9a5..6d2232bbda5a1d 100644 --- a/pkgs/applications/blockchains/monero-gui/default.nix +++ b/pkgs/applications/blockchains/monero-gui/default.nix @@ -146,12 +146,12 @@ stdenv.mkDerivation rec { done; ''; - meta = { + meta = with lib; { description = "Private, secure, untraceable currency"; homepage = "https://getmonero.org/"; - license = lib.licenses.bsd3; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ rnhmjoj ]; + license = licenses.bsd3; + platforms = platforms.all; + maintainers = with maintainers; [ rnhmjoj ]; mainProgram = "monero-wallet-gui"; }; } diff --git a/pkgs/applications/blockchains/nano-wallet/default.nix b/pkgs/applications/blockchains/nano-wallet/default.nix index f0080a1150da3b..880ae0300d8235 100644 --- a/pkgs/applications/blockchains/nano-wallet/default.nix +++ b/pkgs/applications/blockchains/nano-wallet/default.nix @@ -74,14 +74,14 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = { + meta = with lib; { description = "Wallet for Nano cryptocurrency"; homepage = "https://nano.org/en/wallet/"; - license = lib.licenses.bsd2; + license = licenses.bsd2; # Fails on Darwin. See: # https://github.com/NixOS/nixpkgs/pull/39295#issuecomment-386800962 - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ jluttine ]; + platforms = platforms.linux; + maintainers = with maintainers; [ jluttine ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/acm-terminal/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/acm-terminal/package.nix index 07e909b34a6811..9f30bec7bf1961 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/acm-terminal/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/acm-terminal/package.nix @@ -25,10 +25,10 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { homepage = "https://github.com/twlz0ne/acm-terminal"; description = "Patch for LSP bridge acm on Terminal"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ kira-bruneau ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ kira-bruneau ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/acm/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/acm/package.nix index 1e411af1a871be..7e0315d903e0d1 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/acm/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/acm/package.nix @@ -15,11 +15,11 @@ melpaBuild { files = ''("acm/*.el" "acm/icons")''; - meta = { + meta = with lib; { description = "Asynchronous Completion Menu"; homepage = "https://github.com/manateelazycat/lsp-bridge"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + maintainers = with maintainers; [ fxttr kira-bruneau ]; diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/cask/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/cask/package.nix index 654c2607452946..a39ff119293dff 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/cask/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/cask/package.nix @@ -63,7 +63,7 @@ melpaBuild (finalAttrs: { rev-prefix = "v"; }; - meta = { + meta = with lib; { homepage = "https://github.com/cask/cask"; description = "Project management for Emacs"; longDescription = '' @@ -71,8 +71,8 @@ melpaBuild (finalAttrs: { package development cycle; development, dependencies, testing, building, packaging and more. ''; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "cask"; - maintainers = with lib.maintainers; [ AndersonTorres ]; + maintainers = with maintainers; [ AndersonTorres ]; }; }) diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/color-theme-solarized/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/color-theme-solarized/package.nix index 13d06e451dcd92..5f3fce6001173f 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/color-theme-solarized/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/color-theme-solarized/package.nix @@ -21,10 +21,10 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { homepage = "http://ethanschoonover.com/solarized"; description = "Precision colors for machines and people; Emacs implementation"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = licenses.mit; + maintainers = with maintainers; [ AndersonTorres ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/control-lock/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/control-lock/package.nix index 5a352c5c3bc492..4f745a0c53ac5c 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/control-lock/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/control-lock/package.nix @@ -13,10 +13,10 @@ melpaBuild { hash = "sha256-JCrmS3FSGDHSR+eAR0X/uO0nAgd3TUmFxwEVH5+KV+4="; }; - meta = { + meta = with lib; { homepage = "https://www.emacswiki.org/emacs/control-lock.el"; description = "Like caps-lock, but for your control key"; - license = lib.licenses.free; - platforms = lib.platforms.all; + license = licenses.free; + platforms = platforms.all; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/copilot/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/copilot/package.nix index 86109b57a2ac2c..eb1c008f7e432d 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/copilot/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/copilot/package.nix @@ -51,11 +51,11 @@ melpaBuild { propagatedUserEnvPkgs = [ nodejs ]; - meta = { + meta = with lib; { description = "Unofficial copilot plugin for Emacs"; homepage = "https://github.com/copilot-emacs/copilot.el"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ bbigras ]; + license = licenses.mit; + maintainers = with maintainers; [ bbigras ]; platforms = [ "aarch64-darwin" "aarch64-linux" diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/package.nix index 073eb3b0592460..e773eed5b702ab 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/package.nix @@ -13,10 +13,10 @@ melpaBuild rec { hash = "sha256-nEqdM/ZQoBDeGzPH/OisCv7ErXHyEBS+J20oIublIQM="; }; - meta = { + meta = with lib; { homepage = "https://gitweb.gentoo.org/proj/ebuild-mode.git/"; description = "Major modes for Gentoo package files"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/el-easydraw/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/el-easydraw/package.nix index f9a586b23b8de9..61ac9d58d8e684 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/el-easydraw/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/el-easydraw/package.nix @@ -23,10 +23,10 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { tagPrefix = "v"; }; - meta = { + meta = with lib; { homepage = "https://github.com/misohena/el-easydraw"; description = "Embedded drawing tool for Emacs"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ brahyerr ]; + license = licenses.gpl3; + maintainers = with maintainers; [ brahyerr ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/elisp-ffi/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/elisp-ffi/package.nix index 1289b1effde34c..2704d257505e93 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/elisp-ffi/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/elisp-ffi/package.nix @@ -31,7 +31,7 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/skeeto/elisp-ffi"; description = "Emacs Lisp Foreign Function Interface"; longDescription = '' @@ -40,7 +40,7 @@ melpaBuild { driving a subprocess to do the heavy lifting, passing result values on to Emacs. ''; - license = lib.licenses.unlicense; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = licenses.unlicense; + maintainers = with maintainers; [ AndersonTorres ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/emacs-conflict/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/emacs-conflict/package.nix index fea6905e6f31fa..c661722df4875d 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/emacs-conflict/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/emacs-conflict/package.nix @@ -18,10 +18,10 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { homepage = "https://github.com/ibizaman/emacs-conflict"; description = "Resolve conflicts happening when using file synchronization tools"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ibizaman ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ ibizaman ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/evil-markdown/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/evil-markdown/package.nix index 57249b72fbb868..bda8e11b66ad65 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/evil-markdown/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/evil-markdown/package.nix @@ -25,10 +25,10 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { homepage = "https://github.com/Somelauw/evil-markdown"; description = "Integrates Emacs evil and markdown"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ leungbk ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ leungbk ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/font-lock-plus/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/font-lock-plus/package.nix index 93d963a09e08d2..bd8893f18ed884 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/font-lock-plus/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/font-lock-plus/package.nix @@ -19,10 +19,10 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/emacsmirror/font-lock-plus"; description = "Enhancements to standard library font-lock.el"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ AndersonTorres ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/git-undo/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/git-undo/package.nix index b1a490fb2c9b74..da86072aef5768 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/git-undo/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/git-undo/package.nix @@ -18,10 +18,10 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { homepage = "https://github.com/jwiegley/git-undo-el"; description = "Revert region to most recent Git-historical version"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ leungbk ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ leungbk ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/grid/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/grid/package.nix index 0b8b5108043c4a..795f925ecdc099 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/grid/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/grid/package.nix @@ -18,10 +18,10 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { homepage = "https://github.com/ichernyshovvv/grid.el"; description = "Library to put text data into boxes and manipulate them"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ AndersonTorres ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/icicles/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/icicles/package.nix index 74f0b3bfeee8d8..0cb9855fa33064 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/icicles/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/icicles/package.nix @@ -18,10 +18,10 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { homepage = "https://emacswiki.org/emacs/Icicles"; description = "Emacs library that enhances minibuffer completion"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ AndersonTorres ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/idris2-mode/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/idris2-mode/package.nix index 52f82935717dd9..c695f8f5d36f38 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/idris2-mode/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/idris2-mode/package.nix @@ -26,11 +26,11 @@ melpaBuild { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/idris-community/idris2-mode"; description = "Emacs mode for editing Idris 2 code"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + maintainers = with maintainers; [ wuyoli AndersonTorres ]; diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-plus/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-plus/package.nix index fa7891645607a3..1e37830c9cb826 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-plus/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-plus/package.nix @@ -19,11 +19,11 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { homepage = "https://www.emacswiki.org/emacs/IsearchPlus"; description = "Extensions to isearch"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + maintainers = with maintainers; [ leungbk AndersonTorres ]; diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-prop/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-prop/package.nix index 4b893e5b98fd4b..bb686373c11ed3 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-prop/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-prop/package.nix @@ -18,11 +18,11 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { homepage = "https://www.emacswiki.org/emacs/IsearchPlus"; description = "Search text- or overlay-property contexts"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ leungbk AndersonTorres ]; diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/jam-mode/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/jam-mode/package.nix index 418f201fa933ba..89ad1af786e0bc 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/jam-mode/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/jam-mode/package.nix @@ -27,9 +27,9 @@ melpaBuild rec { mv tmp.el jam-mode.el ''; - meta = { + meta = with lib; { description = "Emacs major mode for editing Jam files"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ qyliss ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ qyliss ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lsp-bridge/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lsp-bridge/default.nix index 0682e0edac1491..6af67f12db3e75 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lsp-bridge/default.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lsp-bridge/default.nix @@ -89,11 +89,11 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { description = "Blazingly fast LSP client for Emacs"; homepage = "https://github.com/manateelazycat/lsp-bridge"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + maintainers = with maintainers; [ fxttr kira-bruneau ]; diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lspce/module.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lspce/module.nix index c3d6a163497085..917c5047c19c1c 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lspce/module.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lspce/module.nix @@ -30,10 +30,10 @@ rustPlatform.buildRustPackage { mv --verbose $out/lib/liblspce_module${libExt} $out/lib/lspce-module${libExt} ''; - meta = { + meta = with lib; { homepage = "https://github.com/zbelial/lspce"; description = "LSP Client for Emacs implemented as a module using Rust"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ AndersonTorres ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/notdeft/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/notdeft/package.nix index 055c09a05f6106..30d9b34a185ca1 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/notdeft/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/notdeft/package.nix @@ -63,11 +63,11 @@ melpaBuild { updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; }; - meta = { + meta = with lib; { homepage = "https://tero.hasu.is/notdeft/"; description = "Fork of Deft that uses Xapian as a search engine"; - maintainers = [ lib.maintainers.nessdoor ]; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux; + maintainers = [ maintainers.nessdoor ]; + license = licenses.bsd3; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/pod-mode/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/pod-mode/package.nix index bf6d2aef72ce97..e44859a8ac68cb 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/pod-mode/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/pod-mode/package.nix @@ -26,10 +26,10 @@ melpaBuild { install -Dm644 -t ''${!outputDoc}/share/doc/pod-mode/ ChangeLog README ''; - meta = { + meta = with lib; { homepage = "https://metacpan.org/dist/pod-mode"; description = "Major mode for editing .pod-files"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ qyliss ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ qyliss ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/rect-mark/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/rect-mark/package.nix index aee5c8ba2dbf61..4f8f16fa5e4fca 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/rect-mark/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/rect-mark/package.nix @@ -21,10 +21,10 @@ melpaBuild { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { homepage = "http://emacswiki.org/emacs/RectangleMark"; description = "Mark a rectangle of text with highlighting"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ AndersonTorres ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/sunrise-commander/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/sunrise-commander/package.nix index 7cf5a63f4b6cf6..bbee98be0d329d 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/sunrise-commander/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/sunrise-commander/package.nix @@ -19,11 +19,11 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { homepage = "https://github.com/sunrise-commander/sunrise-commander/"; description = "Orthodox (two-pane) file manager for Emacs"; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.AndersonTorres ]; - platforms = lib.platforms.all; + license = licenses.gpl3Plus; + maintainers = [ maintainers.AndersonTorres ]; + platforms = platforms.all; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/sv-kalender/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/sv-kalender/package.nix index 0227fcefc152a4..4dafdaad3d0675 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/sv-kalender/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/sv-kalender/package.nix @@ -13,10 +13,10 @@ melpaBuild { hash = "sha256-VXz3pO6N94XM8FzLSAoYrj3NEh4wp0UiuG6ad8M7nVU="; }; - meta = { + meta = with lib; { homepage = "https://www.emacswiki.org/emacs/sv-kalender.el"; description = "Swedish calendar for Emacs"; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.rycee ]; + license = licenses.gpl3Plus; + maintainers = [ maintainers.rycee ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/tsc/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/tsc/package.nix index c3fafdf27a1333..6e76dde72e76e8 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/tsc/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/tsc/package.nix @@ -49,9 +49,9 @@ melpaBuild { updateScript = nix-update-script { attrPath = "emacsPackages.tsc.tsc-dyn"; }; }; - meta = { + meta = with lib; { description = "Core APIs of the Emacs binding for tree-sitter"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pimeys ]; + license = licenses.mit; + maintainers = with maintainers; [ pimeys ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/voicemacs/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/voicemacs/package.nix index d6c86c0a7b8433..e271f24b9bc7d2 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/voicemacs/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/voicemacs/package.nix @@ -51,10 +51,10 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { homepage = "https://github.com/jcaw/voicemacs/"; description = "Set of utilities for controlling Emacs by voice"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ AndersonTorres ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/wat-mode/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/wat-mode/package.nix index e4bb260d14b447..cb3bc844ccfb95 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/wat-mode/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/wat-mode/package.nix @@ -18,10 +18,10 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { homepage = "https://github.com/devonsparks/wat-mode"; description = "Emacs major mode for WebAssembly's text format"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ nagy ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ nagy ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/yes-no/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/yes-no/package.nix index 2981cb8f471125..9ce017c85bc5b3 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/yes-no/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/yes-no/package.nix @@ -13,10 +13,10 @@ melpaBuild { hash = "sha256-ceCOBFfixmGVB3kaSvOv1YZThC2pleYnS8gXhLrjhA8="; }; - meta = { + meta = with lib; { homepage = "https://www.emacswiki.org/emacs/yes-no.el"; description = "Specify use of `y-or-n-p' or `yes-or-no-p' on a case-by-case basis"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ jcs090218 ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ jcs090218 ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/youtube-dl/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/youtube-dl/package.nix index d3e5a5cfbbb3b9..7e6500df304762 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/youtube-dl/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/youtube-dl/package.nix @@ -18,10 +18,10 @@ melpaBuild { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Emacs youtube-dl download manager"; homepage = "https://github.com/skeeto/youtube-dl-emacs"; - license = lib.licenses.unlicense; - maintainers = with lib.maintainers; [ leungbk ]; + license = licenses.unlicense; + maintainers = with maintainers; [ leungbk ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/zstd/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/zstd/default.nix index 4dfe2484dbfddf..715af8847dc783 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/zstd/default.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/zstd/default.nix @@ -28,10 +28,10 @@ melpaBuild { files = ''(:defaults "zstd-core${libExt}")''; - meta = { + meta = with lib; { homepage = "https://github.com/syohex/emacs-zstd"; description = "Zstd binding for Emacs Lisp"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ nagy ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ nagy ]; }; } diff --git a/pkgs/applications/editors/jupyter-kernels/iruby/default.nix b/pkgs/applications/editors/jupyter-kernels/iruby/default.nix index 26da29208d3a7e..b7de1f6053c4fa 100644 --- a/pkgs/applications/editors/jupyter-kernels/iruby/default.nix +++ b/pkgs/applications/editors/jupyter-kernels/iruby/default.nix @@ -29,15 +29,15 @@ let }; }; - meta = { + meta = with lib; { description = "Ruby kernel for Jupyter"; homepage = "https://github.com/SciRuby/iruby"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ costrouc thomasjm ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }; diff --git a/pkgs/applications/editors/jupyter-kernels/octave/kernel.nix b/pkgs/applications/editors/jupyter-kernels/octave/kernel.nix index e21608970e6d0b..db1001c4bfe469 100644 --- a/pkgs/applications/editors/jupyter-kernels/octave/kernel.nix +++ b/pkgs/applications/editors/jupyter-kernels/octave/kernel.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { # There appears to be a similar problem with metakernel's tests doCheck = false; - meta = { + meta = with lib; { description = "Jupyter kernel for Octave"; homepage = "https://github.com/Calysto/octave_kernel"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ thomasjm ]; - platforms = lib.platforms.all; + license = licenses.bsd3; + maintainers = with maintainers; [ thomasjm ]; + platforms = platforms.all; }; } diff --git a/pkgs/applications/editors/jupyter-kernels/xeus-cling/xeus-cling.nix b/pkgs/applications/editors/jupyter-kernels/xeus-cling/xeus-cling.nix index fd88db33bcc4a7..df029b49829b3c 100644 --- a/pkgs/applications/editors/jupyter-kernels/xeus-cling/xeus-cling.nix +++ b/pkgs/applications/editors/jupyter-kernels/xeus-cling/xeus-cling.nix @@ -82,12 +82,12 @@ clangStdenv.mkDerivation rec { dontStrip = debug; - meta = { + meta = with lib; { description = "Jupyter kernel for the C++ programming language"; mainProgram = "xcpp"; homepage = "https://github.com/jupyter-xeus/xeus-cling"; - maintainers = with lib.maintainers; [ thomasjm ]; - platforms = lib.platforms.unix; - license = lib.licenses.mit; + maintainers = with maintainers; [ thomasjm ]; + platforms = platforms.unix; + license = licenses.mit; }; } diff --git a/pkgs/applications/editors/vim/plugins/non-generated/avante-nvim/default.nix b/pkgs/applications/editors/vim/plugins/non-generated/avante-nvim/default.nix index 9d8a386e7826e2..7ff32cc1fce706 100644 --- a/pkgs/applications/editors/vim/plugins/non-generated/avante-nvim/default.nix +++ b/pkgs/applications/editors/vim/plugins/non-generated/avante-nvim/default.nix @@ -75,11 +75,11 @@ vimUtils.buildVimPlugin { doInstallCheck = true; nvimRequireCheck = "avante"; - meta = { + meta = with lib; { description = "Neovim plugin designed to emulate the behaviour of the Cursor AI IDE"; homepage = "https://github.com/yetone/avante.nvim"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ ttrei aarnphm ]; diff --git a/pkgs/applications/editors/vim/plugins/non-generated/moveline-nvim/default.nix b/pkgs/applications/editors/vim/plugins/non-generated/moveline-nvim/default.nix index d388bba794a6c4..c4e959ac0374be 100644 --- a/pkgs/applications/editors/vim/plugins/non-generated/moveline-nvim/default.nix +++ b/pkgs/applications/editors/vim/plugins/non-generated/moveline-nvim/default.nix @@ -37,13 +37,13 @@ vimUtils.buildVimPlugin { nvimRequireCheck = "moveline"; - meta = { + meta = with lib; { description = "Neovim plugin for moving lines up and down"; homepage = "https://github.com/willothy/moveline.nvim"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ redxtech ]; + license = licenses.mit; + maintainers = with maintainers; [ redxtech ]; badPlatforms = [ - lib.systems.inspect.patterns.isDarwin + systems.inspect.patterns.isDarwin ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/azdavis.millet/default.nix b/pkgs/applications/editors/vscode/extensions/azdavis.millet/default.nix index 3020dc31b76e29..9f1f3808660673 100644 --- a/pkgs/applications/editors/vscode/extensions/azdavis.millet/default.nix +++ b/pkgs/applications/editors/vscode/extensions/azdavis.millet/default.nix @@ -21,10 +21,10 @@ vscode-utils.buildVscodeMarketplaceExtension { cd "$out/$installPrefix" jq '.contributes.configuration.properties."millet.server.path".default = "${millet}/bin/millet-ls"' package.json | sponge package.json ''; - meta = { + meta = with lib; { description = "Standard ML support for VS Code"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=azdavis.millet"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.smasher164 ]; + license = licenses.mit; + maintainers = [ maintainers.smasher164 ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/charliermarsh.ruff/default.nix b/pkgs/applications/editors/vscode/extensions/charliermarsh.ruff/default.nix index d54b702e5175c8..70472b73377044 100644 --- a/pkgs/applications/editors/vscode/extensions/charliermarsh.ruff/default.nix +++ b/pkgs/applications/editors/vscode/extensions/charliermarsh.ruff/default.nix @@ -33,12 +33,12 @@ vscode-utils.buildVscodeMarketplaceExtension { } // sources.${stdenvNoCC.system} or (throw "Unsupported system ${stdenvNoCC.system}"); - meta = { - license = lib.licenses.mit; + meta = with lib; { + license = licenses.mit; changelog = "https://marketplace.visualstudio.com/items/charliermarsh.ruff/changelog"; description = "Visual Studio Code extension with support for the Ruff linter"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=charliermarsh.ruff"; homepage = "https://github.com/astral-sh/ruff-vscode"; - maintainers = [ lib.maintainers.azd325 ]; + maintainers = [ maintainers.azd325 ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/default.nix b/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/default.nix index e630b5c674d041..d3adca3d684303 100644 --- a/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/default.nix +++ b/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/default.nix @@ -28,13 +28,13 @@ vscode-utils.buildVscodeMarketplaceExtension rec { ln -s ${rescript-editor-analysis}/bin ${analysisDir} ''; - meta = { + meta = with lib; { description = "Official VSCode plugin for ReScript"; homepage = "https://github.com/rescript-lang/rescript-vscode"; maintainers = [ - lib.maintainers.dlip - lib.maintainers.jayesh-bhoot + maintainers.dlip + maintainers.jayesh-bhoot ]; - license = lib.licenses.mit; + license = licenses.mit; }; } diff --git a/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/rescript-editor-analysis.nix b/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/rescript-editor-analysis.nix index b4763dc417a185..947bfb952aad32 100644 --- a/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/rescript-editor-analysis.nix +++ b/pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/rescript-editor-analysis.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation { install -D -m0555 _build/default/analysis/bin/main.exe $out/bin/rescript-editor-analysis.exe ''; - meta = { + meta = with lib; { description = "Analysis binary for the ReScript VSCode plugin"; homepage = "https://github.com/rescript-lang/rescript-vscode"; maintainers = [ - lib.maintainers.dlip - lib.maintainers.jayesh-bhoot + maintainers.dlip + maintainers.jayesh-bhoot ]; - license = lib.licenses.mit; + license = licenses.mit; }; } diff --git a/pkgs/applications/editors/vscode/extensions/chrischinchilla.vscode-pandoc/default.nix b/pkgs/applications/editors/vscode/extensions/chrischinchilla.vscode-pandoc/default.nix index 775206fa0c5311..cb188f790de294 100644 --- a/pkgs/applications/editors/vscode/extensions/chrischinchilla.vscode-pandoc/default.nix +++ b/pkgs/applications/editors/vscode/extensions/chrischinchilla.vscode-pandoc/default.nix @@ -20,11 +20,11 @@ vscode-utils.buildVscodeMarketplaceExtension { postInstall = '' jq '.contributes.configuration.properties."pandoc.executable".default = "${lib.getExe pandoc}"' $out/$installPrefix/package.json | sponge $out/$installPrefix/package.json ''; - meta = { + meta = with lib; { description = "Converts Markdown files to pdf, docx, or html files using pandoc"; homepage = "https://github.com/ChrisChinchilla/vscode-pandoc#readme"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=yzane.markdown-pdf"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pandapip1 ]; + license = licenses.mit; + maintainers = with maintainers; [ pandapip1 ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/foxundermoon.shell-format/default.nix b/pkgs/applications/editors/vscode/extensions/foxundermoon.shell-format/default.nix index 51824f34ff6e95..35d8f5f5d1207e 100644 --- a/pkgs/applications/editors/vscode/extensions/foxundermoon.shell-format/default.nix +++ b/pkgs/applications/editors/vscode/extensions/foxundermoon.shell-format/default.nix @@ -24,10 +24,10 @@ vscode-utils.buildVscodeMarketplaceExtension { jq '.contributes.configuration.properties."shellformat.path".default = "${shfmt}/bin/shfmt"' package.json | sponge package.json ''; - meta = { + meta = with lib; { downloadPage = "https://marketplace.visualstudio.com/items?itemName=foxundermoon.shell-format"; homepage = "https://github.com/foxundermoon/vs-shell-format"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.dbirks ]; + license = licenses.mit; + maintainers = [ maintainers.dbirks ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/hashicorp.terraform/default.nix b/pkgs/applications/editors/vscode/extensions/hashicorp.terraform/default.nix index dca2a081d92be2..99e2f76d82b711 100644 --- a/pkgs/applications/editors/vscode/extensions/hashicorp.terraform/default.nix +++ b/pkgs/applications/editors/vscode/extensions/hashicorp.terraform/default.nix @@ -17,8 +17,8 @@ vscode-utils.buildVscodeMarketplaceExtension rec { substituteInPlace out/serverPath.js --replace TERRAFORM-LS-PATH ${terraform-ls}/bin/terraform-ls ''; - meta = { - license = lib.licenses.mit; - maintainers = [ lib.maintainers.rhoriguchi ]; + meta = with lib; { + license = licenses.mit; + maintainers = [ maintainers.rhoriguchi ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/kamadorueda.alejandra/default.nix b/pkgs/applications/editors/vscode/extensions/kamadorueda.alejandra/default.nix index a9c07334c7b0b8..367c4ac91f05f6 100644 --- a/pkgs/applications/editors/vscode/extensions/kamadorueda.alejandra/default.nix +++ b/pkgs/applications/editors/vscode/extensions/kamadorueda.alejandra/default.nix @@ -29,10 +29,10 @@ vscode-utils.buildVscodeMarketplaceExtension { < package.json \ | sponge package.json ''; - meta = { + meta = with lib; { description = "Uncompromising Nix Code Formatter"; homepage = "https://github.com/kamadorueda/alejandra"; - license = lib.licenses.unlicense; - maintainers = [ lib.maintainers.kamadorueda ]; + license = licenses.unlicense; + maintainers = [ maintainers.kamadorueda ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/mongodb.mongodb-vscode/default.nix b/pkgs/applications/editors/vscode/extensions/mongodb.mongodb-vscode/default.nix index 59f33afaf39354..a950ab1a6d7835 100644 --- a/pkgs/applications/editors/vscode/extensions/mongodb.mongodb-vscode/default.nix +++ b/pkgs/applications/editors/vscode/extensions/mongodb.mongodb-vscode/default.nix @@ -8,12 +8,12 @@ vscode-utils.buildVscodeMarketplaceExtension { hash = "sha256-JlAfoYLFja60zNmNS0T8YK6WUrw/oOq/uurP48ad9bY="; }; - meta = { + meta = with lib; { changelog = "https://github.com/mongodb-js/vscode/blob/main/CHANGELOG.md"; description = "An extension for VS Code that makes it easy to work with your data in MongoDB"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=mongodb.mongodb-vscode"; homepage = "https://github.com/mongodb-js/vscode"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ drupol ]; + license = licenses.asl20; + maintainers = with maintainers; [ drupol ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/ms-dotnettools.csdevkit/default.nix b/pkgs/applications/editors/vscode/extensions/ms-dotnettools.csdevkit/default.nix index 1f5b3bb39bff77..0675832575afaa 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-dotnettools.csdevkit/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-dotnettools.csdevkit/default.nix @@ -63,12 +63,12 @@ buildVscodeMarketplaceExtension { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { changelog = "https://marketplace.visualstudio.com/items/ms-dotnettools.csdevkit/changelog"; description = "Official Visual Studio Code extension for C# from Microsoft"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csdevkit"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ ggg ]; + license = licenses.unfree; + maintainers = with maintainers; [ ggg ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/applications/editors/vscode/extensions/ms-dotnettools.csharp/default.nix b/pkgs/applications/editors/vscode/extensions/ms-dotnettools.csharp/default.nix index 9b4fcddebf1b4e..1a622a2550a3e4 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-dotnettools.csharp/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-dotnettools.csharp/default.nix @@ -58,11 +58,11 @@ buildVscodeMarketplaceExtension { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { description = "Official C# support for Visual Studio Code"; homepage = "https://github.com/dotnet/vscode-csharp"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ggg ]; + license = licenses.mit; + maintainers = with maintainers; [ ggg ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/applications/editors/vscode/extensions/ms-python.python/default.nix b/pkgs/applications/editors/vscode/extensions/ms-python.python/default.nix index 19f8a59e37ec56..3b2fa097231a9a 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-python.python/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-python.python/default.nix @@ -81,12 +81,12 @@ vscode-utils.buildVscodeMarketplaceExtension rec { fi ''; - meta = { + meta = with lib; { description = "Visual Studio Code extension with rich support for the Python language"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.python"; homepage = "https://github.com/Microsoft/vscode-python"; changelog = "https://github.com/microsoft/vscode-python/releases"; - license = lib.licenses.mit; + license = licenses.mit; platforms = [ "aarch64-linux" "x86_64-linux" @@ -94,8 +94,8 @@ vscode-utils.buildVscodeMarketplaceExtension rec { "x86_64-darwin" ]; maintainers = [ - lib.maintainers.jraygauthier - lib.maintainers.jfchevrette + maintainers.jraygauthier + maintainers.jfchevrette ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/ms-python.vscode-pylance/default.nix b/pkgs/applications/editors/vscode/extensions/ms-python.vscode-pylance/default.nix index 6adf0b337a0186..ab27b89548a184 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-python.vscode-pylance/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-python.vscode-pylance/default.nix @@ -14,12 +14,12 @@ vscode-utils.buildVscodeMarketplaceExtension { buildInputs = [ pyright ]; - meta = { + meta = with lib; { changelog = "https://marketplace.visualstudio.com/items/ms-python.vscode-pylance/changelog"; description = "Performant, feature-rich language server for Python in VS Code"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance"; homepage = "https://github.com/microsoft/pylance-release"; - license = lib.licenses.unfree; - maintainers = [ lib.maintainers.ericthemagician ]; + license = licenses.unfree; + maintainers = [ maintainers.ericthemagician ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/ms-toolsai.jupyter/default.nix b/pkgs/applications/editors/vscode/extensions/ms-toolsai.jupyter/default.nix index d68262e590af5a..31b381feb3a5ba 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-toolsai.jupyter/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-toolsai.jupyter/default.nix @@ -38,10 +38,10 @@ vscode-utils.buildVscodeMarketplaceExtension { ln -s /tmp temp ''; - meta = { + meta = with lib; { description = "Jupyter extension for vscode"; homepage = "https://github.com/microsoft/vscode-jupyter"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.jraygauthier ]; + license = licenses.mit; + maintainers = [ maintainers.jraygauthier ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/ms-vscode-remote.remote-ssh/default.nix b/pkgs/applications/editors/vscode/extensions/ms-vscode-remote.remote-ssh/default.nix index 20a8769d904708..57985c20b0f886 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-vscode-remote.remote-ssh/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-vscode-remote.remote-ssh/default.nix @@ -97,9 +97,9 @@ buildVscodeMarketplaceExtension { inherit (nixosTests) vscode-remote-ssh; }; - meta = { + meta = with lib; { description = "Use any remote machine with a SSH server as your development environment"; - license = lib.licenses.unfree; - maintainers = [ lib.maintainers.tbenst ]; + license = licenses.unfree; + maintainers = [ maintainers.tbenst ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/ms-vscode-remote.vscode-remote-extensionpack/default.nix b/pkgs/applications/editors/vscode/extensions/ms-vscode-remote.vscode-remote-extensionpack/default.nix index 41222c7eeb5db5..baeb26d67efb86 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-vscode-remote.vscode-remote-extensionpack/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-vscode-remote.vscode-remote-extensionpack/default.nix @@ -11,10 +11,10 @@ vscode-utils.buildVscodeMarketplaceExtension { hash = "sha256-YUo0QbJILa9BzWub6Wi6cDD/Zsy/H8LZ8j+9H+5pVHY="; }; - meta = { + meta = with lib; { description = "A Visual Studio Code extension pack that lets you open any folder in a container, on a remote machine, or in WSL and take advantage of VS Code's full feature set"; homepage = "https://github.com/Microsoft/vscode-remote-release"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ drupol ]; + license = licenses.unfree; + maintainers = with maintainers; [ drupol ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/ms-vscode.cpptools/default.nix b/pkgs/applications/editors/vscode/extensions/ms-vscode.cpptools/default.nix index 90aabc32d73f09..6e686a21332041 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-vscode.cpptools/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-vscode.cpptools/default.nix @@ -117,11 +117,11 @@ vscode-utils.buildVscodeMarketplaceExtension { wrapProgram $out/share/vscode/extensions/ms-vscode.cpptools/debugAdapters/bin/OpenDebugAD7 --prefix PATH : ${lib.makeBinPath [ gdb ]} ''; - meta = { + meta = with lib; { description = "C/C++ extension adds language support for C/C++ to Visual Studio Code, including features such as IntelliSense and debugging"; homepage = "https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ + license = licenses.unfree; + maintainers = with maintainers; [ jraygauthier stargate01 ]; @@ -129,6 +129,6 @@ vscode-utils.buildVscodeMarketplaceExtension { "x86_64-linux" "aarch64-linux" ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/ms-vsliveshare.vsliveshare/default.nix b/pkgs/applications/editors/vscode/extensions/ms-vsliveshare.vsliveshare/default.nix index 180490e60a6558..656817a4d00632 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-vsliveshare.vsliveshare/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-vsliveshare.vsliveshare/default.nix @@ -17,11 +17,11 @@ vscode-utils.buildVscodeMarketplaceExtension { --replace-fail '"xsel"' '"${xsel}/bin/xsel"' ''; - meta = { + meta = with lib; { description = "Real-time collaborative development for VS Code"; homepage = "https://aka.ms/vsls-docs"; changelog = "https://marketplace.visualstudio.com/items/MS-vsliveshare.vsliveshare/changelog"; - license = lib.licenses.unfree; - maintainers = builtins.attrValues { inherit (lib.maintainers) jraygauthier V; }; + license = licenses.unfree; + maintainers = builtins.attrValues { inherit (maintainers) jraygauthier V; }; }; } diff --git a/pkgs/applications/editors/vscode/extensions/ms-windows-ai-studio.windows-ai-studio/default.nix b/pkgs/applications/editors/vscode/extensions/ms-windows-ai-studio.windows-ai-studio/default.nix index cdb13b4c60209e..c9d7ba35c211d9 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-windows-ai-studio.windows-ai-studio/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-windows-ai-studio.windows-ai-studio/default.nix @@ -11,10 +11,10 @@ vscode-utils.buildVscodeMarketplaceExtension { hash = "sha256-BAA7wSfyJ4y8how+NnaGdCf/BCU6aOmI8ew8qpcQCnY="; }; - meta = { + meta = with lib; { description = "A Visual Studio Code an extension to help developers and AI engineers to easily build AI apps through developing and testing with generative AI models locally or in the cloud"; homepage = "https://github.com/Microsoft/windows-ai-studio"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ drupol ]; + license = licenses.unfree; + maintainers = with maintainers; [ drupol ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/myriad-dreamin.tinymist/default.nix b/pkgs/applications/editors/vscode/extensions/myriad-dreamin.tinymist/default.nix index 89d96d7fba024d..3db757ecc4b007 100644 --- a/pkgs/applications/editors/vscode/extensions/myriad-dreamin.tinymist/default.nix +++ b/pkgs/applications/editors/vscode/extensions/myriad-dreamin.tinymist/default.nix @@ -26,12 +26,12 @@ vscode-utils.buildVscodeMarketplaceExtension { jq '.contributes.configuration.properties."tinymist.serverPath".default = "${lib.getExe tinymist}"' package.json | sponge package.json ''; - meta = { + meta = with lib; { changelog = "https://marketplace.visualstudio.com/items/myriad-dreamin.tinymist/changelog"; description = "VSCode extension for providing an integration solution for Typst"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=myriad-dreamin.tinymist"; homepage = "https://github.com/myriad-dreamin/tinymist"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.drupol ]; + license = licenses.asl20; + maintainers = [ maintainers.drupol ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/nvarner.typst-lsp/default.nix b/pkgs/applications/editors/vscode/extensions/nvarner.typst-lsp/default.nix index 13fdcef74019ec..672c8f63a764ba 100644 --- a/pkgs/applications/editors/vscode/extensions/nvarner.typst-lsp/default.nix +++ b/pkgs/applications/editors/vscode/extensions/nvarner.typst-lsp/default.nix @@ -28,12 +28,12 @@ vscode-utils.buildVscodeMarketplaceExtension { jq '.contributes.configuration.properties."typst-lsp.serverPath".default = "${lib.getExe typst-lsp}"' package.json | sponge package.json ''; - meta = { + meta = with lib; { changelog = "https://marketplace.visualstudio.com/items/nvarner.typst-lsp/changelog"; description = "VSCode extension for providing a language server for Typst"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=nvarner.typst-lsp"; homepage = "https://github.com/nvarner/typst-lsp"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.drupol ]; + license = licenses.mit; + maintainers = [ maintainers.drupol ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/pylyzer.pylyzer/default.nix b/pkgs/applications/editors/vscode/extensions/pylyzer.pylyzer/default.nix index 32a36e57b4b84d..33c38751cb4dd2 100644 --- a/pkgs/applications/editors/vscode/extensions/pylyzer.pylyzer/default.nix +++ b/pkgs/applications/editors/vscode/extensions/pylyzer.pylyzer/default.nix @@ -8,11 +8,11 @@ vscode-utils.buildVscodeMarketplaceExtension { hash = "sha256-dDkX0U/XmHk5Jo+VdvxDkcA/1xu0Ae8kaDuDd/xjdUc="; }; - meta = { + meta = with lib; { description = "A VS Code extension for Pylyzer, a fast static code analyzer & language server for Python"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=pylyzer.pylyzer"; homepage = "https://github.com/mtshiba/pylyzer/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ drupol ]; + license = licenses.mit; + maintainers = with maintainers; [ drupol ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/reditorsupport.r/default.nix b/pkgs/applications/editors/vscode/extensions/reditorsupport.r/default.nix index 5fc6dfa5071b7a..0b04d9eb0beb3f 100644 --- a/pkgs/applications/editors/vscode/extensions/reditorsupport.r/default.nix +++ b/pkgs/applications/editors/vscode/extensions/reditorsupport.r/default.nix @@ -31,12 +31,12 @@ vscode-utils.buildVscodeMarketplaceExtension { jq '.contributes.configuration.properties."r.rterm.mac".default = "${lib.getExe python311Packages.radian}"' package.json | sponge package.json jq '.contributes.configuration.properties."r.rterm.linux".default = "${lib.getExe python311Packages.radian}"' package.json | sponge package.json ''; - meta = { + meta = with lib; { changelog = "https://marketplace.visualstudio.com/items/REditorSupport.r/changelog"; description = "Visual Studio Code extension for the R programming language"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=REditorSupport.r"; homepage = "https://github.com/REditorSupport/vscode-R"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.pandapip1 ]; + license = licenses.mit; + maintainers = [ maintainers.pandapip1 ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/rust-lang.rust-analyzer/default.nix b/pkgs/applications/editors/vscode/extensions/rust-lang.rust-analyzer/default.nix index bcb076135ae143..fb87eb4992894f 100644 --- a/pkgs/applications/editors/vscode/extensions/rust-lang.rust-analyzer/default.nix +++ b/pkgs/applications/editors/vscode/extensions/rust-lang.rust-analyzer/default.nix @@ -89,14 +89,14 @@ vscode-utils.buildVscodeExtension { package.json | sponge package.json ''; - meta = { + meta = with lib; { description = "Alternative rust language server to the RLS"; homepage = "https://github.com/rust-lang/rust-analyzer"; license = [ - lib.licenses.mit - lib.licenses.asl20 + licenses.mit + licenses.asl20 ]; maintainers = [ ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix b/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix index 35ac41fd106ea3..2508406d575225 100644 --- a/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix +++ b/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix @@ -11,11 +11,11 @@ vscode-utils.buildVscodeMarketplaceExtension { hash = "sha256-xpVb+5neAvMv8ebQlObjVE/lNd7Gn/KLbQAZ9AvQRFI="; }; - meta = { + meta = with lib; { description = "A VSCode extension providing an autonomous coding agent right in your IDE, capable of creating/editing files, executing commands, using the browser, and more with your permission every step of the way"; downloadPage = "https://github.com/cline/cline"; homepage = "https://github.com/cline/cline"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.drupol ]; + license = licenses.asl20; + maintainers = [ maintainers.drupol ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/sourcery.sourcery/default.nix b/pkgs/applications/editors/vscode/extensions/sourcery.sourcery/default.nix index 979472c9232eaf..5f9df5756da248 100644 --- a/pkgs/applications/editors/vscode/extensions/sourcery.sourcery/default.nix +++ b/pkgs/applications/editors/vscode/extensions/sourcery.sourcery/default.nix @@ -27,13 +27,13 @@ vscode-utils.buildVscodeMarketplaceExtension { zlib ]; - meta = { + meta = with lib; { changelog = "https://sourcery.ai/changelog/"; description = "VSCode extension for Sourcery, an AI-powered code review and pair programming tool for Python"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=sourcery.sourcery"; homepage = "https://github.com/sourcery-ai/sourcery-vscode"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ tomasajt ]; + license = licenses.unfree; + maintainers = with maintainers; [ tomasajt ]; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/applications/editors/vscode/extensions/sumneko.lua/default.nix b/pkgs/applications/editors/vscode/extensions/sumneko.lua/default.nix index 3f27cb681fe0f4..48db9087f043df 100644 --- a/pkgs/applications/editors/vscode/extensions/sumneko.lua/default.nix +++ b/pkgs/applications/editors/vscode/extensions/sumneko.lua/default.nix @@ -21,10 +21,10 @@ vscode-utils.buildVscodeMarketplaceExtension { $out/$installPrefix/server/bin/lua-language-server ''; - meta = { + meta = with lib; { description = "Lua language server provides various language features for Lua to make development easier and faster"; homepage = "https://marketplace.visualstudio.com/items?itemName=sumneko.lua"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.lblasc ]; + license = licenses.mit; + maintainers = [ maintainers.lblasc ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/tekumara.typos-vscode/default.nix b/pkgs/applications/editors/vscode/extensions/tekumara.typos-vscode/default.nix index 8f3ba7cfad613b..0cfd00055edd30 100644 --- a/pkgs/applications/editors/vscode/extensions/tekumara.typos-vscode/default.nix +++ b/pkgs/applications/editors/vscode/extensions/tekumara.typos-vscode/default.nix @@ -53,12 +53,12 @@ vscode-utils.buildVscodeMarketplaceExtension { jq '.contributes.configuration.properties."typos.path".default = "${lib.getExe typos-lsp}"' package.json | sponge package.json ''; - meta = { + meta = with lib; { changelog = "https://marketplace.visualstudio.com/items/tekumara.typos-vscode/changelog"; description = "VSCode extension for providing a low false-positive source code spell checker"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=tekumara.typos-vscode"; homepage = "https://github.com/tekumara/typos-lsp"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.drupol ]; + license = licenses.mit; + maintainers = [ maintainers.drupol ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/timonwong.shellcheck/default.nix b/pkgs/applications/editors/vscode/extensions/timonwong.shellcheck/default.nix index a2761b16a7b6d7..d403c7a90e4c09 100644 --- a/pkgs/applications/editors/vscode/extensions/timonwong.shellcheck/default.nix +++ b/pkgs/applications/editors/vscode/extensions/timonwong.shellcheck/default.nix @@ -21,11 +21,11 @@ vscode-utils.buildVscodeMarketplaceExtension { cd "$out/$installPrefix" jq '.contributes.configuration.properties."shellcheck.executablePath".default = "${shellcheck}/bin/shellcheck"' package.json | sponge package.json ''; - meta = { + meta = with lib; { description = "Integrates ShellCheck into VS Code, a linter for Shell scripts"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=timonwong.shellcheck"; homepage = "https://github.com/vscode-shellcheck/vscode-shellcheck"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.raroh73 ]; + license = licenses.mit; + maintainers = [ maintainers.raroh73 ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/vadimcn.vscode-lldb/default.nix b/pkgs/applications/editors/vscode/extensions/vadimcn.vscode-lldb/default.nix index a4dec529aba672..536812e09bd60d 100644 --- a/pkgs/applications/editors/vscode/extensions/vadimcn.vscode-lldb/default.nix +++ b/pkgs/applications/editors/vscode/extensions/vadimcn.vscode-lldb/default.nix @@ -195,11 +195,11 @@ stdenv.mkDerivation { updateScript = ./update.sh; }; - meta = { + meta = with lib; { description = "Native debugger extension for VSCode based on LLDB"; homepage = "https://github.com/vadimcn/vscode-lldb"; - license = [ lib.licenses.mit ]; + license = [ licenses.mit ]; maintainers = [ ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/applications/editors/vscode/extensions/visualjj.visualjj/default.nix b/pkgs/applications/editors/vscode/extensions/visualjj.visualjj/default.nix index ceece0447b0fbc..bf695d42a0d6be 100644 --- a/pkgs/applications/editors/vscode/extensions/visualjj.visualjj/default.nix +++ b/pkgs/applications/editors/vscode/extensions/visualjj.visualjj/default.nix @@ -33,11 +33,11 @@ vscode-utils.buildVscodeMarketplaceExtension { } // sources.${stdenvNoCC.system} or (throw "Unsupported system ${stdenvNoCC.system}"); - meta = { + meta = with lib; { description = "Jujutsu version control integration, for simpler Git workflow"; downloadPage = "https://www.visualjj.com"; homepage = "https://www.visualjj.com"; - license = lib.licenses.unfree; - maintainers = [ lib.maintainers.drupol ]; + license = licenses.unfree; + maintainers = [ maintainers.drupol ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/yzane.markdown-pdf/default.nix b/pkgs/applications/editors/vscode/extensions/yzane.markdown-pdf/default.nix index 8022813e993138..0a73042b53fcec 100644 --- a/pkgs/applications/editors/vscode/extensions/yzane.markdown-pdf/default.nix +++ b/pkgs/applications/editors/vscode/extensions/yzane.markdown-pdf/default.nix @@ -20,12 +20,12 @@ vscode-utils.buildVscodeMarketplaceExtension { postInstall = '' jq '.contributes.configuration.properties."markdown-pdf.executablePath".default = "${lib.getExe ungoogled-chromium}"' $out/$installPrefix/package.json | sponge $out/$installPrefix/package.json ''; - meta = { + meta = with lib; { description = "Converts Markdown files to pdf, html, png or jpeg files"; homepage = "https://github.com/yzane/vscode-markdown-pdf#readme"; changelog = "https://github.com/yzane/vscode-markdown-pdf/blob/master/CHANGELOG.md"; downloadPage = "https://marketplace.visualstudio.com/items?itemName=yzane.markdown-pdf"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pandapip1 ]; + license = licenses.mit; + maintainers = with maintainers; [ pandapip1 ]; }; } diff --git a/pkgs/applications/emulators/libretro/cores/blastem.nix b/pkgs/applications/emulators/libretro/cores/blastem.nix index cdcba56c6a98fb..305664d069b93d 100644 --- a/pkgs/applications/emulators/libretro/cores/blastem.nix +++ b/pkgs/applications/emulators/libretro/cores/blastem.nix @@ -14,10 +14,10 @@ mkLibretroCore { hash = "sha256-EHvKElPw8V5Z6LnMaQXBCdM4niLIlF3aBm8dRbeYXHs="; }; - meta = { + meta = with lib; { description = "Port of BlastEm to libretro"; homepage = "https://github.com/libretro/blastem"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.x86; + license = licenses.gpl3Only; + platforms = platforms.x86; }; } diff --git a/pkgs/applications/emulators/libretro/cores/pcsx2.nix b/pkgs/applications/emulators/libretro/cores/pcsx2.nix index 31967ab8d4ef0a..a1c16d190843a8 100644 --- a/pkgs/applications/emulators/libretro/cores/pcsx2.nix +++ b/pkgs/applications/emulators/libretro/cores/pcsx2.nix @@ -47,10 +47,10 @@ mkLibretroCore { preInstall = "cd bin"; - meta = { + meta = with lib; { description = "Port of PCSX2 to libretro"; homepage = "https://github.com/libretro/ps2"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.x86; + license = licenses.gpl3Plus; + platforms = platforms.x86; }; } diff --git a/pkgs/applications/emulators/wine/fonts.nix b/pkgs/applications/emulators/wine/fonts.nix index 9620d51cb74e9b..6aad7561660972 100644 --- a/pkgs/applications/emulators/wine/fonts.nix +++ b/pkgs/applications/emulators/wine/fonts.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation { install *.ttf -Dt $out/share/fonts/wine ''; - meta = { + meta = with lib; { description = "Microsoft replacement fonts by the Wine project"; homepage = "https://wiki.winehq.org/Create_Fonts"; - license = with lib.licenses; [ lgpl21Plus ]; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + license = with licenses; [ lgpl21Plus ]; + platforms = platforms.all; + maintainers = with maintainers; [ avnik raskin bendlas diff --git a/pkgs/applications/emulators/wine/winetricks.nix b/pkgs/applications/emulators/wine/winetricks.nix index dee2a107e9d2a5..35c9c20b450ef1 100644 --- a/pkgs/applications/emulators/wine/winetricks.nix +++ b/pkgs/applications/emulators/wine/winetricks.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { inherit (src) updateScript; }; - meta = { + meta = with lib; { description = "Script to install DLLs needed to work around problems in Wine"; mainProgram = "winetricks"; - license = lib.licenses.lgpl21; + license = licenses.lgpl21; homepage = "https://github.com/Winetricks/winetricks"; - platforms = with lib.platforms; linux ++ darwin; + platforms = with platforms; linux ++ darwin; }; } diff --git a/pkgs/applications/emulators/zsnes/2.x.nix b/pkgs/applications/emulators/zsnes/2.x.nix index 58e537c064ee4b..414337772f9164 100644 --- a/pkgs/applications/emulators/zsnes/2.x.nix +++ b/pkgs/applications/emulators/zsnes/2.x.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation (finalAttrs: { install -Dm644 icons/64x64x32.png $out/share/icons/hicolor/64x64/apps/zsnes.png ''; - meta = { + meta = with lib; { homepage = "https://github.com/xyproto/zsnes"; description = "Maintained fork of zsnes"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.AndersonTorres ]; - platforms = lib.intersectLists lib.platforms.linux lib.platforms.x86; + license = licenses.gpl2Plus; + maintainers = [ maintainers.AndersonTorres ]; + platforms = intersectLists platforms.linux platforms.x86; }; }) diff --git a/pkgs/applications/emulators/zsnes/default.nix b/pkgs/applications/emulators/zsnes/default.nix index 718ce9e371280c..2ea7fb66b5bd36 100644 --- a/pkgs/applications/emulators/zsnes/default.nix +++ b/pkgs/applications/emulators/zsnes/default.nix @@ -84,10 +84,10 @@ stdenv.mkDerivation { ln -s ${desktopItem}/share/applications/* $out/share/applications/ ''; - meta = { + meta = with lib; { description = "Super Nintendo Entertainment System Emulator"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.sander ]; + license = licenses.gpl2Plus; + maintainers = [ maintainers.sander ]; homepage = "https://www.zsnes.com"; platforms = [ "i686-linux" diff --git a/pkgs/applications/file-managers/dfilemanager/default.nix b/pkgs/applications/file-managers/dfilemanager/default.nix index 44f2675f18d691..e0628f4fbbe1e2 100644 --- a/pkgs/applications/file-managers/dfilemanager/default.nix +++ b/pkgs/applications/file-managers/dfilemanager/default.nix @@ -30,11 +30,11 @@ mkDerivation { cmakeFlags = [ "-DQT5BUILD=true" ]; - meta = { + meta = with lib; { homepage = "https://github.com/probonopd/dfilemanager"; description = "File manager written in Qt/C++"; mainProgram = "dfm"; - license = lib.licenses.gpl2; - platforms = lib.platforms.unix; + license = licenses.gpl2; + platforms = platforms.unix; }; } diff --git a/pkgs/applications/gis/whitebox-tools/default.nix b/pkgs/applications/gis/whitebox-tools/default.nix index 1409410d07ac44..a73249f7128e4b 100644 --- a/pkgs/applications/gis/whitebox-tools/default.nix +++ b/pkgs/applications/gis/whitebox-tools/default.nix @@ -42,10 +42,10 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://jblindsay.github.io/ghrg/WhiteboxTools/index.html"; description = "Advanced geospatial data analysis platform"; - license = lib.licenses.mit; - maintainers = lib.teams.geospatial.members ++ (with lib.maintainers; [ mpickering ]); + license = licenses.mit; + maintainers = teams.geospatial.members ++ (with maintainers; [ mpickering ]); }; } diff --git a/pkgs/applications/graphics/awesomebump/default.nix b/pkgs/applications/graphics/awesomebump/default.nix index 78028135186df2..e027c27e4926b5 100644 --- a/pkgs/applications/graphics/awesomebump/default.nix +++ b/pkgs/applications/graphics/awesomebump/default.nix @@ -75,12 +75,12 @@ mkDerivation { # fatal error: properties/ImageProperties.peg.h: No such file or directory enableParallelBuilding = false; - meta = { + meta = with lib; { homepage = "https://github.com/kmkolasinski/AwesomeBump"; description = "Program to generate normal, height, specular or ambient occlusion textures from a single image"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "AwesomeBump"; }; } diff --git a/pkgs/applications/graphics/inkscape/extensions/inkstitch/default.nix b/pkgs/applications/graphics/inkscape/extensions/inkstitch/default.nix index ae6862d9bfd371..d4aea7098f00a9 100644 --- a/pkgs/applications/graphics/inkscape/extensions/inkstitch/default.nix +++ b/pkgs/applications/graphics/inkscape/extensions/inkstitch/default.nix @@ -83,11 +83,11 @@ python3.pkgs.buildPythonApplication { pytestCheckHook ]; - meta = { + meta = with lib; { description = "Inkscape extension for machine embroidery design"; homepage = "https://inkstitch.org/"; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ tropf pluiedev ]; diff --git a/pkgs/applications/graphics/lightburn/default.nix b/pkgs/applications/graphics/lightburn/default.nix index 51c5e58b2116bb..910cbb074e9c2b 100644 --- a/pkgs/applications/graphics/lightburn/default.nix +++ b/pkgs/applications/graphics/lightburn/default.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = { + meta = with lib; { description = "Layout, editing, and control software for your laser cutter"; homepage = "https://lightburnsoftware.com"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ q3k ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = with maintainers; [ q3k ]; platforms = [ "x86_64-linux" ]; mainProgram = "lightburn"; }; diff --git a/pkgs/applications/graphics/meshlab/default.nix b/pkgs/applications/graphics/meshlab/default.nix index c22679a75d8843..38442f26380ce1 100644 --- a/pkgs/applications/graphics/meshlab/default.nix +++ b/pkgs/applications/graphics/meshlab/default.nix @@ -97,12 +97,12 @@ mkDerivation rec { "--set QT_QPA_PLATFORM xcb" ]; - meta = { + meta = with lib; { description = "System for processing and editing 3D triangular meshes"; mainProgram = "meshlab"; homepage = "https://www.meshlab.net/"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/applications/graphics/pymeshlab/default.nix b/pkgs/applications/graphics/pymeshlab/default.nix index a44d4c4f5bee69..5e1eef07655e75 100644 --- a/pkgs/applications/graphics/pymeshlab/default.nix +++ b/pkgs/applications/graphics/pymeshlab/default.nix @@ -96,11 +96,11 @@ stdenv.mkDerivation (finalAttrs: { "-DVCGDIR=${vcg.src}" ]; - meta = { + meta = with lib; { description = "Open source mesh processing python library"; homepage = "https://github.com/cnr-isti-vclab/PyMeshLab"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ nim65s ]; - platforms = with lib.platforms; linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ nim65s ]; + platforms = with platforms; linux; }; }) diff --git a/pkgs/applications/graphics/rawtherapee/default.nix b/pkgs/applications/graphics/rawtherapee/default.nix index b4493bdbc41cd1..ec2272efec93ae 100644 --- a/pkgs/applications/graphics/rawtherapee/default.nix +++ b/pkgs/applications/graphics/rawtherapee/default.nix @@ -126,14 +126,14 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with lib; { description = "RAW converter and digital photo processing software"; homepage = "http://www.rawtherapee.com/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ jcumming mahe ]; - platforms = with lib.platforms; unix; + platforms = with platforms; unix; }; } diff --git a/pkgs/applications/graphics/seamly2d/default.nix b/pkgs/applications/graphics/seamly2d/default.nix index c2d76ee9be8aca..7638cec604ed10 100644 --- a/pkgs/applications/graphics/seamly2d/default.nix +++ b/pkgs/applications/graphics/seamly2d/default.nix @@ -93,11 +93,11 @@ stdenv.mkDerivation rec { cp dist/debian/seamly2d.sharedmimeinfo $out/share/mime/packages/seamly2d.xml ''; - meta = { + meta = with lib; { description = "Open source patternmaking software"; homepage = "https://seamly.net/"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ WhittlesJr ]; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ WhittlesJr ]; }; } diff --git a/pkgs/applications/graphics/tesseract/tesseract3.nix b/pkgs/applications/graphics/tesseract/tesseract3.nix index 4d3a97ade7dd19..894af20e48cd2f 100644 --- a/pkgs/applications/graphics/tesseract/tesseract3.nix +++ b/pkgs/applications/graphics/tesseract/tesseract3.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { LIBLEPT_HEADERSDIR = "${leptonica}/include"; - meta = { + meta = with lib; { description = "OCR engine"; homepage = "https://github.com/tesseract-ocr/tesseract"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ erikarvstedt ]; - platforms = with lib.platforms; linux ++ darwin; + license = licenses.asl20; + maintainers = with maintainers; [ erikarvstedt ]; + platforms = with platforms; linux ++ darwin; mainProgram = "tesseract"; }; } diff --git a/pkgs/applications/graphics/tesseract/tesseract4.nix b/pkgs/applications/graphics/tesseract/tesseract4.nix index 96ce6dda1ead8c..767827f21558b4 100644 --- a/pkgs/applications/graphics/tesseract/tesseract4.nix +++ b/pkgs/applications/graphics/tesseract/tesseract4.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { opencl-headers ]; - meta = { + meta = with lib; { description = "OCR engine"; homepage = "https://github.com/tesseract-ocr/tesseract"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ erikarvstedt ]; - platforms = with lib.platforms; linux ++ darwin; + license = licenses.asl20; + maintainers = with maintainers; [ erikarvstedt ]; + platforms = with platforms; linux ++ darwin; mainProgram = "tesseract"; }; } diff --git a/pkgs/applications/graphics/tesseract/tesseract5.nix b/pkgs/applications/graphics/tesseract/tesseract5.nix index 22059873e4bbef..30f2bb7f00a68e 100644 --- a/pkgs/applications/graphics/tesseract/tesseract5.nix +++ b/pkgs/applications/graphics/tesseract/tesseract5.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { ]; passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "OCR engine"; homepage = "https://github.com/tesseract-ocr/tesseract"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ patrickdag ]; - platforms = lib.platforms.unix; + license = licenses.asl20; + maintainers = with maintainers; [ patrickdag ]; + platforms = platforms.unix; mainProgram = "tesseract"; }; } diff --git a/pkgs/applications/graphics/unigine-superposition/default.nix b/pkgs/applications/graphics/unigine-superposition/default.nix index 37b7418c843f00..a76ac15a4cad49 100644 --- a/pkgs/applications/graphics/unigine-superposition/default.nix +++ b/pkgs/applications/graphics/unigine-superposition/default.nix @@ -138,12 +138,12 @@ buildFHSEnv { done ''; - meta = { + meta = with lib; { description = "Unigine Superposition GPU benchmarking tool"; homepage = "https://benchmark.unigine.com/superposition"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - maintainers = [ lib.maintainers.BarinovMaxim ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = [ maintainers.BarinovMaxim ]; platforms = [ "x86_64-linux" ]; mainProgram = "Superposition"; }; diff --git a/pkgs/applications/kde/akonadi-calendar-tools.nix b/pkgs/applications/kde/akonadi-calendar-tools.nix index 204fe6f46a0a78..0a32bee42f2054 100644 --- a/pkgs/applications/kde/akonadi-calendar-tools.nix +++ b/pkgs/applications/kde/akonadi-calendar-tools.nix @@ -9,15 +9,15 @@ mkDerivation { pname = "akonadi-calendar-tools"; - meta = { + meta = with lib; { homepage = "https://github.com/KDE/akonadi-calendar-tools"; description = "Console applications and utilities for managing calendars in Akonadi"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus cc0 ]; - maintainers = with lib.maintainers; [ kennyballou ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ kennyballou ]; + platforms = platforms.linux; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/baloo-widgets.nix b/pkgs/applications/kde/baloo-widgets.nix index 646a4582a5e201..b36b7cf7307eb6 100644 --- a/pkgs/applications/kde/baloo-widgets.nix +++ b/pkgs/applications/kde/baloo-widgets.nix @@ -13,9 +13,9 @@ mkDerivation { pname = "baloo-widgets"; - meta = { - license = [ lib.licenses.lgpl21 ]; - maintainers = [ lib.maintainers.ttuegel ]; + meta = with lib; { + license = [ licenses.lgpl21 ]; + maintainers = [ maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/cantor.nix b/pkgs/applications/kde/cantor.nix index 6af2b207ed4120..83d67eb6bdec9e 100644 --- a/pkgs/applications/kde/cantor.nix +++ b/pkgs/applications/kde/cantor.nix @@ -116,16 +116,16 @@ mkDerivation { }) ]; - meta = { + meta = with lib; { description = "Front end to powerful mathematics and statistics packages"; homepage = "https://cantor.kde.org/"; - license = with lib.licenses; [ + license = with licenses; [ bsd3 cc0 gpl2Only gpl2Plus gpl3Only ]; - maintainers = with lib.maintainers; [ hqurve ]; + maintainers = with maintainers; [ hqurve ]; }; } diff --git a/pkgs/applications/kde/dolphin-plugins.nix b/pkgs/applications/kde/dolphin-plugins.nix index 946fcd4143dd14..8355f275d812ba 100644 --- a/pkgs/applications/kde/dolphin-plugins.nix +++ b/pkgs/applications/kde/dolphin-plugins.nix @@ -11,9 +11,9 @@ mkDerivation { pname = "dolphin-plugins"; - meta = { - license = [ lib.licenses.gpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; + meta = with lib; { + license = [ licenses.gpl2 ]; + maintainers = [ maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/dolphin.nix b/pkgs/applications/kde/dolphin.nix index 69ce5b03e455b9..7af426c7fbc359 100644 --- a/pkgs/applications/kde/dolphin.nix +++ b/pkgs/applications/kde/dolphin.nix @@ -33,14 +33,14 @@ mkDerivation { pname = "dolphin"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/dolphin/"; description = "KDE file manager"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus fdl12Plus ]; - maintainers = [ lib.maintainers.ttuegel ]; + maintainers = [ maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/dragon.nix b/pkgs/applications/kde/dragon.nix index d1bc7233a5f8ec..2b3f78139dba7d 100644 --- a/pkgs/applications/kde/dragon.nix +++ b/pkgs/applications/kde/dragon.nix @@ -29,15 +29,15 @@ mkDerivation { pname = "dragon"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/dragonplayer/"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus fdl12Plus ]; description = "Simple media player for KDE"; mainProgram = "dragon"; - maintainers = [ lib.maintainers.jonathanreeve ]; + maintainers = [ maintainers.jonathanreeve ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/ffmpegthumbs.nix b/pkgs/applications/kde/ffmpegthumbs.nix index 76d04046d741b6..74682745c29a81 100644 --- a/pkgs/applications/kde/ffmpegthumbs.nix +++ b/pkgs/applications/kde/ffmpegthumbs.nix @@ -9,12 +9,12 @@ mkDerivation { pname = "ffmpegthumbs"; - meta = { - license = with lib.licenses; [ + meta = with lib; { + license = with licenses; [ gpl2 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; + maintainers = [ maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; buildInputs = [ diff --git a/pkgs/applications/kde/filelight.nix b/pkgs/applications/kde/filelight.nix index b64add65981d43..f3b160def77b6f 100644 --- a/pkgs/applications/kde/filelight.nix +++ b/pkgs/applications/kde/filelight.nix @@ -16,12 +16,12 @@ mkDerivation { pname = "filelight"; - meta = { + meta = with lib; { description = "Disk usage statistics"; mainProgram = "filelight"; homepage = "https://apps.kde.org/filelight/"; - license = with lib.licenses; [ gpl2 ]; - maintainers = with lib.maintainers; [ vcunat ]; + license = with licenses; [ gpl2 ]; + maintainers = with maintainers; [ vcunat ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/gwenview/default.nix b/pkgs/applications/kde/gwenview/default.nix index 13dc1b52a60b74..f939bb9730e59b 100644 --- a/pkgs/applications/kde/gwenview/default.nix +++ b/pkgs/applications/kde/gwenview/default.nix @@ -29,14 +29,14 @@ mkDerivation { pname = "gwenview"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/gwenview/"; description = "KDE image viewer"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus fdl12Plus ]; - maintainers = [ lib.maintainers.ttuegel ]; + maintainers = [ maintainers.ttuegel ]; mainProgram = "gwenview"; }; diff --git a/pkgs/applications/kde/kalgebra.nix b/pkgs/applications/kde/kalgebra.nix index b3d6e7b76df477..70325f88afe326 100644 --- a/pkgs/applications/kde/kalgebra.nix +++ b/pkgs/applications/kde/kalgebra.nix @@ -41,10 +41,10 @@ mkDerivation { plasma-framework ]; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/kalgebra/"; description = "2D and 3D Graph Calculator"; - license = with lib.licenses; [ gpl2Plus ]; - maintainers = with lib.maintainers; [ ninjafb ]; + license = with licenses; [ gpl2Plus ]; + maintainers = with maintainers; [ ninjafb ]; }; } diff --git a/pkgs/applications/kde/kate.nix b/pkgs/applications/kde/kate.nix index 6ac890208f57ab..370f481bc95168 100644 --- a/pkgs/applications/kde/kate.nix +++ b/pkgs/applications/kde/kate.nix @@ -32,15 +32,15 @@ mkDerivation { pname = "kate"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/kate/"; description = "Advanced text editor"; - license = with lib.licenses; [ + license = with licenses; [ gpl3 lgpl3 lgpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; + maintainers = [ maintainers.ttuegel ]; }; # InitialPreference values are too high and end up making kate & diff --git a/pkgs/applications/kde/kcachegrind.nix b/pkgs/applications/kde/kcachegrind.nix index db65a3ef4c29c9..5c3e3182472b97 100644 --- a/pkgs/applications/kde/kcachegrind.nix +++ b/pkgs/applications/kde/kcachegrind.nix @@ -17,11 +17,11 @@ mkDerivation { pname = "kcachegrind"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/kcachegrind/"; description = "Profiler frontend"; - license = with lib.licenses; [ gpl2 ]; - maintainers = with lib.maintainers; [ orivej ]; + license = with licenses; [ gpl2 ]; + maintainers = with maintainers; [ orivej ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kcharselect.nix b/pkgs/applications/kde/kcharselect.nix index 5f92632cda85e9..2807091bd5ba30 100644 --- a/pkgs/applications/kde/kcharselect.nix +++ b/pkgs/applications/kde/kcharselect.nix @@ -15,10 +15,10 @@ mkDerivation { pname = "kcharselect"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/kcharselect/"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.schmittlauch ]; + license = licenses.gpl2Plus; + maintainers = [ maintainers.schmittlauch ]; description = "Tool to select special characters from all installed fonts and copy them into the clipboard"; mainProgram = "kcharselect"; }; diff --git a/pkgs/applications/kde/kcolorchooser.nix b/pkgs/applications/kde/kcolorchooser.nix index 2a9777388b1c2a..9ac0c02ddbfe68 100644 --- a/pkgs/applications/kde/kcolorchooser.nix +++ b/pkgs/applications/kde/kcolorchooser.nix @@ -9,12 +9,12 @@ mkDerivation { pname = "kcolorchooser"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/kcolorchooser/"; description = "Color chooser"; mainProgram = "kcolorchooser"; - license = with lib.licenses; [ mit ]; - maintainers = [ lib.maintainers.ttuegel ]; + license = with licenses; [ mit ]; + maintainers = [ maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; buildInputs = [ diff --git a/pkgs/applications/kde/kdegraphics-mobipocket.nix b/pkgs/applications/kde/kdegraphics-mobipocket.nix index 221e8bbabcf195..8d0ff71355a880 100644 --- a/pkgs/applications/kde/kdegraphics-mobipocket.nix +++ b/pkgs/applications/kde/kdegraphics-mobipocket.nix @@ -7,9 +7,9 @@ mkDerivation { pname = "kdegraphics-mobipocket"; - meta = { - license = [ lib.licenses.gpl2Plus ]; - maintainers = [ lib.maintainers.ttuegel ]; + meta = with lib; { + license = [ licenses.gpl2Plus ]; + maintainers = [ maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; buildInputs = [ kio ]; diff --git a/pkgs/applications/kde/kdegraphics-thumbnailers/default.nix b/pkgs/applications/kde/kdegraphics-thumbnailers/default.nix index f3b59d24533829..1fd24edbc01d51 100644 --- a/pkgs/applications/kde/kdegraphics-thumbnailers/default.nix +++ b/pkgs/applications/kde/kdegraphics-thumbnailers/default.nix @@ -13,9 +13,9 @@ mkDerivation { pname = "kdegraphics-thumbnailers"; - meta = { - license = [ lib.licenses.lgpl21 ]; - maintainers = [ lib.maintainers.ttuegel ]; + meta = with lib; { + license = [ licenses.lgpl21 ]; + maintainers = [ maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; buildInputs = [ diff --git a/pkgs/applications/kde/kdenetwork-filesharing.nix b/pkgs/applications/kde/kdenetwork-filesharing.nix index 8300986b634eed..4382316758c307 100644 --- a/pkgs/applications/kde/kdenetwork-filesharing.nix +++ b/pkgs/applications/kde/kdenetwork-filesharing.nix @@ -14,12 +14,12 @@ mkDerivation { pname = "kdenetwork-filesharing"; - meta = { + meta = with lib; { license = [ - lib.licenses.gpl2 - lib.licenses.lgpl21 + licenses.gpl2 + licenses.lgpl21 ]; - maintainers = [ lib.maintainers.ttuegel ]; + maintainers = [ maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kdenlive/default.nix b/pkgs/applications/kde/kdenlive/default.nix index 5aa4c40fef193e..3318a3cde44e0d 100644 --- a/pkgs/applications/kde/kdenlive/default.nix +++ b/pkgs/applications/kde/kdenlive/default.nix @@ -115,10 +115,10 @@ mkDerivation { qtWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/kdenlive/"; description = "Video editor"; - license = with lib.licenses; [ gpl2Plus ]; - maintainers = with lib.maintainers; [ turion ]; + license = with licenses; [ gpl2Plus ]; + maintainers = with maintainers; [ turion ]; }; } diff --git a/pkgs/applications/kde/kdf.nix b/pkgs/applications/kde/kdf.nix index 931d0ce88febc6..69a9e84b0412ce 100644 --- a/pkgs/applications/kde/kdf.nix +++ b/pkgs/applications/kde/kdf.nix @@ -13,9 +13,9 @@ mkDerivation { pname = "kdf"; - meta = { - license = with lib.licenses; [ gpl2 ]; - maintainers = [ lib.maintainers.peterhoeg ]; + meta = with lib; { + license = with licenses; [ gpl2 ]; + maintainers = [ maintainers.peterhoeg ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kdialog.nix b/pkgs/applications/kde/kdialog.nix index 857ce19890f574..5be9e53c41c87d 100644 --- a/pkgs/applications/kde/kdialog.nix +++ b/pkgs/applications/kde/kdialog.nix @@ -11,14 +11,14 @@ mkDerivation { pname = "kdialog"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/kdialog/"; description = "Display dialog boxes from shell scripts"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus fdl12Plus ]; - maintainers = with lib.maintainers; [ peterhoeg ]; + maintainers = with maintainers; [ peterhoeg ]; }; nativeBuildInputs = [ diff --git a/pkgs/applications/kde/kfind.nix b/pkgs/applications/kde/kfind.nix index 70b79716dc3d28..834fa1bd34282c 100644 --- a/pkgs/applications/kde/kfind.nix +++ b/pkgs/applications/kde/kfind.nix @@ -13,12 +13,12 @@ mkDerivation { pname = "kfind"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/kfind/"; description = "Find files/folders"; mainProgram = "kfind"; - license = with lib.licenses; [ gpl2 ]; - maintainers = [ lib.maintainers.iblech ]; + license = with licenses; [ gpl2 ]; + maintainers = [ maintainers.iblech ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kgeography.nix b/pkgs/applications/kde/kgeography.nix index e38c3a12bf929c..0d6eb5cad6a8e2 100644 --- a/pkgs/applications/kde/kgeography.nix +++ b/pkgs/applications/kde/kgeography.nix @@ -13,12 +13,12 @@ mkDerivation { pname = "kgeography"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/kgeography/"; description = "Geography trainer"; mainProgram = "kgeography"; - license = with lib.licenses; [ gpl2 ]; - maintainers = [ lib.maintainers.globin ]; + license = with licenses; [ gpl2 ]; + maintainers = [ maintainers.globin ]; }; nativeBuildInputs = [ cmake diff --git a/pkgs/applications/kde/kgpg.nix b/pkgs/applications/kde/kgpg.nix index 8c4faa87f7278e..0d56333a6c81e7 100644 --- a/pkgs/applications/kde/kgpg.nix +++ b/pkgs/applications/kde/kgpg.nix @@ -56,11 +56,11 @@ mkDerivation { postFixup = '' wrapProgram "$out/bin/kgpg" --prefix PATH : "${lib.makeBinPath [ gnupg ]}" ''; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/kgpg/"; description = "KDE based interface for GnuPG, a powerful encryption utility"; mainProgram = "kgpg"; - license = [ lib.licenses.gpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; + license = [ licenses.gpl2 ]; + maintainers = [ maintainers.ttuegel ]; }; } diff --git a/pkgs/applications/kde/kig.nix b/pkgs/applications/kde/kig.nix index 9eb9c3e7a85343..e2eb3fea2319d4 100644 --- a/pkgs/applications/kde/kig.nix +++ b/pkgs/applications/kde/kig.nix @@ -15,11 +15,11 @@ mkDerivation { pname = "kig"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/kig/"; description = "Interactive geometry"; - license = with lib.licenses; [ gpl2 ]; - maintainers = with lib.maintainers; [ raskin ]; + license = with licenses; [ gpl2 ]; + maintainers = with maintainers; [ raskin ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kio-extras.nix b/pkgs/applications/kde/kio-extras.nix index 21738a1ac14284..da68931f08fb54 100644 --- a/pkgs/applications/kde/kio-extras.nix +++ b/pkgs/applications/kde/kio-extras.nix @@ -39,12 +39,12 @@ mkDerivation { pname = "kio-extras"; - meta = { - license = with lib.licenses; [ + meta = with lib; { + license = with licenses; [ gpl2 lgpl21 ]; - maintainers = [ lib.maintainers.ttuegel ]; + maintainers = [ maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kipi-plugins.nix b/pkgs/applications/kde/kipi-plugins.nix index a9de8cf2dabb08..a575f231aedd69 100644 --- a/pkgs/applications/kde/kipi-plugins.nix +++ b/pkgs/applications/kde/kipi-plugins.nix @@ -35,10 +35,10 @@ mkDerivation { qtxmlpatterns ]; - meta = { + meta = with lib; { description = "Plugins for KDE-based image applications"; - license = lib.licenses.gpl2; + license = licenses.gpl2; homepage = "https://github.com/KDE/kipi-plugins"; - maintainers = with lib.maintainers; [ ttuegel ]; + maintainers = with maintainers; [ ttuegel ]; }; } diff --git a/pkgs/applications/kde/kitinerary.nix b/pkgs/applications/kde/kitinerary.nix index 0ccc338badb1b8..6e2a9fad96b690 100644 --- a/pkgs/applications/kde/kitinerary.nix +++ b/pkgs/applications/kde/kitinerary.nix @@ -15,9 +15,9 @@ mkDerivation { pname = "kitinerary"; - meta = { - license = with lib.licenses; [ lgpl21 ]; - maintainers = [ lib.maintainers.bkchr ]; + meta = with lib; { + license = with licenses; [ lgpl21 ]; + maintainers = [ maintainers.bkchr ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kmix.nix b/pkgs/applications/kde/kmix.nix index 1c433395dc24fe..eb9fa202819d29 100644 --- a/pkgs/applications/kde/kmix.nix +++ b/pkgs/applications/kde/kmix.nix @@ -14,15 +14,15 @@ mkDerivation { pname = "kmix"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/kmix/"; description = "Sound mixer"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus lgpl21Plus fdl12Plus ]; - maintainers = [ lib.maintainers.rongcuid ]; + maintainers = [ maintainers.rongcuid ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kmousetool.nix b/pkgs/applications/kde/kmousetool.nix index b750a34d1899b2..3ceae199a50da4 100644 --- a/pkgs/applications/kde/kmousetool.nix +++ b/pkgs/applications/kde/kmousetool.nix @@ -29,14 +29,14 @@ mkDerivation { libXtst libXt ]; - meta = { + meta = with lib; { homepage = "https://github.com/KDE/kmousetool"; description = "Program that clicks the mouse for you"; mainProgram = "kmousetool"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus fdl12Plus ]; - maintainers = [ lib.maintainers.jayesh-bhoot ]; + maintainers = [ maintainers.jayesh-bhoot ]; }; } diff --git a/pkgs/applications/kde/kmplot.nix b/pkgs/applications/kde/kmplot.nix index b4a35a8bbc09fa..d18ccdae1b7220 100644 --- a/pkgs/applications/kde/kmplot.nix +++ b/pkgs/applications/kde/kmplot.nix @@ -13,15 +13,15 @@ mkDerivation { pname = "kmplot"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/kmplot/"; description = "Mathematical function plotter"; mainProgram = "kmplot"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus fdl12Plus ]; - maintainers = [ lib.maintainers.orivej ]; + maintainers = [ maintainers.orivej ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kolf.nix b/pkgs/applications/kde/kolf.nix index eeddcf100710fe..1affe4e8e8ea47 100644 --- a/pkgs/applications/kde/kolf.nix +++ b/pkgs/applications/kde/kolf.nix @@ -19,11 +19,11 @@ mkDerivation { kio ktextwidgets ]; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/kolf/"; description = "Miniature golf"; mainProgram = "kolf"; - license = with lib.licenses; [ gpl2 ]; - maintainers = with lib.maintainers; [ peterhoeg ]; + license = with licenses; [ gpl2 ]; + maintainers = with maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/applications/kde/konsole.nix b/pkgs/applications/kde/konsole.nix index 3a5ba815b95654..6d3de3129787bc 100644 --- a/pkgs/applications/kde/konsole.nix +++ b/pkgs/applications/kde/konsole.nix @@ -30,15 +30,15 @@ mkDerivation { pname = "konsole"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/konsole/"; description = "KDE terminal emulator"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus lgpl21Plus fdl12Plus ]; - maintainers = with lib.maintainers; [ ttuegel ]; + maintainers = with maintainers; [ ttuegel ]; mainProgram = "konsole"; }; nativeBuildInputs = [ diff --git a/pkgs/applications/kde/kpat.nix b/pkgs/applications/kde/kpat.nix index 077a6ea5b4e36c..06e108a5c2160c 100644 --- a/pkgs/applications/kde/kpat.nix +++ b/pkgs/applications/kde/kpat.nix @@ -21,12 +21,12 @@ mkDerivation { libkdegames freecell-solver ]; - meta = { - license = with lib.licenses; [ + meta = with lib; { + license = with licenses; [ gpl2Plus lgpl21Plus fdl12Plus ]; - maintainers = with lib.maintainers; [ rnhmjoj ]; + maintainers = with maintainers; [ rnhmjoj ]; }; } diff --git a/pkgs/applications/kde/kpkpass.nix b/pkgs/applications/kde/kpkpass.nix index 94dd6381a0d588..72a6f880062049 100644 --- a/pkgs/applications/kde/kpkpass.nix +++ b/pkgs/applications/kde/kpkpass.nix @@ -9,9 +9,9 @@ mkDerivation { pname = "kpkpass"; - meta = { - license = with lib.licenses; [ lgpl21 ]; - maintainers = [ lib.maintainers.bkchr ]; + meta = with lib; { + license = with licenses; [ lgpl21 ]; + maintainers = [ maintainers.bkchr ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kqtquickcharts.nix b/pkgs/applications/kde/kqtquickcharts.nix index 16b4432cb9342f..66ca1ffa5958d8 100644 --- a/pkgs/applications/kde/kqtquickcharts.nix +++ b/pkgs/applications/kde/kqtquickcharts.nix @@ -8,13 +8,13 @@ mkDerivation { pname = "kqtquickcharts"; - meta = { - license = with lib.licenses; [ + meta = with lib; { + license = with licenses; [ gpl2Plus lgpl21Plus fdl12Plus ]; - maintainers = [ lib.maintainers.ttuegel ]; + maintainers = [ maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ diff --git a/pkgs/applications/kde/krfb.nix b/pkgs/applications/kde/krfb.nix index efd564de083f55..bd4f58b4f1494f 100644 --- a/pkgs/applications/kde/krfb.nix +++ b/pkgs/applications/kde/krfb.nix @@ -27,14 +27,14 @@ mkDerivation { pname = "krfb"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/krfb/"; description = "Desktop sharing (VNC)"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus fdl12Plus ]; - maintainers = with lib.maintainers; [ jerith666 ]; + maintainers = with maintainers; [ jerith666 ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/kruler.nix b/pkgs/applications/kde/kruler.nix index fe905d37cd0a29..c5ab567d79f42a 100644 --- a/pkgs/applications/kde/kruler.nix +++ b/pkgs/applications/kde/kruler.nix @@ -11,12 +11,12 @@ mkDerivation { pname = "kruler"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/kruler/"; description = "Screen ruler"; mainProgram = "kruler"; - license = with lib.licenses; [ gpl2 ]; - maintainers = [ lib.maintainers.vandenoever ]; + license = with licenses; [ gpl2 ]; + maintainers = [ maintainers.vandenoever ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/applications/kde/ktouch.nix b/pkgs/applications/kde/ktouch.nix index 6256fd174bf539..4a0fa0f70cd471 100644 --- a/pkgs/applications/kde/ktouch.nix +++ b/pkgs/applications/kde/ktouch.nix @@ -28,10 +28,10 @@ mkDerivation { pname = "ktouch"; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/ktouch/"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.schmittlauch ]; + license = licenses.gpl2; + maintainers = [ maintainers.schmittlauch ]; description = "Touch typing tutor from the KDE software collection"; mainProgram = "ktouch"; }; diff --git a/pkgs/applications/kde/libkdcraw.nix b/pkgs/applications/kde/libkdcraw.nix index 545233d970f9a2..ff25a856345f9d 100644 --- a/pkgs/applications/kde/libkdcraw.nix +++ b/pkgs/applications/kde/libkdcraw.nix @@ -8,13 +8,13 @@ mkDerivation { pname = "libkdcraw"; - meta = { - license = with lib.licenses; [ + meta = with lib; { + license = with licenses; [ gpl2 lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; + maintainers = [ maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; buildInputs = [ qtbase ]; diff --git a/pkgs/applications/kde/libkexiv2.nix b/pkgs/applications/kde/libkexiv2.nix index 3017618fcaa554..1e391a33b52be1 100644 --- a/pkgs/applications/kde/libkexiv2.nix +++ b/pkgs/applications/kde/libkexiv2.nix @@ -8,13 +8,13 @@ mkDerivation { pname = "libkexiv2"; - meta = { - license = with lib.licenses; [ + meta = with lib; { + license = with licenses; [ gpl2 lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; + maintainers = [ maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; buildInputs = [ qtbase ]; diff --git a/pkgs/applications/kde/libkipi.nix b/pkgs/applications/kde/libkipi.nix index 79fd1eed63b9d9..7278c51ab9fbdc 100644 --- a/pkgs/applications/kde/libkipi.nix +++ b/pkgs/applications/kde/libkipi.nix @@ -10,13 +10,13 @@ mkDerivation { pname = "libkipi"; - meta = { - license = with lib.licenses; [ + meta = with lib; { + license = with licenses; [ gpl2 lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; + maintainers = [ maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; buildInputs = [ diff --git a/pkgs/applications/kde/palapeli.nix b/pkgs/applications/kde/palapeli.nix index 43c5134343a80c..299c777a0618a7 100644 --- a/pkgs/applications/kde/palapeli.nix +++ b/pkgs/applications/kde/palapeli.nix @@ -21,11 +21,11 @@ mkDerivation { kio ktextwidgets ]; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/palapeli/"; description = "Single-player jigsaw puzzle game"; mainProgram = "palapeli"; - license = with lib.licenses; [ gpl2 ]; - maintainers = with lib.maintainers; [ harrisonthorne ]; + license = with licenses; [ gpl2 ]; + maintainers = with maintainers; [ harrisonthorne ]; }; } diff --git a/pkgs/applications/kde/plasmatube/default.nix b/pkgs/applications/kde/plasmatube/default.nix index c36554b5705d07..2e08ca98575e9f 100644 --- a/pkgs/applications/kde/plasmatube/default.nix +++ b/pkgs/applications/kde/plasmatube/default.nix @@ -51,11 +51,11 @@ mkDerivation { ''; dontWrapGApps = true; - meta = { + meta = with lib; { description = "Youtube player powered by an invidious server"; mainProgram = "plasmatube"; homepage = "https://invent.kde.org/plasma-mobile/plasmatube"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/applications/kde/print-manager.nix b/pkgs/applications/kde/print-manager.nix index 5b213cc914eee3..5058ed15f99a6f 100644 --- a/pkgs/applications/kde/print-manager.nix +++ b/pkgs/applications/kde/print-manager.nix @@ -20,9 +20,9 @@ mkDerivation { pname = "print-manager"; - meta = { - license = [ lib.licenses.gpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; + meta = with lib; { + license = [ licenses.gpl2 ]; + maintainers = [ maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; buildInputs = [ diff --git a/pkgs/applications/maui/mauikit-documents.nix b/pkgs/applications/maui/mauikit-documents.nix index 4ec7e6892bfb07..2a43a577ee2361 100644 --- a/pkgs/applications/maui/mauikit-documents.nix +++ b/pkgs/applications/maui/mauikit-documents.nix @@ -36,13 +36,13 @@ mkDerivation { poppler ]; - meta = { + meta = with lib; { homepage = "https://invent.kde.org/maui/mauikit-documents"; description = "MauiKit QtQuick plugins for text editing"; - license = with lib.licenses; [ + license = with licenses; [ bsd2 lgpl21Plus ]; - maintainers = with lib.maintainers; [ dotlambda ]; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/applications/maui/pix.nix b/pkgs/applications/maui/pix.nix index de57aaedbccfe8..032c01d20c42a6 100644 --- a/pkgs/applications/maui/pix.nix +++ b/pkgs/applications/maui/pix.nix @@ -65,11 +65,11 @@ mkDerivation { kquickimageedit ]; - meta = { + meta = with lib; { description = "Image gallery application"; mainProgram = "pix"; homepage = "https://invent.kde.org/maui/pix"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ onny ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ onny ]; }; } diff --git a/pkgs/applications/misc/actiona/default.nix b/pkgs/applications/misc/actiona/default.nix index 069473ce3c0fc3..472eb177729e17 100644 --- a/pkgs/applications/misc/actiona/default.nix +++ b/pkgs/applications/misc/actiona/default.nix @@ -101,12 +101,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Cross-platform automation tool"; homepage = "https://github.com/Jmgr/actiona"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "actiona"; - maintainers = with lib.maintainers; [ tomasajt ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ tomasajt ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/applications/misc/adobe-reader/default.nix b/pkgs/applications/misc/adobe-reader/default.nix index b98b427740a6bc..0d84f57dbdd1d3 100644 --- a/pkgs/applications/misc/adobe-reader/default.nix +++ b/pkgs/applications/misc/adobe-reader/default.nix @@ -83,17 +83,17 @@ stdenv.mkDerivation rec { passthru.mozillaPlugin = "/libexec/adobe-reader/Browser/intellinux"; - meta = { + meta = with lib; { description = "Adobe Reader, a viewer for PDF documents"; homepage = "http://www.adobe.com/products/reader"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; knownVulnerabilities = [ "Numerous unresolved vulnerabilities" "See: https://www.cvedetails.com/product/497/Adobe-Acrobat-Reader.html?vendor_id=53" ]; platforms = [ "i686-linux" ]; - maintainers = with lib.maintainers; [ onny ]; + maintainers = with maintainers; [ onny ]; mainProgram = "acroread"; }; } diff --git a/pkgs/applications/misc/ausweisapp/default.nix b/pkgs/applications/misc/ausweisapp/default.nix index c20def2cadc981..c2af537d3406d8 100644 --- a/pkgs/applications/misc/ausweisapp/default.nix +++ b/pkgs/applications/misc/ausweisapp/default.nix @@ -54,13 +54,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = { + meta = with lib; { description = "Official authentication app for German ID card and residence permit"; downloadPage = "https://github.com/Governikus/AusweisApp2/releases"; homepage = "https://www.ausweisapp.bund.de/open-source-software"; - license = lib.licenses.eupl12; + license = licenses.eupl12; mainProgram = "AusweisApp"; - maintainers = with lib.maintainers; [ b4dm4n ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ b4dm4n ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/applications/misc/barrier/default.nix b/pkgs/applications/misc/barrier/default.nix index d43ed3921c0d1b..ed04b1fb5c390a 100644 --- a/pkgs/applications/misc/barrier/default.nix +++ b/pkgs/applications/misc/barrier/default.nix @@ -61,7 +61,7 @@ mkDerivation rec { ''--prefix PATH : ${lib.makeBinPath [ openssl ]}'' ]; - meta = { + meta = with lib; { description = "Open-source KVM software"; longDescription = '' Barrier is KVM software forked from Symless's synergy 1.9 codebase. @@ -70,9 +70,9 @@ mkDerivation rec { ''; homepage = "https://github.com/debauchee/barrier"; downloadPage = "https://github.com/debauchee/barrier/releases"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.phryneas ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = [ maintainers.phryneas ]; + platforms = platforms.linux; mainProgram = "barrier"; }; } diff --git a/pkgs/applications/misc/confclerk/default.nix b/pkgs/applications/misc/confclerk/default.nix index 0d7a4131e6fe60..4095e4c428820f 100644 --- a/pkgs/applications/misc/confclerk/default.nix +++ b/pkgs/applications/misc/confclerk/default.nix @@ -23,12 +23,12 @@ mkDerivation rec { mv $out/confclerk $out/bin/ ''; - meta = { + meta = with lib; { description = "Offline conference schedule viewer"; mainProgram = "confclerk"; homepage = "http://www.toastfreeware.priv.at/confclerk"; - license = lib.licenses.gpl2; - maintainers = with lib.maintainers; [ ehmry ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = with maintainers; [ ehmry ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/misc/diffpdf/default.nix b/pkgs/applications/misc/diffpdf/default.nix index e0e82119269429..a9617a70427883 100644 --- a/pkgs/applications/misc/diffpdf/default.nix +++ b/pkgs/applications/misc/diffpdf/default.nix @@ -63,12 +63,12 @@ mkDerivation rec { EOF ''; - meta = { + meta = with lib; { homepage = "http://www.qtrac.eu/diffpdf.html"; description = "Tool for diffing pdf files visually or textually"; mainProgram = "diffpdf"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/applications/misc/freemind/default.nix b/pkgs/applications/misc/freemind/default.nix index 5e5d205c8ae996..2ff54c531f00ad 100644 --- a/pkgs/applications/misc/freemind/default.nix +++ b/pkgs/applications/misc/freemind/default.nix @@ -61,14 +61,14 @@ stdenv.mkDerivation (finalAttrs: { --set JAVA_HOME ${jre} ''; - meta = { + meta = with lib; { description = "Mind-mapping software"; homepage = "https://freemind.sourceforge.net/wiki/index.php/Main_Page"; mainProgram = "freemind"; - maintainers = with lib.maintainers; [ tomasajt ]; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; - sourceProvenance = with lib.sourceTypes; [ + maintainers = with maintainers; [ tomasajt ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + sourceProvenance = with sourceTypes; [ fromSource binaryBytecode # source bundles dependencies as jars ]; diff --git a/pkgs/applications/misc/girara/default.nix b/pkgs/applications/misc/girara/default.nix index 20c7b060a78e55..acd04ba2a349c8 100644 --- a/pkgs/applications/misc/girara/default.nix +++ b/pkgs/applications/misc/girara/default.nix @@ -78,15 +78,15 @@ stdenv.mkDerivation rec { inherit zathura; }; - meta = { + meta = with lib; { homepage = "https://pwmt.org/projects/girara"; description = "User interface library"; longDescription = '' girara is a library that implements a GTK based VIM-like user interface that focuses on simplicity and minimalism. ''; - license = lib.licenses.zlib; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = licenses.zlib; + platforms = platforms.linux ++ platforms.darwin; maintainers = [ ]; }; } diff --git a/pkgs/applications/misc/golden-cheetah/default.nix b/pkgs/applications/misc/golden-cheetah/default.nix index 7888db1a27d68b..fcfd128c8e06fa 100644 --- a/pkgs/applications/misc/golden-cheetah/default.nix +++ b/pkgs/applications/misc/golden-cheetah/default.nix @@ -103,11 +103,11 @@ mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Performance software for cyclists, runners and triathletes. Built from source and without API tokens"; mainProgram = "GoldenCheetah"; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ adamcstephens ]; - license = lib.licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ adamcstephens ]; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/applications/misc/input-leap/default.nix b/pkgs/applications/misc/input-leap/default.nix index 68287ee614a360..0659145f01f4a5 100644 --- a/pkgs/applications/misc/input-leap/default.nix +++ b/pkgs/applications/misc/input-leap/default.nix @@ -90,7 +90,7 @@ stdenv.mkDerivation rec { --replace "Exec=input-leap" "Exec=$out/bin/input-leap" ''; - meta = { + meta = with lib; { description = "Open-source KVM software"; longDescription = '' Input Leap is software that mimics the functionality of a KVM switch, which historically @@ -101,13 +101,13 @@ stdenv.mkDerivation rec { to switch focus to a different system. ''; homepage = "https://github.com/input-leap/input-leap"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + maintainers = with maintainers; [ kovirobi phryneas twey shymega ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/misc/keystore-explorer/default.nix b/pkgs/applications/misc/keystore-explorer/default.nix index aa37f5cfe689c5..942ee195cc238e 100644 --- a/pkgs/applications/misc/keystore-explorer/default.nix +++ b/pkgs/applications/misc/keystore-explorer/default.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { dontBuild = true; dontConfigure = true; - meta = { + meta = with lib; { description = "Open source GUI replacement for the Java command-line utilities keytool and jarsigner"; mainProgram = "keystore-explorer"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.gpl3Only; - maintainers = [ lib.maintainers.numinit ]; - platforms = lib.platforms.unix; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.gpl3Only; + maintainers = [ maintainers.numinit ]; + platforms = platforms.unix; }; } diff --git a/pkgs/applications/misc/makehuman/default.nix b/pkgs/applications/misc/makehuman/default.nix index 04cc4e5c0d5c01..addcac23675384 100644 --- a/pkgs/applications/misc/makehuman/default.nix +++ b/pkgs/applications/misc/makehuman/default.nix @@ -97,10 +97,10 @@ stdenv.mkDerivation rec { wrapQtApp $out/bin/makehuman ''; - meta = { + meta = with lib; { description = "Software to create realistic humans"; homepage = "http://www.makehumancommunity.org/"; - license = with lib.licenses; [ + license = with licenses; [ agpl3Plus cc0 ]; @@ -109,7 +109,7 @@ stdenv.mkDerivation rec { realistic-looking humans. ''; mainProgram = "makehuman"; - maintainers = with lib.maintainers; [ elisesouche ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ elisesouche ]; + platforms = platforms.all; }; } diff --git a/pkgs/applications/misc/mbutil/default.nix b/pkgs/applications/misc/mbutil/default.nix index bbfadd2bb105a3..3ec94241309a6c 100644 --- a/pkgs/applications/misc/mbutil/default.nix +++ b/pkgs/applications/misc/mbutil/default.nix @@ -25,12 +25,12 @@ buildPythonApplication rec { nativeCheckInputs = [ pytestCheckHook ]; pytestFlagsArray = [ "test/test.py" ]; - meta = { + meta = with lib; { description = "Importer and exporter for MBTiles"; mainProgram = "mb-util"; homepage = "https://github.com/mapbox/mbutil"; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ sikmir ]; + license = licenses.bsd3; + platforms = platforms.unix; + maintainers = with maintainers; [ sikmir ]; }; } diff --git a/pkgs/applications/misc/pagefind/default.nix b/pkgs/applications/misc/pagefind/default.nix index 84164c0b04f0c1..8499986fb67d7d 100644 --- a/pkgs/applications/misc/pagefind/default.nix +++ b/pkgs/applications/misc/pagefind/default.nix @@ -166,12 +166,12 @@ rustPlatform.buildRustPackage rec { buildFeatures = [ "extended" ]; - meta = { + meta = with lib; { description = "Generate low-bandwidth search index for your static website"; homepage = "https://pagefind.app/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pbsds ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ pbsds ]; + platforms = platforms.unix; mainProgram = "pagefind"; }; } diff --git a/pkgs/applications/misc/tipp10/default.nix b/pkgs/applications/misc/tipp10/default.nix index 29f1591b9fc851..669f2daa6d6d39 100644 --- a/pkgs/applications/misc/tipp10/default.nix +++ b/pkgs/applications/misc/tipp10/default.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { qtwayland ]; - meta = { + meta = with lib; { description = "Learn and train typing with the ten-finger system"; mainProgram = "tipp10"; homepage = "https://gitlab.com/tipp10/tipp10"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.all; + license = licenses.gpl2Only; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.all; }; } diff --git a/pkgs/applications/misc/tpmmanager/default.nix b/pkgs/applications/misc/tpmmanager/default.nix index 0e25349d2f338b..3609df8e5f8e63 100644 --- a/pkgs/applications/misc/tpmmanager/default.nix +++ b/pkgs/applications/misc/tpmmanager/default.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { EOF ''; - meta = { + meta = with lib; { homepage = "https://projects.sirrix.com/trac/tpmmanager"; description = "Tool for managing the TPM"; mainProgram = "tpmmanager"; - license = lib.licenses.gpl2; + license = licenses.gpl2; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/applications/misc/twmn/default.nix b/pkgs/applications/misc/twmn/default.nix index 6a55e9ecdcbf1a..13897b38e897f7 100644 --- a/pkgs/applications/misc/twmn/default.nix +++ b/pkgs/applications/misc/twmn/default.nix @@ -43,11 +43,11 @@ mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Notification system for tiling window managers"; homepage = "https://github.com/sboli/twmn"; - platforms = with lib.platforms; linux; - maintainers = [ lib.maintainers.matejc ]; - license = lib.licenses.lgpl3; + platforms = with platforms; linux; + maintainers = [ maintainers.matejc ]; + license = licenses.lgpl3; }; } diff --git a/pkgs/applications/misc/wikicurses/default.nix b/pkgs/applications/misc/wikicurses/default.nix index 64f8f2cbac36c2..f8998f2ab47c65 100644 --- a/pkgs/applications/misc/wikicurses/default.nix +++ b/pkgs/applications/misc/wikicurses/default.nix @@ -34,13 +34,13 @@ pythonPackages.buildPythonApplication rec { doCheck = false; - meta = { + meta = with lib; { description = "Simple curses interface for MediaWiki sites such as Wikipedia"; mainProgram = "wikicurses"; homepage = "https://github.com/ids1024/wikicurses/"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ pSub ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ pSub ]; }; } diff --git a/pkgs/applications/misc/zathura/cb/default.nix b/pkgs/applications/misc/zathura/cb/default.nix index 8da351b480691c..95af0c3972cd7b 100644 --- a/pkgs/applications/misc/zathura/cb/default.nix +++ b/pkgs/applications/misc/zathura/cb/default.nix @@ -39,14 +39,14 @@ stdenv.mkDerivation (finalAttrs: { env.PKG_CONFIG_ZATHURA_PLUGINDIR = "lib/zathura"; - meta = { + meta = with lib; { homepage = "https://pwmt.org/projects/zathura-cb/"; description = "Zathura CB plugin"; longDescription = '' The zathura-cb plugin adds comic book support to zathura. ''; - license = lib.licenses.zlib; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ jlesquembre ]; + license = licenses.zlib; + platforms = platforms.unix; + maintainers = with maintainers; [ jlesquembre ]; }; }) diff --git a/pkgs/applications/misc/zathura/core/default.nix b/pkgs/applications/misc/zathura/core/default.nix index b23e8876157738..63457b0b9bc1a5 100644 --- a/pkgs/applications/misc/zathura/core/default.nix +++ b/pkgs/applications/misc/zathura/core/default.nix @@ -101,11 +101,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { homepage = "https://pwmt.org/projects/zathura"; description = "Core component for zathura PDF viewer"; - license = lib.licenses.zlib; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ globin ]; + license = licenses.zlib; + platforms = platforms.unix; + maintainers = with maintainers; [ globin ]; }; }) diff --git a/pkgs/applications/misc/zathura/djvu/default.nix b/pkgs/applications/misc/zathura/djvu/default.nix index 87ac40d1b20457..d24289b28322ba 100644 --- a/pkgs/applications/misc/zathura/djvu/default.nix +++ b/pkgs/applications/misc/zathura/djvu/default.nix @@ -41,15 +41,15 @@ stdenv.mkDerivation (finalAttrs: { env.PKG_CONFIG_ZATHURA_PLUGINDIR = "lib/zathura"; - meta = { + meta = with lib; { homepage = "https://pwmt.org/projects/zathura-djvu/"; description = "Zathura DJVU plugin"; longDescription = '' The zathura-djvu plugin adds DjVu support to zathura by using the djvulibre library. ''; - license = lib.licenses.zlib; - platforms = lib.platforms.unix; + license = licenses.zlib; + platforms = platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/applications/misc/zathura/pdf-mupdf/default.nix b/pkgs/applications/misc/zathura/pdf-mupdf/default.nix index f0fd28d4a444bf..4bf91c87ff4697 100644 --- a/pkgs/applications/misc/zathura/pdf-mupdf/default.nix +++ b/pkgs/applications/misc/zathura/pdf-mupdf/default.nix @@ -61,15 +61,15 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { url = "https://git.pwmt.org/pwmt/zathura-pdf-mupdf.git"; }; - meta = { + meta = with lib; { homepage = "https://pwmt.org/projects/zathura-pdf-mupdf/"; description = "Zathura PDF plugin (mupdf)"; longDescription = '' The zathura-pdf-mupdf plugin adds PDF support to zathura by using the mupdf rendering library. ''; - license = lib.licenses.zlib; - platforms = lib.platforms.unix; + license = licenses.zlib; + platforms = platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/applications/misc/zathura/pdf-poppler/default.nix b/pkgs/applications/misc/zathura/pdf-poppler/default.nix index 37941f26898319..45d5ec9f64653e 100644 --- a/pkgs/applications/misc/zathura/pdf-poppler/default.nix +++ b/pkgs/applications/misc/zathura/pdf-poppler/default.nix @@ -37,15 +37,15 @@ stdenv.mkDerivation (finalAttrs: { env.PKG_CONFIG_ZATHURA_PLUGINDIR = "lib/zathura"; - meta = { + meta = with lib; { homepage = "https://pwmt.org/projects/zathura-pdf-poppler/"; description = "Zathura PDF plugin (poppler)"; longDescription = '' The zathura-pdf-poppler plugin adds PDF support to zathura by using the poppler rendering library. ''; - license = lib.licenses.zlib; - platforms = lib.platforms.unix; + license = licenses.zlib; + platforms = platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/applications/misc/zathura/ps/default.nix b/pkgs/applications/misc/zathura/ps/default.nix index 3978668991c30e..2b82b4ecd1a2a3 100644 --- a/pkgs/applications/misc/zathura/ps/default.nix +++ b/pkgs/applications/misc/zathura/ps/default.nix @@ -39,15 +39,15 @@ stdenv.mkDerivation (finalAttrs: { env.PKG_CONFIG_ZATHURA_PLUGINDIR = "lib/zathura"; - meta = { + meta = with lib; { homepage = "https://pwmt.org/projects/zathura-ps/"; description = "Zathura PS plugin"; longDescription = '' The zathura-ps plugin adds PS support to zathura by using the libspectre library. ''; - license = lib.licenses.zlib; - platforms = lib.platforms.unix; + license = licenses.zlib; + platforms = platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/applications/misc/zathura/wrapper.nix b/pkgs/applications/misc/zathura/wrapper.nix index 6f5d5bcee4e1ec..043b5ddf3abbbc 100644 --- a/pkgs/applications/misc/zathura/wrapper.nix +++ b/pkgs/applications/misc/zathura/wrapper.nix @@ -55,7 +55,7 @@ symlinkJoin { --replace-fail "${zathura_core.out}" "$out" ''; - meta = { + meta = with lib; { homepage = "https://pwmt.org/projects/zathura"; description = "Highly customizable and functional PDF viewer"; longDescription = '' @@ -64,9 +64,9 @@ symlinkJoin { is an application that provides a minimalistic and space saving interface as well as an easy usage that mainly focuses on keyboard interaction. ''; - license = lib.licenses.zlib; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.zlib; + platforms = platforms.unix; + maintainers = with maintainers; [ smironov globin TethysSvensson diff --git a/pkgs/applications/misc/zettlr/generic.nix b/pkgs/applications/misc/zettlr/generic.nix index 76c4cf9c7463e1..858d8b93ae3c5e 100644 --- a/pkgs/applications/misc/zettlr/generic.nix +++ b/pkgs/applications/misc/zettlr/generic.nix @@ -37,12 +37,12 @@ appimageTools.wrapType2 rec { --replace-fail 'Exec=AppRun' 'Exec=${pname}' ''; - meta = { + meta = with lib; { description = "Markdown editor for writing academic texts and taking notes"; homepage = "https://www.zettlr.com"; platforms = [ "x86_64-linux" ]; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ tfmoraes ]; + license = licenses.gpl3; + maintainers = with maintainers; [ tfmoraes ]; mainProgram = "zettlr"; }; } diff --git a/pkgs/applications/networking/browsers/lagrange/default.nix b/pkgs/applications/networking/browsers/lagrange/default.nix index 80a741f76382e1..367349d1612641 100644 --- a/pkgs/applications/networking/browsers/lagrange/default.nix +++ b/pkgs/applications/networking/browsers/lagrange/default.nix @@ -75,11 +75,11 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Beautiful Gemini Client"; homepage = "https://gmi.skyjake.fi/lagrange/"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ sikmir ]; - platforms = lib.platforms.unix; + license = licenses.bsd2; + maintainers = with maintainers; [ sikmir ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/applications/networking/browsers/netsurf/buildsystem.nix b/pkgs/applications/networking/browsers/netsurf/buildsystem.nix index 12ce586c4de754..68dbaf5f51aa44 100644 --- a/pkgs/applications/networking/browsers/netsurf/buildsystem.nix +++ b/pkgs/applications/networking/browsers/netsurf/buildsystem.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation (finalAttrs: { "PREFIX=$(out)" ]; - meta = { + meta = with lib; { homepage = "https://www.netsurf-browser.org/"; description = "NetSurf browser shared build system"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/applications/networking/cluster/helm/plugins/helm-dt.nix b/pkgs/applications/networking/cluster/helm/plugins/helm-dt.nix index 3b6fdfe3553ced..aab1786b651a93 100644 --- a/pkgs/applications/networking/cluster/helm/plugins/helm-dt.nix +++ b/pkgs/applications/networking/cluster/helm/plugins/helm-dt.nix @@ -39,10 +39,10 @@ buildGoModule rec { install -m644 -Dt $out/helm-dt plugin.yaml ''; - meta = { + meta = with lib; { description = "Helm Distribution plugin is is a set of utilities and Helm Plugin for making offline work with Helm Charts easier"; homepage = "https://github.com/vmware-labs/distribution-tooling-for-helm"; - maintainers = with lib.maintainers; [ ascii17 ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ ascii17 ]; + license = licenses.mit; }; } diff --git a/pkgs/applications/networking/cluster/helm/plugins/helm-mapkubeapis.nix b/pkgs/applications/networking/cluster/helm/plugins/helm-mapkubeapis.nix index 47aa83ee965398..bd409a4603c7fb 100644 --- a/pkgs/applications/networking/cluster/helm/plugins/helm-mapkubeapis.nix +++ b/pkgs/applications/networking/cluster/helm/plugins/helm-mapkubeapis.nix @@ -29,10 +29,10 @@ buildGoModule rec { install -m644 -Dt $out/helm-mapkubeapis plugin.yaml ''; - meta = { + meta = with lib; { description = "Helm plugin which maps deprecated or removed Kubernetes APIs in a release to supported APIs"; homepage = "https://github.com/helm/helm-mapkubeapis"; - license = with lib.licenses; [ asl20 ]; - maintainers = with lib.maintainers; [ aos ]; + license = with licenses; [ asl20 ]; + maintainers = with maintainers; [ aos ]; }; } diff --git a/pkgs/applications/networking/cluster/helmfile/default.nix b/pkgs/applications/networking/cluster/helmfile/default.nix index affa96aadbdda1..fd70fa50e43e85 100644 --- a/pkgs/applications/networking/cluster/helmfile/default.nix +++ b/pkgs/applications/networking/cluster/helmfile/default.nix @@ -46,7 +46,7 @@ buildGoModule rec { --zsh <($out/bin/helmfile completion zsh) ''; - meta = { + meta = with lib; { description = "Declarative spec for deploying Helm charts"; mainProgram = "helmfile"; longDescription = '' @@ -54,8 +54,8 @@ buildGoModule rec { and charts as Helm releases in one shot. ''; homepage = "https://helmfile.readthedocs.io/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ pneumaticat yurrriq ]; diff --git a/pkgs/applications/networking/dropbox/cli.nix b/pkgs/applications/networking/dropbox/cli.nix index 31eda100eb9735..44ceacdc673220 100644 --- a/pkgs/applications/networking/dropbox/cli.nix +++ b/pkgs/applications/networking/dropbox/cli.nix @@ -69,13 +69,13 @@ stdenv.mkDerivation { "EMBLEM_DIR=${placeholder "nautilusExtension"}/share/nautilus-dropbox/emblems" ]; - meta = { + meta = with lib; { homepage = "https://www.dropbox.com"; description = "Command line client for the dropbox daemon"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "dropbox"; - maintainers = with lib.maintainers; [ ]; + maintainers = with maintainers; [ ]; # NOTE: Dropbox itself only works on linux, so this is ok. - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/networking/hpmyroom/default.nix b/pkgs/applications/networking/hpmyroom/default.nix index fd68b718d40b4a..7bdbf8660bf817 100644 --- a/pkgs/applications/networking/hpmyroom/default.nix +++ b/pkgs/applications/networking/hpmyroom/default.nix @@ -84,11 +84,11 @@ mkDerivation rec { ln -s ${libpng}/lib/libpng.so $out/lib/hpmyroom/libpng15.so.15 ''; - meta = { + meta = with lib; { description = "Client for HPE's MyRoom web conferencing solution"; - maintainers = with lib.maintainers; [ johnazoidberg ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; + maintainers = with maintainers; [ johnazoidberg ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; homepage = "https://myroom.hpe.com"; # TODO: A Darwin binary is available upstream platforms = [ "x86_64-linux" ]; diff --git a/pkgs/applications/networking/instant-messengers/gajim/default.nix b/pkgs/applications/networking/instant-messengers/gajim/default.nix index 1b4f2536d20b00..52962735a34dce 100644 --- a/pkgs/applications/networking/instant-messengers/gajim/default.nix +++ b/pkgs/applications/networking/instant-messengers/gajim/default.nix @@ -132,16 +132,16 @@ python3.pkgs.buildPythonApplication rec { # necessary for wrapGAppsHook3 strictDeps = false; - meta = { + meta = with lib; { homepage = "http://gajim.org/"; description = "Jabber client written in PyGTK"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ raskin abbradar ]; downloadPage = "http://gajim.org/download/"; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "gajim"; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/default.nix index 98fd9783704d67..57ee5ab4683ae3 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/default.nix @@ -171,13 +171,13 @@ let }; }; - meta = { + meta = with lib; { description = "Multi-protocol instant messaging client"; mainProgram = "pidgin"; homepage = "https://pidgin.im/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.lucasew ]; + license = licenses.gpl2Plus; + platforms = platforms.unix; + maintainers = [ maintainers.lucasew ]; }; }; diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-mra/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-mra/default.nix index 9a53cd25f732ed..368916ffe9e8dd 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-mra/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/pidgin-mra/default.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { "DATADIR=${placeholder "out"}/share" ]; - meta = { + meta = with lib; { homepage = "https://github.com/dreadatour/pidgin-mra"; description = "Mail.ru Agent plugin for Pidgin / libpurple"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; + license = licenses.gpl2; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-vk-plugin/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-vk-plugin/default.nix index ad3ad0d088a544..bb96b813f04056 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-vk-plugin/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/pidgin-plugins/purple-vk-plugin/default.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation { cmakeFlags = [ "-DCMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT=1" ]; - meta = { + meta = with lib; { homepage = "https://bitbucket.org/olegoandreev/purple-vk-plugin"; description = "Vk (russian social network) plugin for Pidgin / libpurple"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; + license = licenses.gpl3; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/tg_owt.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/tg_owt.nix index 60f4a0128ab8b8..4c027beb6a377f 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/tg_owt.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/tg_owt.nix @@ -95,11 +95,11 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Fork of Google's webrtc library for telegram-desktop"; homepage = "https://github.com/desktop-app/tg_owt"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ oxalica ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = licenses.bsd3; + maintainers = with maintainers; [ oxalica ]; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/applications/networking/irc/ii/default.nix b/pkgs/applications/networking/irc/ii/default.nix index fbab300a60bb38..9042831375210a 100644 --- a/pkgs/applications/networking/irc/ii/default.nix +++ b/pkgs/applications/networking/irc/ii/default.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { homepage = "https://tools.suckless.org/ii/"; - license = lib.licenses.mit; + license = licenses.mit; description = "Irc it, simple FIFO based irc client"; mainProgram = "ii"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/applications/networking/mailreaders/imapfilter.nix b/pkgs/applications/networking/mailreaders/imapfilter.nix index 93eede6853d6f8..a62d1a4203867b 100644 --- a/pkgs/applications/networking/mailreaders/imapfilter.nix +++ b/pkgs/applications/networking/mailreaders/imapfilter.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation (finalAttrs: { lua ]; - meta = { + meta = with lib; { homepage = "https://github.com/lefcha/imapfilter"; description = "Mail filtering utility"; mainProgram = "imapfilter"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ doronbehar ]; }; }) diff --git a/pkgs/applications/networking/mailreaders/notmuch/muchsync.nix b/pkgs/applications/networking/mailreaders/notmuch/muchsync.nix index 5ac38f7db782e8..2cd468fef4da0e 100644 --- a/pkgs/applications/networking/mailreaders/notmuch/muchsync.nix +++ b/pkgs/applications/networking/mailreaders/notmuch/muchsync.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { zlib ]; XAPIAN_CONFIG = "${xapian}/bin/xapian-config"; - meta = { + meta = with lib; { description = "Synchronize maildirs and notmuch databases"; mainProgram = "muchsync"; homepage = "http://www.muchsync.org/"; - platforms = lib.platforms.unix; + platforms = platforms.unix; maintainers = [ ]; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/applications/networking/p2p/mldonkey/default.nix b/pkgs/applications/networking/p2p/mldonkey/default.nix index fb8cd5bf719745..135f7595eba4d9 100644 --- a/pkgs/applications/networking/p2p/mldonkey/default.nix +++ b/pkgs/applications/networking/p2p/mldonkey/default.nix @@ -58,10 +58,10 @@ stdenv.mkDerivation rec { CXXFLAGS = "-std=c++98"; }; - meta = { + meta = with lib; { description = "Client for many p2p networks, with multiple frontends"; homepage = "https://github.com/ygrek/mldonkey"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.unix; + license = licenses.gpl2Only; + platforms = platforms.unix; }; } diff --git a/pkgs/applications/networking/protonvpn-gui/default.nix b/pkgs/applications/networking/protonvpn-gui/default.nix index 68657d34605e69..4c1866e0c175fe 100644 --- a/pkgs/applications/networking/protonvpn-gui/default.nix +++ b/pkgs/applications/networking/protonvpn-gui/default.nix @@ -74,13 +74,13 @@ buildPythonApplication rec { # Gets a segmentation fault after the widgets test doCheck = false; - meta = { + meta = with lib; { description = "Proton VPN GTK app for Linux"; homepage = "https://github.com/ProtonVPN/proton-vpn-gtk-app"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + platforms = platforms.linux; mainProgram = "protonvpn-app"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ sebtm rapiteanu ]; diff --git a/pkgs/applications/networking/sync/backintime/common.nix b/pkgs/applications/networking/sync/backintime/common.nix index ee79119edb2554..985728f86f0466 100644 --- a/pkgs/applications/networking/sync/backintime/common.nix +++ b/pkgs/applications/networking/sync/backintime/common.nix @@ -68,12 +68,12 @@ stdenv.mkDerivation rec { --prefix PATH : ${apps} ''; - meta = { + meta = with lib; { homepage = "https://github.com/bit-team/backintime"; description = "Simple backup tool for Linux"; - license = lib.licenses.gpl2; - maintainers = with lib.maintainers; [ stephen-huan ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = with maintainers; [ stephen-huan ]; + platforms = platforms.linux; mainProgram = "backintime"; longDescription = '' Back In Time is a simple backup tool (on top of rsync) for Linux diff --git a/pkgs/applications/office/kmymoney/default.nix b/pkgs/applications/office/kmymoney/default.nix index f21c568c210c67..70712ce3a619ed 100644 --- a/pkgs/applications/office/kmymoney/default.nix +++ b/pkgs/applications/office/kmymoney/default.nix @@ -113,13 +113,13 @@ stdenv.mkDerivation rec { "$out/bin/.kmymoney-wrapped" ''; - meta = { + meta = with lib; { description = "Personal finance manager for KDE"; mainProgram = "kmymoney"; homepage = "https://kmymoney.org/"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ + platforms = platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ aidalgol das-g ]; diff --git a/pkgs/applications/office/mmex/default.nix b/pkgs/applications/office/mmex/default.nix index c45500832f644c..8491c02704a365 100644 --- a/pkgs/applications/office/mmex/default.nix +++ b/pkgs/applications/office/mmex/default.nix @@ -86,12 +86,12 @@ stdenv.mkDerivation rec { makeWrapper $out/{Applications/mmex.app/Contents/MacOS,bin}/mmex ''; - meta = { + meta = with lib; { description = "Easy-to-use personal finance software"; homepage = "https://www.moneymanagerex.org/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = with lib.platforms; unix; + platforms = with platforms; unix; mainProgram = "mmex"; }; } diff --git a/pkgs/applications/office/paperwork/openpaperwork-core.nix b/pkgs/applications/office/paperwork/openpaperwork-core.nix index 01317f647589d9..0bc4bc6fff167a 100644 --- a/pkgs/applications/office/paperwork/openpaperwork-core.nix +++ b/pkgs/applications/office/paperwork/openpaperwork-core.nix @@ -51,14 +51,14 @@ buildPythonPackage rec { export HOME=$(mktemp -d) ''; - meta = { + meta = with lib; { description = "Backend part of Paperwork (Python API, no UI)"; homepage = "https://openpaper.work/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ aszlig symphorien ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/office/paperwork/openpaperwork-gtk.nix b/pkgs/applications/office/paperwork/openpaperwork-gtk.nix index 2e88ee23bfe59a..97aa0e4e1fa928 100644 --- a/pkgs/applications/office/paperwork/openpaperwork-gtk.nix +++ b/pkgs/applications/office/paperwork/openpaperwork-gtk.nix @@ -51,14 +51,14 @@ buildPythonPackage rec { openpaperwork-core ]; - meta = { + meta = with lib; { description = "Reusable GTK components of Paperwork"; homepage = "https://openpaper.work/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ aszlig symphorien ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/office/paperwork/paperwork-gtk.nix b/pkgs/applications/office/paperwork/paperwork-gtk.nix index 3f8876779d830b..395b8a9b800ac7 100644 --- a/pkgs/applications/office/paperwork/paperwork-gtk.nix +++ b/pkgs/applications/office/paperwork/paperwork-gtk.nix @@ -148,14 +148,14 @@ python3Packages.buildPythonApplication rec { update-source-version paperwork.sample_docs "$docs_version" --file=pkgs/applications/office/paperwork/src.nix --version-key=rev ''; - meta = { + meta = with lib; { description = "Personal document manager for scanned documents"; homepage = "https://openpaper.work/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ aszlig symphorien ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/office/paperwork/paperwork-shell.nix b/pkgs/applications/office/paperwork/paperwork-shell.nix index 21e3976a9adaa3..546dafb4dcf08b 100644 --- a/pkgs/applications/office/paperwork/paperwork-shell.nix +++ b/pkgs/applications/office/paperwork/paperwork-shell.nix @@ -62,11 +62,11 @@ buildPythonPackage rec { "$out/bin/paperwork-cli" chkdeps ''; - meta = { + meta = with lib; { description = "CLI for Paperwork"; homepage = "https://openpaper.work/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ aszlig symphorien ]; diff --git a/pkgs/applications/radio/gnuradio/shared.nix b/pkgs/applications/radio/gnuradio/shared.nix index ef1b5feb6a8d91..5ef500b9cb61e0 100644 --- a/pkgs/applications/radio/gnuradio/shared.nix +++ b/pkgs/applications/radio/gnuradio/shared.nix @@ -131,7 +131,7 @@ in export QT_PLUGIN_PATH="${qt.qtbase.bin}/${qt.qtbase.qtPluginPrefix}" ''; - meta = { + meta = with lib; { description = "Software Defined Radio (SDR) software"; mainProgram = "gnuradio-config-info"; longDescription = '' @@ -144,9 +144,9 @@ in real-world radio systems. ''; homepage = "https://www.gnuradio.org"; - license = lib.licenses.gpl3; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.gpl3; + platforms = platforms.unix; + maintainers = with maintainers; [ doronbehar bjornfor fpletz diff --git a/pkgs/applications/radio/qdmr/default.nix b/pkgs/applications/radio/qdmr/default.nix index 6e023899d639f1..75c0bf3798759f 100644 --- a/pkgs/applications/radio/qdmr/default.nix +++ b/pkgs/applications/radio/qdmr/default.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { cp ${src}/dist/99-qdmr.rules $out/etc/udev/rules.d/ ''; - meta = { + meta = with lib; { description = "GUI application and command line tool for programming DMR radios"; homepage = "https://dm3mat.darc.de/qdmr/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ _0x4A6F ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ _0x4A6F ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/radio/sdrangel/default.nix b/pkgs/applications/radio/sdrangel/default.nix index 2166ed3176f541..7e03fd995bf889 100644 --- a/pkgs/applications/radio/sdrangel/default.nix +++ b/pkgs/applications/radio/sdrangel/default.nix @@ -123,17 +123,17 @@ stdenv.mkDerivation (finalAttrs: { "-DENABLE_QT6=ON" ]; - meta = { + meta = with lib; { description = "Software defined radio (SDR) software"; homepage = "https://github.com/f4exb/sdrangel"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; longDescription = '' SDRangel is an Open Source Qt6 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware. ''; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ alkeryn Tungsten842 ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/applications/radio/welle-io/default.nix b/pkgs/applications/radio/welle-io/default.nix index 6f3e82e93022d5..3f96c7ccb5eef4 100644 --- a/pkgs/applications/radio/welle-io/default.nix +++ b/pkgs/applications/radio/welle-io/default.nix @@ -57,17 +57,17 @@ stdenv.mkDerivation rec { "-DSOAPYSDR=true" ] ++ lib.optional withFlac "-DFLAC=true"; - meta = { + meta = with lib; { description = "DAB/DAB+ Software Radio"; homepage = "https://www.welle.io/"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ ck3d markuskowa ]; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; platforms = [ "x86_64-linux" "i686-linux" - ] ++ lib.platforms.darwin; + ] ++ platforms.darwin; }; } diff --git a/pkgs/applications/science/astronomy/gpredict/default.nix b/pkgs/applications/science/astronomy/gpredict/default.nix index 7f0e0836d9ca2d..17375743c82520 100644 --- a/pkgs/applications/science/astronomy/gpredict/default.nix +++ b/pkgs/applications/science/astronomy/gpredict/default.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { hamlib ]; - meta = { + meta = with lib; { description = "Real time satellite tracking and orbit prediction"; mainProgram = "gpredict"; longDescription = '' @@ -69,10 +69,10 @@ stdenv.mkDerivation rec { well. Gpredict uses the SGP4/SDP4 algorithms, which are compatible with the NORAD Keplerian elements. ''; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + platforms = platforms.linux; homepage = "http://gpredict.oz9aec.net/"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ markuskowa cmcdragonkai ]; diff --git a/pkgs/applications/science/biology/trimmomatic/default.nix b/pkgs/applications/science/biology/trimmomatic/default.nix index 1c22b3ec7fb3ab..882ece68ea5014 100644 --- a/pkgs/applications/science/biology/trimmomatic/default.nix +++ b/pkgs/applications/science/biology/trimmomatic/default.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { changelog = "https://github.com/usadellab/Trimmomatic/blob/main/versionHistory.txt"; description = "Flexible read trimming tool for Illumina NGS data"; longDescription = '' @@ -64,12 +64,12 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "http://www.usadellab.org/cms/?page=trimmomatic"; downloadPage = "https://github.com/usadellab/Trimmomatic/releases"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; sourceProvenance = [ - lib.sourceTypes.fromSource - lib.sourceTypes.binaryBytecode # source bundles dependencies as jars + sourceTypes.fromSource + sourceTypes.binaryBytecode # source bundles dependencies as jars ]; mainProgram = "trimmomatic"; - maintainers = [ lib.maintainers.kupac ]; + maintainers = [ maintainers.kupac ]; }; }) diff --git a/pkgs/applications/science/electronics/caneda/default.nix b/pkgs/applications/science/electronics/caneda/default.nix index b99c2201ec0972..914d5d5071348b 100644 --- a/pkgs/applications/science/electronics/caneda/default.nix +++ b/pkgs/applications/science/electronics/caneda/default.nix @@ -28,12 +28,12 @@ mkDerivation rec { qwt6_1 ]; - meta = { + meta = with lib; { description = "Open source EDA software focused on easy of use and portability"; mainProgram = "caneda"; homepage = "http://caneda.org"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/applications/science/electronics/fritzing/default.nix b/pkgs/applications/science/electronics/fritzing/default.nix index f0d98e7a823c11..1ffad3c1879515 100644 --- a/pkgs/applications/science/electronics/fritzing/default.nix +++ b/pkgs/applications/science/electronics/fritzing/default.nix @@ -119,18 +119,18 @@ stdenv.mkDerivation { -folder "$out/share/fritzing" ''; - meta = { + meta = with lib; { description = "Open source prototyping tool for Arduino-based projects"; homepage = "https://fritzing.org"; - license = with lib.licenses; [ + license = with licenses; [ gpl3 cc-by-sa-30 ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ robberer muscaln ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "Fritzing"; }; } diff --git a/pkgs/applications/science/electronics/tkgate/1.x.nix b/pkgs/applications/science/electronics/tkgate/1.x.nix index c0119ebcd13cb8..44bdbf802598d4 100644 --- a/pkgs/applications/science/electronics/tkgate/1.x.nix +++ b/pkgs/applications/science/electronics/tkgate/1.x.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { -e "s|file:/usr/X11R6/lib/tkgate-|file://$out/lib/tkgate-|" ''; - meta = { + meta = with lib; { description = "Event driven digital circuit simulator with a TCL/TK-based graphical editor"; mainProgram = "gmac"; homepage = "http://www.tkgate.org/"; - license = lib.licenses.gpl2Plus; - hydraPlatforms = lib.platforms.linux; + license = licenses.gpl2Plus; + hydraPlatforms = platforms.linux; }; } diff --git a/pkgs/applications/science/geometry/tetgen/1.4.nix b/pkgs/applications/science/geometry/tetgen/1.4.nix index ab70e9b77e90c8..dbb50313abe117 100644 --- a/pkgs/applications/science/geometry/tetgen/1.4.nix +++ b/pkgs/applications/science/geometry/tetgen/1.4.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { cp tetgen $out/bin ''; - meta = { + meta = with lib; { description = "Quality Tetrahedral Mesh Generator and 3D Delaunay Triangulator"; mainProgram = "tetgen"; homepage = "http://tetgen.org/"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; + license = licenses.mit; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/science/geometry/tetgen/default.nix b/pkgs/applications/science/geometry/tetgen/default.nix index 56b6bcbe92972b..829c4cbafc683c 100644 --- a/pkgs/applications/science/geometry/tetgen/default.nix +++ b/pkgs/applications/science/geometry/tetgen/default.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Quality Tetrahedral Mesh Generator and 3D Delaunay Triangulator"; mainProgram = "tetgen"; homepage = "http://tetgen.org/"; - license = lib.licenses.agpl3Plus; - platforms = lib.platforms.unix; + license = licenses.agpl3Plus; + platforms = platforms.unix; }; } diff --git a/pkgs/applications/science/logic/abella/default.nix b/pkgs/applications/science/logic/abella/default.nix index 62da3a42e0672f..783c6a6ae6bd9a 100644 --- a/pkgs/applications/science/logic/abella/default.nix +++ b/pkgs/applications/science/logic/abella/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: { rsync -av examples/ $out/share/abella/examples/ ''; - meta = { + meta = with lib; { description = "Interactive theorem prover"; mainProgram = "abella"; longDescription = '' @@ -51,11 +51,11 @@ stdenv.mkDerivation (finalAttrs: { objects with binding. ''; homepage = "https://abella-prover.org"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ + license = licenses.gpl3; + maintainers = with maintainers; [ bcdarwin ciil ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/applications/science/logic/avy/default.nix b/pkgs/applications/science/logic/avy/default.nix index 9edd9f27e5ac56..d4c3c5f961b749 100644 --- a/pkgs/applications/science/logic/avy/default.nix +++ b/pkgs/applications/science/logic/avy/default.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { cp avy/src/{avy,avybmc} $out/bin/ ''; - meta = { + meta = with lib; { description = "AIGER model checking for Property Directed Reachability"; homepage = "https://arieg.bitbucket.io/avy/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ thoughtpolice ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ thoughtpolice ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/science/logic/easycrypt/default.nix b/pkgs/applications/science/logic/easycrypt/default.nix index 3e7afa28ba3355..38218a64ed2d4a 100644 --- a/pkgs/applications/science/logic/easycrypt/default.nix +++ b/pkgs/applications/science/logic/easycrypt/default.nix @@ -58,10 +58,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; - platforms = lib.platforms.all; + meta = with lib; { + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; + platforms = platforms.all; homepage = "https://easycrypt.info/"; description = "Computer-Aided Cryptographic Proofs"; mainProgram = "easycrypt"; diff --git a/pkgs/applications/science/logic/potassco/clingo.nix b/pkgs/applications/science/logic/potassco/clingo.nix index a37d64e943b163..b827f18adf407d 100644 --- a/pkgs/applications/science/logic/potassco/clingo.nix +++ b/pkgs/applications/science/logic/potassco/clingo.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DCLINGO_BUILD_WITH_PYTHON=OFF" ]; - meta = { + meta = with lib; { description = "ASP system to ground and solve logic programs"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = [ maintainers.raskin ]; + platforms = platforms.unix; homepage = "https://potassco.org/"; downloadPage = "https://github.com/potassco/clingo/releases/"; }; diff --git a/pkgs/applications/science/logic/satallax/default.nix b/pkgs/applications/science/logic/satallax/default.nix index ff1bb99dac34bb..d5a2a617f78739 100644 --- a/pkgs/applications/science/logic/satallax/default.nix +++ b/pkgs/applications/science/logic/satallax/default.nix @@ -99,12 +99,12 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = { + meta = with lib; { description = "Automated theorem prover for higher-order logic"; mainProgram = "satallax"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = [ maintainers.raskin ]; + platforms = platforms.unix; downloadPage = "http://www.ps.uni-saarland.de/~cebrown/satallax/downloads.php"; homepage = "http://www.ps.uni-saarland.de/~cebrown/satallax/index.php"; }; diff --git a/pkgs/applications/science/logic/statverif/default.nix b/pkgs/applications/science/logic/statverif/default.nix index 6e6090ffaa1451..923cc1a0382a46 100644 --- a/pkgs/applications/science/logic/statverif/default.nix +++ b/pkgs/applications/science/logic/statverif/default.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { cp ./proveriftotex $out/bin/statveriftotex ''; - meta = { + meta = with lib; { description = "Verification of stateful processes (via Proverif)"; homepage = "https://markryan.eu/research/statverif/"; - license = lib.licenses.gpl2; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.thoughtpolice ]; + license = licenses.gpl2; + platforms = platforms.unix; + maintainers = [ maintainers.thoughtpolice ]; }; } diff --git a/pkgs/applications/science/logic/tlaplus/default.nix b/pkgs/applications/science/logic/tlaplus/default.nix index 183bb80ece9d21..081bc4c363a9d5 100644 --- a/pkgs/applications/science/logic/tlaplus/default.nix +++ b/pkgs/applications/science/logic/tlaplus/default.nix @@ -32,13 +32,13 @@ stdenv.mkDerivation rec { --add-flags "-XX:+UseParallelGC -cp $out/share/java/tla2tools.jar tla2tex.TLA" ''; - meta = { + meta = with lib; { description = "Algorithm specification language with model checking tools"; homepage = "http://lamport.azurewebsites.net/tla/tla.html"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ florentc thoughtpolice mgregson diff --git a/pkgs/applications/science/logic/tlaplus/tlaplus18.nix b/pkgs/applications/science/logic/tlaplus/tlaplus18.nix index 639a0513f1d584..91468000ec73b8 100644 --- a/pkgs/applications/science/logic/tlaplus/tlaplus18.nix +++ b/pkgs/applications/science/logic/tlaplus/tlaplus18.nix @@ -34,13 +34,13 @@ stdenv.mkDerivation rec { --add-flags "-XX:+UseParallelGC -cp $out/share/java/tla2tools.jar tlc2.REPL" ''; - meta = { + meta = with lib; { description = "Algorithm specification language with model checking tools"; homepage = "http://lamport.azurewebsites.net/tla/tla.html"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ florentc thoughtpolice mgregson diff --git a/pkgs/applications/science/logic/tlaplus/tlaps.nix b/pkgs/applications/science/logic/tlaplus/tlaps.nix index fd5f62b5177acb..b3fc25ca18fb66 100644 --- a/pkgs/applications/science/logic/tlaplus/tlaps.nix +++ b/pkgs/applications/science/logic/tlaplus/tlaps.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { make install ''; - meta = { + meta = with lib; { description = "Mechanically check TLA+ proofs"; longDescription = '' TLA+ is a general-purpose formal specification language that is @@ -60,9 +60,9 @@ stdenv.mkDerivation rec { consistent abstraction over the various “backend” verifiers. ''; homepage = "https://tla.msr-inria.inria.fr/tlaps/content/Home.html"; - license = lib.licenses.bsd2; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ florentc ]; + license = licenses.bsd2; + platforms = platforms.unix; + maintainers = with maintainers; [ florentc ]; }; } diff --git a/pkgs/applications/science/logic/tlaplus/toolbox.nix b/pkgs/applications/science/logic/tlaplus/toolbox.nix index 15e9e1857a1476..d5628c9413ffb9 100644 --- a/pkgs/applications/science/logic/tlaplus/toolbox.nix +++ b/pkgs/applications/science/logic/tlaplus/toolbox.nix @@ -94,7 +94,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "http://research.microsoft.com/en-us/um/people/lamport/tla/toolbox.html"; description = "IDE for the TLA+ tools"; mainProgram = "tla-toolbox"; @@ -104,8 +104,8 @@ stdenv.mkDerivation rec { versions of your modules, run the TLC model checker, and run TLAPS, the TLA+ proof system. ''; # http://lamport.azurewebsites.net/tla/license.html - license = with lib.licenses; [ mit ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = with licenses; [ mit ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; platforms = [ "x86_64-linux" ]; maintainers = [ ]; }; diff --git a/pkgs/applications/science/machine-learning/sc2-headless/default.nix b/pkgs/applications/science/machine-learning/sc2-headless/default.nix index 0700580b959846..2cf842cc71a731 100644 --- a/pkgs/applications/science/machine-learning/sc2-headless/default.nix +++ b/pkgs/applications/science/machine-learning/sc2-headless/default.nix @@ -59,10 +59,10 @@ else done ''; - meta = { - platforms = lib.platforms.linux; + meta = with lib; { + platforms = platforms.linux; description = "Starcraft II headless linux client for machine learning research"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = { fullName = "BLIZZARD® STARCRAFT® II AI AND MACHINE LEARNING LICENSE"; url = "https://blzdistsc2-a.akamaihd.net/AI_AND_MACHINE_LEARNING_LICENSE.html"; diff --git a/pkgs/applications/science/math/glsurf/default.nix b/pkgs/applications/science/math/glsurf/default.nix index bcf782e1963615..b776e0c59e0329 100644 --- a/pkgs/applications/science/math/glsurf/default.nix +++ b/pkgs/applications/science/math/glsurf/default.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { wrapProgram "$out/bin/glsurf" --set CC "${cc}/bin/${cc.targetPrefix}cc" ''; - meta = { + meta = with lib; { homepage = "https://raffalli.eu/~christophe/glsurf/"; description = "Program to draw implicit surfaces and curves"; mainProgram = "glsurf"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.all; + license = licenses.gpl2Plus; + platforms = platforms.all; }; } diff --git a/pkgs/applications/science/math/gretl/default.nix b/pkgs/applications/science/math/gretl/default.nix index 430b88008ac2d6..642e5b02bfc9dd 100644 --- a/pkgs/applications/science/math/gretl/default.nix +++ b/pkgs/applications/science/math/gretl/default.nix @@ -54,15 +54,15 @@ stdenv.mkDerivation (finalAttrs: { # make[1]: *** [Makefile:73: install_datafiles] Error 1 enableParallelInstalling = false; - meta = { + meta = with lib; { description = "Software package for econometric analysis"; homepage = "https://gretl.sourceforge.net"; - license = lib.licenses.gpl3; + license = licenses.gpl3; longDescription = '' gretl is a cross-platform software package for econometric analysis, written in the C programming language. ''; - maintainers = with lib.maintainers; [ dmrauh ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ dmrauh ]; + platforms = platforms.all; }; }) diff --git a/pkgs/applications/science/misc/cytoscape/default.nix b/pkgs/applications/science/misc/cytoscape/default.nix index 9be37db1b6d00f..8329824d6fa88d 100644 --- a/pkgs/applications/science/misc/cytoscape/default.nix +++ b/pkgs/applications/science/misc/cytoscape/default.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { chmod +x $out/bin/cytoscape ''; - meta = { + meta = with lib; { homepage = "http://www.cytoscape.org"; description = "General platform for complex network analysis and visualization"; mainProgram = "cytoscape"; - license = lib.licenses.lgpl21; - maintainers = [ lib.maintainers.mimame ]; - platforms = lib.platforms.unix; + license = licenses.lgpl21; + maintainers = [ maintainers.mimame ]; + platforms = platforms.unix; }; } diff --git a/pkgs/applications/science/misc/golly/default.nix b/pkgs/applications/science/misc/golly/default.nix index ac8d7fa4ea333c..5166368ed97ba0 100644 --- a/pkgs/applications/science/misc/golly/default.nix +++ b/pkgs/applications/science/misc/golly/default.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { cp -r ../{Help,Patterns,Scripts,Rules} "$out/share/golly" ''; - meta = { + meta = with lib; { description = "Cellular automata simulation program"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; downloadPage = "https://sourceforge.net/projects/golly/files/golly"; }; } diff --git a/pkgs/applications/science/misc/openmvs/default.nix b/pkgs/applications/science/misc/openmvs/default.nix index 4ee25e9739e28f..3982c16feb945c 100644 --- a/pkgs/applications/science/misc/openmvs/default.nix +++ b/pkgs/applications/science/misc/openmvs/default.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = { + meta = with lib; { description = "Open Multi-View Stereo reconstruction library"; homepage = "https://github.com/cdcseacave/openMVS"; - license = lib.licenses.agpl3Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ bouk ]; + license = licenses.agpl3Only; + platforms = platforms.unix; + maintainers = with maintainers; [ bouk ]; }; } diff --git a/pkgs/applications/science/robotics/apmplanner2/default.nix b/pkgs/applications/science/robotics/apmplanner2/default.nix index e606edb0fe0ecf..d0b623f0e55874 100644 --- a/pkgs/applications/science/robotics/apmplanner2/default.nix +++ b/pkgs/applications/science/robotics/apmplanner2/default.nix @@ -56,14 +56,14 @@ mkDerivation rec { --replace /usr $out ''; - meta = { + meta = with lib; { description = "Ground station software for autonomous vehicles"; longDescription = '' A GUI ground control station for autonomous vehicles using the MAVLink protocol. Includes support for the APM and PX4 based controllers. ''; homepage = "https://ardupilot.org/planner2/"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ wucke13 ]; + license = licenses.gpl3; + maintainers = with maintainers; [ wucke13 ]; }; } diff --git a/pkgs/applications/system/coolercontrol/default.nix b/pkgs/applications/system/coolercontrol/default.nix index 066be7abb8ffca..acb077a62a3782 100644 --- a/pkgs/applications/system/coolercontrol/default.nix +++ b/pkgs/applications/system/coolercontrol/default.nix @@ -14,12 +14,12 @@ let hash = "sha256-lRw5IcSrLM6aUajt2Ny1IUuGYcAjY1oUDZENyz0wVJI="; }; - meta = { + meta = with lib; { description = "Monitor and control your cooling devices"; homepage = "https://gitlab.com/coolercontrol/coolercontrol"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ codifryed OPNA2608 ]; diff --git a/pkgs/applications/terminal-emulators/cool-retro-term/default.nix b/pkgs/applications/terminal-emulators/cool-retro-term/default.nix index ee47e968d8b0bc..6a45d22550a93c 100644 --- a/pkgs/applications/terminal-emulators/cool-retro-term/default.nix +++ b/pkgs/applications/terminal-emulators/cool-retro-term/default.nix @@ -49,7 +49,7 @@ mkDerivation rec { passthru.tests.test = nixosTests.terminal-emulators.cool-retro-term; - meta = { + meta = with lib; { description = "Terminal emulator which mimics the old cathode display"; longDescription = '' cool-retro-term is a terminal emulator which tries to mimic the look and @@ -57,8 +57,8 @@ mkDerivation rec { eye-candy, customizable, and reasonably lightweight. ''; homepage = "https://github.com/Swordfish90/cool-retro-term"; - license = lib.licenses.gpl3Plus; - platforms = with lib.platforms; linux ++ darwin; + license = licenses.gpl3Plus; + platforms = with platforms; linux ++ darwin; maintainers = [ ]; mainProgram = "cool-retro-term"; }; diff --git a/pkgs/applications/version-management/git-cinnabar/default.nix b/pkgs/applications/version-management/git-cinnabar/default.nix index 5a1661f1ac9d03..d6fdec70d37835 100644 --- a/pkgs/applications/version-management/git-cinnabar/default.nix +++ b/pkgs/applications/version-management/git-cinnabar/default.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "git remote helper to interact with mercurial repositories"; homepage = "https://github.com/glandium/git-cinnabar"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ qyliss ]; - platforms = lib.platforms.all; + license = licenses.gpl2Only; + maintainers = with maintainers; [ qyliss ]; + platforms = platforms.all; }; }) diff --git a/pkgs/applications/version-management/git-remote-codecommit/default.nix b/pkgs/applications/version-management/git-remote-codecommit/default.nix index 1b0310de1e76bf..46ecc60d15efe4 100644 --- a/pkgs/applications/version-management/git-remote-codecommit/default.nix +++ b/pkgs/applications/version-management/git-remote-codecommit/default.nix @@ -40,11 +40,11 @@ buildPythonApplication rec { pytest ''; - meta = { + meta = with lib; { description = "Git remote prefix to simplify pushing to and pulling from CodeCommit"; - maintainers = [ lib.maintainers.zaninime ]; + maintainers = [ maintainers.zaninime ]; homepage = "https://github.com/awslabs/git-remote-codecommit"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "git-remote-codecommit"; }; } diff --git a/pkgs/applications/version-management/monotone-viz/default.nix b/pkgs/applications/version-management/monotone-viz/default.nix index 5f43c165dcba23..67353e62f476f7 100644 --- a/pkgs/applications/version-management/monotone-viz/default.nix +++ b/pkgs/applications/version-management/monotone-viz/default.nix @@ -95,11 +95,11 @@ stdenv.mkDerivation rec { wrapProgram "$out/bin/monotone-viz" --prefix PATH : "${graphviz_2_0}/bin/" ''; - meta = { + meta = with lib; { description = "Monotone ancestry visualiser"; mainProgram = "monotone-viz"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/version-management/nbstripout/default.nix b/pkgs/applications/version-management/nbstripout/default.nix index 9c0465c46a03e1..33423747f77a4a 100644 --- a/pkgs/applications/version-management/nbstripout/default.nix +++ b/pkgs/applications/version-management/nbstripout/default.nix @@ -43,11 +43,11 @@ python3.pkgs.buildPythonApplication rec { git config --global init.defaultBranch main ''; - meta = { + meta = with lib; { description = "Strip output from Jupyter and IPython notebooks"; homepage = "https://github.com/kynan/nbstripout"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ jluttine ]; + license = licenses.mit; + maintainers = with maintainers; [ jluttine ]; mainProgram = "nbstripout"; }; } diff --git a/pkgs/applications/version-management/sublime-merge/common.nix b/pkgs/applications/version-management/sublime-merge/common.nix index 5398fe6b781b1e..19b8d9498a275b 100644 --- a/pkgs/applications/version-management/sublime-merge/common.nix +++ b/pkgs/applications/version-management/sublime-merge/common.nix @@ -207,13 +207,13 @@ stdenv.mkDerivation (rec { ]; }; - meta = { + meta = with lib; { description = "Git client from the makers of Sublime Text"; homepage = "https://www.sublimemerge.com"; mainProgram = "sublime_merge"; - maintainers = with lib.maintainers; [ zookatron ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; + maintainers = with maintainers; [ zookatron ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; platforms = [ "aarch64-linux" "x86_64-linux" diff --git a/pkgs/applications/version-management/svn2git/default.nix b/pkgs/applications/version-management/svn2git/default.nix index c839b01239c062..cb1b8ce092c253 100644 --- a/pkgs/applications/version-management/svn2git/default.nix +++ b/pkgs/applications/version-management/svn2git/default.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { --prefix PATH : ${git}/bin ''; - meta = { + meta = with lib; { homepage = "https://github.com/nirvdrum/svn2git"; description = "Tool for importing Subversion repositories into git"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; + license = licenses.mit; + platforms = platforms.unix; mainProgram = "svn2git"; }; } diff --git a/pkgs/applications/video/bino3d/default.nix b/pkgs/applications/video/bino3d/default.nix index 0b87b5e7624aac..8a364351aec21e 100644 --- a/pkgs/applications/video/bino3d/default.nix +++ b/pkgs/applications/video/bino3d/default.nix @@ -37,13 +37,13 @@ stdenv.mkDerivation (finalAttrs: { # The optional QVR dependency is not currently packaged. ]; - meta = { + meta = with lib; { description = "Video player with a focus on 3D and Virtual Reality"; homepage = "https://bino3d.org/"; - sourceProvenance = [ lib.sourceTypes.fromSource ]; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.orivej ]; - platforms = lib.platforms.unix; + sourceProvenance = [ sourceTypes.fromSource ]; + license = licenses.gpl3Plus; + maintainers = [ maintainers.orivej ]; + platforms = platforms.unix; mainProgram = "bino"; }; }) diff --git a/pkgs/applications/video/gpu-screen-recorder/default.nix b/pkgs/applications/video/gpu-screen-recorder/default.nix index 2c9a7c2edbe80c..32a259af530d51 100644 --- a/pkgs/applications/video/gpu-screen-recorder/default.nix +++ b/pkgs/applications/video/gpu-screen-recorder/default.nix @@ -82,12 +82,12 @@ stdenv.mkDerivation (finalAttrs: { --suffix PATH : "$out/bin" ''; - meta = { + meta = with lib; { description = "Screen recorder that has minimal impact on system performance by recording a window using the GPU only"; homepage = "https://git.dec05eba.com/gpu-screen-recorder/about/"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "gpu-screen-recorder"; - maintainers = [ lib.maintainers.babbaj ]; + maintainers = [ maintainers.babbaj ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/applications/video/gpu-screen-recorder/gpu-screen-recorder-gtk.nix b/pkgs/applications/video/gpu-screen-recorder/gpu-screen-recorder-gtk.nix index b399f39fefd84c..3c397642030bda 100644 --- a/pkgs/applications/video/gpu-screen-recorder/gpu-screen-recorder-gtk.nix +++ b/pkgs/applications/video/gpu-screen-recorder/gpu-screen-recorder-gtk.nix @@ -68,13 +68,13 @@ stdenv.mkDerivation (finalAttrs: { }) ''; - meta = { + meta = with lib; { changelog = "https://git.dec05eba.com/gpu-screen-recorder-gtk/tree/com.dec05eba.gpu_screen_recorder.appdata.xml#n82"; description = "GTK frontend for gpu-screen-recorder."; homepage = "https://git.dec05eba.com/gpu-screen-recorder-gtk/about/"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "gpu-screen-recorder-gtk"; - maintainers = with lib.maintainers; [ babbaj ]; + maintainers = with maintainers; [ babbaj ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/applications/video/gyroflow/default.nix b/pkgs/applications/video/gyroflow/default.nix index fb237ac6fbbbbb..41f26319785080 100644 --- a/pkgs/applications/video/gyroflow/default.nix +++ b/pkgs/applications/video/gyroflow/default.nix @@ -142,14 +142,14 @@ rustPlatform.buildRustPackage rec { })) ]; - meta = { + meta = with lib; { description = "Advanced gyro-based video stabilization tool"; homepage = "https://gyroflow.xyz"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Plus cc0 ]; - maintainers = with lib.maintainers; [ orivej ]; + maintainers = with maintainers; [ orivej ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/autosub.nix b/pkgs/applications/video/mpv/scripts/autosub.nix index 9f11ff840c9c94..49c94cc19201ab 100644 --- a/pkgs/applications/video/mpv/scripts/autosub.nix +++ b/pkgs/applications/video/mpv/scripts/autosub.nix @@ -25,10 +25,10 @@ buildLua { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Fully automatic subtitle downloading for the MPV media player"; homepage = "https://github.com/davidde/mpv-autosub"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.octvs ]; + license = licenses.mit; + maintainers = [ maintainers.octvs ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/chapterskip.nix b/pkgs/applications/video/mpv/scripts/chapterskip.nix index b1b993df3692aa..3302fae2178540 100644 --- a/pkgs/applications/video/mpv/scripts/chapterskip.nix +++ b/pkgs/applications/video/mpv/scripts/chapterskip.nix @@ -17,14 +17,14 @@ buildLua { }; passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Automatically skips chapters based on title"; longDescription = '' MPV script that skips chapters based on their title, categorized using regexes. The set of skipped categories can be configured globally, or by an auto-profile. ''; homepage = "https://github.com/po5/chapterskip"; - license = lib.licenses.unfree; # https://github.com/po5/chapterskip/issues/10 - maintainers = with lib.maintainers; [ nicoo ]; + license = licenses.unfree; # https://github.com/po5/chapterskip/issues/10 + maintainers = with maintainers; [ nicoo ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/dynamic-crop.nix b/pkgs/applications/video/mpv/scripts/dynamic-crop.nix index 8f33f5db906637..8011e979ffd39f 100644 --- a/pkgs/applications/video/mpv/scripts/dynamic-crop.nix +++ b/pkgs/applications/video/mpv/scripts/dynamic-crop.nix @@ -18,10 +18,10 @@ buildLua { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = ''Script to "cropping" dynamically, hard-coded black bars detected with lavfi-cropdetect filter for Ultra Wide Screen or any screen (Smartphone/Tablet)''; homepage = "https://github.com/Ashyni/mpv-scripts"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.iynaix ]; + license = licenses.mit; + maintainers = [ maintainers.iynaix ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/manga-reader.nix b/pkgs/applications/video/mpv/scripts/manga-reader.nix index 149e7c51377846..8b572db5323bc3 100644 --- a/pkgs/applications/video/mpv/scripts/manga-reader.nix +++ b/pkgs/applications/video/mpv/scripts/manga-reader.nix @@ -17,13 +17,13 @@ buildLua rec { }; passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Manga reading script for mpv"; longDescription = '' mpv-manga-reader is a script aimed at making mpv a usable manga reader. ''; homepage = "https://github.com/Dudemanguy/mpv-manga-reader"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ idlip ]; + license = licenses.gpl3; + maintainers = with maintainers; [ idlip ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/modernz.nix b/pkgs/applications/video/mpv/scripts/modernz.nix index adade1bfac91f7..a2bea2e3315590 100644 --- a/pkgs/applications/video/mpv/scripts/modernz.nix +++ b/pkgs/applications/video/mpv/scripts/modernz.nix @@ -31,10 +31,10 @@ buildLua (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Sleek and modern OSC for mpv designed to enhance functionality by adding more features, all while preserving the core standards of mpv's OSC"; homepage = "https://github.com/Samillion/ModernZ"; - license = lib.licenses.lgpl21Plus; - maintainers = with lib.maintainers; [ Guanran928 ]; + license = licenses.lgpl21Plus; + maintainers = with maintainers; [ Guanran928 ]; }; }) diff --git a/pkgs/applications/video/mpv/scripts/mpv-discord.nix b/pkgs/applications/video/mpv/scripts/mpv-discord.nix index 58d4940f548b68..6626bf389f09e4 100644 --- a/pkgs/applications/video/mpv/scripts/mpv-discord.nix +++ b/pkgs/applications/video/mpv/scripts/mpv-discord.nix @@ -34,11 +34,11 @@ buildLua { --replace-fail 'binary_path = ""' 'binary_path = "${core}/bin/mpv-discord"' ''; - meta = { + meta = with lib; { description = "Cross-platform Discord Rich Presence integration for mpv with no external dependencies"; homepage = "https://github.com/tnychn/mpv-discord"; - license = lib.licenses.mit; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ bddvlpr ]; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ bddvlpr ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/mpv-notify-send.nix b/pkgs/applications/video/mpv/scripts/mpv-notify-send.nix index fa148c3cde2a09..d0e947cad05a6c 100644 --- a/pkgs/applications/video/mpv/scripts/mpv-notify-send.nix +++ b/pkgs/applications/video/mpv/scripts/mpv-notify-send.nix @@ -26,10 +26,10 @@ buildLua rec { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Lua script for mpv to send notifications with notify-send"; homepage = "https://github.com/Parranoh/mpv-notify-send"; - license = lib.licenses.wtfpl; - maintainers = with lib.maintainers; [ r3n3gad3p3arl ]; + license = licenses.wtfpl; + maintainers = with maintainers; [ r3n3gad3p3arl ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/mpv-osc-tethys.nix b/pkgs/applications/video/mpv/scripts/mpv-osc-tethys.nix index 6f0d6bddb4a431..8590db306ae493 100644 --- a/pkgs/applications/video/mpv/scripts/mpv-osc-tethys.nix +++ b/pkgs/applications/video/mpv/scripts/mpv-osc-tethys.nix @@ -17,10 +17,10 @@ buildLua (finalAttrs: { hash = "sha256-eAY+ZUuOxPJiNCuL7lqMBU4iURCMz12LQdfaYj4WFQc="; }; - meta = { + meta = with lib; { description = "OSC UI replacement for MPV with icons from the bomi video player"; homepage = "https://github.com/Zren/mpv-osc-tethys"; - license = lib.licenses.unfree; # no license specified - maintainers = with lib.maintainers; [ luftmensch-luftmensch ]; + license = licenses.unfree; # no license specified + maintainers = with maintainers; [ luftmensch-luftmensch ]; }; }) diff --git a/pkgs/applications/video/mpv/scripts/mpv-slicing.nix b/pkgs/applications/video/mpv/scripts/mpv-slicing.nix index c46388f7ebea47..fef5c68b457a3a 100644 --- a/pkgs/applications/video/mpv/scripts/mpv-slicing.nix +++ b/pkgs/applications/video/mpv/scripts/mpv-slicing.nix @@ -25,10 +25,10 @@ buildLua { passthru.scriptName = "slicing.lua"; - meta = { + meta = with lib; { description = "Lua script to cut fragments of the video in uncompressed RGB format"; homepage = "https://github.com/Kagami/mpv_slicing"; - license = lib.licenses.cc0; - maintainers = with lib.maintainers; [ tomasajt ]; + license = licenses.cc0; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/mpv-subtitle-lines.nix b/pkgs/applications/video/mpv/scripts/mpv-subtitle-lines.nix index 2e73d31c2bc0b3..d7a8e19bb774bd 100644 --- a/pkgs/applications/video/mpv/scripts/mpv-subtitle-lines.nix +++ b/pkgs/applications/video/mpv/scripts/mpv-subtitle-lines.nix @@ -18,10 +18,10 @@ buildLua { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "List and search subtitle lines of the selected subtitle track"; homepage = "https://github.com/christoph-heinrich/mpv-subtitle-lines"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ purrpurrn ]; + license = licenses.gpl2Only; + maintainers = with maintainers; [ purrpurrn ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/reload.nix b/pkgs/applications/video/mpv/scripts/reload.nix index b9d9b4c43b05d5..bb3137c6413333 100644 --- a/pkgs/applications/video/mpv/scripts/reload.nix +++ b/pkgs/applications/video/mpv/scripts/reload.nix @@ -17,7 +17,7 @@ buildLua rec { }; passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Manual & automatic reloading of videos"; longDescription = '' This script adds reloading of videos, automatically on timers (when stuck @@ -25,7 +25,7 @@ buildLua rec { is not loading further due to a network or remote issue. ''; homepage = "https://github.com/4e6/mpv-reload"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nicoo ]; + license = licenses.mit; + maintainers = with maintainers; [ nicoo ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/smartskip.nix b/pkgs/applications/video/mpv/scripts/smartskip.nix index 505269847f0892..b03308958b0bc5 100644 --- a/pkgs/applications/video/mpv/scripts/smartskip.nix +++ b/pkgs/applications/video/mpv/scripts/smartskip.nix @@ -19,10 +19,10 @@ buildLua { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Automatically or manually skip opening, intro, outro, and preview"; homepage = "https://github.com/Eisa01/mpv-scripts"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.iynaix ]; + license = licenses.bsd2; + maintainers = [ maintainers.iynaix ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/thumbfast.nix b/pkgs/applications/video/mpv/scripts/thumbfast.nix index 249b7b89620102..03a96dc06fc5b1 100644 --- a/pkgs/applications/video/mpv/scripts/thumbfast.nix +++ b/pkgs/applications/video/mpv/scripts/thumbfast.nix @@ -25,10 +25,10 @@ buildLua { (lib.makeBinPath [ mpv-unwrapped ]) ]; - meta = { + meta = with lib; { description = "High-performance on-the-fly thumbnailer for mpv"; homepage = "https://github.com/po5/thumbfast"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ apfelkuchen6 ]; + license = licenses.mpl20; + maintainers = with maintainers; [ apfelkuchen6 ]; }; } diff --git a/pkgs/applications/video/mpv/scripts/webtorrent-mpv-hook.nix b/pkgs/applications/video/mpv/scripts/webtorrent-mpv-hook.nix index b423281a3ba387..3377d623f33e5e 100644 --- a/pkgs/applications/video/mpv/scripts/webtorrent-mpv-hook.nix +++ b/pkgs/applications/video/mpv/scripts/webtorrent-mpv-hook.nix @@ -39,10 +39,10 @@ buildNpmPackage rec { ''; passthru.scriptName = "webtorrent.js"; - meta = { + meta = with lib; { description = "Adds a hook that allows mpv to stream torrents"; homepage = "https://github.com/mrxdst/webtorrent-mpv-hook"; - maintainers = [ lib.maintainers.chuangzhu ]; - license = lib.licenses.isc; + maintainers = [ maintainers.chuangzhu ]; + license = licenses.isc; }; } diff --git a/pkgs/applications/video/obs-studio/plugins/obs-color-monitor.nix b/pkgs/applications/video/obs-studio/plugins/obs-color-monitor.nix index 10156ce3af6cea..0db70dbb2e2f67 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-color-monitor.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-color-monitor.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation (finalAttrs: { dontWrapQtApps = true; - meta = { + meta = with lib; { description = "Color Monitor plugin for OBS Studio"; homepage = "https://github.com/norihiro/obs-color-monitor"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ hlad ]; + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = with maintainers; [ hlad ]; }; }) diff --git a/pkgs/applications/video/obs-studio/plugins/obs-tuna/default.nix b/pkgs/applications/video/obs-studio/plugins/obs-tuna/default.nix index 78087e4ed446bf..df90a4ba0876ac 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-tuna/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-tuna/default.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation (finalAttrs: { dontWrapQtApps = true; - meta = { + meta = with lib; { description = "Song information plugin for obs-studio"; homepage = "https://github.com/univrsal/tuna"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ shortcord ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + maintainers = with maintainers; [ shortcord ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/applications/video/obs-studio/plugins/obs-vertical-canvas.nix b/pkgs/applications/video/obs-studio/plugins/obs-vertical-canvas.nix index 41f1b34f6daf55..d7fffe5f746649 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-vertical-canvas.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-vertical-canvas.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { rm -rf $out/obs-plugins ''; - meta = { + meta = with lib; { description = "Plugin for OBS Studio to add vertical canvas"; homepage = "https://github.com/Aitum/obs-vertical-canvas"; - maintainers = with lib.maintainers; [ flexiondotorg ]; - license = lib.licenses.gpl2Plus; + maintainers = with maintainers; [ flexiondotorg ]; + license = licenses.gpl2Plus; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/applications/video/obs-studio/plugins/waveform/default.nix b/pkgs/applications/video/obs-studio/plugins/waveform/default.nix index 1c432de77d5e23..ec3608996f8521 100644 --- a/pkgs/applications/video/obs-studio/plugins/waveform/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/waveform/default.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { fftwFloat ]; - meta = { + meta = with lib; { description = "Audio spectral analysis plugin for OBS"; homepage = "https://github.com/phandasm/waveform"; - maintainers = with lib.maintainers; [ matthewcroughan ]; - license = lib.licenses.gpl3; + maintainers = with maintainers; [ matthewcroughan ]; + license = licenses.gpl3; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/applications/video/openshot-qt/default.nix b/pkgs/applications/video/openshot-qt/default.nix index cb2a57bfb609b7..4a4cc1e5c93614 100644 --- a/pkgs/applications/video/openshot-qt/default.nix +++ b/pkgs/applications/video/openshot-qt/default.nix @@ -83,7 +83,7 @@ mkDerivationWith python3.pkgs.buildPythonApplication { inherit (libopenshot) libopenshot-audio; }; - meta = { + meta = with lib; { homepage = "http://openshot.org/"; description = "Free, open-source video editor"; longDescription = '' @@ -93,9 +93,9 @@ mkDerivationWith python3.pkgs.buildPythonApplication { and effects, and then export your film to DVD, YouTube, Vimeo, Xbox 360, and many other common formats. ''; - license = with lib.licenses; [ gpl3Plus ]; + license = with licenses; [ gpl3Plus ]; mainProgram = "openshot-qt"; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ ]; + platforms = platforms.unix; }; } diff --git a/pkgs/applications/video/qctools/default.nix b/pkgs/applications/video/qctools/default.nix index a2a6d6658367f2..619e3f9bb1ef90 100644 --- a/pkgs/applications/video/qctools/default.nix +++ b/pkgs/applications/video/qctools/default.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Audiovisual analytics and filtering of video files"; homepage = "https://mediaarea.net/QCTools"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ orivej ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ orivej ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/virtualization/podman-compose/default.nix b/pkgs/applications/virtualization/podman-compose/default.nix index a50dfb78ceecc4..e174cdc93e55bd 100644 --- a/pkgs/applications/virtualization/podman-compose/default.nix +++ b/pkgs/applications/virtualization/podman-compose/default.nix @@ -30,12 +30,12 @@ buildPythonApplication rec { ]; propagatedBuildInputs = [ pypaBuildHook ]; - meta = { + meta = with lib; { description = "Implementation of docker-compose with podman backend"; homepage = "https://github.com/containers/podman-compose"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.sikmir ] ++ lib.teams.podman.members; + license = licenses.gpl2Only; + platforms = platforms.unix; + maintainers = [ maintainers.sikmir ] ++ teams.podman.members; mainProgram = "podman-compose"; }; } diff --git a/pkgs/applications/virtualization/virtualbox/guest-additions-iso/default.nix b/pkgs/applications/virtualization/virtualbox/guest-additions-iso/default.nix index 70e68879264d38..652ff3fb4e839f 100644 --- a/pkgs/applications/virtualization/virtualbox/guest-additions-iso/default.nix +++ b/pkgs/applications/virtualization/virtualbox/guest-additions-iso/default.nix @@ -10,16 +10,16 @@ in fetchurl { url = "http://download.virtualbox.org/virtualbox/${version}/VBoxGuestAdditions_${version}.iso"; sha256 = "80c91d35742f68217cf47b13e5b50d53f54c22c485bacce41ad7fdc321649e61"; - meta = { + meta = with lib; { description = "Guest additions ISO for VirtualBox"; longDescription = '' ISO containing various add-ons which improves guests inside VirtualBox. ''; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.gpl2; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.gpl2; maintainers = [ - lib.maintainers.sander - lib.maintainers.friedrichaltheide + maintainers.sander + maintainers.friedrichaltheide ]; platforms = [ "i686-linux" diff --git a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hycov.nix b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hycov.nix index 38bcd12a7ffa40..4d205ecaa3787d 100644 --- a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hycov.nix +++ b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hycov.nix @@ -22,12 +22,12 @@ mkHyprlandPlugin hyprland rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Clients overview for Hyprland plugin"; homepage = "https://github.com/DreamMaoMao/hycov"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ donovanglover ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ donovanglover ]; + platforms = platforms.linux; broken = true; # Doesn't work after Hyprland v0.41.2 https://gitee.com/DreamMaoMao/hycov/issues/IANYC8#note_31512295_link }; } diff --git a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hypr-dynamic-cursors.nix b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hypr-dynamic-cursors.nix index 9ca164b1887c9f..32a6e5d3b3e44d 100644 --- a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hypr-dynamic-cursors.nix +++ b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hypr-dynamic-cursors.nix @@ -30,11 +30,11 @@ mkHyprlandPlugin hyprland { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "Plugin to make your Hyprland cursor more realistic"; homepage = "https://github.com/VirtCode/hypr-dynamic-cursors"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ donovanglover ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ donovanglover ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprfocus.nix b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprfocus.nix index befba9e11a3db9..c934bbeeaca046 100644 --- a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprfocus.nix +++ b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprfocus.nix @@ -35,11 +35,11 @@ mkHyprlandPlugin hyprland { ''; passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { homepage = "https://github.com/pyt0xic/hyprfocus"; description = "Focus animation plugin for Hyprland inspired by Flashfocus"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ donovanglover ]; - platforms = lib.platforms.linux; + license = licenses.bsd3; + maintainers = with maintainers; [ donovanglover ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprgrass.nix b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprgrass.nix index 5d17306cb33e6d..cb9e5b9e6458ac 100644 --- a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprgrass.nix +++ b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprgrass.nix @@ -37,11 +37,11 @@ mkHyprlandPlugin hyprland { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Hyprland plugin for touch gestures"; homepage = "https://github.com/horriblename/hyprgrass"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ donovanglover ]; - platforms = lib.platforms.linux; + license = licenses.bsd3; + maintainers = with maintainers; [ donovanglover ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprscroller.nix b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprscroller.nix index e46864b96d86fb..f38ff1581b130f 100644 --- a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprscroller.nix +++ b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprscroller.nix @@ -31,11 +31,11 @@ mkHyprlandPlugin hyprland { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { homepage = "https://github.com/dawsers/hyprscroller"; description = "Hyprland layout plugin providing a scrolling layout like PaperWM"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ donovanglover ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ donovanglover ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprspace.nix b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprspace.nix index ca470d454430ed..857edccdee51a1 100644 --- a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprspace.nix +++ b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprspace.nix @@ -30,11 +30,11 @@ mkHyprlandPlugin hyprland { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { homepage = "https://github.com/KZDKM/Hyprspace"; description = "Workspace overview plugin for Hyprland"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ donovanglover ]; + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = with maintainers; [ donovanglover ]; }; } diff --git a/pkgs/applications/window-managers/i3/balance-workspace.nix b/pkgs/applications/window-managers/i3/balance-workspace.nix index b89344613a84dd..5a7bb949ba5f22 100644 --- a/pkgs/applications/window-managers/i3/balance-workspace.nix +++ b/pkgs/applications/window-managers/i3/balance-workspace.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { doCheck = false; # project has no test pythonImportsCheck = [ "i3_balance_workspace" ]; - meta = { + meta = with lib; { description = "Balance windows and workspaces in i3wm"; homepage = "https://pypi.org/project/i3-balance-workspace/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ euxane ]; + license = licenses.mit; + maintainers = with maintainers; [ euxane ]; mainProgram = "i3_balance_workspace"; }; } diff --git a/pkgs/applications/window-managers/i3/status.nix b/pkgs/applications/window-managers/i3/status.nix index 47eabbd838097c..20f9deb87c0d5b 100644 --- a/pkgs/applications/window-managers/i3/status.nix +++ b/pkgs/applications/window-managers/i3/status.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { libnl ]; - meta = { + meta = with lib; { description = "Generates a status line for i3bar, dzen2, xmobar or lemonbar"; homepage = "https://i3wm.org"; maintainers = [ ]; - license = lib.licenses.bsd3; - platforms = lib.platforms.all; + license = licenses.bsd3; + platforms = platforms.all; mainProgram = "i3status"; }; diff --git a/pkgs/applications/window-managers/jwm/default.nix b/pkgs/applications/window-managers/jwm/default.nix index a307f359dd94d9..b3aa11f28ef952 100644 --- a/pkgs/applications/window-managers/jwm/default.nix +++ b/pkgs/applications/window-managers/jwm/default.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = { + meta = with lib; { homepage = "http://joewing.net/projects/jwm/"; description = "Joe's Window Manager is a light-weight X11 window manager"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.romildo ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = [ maintainers.romildo ]; mainProgram = "jwm"; }; } diff --git a/pkgs/applications/window-managers/stumpwm/default.nix b/pkgs/applications/window-managers/stumpwm/default.nix index be926cdc5a8223..0b4b9ee63f63f3 100644 --- a/pkgs/applications/window-managers/stumpwm/default.nix +++ b/pkgs/applications/window-managers/stumpwm/default.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation (finalAttrs: { export ASDF_OUTPUT_TRANSLATIONS=$(pwd):$(pwd) ''; - meta = { + meta = with lib; { description = "Tiling, keyboard driven window manager"; homepage = "https://stumpwm.github.io/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "stumpwm"; - maintainers = lib.teams.lisp.members; - platforms = lib.platforms.unix; + maintainers = teams.lisp.members; + platforms = platforms.unix; }; }) diff --git a/pkgs/applications/window-managers/wayfire/default.nix b/pkgs/applications/window-managers/wayfire/default.nix index be4dff33036dcb..15dbdde9fa937d 100644 --- a/pkgs/applications/window-managers/wayfire/default.nix +++ b/pkgs/applications/window-managers/wayfire/default.nix @@ -87,15 +87,15 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.mate = nixosTests.mate-wayland; - meta = { + meta = with lib; { homepage = "https://wayfire.org/"; description = "3D Wayland compositor"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ wucke13 rewine ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "wayfire"; }; }) diff --git a/pkgs/applications/window-managers/wayfire/wcm.nix b/pkgs/applications/window-managers/wayfire/wcm.nix index 01b1d64f252f73..a0d6479bfd431e 100644 --- a/pkgs/applications/window-managers/wayfire/wcm.nix +++ b/pkgs/applications/window-managers/wayfire/wcm.nix @@ -52,15 +52,15 @@ stdenv.mkDerivation (finalAttrs: { "-Denable_wdisplays=false" ]; - meta = { + meta = with lib; { homepage = "https://github.com/WayfireWM/wcm"; description = "Wayfire Config Manager"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ wucke13 rewine ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "wcm"; }; }) diff --git a/pkgs/applications/window-managers/wayfire/wf-config.nix b/pkgs/applications/window-managers/wayfire/wf-config.nix index 8ebbd647bcd771..e575c5736b6853 100644 --- a/pkgs/applications/window-managers/wayfire/wf-config.nix +++ b/pkgs/applications/window-managers/wayfire/wf-config.nix @@ -51,14 +51,14 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { homepage = "https://github.com/WayfireWM/wf-config"; description = "Library for managing configuration files, written for Wayfire"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ wucke13 rewine ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/applications/window-managers/wayfire/wf-shell.nix b/pkgs/applications/window-managers/wayfire/wf-shell.nix index 479b38bc802a9f..0695c7652da55a 100644 --- a/pkgs/applications/window-managers/wayfire/wf-shell.nix +++ b/pkgs/applications/window-managers/wayfire/wf-shell.nix @@ -44,14 +44,14 @@ stdenv.mkDerivation (finalAttrs: { mesonFlags = [ "--sysconfdir /etc" ]; - meta = { + meta = with lib; { homepage = "https://github.com/WayfireWM/wf-shell"; description = "GTK3-based panel for Wayfire"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ wucke13 rewine ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/build-support/kernel/make-initrd-ng-tool.nix b/pkgs/build-support/kernel/make-initrd-ng-tool.nix index 9097728fe7a963..d76039db8957e6 100644 --- a/pkgs/build-support/kernel/make-initrd-ng-tool.nix +++ b/pkgs/build-support/kernel/make-initrd-ng-tool.nix @@ -16,14 +16,14 @@ rustPlatform.buildRustPackage { passthru.updateScript = ./make-initrd-ng/update.sh; - meta = { + meta = with lib; { description = "Tool for copying binaries and their dependencies"; mainProgram = "make-initrd-ng"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ das_j elvishjerricco k900 ]; - license = lib.licenses.mit; + license = licenses.mit; }; } diff --git a/pkgs/by-name/_0/_010editor/package.nix b/pkgs/by-name/_0/_010editor/package.nix index 70864efa775066..e96d30ec150509 100644 --- a/pkgs/by-name/_0/_010editor/package.nix +++ b/pkgs/by-name/_0/_010editor/package.nix @@ -95,17 +95,17 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = { + meta = with lib; { description = "Text and hex editor"; homepage = "https://www.sweetscape.com/010editor/"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ eljamm ]; + license = licenses.unfree; + maintainers = with maintainers; [ eljamm ]; platforms = [ "aarch64-darwin" "x86_64-darwin" "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; mainProgram = "010editor"; }; }) diff --git a/pkgs/by-name/_1/_1fps/package.nix b/pkgs/by-name/_1/_1fps/package.nix index 197a12a9074730..1c379dcf09e175 100644 --- a/pkgs/by-name/_1/_1fps/package.nix +++ b/pkgs/by-name/_1/_1fps/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { xorg.libXi ] ++ lib.optional stdenv.hostPlatform.isDarwin apple-sdk_14; - meta = { + meta = with lib; { description = "Encrypted Screen Sharing"; homepage = "https://1fps.video"; - license = lib.licenses.fsl11Asl20; - maintainers = with lib.maintainers; [ renesat ]; + license = licenses.fsl11Asl20; + maintainers = with maintainers; [ renesat ]; mainProgram = "1fps"; }; } diff --git a/pkgs/by-name/_2/_2ship2harkinian/package.nix b/pkgs/by-name/_2/_2ship2harkinian/package.nix index dc3fc2e45384d5..b93897cd265e1e 100644 --- a/pkgs/by-name/_2/_2ship2harkinian/package.nix +++ b/pkgs/by-name/_2/_2ship2harkinian/package.nix @@ -197,13 +197,13 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = { + meta = with lib; { homepage = "https://github.com/HarbourMasters/2ship2harkinian"; description = "A PC port of Majora's Mask with modern controls, widescreen, high-resolution, and more"; mainProgram = "2s2h"; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ qubitnano ]; - license = with lib.licenses; [ + maintainers = with maintainers; [ qubitnano ]; + license = with licenses; [ # OTRExporter, OTRGui, ZAPDTR, libultraship mit # 2 Ship 2 Harkinian diff --git a/pkgs/by-name/_3/_389-ds-base/package.nix b/pkgs/by-name/_3/_389-ds-base/package.nix index a847b0eefb97be..6219b7d58d336b 100644 --- a/pkgs/by-name/_3/_389-ds-base/package.nix +++ b/pkgs/by-name/_3/_389-ds-base/package.nix @@ -146,11 +146,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://www.port389.org/"; description = "Enterprise-class Open Source LDAP server for Linux"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.ners ]; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = [ maintainers.ners ]; }; }) diff --git a/pkgs/by-name/_4/_4th/package.nix b/pkgs/by-name/_4/_4th/package.nix index bcacf1f8fb2975..e014ee1d396f05 100644 --- a/pkgs/by-name/_4/_4th/package.nix +++ b/pkgs/by-name/_4/_4th/package.nix @@ -45,13 +45,13 @@ stdenv.mkDerivation (finalAttrs: { "MANDIR=${placeholder "man"}/share/man" ]; - meta = { + meta = with lib; { homepage = "https://thebeez.home.xs4all.nl/4tH/index.html"; description = "Portable Forth compiler"; - license = lib.licenses.lgpl3Plus; + license = licenses.lgpl3Plus; mainProgram = "4th"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) # TODO: set Makefile according to platform diff --git a/pkgs/by-name/_9/_9pfs/package.nix b/pkgs/by-name/_9/_9pfs/package.nix index 7305505aecb282..c0981bc253c475 100644 --- a/pkgs/by-name/_9/_9pfs/package.nix +++ b/pkgs/by-name/_9/_9pfs/package.nix @@ -32,13 +32,13 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/ftrvxmtrx/9pfs"; description = "FUSE-based client of the 9P network filesystem protocol"; mainProgram = "9pfs"; maintainers = [ ]; - platforms = lib.platforms.unix; - license = with lib.licenses; [ + platforms = platforms.unix; + license = with licenses; [ lpl-102 bsd2 ]; diff --git a/pkgs/by-name/a4/a4/package.nix b/pkgs/by-name/a4/a4/package.nix index a8e3ff44c989dc..eda00deb9c4fdb 100644 --- a/pkgs/by-name/a4/a4/package.nix +++ b/pkgs/by-name/a4/a4/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = { + meta = with lib; { description = "Dynamic terminal window manager"; homepage = "https://www.a4term.com/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ onemoresuza ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ onemoresuza ]; + platforms = platforms.linux; mainProgram = "a4"; }; }) diff --git a/pkgs/by-name/aa/aactivator/package.nix b/pkgs/by-name/aa/aactivator/package.nix index 7755f43e2fd108..285a389b578030 100644 --- a/pkgs/by-name/aa/aactivator/package.nix +++ b/pkgs/by-name/aa/aactivator/package.nix @@ -31,11 +31,11 @@ python3Packages.buildPythonApplication rec { "tests/integration_test.py" ]; - meta = { + meta = with lib; { description = "Automatically activate Python virtualenvs (and other environments)"; homepage = "https://github.com/Yelp/aactivator"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "aactivator"; - maintainers = with lib.maintainers; [ keller00 ]; + maintainers = with maintainers; [ keller00 ]; }; } diff --git a/pkgs/by-name/aa/aapt/package.nix b/pkgs/by-name/aa/aapt/package.nix index 84c2f156662e3d..ce8b26d9020301 100644 --- a/pkgs/by-name/aa/aapt/package.nix +++ b/pkgs/by-name/aa/aapt/package.nix @@ -45,13 +45,13 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Build tool that compiles and packages Android app's resources"; mainProgram = "aapt2"; homepage = "https://developer.android.com/tools/aapt2"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ linsui ]; - platforms = lib.platforms.unix; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.asl20; + maintainers = with maintainers; [ linsui ]; + platforms = platforms.unix; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/ab/abcmidi/package.nix b/pkgs/by-name/ab/abcmidi/package.nix index 4577c477e8d6b5..436cec6dab1b96 100644 --- a/pkgs/by-name/ab/abcmidi/package.nix +++ b/pkgs/by-name/ab/abcmidi/package.nix @@ -15,12 +15,12 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-8kzgojLwVVFjpWiQ1/0S3GCVU8oEpoFItjtRDByauDg="; }; - meta = { + meta = with lib; { homepage = "https://abc.sourceforge.net/abcMIDI/"; downloadPage = "https://ifdo.ca/~seymour/runabc/top.html"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; description = "Utilities for converting between abc and MIDI"; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.dotlambda ]; + platforms = platforms.unix; + maintainers = [ maintainers.dotlambda ]; }; }) diff --git a/pkgs/by-name/ab/abook/package.nix b/pkgs/by-name/ab/abook/package.nix index 0fb3850790c7e2..3abf735c0dda80 100644 --- a/pkgs/by-name/ab/abook/package.nix +++ b/pkgs/by-name/ab/abook/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { readline ]; - meta = { + meta = with lib; { homepage = "http://abook.sourceforge.net/"; description = "Text-based addressbook program designed to use with mutt mail client"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.edwtjo ]; - platforms = with lib.platforms; unix; + license = licenses.gpl2; + maintainers = [ maintainers.edwtjo ]; + platforms = with platforms; unix; mainProgram = "abook"; }; } diff --git a/pkgs/by-name/ab/abuild/package.nix b/pkgs/by-name/ab/abuild/package.nix index a6ad5b1f90bb06..dfd0cda5789382 100644 --- a/pkgs/by-name/ab/abuild/package.nix +++ b/pkgs/by-name/ab/abuild/package.nix @@ -85,11 +85,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { description = "Alpine Linux build tools"; homepage = "https://gitlab.alpinelinux.org/alpine/abuild"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ onny ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ onny ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ac/aces-container/package.nix b/pkgs/by-name/ac/aces-container/package.nix index 64274f660acf5b..caf6c52b185dcd 100644 --- a/pkgs/by-name/ac/aces-container/package.nix +++ b/pkgs/by-name/ac/aces-container/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation (finalAttrs: { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-c++11-narrowing"; - meta = { + meta = with lib; { description = "Reference Implementation of SMPTE ST2065-4"; homepage = "https://github.com/ampas/aces_container"; - license = lib.licenses.ampas; - maintainers = with lib.maintainers; [ paperdigits ]; + license = licenses.ampas; + maintainers = with maintainers; [ paperdigits ]; mainProgram = "aces-container"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ac/acpica-tools/package.nix b/pkgs/by-name/ac/acpica-tools/package.nix index 7211b45c70ee69..136cbeb40d75cb 100644 --- a/pkgs/by-name/ac/acpica-tools/package.nix +++ b/pkgs/by-name/ac/acpica-tools/package.nix @@ -53,18 +53,18 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://www.acpica.org/"; description = "ACPICA Tools"; - license = with lib.licenses; [ + license = with licenses; [ iasl gpl2Only bsd3 ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ tadfisher felixsinger ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + platforms = platforms.linux ++ platforms.darwin; }; }) diff --git a/pkgs/by-name/ac/acpitool/package.nix b/pkgs/by-name/ac/acpitool/package.nix index a8096c07a0c570..ee17044629aa33 100644 --- a/pkgs/by-name/ac/acpitool/package.nix +++ b/pkgs/by-name/ac/acpitool/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { }) ]; - meta = { + meta = with lib; { description = "Small, convenient command-line ACPI client with a lot of features"; mainProgram = "acpitool"; homepage = "https://sourceforge.net/projects/acpitool/"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.guibert ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = [ maintainers.guibert ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ac/acr-cli/package.nix b/pkgs/by-name/ac/acr-cli/package.nix index cd5e5121e5a4be..3004d7f69d6f87 100644 --- a/pkgs/by-name/ac/acr-cli/package.nix +++ b/pkgs/by-name/ac/acr-cli/package.nix @@ -35,11 +35,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Command Line Tool for interacting with Azure Container Registry Images"; homepage = "https://github.com/Azure/acr-cli"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ hausken ]; + license = licenses.mit; + maintainers = with maintainers; [ hausken ]; mainProgram = "acr-cli"; }; } diff --git a/pkgs/by-name/ac/acr/package.nix b/pkgs/by-name/ac/acr/package.nix index 3b8ba5727c8be9..308545df6cf356 100644 --- a/pkgs/by-name/ac/acr/package.nix +++ b/pkgs/by-name/ac/acr/package.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation (finalAttrs: { chmod +x ./autogen.sh && ./autogen.sh ''; - meta = { + meta = with lib; { homepage = "https://github.com/radareorg/acr/"; description = "Pure shell autoconf replacement"; longDescription = '' @@ -27,8 +27,8 @@ stdenv.mkDerivation (finalAttrs: { 'configure' script (runtime flags). But using shell-script instead of m4. This means that ACR is faster, smaller and easy to use. ''; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ac/activemq/package.nix b/pkgs/by-name/ac/activemq/package.nix index c691f398bb9c21..390420c73919e2 100644 --- a/pkgs/by-name/ac/activemq/package.nix +++ b/pkgs/by-name/ac/activemq/package.nix @@ -29,13 +29,13 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://activemq.apache.org/"; description = "Messaging and Integration Patterns server written in Java"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.asl20; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.asl20; mainProgram = "activemq"; - maintainers = [ lib.maintainers.anthonyroussel ]; - platforms = lib.platforms.unix; + maintainers = [ maintainers.anthonyroussel ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ac/actual-server/package.nix b/pkgs/by-name/ac/actual-server/package.nix index 1db6f742e03bf3..05fa745523c828 100644 --- a/pkgs/by-name/ac/actual-server/package.nix +++ b/pkgs/by-name/ac/actual-server/package.nix @@ -114,15 +114,15 @@ stdenv.mkDerivation { passthru.updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { changelog = "https://actualbudget.org/docs/releases"; description = "Super fast privacy-focused app for managing your finances"; homepage = "https://actualbudget.org/"; mainProgram = "actual-server"; - license = lib.licenses.mit; + license = licenses.mit; maintainers = [ - lib.maintainers.oddlama - lib.maintainers.patrickdag + maintainers.oddlama + maintainers.patrickdag ]; }; } diff --git a/pkgs/by-name/ad/ada/package.nix b/pkgs/by-name/ad/ada/package.nix index 33ab8e65463dd4..9db49dfcf2f5bd 100644 --- a/pkgs/by-name/ad/ada/package.nix +++ b/pkgs/by-name/ad/ada/package.nix @@ -24,14 +24,14 @@ stdenv.mkDerivation rec { (lib.cmakeBool "ADA_TESTING" false) ]; - meta = { + meta = with lib; { description = "WHATWG-compliant and fast URL parser written in modern C"; homepage = "https://github.com/ada-url/ada"; - license = with lib.licenses; [ + license = with licenses; [ asl20 mit ]; - maintainers = with lib.maintainers; [ nickcao ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ nickcao ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ad/adafruit-nrfutil/package.nix b/pkgs/by-name/ad/adafruit-nrfutil/package.nix index ef5abcf8515273..67c42ef0f595cc 100644 --- a/pkgs/by-name/ad/adafruit-nrfutil/package.nix +++ b/pkgs/by-name/ad/adafruit-nrfutil/package.nix @@ -54,12 +54,12 @@ python3Packages.buildPythonApplication rec { "nordicsemi" ]; - meta = { + meta = with lib; { homepage = "https://github.com/adafruit/Adafruit_nRF52_nrfutil"; description = "Modified version of Nordic's nrfutil 0.5.x for use with the Adafruit Feather nRF52"; mainProgram = "adafruit-nrfutil"; # https://github.com/adafruit/Adafruit_nRF52_nrfutil/issues/41 - license = lib.licenses.unfreeRedistributable; - maintainers = with lib.maintainers; [ stargate01 ]; + license = licenses.unfreeRedistributable; + maintainers = with maintainers; [ stargate01 ]; }; } diff --git a/pkgs/by-name/ad/adapta-kde-theme/package.nix b/pkgs/by-name/ad/adapta-kde-theme/package.nix index 67ba82d4255648..06d5ca6c8fb90d 100644 --- a/pkgs/by-name/ad/adapta-kde-theme/package.nix +++ b/pkgs/by-name/ad/adapta-kde-theme/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { description = "Port of the Adapta theme for Plasma"; homepage = "https://github.com/PapirusDevelopmentTeam/adapta-kde"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.tadfisher ]; - platforms = lib.platforms.all; + license = licenses.gpl3; + maintainers = [ maintainers.tadfisher ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ad/addwater/package.nix b/pkgs/by-name/ad/addwater/package.nix index d79cf096aebbd8..afbb39235cb90a 100644 --- a/pkgs/by-name/ad/addwater/package.nix +++ b/pkgs/by-name/ad/addwater/package.nix @@ -48,12 +48,12 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Installer for the fantastic GNOME for Firefox theme"; homepage = "https://github.com/largestgithubuseronearth/addwater"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ thtrf ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ thtrf ]; mainProgram = "addwater"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ad/adminer-pematon/package.nix b/pkgs/by-name/ad/adminer-pematon/package.nix index 2529fc4cf338fd..0361ab82d320ba 100644 --- a/pkgs/by-name/ad/adminer-pematon/package.nix +++ b/pkgs/by-name/ad/adminer-pematon/package.nix @@ -60,16 +60,16 @@ stdenvNoCC.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Database management in a single PHP file (Pematon fork)"; homepage = "https://github.com/pematon/adminer"; - license = with lib.licenses; [ + license = with licenses; [ asl20 gpl2Only ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ johnrtitor ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ad/adms/package.nix b/pkgs/by-name/ad/adms/package.nix index 2602b900e24438..b27f0c3510ef0a 100644 --- a/pkgs/by-name/ad/adms/package.nix +++ b/pkgs/by-name/ad/adms/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { ]; configureFlags = [ "--enable-maintainer-mode" ]; - meta = { + meta = with lib; { description = "automatic device model synthesizer"; homepage = "https://github.com/Qucs/adms"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ disassembler ]; - platforms = with lib.platforms; unix; + license = licenses.gpl3; + maintainers = with maintainers; [ disassembler ]; + platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/ad/adrs/package.nix b/pkgs/by-name/ad/adrs/package.nix index 5282a8a9dc8af2..1dbc6b577fadcb 100644 --- a/pkgs/by-name/ad/adrs/package.nix +++ b/pkgs/by-name/ad/adrs/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-eVADcCXf6hl9o9pApp3inU7kZAKA3k5mM3+vy7cq5u8="; - meta = { + meta = with lib; { description = "Command-line tool for managing Architectural Decision Records"; homepage = "https://github.com/joshrotenberg/adrs"; - license = with lib.licenses; [ + license = with licenses; [ mit asl20 ]; - maintainers = with lib.maintainers; [ dannixon ]; + maintainers = with maintainers; [ dannixon ]; mainProgram = "adrs"; }; } diff --git a/pkgs/by-name/ad/adw-gtk3/package.nix b/pkgs/by-name/ad/adw-gtk3/package.nix index ef748bc77daeb6..0f9cd53fc5d9f3 100644 --- a/pkgs/by-name/ad/adw-gtk3/package.nix +++ b/pkgs/by-name/ad/adw-gtk3/package.nix @@ -34,11 +34,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Theme from libadwaita ported to GTK-3"; homepage = "https://github.com/lassekongo83/adw-gtk3"; - license = lib.licenses.lgpl21Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ ciferkey ]; + license = licenses.lgpl21Only; + platforms = platforms.unix; + maintainers = with maintainers; [ ciferkey ]; }; }) diff --git a/pkgs/by-name/ad/adwsteamgtk/package.nix b/pkgs/by-name/ad/adwsteamgtk/package.nix index 2818f384307846..1dc900bdb091f5 100644 --- a/pkgs/by-name/ad/adwsteamgtk/package.nix +++ b/pkgs/by-name/ad/adwsteamgtk/package.nix @@ -42,12 +42,12 @@ python3Packages.buildPythonApplication rec { pygobject3 ]; - meta = { + meta = with lib; { description = "Simple Gtk wrapper for Adwaita-for-Steam"; homepage = "https://github.com/Foldex/AdwSteamGtk"; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.reedrw ]; + license = licenses.gpl3Plus; + maintainers = [ maintainers.reedrw ]; mainProgram = "adwaita-steam-gtk"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ae/aerogramme/package.nix b/pkgs/by-name/ae/aerogramme/package.nix index b28ebe1eb61cc1..bc0cd1f8ac2db3 100644 --- a/pkgs/by-name/ae/aerogramme/package.nix +++ b/pkgs/by-name/ae/aerogramme/package.nix @@ -35,12 +35,12 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ]; - meta = { + meta = with lib; { description = "Encrypted e-mail storage over Garage"; homepage = "https://aerogramme.deuxfleurs.fr/"; - license = lib.licenses.eupl12; - maintainers = with lib.maintainers; [ supinie ]; + license = licenses.eupl12; + maintainers = with maintainers; [ supinie ]; mainProgram = "aerogramme"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ae/aerospace/package.nix b/pkgs/by-name/ae/aerospace/package.nix index 29c2c7faa68094..63fb57745588f3 100644 --- a/pkgs/by-name/ae/aerospace/package.nix +++ b/pkgs/by-name/ae/aerospace/package.nix @@ -46,13 +46,13 @@ stdenv.mkDerivation { rev-prefix = "v"; }; - meta = { - license = lib.licenses.mit; + meta = with lib; { + license = licenses.mit; mainProgram = "aerospace"; homepage = "https://github.com/nikitabobko/AeroSpace"; description = "i3-like tiling window manager for macOS"; - platforms = lib.platforms.darwin; - maintainers = with lib.maintainers; [ alexandru0-dev ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + platforms = platforms.darwin; + maintainers = with maintainers; [ alexandru0-dev ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/by-name/ae/aewan/package.nix b/pkgs/by-name/ae/aewan/package.nix index 6a93cc9de7744d..aabd9c392b1460 100644 --- a/pkgs/by-name/ae/aewan/package.nix +++ b/pkgs/by-name/ae/aewan/package.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { ncurses ]; - meta = { + meta = with lib; { description = "Ascii-art Editor Without A Name"; homepage = "https://aewan.sourceforge.net/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/af/afterstep/package.nix b/pkgs/by-name/af/afterstep/package.nix index efab01fe76ea8d..abbdd3470fcf59 100644 --- a/pkgs/by-name/af/afterstep/package.nix +++ b/pkgs/by-name/af/afterstep/package.nix @@ -89,7 +89,7 @@ stdenv.mkDerivation (finalAttrs: { # https://github.com/afterstep/afterstep/issues/8 enableParallelBuilding = false; - meta = { + meta = with lib; { homepage = "http://www.afterstep.org/"; description = "NEXTStep-inspired window manager"; longDescription = '' @@ -99,9 +99,9 @@ stdenv.mkDerivation (finalAttrs: { development is to provide for flexibility of desktop configuration, improving aestetics, and efficient use of system resources. ''; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ AndersonTorres ]; mainProgram = "afterstep"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/af/afuse/package.nix b/pkgs/by-name/af/afuse/package.nix index 81b168a4712e97..3a7f720a7e3f35 100644 --- a/pkgs/by-name/af/afuse/package.nix +++ b/pkgs/by-name/af/afuse/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { "" ''; - meta = { + meta = with lib; { description = "Automounter in userspace"; homepage = "https://github.com/pcarrier/afuse"; - license = lib.licenses.gpl2Only; - maintainers = [ lib.maintainers.marcweber ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Only; + maintainers = [ maintainers.marcweber ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ag/agenix-cli/package.nix b/pkgs/by-name/ag/agenix-cli/package.nix index 82b547a4d46765..f716c3df76d0cf 100644 --- a/pkgs/by-name/ag/agenix-cli/package.nix +++ b/pkgs/by-name/ag/agenix-cli/package.nix @@ -20,14 +20,14 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Companion tool to https://github.com/ryantm/agenix"; homepage = "https://github.com/cole-h/agenix-cli"; - license = with lib.licenses; [ + license = with licenses; [ asl20 mit ]; - maintainers = with lib.maintainers; [ misuzu ]; + maintainers = with maintainers; [ misuzu ]; mainProgram = "agenix"; }; } diff --git a/pkgs/by-name/ag/agorakit/package.nix b/pkgs/by-name/ag/agorakit/package.nix index f4d478876443d3..60910478381a66 100644 --- a/pkgs/by-name/ag/agorakit/package.nix +++ b/pkgs/by-name/ag/agorakit/package.nix @@ -29,12 +29,12 @@ php.buildComposerProject (finalAttrs: { vendorHash = "sha256-5ypBA9Qb8jHzAtvNBHkJfsLIf3Pfw1LvYmHP/hED2ig="; composerStrictValidation = false; - meta = { + meta = with lib; { description = "Web-based, open-source groupware"; longDescription = "AgoraKit is web-based, open-source groupware for citizens' initiatives. By creating collaborative groups, people can discuss topics, organize events, store files and keep everyone updated as needed. AgoraKit is a forum, calendar, file manager and email notifier."; homepage = "https://github.com/agorakit/agorakit"; - license = lib.licenses.agpl3Only; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ shogo ]; + license = licenses.agpl3Only; + platforms = platforms.all; + maintainers = with maintainers; [ shogo ]; }; }) diff --git a/pkgs/by-name/ah/ahcpd/package.nix b/pkgs/by-name/ah/ahcpd/package.nix index 054fbb4c36543f..69a40ee6573e22 100644 --- a/pkgs/by-name/ah/ahcpd/package.nix +++ b/pkgs/by-name/ah/ahcpd/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { sed -i -e s,etc,$out/etc, Makefile ''; - meta = { + meta = with lib; { homepage = "http://www.pps.univ-paris-diderot.fr/~jch/software/ahcp/"; description = "Autoconfiguration protocol for IPv6 and dual-stack IPv6/IPv4 networks"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; + license = licenses.mit; + platforms = platforms.linux; mainProgram = "ahcpd"; }; } diff --git a/pkgs/by-name/ah/ahk_x11/package.nix b/pkgs/by-name/ah/ahk_x11/package.nix index 327d801653c6ca..c11d5216e308bb 100644 --- a/pkgs/by-name/ah/ahk_x11/package.nix +++ b/pkgs/by-name/ah/ahk_x11/package.nix @@ -101,12 +101,12 @@ crystal.buildCrystalPackage { # I don't know how to fix it for xvfb and openbox. doCheck = false; - meta = { + meta = with lib; { description = "AutoHotkey for X11"; homepage = "https://phil294.github.io/AHK_X11"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ulysseszhan ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ ulysseszhan ]; + platforms = platforms.linux; mainProgram = "ahk_x11"; }; } diff --git a/pkgs/by-name/ai/aiger/package.nix b/pkgs/by-name/ai/aiger/package.nix index 32869907085672..d1fe95542d913f 100644 --- a/pkgs/by-name/ai/aiger/package.nix +++ b/pkgs/by-name/ai/aiger/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { "lib" ]; - meta = { + meta = with lib; { description = "And-Inverter Graph (AIG) utilities"; homepage = "https://fmv.jku.at/aiger/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ thoughtpolice ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ thoughtpolice ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ai/aiken/package.nix b/pkgs/by-name/ai/aiken/package.nix index 675ae9544dfb11..4adc4b54e13a91 100644 --- a/pkgs/by-name/ai/aiken/package.nix +++ b/pkgs/by-name/ai/aiken/package.nix @@ -34,11 +34,11 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ pkg-config ]; - meta = { + meta = with lib; { description = "Modern smart contract platform for Cardano"; homepage = "https://aiken-lang.org"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ t4ccer ]; + license = licenses.asl20; + maintainers = with maintainers; [ t4ccer ]; mainProgram = "aiken"; }; } diff --git a/pkgs/by-name/al/alac/package.nix b/pkgs/by-name/al/alac/package.nix index e46b5443477cd7..45e04cf54db863 100644 --- a/pkgs/by-name/al/alac/package.nix +++ b/pkgs/by-name/al/alac/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation (finalAttrs: { tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = { + meta = with lib; { description = "Apple Lossless Codec and Utility with Autotools"; homepage = "https://github.com/mikebrady/alac"; - license = lib.licenses.asl20; + license = licenses.asl20; pkgConfigModules = [ "alac" ]; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ jopejoe1 ]; + platforms = platforms.all; + maintainers = with maintainers; [ jopejoe1 ]; }; }) diff --git a/pkgs/by-name/al/albatross/package.nix b/pkgs/by-name/al/albatross/package.nix index 09e220a94d0486..4a39eb356e6220 100644 --- a/pkgs/by-name/al/albatross/package.nix +++ b/pkgs/by-name/al/albatross/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { cp -dr --no-preserve='ownership' {LICENSE.GPL,README,index.theme,gtk-2.0,gtk-3.0,metacity-1,xfwm4} $out/share/themes/Albatross/ ''; - meta = { + meta = with lib; { description = "Desktop Suite for Xfce"; homepage = "https://github.com/shimmerproject/Albatross"; - license = lib.licenses.gpl2; - platforms = lib.platforms.unix; + license = licenses.gpl2; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/al/aleo-fonts/package.nix b/pkgs/by-name/al/aleo-fonts/package.nix index 0bcb4294fab227..9dd58f6e3998a6 100644 --- a/pkgs/by-name/al/aleo-fonts/package.nix +++ b/pkgs/by-name/al/aleo-fonts/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Slab serif typeface designed by Alessio Laiso"; homepage = "https://github.com/AlessioLaiso/aleo"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ donovanglover ]; - platforms = lib.platforms.all; + license = licenses.ofl; + maintainers = with maintainers; [ donovanglover ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/al/algia/package.nix b/pkgs/by-name/al/algia/package.nix index ff6921cb57d93d..d3fcc882af1aa3 100644 --- a/pkgs/by-name/al/algia/package.nix +++ b/pkgs/by-name/al/algia/package.nix @@ -18,11 +18,11 @@ buildGoModule rec { vendorHash = "sha256-8zAGkz17U7j0WWh8ayLowVhNZQvbIlA2YgXMgVIHuFg="; - meta = { + meta = with lib; { description = "CLI application for nostr"; homepage = "https://github.com/mattn/algia"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ haruki7049 ]; + license = licenses.mit; + maintainers = with maintainers; [ haruki7049 ]; mainProgram = "algia"; }; } diff --git a/pkgs/by-name/al/algol68g/package.nix b/pkgs/by-name/al/algol68g/package.nix index 1d3ed222b62256..f3066d3f377655 100644 --- a/pkgs/by-name/al/algol68g/package.nix +++ b/pkgs/by-name/al/algol68g/package.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation (finalAttrs: { install -m644 ${pdfdoc} ${placeholder "doc"}/share/doc/algol68g/learning-algol-68-genie.pdf ''; - meta = { + meta = with lib; { homepage = "https://jmvdveer.home.xs4all.nl/en.algol-68-genie.html"; description = "Algol 68 Genie compiler-interpreter"; longDescription = '' @@ -66,9 +66,9 @@ stdenv.mkDerivation (finalAttrs: { regular expressions and sounds. It can be linked to GNU plotutils, the GNU scientific library and PostgreSQL. ''; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "a68g"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/al/algolia-cli/package.nix b/pkgs/by-name/al/algolia-cli/package.nix index 1f1debffbd5d0b..350fb55976ee04 100644 --- a/pkgs/by-name/al/algolia-cli/package.nix +++ b/pkgs/by-name/al/algolia-cli/package.nix @@ -37,11 +37,11 @@ buildGoModule { --zsh <($out/bin/algolia completion zsh) ''; - meta = { + meta = with lib; { description = "Algolia’s official CLI devtool"; mainProgram = "algolia"; homepage = "https://algolia.com/doc/tools/cli/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ momeemt ]; + license = licenses.mit; + maintainers = with maintainers; [ momeemt ]; }; } diff --git a/pkgs/by-name/al/alice-lg/package.nix b/pkgs/by-name/al/alice-lg/package.nix index 54dbef8f737735..551c842230f73c 100644 --- a/pkgs/by-name/al/alice-lg/package.nix +++ b/pkgs/by-name/al/alice-lg/package.nix @@ -86,12 +86,12 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { homepage = "https://github.com/alice-lg/alice-lg"; description = "Looking-glass for BGP sessions"; changelog = "https://github.com/alice-lg/alice-lg/blob/main/CHANGELOG.md"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ stv0g ]; + license = licenses.bsd3; + maintainers = with maintainers; [ stv0g ]; mainProgram = "alice-lg"; }; } diff --git a/pkgs/by-name/al/alive2/package.nix b/pkgs/by-name/al/alive2/package.nix index f627751189c880..e08e6f9cd256d1 100644 --- a/pkgs/by-name/al/alive2/package.nix +++ b/pkgs/by-name/al/alive2/package.nix @@ -56,12 +56,12 @@ clangStdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Automatic verification of LLVM optimizations"; homepage = "https://github.com/AliveToolkit/alive2"; - license = lib.licenses.mit; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ shogo ]; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ shogo ]; mainProgram = "alive"; }; }) diff --git a/pkgs/by-name/al/allure/package.nix b/pkgs/by-name/al/allure/package.nix index 1ad9e8e416b7df..0922687ed317cc 100644 --- a/pkgs/by-name/al/allure/package.nix +++ b/pkgs/by-name/al/allure/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://docs.qameta.io/allure/"; description = "Allure Report is a flexible, lightweight multi-language test reporting tool"; longDescription = '' @@ -42,8 +42,8 @@ stdenv.mkDerivation (finalAttrs: { in the development process to extract the maximum of information from the everyday testing process. ''; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "allure"; - maintainers = with lib.maintainers; [ happysalada ]; + maintainers = with maintainers; [ happysalada ]; }; }) diff --git a/pkgs/by-name/al/almo/package.nix b/pkgs/by-name/al/almo/package.nix index 6c7e2c516ff118..46e5b36e919498 100644 --- a/pkgs/by-name/al/almo/package.nix +++ b/pkgs/by-name/al/almo/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "ALMO is markdown parser and static site generator"; - license = lib.licenses.mit; - platforms = lib.platforms.all; + license = licenses.mit; + platforms = platforms.all; homepage = "https://github.com/abap34/almo"; - maintainers = with lib.maintainers; [ momeemt ]; + maintainers = with maintainers; [ momeemt ]; mainProgram = "almo"; }; } diff --git a/pkgs/by-name/al/alpaca/package.nix b/pkgs/by-name/al/alpaca/package.nix index 83065ff554ed90..90f948559904d9 100644 --- a/pkgs/by-name/al/alpaca/package.nix +++ b/pkgs/by-name/al/alpaca/package.nix @@ -71,7 +71,7 @@ python3Packages.buildPythonApplication rec { "--set FLATPAK_DEST ${placeholder "out"}" ]; - meta = { + meta = with lib; { description = "Ollama client made with GTK4 and Adwaita"; longDescription = '' To run Alpaca with GPU acceleration enabled, simply override it: @@ -83,12 +83,12 @@ python3Packages.buildPythonApplication rec { Or using `pkgs.ollama-rocm` for AMD GPUs. ''; homepage = "https://jeffser.com/alpaca"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "alpaca"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ aleksana Gliczy ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/al/alsa-tools/package.nix b/pkgs/by-name/al/alsa-tools/package.nix index 222a1124211209..e5c375d3de2b8d 100644 --- a/pkgs/by-name/al/alsa-tools/package.nix +++ b/pkgs/by-name/al/alsa-tools/package.nix @@ -105,11 +105,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postFixup ''; - meta = { + meta = with lib; { homepage = "http://www.alsa-project.org/"; description = "ALSA Tools"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/al/alt-ergo/package.nix b/pkgs/by-name/al/alt-ergo/package.nix index 8aed8f4e701c8e..cdf12e2d9ce8db 100644 --- a/pkgs/by-name/al/alt-ergo/package.nix +++ b/pkgs/by-name/al/alt-ergo/package.nix @@ -72,10 +72,10 @@ ocamlPackages.buildDunePackage { runHook postInstall ''; - meta = { + meta = with lib; { description = "High-performance theorem prover and SMT solver"; homepage = "https://alt-ergo.ocamlpro.com/"; - license = lib.licenses.ocamlpro_nc; - maintainers = [ lib.maintainers.thoughtpolice ]; + license = licenses.ocamlpro_nc; + maintainers = [ maintainers.thoughtpolice ]; }; } diff --git a/pkgs/by-name/al/alt-tab-macos/package.nix b/pkgs/by-name/al/alt-tab-macos/package.nix index 640fd55fa1469c..3b06c5f69656ac 100644 --- a/pkgs/by-name/al/alt-tab-macos/package.nix +++ b/pkgs/by-name/al/alt-tab-macos/package.nix @@ -30,15 +30,15 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Windows alt-tab on macOS"; homepage = "https://alt-tab-macos.netlify.app"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ donteatoreo emilytrau ]; - platforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + platforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/am/amazon-cloudwatch-agent/package.nix b/pkgs/by-name/am/amazon-cloudwatch-agent/package.nix index 6378935663b8b2..7e751435238ed5 100644 --- a/pkgs/by-name/am/amazon-cloudwatch-agent/package.nix +++ b/pkgs/by-name/am/amazon-cloudwatch-agent/package.nix @@ -55,11 +55,11 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "CloudWatch Agent enables you to collect and export host-level metrics and logs on instances running Linux or Windows server"; homepage = "https://github.com/aws/amazon-cloudwatch-agent"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "amazon-cloudwatch-agent"; - maintainers = with lib.maintainers; [ pmw ]; + maintainers = with maintainers; [ pmw ]; }; } diff --git a/pkgs/by-name/am/amazon-ec2-utils/package.nix b/pkgs/by-name/am/amazon-ec2-utils/package.nix index 348cc824595824..40919c1297ade0 100644 --- a/pkgs/by-name/am/amazon-ec2-utils/package.nix +++ b/pkgs/by-name/am/amazon-ec2-utils/package.nix @@ -99,11 +99,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Contains a set of utilities and settings for Linux deployments in EC2"; homepage = "https://github.com/amazonlinux/amazon-ec2-utils"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ anthonyroussel arianvp ketzacoatl diff --git a/pkgs/by-name/am/amberol/package.nix b/pkgs/by-name/am/amberol/package.nix index f19812224e0fc2..c2930da4bf103c 100644 --- a/pkgs/by-name/am/amberol/package.nix +++ b/pkgs/by-name/am/amberol/package.nix @@ -77,12 +77,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { homepage = "https://gitlab.gnome.org/World/amberol"; description = "Small and simple sound and music player"; - maintainers = with lib.maintainers; [ linsui ] ++ lib.teams.gnome-circle.members; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ linsui ] ++ teams.gnome-circle.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; mainProgram = "amberol"; }; } diff --git a/pkgs/by-name/am/amd-ucodegen/package.nix b/pkgs/by-name/am/amd-ucodegen/package.nix index de3de6efefbea4..24191473ca4a18 100644 --- a/pkgs/by-name/am/amd-ucodegen/package.nix +++ b/pkgs/by-name/am/amd-ucodegen/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: { tests.platomav = callPackage ./test-platomav.nix { amd-ucodegen = finalAttrs.finalPackage; }; }; - meta = { + meta = with lib; { description = "Tool to generate AMD microcode files"; longDescription = '' This tool can be used to generate AMD microcode containers as used by the @@ -52,9 +52,9 @@ stdenv.mkDerivation (finalAttrs: { The generated output file can be installed in /lib/firmware/amd-ucode. ''; homepage = "https://github.com/AndyLavr/amd-ucodegen"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.unix; + license = licenses.gpl2Only; + platforms = platforms.unix; mainProgram = "amd-ucodegen"; - maintainers = with lib.maintainers; [ d-brasher ]; + maintainers = with maintainers; [ d-brasher ]; }; }) diff --git a/pkgs/by-name/am/amdenc/package.nix b/pkgs/by-name/am/amdenc/package.nix index 3953ac7beb698b..10872d1b48612e 100644 --- a/pkgs/by-name/am/amdenc/package.nix +++ b/pkgs/by-name/am/amdenc/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "AMD Encode Core Library"; homepage = "https://www.amd.com/en/support/download/drivers.html"; - license = lib.licenses.unfree; + license = licenses.unfree; platforms = [ "x86_64-linux" ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; - maintainers = with lib.maintainers; [ jopejoe1 ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; + maintainers = with maintainers; [ jopejoe1 ]; }; }) diff --git a/pkgs/by-name/am/amdgpu_top/package.nix b/pkgs/by-name/am/amdgpu_top/package.nix index a725f55b0c7690..2706df41672412 100644 --- a/pkgs/by-name/am/amdgpu_top/package.nix +++ b/pkgs/by-name/am/amdgpu_top/package.nix @@ -54,13 +54,13 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Tool to display AMDGPU usage"; homepage = "https://github.com/Umio-Yasuno/amdgpu_top"; changelog = "https://github.com/Umio-Yasuno/amdgpu_top/releases"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ geri1701 ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ geri1701 ]; + platforms = platforms.linux; mainProgram = "amdgpu_top"; }; } diff --git a/pkgs/by-name/am/amf/package.nix b/pkgs/by-name/am/amf/package.nix index 13564a3e7a0898..3781b2ebd9c26b 100644 --- a/pkgs/by-name/am/amf/package.nix +++ b/pkgs/by-name/am/amf/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation (finalAttrs: { patchelf $out/lib/* --add-needed libamdenc64.so ''; - meta = { + meta = with lib; { description = "AMD's closed source Advanced Media Framework (AMF) driver"; homepage = "https://www.amd.com/en/support/download/drivers.html"; - license = lib.licenses.unfree; + license = licenses.unfree; platforms = [ "x86_64-linux" ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; - maintainers = with lib.maintainers; [ jopejoe1 ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; + maintainers = with maintainers; [ jopejoe1 ]; }; }) diff --git a/pkgs/by-name/am/amneziawg-go/package.nix b/pkgs/by-name/am/amneziawg-go/package.nix index fa5f47cffa81dc..628a024d3dc703 100644 --- a/pkgs/by-name/am/amneziawg-go/package.nix +++ b/pkgs/by-name/am/amneziawg-go/package.nix @@ -34,11 +34,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Userspace Go implementation of AmneziaWG"; homepage = "https://github.com/amnezia-vpn/amneziawg-go"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ averyanalex ]; + license = licenses.mit; + maintainers = with maintainers; [ averyanalex ]; mainProgram = "amneziawg-go"; }; } diff --git a/pkgs/by-name/am/amp/package.nix b/pkgs/by-name/am/amp/package.nix index 2d0890b63d67d9..9aa1a1e5d039fe 100644 --- a/pkgs/by-name/am/amp/package.nix +++ b/pkgs/by-name/am/amp/package.nix @@ -51,11 +51,11 @@ rustPlatform.buildRustPackage rec { # Tests need to write to the theme directory in HOME. preCheck = "export HOME=`mktemp -d`"; - meta = { + meta = with lib; { description = "Modern text editor inspired by Vim"; homepage = "https://amp.rs"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + maintainers = with maintainers; [ sb0 aleksana ]; diff --git a/pkgs/by-name/am/amqpcat/package.nix b/pkgs/by-name/am/amqpcat/package.nix index 1f4d7d8dc1cae2..01c6237acbbaac 100644 --- a/pkgs/by-name/am/amqpcat/package.nix +++ b/pkgs/by-name/am/amqpcat/package.nix @@ -30,11 +30,11 @@ crystal.buildCrystalPackage rec { package = amqpcat; }; - meta = { + meta = with lib; { description = "CLI tool for publishing to and consuming from AMQP servers"; mainProgram = "amqpcat"; homepage = "https://github.com/cloudamqp/amqpcat"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.mit; + maintainers = with maintainers; [ aaronjheng ]; }; } diff --git a/pkgs/by-name/am/amtterm/package.nix b/pkgs/by-name/am/amtterm/package.nix index 6d6788cd2238f2..5a16a998035fac 100644 --- a/pkgs/by-name/am/amtterm/package.nix +++ b/pkgs/by-name/am/amtterm/package.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation (finalAttrs: { postInstall = "wrapProgram $out/bin/amttool --prefix PERL5LIB : $PERL5LIB"; - meta = { + meta = with lib; { description = "Intel AMT® SoL client + tools"; homepage = "https://www.kraxel.org/cgit/amtterm/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/an/analog/package.nix b/pkgs/by-name/an/analog/package.nix index 11777f147a24e4..e7106f6d745cf2 100644 --- a/pkgs/by-name/an/analog/package.nix +++ b/pkgs/by-name/an/analog/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { mv lang images examples $out/share/$pname/ ''; - meta = { + meta = with lib; { homepage = "https://www.c-amie.co.uk/software/analog/"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; description = "Powerful tool to generate web server statistics"; - platforms = lib.platforms.all; + platforms = platforms.all; mainProgram = "analog"; }; diff --git a/pkgs/by-name/an/ananicy-cpp/package.nix b/pkgs/by-name/an/ananicy-cpp/package.nix index b83aa1ca208ac2..00d1087beae335 100644 --- a/pkgs/by-name/an/ananicy-cpp/package.nix +++ b/pkgs/by-name/an/ananicy-cpp/package.nix @@ -98,12 +98,12 @@ clangStdenv.mkDerivation (finalAttrs: { rm -rf "$out"/lib/cmake ''; - meta = { + meta = with lib; { homepage = "https://gitlab.com/ananicy-cpp/ananicy-cpp"; description = "Rewrite of ananicy in c++ for lower cpu and memory usage"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ artturin johnrtitor diniamo diff --git a/pkgs/by-name/an/ananicy-rules-cachyos/package.nix b/pkgs/by-name/an/ananicy-rules-cachyos/package.nix index faf900e8643e0a..ca11ac776f32dd 100644 --- a/pkgs/by-name/an/ananicy-rules-cachyos/package.nix +++ b/pkgs/by-name/an/ananicy-rules-cachyos/package.nix @@ -31,12 +31,12 @@ stdenvNoCC.mkDerivation { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { homepage = "https://github.com/CachyOS/ananicy-rules"; description = "CachyOS' ananicy-rules meant to be used with ananicy-cpp"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + platforms = platforms.linux; + maintainers = with maintainers; [ artturin johnrtitor ]; diff --git a/pkgs/by-name/an/andi/package.nix b/pkgs/by-name/an/andi/package.nix index 06efb791d54e67..74808a634962ef 100644 --- a/pkgs/by-name/an/andi/package.nix +++ b/pkgs/by-name/an/andi/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation (finalAttrs: { patchShebangs ./test ''; - meta = { + meta = with lib; { description = "Efficient Estimation of Evolutionary Distances"; homepage = "https://github.com/evolbioinf/andi"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ natsukium ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ natsukium ]; mainProgram = "andi"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/an/android-studio-tools/package.nix b/pkgs/by-name/an/android-studio-tools/package.nix index 699f7405eb34ec..cfe3164b2bd7cb 100644 --- a/pkgs/by-name/an/android-studio-tools/package.nix +++ b/pkgs/by-name/an/android-studio-tools/package.nix @@ -45,14 +45,14 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Android Studio CLI Tools"; homepage = "https://developer.android.com/studio"; downloadPage = "https://developer.android.com/studio"; changelog = "https://developer.android.com/studio/releases"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ pandapip1 ]; - platforms = lib.platforms.all; - sourceProvenance = with lib.sourceTypes; [ fromSource ]; # The 'binaries' are actually shell scripts + license = licenses.unfree; + maintainers = with maintainers; [ pandapip1 ]; + platforms = platforms.all; + sourceProvenance = with sourceTypes; [ fromSource ]; # The 'binaries' are actually shell scripts }; } diff --git a/pkgs/by-name/an/ani-cli/package.nix b/pkgs/by-name/an/ani-cli/package.nix index da34a48d55e0be..e3f3e5ac0d956a 100644 --- a/pkgs/by-name/an/ani-cli/package.nix +++ b/pkgs/by-name/an/ani-cli/package.nix @@ -58,15 +58,15 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/pystardust/ani-cli"; description = "Cli tool to browse and play anime"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ skykanin diniamo ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "ani-cli"; }; }) diff --git a/pkgs/by-name/an/ani-skip/package.nix b/pkgs/by-name/an/ani-skip/package.nix index a42bac4297a8c3..26b080126f9c87 100644 --- a/pkgs/by-name/an/ani-skip/package.nix +++ b/pkgs/by-name/an/ani-skip/package.nix @@ -44,12 +44,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { --prefix PATH : ${lib.makeBinPath finalAttrs.runtimeInputs} ''; - meta = { + meta = with lib; { homepage = "https://github.com/synacktraa/ani-skip"; description = "Automated solution to bypassing anime opening and ending sequences"; mainProgram = "ani-skip"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.diniamo ]; - platforms = lib.platforms.unix; + license = licenses.gpl3; + maintainers = [ maintainers.diniamo ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/an/animatch/package.nix b/pkgs/by-name/an/animatch/package.nix index 91cbba82717c5c..a83929ef6d3d82 100644 --- a/pkgs/by-name/an/animatch/package.nix +++ b/pkgs/by-name/an/animatch/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { "-DLIBSUPERDERPY_STATIC=ON" # recommended by upstream for coexistence with other superderpy games ]; - meta = { + meta = with lib; { homepage = "https://gitlab.com/HolyPangolin/animatch/"; description = "Cute match three game for the Librem 5 smartphone"; mainProgram = "animatch"; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ colinsane ]; + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ colinsane ]; }; } diff --git a/pkgs/by-name/an/ankama-launcher/package.nix b/pkgs/by-name/an/ankama-launcher/package.nix index 60ca6c255d48d7..5dccb825bb34cf 100644 --- a/pkgs/by-name/an/ankama-launcher/package.nix +++ b/pkgs/by-name/an/ankama-launcher/package.nix @@ -44,16 +44,16 @@ appimageTools.wrapType2 { install -m 444 -D ${appimageContents}/zaap.png $out/share/icons/hicolor/256x256/apps/zaap.png ''; - meta = { + meta = with lib; { description = "Ankama Launcher"; longDescription = '' Ankama Launcher is a portal that allows you to access Ankama's video games, VOD animations, webtoons, and livestreams, as well as download updates, stay up to date with the latest news, and chat with your friends. ''; homepage = "https://www.ankama.com/en/launcher"; - license = lib.licenses.unfree; + license = licenses.unfree; mainProgram = "ankama-launcher"; - maintainers = with lib.maintainers; [ harbiinger ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + maintainers = with maintainers; [ harbiinger ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/an/ansel/package.nix b/pkgs/by-name/an/ansel/package.nix index 8899d6efbbcc5c..a364a81c9f0ee2 100644 --- a/pkgs/by-name/an/ansel/package.nix +++ b/pkgs/by-name/an/ansel/package.nix @@ -176,12 +176,12 @@ stdenv.mkDerivation { (lib.cmakeFeature "Xsltproc_BIN" (lib.getExe' libxslt "xsltproc")) ]; - meta = { + meta = with lib; { description = "Darktable fork minus the bloat plus some design vision"; homepage = "https://ansel.photos/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ ]; mainProgram = "ansel"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/an/ansi/package.nix b/pkgs/by-name/an/ansi/package.nix index 20fc58b605d6c1..b5662fec66e403 100644 --- a/pkgs/by-name/an/ansi/package.nix +++ b/pkgs/by-name/an/ansi/package.nix @@ -15,15 +15,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Q46VKBrOsjqUeSruuK/Bur2L69JAGr3c+ianfPlfzi0="; - meta = { + meta = with lib; { description = "Quickly get ANSI escape sequences"; longDescription = '' CLI utility called "ansi" to quickly get ANSI escape sequences. Supports the colors and styles, such as bold or italic. ''; homepage = "https://github.com/phip1611/ansi-escape-sequences-cli"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ phip1611 ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ phip1611 ]; mainProgram = "ansi"; }; } diff --git a/pkgs/by-name/an/ansible-cmdb/package.nix b/pkgs/by-name/an/ansible-cmdb/package.nix index d88ae7ec2f6369..d479a706685b14 100644 --- a/pkgs/by-name/an/ansible-cmdb/package.nix +++ b/pkgs/by-name/an/ansible-cmdb/package.nix @@ -49,11 +49,11 @@ buildPythonApplication { version = "v${version}"; }; - meta = { + meta = with lib; { description = "Generate host overview from ansible fact gathering output"; homepage = "https://github.com/fboender/ansible-cmdb"; - license = lib.licenses.gpl3Only; - maintainers = [ lib.maintainers.tie ]; + license = licenses.gpl3Only; + maintainers = [ maintainers.tie ]; mainProgram = "ansible-cmdb"; }; } diff --git a/pkgs/by-name/an/antidote/package.nix b/pkgs/by-name/an/antidote/package.nix index f1060567983b2d..0c663902b6ada5 100644 --- a/pkgs/by-name/an/antidote/package.nix +++ b/pkgs/by-name/an/antidote/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Zsh plugin manager made from the ground up thinking about performance"; homepage = "https://getantidote.github.io/"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.hitsmaxft ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = [ maintainers.hitsmaxft ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/an/antora/test/default.nix b/pkgs/by-name/an/antora/test/default.nix index ce5e0d5f50bbee..9af32350ffb9ad 100644 --- a/pkgs/by-name/an/antora/test/default.nix +++ b/pkgs/by-name/an/antora/test/default.nix @@ -57,10 +57,10 @@ stdenvNoCC.mkDerivation { gitMinimal ]; - meta = { + meta = with lib; { description = "Reproducible Antora test framework"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.naho ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = [ maintainers.naho ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/an/anttweakbar/package.nix b/pkgs/by-name/an/anttweakbar/package.nix index 441303c2e37d3c..a5d94d74204899 100644 --- a/pkgs/by-name/an/anttweakbar/package.nix +++ b/pkgs/by-name/an/anttweakbar/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { cp -r ../include $out/ ''; - meta = { + meta = with lib; { description = "Add a light/intuitive GUI to OpenGL applications"; longDescription = '' A small and easy-to-use C/C++ library that allows to quickly add a light @@ -42,8 +42,8 @@ stdenv.mkDerivation rec { to interactively tweak parameters on-screen ''; homepage = "https://anttweakbar.sourceforge.net/"; - license = lib.licenses.zlib; - maintainers = [ lib.maintainers.razvan ]; - platforms = lib.platforms.linux; + license = licenses.zlib; + maintainers = [ maintainers.razvan ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/an/anvil-editor/package.nix b/pkgs/by-name/an/anvil-editor/package.nix index 2466eb283aa0af..6ba97a0ab817d5 100644 --- a/pkgs/by-name/an/anvil-editor/package.nix +++ b/pkgs/by-name/an/anvil-editor/package.nix @@ -83,12 +83,12 @@ buildGoModule rec { inherit anvilExtras; }; - meta = { + meta = with lib; { description = "Graphical, multi-pane tiling editor inspired by Acme"; homepage = "https://anvil-editor.net"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "anvil"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = with lib.platforms; unix ++ windows; + maintainers = with maintainers; [ aleksana ]; + platforms = with platforms; unix ++ windows; }; } diff --git a/pkgs/by-name/an/any-nix-shell/package.nix b/pkgs/by-name/an/any-nix-shell/package.nix index 3ef59864af470c..d26bb7ddaa09c8 100644 --- a/pkgs/by-name/an/any-nix-shell/package.nix +++ b/pkgs/by-name/an/any-nix-shell/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "fish, xonsh and zsh support for nix-shell"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/haslersn/any-nix-shell"; - maintainers = with lib.maintainers; [ haslersn ]; + maintainers = with maintainers; [ haslersn ]; mainProgram = "any-nix-shell"; }; } diff --git a/pkgs/by-name/an/anyrun/package.nix b/pkgs/by-name/an/anyrun/package.nix index 645cc1d4278419..2fce1e3f8b5e17 100644 --- a/pkgs/by-name/an/anyrun/package.nix +++ b/pkgs/by-name/an/anyrun/package.nix @@ -60,15 +60,15 @@ rustPlatform.buildRustPackage { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "Wayland-native, highly customizable runner"; homepage = "https://github.com/kirottu/anyrun"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + maintainers = with maintainers; [ khaneliman NotAShelf ]; mainProgram = "anyrun"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ap/apftool-rs/package.nix b/pkgs/by-name/ap/apftool-rs/package.nix index 101b0e09ab1f5f..34e7e65fe7f9db 100644 --- a/pkgs/by-name/ap/apftool-rs/package.nix +++ b/pkgs/by-name/ap/apftool-rs/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-6lYokd0jwpBWCQ+AbN6ptZYXGcy41GHPbnTELUjPbyA="; - meta = { + meta = with lib; { description = "About Tools for Rockchip image unpack tool"; mainProgram = "apftool-rs"; homepage = "https://github.com/suyulin/apftool-rs"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ colemickens ]; - platforms = lib.platforms.linux; + license = licenses.asl20; + maintainers = with maintainers; [ colemickens ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ap/aphorme/package.nix b/pkgs/by-name/ap/aphorme/package.nix index 865f714265c37b..5ab4a37e9973a2 100644 --- a/pkgs/by-name/ap/aphorme/package.nix +++ b/pkgs/by-name/ap/aphorme/package.nix @@ -42,12 +42,12 @@ rustPlatform.buildRustPackage rec { version = "aphorme ${version}"; }; - meta = { + meta = with lib; { description = "Program launcher for window managers, written in Rust"; mainProgram = "aphorme"; homepage = "https://github.com/Iaphetes/aphorme_launcher"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ anytimetraveler ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ anytimetraveler ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ap/apl386/package.nix b/pkgs/by-name/ap/apl386/package.nix index 975307a795ba12..a2218546a85b9b 100644 --- a/pkgs/by-name/ap/apl386/package.nix +++ b/pkgs/by-name/ap/apl386/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://abrudz.github.io/APL386/"; description = "APL385 Unicode font evolved"; - license = lib.licenses.unlicense; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.all; + license = licenses.unlicense; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ap/apostrophe/package.nix b/pkgs/by-name/ap/apostrophe/package.nix index 955113945be493..a9fff91cb18959 100644 --- a/pkgs/by-name/ap/apostrophe/package.nix +++ b/pkgs/by-name/ap/apostrophe/package.nix @@ -102,17 +102,17 @@ python3Packages.buildPythonApplication { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { homepage = "https://gitlab.gnome.org/World/apostrophe"; description = "Distraction free Markdown editor for GNU/Linux"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + platforms = platforms.linux; maintainers = - with lib.maintainers; + with maintainers; [ sternenseemann ] - ++ lib.teams.gnome-circle.members; + ++ teams.gnome-circle.members; mainProgram = "apostrophe"; }; } diff --git a/pkgs/by-name/ap/apparency/package.nix b/pkgs/by-name/ap/apparency/package.nix index 7eacc1aa7da6a7..a7343ba2f1d974 100644 --- a/pkgs/by-name/ap/apparency/package.nix +++ b/pkgs/by-name/ap/apparency/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "App That Opens Apps"; homepage = "https://www.mothersruin.com/software/Apparency/"; - license = lib.licenses.unfreeRedistributable; + license = licenses.unfreeRedistributable; maintainers = [ ]; mainProgram = "appy"; - platforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + platforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/ap/appindicator-sharp/package.nix b/pkgs/by-name/ap/appindicator-sharp/package.nix index 40373d4e61afdb..bb8065c36eab64 100644 --- a/pkgs/by-name/ap/appindicator-sharp/package.nix +++ b/pkgs/by-name/ap/appindicator-sharp/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { ac_cv_path_MDOC = "no"; installFlags = [ "GAPIXMLDIR=/tmp/gapixml" ]; - meta = { + meta = with lib; { description = "Bindings for appindicator using gobject-introspection"; homepage = "https://github.com/stsundermann/appindicator-sharp"; - license = lib.licenses.lgpl3Only; - maintainers = with lib.maintainers; [ kevincox ]; + license = licenses.lgpl3Only; + maintainers = with maintainers; [ kevincox ]; }; } diff --git a/pkgs/by-name/ap/apple-sdk/common/add-core-symbolication.nix b/pkgs/by-name/ap/apple-sdk/common/add-core-symbolication.nix index 7bb655a1863b78..659af53a7be9b2 100644 --- a/pkgs/by-name/ap/apple-sdk/common/add-core-symbolication.nix +++ b/pkgs/by-name/ap/apple-sdk/common/add-core-symbolication.nix @@ -30,12 +30,12 @@ let cp *.h "$out/include" ''; - meta = { + meta = with lib; { description = "Reverse engineered headers for Apple's CoreSymbolication framework"; homepage = "https://github.com/matthewbauer/CoreSymbolication"; - license = lib.licenses.mit; - maintainers = lib.teams.darwin.members; - platforms = lib.platforms.darwin; + license = licenses.mit; + maintainers = teams.darwin.members; + platforms = platforms.darwin; }; }); in diff --git a/pkgs/by-name/ap/apple-sdk/package.nix b/pkgs/by-name/ap/apple-sdk/package.nix index 779ed45260ecef..a389a29b05d4a3 100644 --- a/pkgs/by-name/ap/apple-sdk/package.nix +++ b/pkgs/by-name/ap/apple-sdk/package.nix @@ -100,12 +100,12 @@ stdenvNoCC.mkDerivation ( __structuredAttrs = true; - meta = { + meta = with lib; { description = "Frameworks and libraries required for building packages on Darwin"; homepage = "https://developer.apple.com"; - maintainers = lib.teams.darwin.members; - platforms = lib.platforms.darwin; - badPlatforms = [ lib.systems.inspect.patterns.is32bit ]; + maintainers = teams.darwin.members; + platforms = platforms.darwin; + badPlatforms = [ systems.inspect.patterns.is32bit ]; }; }) ) diff --git a/pkgs/by-name/ap/apt-cacher-ng/package.nix b/pkgs/by-name/ap/apt-cacher-ng/package.nix index 150bc4d7c1579b..7072233e478d54 100644 --- a/pkgs/by-name/ap/apt-cacher-ng/package.nix +++ b/pkgs/by-name/ap/apt-cacher-ng/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation (finalAttrs: { c-ares ]; - meta = { + meta = with lib; { description = "Caching proxy specialized for Linux distribution files"; mainProgram = "apt-cacher-ng"; homepage = "https://www.unix-ag.uni-kl.de/~bloch/acng/"; - license = lib.licenses.bsdOriginal; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.makefu ]; + license = licenses.bsdOriginal; + platforms = platforms.linux; + maintainers = [ maintainers.makefu ]; }; }) diff --git a/pkgs/by-name/ap/apt-dater/package.nix b/pkgs/by-name/ap/apt-dater/package.nix index 658d955b9ad2bb..05d8bf10e2ced5 100644 --- a/pkgs/by-name/ap/apt-dater/package.nix +++ b/pkgs/by-name/ap/apt-dater/package.nix @@ -65,7 +65,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { homepage = "https://github.com/DE-IBH/apt-dater"; description = "Terminal-based remote package update manager"; longDescription = '' @@ -73,8 +73,8 @@ stdenv.mkDerivation rec { number of remote hosts using SSH. It supports Debian-based managed hosts as well as rug (e.g. openSUSE) and yum (e.g. CentOS) based systems. ''; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "apt-dater"; - maintainers = with lib.maintainers; [ c0bw3b ]; + maintainers = with maintainers; [ c0bw3b ]; }; } diff --git a/pkgs/by-name/ap/apt-offline/package.nix b/pkgs/by-name/ap/apt-offline/package.nix index e6826e1740d8cc..e1f1e048c23ca5 100644 --- a/pkgs/by-name/ap/apt-offline/package.nix +++ b/pkgs/by-name/ap/apt-offline/package.nix @@ -47,12 +47,12 @@ python3Packages.buildPythonApplication { "man" ]; - meta = { + meta = with lib; { homepage = "https://github.com/rickysarraf/apt-offline"; description = "Offline APT package manager"; - license = with lib.licenses; [ gpl3Plus ]; + license = with licenses; [ gpl3Plus ]; mainProgram = "apt-offline"; - maintainers = with lib.maintainers; [ ]; + maintainers = with maintainers; [ ]; }; } # TODO: verify GUI and pkexec diff --git a/pkgs/by-name/ap/apx-gui/package.nix b/pkgs/by-name/ap/apx-gui/package.nix index 36494e074b14e7..b37f7869526b69 100644 --- a/pkgs/by-name/ap/apx-gui/package.nix +++ b/pkgs/by-name/ap/apx-gui/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation (finalAttrs: { ) ''; - meta = { + meta = with lib; { description = "GUI frontend for Apx in GTK 4 and Libadwaita"; homepage = "https://github.com/Vanilla-OS/apx-gui"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ chewblacka ]; + license = licenses.gpl3Only; + platforms = platforms.linux; + maintainers = with maintainers; [ chewblacka ]; mainProgram = "apx-gui"; }; }) diff --git a/pkgs/by-name/ar/aravis/package.nix b/pkgs/by-name/ar/aravis/package.nix index d2e237e0aac104..74039f014ba3cb 100644 --- a/pkgs/by-name/ar/aravis/package.nix +++ b/pkgs/by-name/ar/aravis/package.nix @@ -82,15 +82,15 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { description = "Library for video acquisition using GenICam cameras"; longDescription = '' Implements the gigabit ethernet and USB3 protocols used by industrial cameras. ''; # the documentation is the best working homepage that's not the Github repo homepage = "https://aravisproject.github.io/docs/aravis-0.8"; - license = lib.licenses.lgpl2; - maintainers = with lib.maintainers; [ tpw_rules ]; - platforms = lib.platforms.unix; + license = licenses.lgpl2; + maintainers = with maintainers; [ tpw_rules ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ar/arc-browser/package.nix b/pkgs/by-name/ar/arc-browser/package.nix index fd67cb00283fcf..17d7aaa010b832 100644 --- a/pkgs/by-name/ar/arc-browser/package.nix +++ b/pkgs/by-name/ar/arc-browser/package.nix @@ -48,15 +48,15 @@ stdenvNoCC.mkDerivation (finalAttrs: { ''; }); - meta = { + meta = with lib; { description = "Arc from The Browser Company"; homepage = "https://arc.net/"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ donteatoreo ]; + license = licenses.unfree; + maintainers = with maintainers; [ donteatoreo ]; platforms = [ "aarch64-darwin" "x86_64-darwin" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/ar/arc-kde-theme/package.nix b/pkgs/by-name/ar/arc-kde-theme/package.nix index 2cc355efbe6d13..12530fe81a1f03 100644 --- a/pkgs/by-name/ar/arc-kde-theme/package.nix +++ b/pkgs/by-name/ar/arc-kde-theme/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { description = "Port of the arc theme for Plasma"; homepage = "https://github.com/PapirusDevelopmentTeam/arc-kde"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.nixy ]; - platforms = lib.platforms.all; + license = licenses.gpl3; + maintainers = [ maintainers.nixy ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ar/arcan/package.nix b/pkgs/by-name/ar/arcan/package.nix index b318d305f85c2f..97d716ab2e3f9a 100644 --- a/pkgs/by-name/ar/arcan/package.nix +++ b/pkgs/by-name/ar/arcan/package.nix @@ -188,7 +188,7 @@ stdenv.mkDerivation (finalAttrs: { wrapper = callPackage ./wrapper.nix { }; }; - meta = { + meta = with lib; { homepage = "https://arcan-fe.com/"; description = "Combined Display Server, Multimedia Framework, Game Engine"; longDescription = '' @@ -197,12 +197,12 @@ stdenv.mkDerivation (finalAttrs: { e.g. game development, real-time streaming video, monitoring and surveillance, up to and including desktop compositors and window managers. ''; - license = with lib.licenses; [ + license = with licenses; [ bsd3 gpl2Plus lgpl2Plus ]; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ar/archimede/package.nix b/pkgs/by-name/ar/archimede/package.nix index 07116fc4be5adf..ede8ac38a52649 100644 --- a/pkgs/by-name/ar/archimede/package.nix +++ b/pkgs/by-name/ar/archimede/package.nix @@ -20,11 +20,11 @@ buildGoModule { vendorHash = "sha256-F74TVp6+UdV31YVYYHWtdIzpbbiYM2I8csGobesFN2g="; - meta = { + meta = with lib; { homepage = "https://github.com/gennaro-tedesco/archimede"; description = "Unobtrusive directory information fetcher"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "archimede"; - maintainers = [ lib.maintainers.anugrahn1 ]; + maintainers = [ maintainers.anugrahn1 ]; }; } diff --git a/pkgs/by-name/ar/archimedes/package.nix b/pkgs/by-name/ar/archimedes/package.nix index 19f290dfb37747..aa533e575997bd 100644 --- a/pkgs/by-name/ar/archimedes/package.nix +++ b/pkgs/by-name/ar/archimedes/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { }) ]; - meta = { + meta = with lib; { description = "GNU package for semiconductor device simulations"; mainProgram = "archimedes"; homepage = "https://www.gnu.org/software/archimedes"; - license = lib.licenses.gpl2Plus; - platforms = with lib.platforms; linux; + license = licenses.gpl2Plus; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/ar/arcticons-sans/package.nix b/pkgs/by-name/ar/arcticons-sans/package.nix index 5905d8bfa7842b..2fa2cfa88908f2 100644 --- a/pkgs/by-name/ar/arcticons-sans/package.nix +++ b/pkgs/by-name/ar/arcticons-sans/package.nix @@ -21,10 +21,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Arcticons Sans"; homepage = "https://github.com/arcticons-team/arcticons-font"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ asininemonkey ]; + license = licenses.ofl; + maintainers = with maintainers; [ asininemonkey ]; }; }) diff --git a/pkgs/by-name/ar/arena/package.nix b/pkgs/by-name/ar/arena/package.nix index 849c1810c2af6c..625b8095178f0d 100644 --- a/pkgs/by-name/ar/arena/package.nix +++ b/pkgs/by-name/ar/arena/package.nix @@ -80,7 +80,7 @@ stdenv.mkDerivation rec { dontStrip = true; - meta = { + meta = with lib; { description = "Chess GUI for analyzing with and playing against various engines"; longDescription = '' A free Graphical User Interface (GUI) for chess. Arena assists you in @@ -89,8 +89,8 @@ stdenv.mkDerivation rec { UCI protocol I, II. Furthermore, compatible to Chess960, DGT electronic chess board & DGT clocks and much more. ''; - license = lib.licenses.unfree; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; homepage = "http://www.playwitharena.de"; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/ar/ares-cli/package.nix b/pkgs/by-name/ar/ares-cli/package.nix index 3a7711b18a07a2..db8ce4f880967c 100644 --- a/pkgs/by-name/ar/ares-cli/package.nix +++ b/pkgs/by-name/ar/ares-cli/package.nix @@ -23,7 +23,7 @@ buildNpmPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://webostv.developer.lge.com/develop/tools/cli-introduction"; description = "A collection of commands used for creating, packaging, installing, and launching web apps for LG webOS TV."; longDescription = '' @@ -32,7 +32,7 @@ buildNpmPackage rec { a specific IDE. ''; mainProgram = "ares"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ rucadi ]; + license = licenses.asl20; + maintainers = with maintainers; [ rucadi ]; }; } diff --git a/pkgs/by-name/ar/argagg/package.nix b/pkgs/by-name/ar/argagg/package.nix index 431fad5aa7d2ec..27c3b67afe9320 100644 --- a/pkgs/by-name/ar/argagg/package.nix +++ b/pkgs/by-name/ar/argagg/package.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation (finalAttrs: { cmake ]; - meta = { + meta = with lib; { homepage = "https://github.com/vietjtnguyen/argagg"; description = "Argument Aggregator"; longDescription = '' @@ -34,9 +34,9 @@ stdenv.mkDerivation (finalAttrs: { types until you access them, so the result structures end up just being pointers into the original command line argument C-strings. ''; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; badPlatforms = [ "aarch64-darwin" ]; }; }) diff --git a/pkgs/by-name/ar/argbash/package.nix b/pkgs/by-name/ar/argbash/package.nix index 94babc07457893..d1ad258a02d4b9 100644 --- a/pkgs/by-name/ar/argbash/package.nix +++ b/pkgs/by-name/ar/argbash/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation (finalAttrs: { --prefix PATH : '${autoconf}/bin' ''; - meta = { + meta = with lib; { homepage = "https://argbash.io/"; description = "Bash argument parsing code generator"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + license = licenses.bsd3; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ar/argo-expr/package.nix b/pkgs/by-name/ar/argo-expr/package.nix index 9048d604a6b20b..1c5175250d54e2 100644 --- a/pkgs/by-name/ar/argo-expr/package.nix +++ b/pkgs/by-name/ar/argo-expr/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { doInstallCheck = true; - meta = { + meta = with lib; { description = "Argo expression tester"; homepage = "https://github.com/blacha/argo-expr"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ l0b0 ]; + license = licenses.mit; + maintainers = with maintainers; [ l0b0 ]; mainProgram = "argo-expr"; }; } diff --git a/pkgs/by-name/ar/argtable/package.nix b/pkgs/by-name/ar/argtable/package.nix index cb874b99da8006..ab0f15957dd24f 100644 --- a/pkgs/by-name/ar/argtable/package.nix +++ b/pkgs/by-name/ar/argtable/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation (finalAttrs: { patchShebangs tools/build ''; - meta = { + meta = with lib; { homepage = "https://github.com/argtable/argtable3"; description = "Single-file, ANSI C command-line parsing library"; longDescription = '' @@ -38,9 +38,9 @@ stdenv.mkDerivation (finalAttrs: { handling logic and textual descriptions of the command line syntax, which are essential but tedious to implement for a robust CLI program. ''; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ artuuge ]; - platforms = lib.platforms.all; + license = licenses.bsd3; + maintainers = with maintainers; [ artuuge ]; + platforms = platforms.all; }; }) # TODO: a NixOS test suite diff --git a/pkgs/by-name/ar/arj/package.nix b/pkgs/by-name/ar/arj/package.nix index 55a1dfdc3a2a56..80b9d39668d637 100644 --- a/pkgs/by-name/ar/arj/package.nix +++ b/pkgs/by-name/ar/arj/package.nix @@ -54,15 +54,15 @@ gccStdenv.mkDerivation (finalAttrs: { cd .. ''; - meta = { + meta = with lib; { description = "Open-source implementation of the world-famous ARJ archiver"; longDescription = '' This version of ARJ has been created with an intent to preserve maximum compatibility and retain the feature set of the original ARJ archiver as provided by ARJ Software, Inc. ''; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.sander ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = [ maintainers.sander ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ar/ark-pixel-font/package.nix b/pkgs/by-name/ar/ark-pixel-font/package.nix index 7d0313f9f23e0f..69de81eaa5bb13 100644 --- a/pkgs/by-name/ar/ark-pixel-font/package.nix +++ b/pkgs/by-name/ar/ark-pixel-font/package.nix @@ -69,11 +69,11 @@ python312Packages.buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Open source pan-CJK pixel font"; homepage = "https://ark-pixel-font.takwolf.com/"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ h7x4 ]; - platforms = lib.platforms.all; + license = licenses.ofl; + maintainers = with maintainers; [ h7x4 ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ar/arkenfox-userjs/package.nix b/pkgs/by-name/ar/arkenfox-userjs/package.nix index d60b82110dc83e..6ba731f0b86c94 100644 --- a/pkgs/by-name/ar/arkenfox-userjs/package.nix +++ b/pkgs/by-name/ar/arkenfox-userjs/package.nix @@ -28,14 +28,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "A comprehensive user.js template for configuration and hardening"; homepage = "https://github.com/arkenfox/user.js"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ linsui Guanran928 ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ar/arma3-unix-launcher/package.nix b/pkgs/by-name/ar/arma3-unix-launcher/package.nix index 6c15df4cd33ae4..80b0310fcc0769 100644 --- a/pkgs/by-name/ar/arma3-unix-launcher/package.nix +++ b/pkgs/by-name/ar/arma3-unix-launcher/package.nix @@ -67,17 +67,17 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = [ "-Wno-dev" ] ++ lib.optionals buildDayZLauncher [ "-DBUILD_DAYZ_LAUNCHER=ON" ]; - meta = { + meta = with lib; { homepage = "https://github.com/muttleyxd/arma3-unix-launcher/"; description = "Clean, intuitive Arma 3 + DayZ SA Launcher"; - license = with lib.licenses; [ + license = with licenses; [ # Launcher mit # Steamworks SDK unfree ]; - maintainers = with lib.maintainers; [ DrymarchonShaun ]; + maintainers = with maintainers; [ DrymarchonShaun ]; mainProgram = "arma3-unix-launcher"; - platforms = with lib.platforms; linux ++ darwin; + platforms = with platforms; linux ++ darwin; }; }) diff --git a/pkgs/by-name/ar/art/package.nix b/pkgs/by-name/ar/art/package.nix index c6ac2033d25667..22d5932d781a71 100644 --- a/pkgs/by-name/ar/art/package.nix +++ b/pkgs/by-name/ar/art/package.nix @@ -104,12 +104,12 @@ stdenv.mkDerivation rec { ]; env.CXXFLAGS = "-include cstdint"; # needed at least with gcc13 on aarch64-linux - meta = { + meta = with lib; { description = "A raw converter based on RawTherapee"; homepage = "https://bitbucket.org/agriggio/art/"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ paperdigits ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ paperdigits ]; mainProgram = "art"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ar/artim-dark/package.nix b/pkgs/by-name/ar/artim-dark/package.nix index d8d1a79863a10c..ab500a30252d6b 100644 --- a/pkgs/by-name/ar/artim-dark/package.nix +++ b/pkgs/by-name/ar/artim-dark/package.nix @@ -29,11 +29,11 @@ stdenvNoCC.mkDerivation rec { cp -R GTK $out/share/themes/Aritim-Dark ''; - meta = { + meta = with lib; { description = "Dark theme deeply inspired by the Ayu Dark color palette"; homepage = "https://github.com/Mrcuve0/Aritim-Dark"; - license = with lib.licenses; [ gpl3Only ]; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.pasqui23 ]; + license = with licenses; [ gpl3Only ]; + platforms = platforms.unix; + maintainers = [ maintainers.pasqui23 ]; }; } diff --git a/pkgs/by-name/as/asar/package.nix b/pkgs/by-name/as/asar/package.nix index 54b847819864df..8a1a5d46a89233 100644 --- a/pkgs/by-name/as/asar/package.nix +++ b/pkgs/by-name/as/asar/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation (finalAttrs: { nodejs ]; - meta = { + meta = with lib; { description = "Simple extensive tar-like archive format with indexing"; homepage = "https://github.com/electron/asar"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "asar"; - maintainers = with lib.maintainers; [ xvapx ]; + maintainers = with maintainers; [ xvapx ]; }; }) diff --git a/pkgs/by-name/as/asc-key-to-qr-code-gif/package.nix b/pkgs/by-name/as/asc-key-to-qr-code-gif/package.nix index f3fe53a3ecfaef..5d7dbab10cc0f2 100644 --- a/pkgs/by-name/as/asc-key-to-qr-code-gif/package.nix +++ b/pkgs/by-name/as/asc-key-to-qr-code-gif/package.nix @@ -44,13 +44,13 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/yishilin14/asc-key-to-qr-code-gif"; description = "Convert ASCII-armored PGP keys to animated QR code"; - license = lib.licenses.unfree; # program does not have a license + license = licenses.unfree; # program does not have a license mainProgram = "asc-to-gif"; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + platforms = platforms.unix; + maintainers = with maintainers; [ asymmetric NotAShelf ]; diff --git a/pkgs/by-name/as/ascii-draw/package.nix b/pkgs/by-name/as/ascii-draw/package.nix index ad17218131a4f8..b9f5c418ae489a 100644 --- a/pkgs/by-name/as/ascii-draw/package.nix +++ b/pkgs/by-name/as/ascii-draw/package.nix @@ -48,13 +48,13 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = { + meta = with lib; { description = "Draw diagrams or anything using only ASCII"; homepage = "https://github.com/Nokse22/ascii-draw"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "ascii-draw"; - maintainers = with lib.maintainers; [ aleksana ]; + maintainers = with maintainers; [ aleksana ]; # gnulib bindtextdomain is missing on various other unix platforms - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/as/asciinema/package.nix b/pkgs/by-name/as/asciinema/package.nix index f84c93eb3faad3..1f27913fbb4438 100644 --- a/pkgs/by-name/as/asciinema/package.nix +++ b/pkgs/by-name/as/asciinema/package.nix @@ -25,12 +25,12 @@ python3Packages.buildPythonApplication rec { nativeCheckInputs = [ python3Packages.pytestCheckHook ]; - meta = { + meta = with lib; { description = "Terminal session recorder and the best companion of asciinema.org"; homepage = "https://asciinema.org/"; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.all; + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ ]; + platforms = platforms.all; mainProgram = "asciinema"; }; } diff --git a/pkgs/by-name/as/asha-pipewire-sink/package.nix b/pkgs/by-name/as/asha-pipewire-sink/package.nix index 4f74ecf22f2211..5adcee12b8bb13 100644 --- a/pkgs/by-name/as/asha-pipewire-sink/package.nix +++ b/pkgs/by-name/as/asha-pipewire-sink/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { install -Dm755 asha_connection_test snoop_analyze asha_stream_test asha_pipewire_sink -t $out/bin ''; - meta = { + meta = with lib; { description = "Sample ASHA implementation for Linux designed to work with pipewire and bluez"; homepage = "https://github.com/thewierdnut/asha_pipewire_sink"; - license = lib.licenses.unlicense; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ onny ]; + license = licenses.unlicense; + platforms = platforms.all; + maintainers = with maintainers; [ onny ]; mainProgram = "asha_pipewire_sink"; }; } diff --git a/pkgs/by-name/as/asleap/package.nix b/pkgs/by-name/as/asleap/package.nix index d488537665b6d6..4d66563caf868a 100644 --- a/pkgs/by-name/as/asleap/package.nix +++ b/pkgs/by-name/as/asleap/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/zackw/asleap"; description = "Recovers weak LEAP and PPTP passwords"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ pyrox0 ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + maintainers = with maintainers; [ pyrox0 ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/as/asm-lsp/package.nix b/pkgs/by-name/as/asm-lsp/package.nix index 28b97237e0f9d8..5780ebc8fd1da3 100644 --- a/pkgs/by-name/as/asm-lsp/package.nix +++ b/pkgs/by-name/as/asm-lsp/package.nix @@ -31,15 +31,15 @@ rustPlatform.buildRustPackage { export HOME=$(mktemp -d) ''; - meta = { + meta = with lib; { description = "Language server for NASM/GAS/GO Assembly"; homepage = "https://github.com/bergercookie/asm-lsp"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ + license = licenses.bsd2; + maintainers = with maintainers; [ NotAShelf CaiqueFigueiredo ]; mainProgram = "asm-lsp"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/as/aspectj/package.nix b/pkgs/by-name/as/aspectj/package.nix index 55b9cf5af86c48..ff0ea09eed4363 100644 --- a/pkgs/by-name/as/aspectj/package.nix +++ b/pkgs/by-name/as/aspectj/package.nix @@ -46,11 +46,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://www.eclipse.org/aspectj/"; description = "Seamless aspect-oriented extension to the Java programming language"; - license = lib.licenses.epl10; - platforms = lib.platforms.unix; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = licenses.epl10; + platforms = platforms.unix; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; }; } diff --git a/pkgs/by-name/at/atari800/package.nix b/pkgs/by-name/at/atari800/package.nix index b646426731a952..fb1868872a4f63 100644 --- a/pkgs/by-name/at/atari800/package.nix +++ b/pkgs/by-name/at/atari800/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { (lib.withFeatureAs true "video" "sdl") ]; - meta = { + meta = with lib; { homepage = "https://atari800.github.io/"; description = "Atari 8-bit emulator"; longDescription = '' @@ -54,8 +54,8 @@ stdenv.mkDerivation (finalAttrs: { WinCE, Sega Dreamcast, Android and other systems supported by the SDL library. ''; - license = with lib.licenses; [ gpl2Plus ]; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.linux; + license = with licenses; [ gpl2Plus ]; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/at/ataripp/package.nix b/pkgs/by-name/at/ataripp/package.nix index f62dbf3e4b45b1..9b22ce00db0e19 100644 --- a/pkgs/by-name/at/ataripp/package.nix +++ b/pkgs/by-name/at/ataripp/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation (finalAttrs: { "$out/bin/atari++" ''; - meta = { + meta = with lib; { homepage = "http://www.xl-project.com/"; description = "Enhanced, cycle-accurated Atari emulator"; mainProgram = "atari++"; @@ -46,8 +46,8 @@ stdenv.mkDerivation (finalAttrs: { and the Atari 5200 game console. The emulator is auto-configurable and will compile on a variety of systems (Linux, Solaris, Irix). ''; - maintainers = with lib.maintainers; [ AndersonTorres ]; - license = with lib.licenses; [ gpl2Plus ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ AndersonTorres ]; + license = with licenses; [ gpl2Plus ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/at/atf/package.nix b/pkgs/by-name/at/atf/package.nix index 5edb2d6366b8f9..bc5a432f80b4af 100644 --- a/pkgs/by-name/at/atf/package.nix +++ b/pkgs/by-name/at/atf/package.nix @@ -77,12 +77,12 @@ stdenv.mkDerivation (finalAttrs: { __structuredAttrs = true; - meta = { + meta = with lib; { description = "Libraries to write tests in C, C++, and shell"; homepage = "https://github.com/freebsd/atf/"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "atf-sh"; - maintainers = with lib.maintainers; [ reckenrode ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ reckenrode ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/at/atkinson-monolegible/package.nix b/pkgs/by-name/at/atkinson-monolegible/package.nix index 0673152d2aba86..1196d04d676d52 100644 --- a/pkgs/by-name/at/atkinson-monolegible/package.nix +++ b/pkgs/by-name/at/atkinson-monolegible/package.nix @@ -21,11 +21,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/Hylian/atkinson-monolegible"; description = "Mono variant of the Atkinson Hyperlegible typeface"; - license = lib.licenses.ofl; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ Gliczy ]; + license = licenses.ofl; + platforms = platforms.all; + maintainers = with maintainers; [ Gliczy ]; }; } diff --git a/pkgs/by-name/at/atool/package.nix b/pkgs/by-name/at/atool/package.nix index 4b5110d980943f..a43b860877ee46 100644 --- a/pkgs/by-name/at/atool/package.nix +++ b/pkgs/by-name/at/atool/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { buildInputs = [ perl ]; configureScript = "${bash}/bin/bash configure"; - meta = { + meta = with lib; { homepage = "https://www.nongnu.org/atool"; description = "Archive command line helper"; - platforms = lib.platforms.unix; - license = lib.licenses.gpl3; + platforms = platforms.unix; + license = licenses.gpl3; mainProgram = "atool"; }; } diff --git a/pkgs/by-name/at/atproto-goat/package.nix b/pkgs/by-name/at/atproto-goat/package.nix index b2ba3474d21271..aafa33f9a7c88a 100644 --- a/pkgs/by-name/at/atproto-goat/package.nix +++ b/pkgs/by-name/at/atproto-goat/package.nix @@ -30,14 +30,14 @@ buildGoModule rec { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { description = "Go AT protocol CLI tool"; homepage = "https://github.com/bluesky-social/indigo/blob/main/cmd/goat/README.md"; - license = with lib.licenses; [ + license = with licenses; [ mit asl20 ]; - maintainers = with lib.maintainers; [ pyrox0 ]; + maintainers = with maintainers; [ pyrox0 ]; mainProgram = "goat"; }; } diff --git a/pkgs/by-name/at/ats/package.nix b/pkgs/by-name/at/ats/package.nix index 227702fb316b47..f76b3ae14d94db 100644 --- a/pkgs/by-name/at/ats/package.nix +++ b/pkgs/by-name/at/ats/package.nix @@ -18,13 +18,13 @@ stdenv.mkDerivation rec { patches = [ ./install-atsdoc-hats-files.patch ]; buildInputs = [ gmp ]; - meta = { + meta = with lib; { description = "Functional programming language with dependent types"; homepage = "http://www.ats-lang.org"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; # TODO: it looks like ATS requires gcc specifically. Someone with more knowledge # will need to experiment. - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.thoughtpolice ]; + platforms = platforms.linux; + maintainers = [ maintainers.thoughtpolice ]; }; } diff --git a/pkgs/by-name/at/attract-mode/package.nix b/pkgs/by-name/at/attract-mode/package.nix index 2e3117b04db823..0eb8c2f02bde37 100644 --- a/pkgs/by-name/at/attract-mode/package.nix +++ b/pkgs/by-name/at/attract-mode/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Frontend for arcade cabinets and media PCs"; homepage = "http://attractmode.org"; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.hrdinka ]; - platforms = lib.platforms.unix; + license = licenses.gpl3Plus; + maintainers = [ maintainers.hrdinka ]; + platforms = platforms.unix; mainProgram = "attract"; }; } diff --git a/pkgs/by-name/at/atuin/package.nix b/pkgs/by-name/at/atuin/package.nix index ba46f7d97944c3..b50ec130b130e5 100644 --- a/pkgs/by-name/at/atuin/package.nix +++ b/pkgs/by-name/at/atuin/package.nix @@ -86,11 +86,11 @@ rustPlatform.buildRustPackage rec { "--skip=build_aliases" ]; - meta = { + meta = with lib; { description = "Replacement for a shell history which records additional commands context with optional encrypted synchronization between machines"; homepage = "https://github.com/atuinsh/atuin"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ SuperSandro2000 sciencentistguy _0x4A6F diff --git a/pkgs/by-name/au/audacious-bare/package.nix b/pkgs/by-name/au/audacious-bare/package.nix index 543f213b3826e2..e06a47bd831e64 100644 --- a/pkgs/by-name/au/audacious-bare/package.nix +++ b/pkgs/by-name/au/audacious-bare/package.nix @@ -44,18 +44,18 @@ stdenv.mkDerivation rec { ln -s ${audacious-plugins}/share/audacious/Skins $out/share/audacious/ ''; - meta = { + meta = with lib; { description = "Lightweight and versatile audio player"; homepage = "https://audacious-media-player.org"; downloadPage = "https://github.com/audacious-media-player/audacious"; mainProgram = "audacious"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ ramkromberg ttuegel thiagokokada ]; - platforms = lib.platforms.linux; - license = with lib.licenses; [ + platforms = platforms.linux; + license = with licenses; [ bsd2 bsd3 # https://github.com/audacious-media-player/audacious/blob/master/COPYING gpl2 diff --git a/pkgs/by-name/au/audacity/package.nix b/pkgs/by-name/au/audacity/package.nix index 061aea770cdade..003680d4ffcad5 100644 --- a/pkgs/by-name/au/audacity/package.nix +++ b/pkgs/by-name/au/audacity/package.nix @@ -192,12 +192,12 @@ stdenv.mkDerivation (finalAttrs: { makeWrapper $out/Applications/Audacity.app/Contents/MacOS/Audacity $out/bin/audacity ''; - meta = { + meta = with lib; { description = "Sound editor with graphical UI"; mainProgram = "audacity"; homepage = "https://www.audacityteam.org"; changelog = "https://github.com/audacity/audacity/releases"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus # Must be GPL3 when building with "technologies that require it, # such as the VST3 audio plugin interface". @@ -206,10 +206,10 @@ stdenv.mkDerivation (finalAttrs: { # Documentation. cc-by-30 ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ veprbl wegank ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/au/aurulent-sans/package.nix b/pkgs/by-name/au/aurulent-sans/package.nix index 162664f9f879ca..9b755585ef5732 100644 --- a/pkgs/by-name/au/aurulent-sans/package.nix +++ b/pkgs/by-name/au/aurulent-sans/package.nix @@ -23,12 +23,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Aurulent Sans"; longDescription = "Aurulent Sans is a humanist sans serif intended to be used as an interface font."; homepage = "http://delubrum.org/"; - maintainers = with lib.maintainers; [ deepfire ]; - license = lib.licenses.ofl; - platforms = lib.platforms.all; + maintainers = with maintainers; [ deepfire ]; + license = licenses.ofl; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/au/auto-changelog/package.nix b/pkgs/by-name/au/auto-changelog/package.nix index 0add7c39c6c93d..9ece37afdfbcfc 100644 --- a/pkgs/by-name/au/auto-changelog/package.nix +++ b/pkgs/by-name/au/auto-changelog/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postCheck ''; - meta = { + meta = with lib; { description = "Command line tool for generating a changelog from git tags and commit history"; homepage = "https://github.com/cookpete/auto-changelog"; changelog = "https://github.com/cookpete/auto-changelog/blob/master/CHANGELOG.md"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "auto-changelog"; - maintainers = with lib.maintainers; [ pyrox0 ]; + maintainers = with maintainers; [ pyrox0 ]; }; }) diff --git a/pkgs/by-name/au/auto-cpufreq/package.nix b/pkgs/by-name/au/auto-cpufreq/package.nix index 354b5ebfd4c53c..38fd832edb5ed0 100644 --- a/pkgs/by-name/au/auto-cpufreq/package.nix +++ b/pkgs/by-name/au/auto-cpufreq/package.nix @@ -97,12 +97,12 @@ python3Packages.buildPythonPackage rec { inherit (nixosTests) auto-cpufreq; }; - meta = { + meta = with lib; { mainProgram = "auto-cpufreq"; homepage = "https://github.com/AdnanHodzic/auto-cpufreq"; description = "Automatic CPU speed & power optimizer for Linux"; - license = lib.licenses.lgpl3Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ sarcasticadmin ]; + license = licenses.lgpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ sarcasticadmin ]; }; } diff --git a/pkgs/by-name/au/auto-patchelf/package.nix b/pkgs/by-name/au/auto-patchelf/package.nix index adff3a5e40c0ce..0b9a5953f672a4 100644 --- a/pkgs/by-name/au/auto-patchelf/package.nix +++ b/pkgs/by-name/au/auto-patchelf/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Automatically patch ELF binaries using patchelf"; mainProgram = "auto-patchelf"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ Scrumplex ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ Scrumplex ]; }; } diff --git a/pkgs/by-name/au/autocutsel/package.nix b/pkgs/by-name/au/autocutsel/package.nix index e18db0f9a88041..6ca51d1e80f68c 100644 --- a/pkgs/by-name/au/autocutsel/package.nix +++ b/pkgs/by-name/au/autocutsel/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { cp autocutsel $out/bin/ ''; - meta = { + meta = with lib; { homepage = "https://www.nongnu.org/autocutsel/"; description = "Tracks changes in the server's cutbuffer and CLIPBOARD selection"; - license = lib.licenses.gpl2Plus; - platforms = with lib.platforms; all; + license = licenses.gpl2Plus; + platforms = with platforms; all; mainProgram = "autocutsel"; }; } diff --git a/pkgs/by-name/au/autoenv/package.nix b/pkgs/by-name/au/autoenv/package.nix index 687ac797971ba0..dfd45d25a0ca89 100644 --- a/pkgs/by-name/au/autoenv/package.nix +++ b/pkgs/by-name/au/autoenv/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Per-directory shell environments sourced from .env file"; homepage = "https://github.com/hyperupcall/autoenv"; - license = lib.licenses.mit; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ clebs ]; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ clebs ]; }; }) diff --git a/pkgs/by-name/au/autofs5/package.nix b/pkgs/by-name/au/autofs5/package.nix index 3b053f0d0165a6..9fb19550553259 100644 --- a/pkgs/by-name/au/autofs5/package.nix +++ b/pkgs/by-name/au/autofs5/package.nix @@ -92,12 +92,12 @@ stdenv.mkDerivation rec { libnsl.dev ]; - meta = { + meta = with lib; { description = "Kernel-based automounter"; mainProgram = "automount"; homepage = "https://www.kernel.org/pub/linux/daemons/autofs/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; executables = [ "automount" ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/au/autokey/package.nix b/pkgs/by-name/au/autokey/package.nix index 9e2b40106a2225..26d5aa3e64b746 100644 --- a/pkgs/by-name/au/autokey/package.nix +++ b/pkgs/by-name/au/autokey/package.nix @@ -60,11 +60,11 @@ python3Packages.buildPythonApplication rec { rm $out/bin/autokey-qt $out/share/applications/autokey-qt.desktop ''; - meta = { + meta = with lib; { homepage = "https://github.com/autokey/autokey"; description = "Desktop automation utility for Linux and X11"; - license = with lib.licenses; [ gpl3 ]; - maintainers = with lib.maintainers; [ pneumaticat ]; - platforms = lib.platforms.linux; + license = with licenses; [ gpl3 ]; + maintainers = with maintainers; [ pneumaticat ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/au/autopanosiftc/package.nix b/pkgs/by-name/au/autopanosiftc/package.nix index 358bce7edefd3f..aa9d379f436a0d 100644 --- a/pkgs/by-name/au/autopanosiftc/package.nix +++ b/pkgs/by-name/au/autopanosiftc/package.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { }) ]; - meta = { + meta = with lib; { homepage = "http://hugin.sourceforge.net/"; description = "Implementation in C of the autopano-sift algorithm for automatically stitching panoramas"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; + license = licenses.gpl2; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/au/autoraise/package.nix b/pkgs/by-name/au/autoraise/package.nix index 9f0f1a19aa8614..0f083496c28ad5 100644 --- a/pkgs/by-name/au/autoraise/package.nix +++ b/pkgs/by-name/au/autoraise/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "AutoRaise (and focus) a window when hovering over it with the mouse"; homepage = "https://github.com/sbmpost/AutoRaise"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ nickhu ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ nickhu ]; mainProgram = "autoraise"; - platforms = lib.platforms.darwin; + platforms = platforms.darwin; }; } diff --git a/pkgs/by-name/au/autotrash/package.nix b/pkgs/by-name/au/autotrash/package.nix index ff5a97a4cd640b..5487159753a8d7 100644 --- a/pkgs/by-name/au/autotrash/package.nix +++ b/pkgs/by-name/au/autotrash/package.nix @@ -29,11 +29,11 @@ python3Packages.buildPythonPackage rec { pythonImportsCheck = [ "autotrash" ]; nativeCheckInputs = [ python3Packages.pytestCheckHook ]; - meta = { + meta = with lib; { description = "Tool to automatically purge old trashed files"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; homepage = "https://bneijt.nl/pr/autotrash"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ sigmanificient mithicspirit ]; diff --git a/pkgs/by-name/av/avdump3/package.nix b/pkgs/by-name/av/avdump3/package.nix index 8091d25a2f4173..53149e329eb279 100644 --- a/pkgs/by-name/av/avdump3/package.nix +++ b/pkgs/by-name/av/avdump3/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { dontPatchELF = true; - meta = { + meta = with lib; { mainProgram = "avdump3"; description = "Tool for extracting audio/video metadata from media files and uploading it to AniDB"; longDescription = '' @@ -43,16 +43,16 @@ stdenv.mkDerivation rec { metadata for new files. ''; homepage = "https://wiki.anidb.net/Avdump3"; - sourceProvenance = with lib.sourceTypes; [ + sourceProvenance = with sourceTypes; [ binaryNativeCode binaryBytecode ]; # partial source code available under MIT license at https://github.com/DvdKhl/AVDump3 - license = with lib.licenses; [ + license = with licenses; [ mit unfree ]; - maintainers = with lib.maintainers; [ kini ]; + maintainers = with maintainers; [ kini ]; # NOTE: aarch64-linux may also work but hasn't been tested; co-maintainers welcome. platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/av/avfs/package.nix b/pkgs/by-name/av/avfs/package.nix index 0613bcc4b6d390..0d40aab2f3ce2d 100644 --- a/pkgs/by-name/av/avfs/package.nix +++ b/pkgs/by-name/av/avfs/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { "--enable-fuse" ]; - meta = { + meta = with lib; { homepage = "https://avf.sourceforge.net/"; description = "Virtual filesystem that allows browsing of compressed files"; - platforms = lib.platforms.unix; - license = lib.licenses.gpl2Only; + platforms = platforms.unix; + license = licenses.gpl2Only; }; } diff --git a/pkgs/by-name/av/avml/package.nix b/pkgs/by-name/av/avml/package.nix index 61f1b9790302df..53752474e9d660 100644 --- a/pkgs/by-name/av/avml/package.nix +++ b/pkgs/by-name/av/avml/package.nix @@ -33,12 +33,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "A portable volatile memory acquisition tool for Linux"; homepage = "https://github.com/microsoft/avml"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.lesuisse ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = [ maintainers.lesuisse ]; + platforms = platforms.linux; mainProgram = "avml"; }; } diff --git a/pkgs/by-name/av/avrdude/libelf.nix b/pkgs/by-name/av/avrdude/libelf.nix index bd7b7be7066a33..a9b343f0a20b93 100644 --- a/pkgs/by-name/av/avrdude/libelf.nix +++ b/pkgs/by-name/av/avrdude/libelf.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "ELF object file access library (vendored by avrdudes)"; homepage = "https://github.com/avrdudes/libelf"; - license = lib.licenses.lgpl2Plus; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.bjornfor ]; + license = licenses.lgpl2Plus; + platforms = platforms.all; + maintainers = [ maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/av/avro-cpp/package.nix b/pkgs/by-name/av/avro-cpp/package.nix index b0bd09a65756f7..6a36a7eab046c8 100644 --- a/pkgs/by-name/av/avro-cpp/package.nix +++ b/pkgs/by-name/av/avro-cpp/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { versionCheckProgram = "${placeholder "out"}/bin/avrogencpp"; versionCheckProgramArg = [ "--version" ]; - meta = { + meta = with lib; { description = "C++ library which implements parts of the Avro Specification"; mainProgram = "avrogencpp"; homepage = "https://avro.apache.org/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ rasendubi ]; - platforms = lib.platforms.all; + license = licenses.asl20; + maintainers = with maintainers; [ rasendubi ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/av/avro-tools/package.nix b/pkgs/by-name/av/avro-tools/package.nix index b4d831af3bf493..bb3a551a8fa575 100644 --- a/pkgs/by-name/av/avro-tools/package.nix +++ b/pkgs/by-name/av/avro-tools/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation { --add-flags "-jar $out/libexec/avro-tools/${pname}.jar" ''; - meta = { + meta = with lib; { homepage = "https://avro.apache.org/"; description = "Avro command-line tools and utilities"; mainProgram = "avro-tools"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ momeemt ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.asl20; + maintainers = with maintainers; [ momeemt ]; }; } diff --git a/pkgs/by-name/aw/aw-watcher-window-wayland/package.nix b/pkgs/by-name/aw/aw-watcher-window-wayland/package.nix index 6f4a9fcb110aac..6c15288c0238b9 100644 --- a/pkgs/by-name/aw/aw-watcher-window-wayland/package.nix +++ b/pkgs/by-name/aw/aw-watcher-window-wayland/package.nix @@ -32,12 +32,12 @@ rustPlatform.buildRustPackage rec { wayland ]; - meta = { + meta = with lib; { description = "WIP window and afk watcher for some Wayland compositors"; homepage = "https://github.com/ActivityWatch/aw-watcher-window-wayland"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ esau79p ]; + license = licenses.mpl20; + maintainers = with maintainers; [ esau79p ]; mainProgram = "aw-watcher-window-wayland"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/aw/aws-azure-login/package.nix b/pkgs/by-name/aw/aws-azure-login/package.nix index 86ff83af091a78..e19b2399b13b3d 100644 --- a/pkgs/by-name/aw/aws-azure-login/package.nix +++ b/pkgs/by-name/aw/aws-azure-login/package.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation (finalAttrs: { package = finalAttrs.finalPackage; }; - meta = { + meta = with lib; { description = "Use Azure AD SSO to log into the AWS via CLI"; homepage = "https://github.com/aws-azure-login/aws-azure-login"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "aws-azure-login"; - maintainers = with lib.maintainers; [ l0b0 ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ l0b0 ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/aw/aws-codeartifact-proxy/package.nix b/pkgs/by-name/aw/aws-codeartifact-proxy/package.nix index 423e02117daf41..7497e1b1070760 100644 --- a/pkgs/by-name/aw/aws-codeartifact-proxy/package.nix +++ b/pkgs/by-name/aw/aws-codeartifact-proxy/package.nix @@ -18,11 +18,11 @@ buildGoModule rec { vendorHash = "sha256-3MO+mRCstXw0FfySiyMSs1vaao7kUYIyJB2gAp1IE48="; - meta = { + meta = with lib; { description = "AWS CodeArtifact proxy to allow unauthenticated read access"; homepage = "https://github.com/sktan/aws-codeartifact-proxy"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ lafrenierejm ]; + license = licenses.mit; + maintainers = with maintainers; [ lafrenierejm ]; mainProgram = "aws-codeartifact-proxy"; }; } diff --git a/pkgs/by-name/aw/aws-lc/package.nix b/pkgs/by-name/aw/aws-lc/package.nix index 3733c6d4964b8a..b705d638319207 100644 --- a/pkgs/by-name/aw/aws-lc/package.nix +++ b/pkgs/by-name/aw/aws-lc/package.nix @@ -79,15 +79,15 @@ awsStdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { description = "General-purpose cryptographic library maintained by the AWS Cryptography team for AWS and their customers"; homepage = "https://github.com/aws/aws-lc"; license = [ - lib.licenses.asl20 # or - lib.licenses.isc + licenses.asl20 # or + licenses.isc ]; - maintainers = [ lib.maintainers.theoparis ]; - platforms = lib.platforms.unix; + maintainers = [ maintainers.theoparis ]; + platforms = platforms.unix; mainProgram = "bssl"; }; }) diff --git a/pkgs/by-name/aw/aws-shell/package.nix b/pkgs/by-name/aw/aws-shell/package.nix index 5b1222f5ef8481..f05e2814bcc737 100644 --- a/pkgs/by-name/aw/aws-shell/package.nix +++ b/pkgs/by-name/aw/aws-shell/package.nix @@ -44,12 +44,12 @@ python3Packages.buildPythonApplication rec { export HOME=$(mktemp -d) ''; - meta = { + meta = with lib; { homepage = "https://github.com/awslabs/aws-shell"; description = "Integrated shell for working with the AWS CLI"; - platforms = lib.platforms.unix; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; + platforms = platforms.unix; + license = licenses.asl20; + maintainers = with maintainers; [ bot-wxt1221 ]; mainProgram = "aws-shell"; }; } diff --git a/pkgs/by-name/aw/aws-sso-util/package.nix b/pkgs/by-name/aw/aws-sso-util/package.nix index c083f625493379..363c6d9e934e6f 100644 --- a/pkgs/by-name/aw/aws-sso-util/package.nix +++ b/pkgs/by-name/aw/aws-sso-util/package.nix @@ -30,14 +30,14 @@ python3Packages.buildPythonApplication rec { requests ]; - meta = { + meta = with lib; { description = "Utilities to make AWS SSO easier"; homepage = "https://pypi.org/project/aws-sso-util/"; downloadPage = "https://pypi.org/project/aws-sso-util/#files"; changelog = "https://github.com/benkehoe/aws-sso-util/releases"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ cterence ]; + license = licenses.asl20; + maintainers = with maintainers; [ cterence ]; mainProgram = "aws-sso-util"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ay/ayatana-indicator-messages/package.nix b/pkgs/by-name/ay/ayatana-indicator-messages/package.nix index 05439039016624..7749a2fbdced8e 100644 --- a/pkgs/by-name/ay/ayatana-indicator-messages/package.nix +++ b/pkgs/by-name/ay/ayatana-indicator-messages/package.nix @@ -151,16 +151,16 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = { + meta = with lib; { description = "Ayatana Indicator Messages Applet"; longDescription = '' The -messages Ayatana System Indicator is the messages menu indicator for Unity7, MATE and Lomiri (optionally for others, e.g. XFCE, LXDE). ''; homepage = "https://github.com/AyatanaIndicators/ayatana-indicator-messages"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ OPNA2608 ]; + license = licenses.gpl3Only; + platforms = platforms.linux; + maintainers = with maintainers; [ OPNA2608 ]; pkgConfigModules = [ "messaging-menu" ]; }; }) diff --git a/pkgs/by-name/ay/ayatana-webmail/package.nix b/pkgs/by-name/ay/ayatana-webmail/package.nix index 14665fb0e4e405..b8bbe087994a15 100644 --- a/pkgs/by-name/ay/ayatana-webmail/package.nix +++ b/pkgs/by-name/ay/ayatana-webmail/package.nix @@ -81,11 +81,11 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ libcanberra-gtk3 ]}) ''; - meta = { + meta = with lib; { description = "Webmail notifications and actions for any desktop"; homepage = "https://github.com/AyatanaIndicators/ayatana-webmail"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ doronbehar ]; }; } diff --git a/pkgs/by-name/az/azuki/package.nix b/pkgs/by-name/az/azuki/package.nix index 8ab216a750e3c4..40221e2d9b1913 100644 --- a/pkgs/by-name/az/azuki/package.nix +++ b/pkgs/by-name/az/azuki/package.nix @@ -68,11 +68,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "http://azukifont.com/font/azuki.html"; description = "Azuki Font"; - license = lib.licenses.unfree; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ nyadiia ]; + license = licenses.unfree; + platforms = platforms.all; + maintainers = with maintainers; [ nyadiia ]; }; } diff --git a/pkgs/by-name/az/azure-artifacts-credprovider/package.nix b/pkgs/by-name/az/azure-artifacts-credprovider/package.nix index fa7bf76cc32f6e..cde3c27844cc56 100644 --- a/pkgs/by-name/az/azure-artifacts-credprovider/package.nix +++ b/pkgs/by-name/az/azure-artifacts-credprovider/package.nix @@ -22,11 +22,11 @@ buildDotnetModule rec { patchPhase = '' sed -i 's|.*|net8.0|' Build.props ''; - meta = { + meta = with lib; { homepage = "https://github.com/microsoft/artifacts-credprovider"; description = "Azure Artifacts Credential Provider"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ anpin ]; + license = licenses.mit; + maintainers = with maintainers; [ anpin ]; mainProgram = "CredentialProvider.Microsoft"; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/az/azure-functions-core-tools/package.nix b/pkgs/by-name/az/azure-functions-core-tools/package.nix index efdff67a86b707..3234dbdb1488e8 100644 --- a/pkgs/by-name/az/azure-functions-core-tools/package.nix +++ b/pkgs/by-name/az/azure-functions-core-tools/package.nix @@ -43,12 +43,12 @@ buildDotnetModule { ln -s ${gozip}/bin/gozip $out/bin/gozip ''; - meta = { + meta = with lib; { homepage = "https://github.com/Azure/azure-functions-core-tools"; description = "Command line tools for Azure Functions"; mainProgram = "func"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ mdarocha detegr ]; diff --git a/pkgs/by-name/az/azuredatastudio/package.nix b/pkgs/by-name/az/azuredatastudio/package.nix index dcc16f4f55c37e..cf083d09a90def 100644 --- a/pkgs/by-name/az/azuredatastudio/package.nix +++ b/pkgs/by-name/az/azuredatastudio/package.nix @@ -209,12 +209,12 @@ stdenv.mkDerivation rec { --set LD_LIBRARY_PATH ${rpath} ''; - meta = { - maintainers = with lib.maintainers; [ xavierzwirtz ]; + meta = with lib; { + maintainers = with maintainers; [ xavierzwirtz ]; description = "Data management tool that enables working with SQL Server, Azure SQL DB and SQL DW"; homepage = "https://docs.microsoft.com/en-us/sql/azure-data-studio/download-azure-data-studio"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfreeRedistributable; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfreeRedistributable; platforms = [ "x86_64-linux" ]; mainProgram = "azuredatastudio"; }; diff --git a/pkgs/by-name/b4/b43FirmwareCutter/package.nix b/pkgs/by-name/b4/b43FirmwareCutter/package.nix index ada2eabe099072..66dc4ab3f043e2 100644 --- a/pkgs/by-name/b4/b43FirmwareCutter/package.nix +++ b/pkgs/by-name/b4/b43FirmwareCutter/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { "CC=${stdenv.cc.targetPrefix}cc" ]; - meta = { + meta = with lib; { description = "Firmware extractor for cards supported by the b43 kernel module"; mainProgram = "b43-fwcutter"; homepage = "http://wireless.kernel.org/en/users/Drivers/b43"; - license = lib.licenses.bsd2; - platforms = lib.platforms.linux; + license = licenses.bsd2; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ba/babeltrace/package.nix b/pkgs/by-name/ba/babeltrace/package.nix index eb36ac7a07536a..37d517a7e7f59c 100644 --- a/pkgs/by-name/ba/babeltrace/package.nix +++ b/pkgs/by-name/ba/babeltrace/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation (finalAttrs: { allowedVersions = "^1\\."; }; - meta = { + meta = with lib; { description = "Command-line tool and library to read and convert LTTng tracefiles"; homepage = "https://www.efficios.com/babeltrace"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ bjornfor wentasah ]; diff --git a/pkgs/by-name/ba/babeltrace2/package.nix b/pkgs/by-name/ba/babeltrace2/package.nix index ec9f15e679f8d1..14100aa3916f70 100644 --- a/pkgs/by-name/ba/babeltrace2/package.nix +++ b/pkgs/by-name/ba/babeltrace2/package.nix @@ -90,12 +90,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Babeltrace /ˈbæbəltreɪs/ is an open-source trace manipulation toolkit"; homepage = "https://babeltrace.org"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ wentasah ]; + license = licenses.mit; + maintainers = with maintainers; [ wentasah ]; mainProgram = "babeltrace2"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ba/baidupcs-go/package.nix b/pkgs/by-name/ba/baidupcs-go/package.nix index fbd1861e7c50b3..3d7c48cda48a22 100644 --- a/pkgs/by-name/ba/baidupcs-go/package.nix +++ b/pkgs/by-name/ba/baidupcs-go/package.nix @@ -35,11 +35,11 @@ buildGo122Module rec { rm -f $out/bin/pcs_config.json ''; - meta = { + meta = with lib; { mainProgram = "BaiduPCS-Go"; - maintainers = with lib.maintainers; [ xddxdd ]; + maintainers = with maintainers; [ xddxdd ]; description = "Baidu Netdisk commandline client, mimicking Linux shell file handling commands"; homepage = "https://github.com/qjfoidnh/BaiduPCS-Go"; - license = lib.licenses.asl20; + license = licenses.asl20; }; } diff --git a/pkgs/by-name/ba/banana-vera/package.nix b/pkgs/by-name/ba/banana-vera/package.nix index cfaa1713635ea9..44deaabe47febb 100644 --- a/pkgs/by-name/ba/banana-vera/package.nix +++ b/pkgs/by-name/ba/banana-vera/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation (finalAttrs: { "-DPANDOC=OFF" ]; - meta = { + meta = with lib; { mainProgram = "vera++"; description = "Fork of vera using python3.10"; homepage = "https://github.com/Epitech/banana-vera"; - license = lib.licenses.boost; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = licenses.boost; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.linux ++ platforms.darwin; }; }) diff --git a/pkgs/by-name/ba/bant/package.nix b/pkgs/by-name/ba/bant/package.nix index 4203ae75d5a538..cb631989c20bfe 100644 --- a/pkgs/by-name/ba/bant/package.nix +++ b/pkgs/by-name/ba/bant/package.nix @@ -63,14 +63,14 @@ buildBazelPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Bazel/Build Analysis and Navigation Tool"; homepage = "http://bant.build/"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Only; + maintainers = with maintainers; [ hzeller lromor ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ba/bao/package.nix b/pkgs/by-name/ba/bao/package.nix index 8e16ed6b720d2c..c491e12eb00893 100644 --- a/pkgs/by-name/ba/bao/package.nix +++ b/pkgs/by-name/ba/bao/package.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-mmhTG3WXVjIKtaz2xP9aYI9GQNTbx4l3c6UgKSMgQJU="; - meta = { + meta = with lib; { description = "Implementation of BLAKE3 verified streaming"; homepage = "https://github.com/oconnor663/bao"; - maintainers = with lib.maintainers; [ amarshall ]; - license = with lib.licenses; [ + maintainers = with maintainers; [ amarshall ]; + license = with licenses; [ cc0 asl20 ]; diff --git a/pkgs/by-name/ba/bar/package.nix b/pkgs/by-name/ba/bar/package.nix index 938dde819cfdab..3246261d3177e9 100644 --- a/pkgs/by-name/ba/bar/package.nix +++ b/pkgs/by-name/ba/bar/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation rec { sha256 = "00v5cb6vzizyyhflgr62d3k8dqc0rg6wdgfyyk11c0s0r32mw3zs"; }; - meta = { + meta = with lib; { description = "Console progress bar"; homepage = "https://clpbar.sourceforge.net/"; - license = lib.licenses.gpl2Only; - maintainers = [ lib.maintainers.rdnetto ]; - platforms = lib.platforms.all; + license = licenses.gpl2Only; + maintainers = [ maintainers.rdnetto ]; + platforms = platforms.all; mainProgram = "bar"; }; } diff --git a/pkgs/by-name/ba/baresip/package.nix b/pkgs/by-name/ba/baresip/package.nix index b0d677f0310dd3..a80782baffd253 100644 --- a/pkgs/by-name/ba/baresip/package.nix +++ b/pkgs/by-name/ba/baresip/package.nix @@ -172,15 +172,15 @@ stdenv.mkDerivation rec { "x11" ]; - meta = { + meta = with lib; { description = "Modular SIP User-Agent with audio and video support"; homepage = "https://github.com/baresip/baresip"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ raskin ehmry ]; mainProgram = "baresip"; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; + license = licenses.bsd3; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ba/basalt-monado/package.nix b/pkgs/by-name/ba/basalt-monado/package.nix index cc031c9aa7b526..806722a85463a6 100644 --- a/pkgs/by-name/ba/basalt-monado/package.nix +++ b/pkgs/by-name/ba/basalt-monado/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "A fork of Basalt improved for tracking XR devices with Monado"; homepage = "https://gitlab.freedesktop.org/mateosss/basalt"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "basalt_vio"; - maintainers = [ lib.maintainers.locochoco ]; - platforms = lib.platforms.linux; + maintainers = [ maintainers.locochoco ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ba/base16-shell-preview/package.nix b/pkgs/by-name/ba/base16-shell-preview/package.nix index c6436a42e00be5..00dd161529974a 100644 --- a/pkgs/by-name/ba/base16-shell-preview/package.nix +++ b/pkgs/by-name/ba/base16-shell-preview/package.nix @@ -21,11 +21,11 @@ python3Packages.buildPythonApplication { # at "/homeless-shelter" as HOME doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/nvllsvm/base16-shell-preview"; description = "Browse and preview Base16 Shell themes in your terminal"; mainProgram = "base16-shell-preview"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = licenses.mit; + maintainers = with maintainers; [ AndersonTorres ]; }; } diff --git a/pkgs/by-name/ba/bash-env-json/package.nix b/pkgs/by-name/ba/bash-env-json/package.nix index ae889291e87651..25f7ab3ebff37e 100644 --- a/pkgs/by-name/ba/bash-env-json/package.nix +++ b/pkgs/by-name/ba/bash-env-json/package.nix @@ -38,12 +38,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Export Bash environment as JSON for import into modern shells like Elvish and Nushell"; homepage = "https://github.com/tesujimath/bash-env-json"; mainProgram = "bash-env-json"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ jaredmontoya ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ jaredmontoya ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ba/bashdb/package.nix b/pkgs/by-name/ba/bashdb/package.nix index 5ec0a5999c3fa4..be9621e2b6339f 100644 --- a/pkgs/by-name/ba/bashdb/package.nix +++ b/pkgs/by-name/ba/bashdb/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/bashdb --prefix PYTHONPATH ":" "$(toPythonPath ${python3Packages.pygments})" ''; - meta = { + meta = with lib; { description = "Bash script debugger"; mainProgram = "bashdb"; homepage = "https://bashdb.sourceforge.net/"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; + license = licenses.gpl2; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ba/bashly/package.nix b/pkgs/by-name/ba/bashly/package.nix index 8611d593893546..b4fef031680e65 100644 --- a/pkgs/by-name/ba/bashly/package.nix +++ b/pkgs/by-name/ba/bashly/package.nix @@ -12,12 +12,12 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "bashly"; - meta = { + meta = with lib; { description = "Bash command line framework and CLI generator"; homepage = "https://github.com/DannyBen/bashly"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "bashly"; - maintainers = with lib.maintainers; [ drupol ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ drupol ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ba/bashrun2/package.nix b/pkgs/by-name/ba/bashrun2/package.nix index 057d1e3894a450..652dc54553b718 100644 --- a/pkgs/by-name/ba/bashrun2/package.nix +++ b/pkgs/by-name/ba/bashrun2/package.nix @@ -80,11 +80,11 @@ stdenv.mkDerivation rec { --prefix XDG_CONFIG_DIRS : "$out/etc/xdg" ''; - meta = { - maintainers = with lib.maintainers; [ dopplerian ]; + meta = with lib; { + maintainers = with maintainers; [ dopplerian ]; mainProgram = "bashrun2"; homepage = "http://henning-liebenau.de/bashrun2/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; description = "Application launcher based on a modified bash session in a small terminal window"; }; } diff --git a/pkgs/by-name/ba/basu/package.nix b/pkgs/by-name/ba/basu/package.nix index b98b7cbd16e101..ff241221af50d1 100644 --- a/pkgs/by-name/ba/basu/package.nix +++ b/pkgs/by-name/ba/basu/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation (finalAttrs: { popd ''; - meta = { + meta = with lib; { homepage = "https://sr.ht/~emersion/basu"; description = "Sd-bus library, extracted from systemd"; mainProgram = "basuctl"; - license = lib.licenses.lgpl21Only; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.linux; + license = licenses.lgpl21Only; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/bc/bcachefs-tools/package.nix b/pkgs/by-name/bc/bcachefs-tools/package.nix index 680933ef9ec4a3..2229a5cf28a76b 100644 --- a/pkgs/by-name/bc/bcachefs-tools/package.nix +++ b/pkgs/by-name/bc/bcachefs-tools/package.nix @@ -124,15 +124,15 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Tool for managing bcachefs filesystems"; homepage = "https://bcachefs.org/"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Only; + maintainers = with maintainers; [ davidak Madouura ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "bcachefs"; }; }) diff --git a/pkgs/by-name/be/beanprice/package.nix b/pkgs/by-name/be/beanprice/package.nix index 0b7ba5c1e0893a..444128ce9e4068 100644 --- a/pkgs/by-name/be/beanprice/package.nix +++ b/pkgs/by-name/be/beanprice/package.nix @@ -33,15 +33,15 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "beancount" ]; - meta = { + meta = with lib; { homepage = "https://github.com/beancount/beanprice"; description = "Price quotes fetcher for Beancount"; longDescription = '' A script to fetch market data prices from various sources on the internet and render them for plain text accounting price syntax (and Beancount). ''; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ alapshin ]; + license = licenses.gpl2Only; + maintainers = with maintainers; [ alapshin ]; mainProgram = "bean-price"; }; } diff --git a/pkgs/by-name/be/bear/package.nix b/pkgs/by-name/be/bear/package.nix index d12fa91e31fe4d..a474748d3c819c 100644 --- a/pkgs/by-name/be/bear/package.nix +++ b/pkgs/by-name/be/bear/package.nix @@ -110,7 +110,7 @@ stdenv.mkDerivation (finalAttrs: { # Functional tests use loopback networking. __darwinAllowLocalNetworking = true; - meta = { + meta = with lib; { description = "Tool that generates a compilation database for clang tooling"; mainProgram = "bear"; longDescription = '' @@ -119,8 +119,8 @@ stdenv.mkDerivation (finalAttrs: { and run `bear make`. It's not perfect, but it gets a long way. ''; homepage = "https://github.com/rizsotto/Bear"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ DieracDelta ]; + license = licenses.gpl3Plus; + platforms = platforms.unix; + maintainers = with maintainers; [ DieracDelta ]; }; }) diff --git a/pkgs/by-name/be/beecrypt/package.nix b/pkgs/by-name/be/beecrypt/package.nix index f38ead8ebbf04b..4e967dda0ba4e5 100644 --- a/pkgs/by-name/be/beecrypt/package.nix +++ b/pkgs/by-name/be/beecrypt/package.nix @@ -19,8 +19,8 @@ stdenv.mkDerivation rec { "--enable-static" ]; - meta = { - platforms = lib.platforms.linux; - license = lib.licenses.lgpl2; + meta = with lib; { + platforms = platforms.linux; + license = licenses.lgpl2; }; } diff --git a/pkgs/by-name/be/beedii/package.nix b/pkgs/by-name/be/beedii/package.nix index 3a21a13296aa0f..da9eabc709f5c3 100644 --- a/pkgs/by-name/be/beedii/package.nix +++ b/pkgs/by-name/be/beedii/package.nix @@ -25,12 +25,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Free Hand Drawn Emoji Font"; homepage = "https://github.com/webkul/beedii"; - license = lib.licenses.cc0; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + license = licenses.cc0; + platforms = platforms.all; + maintainers = with maintainers; [ kachick ]; }; diff --git a/pkgs/by-name/be/bencodetools/package.nix b/pkgs/by-name/be/bencodetools/package.nix index cf46f7dd734ed1..f3cc0126f28af9 100644 --- a/pkgs/by-name/be/bencodetools/package.nix +++ b/pkgs/by-name/be/bencodetools/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { rev-prefix = "v"; }; }; - meta = { + meta = with lib; { description = "Collection of tools for manipulating bencoded data"; homepage = "https://gitlab.com/heikkiorsila/bencodetools"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ OPNA2608 ]; + license = licenses.bsd2; + maintainers = with maintainers; [ OPNA2608 ]; mainProgram = "bencat"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/be/bend/package.nix b/pkgs/by-name/be/bend/package.nix index c1e6470dfdcc8c..a1dc8fa7dc757b 100644 --- a/pkgs/by-name/be/bend/package.nix +++ b/pkgs/by-name/be/bend/package.nix @@ -29,12 +29,12 @@ rustPlatform.buildRustPackage rec { --prefix PATH : ${lib.makeBinPath [ hvm ]} ''; - meta = { + meta = with lib; { description = "Bend is a massively parallel, high-level programming language"; homepage = "https://higherorderco.com/"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "bend"; - maintainers = with lib.maintainers; [ k3yss ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ k3yss ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/be/benzene/package.nix b/pkgs/by-name/be/benzene/package.nix index cb60bc009a4c2a..f96f35b4f4bbc7 100644 --- a/pkgs/by-name/be/benzene/package.nix +++ b/pkgs/by-name/be/benzene/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Software for playing and solving the game of Hex"; homepage = "https://github.com/cgao3/benzene-vanilla-cmake"; - license = lib.licenses.lgpl3; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ eilvelia ]; + license = licenses.lgpl3; + platforms = platforms.unix; + maintainers = with maintainers; [ eilvelia ]; }; } diff --git a/pkgs/by-name/be/beon/package.nix b/pkgs/by-name/be/beon/package.nix index 068ae8da78a9f4..a75f1652e26035 100644 --- a/pkgs/by-name/be/beon/package.nix +++ b/pkgs/by-name/be/beon/package.nix @@ -33,12 +33,12 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Neon stencil typeface"; homepage = "https://noirblancrouge.com/fonts/beon-display"; changelog = "https://github.com/noirblancrouge/Beon#changelog"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ raboof ]; - platforms = lib.platforms.all; + license = licenses.ofl; + maintainers = with maintainers; [ raboof ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/be/betterdiscordctl/package.nix b/pkgs/by-name/be/betterdiscordctl/package.nix index 9c9f9d7a545f8d..65a0fa649779ef 100644 --- a/pkgs/by-name/be/betterdiscordctl/package.nix +++ b/pkgs/by-name/be/betterdiscordctl/package.nix @@ -39,12 +39,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstallCheck ''; - meta = { + meta = with lib; { homepage = "https://github.com/bb010g/betterdiscordctl"; description = "Utility for managing BetterDiscord on Linux"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "betterdiscordctl"; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/be/bevelbar/package.nix b/pkgs/by-name/be/bevelbar/package.nix index 077f60b60a1890..ef5899a2cd1ca8 100644 --- a/pkgs/by-name/be/bevelbar/package.nix +++ b/pkgs/by-name/be/bevelbar/package.nix @@ -33,14 +33,14 @@ stdenv.mkDerivation (finalAttrs: { rev-prefix = "v"; }; - meta = { + meta = with lib; { homepage = "https://www.uninformativ.de/git/bevelbar/file/README.html"; description = "X11 status bar with beveled borders"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ AndersonTorres neeasade ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/bg/bgpdump/package.nix b/pkgs/by-name/bg/bgpdump/package.nix index 93b5528f16ae4f..315f0a7b89163f 100644 --- a/pkgs/by-name/bg/bgpdump/package.nix +++ b/pkgs/by-name/bg/bgpdump/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { bzip2 ]; - meta = { + meta = with lib; { homepage = "https://github.com/RIPE-NCC/bgpdump"; description = "Analyze dump files produced by Zebra/Quagga or MRT"; - license = lib.licenses.hpnd; - maintainers = with lib.maintainers; [ lewo ]; - platforms = with lib.platforms; linux; + license = licenses.hpnd; + maintainers = with maintainers; [ lewo ]; + platforms = with platforms; linux; mainProgram = "bgpdump"; }; } diff --git a/pkgs/by-name/bi/bibata-cursors/package.nix b/pkgs/by-name/bi/bibata-cursors/package.nix index 0c0253b4ae8e41..356fb13a5eabd2 100644 --- a/pkgs/by-name/bi/bibata-cursors/package.nix +++ b/pkgs/by-name/bi/bibata-cursors/package.nix @@ -57,12 +57,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Material Based Cursor Theme"; homepage = "https://github.com/ful1e5/Bibata_Cursor"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + platforms = platforms.linux; + maintainers = with maintainers; [ rawkode AdsonCicilioti ]; diff --git a/pkgs/by-name/bi/bibletime/package.nix b/pkgs/by-name/bi/bibletime/package.nix index 2c95eb11b25ba6..e95a167eb42d79 100644 --- a/pkgs/by-name/bi/bibletime/package.nix +++ b/pkgs/by-name/bi/bibletime/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { homepage = "http://www.bibletime.info/"; description = "Powerful cross platform Bible study tool"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "bibletime"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/bi/biblioteca/package.nix b/pkgs/by-name/bi/biblioteca/package.nix index 8e04e854367b4a..26a13a1e2cf7b2 100644 --- a/pkgs/by-name/bi/biblioteca/package.nix +++ b/pkgs/by-name/bi/biblioteca/package.nix @@ -98,11 +98,11 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { homepage = "https://apps.gnome.org/Biblioteca/"; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ bot-wxt1221 ] ++ lib.teams.gnome-circle.members; - license = lib.licenses.gpl3Only; + platforms = platforms.linux; + maintainers = with maintainers; [ bot-wxt1221 ] ++ teams.gnome-circle.members; + license = licenses.gpl3Only; description = "Documentation viewer for GNOME"; mainProgram = "biblioteca"; }; diff --git a/pkgs/by-name/bi/bicon/package.nix b/pkgs/by-name/bi/bicon/package.nix index 62a0a8db3b6eed..fe407e3cade611 100644 --- a/pkgs/by-name/bi/bicon/package.nix +++ b/pkgs/by-name/bi/bicon/package.nix @@ -36,15 +36,15 @@ stdenv.mkDerivation (finalAttrs: { patchShebangs . ''; - meta = { + meta = with lib; { description = "Bidirectional console"; homepage = "https://github.com/behdad/bicon"; - license = with lib.licenses; [ + license = with licenses; [ lgpl21 psfl bsd0 ]; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/bi/bilibili/package.nix b/pkgs/by-name/bi/bilibili/package.nix index c9cea1640a1e72..e12c268d15ae27 100644 --- a/pkgs/by-name/bi/bilibili/package.nix +++ b/pkgs/by-name/bi/bilibili/package.nix @@ -49,14 +49,14 @@ stdenv.mkDerivation { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { description = "Electron-based bilibili desktop client"; homepage = "https://github.com/msojocs/bilibili-linux"; - license = with lib.licenses; [ + license = with licenses; [ unfree mit ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ jedsek kashw2 bot-wxt1221 @@ -65,7 +65,7 @@ stdenv.mkDerivation { "x86_64-linux" "aarch64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; mainProgram = "bilibili"; }; } diff --git a/pkgs/by-name/bi/bip/package.nix b/pkgs/by-name/bi/bip/package.nix index 1d4655cc83ab38..0a02e146eb557e 100644 --- a/pkgs/by-name/bi/bip/package.nix +++ b/pkgs/by-name/bi/bip/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "IRC proxy (bouncer)"; homepage = "http://bip.milkypond.org/"; - license = lib.licenses.gpl2; + license = licenses.gpl2; downloadPage = "https://projects.duckcorp.org/projects/bip/files"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/bi/birdwatcher/package.nix b/pkgs/by-name/bi/birdwatcher/package.nix index 21b1212c421602..a6177fdbefc75d 100644 --- a/pkgs/by-name/bi/birdwatcher/package.nix +++ b/pkgs/by-name/bi/birdwatcher/package.nix @@ -29,12 +29,12 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { homepage = "https://github.com/alice-lg/birdwatcher"; description = "Small HTTP server meant to provide an API defined by Barry O'Donovan's birds-eye to the BIRD internet routing daemon"; changelog = "https://github.com/alice-lg/birdwatcher/blob/master/CHANGELOG"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ stv0g ]; + license = licenses.bsd3; + maintainers = with maintainers; [ stv0g ]; mainProgram = "birdwatcher"; }; } diff --git a/pkgs/by-name/bi/bitbucket-cli/package.nix b/pkgs/by-name/bi/bitbucket-cli/package.nix index f5927ec44de54e..54a28150591dda 100644 --- a/pkgs/by-name/bi/bitbucket-cli/package.nix +++ b/pkgs/by-name/bi/bitbucket-cli/package.nix @@ -19,12 +19,12 @@ buildGoModule rec { # Tests seem to be using Swisscom's live servers. doCheck = false; - meta = { + meta = with lib; { description = "Bitbucket Enterprise CLI"; homepage = "https://github.com/swisscom/bitbucket-cli"; mainProgram = "bitbucket-cli"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ attila ]; - platforms = with lib.platforms; linux ++ darwin; + license = licenses.mit; + maintainers = with maintainers; [ attila ]; + platforms = with platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/bi/bitcomet/package.nix b/pkgs/by-name/bi/bitcomet/package.nix index 6b09f16ba3b42c..8d8f3e8d2ce047 100644 --- a/pkgs/by-name/bi/bitcomet/package.nix +++ b/pkgs/by-name/bi/bitcomet/package.nix @@ -31,13 +31,13 @@ appimageTools.wrapType2 { cp -r ${appimageContents}/usr/share/icons $out/share ''; - meta = { + meta = with lib; { homepage = "https://www.bitcomet.com"; description = "Free BitTorrent download client"; mainProgram = "bitcomet"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ aucub ]; + maintainers = with maintainers; [ aucub ]; }; } diff --git a/pkgs/by-name/bi/bitmagnet/package.nix b/pkgs/by-name/bi/bitmagnet/package.nix index 6cee45afd8e0c4..9706689f36af29 100644 --- a/pkgs/by-name/bi/bitmagnet/package.nix +++ b/pkgs/by-name/bi/bitmagnet/package.nix @@ -28,14 +28,14 @@ buildGo122Module rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Self-hosted BitTorrent indexer, DHT crawler, and torrent search engine"; longDescription = '' A self-hosted BitTorrent indexer, DHT crawler, content classifier and torrent search engine with web UI, GraphQL API and Servarr stack integration. ''; homepage = "https://bitmagnet.io/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ viraptor ]; + license = licenses.mit; + maintainers = with maintainers; [ viraptor ]; mainProgram = "bitmagnet"; }; } diff --git a/pkgs/by-name/bi/bitrise/package.nix b/pkgs/by-name/bi/bitrise/package.nix index 9d323e69c059a6..22a6c6948849ff 100644 --- a/pkgs/by-name/bi/bitrise/package.nix +++ b/pkgs/by-name/bi/bitrise/package.nix @@ -27,13 +27,13 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { changelog = "https://github.com/bitrise-io/bitrise/releases"; description = "CLI for running your Workflows from Bitrise on your local machine"; homepage = "https://bitrise.io/cli"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; + license = licenses.mit; + platforms = platforms.unix; mainProgram = "bitrise"; - maintainers = with lib.maintainers; [ ofalvai ]; + maintainers = with maintainers; [ ofalvai ]; }; } diff --git a/pkgs/by-name/bi/bitwuzla/package.nix b/pkgs/by-name/bi/bitwuzla/package.nix index 4c3a3b718727aa..2e5513be223c82 100644 --- a/pkgs/by-name/bi/bitwuzla/package.nix +++ b/pkgs/by-name/bi/bitwuzla/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation (finalAttrs: { # two tests fail on darwin doCheck = stdenv.hostPlatform.isLinux; - meta = { + meta = with lib; { description = "SMT solver for fixed-size bit-vectors, floating-point arithmetic, arrays, and uninterpreted functions"; mainProgram = "bitwuzla"; homepage = "https://bitwuzla.github.io"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ symphorien ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ symphorien ]; }; }) diff --git a/pkgs/by-name/bk/bkt/package.nix b/pkgs/by-name/bk/bkt/package.nix index e9a27eebb2d112..1cd126f93388bd 100644 --- a/pkgs/by-name/bk/bkt/package.nix +++ b/pkgs/by-name/bk/bkt/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Pl+a+ZpxaguRloH8R7x4FmYpTwTUwFrYy7AS/5K3L+8="; - meta = { + meta = with lib; { description = "Subprocess caching utility"; homepage = "https://github.com/dimo414/bkt"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.mangoiv ]; + license = licenses.mit; + maintainers = [ maintainers.mangoiv ]; mainProgram = "bkt"; }; } diff --git a/pkgs/by-name/bl/blackbird/package.nix b/pkgs/by-name/bl/blackbird/package.nix index 56c3d1a104489f..4a20ffcdbf028d 100644 --- a/pkgs/by-name/bl/blackbird/package.nix +++ b/pkgs/by-name/bl/blackbird/package.nix @@ -21,14 +21,14 @@ stdenv.mkDerivation rec { propagatedUserEnvPkgs = [ gtk-engine-murrine ]; - meta = { + meta = with lib; { description = "Dark Desktop Suite for Gtk, Xfce and Metacity"; homepage = "https://github.com/shimmerproject/Blackbird"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus cc-by-nc-sa-30 ]; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.romildo ]; + platforms = platforms.linux; + maintainers = [ maintainers.romildo ]; }; } diff --git a/pkgs/by-name/bl/blanket/package.nix b/pkgs/by-name/bl/blanket/package.nix index 631bc506292164..b5497e614d762b 100644 --- a/pkgs/by-name/bl/blanket/package.nix +++ b/pkgs/by-name/bl/blanket/package.nix @@ -67,17 +67,17 @@ python3Packages.buildPythonApplication rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Listen to different sounds"; homepage = "https://github.com/rafaelmardojai/blanket"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "blanket"; maintainers = - with lib.maintainers; + with maintainers; [ onny ] - ++ lib.teams.gnome-circle.members; - platforms = lib.platforms.linux; + ++ teams.gnome-circle.members; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/bl/blastem/package.nix b/pkgs/by-name/bl/blastem/package.nix index 2bdd9ed5f47729..2407231a39c516 100644 --- a/pkgs/by-name/bl/blastem/package.nix +++ b/pkgs/by-name/bl/blastem/package.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation (finalAttrs: { version = "0.6.3-pre"; # remove line when moving to a stable version }; - meta = { + meta = with lib; { description = "The fast and accurate Genesis emulator"; homepage = "https://www.retrodev.com/blastem/"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "blastem"; - maintainers = with lib.maintainers; [ tomasajt ]; + maintainers = with maintainers; [ tomasajt ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/bl/bleep/package.nix b/pkgs/by-name/bl/bleep/package.nix index efd42495e3f266..b623b73aab4ec6 100644 --- a/pkgs/by-name/bl/bleep/package.nix +++ b/pkgs/by-name/bl/bleep/package.nix @@ -65,10 +65,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { command = "bleep --help | sed -n '/Bleeping/s/[^0-9.]//gp'"; }; - meta = { + meta = with lib; { homepage = "https://bleep.build/"; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; - license = lib.licenses.mit; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; + license = licenses.mit; description = "Bleeping fast scala build tool"; mainProgram = "bleep"; platforms = [ @@ -76,6 +76,6 @@ stdenvNoCC.mkDerivation (finalAttrs: { "x86_64-darwin" "aarch64-darwin" ]; - maintainers = with lib.maintainers; [ kristianan ]; + maintainers = with maintainers; [ kristianan ]; }; }) diff --git a/pkgs/by-name/bl/blend2d/package.nix b/pkgs/by-name/bl/blend2d/package.nix index dd5867950e9ca7..d5bde7b7c7d389 100644 --- a/pkgs/by-name/bl/blend2d/package.nix +++ b/pkgs/by-name/bl/blend2d/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation { cmakeFlags = [ (lib.cmakeFeature "ASMJIT_DIR" (toString asmjit.src)) ]; - meta = { + meta = with lib; { description = "2D Vector Graphics Engine Powered by a JIT Compiler"; homepage = "https://blend2d.com"; - license = lib.licenses.zlib; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.all; + license = licenses.zlib; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/bl/blivet-gui/package.nix b/pkgs/by-name/bl/blivet-gui/package.nix index 69b5c03a9521bf..10bee03aeadcbe 100644 --- a/pkgs/by-name/bl/blivet-gui/package.nix +++ b/pkgs/by-name/bl/blivet-gui/package.nix @@ -62,12 +62,12 @@ python3.pkgs.buildPythonApplication rec { passthru.tests.version = testers.testVersion { package = blivet-gui; }; - meta = { + meta = with lib; { description = "GUI tool for storage configuration using blivet library"; homepage = "https://fedoraproject.org/wiki/Blivet"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "blivet-gui"; - maintainers = with lib.maintainers; [ cybershadow ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ cybershadow ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/bl/bloaty/package.nix b/pkgs/by-name/bl/bloaty/package.nix index fab4550cbdb00e..54c5418095dea7 100644 --- a/pkgs/by-name/bl/bloaty/package.nix +++ b/pkgs/by-name/bl/bloaty/package.nix @@ -80,12 +80,12 @@ stdenv.mkDerivation { install -Dm755 {.,$out/bin}/bloaty ''; - meta = { + meta = with lib; { description = "Size profiler for binaries"; mainProgram = "bloaty"; homepage = "https://github.com/google/bloaty"; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ momeemt ]; + license = licenses.asl20; + platforms = platforms.unix; + maintainers = with maintainers; [ momeemt ]; }; } diff --git a/pkgs/by-name/bl/bloomeetunes/package.nix b/pkgs/by-name/bl/bloomeetunes/package.nix index 6265ac86e74426..cd09853ab554d6 100644 --- a/pkgs/by-name/bl/bloomeetunes/package.nix +++ b/pkgs/by-name/bl/bloomeetunes/package.nix @@ -51,12 +51,12 @@ flutter324.buildFlutterApplication rec { }" ''; - meta = { + meta = with lib; { description = "Cross-platform music app designed to bring you ad-free tunes from various sources"; homepage = "https://github.com/HemantKArya/BloomeeTunes"; mainProgram = "bloomee"; - license = with lib.licenses; [ gpl2Plus ]; - maintainers = with lib.maintainers; [ aucub ]; - platforms = lib.platforms.linux; + license = with licenses; [ gpl2Plus ]; + maintainers = with maintainers; [ aucub ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/bl/bluej/package.nix b/pkgs/by-name/bl/bluej/package.nix index 52e46d1f30fdb4..1f9e3acc0214ee 100644 --- a/pkgs/by-name/bl/bluej/package.nix +++ b/pkgs/by-name/bl/bluej/package.nix @@ -55,14 +55,14 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Simple integrated development environment for Java"; homepage = "https://www.bluej.org/"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.gpl2ClasspathPlus; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.gpl2ClasspathPlus; mainProgram = "bluej"; - maintainers = with lib.maintainers; [ chvp ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ chvp ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/bl/bluesnarfer/package.nix b/pkgs/by-name/bl/bluesnarfer/package.nix index ba3234e6151103..0182de93a92114 100644 --- a/pkgs/by-name/bl/bluesnarfer/package.nix +++ b/pkgs/by-name/bl/bluesnarfer/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Bluetooth bluesnarfing utility"; homepage = "http://www.alighieri.org/project.html"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ fgaz ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ fgaz ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/bl/bluespec/package.nix b/pkgs/by-name/bl/bluespec/package.nix index 3c9f871db9de65..a3efb98d921808 100644 --- a/pkgs/by-name/bl/bluespec/package.nix +++ b/pkgs/by-name/bl/bluespec/package.nix @@ -138,15 +138,15 @@ stdenv.mkDerivation rec { mv inst/doc/*.pdf $doc/share/doc/bsc ''; - meta = { + meta = with lib; { description = "Toolchain for the Bluespec Hardware Definition Language"; homepage = "https://github.com/B-Lang-org/bsc"; - license = lib.licenses.bsd3; + license = licenses.bsd3; platforms = [ "x86_64-linux" ]; mainProgram = "bsc"; # darwin fails at https://github.com/B-Lang-org/bsc/pull/35#issuecomment-583731562 # aarch64 fails, as GHC fails with "ghc: could not execute: opt" - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ jcumming thoughtpolice ]; diff --git a/pkgs/by-name/bl/bluetui/package.nix b/pkgs/by-name/bl/bluetui/package.nix index f81641355086d0..baa7b2baad428c 100644 --- a/pkgs/by-name/bl/bluetui/package.nix +++ b/pkgs/by-name/bl/bluetui/package.nix @@ -27,12 +27,12 @@ rustPlatform.buildRustPackage rec { dbus ]; - meta = { + meta = with lib; { description = "TUI for managing bluetooth on Linux"; homepage = "https://github.com/pythops/bluetui"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ donovanglover ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ donovanglover ]; mainProgram = "bluetui"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/bl/blueutil/package.nix b/pkgs/by-name/bl/blueutil/package.nix index ac149c1ce74395..695634431e32f5 100644 --- a/pkgs/by-name/bl/blueutil/package.nix +++ b/pkgs/by-name/bl/blueutil/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { changelog = "https://github.com/toy/blueutil/blob/main/CHANGELOG.md"; description = "CLI for bluetooth on OSX"; homepage = "https://github.com/toy/blueutil"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "blueutil"; - maintainers = with lib.maintainers; [ azuwis ]; - platforms = lib.platforms.darwin; + maintainers = with maintainers; [ azuwis ]; + platforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/bl/bluez-tools/package.nix b/pkgs/by-name/bl/bluez-tools/package.nix index 916ad45949b6f2..d469918c1e5554 100644 --- a/pkgs/by-name/bl/bluez-tools/package.nix +++ b/pkgs/by-name/bl/bluez-tools/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/khvzak/bluez-tools"; description = "Set of tools to manage bluetooth devices for linux"; - license = with lib.licenses; [ gpl2Plus ]; + license = with licenses; [ gpl2Plus ]; mainProgram = "bt-agent"; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/bo/bochs/package.nix b/pkgs/by-name/bo/bochs/package.nix index 2bb8d36f3edb94..434aa04956337b 100644 --- a/pkgs/by-name/bo/bochs/package.nix +++ b/pkgs/by-name/bo/bochs/package.nix @@ -148,7 +148,7 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "https://bochs.sourceforge.io/"; description = "Open-source IA-32 (x86) PC emulator"; longDescription = '' @@ -156,9 +156,9 @@ stdenv.mkDerivation (finalAttrs: { in C++, that runs on most popular platforms. It includes emulation of the Intel x86 CPU, common I/O devices, and a custom BIOS. ''; - license = lib.licenses.lgpl2Plus; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + license = licenses.lgpl2Plus; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) # TODO: a better way to organize the options diff --git a/pkgs/by-name/bo/bogofilter/package.nix b/pkgs/by-name/bo/bogofilter/package.nix index e5df341474052b..3003ab4529846f 100644 --- a/pkgs/by-name/bo/bogofilter/package.nix +++ b/pkgs/by-name/bo/bogofilter/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { wrapProgram "$out/bin/bf_tar" --prefix PATH : "${lib.makeBinPath [ pax ]}" ''; - meta = { + meta = with lib; { homepage = "http://bogofilter.sourceforge.net/"; longDescription = '' Bogofilter is a mail filter that classifies mail as spam or ham @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { classifications and corrections. It is based on a Bayesian filter. ''; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/bo/boilr/package.nix b/pkgs/by-name/bo/boilr/package.nix index 22d7c5930dd93c..5e7864573fc1aa 100644 --- a/pkgs/by-name/bo/boilr/package.nix +++ b/pkgs/by-name/bo/boilr/package.nix @@ -61,15 +61,15 @@ rustPlatform.buildRustPackage.override { stdenv = clangStdenv; } rec { dontPatchELF = true; - meta = { + meta = with lib; { description = "Automatically adds (almost) all your games to your Steam library (including image art)"; homepage = "https://github.com/PhilipK/BoilR"; - license = with lib.licenses; [ + license = with licenses; [ asl20 mit ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ foolnotion ]; + platforms = platforms.linux; + maintainers = with maintainers; [ foolnotion ]; mainProgram = "boilr"; }; } diff --git a/pkgs/by-name/bo/bombsquad/package.nix b/pkgs/by-name/bo/bombsquad/package.nix index 054f1b11d49177..4e029bc1b1c8ed 100644 --- a/pkgs/by-name/bo/bombsquad/package.nix +++ b/pkgs/by-name/bo/bombsquad/package.nix @@ -107,19 +107,19 @@ stdenv.mkDerivation (finalAttrs: { }); }; - meta = { + meta = with lib; { description = "Free, multiplayer, arcade-style game for up to eight players that combines elements of fighting games and first-person shooters (FPS)"; homepage = "https://ballistica.net"; changelog = "https://ballistica.net/downloads?display=changelog"; - license = with lib.licenses; [ + license = with licenses; [ mit unfree ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ syedahkam coffeeispower ]; mainProgram = "bombsquad"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/bo/bonk/package.nix b/pkgs/by-name/bo/bonk/package.nix index 7f281db1dd85ac..aa0cbd0d724728 100644 --- a/pkgs/by-name/bo/bonk/package.nix +++ b/pkgs/by-name/bo/bonk/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-/qBuIG5ETUWMv2iOGpW3/awuhZb35qsBAflNJv3xTUs="; - meta = { + meta = with lib; { description = "Blazingly fast touch alternative written in Rust"; homepage = "https://github.com/elliot40404/bonk"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "bonk"; - maintainers = with lib.maintainers; [ dit7ya ]; + maintainers = with maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/bo/bonmin/package.nix b/pkgs/by-name/bo/bonmin/package.nix index 8104e34ad4bdb3..9a6a894305b717 100644 --- a/pkgs/by-name/bo/bonmin/package.nix +++ b/pkgs/by-name/bo/bonmin/package.nix @@ -80,12 +80,12 @@ stdenv.mkDerivation rec { # install documentation postInstall = "make install-doxygen-docs"; - meta = { + meta = with lib; { description = "Open-source code for solving general MINLP (Mixed Integer NonLinear Programming) problems"; mainProgram = "bonmin"; homepage = "https://github.com/coin-or/Bonmin"; - license = lib.licenses.epl10; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ aanderse ]; + license = licenses.epl10; + platforms = platforms.unix; + maintainers = with maintainers; [ aanderse ]; }; } diff --git a/pkgs/by-name/bo/bonnie/package.nix b/pkgs/by-name/bo/bonnie/package.nix index 7d912d103504d4..03ba4ac2311f5b 100644 --- a/pkgs/by-name/bo/bonnie/package.nix +++ b/pkgs/by-name/bo/bonnie/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Hard drive and file system benchmark suite"; homepage = "http://www.coker.com.au/bonnie++/"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; mainProgram = "bonnie++"; - maintainers = with lib.maintainers; [ wegank ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with maintainers; [ wegank ]; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/by-name/bo/boolstuff/package.nix b/pkgs/by-name/bo/boolstuff/package.nix index 1f8495be5519ff..4c801a95effb58 100644 --- a/pkgs/by-name/bo/boolstuff/package.nix +++ b/pkgs/by-name/bo/boolstuff/package.nix @@ -15,12 +15,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; - meta = { + meta = with lib; { description = "Library for operations on boolean expression binary trees"; homepage = "http://perso.b2b2c.ca/~sarrazip/dev/boolstuff.html"; license = "GPL"; - maintainers = [ lib.maintainers.marcweber ]; + maintainers = [ maintainers.marcweber ]; mainProgram = "booldnf"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/bo/bootc/package.nix b/pkgs/by-name/bo/bootc/package.nix index 407864291e4d14..d1f33a66942b32 100644 --- a/pkgs/by-name/bo/bootc/package.nix +++ b/pkgs/by-name/bo/bootc/package.nix @@ -38,12 +38,12 @@ rustPlatform.buildRustPackage rec { versionCheckHook ]; - meta = { + meta = with lib; { description = "Boot and upgrade via container images"; homepage = "https://containers.github.io/bootc"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "bootc"; - maintainers = with lib.maintainers; [ thesola10 ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ thesola10 ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/bo/bootterm/package.nix b/pkgs/by-name/bo/bootterm/package.nix index d5eab948805ec7..13db7c711cd3f8 100644 --- a/pkgs/by-name/bo/bootterm/package.nix +++ b/pkgs/by-name/bo/bootterm/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { description = "Simple, reliable and powerful terminal to ease connection to serial ports"; longDescription = '' BootTerm is a simple, reliable and powerful terminal designed to @@ -33,9 +33,9 @@ stdenv.mkDerivation (finalAttrs: { and typically USB-based ones. ''; homepage = "https://github.com/wtarreau/bootterm"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "bt"; - maintainers = with lib.maintainers; [ deadbaed ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ deadbaed ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/bo/borgmatic/package.nix b/pkgs/by-name/bo/borgmatic/package.nix index 9bfa633e63e550..d683e375387bc6 100644 --- a/pkgs/by-name/bo/borgmatic/package.nix +++ b/pkgs/by-name/bo/borgmatic/package.nix @@ -76,12 +76,12 @@ python3Packages.buildPythonApplication rec { __darwinAllowLocalNetworking = true; - meta = { + meta = with lib; { description = "Simple, configuration-driven backup software for servers and workstations"; homepage = "https://torsion.org/borgmatic/"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + platforms = platforms.all; + maintainers = with maintainers; [ imlonghao x123 ]; diff --git a/pkgs/by-name/bo/bottles-unwrapped/package.nix b/pkgs/by-name/bo/bottles-unwrapped/package.nix index 62b3b2af8ab50a..e42e9bff104c7c 100644 --- a/pkgs/by-name/bo/bottles-unwrapped/package.nix +++ b/pkgs/by-name/bo/bottles-unwrapped/package.nix @@ -123,17 +123,17 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Easy-to-use wineprefix manager"; homepage = "https://usebottles.com/"; downloadPage = "https://github.com/bottlesdevs/Bottles/releases"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + maintainers = with maintainers; [ psydvl shamilton Gliczy ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "bottles"; }; } diff --git a/pkgs/by-name/bp/bpftop/package.nix b/pkgs/by-name/bp/bpftop/package.nix index a7247807990499..8d8a90bac9c2b7 100644 --- a/pkgs/by-name/bp/bpftop/package.nix +++ b/pkgs/by-name/bp/bpftop/package.nix @@ -35,11 +35,11 @@ rustPlatform.buildRustPackage.override { stdenv = clangStdenv; } { "zerocallusedregs" ]; - meta = { + meta = with lib; { description = "Dynamic real-time view of running eBPF programs"; homepage = "https://github.com/Netflix/bpftop"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ _0x4A6F luftmensch-luftmensch mfrw diff --git a/pkgs/by-name/bq/bqn386/package.nix b/pkgs/by-name/bq/bqn386/package.nix index a6a434ffd94c9a..4a0204e2407414 100644 --- a/pkgs/by-name/bq/bqn386/package.nix +++ b/pkgs/by-name/bq/bqn386/package.nix @@ -29,11 +29,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "APL and BQN font extending on APL386"; homepage = "https://dzaima.github.io/BQN386/"; - license = lib.licenses.unlicense; - maintainers = with lib.maintainers; [ skykanin ]; - platforms = lib.platforms.all; + license = licenses.unlicense; + maintainers = with maintainers; [ skykanin ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/br/brainflow/package.nix b/pkgs/by-name/br/brainflow/package.nix index 445283cc05a986..630d310d00f080 100644 --- a/pkgs/by-name/br/brainflow/package.nix +++ b/pkgs/by-name/br/brainflow/package.nix @@ -54,14 +54,14 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "A library to obtain, parse and analyze data (EEG, EMG, ECG) from biosensors"; homepage = "https://brainflow.org/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ pandapip1 ziguana ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/br/brgenml1cupswrapper/package.nix b/pkgs/by-name/br/brgenml1cupswrapper/package.nix index 5dcf1e7600718e..7e05dce0ea6b82 100644 --- a/pkgs/by-name/br/brgenml1cupswrapper/package.nix +++ b/pkgs/by-name/br/brgenml1cupswrapper/package.nix @@ -132,11 +132,11 @@ stdenv.mkDerivation rec { dontPatchELF = true; dontStrip = true; - meta = { + meta = with lib; { description = "Brother BrGenML1 CUPS wrapper driver"; homepage = "http://www.brother.com"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ jraygauthier ]; + platforms = platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ jraygauthier ]; }; } diff --git a/pkgs/by-name/br/brickd/package.nix b/pkgs/by-name/br/brickd/package.nix index 95eafd3d7a97ea..c8bf2fb8b7c78a 100644 --- a/pkgs/by-name/br/brickd/package.nix +++ b/pkgs/by-name/br/brickd/package.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation { cp brickd $out/bin/brickd ''; - meta = { + meta = with lib; { homepage = "https://www.tinkerforge.com/"; description = "Daemon (or service on Windows) that acts as a bridge between the Bricks/Bricklets and the API bindings for the different programming languages"; - maintainers = [ lib.maintainers.qknight ]; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.all; + maintainers = [ maintainers.qknight ]; + license = licenses.gpl2Plus; + platforms = platforms.all; mainProgram = "brickd"; }; } diff --git a/pkgs/by-name/br/brickstore/package.nix b/pkgs/by-name/br/brickstore/package.nix index 0f53cf2c790ea3..ec00327c2b5051 100644 --- a/pkgs/by-name/br/brickstore/package.nix +++ b/pkgs/by-name/br/brickstore/package.nix @@ -75,18 +75,18 @@ stdenv.mkDerivation (finalAttrs: { '' ]; - meta = { + meta = with lib; { changelog = "https://github.com/rgriebl/brickstore/blob/main/CHANGELOG.md"; description = "BrickLink offline management tool"; homepage = "https://www.brickstore.dev/"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; longDescription = '' BrickStore is a BrickLink offline management tool. It is multi-platform (Windows, macOS and Linux as well as iOS and Android), multilingual (currently English, German, Spanish, Swedish and French), fast and stable. ''; - maintainers = with lib.maintainers; [ legojames ]; + maintainers = with maintainers; [ legojames ]; mainProgram = "brickstore"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/br/bridge-utils/package.nix b/pkgs/by-name/br/bridge-utils/package.nix index 1a2acae1f3f6fc..9b10b680fe1e52 100644 --- a/pkgs/by-name/br/bridge-utils/package.nix +++ b/pkgs/by-name/br/bridge-utils/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = { + meta = with lib; { description = "Userspace tool to configure linux bridges (deprecated in favour or iproute2)"; mainProgram = "brctl"; homepage = "https://wiki.linuxfoundation.org/networking/bridge"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/br/briss/package.nix b/pkgs/by-name/br/briss/package.nix index 73cde5730b8c26..8290a2aac64f23 100644 --- a/pkgs/by-name/br/briss/package.nix +++ b/pkgs/by-name/br/briss/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { makeWrapper "${jre}/bin/java" "$out/bin/briss" --add-flags "-Xms128m -Xmx1024m -cp \"$out/share/\" -jar \"$out/share/briss-${version}.jar\"" ''; - meta = { + meta = with lib; { homepage = "https://sourceforge.net/projects/briss/"; description = "Java application for cropping PDF files"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.gpl3; - platforms = lib.platforms.unix; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.gpl3; + platforms = platforms.unix; mainProgram = "briss"; }; } diff --git a/pkgs/by-name/br/brscan4/package.nix b/pkgs/by-name/br/brscan4/package.nix index 009232d7b96964..7b166f2c9c8aa2 100644 --- a/pkgs/by-name/br/brscan4/package.nix +++ b/pkgs/by-name/br/brscan4/package.nix @@ -99,15 +99,15 @@ stdenv.mkDerivation rec { dontStrip = true; dontPatchELF = true; - meta = { + meta = with lib; { description = "Brother brscan4 sane backend driver"; homepage = "http://www.brother.com"; platforms = [ "i686-linux" "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ jraygauthier ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = with maintainers; [ jraygauthier ]; }; } diff --git a/pkgs/by-name/br/brscan4/udev_rules_type1.nix b/pkgs/by-name/br/brscan4/udev_rules_type1.nix index 87ab8be689e74d..801caf02433fc4 100644 --- a/pkgs/by-name/br/brscan4/udev_rules_type1.nix +++ b/pkgs/by-name/br/brscan4/udev_rules_type1.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { dontStrip = true; dontPatchELF = true; - meta = { + meta = with lib; { description = "Brother type1 scanners udev rules"; homepage = "http://www.brother.com"; - platforms = lib.platforms.linux; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ jraygauthier ]; + platforms = platforms.linux; + license = licenses.unfree; + maintainers = with maintainers; [ jraygauthier ]; }; } diff --git a/pkgs/by-name/br/bruno-cli/package.nix b/pkgs/by-name/br/bruno-cli/package.nix index c5203edbfe3a41..08ac1e306b5a58 100644 --- a/pkgs/by-name/br/bruno-cli/package.nix +++ b/pkgs/by-name/br/bruno-cli/package.nix @@ -75,18 +75,18 @@ buildNpmPackage { ''; }; - meta = { + meta = with lib; { description = "CLI of the open-source IDE For exploring and testing APIs"; homepage = "https://www.usebruno.com"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "bru"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ gepbird kashw2 lucasew mattpolzin water-sucks ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/by-name/br/bruno/package.nix b/pkgs/by-name/br/bruno/package.nix index 7de25e8cd9c587..6bcb56c884c960 100644 --- a/pkgs/by-name/br/bruno/package.nix +++ b/pkgs/by-name/br/bruno/package.nix @@ -169,12 +169,12 @@ buildNpmPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Open-source IDE For exploring and testing APIs"; homepage = "https://www.usebruno.com"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "bruno"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ gepbird kashw2 lucasew @@ -182,6 +182,6 @@ buildNpmPackage rec { redyf water-sucks ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/by-name/br/brunsli/package.nix b/pkgs/by-name/br/brunsli/package.nix index 398d7b0346985c..e1c8201aa42073 100644 --- a/pkgs/by-name/br/brunsli/package.nix +++ b/pkgs/by-name/br/brunsli/package.nix @@ -53,10 +53,10 @@ stdenv.mkDerivation rec { brotli ]; - meta = { + meta = with lib; { description = "Lossless JPEG repacking library"; homepage = "https://github.com/google/brunsli"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/br/bruteforce-luks/package.nix b/pkgs/by-name/br/bruteforce-luks/package.nix index 01818112315461..5b158fd575284d 100644 --- a/pkgs/by-name/br/bruteforce-luks/package.nix +++ b/pkgs/by-name/br/bruteforce-luks/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { homepage = "https://github.com/glv2/bruteforce-luks"; description = "Cracks passwords of LUKS encrypted volumes"; mainProgram = "bruteforce-luks"; @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { knowing anything about it would take way too much time (unless the password is really short and/or weak). It can also use a dictionary. ''; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/br/brygada-1918/package.nix b/pkgs/by-name/br/brygada-1918/package.nix index 8ca7ca8f5069db..2e6fe743137fa5 100644 --- a/pkgs/by-name/br/brygada-1918/package.nix +++ b/pkgs/by-name/br/brygada-1918/package.nix @@ -28,11 +28,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Digital revival of the Brygada serif typeface"; homepage = "https://brygada1918.eu/"; - license = lib.licenses.ofl; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ oidro ]; + license = licenses.ofl; + platforms = platforms.all; + maintainers = with maintainers; [ oidro ]; }; } diff --git a/pkgs/by-name/bs/bsc/package.nix b/pkgs/by-name/bs/bsc/package.nix index 9c122cb6b9268f..51062eb7ce0255 100644 --- a/pkgs/by-name/bs/bsc/package.nix +++ b/pkgs/by-name/bs/bsc/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation (finalAttrs: { "PREFIX=${placeholder "out"}" ]; - meta = { + meta = with lib; { description = "High performance block-sorting data compression library"; homepage = "http://libbsc.com/"; - maintainers = with lib.maintainers; [ sigmanificient ]; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ sigmanificient ]; + license = licenses.asl20; + platforms = platforms.unix; mainProgram = "bsc"; }; }) diff --git a/pkgs/by-name/bs/bsdgames/package.nix b/pkgs/by-name/bs/bsdgames/package.nix index 9fca2faa5ffd31..d3688958e93869 100644 --- a/pkgs/by-name/bs/bsdgames/package.nix +++ b/pkgs/by-name/bs/bsdgames/package.nix @@ -101,11 +101,11 @@ stdenv.mkDerivation (finalAttrs: { mkdir -p $out/bin ''; - meta = { + meta = with lib; { homepage = "http://www.t2-project.org/packages/bsd-games.html"; description = "Ports of all the games from NetBSD-current that are free"; - license = lib.licenses.free; - maintainers = with lib.maintainers; [ viric ]; - platforms = with lib.platforms; linux; + license = licenses.free; + maintainers = with maintainers; [ viric ]; + platforms = with platforms; linux; }; }) diff --git a/pkgs/by-name/bs/bsnes-hd/package.nix b/pkgs/by-name/bs/bsnes-hd/package.nix index c98b96e2affb85..8365a8a1136d42 100644 --- a/pkgs/by-name/bs/bsnes-hd/package.nix +++ b/pkgs/by-name/bs/bsnes-hd/package.nix @@ -95,15 +95,15 @@ stdenv.mkDerivation { updateScript = unstableGitUpdater { }; }; - meta = { + meta = with lib; { homepage = "https://github.com/DerKoun/bsnes-hd"; description = "Fork of bsnes that adds HD video features"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "bsnes"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ AndersonTorres stevebob ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/bt/btrfs-assistant/package.nix b/pkgs/by-name/bt/btrfs-assistant/package.nix index fce0bd8fc6eb7b..d3ad4c6ef517c8 100644 --- a/pkgs/by-name/bt/btrfs-assistant/package.nix +++ b/pkgs/by-name/bt/btrfs-assistant/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "GUI management tool to make managing a Btrfs filesystem easier"; homepage = "https://gitlab.com/btrfs-assistant/btrfs-assistant"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "btrfs-assistant-bin"; - maintainers = with lib.maintainers; [ khaneliman ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ khaneliman ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/bt/btrfs-list/package.nix b/pkgs/by-name/bt/btrfs-list/package.nix index 597f326df58eff..f826e588be585a 100644 --- a/pkgs/by-name/bt/btrfs-list/package.nix +++ b/pkgs/by-name/bt/btrfs-list/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation (finalAttrs: { } ''; - meta = { + meta = with lib; { description = "Get a nice tree-style view of your btrfs subvolumes/snapshots, including their size, à la 'zfs list'"; homepage = "https://github.com/speed47/btrfs-list"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ asymmetric ]; + license = licenses.gpl2Only; + maintainers = with maintainers; [ asymmetric ]; mainProgram = "btrfs-list"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/bu/buckets/package.nix b/pkgs/by-name/bu/buckets/package.nix index 4a572cf0d0cf4f..13cde63f80f90a 100644 --- a/pkgs/by-name/bu/buckets/package.nix +++ b/pkgs/by-name/bu/buckets/package.nix @@ -49,11 +49,11 @@ appimageTools.wrapType2 { done ''; - meta = { + meta = with lib; { description = "Private family budgeting app"; homepage = "https://www.budgetwithbuckets.com/"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ kmogged ]; + license = licenses.unfree; + maintainers = with maintainers; [ kmogged ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/bu/buckle/package.nix b/pkgs/by-name/bu/buckle/package.nix index a4b96ce469270e..7971c03146ec08 100644 --- a/pkgs/by-name/bu/buckle/package.nix +++ b/pkgs/by-name/bu/buckle/package.nix @@ -22,7 +22,7 @@ rustPlatform.buildRustPackage rec { "--skip=test_buck2_specific_version" ]; - meta = { + meta = with lib; { description = "Buck2 launcher"; longDescription = '' Buckle is a launcher for [Buck2](https://buck2.build). It manages @@ -32,8 +32,8 @@ rustPlatform.buildRustPackage rec { enforcing the prelude is upgraded in sync. ''; homepage = "https://github.com/benbrittain/buckle"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ cbarrete ]; + license = licenses.mit; + maintainers = with maintainers; [ cbarrete ]; mainProgram = "buckle"; }; } diff --git a/pkgs/by-name/bu/bufisk/package.nix b/pkgs/by-name/bu/bufisk/package.nix index 05ec70526546c7..930c15f6087958 100644 --- a/pkgs/by-name/bu/bufisk/package.nix +++ b/pkgs/by-name/bu/bufisk/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = { + meta = with lib; { homepage = "https://github.com/bufbuild/bufisk"; description = "User-friendly launcher for Buf"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.asl20; + maintainers = with maintainers; [ aaronjheng ]; mainProgram = "bufisk"; }; } diff --git a/pkgs/by-name/bu/bugstalker/package.nix b/pkgs/by-name/bu/bugstalker/package.nix index 9ac50950fb398e..5e7fb470965e6d 100644 --- a/pkgs/by-name/bu/bugstalker/package.nix +++ b/pkgs/by-name/bu/bugstalker/package.nix @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage rec { # Tests require rustup. doCheck = false; - meta = { + meta = with lib; { description = "Rust debugger for Linux x86-64"; homepage = "https://github.com/godzie44/BugStalker"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ jacg ]; + license = licenses.mit; + maintainers = with maintainers; [ jacg ]; mainProgram = "bs"; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/bu/bulloak/package.nix b/pkgs/by-name/bu/bulloak/package.nix index 36ee18ae81752a..fa55cd383208bb 100644 --- a/pkgs/by-name/bu/bulloak/package.nix +++ b/pkgs/by-name/bu/bulloak/package.nix @@ -48,14 +48,14 @@ rustPlatform.buildRustPackage rec { # provide the list of solc versions to the `svm-rs-builds` dependency SVM_RELEASES_LIST_JSON = solc-versions.${stdenv.hostPlatform.system}; - meta = { + meta = with lib; { description = "Solidity test generator based on the Branching Tree Technique"; homepage = "https://github.com/alexfertel/bulloak"; - license = with lib.licenses; [ + license = with licenses; [ mit asl20 ]; mainProgram = "bulloak"; - maintainers = with lib.maintainers; [ beeb ]; + maintainers = with maintainers; [ beeb ]; }; } diff --git a/pkgs/by-name/bu/bustle/package.nix b/pkgs/by-name/bu/bustle/package.nix index 3d783eeb97b8dc..83abf64b6e7587 100644 --- a/pkgs/by-name/bu/bustle/package.nix +++ b/pkgs/by-name/bu/bustle/package.nix @@ -62,15 +62,15 @@ stdenv.mkDerivation (finalAttrs: { libadwaita ]; - meta = { + meta = with lib; { description = "Graphical D-Bus message analyser and profiler"; homepage = "https://gitlab.gnome.org/World/bustle"; - license = lib.licenses.lgpl21Plus; - maintainers = with lib.maintainers; [ + license = licenses.lgpl21Plus; + maintainers = with maintainers; [ jtojnar aleksana ]; mainProgram = "bustle"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/bu/butt/package.nix b/pkgs/by-name/bu/butt/package.nix index 15044904ddead4..8f6e4dfe87a59d 100644 --- a/pkgs/by-name/bu/butt/package.nix +++ b/pkgs/by-name/bu/butt/package.nix @@ -58,13 +58,13 @@ stdenv.mkDerivation (finalAttrs: { cp -r usr/share $out/ ''; - meta = { + meta = with lib; { changelog = "https://danielnoethen.de/butt/Changelog.html"; description = "butt (broadcast using this tool) is an easy to use, multi OS streaming tool"; homepage = "https://danielnoethen.de/butt/"; - license = lib.licenses.gpl2; - maintainers = with lib.maintainers; [ ehmry ]; + license = licenses.gpl2; + maintainers = with maintainers; [ ehmry ]; mainProgram = "butt"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/bu/butterfly/package.nix b/pkgs/by-name/bu/butterfly/package.nix index 4fa0dff346ff3e..77b44b26ebf05c 100644 --- a/pkgs/by-name/bu/butterfly/package.nix +++ b/pkgs/by-name/bu/butterfly/package.nix @@ -39,16 +39,16 @@ flutter327.buildFlutterApplication rec { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { description = "Powerful, minimalistic, cross-platform, opensource note-taking app"; homepage = "https://github.com/LinwoodDev/Butterfly"; mainProgram = "butterfly"; - license = with lib.licenses; [ + license = with licenses; [ agpl3Plus cc-by-sa-40 asl20 ]; - maintainers = with lib.maintainers; [ aucub ]; + maintainers = with maintainers; [ aucub ]; platforms = [ "aarch64-linux" "x86_64-linux" diff --git a/pkgs/by-name/bw/bwbasic/package.nix b/pkgs/by-name/bw/bwbasic/package.nix index 6f5d2d25d73935..5fb71b1aff0aa2 100644 --- a/pkgs/by-name/bw/bwbasic/package.nix +++ b/pkgs/by-name/bw/bwbasic/package.nix @@ -36,12 +36,12 @@ gccStdenv.mkDerivation (finalAttrs: { mkdir -p $out/bin ''; - meta = { + meta = with lib; { description = "Bywater BASIC Interpreter"; mainProgram = "bwbasic"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ irenes ]; - platforms = lib.platforms.all; + license = licenses.gpl2Only; + maintainers = with maintainers; [ irenes ]; + platforms = platforms.all; homepage = "https://sourceforge.net/projects/bwbasic/"; }; }) diff --git a/pkgs/by-name/by/byobu/package.nix b/pkgs/by-name/by/byobu/package.nix index 462b2ef3a7bde3..eec28895902246 100644 --- a/pkgs/by-name/by/byobu/package.nix +++ b/pkgs/by-name/by/byobu/package.nix @@ -83,7 +83,7 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = { + meta = with lib; { homepage = "https://www.byobu.org/"; description = "Text-based window manager and terminal multiplexer"; longDescription = '' @@ -96,9 +96,9 @@ stdenv.mkDerivation (finalAttrs: { Tmux terminal multiplexer, and works on most Linux, BSD, and Mac distributions. ''; - license = with lib.licenses; [ gpl3Plus ]; + license = with licenses; [ gpl3Plus ]; mainProgram = "byobu"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/by/byzanz/package.nix b/pkgs/by-name/by/byzanz/package.nix index c12ea0e7777c28..4f2434111c452c 100644 --- a/pkgs/by-name/by/byzanz/package.nix +++ b/pkgs/by-name/by/byzanz/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation { wrapGAppsHook3 ]); - meta = { + meta = with lib; { description = "Tool to record a running X desktop to an animation suitable for presentation in a web browser"; homepage = "https://github.com/GNOME/byzanz"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ bot-wxt1221 ]; }; } diff --git a/pkgs/by-name/c-/c-for-go/package.nix b/pkgs/by-name/c-/c-for-go/package.nix index 32026dbc053ea7..ccf7b47c971d2d 100644 --- a/pkgs/by-name/c-/c-for-go/package.nix +++ b/pkgs/by-name/c-/c-for-go/package.nix @@ -20,12 +20,12 @@ buildGoModule rec { # Almost all tests fail on the release branch, but package still compiles and works fine. doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/xlab/c-for-go"; changelog = "https://github.com/xlab/c-for-go/releases/"; description = "Automatic C-Go Bindings Generator for the Go Programming Language"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.msanft ]; + license = licenses.mit; + maintainers = [ maintainers.msanft ]; mainProgram = "c-for-go"; }; } diff --git a/pkgs/by-name/c6/c64-debugger/package.nix b/pkgs/by-name/c6/c64-debugger/package.nix index bb13dd188b3e00..e6e8e3f896ef11 100644 --- a/pkgs/by-name/c6/c64-debugger/package.nix +++ b/pkgs/by-name/c6/c64-debugger/package.nix @@ -94,10 +94,10 @@ stdenv.mkDerivation { ]; }; - meta = { + meta = with lib; { homepage = "https://sourceforge.net/projects/c64-debugger"; description = "Commodore 64, Atari XL/XE and NES code and memory debugger that works in real time"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Only # c64-debugger mit # MTEngine # emulators included in c64-debugger @@ -105,7 +105,7 @@ stdenv.mkDerivation { gpl2 # nestopiaue ]; mainProgram = "c64debugger"; - maintainers = [ lib.maintainers.detegr ]; - platforms = lib.platforms.linux; + maintainers = [ maintainers.detegr ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ca/cabal-cli/package.nix b/pkgs/by-name/ca/cabal-cli/package.nix index 11cb241ad18f21..23416d7abace55 100644 --- a/pkgs/by-name/ca/cabal-cli/package.nix +++ b/pkgs/by-name/ca/cabal-cli/package.nix @@ -24,10 +24,10 @@ buildNpmPackage { env.NODE_OPTIONS = "--openssl-legacy-provider"; - meta = { + meta = with lib; { description = "Terminal client for Cabal, the p2p chat platform"; homepage = "https://cabal.chat"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ kototama ]; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ kototama ]; }; } diff --git a/pkgs/by-name/ca/caddy/package.nix b/pkgs/by-name/ca/caddy/package.nix index 760ec1d8e7ae46..b0cd77c55cc577 100644 --- a/pkgs/by-name/ca/caddy/package.nix +++ b/pkgs/by-name/ca/caddy/package.nix @@ -81,12 +81,12 @@ buildGoModule { withPlugins = callPackage ./plugins.nix { inherit caddy; }; }; - meta = { + meta = with lib; { homepage = "https://caddyserver.com"; description = "Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "caddy"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ Br1ght0ne stepbrobd techknowlogick diff --git a/pkgs/by-name/ca/calculix-ccx/package.nix b/pkgs/by-name/ca/calculix-ccx/package.nix index 9afb29e17e4239..4dbffab2fb66ff 100644 --- a/pkgs/by-name/ca/calculix-ccx/package.nix +++ b/pkgs/by-name/ca/calculix-ccx/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "http://www.calculix.de"; description = "Three-dimensional structural finite element program"; mainProgram = "ccx"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ gebner ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ gebner ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ca/calligraphy/package.nix b/pkgs/by-name/ca/calligraphy/package.nix index 88856bd21adc89..9057150207ff19 100644 --- a/pkgs/by-name/ca/calligraphy/package.nix +++ b/pkgs/by-name/ca/calligraphy/package.nix @@ -46,16 +46,16 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs = [ "\${gappsWrapperArgs[@]}" ]; - meta = { + meta = with lib; { description = "GTK tool turning text into ASCII banners"; homepage = "https://calligraphy.geopjr.dev"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Plus # and cc0 ]; mainProgram = "calligraphy"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ca/canard/package.nix b/pkgs/by-name/ca/canard/package.nix index 8883d0781e5278..9f41ae63297cef 100644 --- a/pkgs/by-name/ca/canard/package.nix +++ b/pkgs/by-name/ca/canard/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-X github.com/mrusme/canard/main.VERSION=${version}" ]; - meta = { + meta = with lib; { description = "Command line TUI client for the journalist RSS aggregator"; homepage = "https://github.com/mrusme/canard"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ moraxyc ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ moraxyc ]; mainProgram = "canard"; }; } diff --git a/pkgs/by-name/ca/cano/package.nix b/pkgs/by-name/ca/cano/package.nix index 5702ce5fb19ff0..81833ec92355ec 100644 --- a/pkgs/by-name/ca/cano/package.nix +++ b/pkgs/by-name/ca/cano/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Text Editor Written In C Using ncurses"; homepage = "https://github.com/CobbCoding1/Cano"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "Cano"; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ca/canokey-usbip/package.nix b/pkgs/by-name/ca/canokey-usbip/package.nix index ee1b53bc12221b..60ed213c6c0cc7 100644 --- a/pkgs/by-name/ca/canokey-usbip/package.nix +++ b/pkgs/by-name/ca/canokey-usbip/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation (finalAttrs: { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { description = "CanoKey USB/IP Virt Card"; homepage = "https://github.com/canokeys/canokey-usbip"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.jmbaur ]; + license = licenses.asl20; + maintainers = [ maintainers.jmbaur ]; mainProgram = "canokey-usbip"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ca/cantarell-fonts/package.nix b/pkgs/by-name/ca/cantarell-fonts/package.nix index 10a8e71838dcca..e2a938b2fad7cd 100644 --- a/pkgs/by-name/ca/cantarell-fonts/package.nix +++ b/pkgs/by-name/ca/cantarell-fonts/package.nix @@ -49,10 +49,10 @@ stdenv.mkDerivation rec { }; }; - meta = { + meta = with lib; { description = "Default typeface used in the user interface of GNOME since version 3.0"; - platforms = lib.platforms.all; - license = lib.licenses.ofl; + platforms = platforms.all; + license = licenses.ofl; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ca/cantata/package.nix b/pkgs/by-name/ca/cantata/package.nix index 7bb809dae7eef2..d8ad80c2cdc23b 100644 --- a/pkgs/by-name/ca/cantata/package.nix +++ b/pkgs/by-name/ca/cantata/package.nix @@ -188,15 +188,15 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = lib.flatten (map (e: map (f: fstat e.enable f) e.names) options); - meta = { + meta = with lib; { description = "Graphical client for MPD"; mainProgram = "cantata"; homepage = "https://github.com/cdrummond/cantata"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ peterhoeg ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ peterhoeg ]; # Technically, Cantata should run on Darwin/Windows so if someone wants to # bother figuring that one out, be my guest. - platforms = lib.platforms.unix; - badPlatforms = lib.platforms.darwin; + platforms = platforms.unix; + badPlatforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/ca/canto-curses/package.nix b/pkgs/by-name/ca/canto-curses/package.nix index 78be4ecaeb2d01..ab383291f4b3ec 100644 --- a/pkgs/by-name/ca/canto-curses/package.nix +++ b/pkgs/by-name/ca/canto-curses/package.nix @@ -25,7 +25,7 @@ python3Packages.buildPythonApplication rec { ]; propagatedBuildInputs = [ canto-daemon ]; - meta = { + meta = with lib; { description = "Ncurses-based console Atom/RSS feed reader"; mainProgram = "canto-curses"; longDescription = '' @@ -37,8 +37,8 @@ python3Packages.buildPythonApplication rec { and extensibility using the excellent Python programming language. ''; homepage = "https://codezen.org/canto-ng/"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.devhell ]; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.devhell ]; }; } diff --git a/pkgs/by-name/ca/capslock/package.nix b/pkgs/by-name/ca/capslock/package.nix index 4460368a1123e6..9a82c14bbf2d82 100644 --- a/pkgs/by-name/ca/capslock/package.nix +++ b/pkgs/by-name/ca/capslock/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Capability analysis CLI for Go packages that informs users of which privileged operations a given package can access"; homepage = "https://github.com/google/capslock"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "capslock"; - maintainers = with lib.maintainers; [ katexochen ]; + maintainers = with maintainers; [ katexochen ]; }; } diff --git a/pkgs/by-name/ca/capypdf/package.nix b/pkgs/by-name/ca/capypdf/package.nix index 1d4f47af8d9d88..3cbe4e3567fa13 100644 --- a/pkgs/by-name/ca/capypdf/package.nix +++ b/pkgs/by-name/ca/capypdf/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation (finalAttrs: { zlib ]; - meta = { + meta = with lib; { description = "Fully color managed PDF generation library"; homepage = "https://github.com/jpakkane/capypdf"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ jtojnar ]; + license = licenses.asl20; + maintainers = with maintainers; [ jtojnar ]; mainProgram = "capypdf"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ca/carbon-now-cli/package.nix b/pkgs/by-name/ca/carbon-now-cli/package.nix index d391128c56b26e..0e67b07182210c 100644 --- a/pkgs/by-name/ca/carbon-now-cli/package.nix +++ b/pkgs/by-name/ca/carbon-now-cli/package.nix @@ -28,11 +28,11 @@ buildNpmPackage rec { PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD = 1; }; - meta = { + meta = with lib; { description = "Beautiful images of your code — from right inside your terminal"; homepage = "https://github.com/mixn/carbon-now-cli"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "carbon-now"; - maintainers = with lib.maintainers; [ rmcgibbo ]; + maintainers = with maintainers; [ rmcgibbo ]; }; } diff --git a/pkgs/by-name/ca/cargo-3ds/package.nix b/pkgs/by-name/ca/cargo-3ds/package.nix index 780a40e3d66bdc..22a37a81f2c177 100644 --- a/pkgs/by-name/ca/cargo-3ds/package.nix +++ b/pkgs/by-name/ca/cargo-3ds/package.nix @@ -23,13 +23,13 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Cargo command to work with Nintendo 3DS project binaries"; homepage = "https://github.com/rust3ds/cargo-3ds"; - license = with lib.licenses; [ + license = with licenses; [ mit asl20 ]; - maintainers = with lib.maintainers; [ l1npengtul ]; + maintainers = with maintainers; [ l1npengtul ]; }; } diff --git a/pkgs/by-name/ca/cargo-aoc/package.nix b/pkgs/by-name/ca/cargo-aoc/package.nix index d71415c26a6842..7046bdfd512e92 100644 --- a/pkgs/by-name/ca/cargo-aoc/package.nix +++ b/pkgs/by-name/ca/cargo-aoc/package.nix @@ -22,14 +22,14 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Simple CLI tool that aims to be a helper for Advent of Code"; homepage = "https://github.com/gobanos/cargo-aoc"; - license = with lib.licenses; [ + license = with licenses; [ mit asl20 ]; - maintainers = with lib.maintainers; [ defelo ]; + maintainers = with maintainers; [ defelo ]; mainProgram = "cargo-aoc"; }; } diff --git a/pkgs/by-name/ca/cargo-gra/package.nix b/pkgs/by-name/ca/cargo-gra/package.nix index 631d8ea7c97caa..460a5b068a58ac 100644 --- a/pkgs/by-name/ca/cargo-gra/package.nix +++ b/pkgs/by-name/ca/cargo-gra/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-wfMiqWcEsL6/d6XFnEFm/lCbelU7BHC7JKdHREnynAU="; - meta = { + meta = with lib; { description = "gtk-rust-app cli for building flatpak apps with ease"; homepage = "https://gitlab.com/floers/gtk-stuff/cargo-gra/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; - platforms = lib.platforms.unix; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ bot-wxt1221 ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ca/cargo-raze/package.nix b/pkgs/by-name/ca/cargo-raze/package.nix index ca381ef562ddfa..6c5e03f44ded79 100644 --- a/pkgs/by-name/ca/cargo-raze/package.nix +++ b/pkgs/by-name/ca/cargo-raze/package.nix @@ -46,10 +46,10 @@ rustPlatform.buildRustPackage { __darwinAllowLocalNetworking = true; - meta = { + meta = with lib; { description = "Generate Bazel BUILD files from Cargo dependencies"; homepage = "https://github.com/google/cargo-raze"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ elasticdog ]; + license = licenses.asl20; + maintainers = with maintainers; [ elasticdog ]; }; } diff --git a/pkgs/by-name/ca/cargo-risczero/package.nix b/pkgs/by-name/ca/cargo-risczero/package.nix index 38f4d6c5d4fca0..56c33f0d327329 100644 --- a/pkgs/by-name/ca/cargo-risczero/package.nix +++ b/pkgs/by-name/ca/cargo-risczero/package.nix @@ -44,11 +44,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Cargo extension to help create, manage, and test RISC Zero projects"; mainProgram = "cargo-risczero"; homepage = "https://risczero.com"; - license = with lib.licenses; [ asl20 ]; - maintainers = with lib.maintainers; [ cameronfyfe ]; + license = with licenses; [ asl20 ]; + maintainers = with maintainers; [ cameronfyfe ]; }; } diff --git a/pkgs/by-name/ca/cargo-typify/package.nix b/pkgs/by-name/ca/cargo-typify/package.nix index 40e30350f5e7b2..8777aebc467ac8 100644 --- a/pkgs/by-name/ca/cargo-typify/package.nix +++ b/pkgs/by-name/ca/cargo-typify/package.nix @@ -48,11 +48,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = { + meta = with lib; { description = "JSON Schema to Rust type converter"; mainProgram = "cargo-typify"; homepage = "https://github.com/oxidecomputer/typify"; - license = with lib.licenses; [ asl20 ]; - maintainers = with lib.maintainers; [ david-r-cox ]; + license = with licenses; [ asl20 ]; + maintainers = with maintainers; [ david-r-cox ]; }; } diff --git a/pkgs/by-name/ca/cargo-v5/package.nix b/pkgs/by-name/ca/cargo-v5/package.nix index 59f5b3003e9b6e..2ca29858932faf 100644 --- a/pkgs/by-name/ca/cargo-v5/package.nix +++ b/pkgs/by-name/ca/cargo-v5/package.nix @@ -30,11 +30,11 @@ rustPlatform.buildRustPackage { openssl ]; - meta = { + meta = with lib; { description = "Cargo tool for working with VEX V5 Rust projects"; mainProgram = "cargo-v5"; homepage = "https://github.com/vexide/cargo-v5"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ max-niederman ]; + license = licenses.mit; + maintainers = with maintainers; [ max-niederman ]; }; } diff --git a/pkgs/by-name/ca/cartero/package.nix b/pkgs/by-name/ca/cartero/package.nix index e73bf605cb88c5..195a1d0050ac4d 100644 --- a/pkgs/by-name/ca/cartero/package.nix +++ b/pkgs/by-name/ca/cartero/package.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation (finalAttrs: { openssl ]; - meta = { + meta = with lib; { description = "Make HTTP requests and test APIs"; longDescription = '' Cartero is a graphical HTTP client that can be used @@ -63,9 +63,9 @@ stdenv.mkDerivation (finalAttrs: { payloads to compatible requests. ''; homepage = "https://cartero.danirod.es"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "cartero"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ca/casadi/package.nix b/pkgs/by-name/ca/casadi/package.nix index c8a33978313bc6..1f81877292effc 100644 --- a/pkgs/by-name/ca/casadi/package.nix +++ b/pkgs/by-name/ca/casadi/package.nix @@ -201,11 +201,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { description = "CasADi is a symbolic framework for numeric optimization implementing automatic differentiation in forward and reverse modes on sparse matrix-valued computational graphs. It supports self-contained C-code generation and interfaces state-of-the-art codes such as SUNDIALS, IPOPT etc. It can be used from C++, Python or Matlab/Octave"; homepage = "https://github.com/casadi/casadi"; - license = lib.licenses.lgpl3Only; - maintainers = with lib.maintainers; [ nim65s ]; - platforms = lib.platforms.all; + license = licenses.lgpl3Only; + maintainers = with maintainers; [ nim65s ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ca/cassette/package.nix b/pkgs/by-name/ca/cassette/package.nix index 9056830b1046ff..380b7d8688bcce 100644 --- a/pkgs/by-name/ca/cassette/package.nix +++ b/pkgs/by-name/ca/cassette/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = { + meta = with lib; { description = "GTK4/Adwaita application that allows you to use Yandex Music service on Linux operating systems"; homepage = "https://github.com/Rirusha/Cassette"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ averyanalex ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ averyanalex ]; + platforms = platforms.linux; mainProgram = "cassette"; }; } diff --git a/pkgs/by-name/ca/castxml/package.nix b/pkgs/by-name/ca/castxml/package.nix index 8368a4aa2383ff..b08ddde594dd28 100644 --- a/pkgs/by-name/ca/castxml/package.nix +++ b/pkgs/by-name/ca/castxml/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests = testers.testVersion { package = finalAttrs.finalPackage; }; - meta = { + meta = with lib; { homepage = "https://github.com/CastXML/CastXML"; description = "C-family Abstract Syntax Tree XML Output"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "castxml"; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ca/cat9/package.nix b/pkgs/by-name/ca/cat9/package.nix index 011450c0256059..7ccb1aa831036f 100644 --- a/pkgs/by-name/ca/cat9/package.nix +++ b/pkgs/by-name/ca/cat9/package.nix @@ -28,11 +28,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/letoram/cat9"; description = "User shell for LASH"; - license = with lib.licenses; [ unlicense ]; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + license = with licenses; [ unlicense ]; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ca/catalyst-browser/package.nix b/pkgs/by-name/ca/catalyst-browser/package.nix index 97c53a44a57c12..d055c0f3b79749 100644 --- a/pkgs/by-name/ca/catalyst-browser/package.nix +++ b/pkgs/by-name/ca/catalyst-browser/package.nix @@ -73,13 +73,13 @@ stdenv.mkDerivation rec { --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ stdenv.cc.cc ]}" ''; - meta = { + meta = with lib; { description = "Minimal, functional, and customizable user-focused FOSS web browser based on Chromium"; homepage = "https://getcatalyst.eu.org"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "catalyst"; - maintainers = with lib.maintainers; [ jdev082 ]; + maintainers = with maintainers; [ jdev082 ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/by-name/ca/catnest/package.nix b/pkgs/by-name/ca/catnest/package.nix index 3e2349818818cc..93b2be7184e383 100644 --- a/pkgs/by-name/ca/catnest/package.nix +++ b/pkgs/by-name/ca/catnest/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Small, single-file and POSIX-compatible substituion for systemd-sysusers"; homepage = "https://github.com/eweOS/catnest"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "catnest"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ca/catppuccin-catwalk/package.nix b/pkgs/by-name/ca/catppuccin-catwalk/package.nix index 676345b0b52877..b9de86db180efc 100644 --- a/pkgs/by-name/ca/catppuccin-catwalk/package.nix +++ b/pkgs/by-name/ca/catppuccin-catwalk/package.nix @@ -43,11 +43,11 @@ rustPlatform.buildRustPackage { runHook postInstallCheck ''; - meta = { + meta = with lib; { homepage = "https://github.com/catppuccin/toolbox/tree/main/catwalk"; description = "CLI for Catppuccin that takes in four showcase images and displays them all at once"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ryanccn ]; + license = licenses.mit; + maintainers = with maintainers; [ ryanccn ]; mainProgram = "catwalk"; }; } diff --git a/pkgs/by-name/ca/catppuccin-cursors/package.nix b/pkgs/by-name/ca/catppuccin-cursors/package.nix index 7a13f5402cfed8..2a5fb945196e8f 100644 --- a/pkgs/by-name/ca/catppuccin-cursors/package.nix +++ b/pkgs/by-name/ca/catppuccin-cursors/package.nix @@ -100,11 +100,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Catppuccin cursor theme based on Volantes"; homepage = "https://github.com/catppuccin/cursors"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ dixslyf ]; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ dixslyf ]; }; } diff --git a/pkgs/by-name/ca/catppuccin-discord/package.nix b/pkgs/by-name/ca/catppuccin-discord/package.nix index f98ffeca35fb72..aeef606df97ada 100644 --- a/pkgs/by-name/ca/catppuccin-discord/package.nix +++ b/pkgs/by-name/ca/catppuccin-discord/package.nix @@ -89,12 +89,12 @@ lib.checkListOfEnum "Invalid accent, valid accents are ${toString validAccents}" runHook postInstall ''; - meta = { + meta = with lib; { description = "Soothing pastel theme for Discord"; homepage = "https://github.com/catppuccin/discord"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ NotAShelf ]; - platforms = lib.platforms.all; - sourceProvenance = with lib.sourceTypes; [ fromSource ]; + license = licenses.mit; + maintainers = with maintainers; [ NotAShelf ]; + platforms = platforms.all; + sourceProvenance = with sourceTypes; [ fromSource ]; }; }) diff --git a/pkgs/by-name/ca/catppuccin-fcitx5/package.nix b/pkgs/by-name/ca/catppuccin-fcitx5/package.nix index bcdff788b103b0..9a1997d9661b73 100644 --- a/pkgs/by-name/ca/catppuccin-fcitx5/package.nix +++ b/pkgs/by-name/ca/catppuccin-fcitx5/package.nix @@ -27,14 +27,14 @@ stdenvNoCC.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Soothing pastel theme for Fcitx5"; homepage = "https://github.com/catppuccin/fcitx5"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ pluiedev Guanran928 ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ca/catppuccin-grub/package.nix b/pkgs/by-name/ca/catppuccin-grub/package.nix index 7472007f022086..19f41db18e1d03 100644 --- a/pkgs/by-name/ca/catppuccin-grub/package.nix +++ b/pkgs/by-name/ca/catppuccin-grub/package.nix @@ -27,14 +27,14 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Soothing pastel theme for GRUB"; homepage = "https://github.com/catppuccin/grub"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ isabelroses mimvoid ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ca/catppuccin-gtk/package.nix b/pkgs/by-name/ca/catppuccin-gtk/package.nix index f2a30186c45604..c2031908953471 100644 --- a/pkgs/by-name/ca/catppuccin-gtk/package.nix +++ b/pkgs/by-name/ca/catppuccin-gtk/package.nix @@ -105,12 +105,12 @@ lib.checkListOfEnum "${pname}: theme accent" validAccents accents lib.checkListO passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Soothing pastel theme for GTK"; homepage = "https://github.com/catppuccin/gtk"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + platforms = platforms.all; + maintainers = with maintainers; [ fufexan dixslyf isabelroses diff --git a/pkgs/by-name/ca/catppuccin-plymouth/package.nix b/pkgs/by-name/ca/catppuccin-plymouth/package.nix index f863353db2473c..3ba8b6dcbbcf1e 100644 --- a/pkgs/by-name/ca/catppuccin-plymouth/package.nix +++ b/pkgs/by-name/ca/catppuccin-plymouth/package.nix @@ -43,12 +43,12 @@ lib.checkListOfEnum "${pname}: color variant" validVariants [ variant ] passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Soothing pastel theme for Plymouth"; homepage = "https://github.com/catppuccin/plymouth"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ johnrtitor spectre256 ]; diff --git a/pkgs/by-name/ca/catppuccin-sddm-corners/package.nix b/pkgs/by-name/ca/catppuccin-sddm-corners/package.nix index 1665eeffc02e2b..557d056f02f576 100644 --- a/pkgs/by-name/ca/catppuccin-sddm-corners/package.nix +++ b/pkgs/by-name/ca/catppuccin-sddm-corners/package.nix @@ -45,11 +45,11 @@ stdenvNoCC.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Soothing pastel theme for SDDM based on corners theme"; homepage = "https://github.com/khaneliman/sddm-catppuccin-corners"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ khaneliman ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ khaneliman ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ca/catppuccin-sddm/package.nix b/pkgs/by-name/ca/catppuccin-sddm/package.nix index 1de2521a5f42f4..9b28e429f088be 100644 --- a/pkgs/by-name/ca/catppuccin-sddm/package.nix +++ b/pkgs/by-name/ca/catppuccin-sddm/package.nix @@ -70,11 +70,11 @@ stdenvNoCC.mkDerivation rec { echo ${kdePackages.qtsvg} >> $out/nix-support/propagated-user-env-packages ''; - meta = { + meta = with lib; { description = "Soothing pastel theme for SDDM"; homepage = "https://github.com/catppuccin/sddm"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ elysasrc ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ elysasrc ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ca/catppuccin-whiskers/package.nix b/pkgs/by-name/ca/catppuccin-whiskers/package.nix index 7838d626885a16..ac6982fb62627f 100644 --- a/pkgs/by-name/ca/catppuccin-whiskers/package.nix +++ b/pkgs/by-name/ca/catppuccin-whiskers/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-5FvW+ioeDi0kofDswyQpUC21wbEZM8TAeUEUemnNfnA="; - meta = { + meta = with lib; { homepage = "https://github.com/catppuccin/whiskers"; description = "A templating tool to simplify the creation of Catppuccin ports"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ Name ]; + license = licenses.mit; + maintainers = with maintainers; [ Name ]; mainProgram = "whiskers"; }; } diff --git a/pkgs/by-name/ca/catppuccin/package.nix b/pkgs/by-name/ca/catppuccin/package.nix index 069c9a326961e9..7c108151dd6c45 100644 --- a/pkgs/by-name/ca/catppuccin/package.nix +++ b/pkgs/by-name/ca/catppuccin/package.nix @@ -302,11 +302,11 @@ lib.checkListOfEnum "${pname}: variant" validVariants [ variant ] lib.checkListO runHook postInstall ''; - meta = { + meta = with lib; { description = "Soothing pastel themes"; homepage = "https://github.com/catppuccin/catppuccin"; - license = lib.licenses.mit; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.khaneliman ]; + license = licenses.mit; + platforms = platforms.all; + maintainers = [ maintainers.khaneliman ]; }; } diff --git a/pkgs/by-name/ca/catppuccinifier-cli/package.nix b/pkgs/by-name/ca/catppuccinifier-cli/package.nix index fc9ff4e2347dbe..5dd85ef905e5be 100644 --- a/pkgs/by-name/ca/catppuccinifier-cli/package.nix +++ b/pkgs/by-name/ca/catppuccinifier-cli/package.nix @@ -24,15 +24,15 @@ rustPlatform.buildRustPackage rec { }; }; - meta = { + meta = with lib; { description = "Apply catppuccin flavors to your wallpapers"; homepage = "https://github.com/lighttigerXIV/catppuccinifier"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "catppuccinifier-cli"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ aleksana isabelroses ]; - platforms = with lib.platforms; linux ++ windows; + platforms = with platforms; linux ++ windows; }; } diff --git a/pkgs/by-name/ca/catppuccinifier-gui/package.nix b/pkgs/by-name/ca/catppuccinifier-gui/package.nix index 7c3c44b13791ba..b236624d05758d 100644 --- a/pkgs/by-name/ca/catppuccinifier-gui/package.nix +++ b/pkgs/by-name/ca/catppuccinifier-gui/package.nix @@ -69,13 +69,13 @@ stdenv.mkDerivation { }) ]; - meta = { + meta = with lib; { description = "Apply catppuccin flavors to your wallpapers"; homepage = "https://github.com/lighttigerXIV/catppuccinifier"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ isabelroses ]; + license = licenses.mit; + maintainers = with maintainers; [ isabelroses ]; platforms = [ "x86_64-linux" ]; mainProgram = "catppuccinifier-gui"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/ca/cavalcade/package.nix b/pkgs/by-name/ca/cavalcade/package.nix index 368c0256b850e6..500ca5b8d4090d 100644 --- a/pkgs/by-name/ca/cavalcade/package.nix +++ b/pkgs/by-name/ca/cavalcade/package.nix @@ -65,10 +65,10 @@ python3Packages.buildPythonApplication rec { }) ]; - meta = { + meta = with lib; { description = "Python wrapper for C.A.V.A. utility with a GUI"; homepage = "https://github.com/worron/cavalcade"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/by-name/cb/cbc/package.nix b/pkgs/by-name/cb/cbc/package.nix index c96cbc2e7a7d0a..bef638fe7b54cd 100644 --- a/pkgs/by-name/cb/cbc/package.nix +++ b/pkgs/by-name/cb/cbc/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { # FIXME: move share/coin/Data to a separate output? - meta = { + meta = with lib; { homepage = "https://projects.coin-or.org/Cbc"; - license = lib.licenses.epl10; + license = licenses.epl10; maintainers = [ ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + platforms = platforms.linux ++ platforms.darwin; description = "Mixed integer programming solver"; }; } diff --git a/pkgs/by-name/cb/cbeams/package.nix b/pkgs/by-name/cb/cbeams/package.nix index c5278cdbf897ff..3dd3960acd970c 100644 --- a/pkgs/by-name/cb/cbeams/package.nix +++ b/pkgs/by-name/cb/cbeams/package.nix @@ -32,11 +32,11 @@ python3Packages.buildPythonApplication rec { doCheck = false; # no tests - meta = { + meta = with lib; { homepage = "https://github.com/tartley/cbeams"; description = "Command-line program to draw animated colored circles in the terminal"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ oxzi sigmanificient ]; diff --git a/pkgs/by-name/cb/cbmc-viewer/package.nix b/pkgs/by-name/cb/cbmc-viewer/package.nix index a4e099092777ef..737a150f43d4f0 100644 --- a/pkgs/by-name/cb/cbmc-viewer/package.nix +++ b/pkgs/by-name/cb/cbmc-viewer/package.nix @@ -20,11 +20,11 @@ python3Packages.buildPythonApplication rec { voluptuous ]; - meta = { + meta = with lib; { description = "Produces browsable summary of CBMC model checker output"; homepage = "https://github.com/model-checking/cbmc-viewer"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ jacg ]; + license = licenses.asl20; + maintainers = with maintainers; [ jacg ]; mainProgram = "cbmc-viewer"; }; } diff --git a/pkgs/by-name/cb/cbmc/package.nix b/pkgs/by-name/cb/cbmc/package.nix index 730449c04de291..4b900e76dd83ba 100644 --- a/pkgs/by-name/cb/cbmc/package.nix +++ b/pkgs/by-name/cb/cbmc/package.nix @@ -115,11 +115,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "CBMC is a Bounded Model Checker for C and C++ programs"; homepage = "http://www.cprover.org/cbmc/"; - license = lib.licenses.bsdOriginal; - maintainers = with lib.maintainers; [ jiegec ]; - platforms = lib.platforms.unix; + license = licenses.bsdOriginal; + maintainers = with maintainers; [ jiegec ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/cb/cbmp/package.nix b/pkgs/by-name/cb/cbmp/package.nix index 402c3233529d95..c36e49917fbf0c 100644 --- a/pkgs/by-name/cb/cbmp/package.nix +++ b/pkgs/by-name/cb/cbmp/package.nix @@ -31,11 +31,11 @@ buildNpmPackage rec { cp ${./package-lock.json} package-lock.json ''; - meta = { + meta = with lib; { description = "CLI App for converting cursor svg file to png"; homepage = "https://github.com/ful1e5/cbmp"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.mrtnvgr ]; + license = licenses.mit; + maintainers = [ maintainers.mrtnvgr ]; mainProgram = "cbmp"; }; } diff --git a/pkgs/by-name/cc/ccal/package.nix b/pkgs/by-name/cc/ccal/package.nix index 31de2947e76320..127f8f106481aa 100644 --- a/pkgs/by-name/cc/ccal/package.nix +++ b/pkgs/by-name/cc/ccal/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { --prefix PATH : ${lib.makeBinPath [ ghostscript_headless ]}:$out/bin ''; - meta = { + meta = with lib; { homepage = "https://ccal.chinesebay.com/ccal.htm"; description = "Command line Chinese calendar viewer, similar to cal"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ sharzy ]; - platforms = lib.platforms.all; + license = licenses.gpl3; + maintainers = with maintainers; [ sharzy ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/cc/cccc/package.nix b/pkgs/by-name/cc/cccc/package.nix index 0629cda4e5c8d7..bd04b7190625f9 100644 --- a/pkgs/by-name/cc/cccc/package.nix +++ b/pkgs/by-name/cc/cccc/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { "LD=c++" ]; - meta = { + meta = with lib; { description = "C and C++ Code Counter"; mainProgram = "cccc"; longDescription = '' @@ -35,8 +35,8 @@ stdenv.mkDerivation rec { complexity and metrics proposed by Chidamber&Kemerer and Henry&Kafura. ''; homepage = "https://cccc.sourceforge.net/"; - license = lib.licenses.gpl2; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.linquize ]; + license = licenses.gpl2; + platforms = platforms.unix; + maintainers = [ maintainers.linquize ]; }; } diff --git a/pkgs/by-name/cc/ccrtp/package.nix b/pkgs/by-name/cc/ccrtp/package.nix index e1177402c00329..604cc71f388223 100644 --- a/pkgs/by-name/cc/ccrtp/package.nix +++ b/pkgs/by-name/cc/ccrtp/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { description = "Implementation of the IETF real-time transport protocol (RTP)"; homepage = "https://www.gnu.org/software/ccrtp/"; - license = lib.licenses.gpl2; - maintainers = with lib.maintainers; [ marcweber ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = with maintainers; [ marcweber ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/cc/ccrypt/package.nix b/pkgs/by-name/cc/ccrypt/package.nix index bdfef537e8a88c..578079f90c98a9 100644 --- a/pkgs/by-name/cc/ccrypt/package.nix +++ b/pkgs/by-name/cc/ccrypt/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = { + meta = with lib; { homepage = "https://ccrypt.sourceforge.net/"; description = "Utility for encrypting and decrypting files and streams with AES-256"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = with lib.platforms; all; + platforms = with platforms; all; }; } diff --git a/pkgs/by-name/cc/cctools/package.nix b/pkgs/by-name/cc/cctools/package.nix index be2e3898cf7586..93cc2795585220 100644 --- a/pkgs/by-name/cc/cctools/package.nix +++ b/pkgs/by-name/cc/cctools/package.nix @@ -156,14 +156,14 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { rev-prefix = "cctools-"; }; }; - meta = { + meta = with lib; { description = "The classic linker for Darwin"; homepage = "https://opensource.apple.com/releases/"; - license = with lib.licenses; [ + license = with licenses; [ apple-psl20 gpl2 # GNU as ]; - maintainers = lib.teams.darwin.members; - platforms = lib.platforms.darwin; + maintainers = teams.darwin.members; + platforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/cd/cdecl-blocks/package.nix b/pkgs/by-name/cd/cdecl-blocks/package.nix index 307a80681a24dc..a45b972b06e9a4 100644 --- a/pkgs/by-name/cd/cdecl-blocks/package.nix +++ b/pkgs/by-name/cd/cdecl-blocks/package.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation { mkdir -p $out/bin; ''; - meta = { + meta = with lib; { description = "Translator English -- C/C++ declarations"; homepage = "https://cdecl.org"; - license = lib.licenses.publicDomain; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.unix; + license = licenses.publicDomain; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.unix; mainProgram = "cdecl"; }; } diff --git a/pkgs/by-name/ce/cemu/package.nix b/pkgs/by-name/ce/cemu/package.nix index a188326d9de43d..91d6f77c174f06 100644 --- a/pkgs/by-name/ce/cemu/package.nix +++ b/pkgs/by-name/ce/cemu/package.nix @@ -165,12 +165,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { description = "Software to emulate Wii U games and applications on PC"; homepage = "https://cemu.info"; - license = lib.licenses.mpl20; + license = licenses.mpl20; mainProgram = "cemu"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ zhaofengli baduhai AndersonTorres diff --git a/pkgs/by-name/ce/centerim/package.nix b/pkgs/by-name/ce/centerim/package.nix index 44abb6a12e6ab0..b039453d6eeabb 100644 --- a/pkgs/by-name/ce/centerim/package.nix +++ b/pkgs/by-name/ce/centerim/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { "--with-openssl=${openssl.dev}" ]; - meta = { + meta = with lib; { homepage = "https://www.centerim.org/"; description = "Fork of CenterICQ, a curses instant messaging program"; - license = lib.licenses.gpl2Plus; - platforms = with lib.platforms; linux; + license = licenses.gpl2Plus; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/ce/ceptre/package.nix b/pkgs/by-name/ce/ceptre/package.nix index a2623e73757e36..51ce20d6aa60dd 100644 --- a/pkgs/by-name/ce/ceptre/package.nix +++ b/pkgs/by-name/ce/ceptre/package.nix @@ -26,15 +26,15 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Linear logic programming language for modeling generative interactive systems"; mainProgram = "ceptre"; homepage = "https://github.com/chrisamaphone/interactive-lp"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ NotAShelf pSub ]; - platforms = lib.platforms.unix; - license = lib.licenses.unfree; + platforms = platforms.unix; + license = licenses.unfree; }; } diff --git a/pkgs/by-name/ce/cert-viewer/package.nix b/pkgs/by-name/ce/cert-viewer/package.nix index ee0f876a77ab72..6e15a00525d8c6 100644 --- a/pkgs/by-name/ce/cert-viewer/package.nix +++ b/pkgs/by-name/ce/cert-viewer/package.nix @@ -37,11 +37,11 @@ buildGoModule rec { installManPage cert-viewer.1 ''; - meta = { + meta = with lib; { description = "Admin tool to view and inspect multiple x509 Certificates"; homepage = "https://github.com/mgit-at/cert-viewer"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.mkg20001 ]; + license = licenses.asl20; + maintainers = [ maintainers.mkg20001 ]; mainProgram = "cert-viewer"; }; } diff --git a/pkgs/by-name/cf/cfitsio/package.nix b/pkgs/by-name/cf/cfitsio/package.nix index 3cc37833a80bd9..b5b79fb39fbd72 100644 --- a/pkgs/by-name/cf/cfitsio/package.nix +++ b/pkgs/by-name/cf/cfitsio/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { sed -e '/^install:/s/libcfitsio.a //' -e 's@/bin/@@g' -i Makefile.in ''; - meta = { + meta = with lib; { homepage = "https://heasarc.gsfc.nasa.gov/fitsio/"; description = "Library for reading and writing FITS data files"; longDescription = '' @@ -53,11 +53,11 @@ stdenv.mkDerivation (finalAttrs: { FITS files. ''; changelog = "https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ xbreak hjones2199 ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + platforms = platforms.linux ++ platforms.darwin; }; }) diff --git a/pkgs/by-name/cf/cfn-nag/package.nix b/pkgs/by-name/cf/cfn-nag/package.nix index 71c198c9a9b74b..ff1bdfec38a86d 100644 --- a/pkgs/by-name/cf/cfn-nag/package.nix +++ b/pkgs/by-name/cf/cfn-nag/package.nix @@ -14,15 +14,15 @@ bundlerEnv { passthru.updateScript = bundlerUpdateScript "cfn-nag"; - meta = { + meta = with lib; { description = "Linting tool for CloudFormation templates"; homepage = "https://github.com/stelligent/cfn_nag"; mainProgram = "cfn_nag"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ momeemt mathstlouis ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/cg/cgif/package.nix b/pkgs/by-name/cg/cgif/package.nix index dc6fb3dcf885cd..443890212ba532 100644 --- a/pkgs/by-name/cg/cgif/package.nix +++ b/pkgs/by-name/cg/cgif/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation (finalAttrs: { ninja ]; - meta = { + meta = with lib; { homepage = "https://github.com/dloebl/cgif"; description = "CGIF, a GIF encoder written in C"; - license = lib.licenses.mit; + license = licenses.mit; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/cg/cgreen/package.nix b/pkgs/by-name/cg/cgreen/package.nix index 6aabd82ef00acb..a7ea3f0ff5aac8 100644 --- a/pkgs/by-name/cg/cgreen/package.nix +++ b/pkgs/by-name/cg/cgreen/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; - meta = { + meta = with lib; { homepage = "https://github.com/cgreen-devs/cgreen"; description = "Modern Unit Test and Mocking Framework for C and C++"; mainProgram = "cgreen-runner"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.AndersonTorres ]; - platforms = lib.platforms.unix; + license = licenses.isc; + maintainers = [ maintainers.AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ch/ch341eeprom/package.nix b/pkgs/by-name/ch/ch341eeprom/package.nix index de29004aeaf067..7ef35d25eaa8bd 100644 --- a/pkgs/by-name/ch/ch341eeprom/package.nix +++ b/pkgs/by-name/ch/ch341eeprom/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation { updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; }; - meta = { + meta = with lib; { description = "Libusb based programming tool for 24Cxx serial EEPROMs using the WinChipHead CH341A IC"; homepage = "https://github.com/command-tab/ch341eeprom"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "ch341eeprom"; - maintainers = with lib.maintainers; [ xokdvium ]; - platforms = with lib.platforms; darwin ++ linux; + maintainers = with maintainers; [ xokdvium ]; + platforms = with platforms; darwin ++ linux; }; } diff --git a/pkgs/by-name/ch/charge-lnd/package.nix b/pkgs/by-name/ch/charge-lnd/package.nix index 2defe92c7aa063..71e18fa44aeb2f 100644 --- a/pkgs/by-name/ch/charge-lnd/package.nix +++ b/pkgs/by-name/ch/charge-lnd/package.nix @@ -47,11 +47,11 @@ python3Packages.buildPythonApplication rec { PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python"; }; - meta = { + meta = with lib; { description = "Simple policy-based fee manager for lightning network daemon"; homepage = "https://github.com/accumulator/charge-lnd"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + maintainers = with maintainers; [ mmilata mariaa144 ]; diff --git a/pkgs/by-name/ch/charliecloud/package.nix b/pkgs/by-name/ch/charliecloud/package.nix index dd831bd34ebd2d..335098b9dec0fd 100644 --- a/pkgs/by-name/ch/charliecloud/package.nix +++ b/pkgs/by-name/ch/charliecloud/package.nix @@ -80,7 +80,7 @@ stdenv.mkDerivation rec { passthru.tests.charliecloud = nixosTests.charliecloud; - meta = { + meta = with lib; { description = "User-defined software stacks (UDSS) for high-performance computing (HPC) centers"; longDescription = '' Charliecloud uses Linux user namespaces to run containers with no @@ -90,9 +90,9 @@ stdenv.mkDerivation rec { on offer. ''; homepage = "https://hpc.github.io/charliecloud"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.bzizou ]; - platforms = lib.platforms.linux; + license = licenses.asl20; + maintainers = [ maintainers.bzizou ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ch/chatzone-desktop/package.nix b/pkgs/by-name/ch/chatzone-desktop/package.nix index 56406f63b4f773..5a49d83f64a349 100644 --- a/pkgs/by-name/ch/chatzone-desktop/package.nix +++ b/pkgs/by-name/ch/chatzone-desktop/package.nix @@ -61,14 +61,14 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Ozon corporate messenger"; mainProgram = "chatzone-desktop"; homepage = "https://apps.o3team.ru/"; downloadPage = "https://apps.o3team.ru/"; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; - license = lib.licenses.unfreeRedistributable; - maintainers = [ lib.maintainers.progrm_jarvis ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; + license = licenses.unfreeRedistributable; + maintainers = [ maintainers.progrm_jarvis ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/ch/check-sieve/package.nix b/pkgs/by-name/ch/check-sieve/package.nix index 626d10774ac18e..9560a8a4e6e3cc 100644 --- a/pkgs/by-name/ch/check-sieve/package.nix +++ b/pkgs/by-name/ch/check-sieve/package.nix @@ -52,13 +52,13 @@ stdenv.mkDerivation rec { extraArgs = [ "--version-regex=check-sieve-(.*)" ]; }; - meta = { + meta = with lib; { description = "Syntax checker for mail sieves"; mainProgram = "check-sieve"; homepage = "https://github.com/dburkart/check-sieve"; changelog = "https://github.com/dburkart/check-sieve/blob/master/ChangeLog"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ eilvelia ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ eilvelia ]; }; } diff --git a/pkgs/by-name/ch/checkinstall/package.nix b/pkgs/by-name/ch/checkinstall/package.nix index ec7c274b95dab2..e5247328af7b1e 100644 --- a/pkgs/by-name/ch/checkinstall/package.nix +++ b/pkgs/by-name/ch/checkinstall/package.nix @@ -75,12 +75,12 @@ stdenv.mkDerivation rec { patchelf --set-rpath "" $out/lib/installwatch.so ''; - meta = { + meta = with lib; { homepage = "http://checkinstall.izto.org/"; description = "Tool for automatically generating Slackware, RPM or Debian packages when doing `make install'"; maintainers = [ ]; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Plus; + platforms = platforms.linux; + license = licenses.gpl2Plus; knownVulnerabilities = [ "CVE-2020-25031" ]; diff --git a/pkgs/by-name/ch/chess-clock/package.nix b/pkgs/by-name/ch/chess-clock/package.nix index 232b59c1bdba2a..93e6f5704a4a56 100644 --- a/pkgs/by-name/ch/chess-clock/package.nix +++ b/pkgs/by-name/ch/chess-clock/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Time games of over-the-board chess"; homepage = "https://gitlab.gnome.org/World/chess-clock"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "chess-clock"; - maintainers = lib.teams.gnome-circle.members; + maintainers = teams.gnome-circle.members; }; } diff --git a/pkgs/by-name/ch/chez-racket/shared.nix b/pkgs/by-name/ch/chez-racket/shared.nix index f68063bf1a7fa3..7881ab5fb27127 100644 --- a/pkgs/by-name/ch/chez-racket/shared.nix +++ b/pkgs/by-name/ch/chez-racket/shared.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation ( env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isGNU "-Wno-error=format-truncation"; - meta = { + meta = with lib; { description = "Fork of Chez Scheme for Racket"; homepage = "https://github.com/racket/ChezScheme"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ l-as ]; - platforms = lib.platforms.unix; + license = licenses.asl20; + maintainers = with maintainers; [ l-as ]; + platforms = platforms.unix; }; } ) diff --git a/pkgs/by-name/ch/chez/package.nix b/pkgs/by-name/ch/chez/package.nix index 52ac003255edde..d9dc49eb2811d2 100644 --- a/pkgs/by-name/ch/chez/package.nix +++ b/pkgs/by-name/ch/chez/package.nix @@ -88,12 +88,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { description = "Powerful and incredibly fast R6RS Scheme compiler"; homepage = "https://cisco.github.io/ChezScheme/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ thoughtpolice ]; - platforms = lib.platforms.unix; + license = licenses.asl20; + maintainers = with maintainers; [ thoughtpolice ]; + platforms = platforms.unix; mainProgram = "scheme"; }; }) diff --git a/pkgs/by-name/ch/chibi/package.nix b/pkgs/by-name/ch/chibi/package.nix index 5108d2c707f2e9..0b92eaa676b060 100644 --- a/pkgs/by-name/ch/chibi/package.nix +++ b/pkgs/by-name/ch/chibi/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with lib; { homepage = "https://github.com/ashinn/chibi-scheme"; description = "Small Footprint Scheme for use as a C Extension Language"; - platforms = lib.platforms.all; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.DerGuteMoritz ]; + platforms = platforms.all; + license = licenses.bsd3; + maintainers = [ maintainers.DerGuteMoritz ]; }; } diff --git a/pkgs/by-name/ch/chirp/package.nix b/pkgs/by-name/ch/chirp/package.nix index 092ce48b52dc1b..583d499cd0e2b6 100644 --- a/pkgs/by-name/ch/chirp/package.nix +++ b/pkgs/by-name/ch/chirp/package.nix @@ -72,15 +72,15 @@ python3Packages.buildPythonApplication { ''; }; - meta = { + meta = with lib; { description = "Free, open-source tool for programming your amateur radio"; homepage = "https://chirp.danplanet.com/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ emantor wrmilling nickcao ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ch/chirpstack-concentratord/package.nix b/pkgs/by-name/ch/chirpstack-concentratord/package.nix index 3f80f674047a7e..fcffcbe0365296 100644 --- a/pkgs/by-name/ch/chirpstack-concentratord/package.nix +++ b/pkgs/by-name/ch/chirpstack-concentratord/package.nix @@ -34,12 +34,12 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Concentrator HAL daemon for LoRa gateways"; homepage = "https://www.chirpstack.io/"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.stv0g ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = [ maintainers.stv0g ]; + platforms = platforms.linux; mainProgram = "chirpstack-concentratord"; }; } diff --git a/pkgs/by-name/ch/chirpstack-fuota-server/package.nix b/pkgs/by-name/ch/chirpstack-fuota-server/package.nix index d81d9ccb284e1c..ec1e39ae2c9572 100644 --- a/pkgs/by-name/ch/chirpstack-fuota-server/package.nix +++ b/pkgs/by-name/ch/chirpstack-fuota-server/package.nix @@ -34,11 +34,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "FUOTA server which can be used together with ChirpStack Application Server"; homepage = "https://www.chirpstack.io/"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.stv0g ]; + license = licenses.mit; + maintainers = [ maintainers.stv0g ]; mainProgram = "chirpstack-fuota-server"; }; } diff --git a/pkgs/by-name/ch/chirpstack-gateway-bridge/package.nix b/pkgs/by-name/ch/chirpstack-gateway-bridge/package.nix index b5ca232a7822d3..843bbbea18d3f9 100644 --- a/pkgs/by-name/ch/chirpstack-gateway-bridge/package.nix +++ b/pkgs/by-name/ch/chirpstack-gateway-bridge/package.nix @@ -34,11 +34,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Gateway Bridge abstracts Packet Forwarder protocols into Protobuf or JSON over MQTT"; homepage = "https://www.chirpstack.io/"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.stv0g ]; + license = licenses.mit; + maintainers = [ maintainers.stv0g ]; mainProgram = "chirpstack-gateway-bridge"; }; } diff --git a/pkgs/by-name/ch/chirpstack-mqtt-forwarder/package.nix b/pkgs/by-name/ch/chirpstack-mqtt-forwarder/package.nix index 791e444c311b6d..b1764cb15d89ee 100644 --- a/pkgs/by-name/ch/chirpstack-mqtt-forwarder/package.nix +++ b/pkgs/by-name/ch/chirpstack-mqtt-forwarder/package.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Forwarder which can be installed on the gateway to forward LoRa data over MQTT"; homepage = "https://www.chirpstack.io/"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.stv0g ]; + license = licenses.mit; + maintainers = [ maintainers.stv0g ]; mainProgram = "chirpstack-mqtt-forwarder"; }; } diff --git a/pkgs/by-name/ch/chirpstack-rest-api/package.nix b/pkgs/by-name/ch/chirpstack-rest-api/package.nix index cdc711873a36d6..8fa6c5c3d4749c 100644 --- a/pkgs/by-name/ch/chirpstack-rest-api/package.nix +++ b/pkgs/by-name/ch/chirpstack-rest-api/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "gRPC API to REST proxy for Chirpstack"; homepage = "https://www.chirpstack.io/"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.stv0g ]; + license = licenses.mit; + maintainers = [ maintainers.stv0g ]; mainProgram = "chirpstack-rest-api"; }; } diff --git a/pkgs/by-name/ch/chirpstack-udp-forwarder/package.nix b/pkgs/by-name/ch/chirpstack-udp-forwarder/package.nix index 4d15f04c6d89a7..6a3220ba2233fb 100644 --- a/pkgs/by-name/ch/chirpstack-udp-forwarder/package.nix +++ b/pkgs/by-name/ch/chirpstack-udp-forwarder/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "UDP packet-forwarder for the ChirpStack Concentratord"; homepage = "https://www.chirpstack.io/"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.stv0g ]; + license = licenses.mit; + maintainers = [ maintainers.stv0g ]; mainProgram = "chirpstack-udp-forwarder"; }; } diff --git a/pkgs/by-name/ch/choparp/package.nix b/pkgs/by-name/ch/choparp/package.nix index 600f6e4ee35ab7..28fb05bda449e9 100644 --- a/pkgs/by-name/ch/choparp/package.nix +++ b/pkgs/by-name/ch/choparp/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { homepage = "https://github.com/quinot/choparp"; description = "Proxy ARP daemon"; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; - platforms = lib.platforms.unix; - license = lib.licenses.bsd3; + maintainers = with maintainers; [ bot-wxt1221 ]; + platforms = platforms.unix; + license = licenses.bsd3; mainProgram = "choparp"; }; }) diff --git a/pkgs/by-name/ch/chruby-fish/package.nix b/pkgs/by-name/ch/chruby-fish/package.nix index 620a63c1fa524d..3eb9a77d6e5a54 100644 --- a/pkgs/by-name/ch/chruby-fish/package.nix +++ b/pkgs/by-name/ch/chruby-fish/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { description = "Thin wrapper around chruby to make it work with the Fish shell"; homepage = "https://github.com/JeanMertz/chruby-fish"; - license = lib.licenses.mit; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.cohei ]; + license = licenses.mit; + platforms = platforms.all; + maintainers = [ maintainers.cohei ]; }; } diff --git a/pkgs/by-name/ch/chunkfs/package.nix b/pkgs/by-name/ch/chunkfs/package.nix index 60efcdf476671e..425ea1fea4c5ff 100644 --- a/pkgs/by-name/ch/chunkfs/package.nix +++ b/pkgs/by-name/ch/chunkfs/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { mkdir -p $out/share/man/man1 ''; - meta = { + meta = with lib; { description = "FUSE filesystems for viewing chunksync-style directory trees as a block device and vice versa"; homepage = "http://chunkfs.florz.de/"; - license = lib.licenses.gpl2Plus; - platforms = with lib.platforms; linux; + license = licenses.gpl2Plus; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/ch/chunksync/package.nix b/pkgs/by-name/ch/chunksync/package.nix index fe49a2747df13f..49b9f781e7ecd9 100644 --- a/pkgs/by-name/ch/chunksync/package.nix +++ b/pkgs/by-name/ch/chunksync/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { mkdir -p $out/share/man/man1 ''; - meta = { + meta = with lib; { description = "Space-efficient incremental backups of large files or block devices"; mainProgram = "chunksync"; homepage = "http://chunksync.florz.de/"; - license = lib.licenses.gpl2Plus; - platforms = with lib.platforms; linux; + license = licenses.gpl2Plus; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/ci/ciano/package.nix b/pkgs/by-name/ci/ciano/package.nix index b223970625a97e..329bea384b01a4 100644 --- a/pkgs/by-name/ci/ciano/package.nix +++ b/pkgs/by-name/ci/ciano/package.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation (finalAttrs: { ln -s $out/bin/com.github.robertsanseries.ciano $out/bin/ciano ''; - meta = { + meta = with lib; { homepage = "https://github.com/robertsanseries/ciano"; description = "Multimedia file converter focused on simplicity"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ci/cider-2/package.nix b/pkgs/by-name/ci/cider-2/package.nix index 72be06630aa185..cdc214cd024ed0 100644 --- a/pkgs/by-name/ci/cider-2/package.nix +++ b/pkgs/by-name/ci/cider-2/package.nix @@ -36,12 +36,12 @@ appimageTools.wrapType2 rec { cp -r ${contents}/usr/share/icons $out/share ''; - meta = { + meta = with lib; { description = "Powerful music player that allows you listen to your favorite tracks with style"; homepage = "https://cider.sh"; - license = lib.licenses.unfree; + license = licenses.unfree; mainProgram = "cider-2"; - maintainers = with lib.maintainers; [ itsvic-dev ]; + maintainers = with maintainers; [ itsvic-dev ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/ci/cidrgrep/package.nix b/pkgs/by-name/ci/cidrgrep/package.nix index df286927c489de..5ea5b7d16ef993 100644 --- a/pkgs/by-name/ci/cidrgrep/package.nix +++ b/pkgs/by-name/ci/cidrgrep/package.nix @@ -21,10 +21,10 @@ buildGoModule { mv $out/bin/cmd $out/bin/cidrgrep ''; - meta = { + meta = with lib; { description = "Like grep but for IPv4 CIDRs"; mainProgram = "cidrgrep"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ das_j ]; + license = licenses.mit; + maintainers = with maintainers; [ das_j ]; }; } diff --git a/pkgs/by-name/ci/cimg/package.nix b/pkgs/by-name/ci/cimg/package.nix index 47eaabc6ec0a2b..38919da8d90ca1 100644 --- a/pkgs/by-name/ci/cimg/package.nix +++ b/pkgs/by-name/ci/cimg/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: { inherit gmic gmic-qt; }; - meta = { + meta = with lib; { homepage = "http://cimg.eu/"; description = "Small, open source, C++ toolkit for image processing"; longDescription = '' @@ -48,8 +48,8 @@ stdenv.mkDerivation (finalAttrs: { C++. Due to its generic conception, it can cover a wide range of image processing applications. ''; - license = lib.licenses.cecill-c; + license = licenses.cecill-c; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ci/cinny-desktop/package.nix b/pkgs/by-name/ci/cinny-desktop/package.nix index 5109a12a6eba40..ccf024323bb397 100644 --- a/pkgs/by-name/ci/cinny-desktop/package.nix +++ b/pkgs/by-name/ci/cinny-desktop/package.nix @@ -93,15 +93,15 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.WebKit ]; - meta = { + meta = with lib; { description = "Yet another matrix client for desktop"; homepage = "https://github.com/cinnyapp/cinny-desktop"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ qyriad ryand56 ]; - license = lib.licenses.agpl3Only; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = licenses.agpl3Only; + platforms = platforms.linux ++ platforms.darwin; mainProgram = "cinny"; }; } diff --git a/pkgs/by-name/ci/cinzel/package.nix b/pkgs/by-name/ci/cinzel/package.nix index db499054965e0f..1e039df6464d41 100644 --- a/pkgs/by-name/ci/cinzel/package.nix +++ b/pkgs/by-name/ci/cinzel/package.nix @@ -38,11 +38,11 @@ stdenvNoCC.mkDerivation { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { homepage = "https://github.com/NDISCOVER/Cinzel"; description = "Typeface inspired in First Century Roman Inscriptions"; - license = lib.licenses.ofl; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.marijanp ]; + license = licenses.ofl; + platforms = platforms.all; + maintainers = [ maintainers.marijanp ]; }; } diff --git a/pkgs/by-name/ci/ciopfs/package.nix b/pkgs/by-name/ci/ciopfs/package.nix index b2f0c62fc109b8..b574a09de82562 100644 --- a/pkgs/by-name/ci/ciopfs/package.nix +++ b/pkgs/by-name/ci/ciopfs/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { "PREFIX=" ]; - meta = { + meta = with lib; { homepage = "https://www.brain-dump.org/projects/ciopfs/"; description = "Case-insensitive filesystem layered on top of any other filesystem"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ci/circt/package.nix b/pkgs/by-name/ci/circt/package.nix index fd87023d2bbdae..8997fcb23b9f87 100644 --- a/pkgs/by-name/ci/circt/package.nix +++ b/pkgs/by-name/ci/circt/package.nix @@ -134,15 +134,15 @@ stdenv.mkDerivation rec { llvm = circt-llvm; }; - meta = { + meta = with lib; { description = "Circuit IR compilers and tools"; homepage = "https://circt.org/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ sharzy pineapplehunter sequencer ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ci/ciscoPacketTracer8/package.nix b/pkgs/by-name/ci/ciscoPacketTracer8/package.nix index 4f0801c984b5f6..4aca3d3a0be77b 100644 --- a/pkgs/by-name/ci/ciscoPacketTracer8/package.nix +++ b/pkgs/by-name/ci/ciscoPacketTracer8/package.nix @@ -155,15 +155,15 @@ stdenvNoCC.mkDerivation { }) ]; - meta = { + meta = with lib; { description = "Network simulation tool from Cisco"; homepage = "https://www.netacad.com/courses/packet-tracer"; - license = lib.licenses.unfree; + license = licenses.unfree; mainProgram = "packettracer8"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ gepbird ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/ci/citron/package.nix b/pkgs/by-name/ci/citron/package.nix index b04f6f2a7fe05b..d0d1377b80bc71 100644 --- a/pkgs/by-name/ci/citron/package.nix +++ b/pkgs/by-name/ci/citron/package.nix @@ -29,12 +29,12 @@ rustPlatform.buildRustPackage rec { installManPage doc/citron.1 ''; - meta = { + meta = with lib; { homepage = "https://git.sr.ht/~grtcdr/citron"; description = "System data via on-demand notifications"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ vuimuich ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ vuimuich ]; + platforms = platforms.linux; mainProgram = "citron"; }; } diff --git a/pkgs/by-name/cl/clang-tidy-sarif/package.nix b/pkgs/by-name/cl/clang-tidy-sarif/package.nix index 01a2c1bcfd5e03..13495c3b8cb2af 100644 --- a/pkgs/by-name/cl/clang-tidy-sarif/package.nix +++ b/pkgs/by-name/cl/clang-tidy-sarif/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "A CLI tool to convert clang-tidy diagnostics into SARIF"; homepage = "https://psastras.github.io/sarif-rs"; - maintainers = with lib.maintainers; [ getchoo ]; + maintainers = with maintainers; [ getchoo ]; mainProgram = "clang-tidy-sarif"; - license = lib.licenses.mit; + license = licenses.mit; }; } diff --git a/pkgs/by-name/cl/clang-uml/package.nix b/pkgs/by-name/cl/clang-uml/package.nix index 736f4eb787c879..2ae3ce52810620 100644 --- a/pkgs/by-name/cl/clang-uml/package.nix +++ b/pkgs/by-name/cl/clang-uml/package.nix @@ -78,7 +78,7 @@ stdenv.mkDerivation (finalAttrs: { doInstallCheck = true; versionCheckProgramArg = "--version"; - meta = { + meta = with lib; { description = "Customizable automatic UML diagram generator for C++ based on Clang"; longDescription = '' clang-uml is an automatic C++ to UML class, sequence, package and include diagram generator, driven by YAML configuration files. @@ -86,10 +86,10 @@ stdenv.mkDerivation (finalAttrs: { The configuration file or files for clang-uml define the types and contents of each generated diagram. The diagrams can be generated in PlantUML, MermaidJS and JSON formats. ''; - maintainers = with lib.maintainers; [ eymeric ]; + maintainers = with maintainers; [ eymeric ]; homepage = "https://clang-uml.github.io/"; - license = lib.licenses.asl20; - platforms = lib.platforms.all; + license = licenses.asl20; + platforms = platforms.all; mainProgram = "clang-uml"; }; }) diff --git a/pkgs/by-name/cl/clangbuildanalyzer/package.nix b/pkgs/by-name/cl/clangbuildanalyzer/package.nix index 10796b45ef8dc4..c65bb51c360b8a 100644 --- a/pkgs/by-name/cl/clangbuildanalyzer/package.nix +++ b/pkgs/by-name/cl/clangbuildanalyzer/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation (finalAttrs: { cmake ]; - meta = { + meta = with lib; { description = "Tool for analyzing Clang's -ftime-trace files"; homepage = "https://github.com/aras-p/ClangBuildAnalyzer"; maintainers = [ ]; - license = lib.licenses.unlicense; - platforms = lib.platforms.unix; + license = licenses.unlicense; + platforms = platforms.unix; mainProgram = "ClangBuildAnalyzer"; }; }) diff --git a/pkgs/by-name/cl/clanlib/package.nix b/pkgs/by-name/cl/clanlib/package.nix index 00a684eb139809..d8bce433c59da7 100644 --- a/pkgs/by-name/cl/clanlib/package.nix +++ b/pkgs/by-name/cl/clanlib/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://github.com/sphair/ClanLib"; description = "Cross platform toolkit library with a primary focus on game creation"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nixinator ]; - platforms = with lib.platforms; lib.intersectLists linux (x86 ++ arm ++ aarch64 ++ riscv); + license = licenses.mit; + maintainers = with maintainers; [ nixinator ]; + platforms = with platforms; intersectLists linux (x86 ++ arm ++ aarch64 ++ riscv); }; }) diff --git a/pkgs/by-name/cl/clapgrep/package.nix b/pkgs/by-name/cl/clapgrep/package.nix index 71fbae07627dce..a85b0014467635 100644 --- a/pkgs/by-name/cl/clapgrep/package.nix +++ b/pkgs/by-name/cl/clapgrep/package.nix @@ -62,12 +62,12 @@ rustPlatform.buildRustPackage { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Search through all your files"; homepage = "https://github.com/luleyleo/clapgrep"; - license = with lib.licenses; [ gpl3Only ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ pluiedev ]; + license = with licenses; [ gpl3Only ]; + platforms = platforms.linux; + maintainers = with maintainers; [ pluiedev ]; mainProgram = "clapgrep"; }; } diff --git a/pkgs/by-name/cl/clash-nyanpasu/package.nix b/pkgs/by-name/cl/clash-nyanpasu/package.nix index ec1d9bd16df973..cf7136268e5e2e 100644 --- a/pkgs/by-name/cl/clash-nyanpasu/package.nix +++ b/pkgs/by-name/cl/clash-nyanpasu/package.nix @@ -24,13 +24,13 @@ appimageTools.wrapType2 rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Clash GUI based on tauri"; homepage = "https://github.com/keiko233/clash-nyanpasu"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "clash-nyanpasu"; - maintainers = with lib.maintainers; [ Guanran928 ]; + maintainers = with maintainers; [ Guanran928 ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/cl/clash-rs/package.nix b/pkgs/by-name/cl/clash-rs/package.nix index 5f7d49f4544b4c..8349f509238f11 100644 --- a/pkgs/by-name/cl/clash-rs/package.nix +++ b/pkgs/by-name/cl/clash-rs/package.nix @@ -46,12 +46,12 @@ rustPlatform.buildRustPackage rec { versionCheckHook ]; - meta = { + meta = with lib; { description = "Custom protocol, rule based network proxy software"; homepage = "https://github.com/Watfaq/clash-rs"; mainProgram = "clash"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ aucub ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = licenses.asl20; + maintainers = with maintainers; [ aucub ]; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/by-name/cl/clash-verge-rev/package.nix b/pkgs/by-name/cl/clash-verge-rev/package.nix index 5fccdc27b4aff6..fcaea0d18fca74 100644 --- a/pkgs/by-name/cl/clash-verge-rev/package.nix +++ b/pkgs/by-name/cl/clash-verge-rev/package.nix @@ -67,20 +67,20 @@ let ; }; - meta = { + meta = with lib; { description = "Clash GUI based on tauri"; homepage = "https://github.com/clash-verge-rev/clash-verge-rev"; longDescription = '' Clash GUI based on tauri Setting NixOS option `programs.clash-verge.enable = true` is recommended. ''; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "clash-verge"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ Guanran928 bot-wxt1221 ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; in stdenv.mkDerivation { diff --git a/pkgs/by-name/cl/classads/package.nix b/pkgs/by-name/cl/classads/package.nix index 7902c5672cf467..3cbe83d0ff5289 100644 --- a/pkgs/by-name/cl/classads/package.nix +++ b/pkgs/by-name/cl/classads/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64 ) "-Dfinite=isfinite"; - meta = { + meta = with lib; { homepage = "http://www.cs.wisc.edu/condor/classad/"; description = "Classified Advertisements library provides a generic means for matching resources"; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; + license = licenses.asl20; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/cl/clerk/package.nix b/pkgs/by-name/cl/clerk/package.nix index 5230fa1ef97570..1cd75e83e202a6 100644 --- a/pkgs/by-name/cl/clerk/package.nix +++ b/pkgs/by-name/cl/clerk/package.nix @@ -86,15 +86,15 @@ stdenv.mkDerivation { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { homepage = "https://github.com/carnager/clerk"; description = "MPD client based on rofi/fzf"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "clerk"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ anderspapitto rewine ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/cl/cli-tips/package.nix b/pkgs/by-name/cl/cli-tips/package.nix index f87fb4a9f1b5fa..c6b6953048d8aa 100644 --- a/pkgs/by-name/cl/cli-tips/package.nix +++ b/pkgs/by-name/cl/cli-tips/package.nix @@ -40,12 +40,12 @@ stdenvNoCC.mkDerivation { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "CLI tool that provides useful tips and commands for Linux users"; homepage = "https://github.com/cli-stuff/cli-tips"; - license = lib.licenses.unlicense; - platforms = with lib.platforms; linux ++ darwin ++ windows; - maintainers = with lib.maintainers; [ perchun ]; + license = licenses.unlicense; + platforms = with platforms; linux ++ darwin ++ windows; + maintainers = with maintainers; [ perchun ]; mainProgram = "cli-tips"; }; } diff --git a/pkgs/by-name/cl/cli-visualizer/package.nix b/pkgs/by-name/cl/cli-visualizer/package.nix index 5fa6cd2f51436c..dfab96a032ba02 100644 --- a/pkgs/by-name/cl/cli-visualizer/package.nix +++ b/pkgs/by-name/cl/cli-visualizer/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/vis --set TERM rxvt-256color ''; - meta = { + meta = with lib; { homepage = "https://github.com/dpayne/cli-visualizer"; description = "CLI based audio visualizer"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.matthiasbeyer ]; - platforms = with lib.platforms; linux; + license = licenses.mit; + maintainers = [ maintainers.matthiasbeyer ]; + platforms = with platforms; linux; mainProgram = "vis"; }; } diff --git a/pkgs/by-name/cl/clickup/package.nix b/pkgs/by-name/cl/clickup/package.nix index bd00bb23ea710f..8e28186746e520 100644 --- a/pkgs/by-name/cl/clickup/package.nix +++ b/pkgs/by-name/cl/clickup/package.nix @@ -33,12 +33,12 @@ appimageTools.wrapType2 { done ''; - meta = { + meta = with lib; { description = "All in one project management solution"; homepage = "https://clickup.com"; - license = lib.licenses.unfree; + license = licenses.unfree; mainProgram = "clickup"; - maintainers = with lib.maintainers; [ heisfer ]; + maintainers = with maintainers; [ heisfer ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/cl/clipcat/package.nix b/pkgs/by-name/cl/clipcat/package.nix index f2023b27d4694c..9724059b4db33e 100644 --- a/pkgs/by-name/cl/clipcat/package.nix +++ b/pkgs/by-name/cl/clipcat/package.nix @@ -47,12 +47,12 @@ rustPlatform.buildRustPackage rec { done ''; - meta = { + meta = with lib; { description = "Clipboard Manager written in Rust Programming Language"; homepage = "https://github.com/xrelkd/clipcat"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux ++ lib.platforms.darwin; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + platforms = platforms.linux ++ platforms.darwin; + maintainers = with maintainers; [ xrelkd bot-wxt1221 ]; diff --git a/pkgs/by-name/cl/clipper2/package.nix b/pkgs/by-name/cl/clipper2/package.nix index a2e088acaa7323..93ac728bbced88 100644 --- a/pkgs/by-name/cl/clipper2/package.nix +++ b/pkgs/by-name/cl/clipper2/package.nix @@ -32,15 +32,15 @@ stdenv.mkDerivation rec { ./0001-fix-pc-paths.patch ]; - meta = { + meta = with lib; { description = "Polygon Clipping and Offsetting - C++ Only"; longDescription = '' The Clipper2 library performs intersection, union, difference and XOR boolean operations on both simple and complex polygons. It also performs polygon offsetting. ''; homepage = "https://github.com/AngusJohnson/Clipper2"; - license = lib.licenses.boost; - maintainers = [ lib.maintainers.cadkin ]; - platforms = lib.platforms.all; + license = licenses.boost; + maintainers = [ maintainers.cadkin ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/cl/clipse/package.nix b/pkgs/by-name/cl/clipse/package.nix index 5cda92da789237..e99123d18424e0 100644 --- a/pkgs/by-name/cl/clipse/package.nix +++ b/pkgs/by-name/cl/clipse/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-+9uoB/1g4qucdM8RJRs+fSc5hpcgaCK0GrUOFgHWeKo="; - meta = { + meta = with lib; { description = "Useful clipboard manager TUI for Unix"; homepage = "https://github.com/savedra1/clipse"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "clipse"; - maintainers = [ lib.maintainers.savedra1 ]; + maintainers = [ maintainers.savedra1 ]; }; } diff --git a/pkgs/by-name/cl/cloc/package.nix b/pkgs/by-name/cl/cloc/package.nix index 4841e86bba8760..7bb2706e6985e2 100644 --- a/pkgs/by-name/cl/cloc/package.nix +++ b/pkgs/by-name/cl/cloc/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation { runHook postInstallCheck ''; - meta = { + meta = with lib; { description = "Program that counts lines of source code"; homepage = "https://github.com/AlDanial/cloc"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ rycee ]; + license = licenses.gpl2Plus; + platforms = platforms.all; + maintainers = with maintainers; [ rycee ]; mainProgram = "cloc"; }; } diff --git a/pkgs/by-name/cl/clog-cli/package.nix b/pkgs/by-name/cl/clog-cli/package.nix index 06c498f6762d2c..453ebd9d021b66 100644 --- a/pkgs/by-name/cl/clog-cli/package.nix +++ b/pkgs/by-name/cl/clog-cli/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-yjBgccrkG2D8ZW3Uju4XUhz9Kar50jkJZ75MWhn9j3U="; - meta = { + meta = with lib; { description = "Generate changelogs from local git metadata"; homepage = "https://github.com/clog-tool/clog-cli"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.nthorne ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = [ maintainers.nthorne ]; mainProgram = "clog"; # error: could not compile `rustc-serialize` broken = true; # Added 2024-03-16 diff --git a/pkgs/by-name/cl/cloneit/package.nix b/pkgs/by-name/cl/cloneit/package.nix index 844bbd22eff8df..a121bbbce839f2 100644 --- a/pkgs/by-name/cl/cloneit/package.nix +++ b/pkgs/by-name/cl/cloneit/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "CLI tool to download specific GitHub directories or files"; homepage = "https://github.com/alok8bb/cloneit"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ NotAShelf ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ NotAShelf ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/cl/cloudflare-utils/package.nix b/pkgs/by-name/cl/cloudflare-utils/package.nix index ce3079bcc3d98f..5918b58e110515 100644 --- a/pkgs/by-name/cl/cloudflare-utils/package.nix +++ b/pkgs/by-name/cl/cloudflare-utils/package.nix @@ -16,10 +16,10 @@ buildGoModule rec { vendorHash = "sha256-hoU+GSJHBZtb29jJbeuaFQSn496b1xLzXJtBCbKEcYE="; - meta = { + meta = with lib; { description = "Helpful Cloudflare utility program"; homepage = "https://github.com/Cyb3r-Jak3/cloudflare-utils"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ yelite ]; + license = licenses.asl20; + maintainers = with maintainers; [ yelite ]; }; } diff --git a/pkgs/by-name/cl/cloudlens/package.nix b/pkgs/by-name/cl/cloudlens/package.nix index c36a5a50a13184..c107b34ab1f287 100644 --- a/pkgs/by-name/cl/cloudlens/package.nix +++ b/pkgs/by-name/cl/cloudlens/package.nix @@ -35,11 +35,11 @@ buildGoModule rec { #Some tests require internet access doCheck = false; - meta = { + meta = with lib; { description = "K9s like CLI for AWS and GCP"; homepage = "https://github.com/one2nc/cloudlens"; - license = lib.licenses.apsl20; - maintainers = with lib.maintainers; [ ByteSudoer ]; + license = licenses.apsl20; + maintainers = with maintainers; [ ByteSudoer ]; mainProgram = "cloudlens"; }; } diff --git a/pkgs/by-name/cl/cloudlogoffline/package.nix b/pkgs/by-name/cl/cloudlogoffline/package.nix index 6732d3ec92a254..62002c6bf2390b 100644 --- a/pkgs/by-name/cl/cloudlogoffline/package.nix +++ b/pkgs/by-name/cl/cloudlogoffline/package.nix @@ -75,12 +75,12 @@ stdenv.mkDerivation (self: { }) ]; - meta = { + meta = with lib; { description = "Offline frontend for Cloudlog"; homepage = "https://github.com/myzinsky/cloudLogOffline"; - license = [ lib.licenses.lgpl3 ]; + license = [ licenses.lgpl3 ]; mainProgram = "CloudLogOffline"; - maintainers = [ lib.maintainers.dblsaiko ]; - platforms = lib.platforms.unix; + maintainers = [ maintainers.dblsaiko ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/cl/cloudpan189-go/package.nix b/pkgs/by-name/cl/cloudpan189-go/package.nix index e3f61182d052d2..40367a41683876 100644 --- a/pkgs/by-name/cl/cloudpan189-go/package.nix +++ b/pkgs/by-name/cl/cloudpan189-go/package.nix @@ -40,11 +40,11 @@ buildGo122Module rec { chmod +x $out/bin/cloudpan189-go ''; - meta = { + meta = with lib; { mainProgram = "cloudpan189-go"; - maintainers = with lib.maintainers; [ xddxdd ]; + maintainers = with maintainers; [ xddxdd ]; description = "CLI for China Telecom 189 Cloud Drive service, implemented in Go"; homepage = "https://github.com/tickstep/cloudpan189-go"; - license = lib.licenses.asl20; + license = licenses.asl20; }; } diff --git a/pkgs/by-name/cl/clps2c-compiler/package.nix b/pkgs/by-name/cl/clps2c-compiler/package.nix index ab776f2db4c4a9..1de5bcec5a84a6 100644 --- a/pkgs/by-name/cl/clps2c-compiler/package.nix +++ b/pkgs/by-name/cl/clps2c-compiler/package.nix @@ -65,11 +65,11 @@ buildDotnetModule rec { projectFile = "CLPS2C-Compiler/CLPS2C-Compiler/CLPS2C-Compiler.csproj"; - meta = { + meta = with lib; { homepage = "https://github.com/NiV-L-A/CLPS2C-Compiler"; description = "Compiler for CLPS2C, a domain-specific language built specifically for writing PS2 cheat codes"; mainProgram = "CLPS2C-Compiler"; - maintainers = [ lib.maintainers.gigahawk ]; - license = lib.licenses.gpl3Only; + maintainers = [ maintainers.gigahawk ]; + license = licenses.gpl3Only; }; } diff --git a/pkgs/by-name/cl/clusternet/package.nix b/pkgs/by-name/cl/clusternet/package.nix index 02e0648ee68871..8a96e5d70fe511 100644 --- a/pkgs/by-name/cl/clusternet/package.nix +++ b/pkgs/by-name/cl/clusternet/package.nix @@ -22,10 +22,10 @@ buildGoModule rec { "-w" ]; - meta = { + meta = with lib; { description = "CNCF Sandbox Project for managing your Kubernetes clusters"; homepage = "https://github.com/clusternet/clusternet"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ genga898 ]; + license = licenses.asl20; + maintainers = with maintainers; [ genga898 ]; }; } diff --git a/pkgs/by-name/cl/clutter-gtk/package.nix b/pkgs/by-name/cl/clutter-gtk/package.nix index 30a4607056c445..ff2a9ac850ba15 100644 --- a/pkgs/by-name/cl/clutter-gtk/package.nix +++ b/pkgs/by-name/cl/clutter-gtk/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { }; }; - meta = { + meta = with lib; { description = "Clutter-GTK"; homepage = "http://www.clutter-project.org/"; - license = lib.licenses.lgpl2Plus; + license = licenses.lgpl2Plus; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/cm/cmakerc/package.nix b/pkgs/by-name/cm/cmakerc/package.nix index d7635c735f146e..041fda95e50e8c 100644 --- a/pkgs/by-name/cm/cmakerc/package.nix +++ b/pkgs/by-name/cm/cmakerc/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Resource Compiler in a Single CMake Script"; homepage = "https://github.com/vector-of-bool/cmrc"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ guekka ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ guekka ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/cn/cnsprcy/package.nix b/pkgs/by-name/cn/cnsprcy/package.nix index d4dcf267d5d7cb..cc16ae4c8f463d 100644 --- a/pkgs/by-name/cn/cnsprcy/package.nix +++ b/pkgs/by-name/cn/cnsprcy/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage rec { buildInputs = [ sqlite ]; - meta = { + meta = with lib; { description = "End to end encrypted connections between trusted devices"; homepage = "https://git.sr.ht/~xaos/cnsprcy"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ supinie ]; + license = licenses.gpl3; + maintainers = with maintainers; [ supinie ]; mainProgram = "cnspr"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/co/cobang/package.nix b/pkgs/by-name/co/cobang/package.nix index 6d1c76f17c49d2..9deec9af19891a 100644 --- a/pkgs/by-name/co/cobang/package.nix +++ b/pkgs/by-name/co/cobang/package.nix @@ -86,15 +86,15 @@ python3Packages.buildPythonApplication rec { --set GDK_PIXBUF_MODULE_FILE "${librsvg.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache" ''; - meta = { + meta = with lib; { description = "QR code scanner desktop app for Linux"; homepage = "https://github.com/hongquan/CoBang"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + maintainers = with maintainers; [ aleksana dvaerum ]; mainProgram = "cobang"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/co/coc-clangd/package.nix b/pkgs/by-name/co/coc-clangd/package.nix index 032df2f18d7efa..f43d1ff9c29790 100644 --- a/pkgs/by-name/co/coc-clangd/package.nix +++ b/pkgs/by-name/co/coc-clangd/package.nix @@ -18,10 +18,10 @@ buildNpmPackage { npmDepsHash = "sha256-93MEug2eEL/Hum+RFmXx0JYO6jUygF8QRmL5nTTFyrs="; - meta = { + meta = with lib; { description = "clangd extension for coc.nvim"; homepage = "https://github.com/clangd/coc-clangd"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ pyrox0 ]; + license = licenses.asl20; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/by-name/co/coc-css/package.nix b/pkgs/by-name/co/coc-css/package.nix index bf595960b7e85b..9eee2c9b7f9e20 100644 --- a/pkgs/by-name/co/coc-css/package.nix +++ b/pkgs/by-name/co/coc-css/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Css language server extension for coc.nvim"; homepage = "https://github.com/neoclide/coc-css"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pyrox0 ]; + license = licenses.mit; + maintainers = with maintainers; [ pyrox0 ]; }; }) diff --git a/pkgs/by-name/co/coc-diagnostic/package.nix b/pkgs/by-name/co/coc-diagnostic/package.nix index 6c67d2cb01497a..988af14acf3ec0 100644 --- a/pkgs/by-name/co/coc-diagnostic/package.nix +++ b/pkgs/by-name/co/coc-diagnostic/package.nix @@ -35,10 +35,10 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "diagnostic-languageserver extension for coc.nvim"; homepage = "https://github.com/iamcco/coc-diagnostic"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pyrox0 ]; + license = licenses.mit; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/by-name/co/coc-pyright/package.nix b/pkgs/by-name/co/coc-pyright/package.nix index 34bcf59b756dda..b5b716f1ab4231 100644 --- a/pkgs/by-name/co/coc-pyright/package.nix +++ b/pkgs/by-name/co/coc-pyright/package.nix @@ -18,10 +18,10 @@ buildNpmPackage { npmDepsHash = "sha256-cTAt02RdQbKurP6H/JWwVp+VpoIysbFt9le9R69+DL4="; - meta = { + meta = with lib; { description = "Pyright extension for coc.nvim"; homepage = "https://github.com/fannheyward/coc-pyright"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pyrox0 ]; + license = licenses.mit; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/by-name/co/coc-toml/package.nix b/pkgs/by-name/co/coc-toml/package.nix index 996b48c5f16595..eb20dcce225e8f 100644 --- a/pkgs/by-name/co/coc-toml/package.nix +++ b/pkgs/by-name/co/coc-toml/package.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-jZZUrpi3Bg4qQ/NyUDPW7zNuUz/399wAf+gdeZHp+B0="; }; - meta = { + meta = with lib; { description = "toml extension for coc.nvim"; homepage = "https://github.com/kkiyama117/coc-toml"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ soopyc ]; + license = licenses.mit; + maintainers = with maintainers; [ soopyc ]; }; }) diff --git a/pkgs/by-name/co/code-cursor/package.nix b/pkgs/by-name/co/code-cursor/package.nix index ad1bb1e7ff3390..41bc1f9fc7a46b 100644 --- a/pkgs/by-name/co/code-cursor/package.nix +++ b/pkgs/by-name/co/code-cursor/package.nix @@ -59,13 +59,13 @@ stdenvNoCC.mkDerivation { fi ''; - meta = { + meta = with lib; { description = "AI-powered code editor built on vscode"; homepage = "https://cursor.com"; changelog = "https://cursor.com/changelog"; - license = lib.licenses.unfree; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ sarahec ]; + license = licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ sarahec ]; platforms = [ "x86_64-linux" ]; mainProgram = "cursor"; }; diff --git a/pkgs/by-name/co/code2prompt/package.nix b/pkgs/by-name/co/code2prompt/package.nix index 03c5e6e7b0a814..a4fa07a358509f 100644 --- a/pkgs/by-name/co/code2prompt/package.nix +++ b/pkgs/by-name/co/code2prompt/package.nix @@ -37,11 +37,11 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.AppKit ]; - meta = { + meta = with lib; { description = "A CLI tool that converts your codebase into a single LLM prompt with a source tree, prompt templating, and token counting"; homepage = "https://github.com/mufeedvh/code2prompt"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ heisfer ]; + license = licenses.mit; + maintainers = with maintainers; [ heisfer ]; mainProgram = "code2prompt"; }; } diff --git a/pkgs/by-name/co/codebuff/package.nix b/pkgs/by-name/co/codebuff/package.nix index 8251bfce4b85ff..13523c28720110 100644 --- a/pkgs/by-name/co/codebuff/package.nix +++ b/pkgs/by-name/co/codebuff/package.nix @@ -23,12 +23,12 @@ buildNpmPackage rec { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { description = "Use natural language to edit your codebase and run commands from your terminal faster"; homepage = "https://www.codebuff.com/"; downloadPage = "https://www.npmjs.com/package/codebuff"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.malo ]; + license = licenses.mit; + maintainers = [ maintainers.malo ]; mainProgram = "codebuff"; }; } diff --git a/pkgs/by-name/co/codecov-cli/package.nix b/pkgs/by-name/co/codecov-cli/package.nix index 63f7a7ce04578d..7a991b2eae13a6 100644 --- a/pkgs/by-name/co/codecov-cli/package.nix +++ b/pkgs/by-name/co/codecov-cli/package.nix @@ -35,10 +35,10 @@ python3Packages.buildPythonApplication rec { tree-sitter ]; - meta = { + meta = with lib; { description = "Codecov Command Line Interface"; homepage = "https://github.com/codecov/codecov-cli"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ veehaitch ]; + license = licenses.asl20; + maintainers = with maintainers; [ veehaitch ]; }; } diff --git a/pkgs/by-name/co/coffeescript/package.nix b/pkgs/by-name/co/coffeescript/package.nix index 0153c233d76acb..f62f7e1d32630a 100644 --- a/pkgs/by-name/co/coffeescript/package.nix +++ b/pkgs/by-name/co/coffeescript/package.nix @@ -23,11 +23,11 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = { + meta = with lib; { description = "Little language that compiles into JavaScript"; homepage = "https://github.com/jashkenas/coffeescript"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "coffee"; - maintainers = with lib.maintainers; [ cdmistman ]; + maintainers = with maintainers; [ cdmistman ]; }; } diff --git a/pkgs/by-name/co/collabora-online/package.nix b/pkgs/by-name/co/collabora-online/package.nix index 62c33c455c3271..e932171add5131 100644 --- a/pkgs/by-name/co/collabora-online/package.nix +++ b/pkgs/by-name/co/collabora-online/package.nix @@ -95,11 +95,11 @@ stdenv.mkDerivation (finalAttrs: { updateScript = ./update.sh; }; - meta = { + meta = with lib; { description = "Collaborative online office suite based on LibreOffice technology"; - license = lib.licenses.mpl20; - maintainers = [ lib.maintainers.xzfc ]; + license = licenses.mpl20; + maintainers = [ maintainers.xzfc ]; homepage = "https://www.collaboraonline.com"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/co/collada2gltf/package.nix b/pkgs/by-name/co/collada2gltf/package.nix index c3c14341910146..1812e3025aed42 100644 --- a/pkgs/by-name/co/collada2gltf/package.nix +++ b/pkgs/by-name/co/collada2gltf/package.nix @@ -28,12 +28,12 @@ gcc10Stdenv.mkDerivation rec { cmake ]; - meta = { + meta = with lib; { description = "Command-line tool to convert COLLADA (.dae) files to glTF"; homepage = "https://github.com/KhronosGroup/COLLADA2GLTF"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "COLLADA2GLTF"; - maintainers = with lib.maintainers; [ shaddydc ]; - platforms = with lib.platforms; unix ++ windows; + maintainers = with maintainers; [ shaddydc ]; + platforms = with platforms; unix ++ windows; }; } diff --git a/pkgs/by-name/co/collapseos-cvm/package.nix b/pkgs/by-name/co/collapseos-cvm/package.nix index 3d5a89de174427..08d71caaea2e54 100644 --- a/pkgs/by-name/co/collapseos-cvm/package.nix +++ b/pkgs/by-name/co/collapseos-cvm/package.nix @@ -23,13 +23,13 @@ stdenv.mkDerivation rec { find . -type f -executable -exec install -Dt $out/bin {} \; runHook postInstall; ''; - meta = { + meta = with lib; { description = "Virtual machine for Collapse OS (Forth operating system)"; changelog = "http://collapseos.org/files/CHANGES.txt"; downloadPage = "http://collapseos.org/files/"; homepage = "http://collapseos.org/"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ehmry ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ ehmry ]; mainProgram = "cos-serial"; }; } diff --git a/pkgs/by-name/co/collector/package.nix b/pkgs/by-name/co/collector/package.nix index 51efca694fa32b..f2cea437b53e43 100644 --- a/pkgs/by-name/co/collector/package.nix +++ b/pkgs/by-name/co/collector/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { description = "Drag multiple files and folders on to Collection window, drop them anywhere!"; mainProgram = "collector"; homepage = "https://github.com/mijorus/collector"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ CaptainJawZ ]; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ CaptainJawZ ]; }; }) diff --git a/pkgs/by-name/co/colo/package.nix b/pkgs/by-name/co/colo/package.nix index cd84c3f1cef813..c710674f04d2dd 100644 --- a/pkgs/by-name/co/colo/package.nix +++ b/pkgs/by-name/co/colo/package.nix @@ -17,10 +17,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-HjEYC7FUHpxNWy/nUVO65O3f/RdT9hYZc3TpcqP3SSM="; - meta = { + meta = with lib; { description = "Displays colors in various color spaces"; homepage = "https://aloso.github.io/colo"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ llakala ]; + license = licenses.mit; + maintainers = with maintainers; [ llakala ]; }; } diff --git a/pkgs/by-name/co/coloquinte/package.nix b/pkgs/by-name/co/coloquinte/package.nix index 8a326beca66b53..3dc1b5948e9408 100644 --- a/pkgs/by-name/co/coloquinte/package.nix +++ b/pkgs/by-name/co/coloquinte/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation (finalAttrs: { boost ]; - meta = { + meta = with lib; { description = "Placement library for electronic circuits"; homepage = "https://github.com/Coloquinte/PlaceRoute"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.coloquinte ]; + license = licenses.mit; + platforms = platforms.linux; + maintainers = [ maintainers.coloquinte ]; }; }) diff --git a/pkgs/by-name/co/colorgrind/package.nix b/pkgs/by-name/co/colorgrind/package.nix index 70b9ce0d16e442..9e99a939fcb8fa 100644 --- a/pkgs/by-name/co/colorgrind/package.nix +++ b/pkgs/by-name/co/colorgrind/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Perl wrapper for Valgrind with ANSI escape code colored output"; homepage = "http://renatocf.github.io/colorgrind/"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ pluiedev ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ pluiedev ]; mainProgram = "colorgrind"; }; } diff --git a/pkgs/by-name/co/comical/package.nix b/pkgs/by-name/co/comical/package.nix index 5443b5231cfc6b..0092f675eb0862 100644 --- a/pkgs/by-name/co/comical/package.nix +++ b/pkgs/by-name/co/comical/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { mkdir -p $out/bin ''; - meta = { + meta = with lib; { description = "Viewer of CBR and CBZ files, often used to store scanned comics"; homepage = "https://comical.sourceforge.net/"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ wegank ]; - platforms = with lib.platforms; unix; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ wegank ]; + platforms = with platforms; unix; mainProgram = "comical"; }; } diff --git a/pkgs/by-name/co/commafeed/package.nix b/pkgs/by-name/co/commafeed/package.nix index 297d36ddb1793a..ca40a030638b35 100644 --- a/pkgs/by-name/co/commafeed/package.nix +++ b/pkgs/by-name/co/commafeed/package.nix @@ -96,11 +96,11 @@ maven.buildMavenPackage { passthru.tests = nixosTests.commafeed; - meta = { + meta = with lib; { description = "Google Reader inspired self-hosted RSS reader"; homepage = "https://github.com/Athou/commafeed"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "commafeed"; - maintainers = [ lib.maintainers.raroh73 ]; + maintainers = [ maintainers.raroh73 ]; }; } diff --git a/pkgs/by-name/co/commit/package.nix b/pkgs/by-name/co/commit/package.nix index 639d9275357d12..ec5062abe7d370 100644 --- a/pkgs/by-name/co/commit/package.nix +++ b/pkgs/by-name/co/commit/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Commit message editor"; homepage = "https://github.com/sonnyp/Commit"; - license = lib.licenses.gpl3Only; - maintainers = lib.teams.gnome-circle.members; + license = licenses.gpl3Only; + maintainers = teams.gnome-circle.members; mainProgram = "re.sonny.Commit"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/co/commonsBcel/package.nix b/pkgs/by-name/co/commonsBcel/package.nix index 3be849e9332e5c..1640ed26be3646 100644 --- a/pkgs/by-name/co/commonsBcel/package.nix +++ b/pkgs/by-name/co/commonsBcel/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { cp bcel-${version}.jar $out/share/java/ ''; - meta = { + meta = with lib; { homepage = "https://commons.apache.org/proper/commons-bcel/"; description = "Gives users a convenient way to analyze, create, and manipulate (binary) Java class files"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - maintainers = with lib.maintainers; [ copumpkin ]; - license = lib.licenses.asl20; - platforms = with lib.platforms; unix; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + maintainers = with maintainers; [ copumpkin ]; + license = licenses.asl20; + platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/co/commonsBsf/package.nix b/pkgs/by-name/co/commonsBsf/package.nix index 1050cca9c6eeb5..afaea84050c1ee 100644 --- a/pkgs/by-name/co/commonsBsf/package.nix +++ b/pkgs/by-name/co/commonsBsf/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { cp lib/bsf.jar $out/share/java/ ''; - meta = { + meta = with lib; { description = "Interface to scripting languages, including JSR-223"; homepage = "https://commons.apache.org/proper/commons-bsf/"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.asl20; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/co/commonsCompress/package.nix b/pkgs/by-name/co/commonsCompress/package.nix index 73ca1feda9b842..0008133505c16e 100644 --- a/pkgs/by-name/co/commonsCompress/package.nix +++ b/pkgs/by-name/co/commonsCompress/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { cp *.jar $out/share/java/ ''; - meta = { + meta = with lib; { homepage = "https://commons.apache.org/proper/commons-compress"; description = "Allows manipulation of ar, cpio, Unix dump, tar, zip, gzip, XZ, Pack200, bzip2, 7z, arj, lzma, snappy, DEFLATE and Z files"; - maintainers = with lib.maintainers; [ copumpkin ]; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.asl20; - platforms = with lib.platforms; unix; + maintainers = with maintainers; [ copumpkin ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.asl20; + platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/co/commonsDaemon/package.nix b/pkgs/by-name/co/commonsDaemon/package.nix index a5a8c84c66d71f..21ab26743d167c 100644 --- a/pkgs/by-name/co/commonsDaemon/package.nix +++ b/pkgs/by-name/co/commonsDaemon/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { cp *.jar $out/share/java/ ''; - meta = { + meta = with lib; { homepage = "https://commons.apache.org/proper/commons-daemon"; description = "Apache Commons Daemon software is a set of utilities and Java support classes for running Java applications as server processes"; - maintainers = with lib.maintainers; [ rsynnest ]; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.asl20; - platforms = with lib.platforms; unix; + maintainers = with maintainers; [ rsynnest ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.asl20; + platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/co/commonsFileUpload/package.nix b/pkgs/by-name/co/commonsFileUpload/package.nix index e21b8078c2a2c5..6c299d36a81414 100644 --- a/pkgs/by-name/co/commonsFileUpload/package.nix +++ b/pkgs/by-name/co/commonsFileUpload/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { cp commons-fileupload-*-bin/*.jar $out/share/java/ ''; - meta = { + meta = with lib; { homepage = "https://commons.apache.org/proper/commons-fileupload"; description = "Makes it easy to add robust, high-performance, file upload capability to your servlets and web applications"; - maintainers = with lib.maintainers; [ copumpkin ]; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.asl20; - platforms = with lib.platforms; unix; + maintainers = with maintainers; [ copumpkin ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.asl20; + platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/co/commonsIo/package.nix b/pkgs/by-name/co/commonsIo/package.nix index 92156099c10311..ab2cf47d708d30 100644 --- a/pkgs/by-name/co/commonsIo/package.nix +++ b/pkgs/by-name/co/commonsIo/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { cp *.jar $out/share/java/ ''; - meta = { + meta = with lib; { homepage = "https://commons.apache.org/proper/commons-io"; description = "Library of utilities to assist with developing IO functionality"; - maintainers = with lib.maintainers; [ copumpkin ]; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.asl20; - platforms = with lib.platforms; unix; + maintainers = with maintainers; [ copumpkin ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.asl20; + platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/co/commonsLang/package.nix b/pkgs/by-name/co/commonsLang/package.nix index 44850f72f064dd..be7a05a29fe3ca 100644 --- a/pkgs/by-name/co/commonsLang/package.nix +++ b/pkgs/by-name/co/commonsLang/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Provides additional methods to manipulate standard Java library classes"; homepage = "https://commons.apache.org/proper/commons-lang"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ copumpkin ]; - platforms = with lib.platforms; unix; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = licenses.asl20; + maintainers = with maintainers; [ copumpkin ]; + platforms = with platforms; unix; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; }; }) diff --git a/pkgs/by-name/co/commonsLogging/package.nix b/pkgs/by-name/co/commonsLogging/package.nix index b9bbaacf5d4354..21701337318e07 100644 --- a/pkgs/by-name/co/commonsLogging/package.nix +++ b/pkgs/by-name/co/commonsLogging/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { cp commons-logging-*.jar $out/share/java/ ''; - meta = { + meta = with lib; { description = "Wrapper around a variety of logging API implementations"; homepage = "https://commons.apache.org/proper/commons-logging"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.asl20; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/co/commonsMath/package.nix b/pkgs/by-name/co/commonsMath/package.nix index 0353b1dc682b36..f25b0492ef5e4f 100644 --- a/pkgs/by-name/co/commonsMath/package.nix +++ b/pkgs/by-name/co/commonsMath/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { cp *.jar $out/share/java/ ''; - meta = { + meta = with lib; { homepage = "https://commons.apache.org/proper/commons-math/"; description = "Library of lightweight, self-contained mathematics and statistics components"; - maintainers = with lib.maintainers; [ copumpkin ]; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.asl20; - platforms = with lib.platforms; unix; + maintainers = with maintainers; [ copumpkin ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.asl20; + platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/co/compiledb/package.nix b/pkgs/by-name/co/compiledb/package.nix index 47fa3a007ecd71..0bb594b2efbe5d 100644 --- a/pkgs/by-name/co/compiledb/package.nix +++ b/pkgs/by-name/co/compiledb/package.nix @@ -35,11 +35,11 @@ python3Packages.buildPythonApplication rec { doCheck = true; - meta = { + meta = with lib; { description = "Tool for generating Clang's JSON Compilation Database files"; mainProgram = "compiledb"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; homepage = "https://github.com/nickdiego/compiledb"; - maintainers = with lib.maintainers; [ sigmanificient ]; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/by-name/co/completely/package.nix b/pkgs/by-name/co/completely/package.nix index 47e6189bd53043..312ae9e625c2a0 100644 --- a/pkgs/by-name/co/completely/package.nix +++ b/pkgs/by-name/co/completely/package.nix @@ -12,12 +12,12 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "completely"; - meta = { + meta = with lib; { description = "Generate bash completion scripts using a simple configuration file"; homepage = "https://github.com/DannyBen/completely"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ zendo ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ zendo ]; mainProgram = "completely"; }; } diff --git a/pkgs/by-name/co/conda/package.nix b/pkgs/by-name/co/conda/package.nix index 9fbfa31b90ca0c..f34a5e966d551b 100644 --- a/pkgs/by-name/co/conda/package.nix +++ b/pkgs/by-name/co/conda/package.nix @@ -126,7 +126,7 @@ buildFHSEnv { runScript = "bash -l"; - meta = { + meta = with lib; { description = "Package manager for Python"; mainProgram = "conda-shell"; homepage = "https://conda.io"; @@ -134,7 +134,7 @@ buildFHSEnv { "aarch64-linux" "x86_64-linux" ]; - license = with lib.licenses; [ bsd3 ]; - maintainers = with lib.maintainers; [ jluttine ]; + license = with licenses; [ bsd3 ]; + maintainers = with maintainers; [ jluttine ]; }; } diff --git a/pkgs/by-name/co/confd/package.nix b/pkgs/by-name/co/confd/package.nix index aff9d6d5942f42..5e36d6a23f5e20 100644 --- a/pkgs/by-name/co/confd/package.nix +++ b/pkgs/by-name/co/confd/package.nix @@ -24,11 +24,11 @@ buildGoModule { "-w" ]; - meta = { + meta = with lib; { description = "Manage local application configuration files using templates and data from etcd or consul"; homepage = "https://github.com/kelseyhightower/confd"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.zimbatm ]; + license = licenses.mit; + maintainers = [ maintainers.zimbatm ]; mainProgram = "confd"; }; } diff --git a/pkgs/by-name/co/config-store/package.nix b/pkgs/by-name/co/config-store/package.nix index af50410e378d19..f53b76f33e8062 100644 --- a/pkgs/by-name/co/config-store/package.nix +++ b/pkgs/by-name/co/config-store/package.nix @@ -16,15 +16,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-tEhk6vDan5uaP1vvKanB+juKsGJndrJPP67kudds24s="; - meta = { + meta = with lib; { description = "Simple key-value store designed to be used from shell scripts written in Rust"; homepage = "https://github.com/DOD-101/config-store"; mainProgram = "config-store"; - license = with lib.licenses; [ + license = with licenses; [ mit asl20 ]; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ dod-101 ]; + platforms = platforms.unix; + maintainers = with maintainers; [ dod-101 ]; }; } diff --git a/pkgs/by-name/co/confluent-platform/package.nix b/pkgs/by-name/co/confluent-platform/package.nix index 05f1395ceda59c..b91eb014b52bf7 100644 --- a/pkgs/by-name/co/confluent-platform/package.nix +++ b/pkgs/by-name/co/confluent-platform/package.nix @@ -52,14 +52,14 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Confluent event streaming platform based on Apache Kafka"; homepage = "https://www.confluent.io/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ zoedsoupe autophagy ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/co/conglomerate/package.nix b/pkgs/by-name/co/conglomerate/package.nix index 0d140914638e7a..1d6722b8f5e01b 100644 --- a/pkgs/by-name/co/conglomerate/package.nix +++ b/pkgs/by-name/co/conglomerate/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with lib; { homepage = "https://github.com/BIC-MNI/conglomerate"; description = "More command-line utilities for working with MINC files"; - maintainers = with lib.maintainers; [ bcdarwin ]; - platforms = lib.platforms.unix; - license = lib.licenses.hpndUc; + maintainers = with maintainers; [ bcdarwin ]; + platforms = platforms.unix; + license = licenses.hpndUc; }; } diff --git a/pkgs/by-name/co/connect/package.nix b/pkgs/by-name/co/connect/package.nix index 3e1834c11e8c7a..9d59adb2522564 100644 --- a/pkgs/by-name/co/connect/package.nix +++ b/pkgs/by-name/co/connect/package.nix @@ -19,16 +19,16 @@ stdenv.mkDerivation rec { install -D -m ugo=rx connect $out/bin/connect ''; - meta = { + meta = with lib; { description = "Make network connection via SOCKS and https proxy"; longDescription = '' This proxy traversal tool is intended to assist OpenSSH (via ProxyCommand in ~/.ssh/config) and GIT (via $GIT_PROXY_COMMAND) utilize SOCKS and https proxies. ''; homepage = "https://bitbucket.org/gotoh/connect/wiki/Home"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.gnu ++ lib.platforms.linux ++ lib.platforms.darwin; - maintainers = with lib.maintainers; [ jcumming ]; + license = licenses.gpl2Plus; + platforms = platforms.gnu ++ platforms.linux ++ platforms.darwin; + maintainers = with maintainers; [ jcumming ]; mainProgram = "connect"; }; } diff --git a/pkgs/by-name/co/connman/package.nix b/pkgs/by-name/co/connman/package.nix index 44737f4f49eec9..b29b55845f6e33 100644 --- a/pkgs/by-name/co/connman/package.nix +++ b/pkgs/by-name/co/connman/package.nix @@ -176,12 +176,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.connman = nixosTests.connman; - meta = { + meta = with lib; { description = "Daemon for managing internet connections"; homepage = "https://git.kernel.org/pub/scm/network/connman/connman.git/about/"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; mainProgram = "connmanctl"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/co/connman_dmenu/package.nix b/pkgs/by-name/co/connman_dmenu/package.nix index b986c9a405962c..5d4f16cf65cc4e 100644 --- a/pkgs/by-name/co/connman_dmenu/package.nix +++ b/pkgs/by-name/co/connman_dmenu/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation { cp connman_dmenu $out/bin/ ''; - meta = { + meta = with lib; { description = "Dmenu wrapper for connmann"; mainProgram = "connman_dmenu"; homepage = "https://github.com/march-linux/connman_dmenu"; - license = lib.licenses.free; - maintainers = [ lib.maintainers.magnetophon ]; - platforms = lib.platforms.all; + license = licenses.free; + maintainers = [ maintainers.magnetophon ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/co/container-structure-test/package.nix b/pkgs/by-name/co/container-structure-test/package.nix index c640369c381d5f..cddefc3b100baa 100644 --- a/pkgs/by-name/co/container-structure-test/package.nix +++ b/pkgs/by-name/co/container-structure-test/package.nix @@ -38,13 +38,13 @@ buildGoModule rec { command = "${lib.getExe container-structure-test} version"; }; - meta = { + meta = with lib; { homepage = "https://github.com/GoogleContainerTools/container-structure-test"; description = "Framework to validate the structure of a container image"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ rubenhoenle ]; - platforms = lib.platforms.darwin ++ lib.platforms.linux; + license = licenses.asl20; + maintainers = with maintainers; [ rubenhoenle ]; + platforms = platforms.darwin ++ platforms.linux; mainProgram = "container-structure-test"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/co/contrast/package.nix b/pkgs/by-name/co/contrast/package.nix index adb03846289332..4c340475935303 100644 --- a/pkgs/by-name/co/contrast/package.nix +++ b/pkgs/by-name/co/contrast/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Checks whether the contrast between two colors meet the WCAG requirements"; homepage = "https://gitlab.gnome.org/World/design/contrast"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ getchoo ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ getchoo ]; mainProgram = "contrast"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/co/convbin/package.nix b/pkgs/by-name/co/convbin/package.nix index 512c0d6b889db3..cad61c779cc1fe 100644 --- a/pkgs/by-name/co/convbin/package.nix +++ b/pkgs/by-name/co/convbin/package.nix @@ -35,16 +35,16 @@ stdenv.mkDerivation rec { install -Dm755 bin/convbin $out/bin/convbin ''; - meta = { + meta = with lib; { description = "Converts files to other formats"; longDescription = '' This program is used to convert files to other formats, specifically for the TI84+CE and related calculators. ''; homepage = "https://github.com/mateoconlechuga/convbin"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ clevor ]; - platforms = lib.platforms.all; + license = licenses.bsd3; + maintainers = with maintainers; [ clevor ]; + platforms = platforms.all; mainProgram = "convbin"; }; } diff --git a/pkgs/by-name/co/convchain/package.nix b/pkgs/by-name/co/convchain/package.nix index 544887e01947bc..29e939c76ef841 100644 --- a/pkgs/by-name/co/convchain/package.nix +++ b/pkgs/by-name/co/convchain/package.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { chmod a+x "$out/bin/convchainfast" ''; buildInputs = [ mono ]; - meta = { + meta = with lib; { description = "Bitmap generation from a single example with convolutions and MCMC"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/co/convertlit/package.nix b/pkgs/by-name/co/convertlit/package.nix index 6bc9cd4ffaef2d..ef05995a23bba5 100644 --- a/pkgs/by-name/co/convertlit/package.nix +++ b/pkgs/by-name/co/convertlit/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { cp clit $out/bin ''; - meta = { + meta = with lib; { homepage = "http://www.convertlit.com/"; description = "Tool for converting Microsoft Reader ebooks to more open formats"; mainProgram = "clit"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/co/convos/package.nix b/pkgs/by-name/co/convos/package.nix index 356d08b3635bea..ea65871499b764 100644 --- a/pkgs/by-name/co/convos/package.nix +++ b/pkgs/by-name/co/convos/package.nix @@ -117,11 +117,11 @@ perlPackages.buildPerlPackage rec { passthru.tests = nixosTests.convos; - meta = { + meta = with lib; { homepage = "https://convos.chat"; description = "Convos is the simplest way to use IRC in your browser"; mainProgram = "convos"; - license = lib.licenses.artistic2; - maintainers = with lib.maintainers; [ sgo ]; + license = licenses.artistic2; + maintainers = with maintainers; [ sgo ]; }; } diff --git a/pkgs/by-name/co/copacetic/package.nix b/pkgs/by-name/co/copacetic/package.nix index 04a415919bdcd9..27c326bc9a4843 100644 --- a/pkgs/by-name/co/copacetic/package.nix +++ b/pkgs/by-name/co/copacetic/package.nix @@ -58,11 +58,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://project-copacetic.github.io/copacetic/"; description = "Tool for directly patching vulnerabilities in container images"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "copa"; - maintainers = with lib.maintainers; [ bmanuel ]; + maintainers = with maintainers; [ bmanuel ]; }; } diff --git a/pkgs/by-name/co/cope/package.nix b/pkgs/by-name/co/cope/package.nix index d1aed0b02c5b71..45a84f73cd990f 100644 --- a/pkgs/by-name/co/cope/package.nix +++ b/pkgs/by-name/co/cope/package.nix @@ -32,13 +32,13 @@ perlPackages.buildPerlPackage { rm -r $out/${perlPackages.perl.libPrefix}/${perlPackages.perl.version}/auto ''; - meta = { + meta = with lib; { description = "A colourful wrapper for terminal programs"; homepage = "https://github.com/deftdawg/cope"; - license = with lib.licenses; [ + license = with licenses; [ artistic1 gpl1Plus ]; - maintainers = with lib.maintainers; [ deftdawg ]; + maintainers = with maintainers; [ deftdawg ]; }; } diff --git a/pkgs/by-name/co/coppwr/package.nix b/pkgs/by-name/co/coppwr/package.nix index 55d340563cfa24..67b52200eb3194 100644 --- a/pkgs/by-name/co/coppwr/package.nix +++ b/pkgs/by-name/co/coppwr/package.nix @@ -73,12 +73,12 @@ rustPlatform.buildRustPackage rec { } ''; - meta = { + meta = with lib; { description = "Low level control GUI for the PipeWire multimedia server"; homepage = "https://github.com/dimtpap/coppwr"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ravenz46 ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ ravenz46 ]; mainProgram = "coppwr"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/co/copycat/package.nix b/pkgs/by-name/co/copycat/package.nix index 16eec28ab4fd81..a8ca194845a83b 100644 --- a/pkgs/by-name/co/copycat/package.nix +++ b/pkgs/by-name/co/copycat/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk_11_0.frameworks.AppKit ]; - meta = { + meta = with lib; { description = "Utility to copy project tree contents to clipboard"; homepage = "https://github.com/DeeKahy/CopyCat"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.deekahy ]; + license = licenses.mit; + maintainers = [ maintainers.deekahy ]; mainProgram = "ccat"; }; } diff --git a/pkgs/by-name/co/cordova/package.nix b/pkgs/by-name/co/cordova/package.nix index 394fc87059ac19..59bf83422d0bff 100644 --- a/pkgs/by-name/co/cordova/package.nix +++ b/pkgs/by-name/co/cordova/package.nix @@ -19,11 +19,11 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = { + meta = with lib; { description = "Build native mobile applications using HTML, CSS and JavaScript"; homepage = "https://github.com/apache/cordova-cli"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "cordova"; - maintainers = with lib.maintainers; [ flosse ]; + maintainers = with maintainers; [ flosse ]; }; } diff --git a/pkgs/by-name/co/corectrl/package.nix b/pkgs/by-name/co/corectrl/package.nix index 3a8d2851b8be85..8ff5237a1aa8e3 100644 --- a/pkgs/by-name/co/corectrl/package.nix +++ b/pkgs/by-name/co/corectrl/package.nix @@ -75,7 +75,7 @@ stdenv.mkDerivation (finalAttrs: { "--prefix PATH : ${lib.makeBinPath finalAttrs.runtimeInputs}" ]; - meta = { + meta = with lib; { homepage = "https://gitlab.com/corectrl/corectrl/"; description = "Control your computer hardware via application profiles"; longDescription = '' @@ -83,8 +83,8 @@ stdenv.mkDerivation (finalAttrs: { to control with ease your computer hardware using application profiles. It aims to be flexible, comfortable and accessible to regular users. ''; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ Scrumplex ]; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ Scrumplex ]; }; }) diff --git a/pkgs/by-name/co/coroot-node-agent/package.nix b/pkgs/by-name/co/coroot-node-agent/package.nix index d82ef369389c12..7e58979e9b02e0 100644 --- a/pkgs/by-name/co/coroot-node-agent/package.nix +++ b/pkgs/by-name/co/coroot-node-agent/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { CGO_CFLAGS = "-I ${systemdLibs}/include"; - meta = { + meta = with lib; { description = "Prometheus exporter based on eBPF"; homepage = "https://github.com/coroot/coroot-node-agent"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ errnoh ]; + license = licenses.asl20; + maintainers = with maintainers; [ errnoh ]; mainProgram = "coroot-node-agent"; }; } diff --git a/pkgs/by-name/co/coroot/package.nix b/pkgs/by-name/co/coroot/package.nix index a59b65ff61014a..62d32ad2de957d 100644 --- a/pkgs/by-name/co/coroot/package.nix +++ b/pkgs/by-name/co/coroot/package.nix @@ -43,11 +43,11 @@ buildGoModule rec { npm --prefix="$npmRoot" run build-prod ''; - meta = { + meta = with lib; { description = "Open-source APM & Observability tool"; homepage = "https://coroot.com"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ errnoh ]; + license = licenses.asl20; + maintainers = with maintainers; [ errnoh ]; mainProgram = "coroot"; }; } diff --git a/pkgs/by-name/co/cosmopolitan/package.nix b/pkgs/by-name/co/cosmopolitan/package.nix index fd8821dd8a1a70..e6eeb3ef754841 100644 --- a/pkgs/by-name/co/cosmopolitan/package.nix +++ b/pkgs/by-name/co/cosmopolitan/package.nix @@ -86,12 +86,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { homepage = "https://justine.lol/cosmopolitan/"; description = "Your build-once run-anywhere c library"; - license = lib.licenses.isc; - maintainers = lib.teams.cosmopolitan.members; - platforms = lib.platforms.x86_64; - badPlatforms = lib.platforms.darwin; + license = licenses.isc; + maintainers = teams.cosmopolitan.members; + platforms = platforms.x86_64; + badPlatforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/co/couchbase-shell/package.nix b/pkgs/by-name/co/couchbase-shell/package.nix index 1b610b641b28d7..4d5125a94c85ff 100644 --- a/pkgs/by-name/co/couchbase-shell/package.nix +++ b/pkgs/by-name/co/couchbase-shell/package.nix @@ -41,12 +41,12 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Shell for Couchbase Server and Cloud"; homepage = "https://couchbase.sh/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ petrkozorezov ]; + license = licenses.asl20; + maintainers = with maintainers; [ petrkozorezov ]; mainProgram = "cbsh"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/co/courier-unicode/package.nix b/pkgs/by-name/co/courier-unicode/package.nix index c9a8354d70c5b5..168d9498a7ac6a 100644 --- a/pkgs/by-name/co/courier-unicode/package.nix +++ b/pkgs/by-name/co/courier-unicode/package.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { "dev" ]; - meta = { + meta = with lib; { homepage = "http://www.courier-mta.org/unicode/"; description = "The Courier Unicode Library is used by most other Courier packages"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; + license = licenses.gpl3; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/co/cov-build/package.nix b/pkgs/by-name/co/cov-build/package.nix index 46c79b66f898f9..6f3acf8c6a3d4a 100644 --- a/pkgs/by-name/co/cov-build/package.nix +++ b/pkgs/by-name/co/cov-build/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation rec { dontStrip = true; - meta = { + meta = with lib; { description = "Coverity Scan build tools"; homepage = "https://scan.coverity.com"; - license = lib.licenses.unfreeRedistributable; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.thoughtpolice ]; + license = licenses.unfreeRedistributable; + platforms = platforms.linux; + maintainers = [ maintainers.thoughtpolice ]; }; } diff --git a/pkgs/by-name/co/coz/package.nix b/pkgs/by-name/co/coz/package.nix index 90e08f176aaf9c..b3f9bf15ea2197 100644 --- a/pkgs/by-name/co/coz/package.nix +++ b/pkgs/by-name/co/coz/package.nix @@ -43,12 +43,12 @@ python3Packages.buildPythonApplication rec { chmod -x $out/include/coz.h ''; - meta = { + meta = with lib; { homepage = "https://github.com/plasma-umass/coz"; description = "Profiler based on casual profiling"; mainProgram = "coz"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ + license = licenses.bsd2; + maintainers = with maintainers; [ zimbatm aleksana ]; diff --git a/pkgs/by-name/cp/cpm-cmake/package.nix b/pkgs/by-name/cp/cpm-cmake/package.nix index 65805f5db4fff3..601648b468ab19 100644 --- a/pkgs/by-name/cp/cpm-cmake/package.nix +++ b/pkgs/by-name/cp/cpm-cmake/package.nix @@ -33,7 +33,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/cpm-cmake/CPM.cmake"; description = "CMake's missing package manager"; longDescription = '' @@ -42,8 +42,8 @@ stdenvNoCC.mkDerivation (finalAttrs: { CMake's FetchContent module that adds version control, caching, a simple API and more. ''; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pandapip1 ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ pandapip1 ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/cp/cpp-jwt/package.nix b/pkgs/by-name/cp/cpp-jwt/package.nix index 692dc73502006d..298f557a7359c7 100644 --- a/pkgs/by-name/cp/cpp-jwt/package.nix +++ b/pkgs/by-name/cp/cpp-jwt/package.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = { + meta = with lib; { description = "JSON Web Token library for C++"; homepage = "https://github.com/arun11299/cpp-jwt"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fpletz ]; + license = licenses.mit; + maintainers = with maintainers; [ fpletz ]; }; } diff --git a/pkgs/by-name/cp/cppcheck/package.nix b/pkgs/by-name/cp/cppcheck/package.nix index 7e57a23270e83f..18d10e92bb6733 100644 --- a/pkgs/by-name/cp/cppcheck/package.nix +++ b/pkgs/by-name/cp/cppcheck/package.nix @@ -109,18 +109,18 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = { + meta = with lib; { description = "Static analysis tool for C/C++ code"; longDescription = '' Check C/C++ code for memory leaks, mismatching allocation-deallocation, buffer overruns and more. ''; homepage = "http://cppcheck.sourceforge.net"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ joachifm paveloom ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/cp/cppitertools/package.nix b/pkgs/by-name/cp/cppitertools/package.nix index e484d70c32947f..06676e07f2e081 100644 --- a/pkgs/by-name/cp/cppitertools/package.nix +++ b/pkgs/by-name/cp/cppitertools/package.nix @@ -86,14 +86,14 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Implementation of Python itertools and builtin iteration functions for C++17"; longDescription = '' Range-based for loop add-ons inspired by the Python builtins and itertools library for C++17, using lazy evaluation wherever possible. ''; homepage = "https://github.com/ryanhaining/cppitertools"; - maintainers = with lib.maintainers; [ qyriad ]; - license = with lib.licenses; bsd2; + maintainers = with maintainers; [ qyriad ]; + license = with licenses; bsd2; }; }) diff --git a/pkgs/by-name/cp/cpu-x/package.nix b/pkgs/by-name/cp/cpu-x/package.nix index 0ffe7b6a8d4f35..b3eecd665d7e48 100644 --- a/pkgs/by-name/cp/cpu-x/package.nix +++ b/pkgs/by-name/cp/cpu-x/package.nix @@ -94,12 +94,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { description = "Free software that gathers information on CPU, motherboard and more"; mainProgram = "cpu-x"; homepage = "https://thetumultuousunicornofdarkness.github.io/CPU-X"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ viraptor ]; + maintainers = with maintainers; [ viraptor ]; }; }) diff --git a/pkgs/by-name/cp/cpuinfo/package.nix b/pkgs/by-name/cp/cpuinfo/package.nix index 17134da2810491..2032422689e4d6 100644 --- a/pkgs/by-name/cp/cpuinfo/package.nix +++ b/pkgs/by-name/cp/cpuinfo/package.nix @@ -39,13 +39,13 @@ stdenv.mkDerivation (finalAttrs: { doCheck = !(stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); - meta = { + meta = with lib; { description = "Tools and library to detect essential for performance optimization information about host CPU"; homepage = "https://github.com/pytorch/cpuinfo"; - license = lib.licenses.bsd2; + license = licenses.bsd2; mainProgram = "cpu-info"; - maintainers = with lib.maintainers; [ pawelchcki ]; + maintainers = with maintainers; [ pawelchcki ]; pkgConfigModules = [ "libcpuinfo" ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/cr/crab-hole/package.nix b/pkgs/by-name/cr/crab-hole/package.nix index 1bc7c1ac38aecb..984cda40f8e003 100644 --- a/pkgs/by-name/cr/crab-hole/package.nix +++ b/pkgs/by-name/cr/crab-hole/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-6g5l4sQv8OsOLJZ/Vl3RLU8k/zx3Bj13STonsY2+lf0="; - meta = { + meta = with lib; { description = "Pi-Hole clone written in Rust using Hickory DNS"; homepage = "https://github.com/LuckyTurtleDev/crab-hole"; - license = lib.licenses.agpl3Plus; + license = licenses.agpl3Plus; mainProgram = "crab-hole"; maintainers = [ - lib.maintainers.NiklasVousten + maintainers.NiklasVousten ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/cr/crates-tui/package.nix b/pkgs/by-name/cr/crates-tui/package.nix index e3a1a9e2f83a1b..38068e971a6e67 100644 --- a/pkgs/by-name/cr/crates-tui/package.nix +++ b/pkgs/by-name/cr/crates-tui/package.nix @@ -31,10 +31,10 @@ rustPlatform.buildRustPackage { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "TUI for exploring crates.io using Ratatui"; homepage = "https://github.com/ratatui/crates-tui"; - license = with lib.licenses; [ mit ]; + license = with licenses; [ mit ]; # See Cargo.toml: workspaces.metadata.dist.targets # Other platforms may work but YMMV platforms = [ @@ -43,7 +43,7 @@ rustPlatform.buildRustPackage { "x86_64-darwin" "x86_64-windows" ]; - maintainers = with lib.maintainers; [ pluiedev ]; + maintainers = with maintainers; [ pluiedev ]; mainProgram = "crates-tui"; }; } diff --git a/pkgs/by-name/cr/cringify/package.nix b/pkgs/by-name/cr/cringify/package.nix index bdd28b3c0233e2..aa5a68ffe03f0a 100644 --- a/pkgs/by-name/cr/cringify/package.nix +++ b/pkgs/by-name/cr/cringify/package.nix @@ -32,11 +32,11 @@ rustPlatform.buildRustPackage rec { passthru.tests.version = testers.testVersion { package = cringify; }; - meta = { + meta = with lib; { description = "Annoy your friends with the cringified text"; homepage = "https://github.com/sansyrox/cringify"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "cringify"; - maintainers = with lib.maintainers; [ tomasajt ]; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/by-name/cr/crip/package.nix b/pkgs/by-name/cr/crip/package.nix index a244fc6d34fa7f..cd7d192d88afda 100644 --- a/pkgs/by-name/cr/crip/package.nix +++ b/pkgs/by-name/cr/crip/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with lib; { homepage = "http://bach.dynet.com/crip/"; description = "Terminal-based ripper/encoder/tagger tool for creating Ogg Vorbis/FLAC files"; - license = lib.licenses.gpl1Only; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.endgame ]; + license = licenses.gpl1Only; + platforms = platforms.linux; + maintainers = [ maintainers.endgame ]; }; } diff --git a/pkgs/by-name/cr/criterion/package.nix b/pkgs/by-name/cr/criterion/package.nix index 958a9a7c89ed53..2f1d3f28fa8a04 100644 --- a/pkgs/by-name/cr/criterion/package.nix +++ b/pkgs/by-name/cr/criterion/package.nix @@ -103,15 +103,15 @@ stdenv.mkDerivation rec { version = "v${version}"; }; - meta = { + meta = with lib; { description = "Cross-platform C and C++ unit testing framework for the 21th century"; homepage = "https://github.com/Snaipe/Criterion"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ thesola10 Yumasi sigmanificient ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/cr/cronie/package.nix b/pkgs/by-name/cr/cronie/package.nix index 3cad6e4d1d7ad6..40e6aa0dcea0e8 100644 --- a/pkgs/by-name/cr/cronie/package.nix +++ b/pkgs/by-name/cr/cronie/package.nix @@ -25,17 +25,17 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { homepage = "https://github.com/cronie-crond/cronie"; description = "Cron replacement, based on vixie-cron"; changelog = "https://github.com/cronie-crond/cronie/blob/master/ChangeLog"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus isc lgpl21Plus ]; mainProgram = "crond"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/cr/cross-seed/package.nix b/pkgs/by-name/cr/cross-seed/package.nix index d756501dc15067..9fa7790137c93a 100644 --- a/pkgs/by-name/cr/cross-seed/package.nix +++ b/pkgs/by-name/cr/cross-seed/package.nix @@ -17,11 +17,11 @@ buildNpmPackage rec { npmDepsHash = "sha256-1xP0KwuVZMeIxg3dXd0CAGW0517i/6WBu3qGOkwsoks="; - meta = { + meta = with lib; { description = "Fully-automatic torrent cross-seeding with Torznab"; homepage = "https://cross-seed.org"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "cross-seed"; - maintainers = with lib.maintainers; [ mkez ]; + maintainers = with maintainers; [ mkez ]; }; } diff --git a/pkgs/by-name/cr/crow-translate/package.nix b/pkgs/by-name/cr/crow-translate/package.nix index 3b8dc307fa124d..d686aa331597e9 100644 --- a/pkgs/by-name/cr/crow-translate/package.nix +++ b/pkgs/by-name/cr/crow-translate/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation (finalAttrs: { package = finalAttrs.finalPackage; }; - meta = { + meta = with lib; { description = "Simple and lightweight translator that allows to translate and speak text using Google, Yandex and Bing"; homepage = "https://invent.kde.org/office/crow-translate"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ sikmir ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ sikmir ]; + platforms = platforms.linux; mainProgram = "crow"; }; }) diff --git a/pkgs/by-name/cr/crow/package.nix b/pkgs/by-name/cr/crow/package.nix index 357a98600cd908..ad511e3544f4b9 100644 --- a/pkgs/by-name/cr/crow/package.nix +++ b/pkgs/by-name/cr/crow/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { description = "A Fast and Easy to use microframework for the web"; homepage = "https://crowcpp.org/"; - maintainers = with lib.maintainers; [ l33tname ]; - platforms = lib.platforms.all; - license = lib.licenses.bsd3; + maintainers = with maintainers; [ l33tname ]; + platforms = platforms.all; + license = licenses.bsd3; }; }) diff --git a/pkgs/by-name/cr/crrcsim/package.nix b/pkgs/by-name/cr/crrcsim/package.nix index c4bd7f1e1a146e..50978bf1108ba5 100644 --- a/pkgs/by-name/cr/crrcsim/package.nix +++ b/pkgs/by-name/cr/crrcsim/package.nix @@ -34,14 +34,14 @@ stdenv.mkDerivation rec { ./gcc6.patch ]; - meta = { + meta = with lib; { description = "Model-airplane flight simulator"; mainProgram = "crrcsim"; - maintainers = with lib.maintainers; [ raskin ]; + maintainers = with maintainers; [ raskin ]; platforms = [ "i686-linux" "x86_64-linux" ]; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; }; } diff --git a/pkgs/by-name/cr/crunchy-cli/package.nix b/pkgs/by-name/cr/crunchy-cli/package.nix index d895a383dd7df4..daf80234c0a7b3 100644 --- a/pkgs/by-name/cr/crunchy-cli/package.nix +++ b/pkgs/by-name/cr/crunchy-cli/package.nix @@ -45,11 +45,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Command-line downloader for Crunchyroll"; homepage = "https://github.com/crunchy-labs/crunchy-cli"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ stepbrobd ]; + license = licenses.mit; + maintainers = with maintainers; [ stepbrobd ]; mainProgram = "crunchy-cli"; }; } diff --git a/pkgs/by-name/cr/cryptomator/package.nix b/pkgs/by-name/cr/cryptomator/package.nix index 1ebc237936f74f..5f8c21ddb9fce1 100644 --- a/pkgs/by-name/cr/cryptomator/package.nix +++ b/pkgs/by-name/cr/cryptomator/package.nix @@ -114,17 +114,17 @@ maven.buildMavenPackage rec { libayatana-appindicator ]; - meta = { + meta = with lib; { description = "Free client-side encryption for your cloud files"; homepage = "https://cryptomator.org"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "cryptomator"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ bachp gepbird ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ + sourceProvenance = with sourceTypes; [ fromSource binaryBytecode # deps ]; diff --git a/pkgs/by-name/cr/cryptor/package.nix b/pkgs/by-name/cr/cryptor/package.nix index 7620fd0b912173..794460f354657c 100644 --- a/pkgs/by-name/cr/cryptor/package.nix +++ b/pkgs/by-name/cr/cryptor/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation (finalAttrs: { --replace-warn '/usr/bin/cryptor' 'cryptor' ''; - meta = { + meta = with lib; { description = "Simple gocryptfs GUI"; homepage = "https://github.com/moson-mo/cryptor"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "cryptor"; - maintainers = with lib.maintainers; [ fgaz ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ fgaz ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/cr/cryptoverif/package.nix b/pkgs/by-name/cr/cryptoverif/package.nix index e23707651298cd..40abeb50c16451 100644 --- a/pkgs/by-name/cr/cryptoverif/package.nix +++ b/pkgs/by-name/cr/cryptoverif/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation (finalAttrs: { update-source-version "$UPDATE_NIX_ATTR_PATH" "$version" ''; - meta = { + meta = with lib; { description = "Cryptographic protocol verifier in the computational model"; mainProgram = "cryptoverif"; homepage = "https://bblanche.gitlabpages.inria.fr/CryptoVerif/"; - license = lib.licenses.cecill-b; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.thoughtpolice ]; + license = licenses.cecill-b; + platforms = platforms.unix; + maintainers = [ maintainers.thoughtpolice ]; }; }) diff --git a/pkgs/by-name/cr/cryptpad/package.nix b/pkgs/by-name/cr/cryptpad/package.nix index 94087f88b86bb1..a32d3abda95c22 100644 --- a/pkgs/by-name/cr/cryptpad/package.nix +++ b/pkgs/by-name/cr/cryptpad/package.nix @@ -153,11 +153,11 @@ buildNpmPackage { passthru.tests.cryptpad = nixosTests.cryptpad; - meta = { + meta = with lib; { description = "Collaborative office suite, end-to-end encrypted and open-source."; homepage = "https://cryptpad.org/"; - license = lib.licenses.agpl3Plus; + license = licenses.agpl3Plus; mainProgram = "cryptpad"; - maintainers = with lib.maintainers; [ martinetd ]; + maintainers = with maintainers; [ martinetd ]; }; } diff --git a/pkgs/by-name/cs/csdp/package.nix b/pkgs/by-name/cs/csdp/package.nix index 305e98e851a62c..4baa7a9c6cd07d 100644 --- a/pkgs/by-name/cs/csdp/package.nix +++ b/pkgs/by-name/cs/csdp/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { mkdir -p $out/bin ''; - meta = { + meta = with lib; { homepage = "https://projects.coin-or.org/Csdp"; - license = lib.licenses.cpl10; - maintainers = [ lib.maintainers.roconnor ]; + license = licenses.cpl10; + maintainers = [ maintainers.roconnor ]; description = "C Library for Semidefinite Programming"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/cs/csharprepl/package.nix b/pkgs/by-name/cs/csharprepl/package.nix index 427ca4c0e83046..17c68f2607e9fc 100644 --- a/pkgs/by-name/cs/csharprepl/package.nix +++ b/pkgs/by-name/cs/csharprepl/package.nix @@ -15,13 +15,13 @@ buildDotnetGlobalTool { nugetHash = "sha256-a0CiU3D6RZp1FF459NIUUry5TFRDgm4FRhqJZNAGYWs="; - meta = { + meta = with lib; { description = "C# REPL with syntax highlighting"; homepage = "https://fuqua.io/CSharpRepl"; changelog = "https://github.com/waf/CSharpRepl/blob/main/CHANGELOG.md"; - license = lib.licenses.mpl20; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ donteatoreo ]; + license = licenses.mpl20; + platforms = platforms.unix; + maintainers = with maintainers; [ donteatoreo ]; mainProgram = "csharprepl"; }; } diff --git a/pkgs/by-name/cs/csv-tui/package.nix b/pkgs/by-name/cs/csv-tui/package.nix index a56c08e4ec8f01..69e137f0f02293 100644 --- a/pkgs/by-name/cs/csv-tui/package.nix +++ b/pkgs/by-name/cs/csv-tui/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-WDUw539G15rf2X1NWLRCHIxMqyuxthEy8Cbn5XgIFCk="; - meta = { + meta = with lib; { description = "Terminal based csv editor which is designed to be memory efficient but still useful"; homepage = "https://github.com/nathangavin/csv-tui"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ottoblep ]; + license = licenses.mit; + maintainers = with maintainers; [ ottoblep ]; mainProgram = "csv_tui"; }; } diff --git a/pkgs/by-name/ct/ctune/package.nix b/pkgs/by-name/ct/ctune/package.nix index 50e91ae94b51f4..a23a67ec434d5e 100644 --- a/pkgs/by-name/ct/ctune/package.nix +++ b/pkgs/by-name/ct/ctune/package.nix @@ -54,13 +54,13 @@ stdenv.mkDerivation (finalAttrs: { patches = [ ./cmake_disable_git_clone.patch ]; - meta = { + meta = with lib; { description = "A nice terminal nCurses (tui) internet radio player for Linux, browse and search from api.radio-browser.info"; homepage = " https://github.com/An7ar35/ctune"; changelog = "https://github.com/An7ar35/ctune/blob/master/CHANGELOG.md"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ theobori ]; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ theobori ]; mainProgram = "ctune"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ct/ctx/package.nix b/pkgs/by-name/ct/ctx/package.nix index dde97bcf01c707..bb14cb00051fed 100644 --- a/pkgs/by-name/ct/ctx/package.nix +++ b/pkgs/by-name/ct/ctx/package.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.test = nixosTests.terminal-emulators.ctx; - meta = { + meta = with lib; { homepage = "https://ctx.graphics/"; description = "Vector graphics terminal"; longDescription = '' @@ -76,8 +76,8 @@ stdenv.mkDerivation (finalAttrs: { terminal, with escape sequences that enable a 2D vector drawing API using a vector graphics protocol. ''; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/cu/cue/package.nix b/pkgs/by-name/cu/cue/package.nix index b7f8911e1a2747..78d8157acef8da 100644 --- a/pkgs/by-name/cu/cue/package.nix +++ b/pkgs/by-name/cu/cue/package.nix @@ -51,11 +51,11 @@ buildGoModule rec { }; }; - meta = { + meta = with lib; { description = "Data constraint language which aims to simplify tasks involving defining and using data"; homepage = "https://cuelang.org/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.asl20; + maintainers = with maintainers; [ aaronjheng ]; mainProgram = "cue"; }; } diff --git a/pkgs/by-name/cu/cue2pops/package.nix b/pkgs/by-name/cu/cue2pops/package.nix index 69a353f20550e7..98b4c4707d248b 100644 --- a/pkgs/by-name/cu/cue2pops/package.nix +++ b/pkgs/by-name/cu/cue2pops/package.nix @@ -24,14 +24,14 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Convert CUE to ISO suitable to POPStarter"; homepage = "https://github.com/makefu/cue2pops-linux"; # Upstream license is unclear. # - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + license = licenses.unfree; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; mainProgram = "cue2pops"; }; } diff --git a/pkgs/by-name/cu/cuetsy/package.nix b/pkgs/by-name/cu/cuetsy/package.nix index e7afa8b140adac..76af9e48e1e03e 100644 --- a/pkgs/by-name/cu/cuetsy/package.nix +++ b/pkgs/by-name/cu/cuetsy/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-CDa7ZfbVQOIt24VZTy4j0Dn24nolmYa0h9zgrJ3QTeY="; - meta = { + meta = with lib; { description = "Experimental CUE->TypeScript exporter"; homepage = "https://github.com/grafana/cuetsy"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ bryanhonof ]; + license = licenses.asl20; + maintainers = with maintainers; [ bryanhonof ]; mainProgram = "cuetsy"; }; } diff --git a/pkgs/by-name/cu/culmus/package.nix b/pkgs/by-name/cu/culmus/package.nix index c724357e7e357e..44c36abdd2a96d 100644 --- a/pkgs/by-name/cu/culmus/package.nix +++ b/pkgs/by-name/cu/culmus/package.nix @@ -27,11 +27,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Culmus Hebrew fonts"; longDescription = "The Culmus project aims at providing the Hebrew-speaking GNU/Linux and Unix community with a basic collection of Hebrew fonts for X Windows."; - platforms = lib.platforms.all; - license = lib.licenses.gpl2; + platforms = platforms.all; + license = licenses.gpl2; homepage = "http://culmus.sourceforge.net/"; downloadPage = "http://culmus.sourceforge.net/download.html"; }; diff --git a/pkgs/by-name/cu/cunicu/package.nix b/pkgs/by-name/cu/cunicu/package.nix index 618d908ae9dbe7..f4a5713e4468b3 100644 --- a/pkgs/by-name/cu/cunicu/package.nix +++ b/pkgs/by-name/cu/cunicu/package.nix @@ -67,12 +67,12 @@ buildGoModule rec { --fish <($out/bin/cunicu completion fish) ''; - meta = { + meta = with lib; { description = "Zeroconf peer-to-peer mesh VPN using Wireguard® and Interactive Connectivity Establishment (ICE)"; homepage = "https://cunicu.li"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ stv0g ]; - platforms = lib.platforms.linux; + license = licenses.asl20; + maintainers = with maintainers; [ stv0g ]; + platforms = platforms.linux; mainProgram = "cunicu"; }; } diff --git a/pkgs/by-name/cu/cups-brother-dcpt310/package.nix b/pkgs/by-name/cu/cups-brother-dcpt310/package.nix index 1504a664f95f1e..62e923d378e897 100644 --- a/pkgs/by-name/cu/cups-brother-dcpt310/package.nix +++ b/pkgs/by-name/cu/cups-brother-dcpt310/package.nix @@ -131,17 +131,17 @@ stdenvNoCC.mkDerivation (finalAttrs: { --replace \"\$"@"\" \"\$"@\" | LD_PRELOAD= ${gnused}/bin/sed -E '/^(function list :|resource file :).*/{s#/opt#$out/opt#}'" ''; - meta = { + meta = with lib; { description = "Brother DCP-T310 printer driver"; - license = with lib.licenses; [ + license = with licenses; [ unfree gpl2Plus ]; - sourceProvenance = with lib.sourceTypes; [ + sourceProvenance = with sourceTypes; [ binaryNativeCode fromSource ]; - maintainers = with lib.maintainers; [ inexcode ]; + maintainers = with maintainers; [ inexcode ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/cu/cups-drv-rastertosag-gdi/package.nix b/pkgs/by-name/cu/cups-drv-rastertosag-gdi/package.nix index bedf2d8a4340f6..f548da1e2927c3 100644 --- a/pkgs/by-name/cu/cups-drv-rastertosag-gdi/package.nix +++ b/pkgs/by-name/cu/cups-drv-rastertosag-gdi/package.nix @@ -44,13 +44,13 @@ python3Packages.buildPythonApplication rec { postFixup = '' gzip -9nv "${placeholder "out"}/share/cups/model/rastertosag-gdi"/*.ppd ''; - meta = { + meta = with lib; { description = "CUPS driver for Ricoh Aficio SP 1000S and SP 1100S printers"; mainProgram = "rastertosag-gdi"; downloadPage = "https://www.openprinting.org/download/printing/rastertosag-gdi/"; homepage = "https://www.openprinting.org/driver/rastertosag-gdi/"; - license = lib.licenses.free; # just "GPL", according to README - maintainers = [ lib.maintainers.yarny ]; + license = licenses.free; # just "GPL", according to README + maintainers = [ maintainers.yarny ]; longDescription = '' This package brings CUPS raster filter for Ricoh Aficio SP 1000S and SP 1100S. diff --git a/pkgs/by-name/cu/cups-dymo/package.nix b/pkgs/by-name/cu/cups-dymo/package.nix index f1556eb1fd5c17..cd0c4f9e3c0da0 100644 --- a/pkgs/by-name/cu/cups-dymo/package.nix +++ b/pkgs/by-name/cu/cups-dymo/package.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation rec { "cupsmodeldir=$(out)/share/cups/model" ]; - meta = { + meta = with lib; { description = "CUPS Linux drivers and SDK for DYMO printers"; homepage = "https://www.dymo.com/"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ makefu ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ makefu ]; }; } diff --git a/pkgs/by-name/cu/cups-idprt-barcode/package.nix b/pkgs/by-name/cu/cups-idprt-barcode/package.nix index a5e3a85b5a943e..3f986e5cee90f8 100644 --- a/pkgs/by-name/cu/cups-idprt-barcode/package.nix +++ b/pkgs/by-name/cu/cups-idprt-barcode/package.nix @@ -42,14 +42,14 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "CUPS drivers for iDPRT barcode printers (iD2P, iD2X, iD4P, iD4S, iE2P, iE2X, iE4P, iE4S, iT4B, iT4E, iT4P, iT4S, iT4X, iX4E, iX4L, iX4P, iX4E, iX6P)"; platforms = [ "x86_64-linux" "x86-linux" ]; - license = lib.licenses.unfree; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ pandapip1 ]; + license = licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ pandapip1 ]; }; } diff --git a/pkgs/by-name/cu/cups-idprt-mt888/package.nix b/pkgs/by-name/cu/cups-idprt-mt888/package.nix index 0fa4fd146d0605..dd2e30aaaacffb 100644 --- a/pkgs/by-name/cu/cups-idprt-mt888/package.nix +++ b/pkgs/by-name/cu/cups-idprt-mt888/package.nix @@ -42,14 +42,14 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "CUPS driver for the iDPRT MT888"; platforms = [ "x86_64-linux" "x86-linux" ]; - license = lib.licenses.unfree; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ pandapip1 ]; + license = licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ pandapip1 ]; }; } diff --git a/pkgs/by-name/cu/cups-idprt-mt890/package.nix b/pkgs/by-name/cu/cups-idprt-mt890/package.nix index 96ca74b35ee601..d9ed71e418bbbf 100644 --- a/pkgs/by-name/cu/cups-idprt-mt890/package.nix +++ b/pkgs/by-name/cu/cups-idprt-mt890/package.nix @@ -43,14 +43,14 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "CUPS driver for the iDPRT MT890"; platforms = [ "x86_64-linux" "x86-linux" ]; - license = lib.licenses.unfree; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ pandapip1 ]; + license = licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ pandapip1 ]; }; } diff --git a/pkgs/by-name/cu/cups-idprt-sp900/package.nix b/pkgs/by-name/cu/cups-idprt-sp900/package.nix index 34243a325ee723..58538a6b59db63 100644 --- a/pkgs/by-name/cu/cups-idprt-sp900/package.nix +++ b/pkgs/by-name/cu/cups-idprt-sp900/package.nix @@ -51,14 +51,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "CUPS driver for the iDPRT SP900"; platforms = [ "x86_64-linux" "x86-linux" ]; - license = lib.licenses.unfree; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ pandapip1 ]; + license = licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ pandapip1 ]; }; }) diff --git a/pkgs/by-name/cu/cups-idprt-tspl/package.nix b/pkgs/by-name/cu/cups-idprt-tspl/package.nix index f165015c14f4f5..bb3c35e00193a5 100644 --- a/pkgs/by-name/cu/cups-idprt-tspl/package.nix +++ b/pkgs/by-name/cu/cups-idprt-tspl/package.nix @@ -51,14 +51,14 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "CUPS drivers for TSPL-based iDPRT thermal label printers (SP210, SP310, SP320, SP320E, SP410, SP410BT, SP420, SP450, SP460BT)"; platforms = [ "x86_64-linux" "x86-linux" ]; - license = lib.licenses.unfree; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ pandapip1 ]; + license = licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ pandapip1 ]; }; } diff --git a/pkgs/by-name/cu/cuyo/package.nix b/pkgs/by-name/cu/cuyo/package.nix index f95a9d3b5a91e6..3c9f0a514b59f5 100644 --- a/pkgs/by-name/cu/cuyo/package.nix +++ b/pkgs/by-name/cu/cuyo/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation { zlib ]; - meta = { + meta = with lib; { homepage = "http://karimmi.de/cuyo"; description = "Stacking blocks game, with different rules for each level"; mainProgram = "cuyo"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/cv/cvsps/package.nix b/pkgs/by-name/cv/cvsps/package.nix index cd2d043539d4a1..b17b712552669c 100644 --- a/pkgs/by-name/cv/cvsps/package.nix +++ b/pkgs/by-name/cv/cvsps/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { installFlags = [ "prefix=$(out)" ]; - meta = { + meta = with lib; { description = "Tool to generate CVS patch set information"; longDescription = '' CVSps is a program for generating `patchset' information from a @@ -65,8 +65,8 @@ stdenv.mkDerivation rec { same time (using a single "cvs commit" command). ''; homepage = "http://www.cobite.com/cvsps/"; - license = lib.licenses.gpl2; - platforms = lib.platforms.unix; + license = licenses.gpl2; + platforms = platforms.unix; mainProgram = "cvsps"; }; } diff --git a/pkgs/by-name/cw/cwe-client-cli/package.nix b/pkgs/by-name/cw/cwe-client-cli/package.nix index c7ec89733fa8f2..d6cf355725ad73 100644 --- a/pkgs/by-name/cw/cwe-client-cli/package.nix +++ b/pkgs/by-name/cw/cwe-client-cli/package.nix @@ -24,12 +24,12 @@ rustPlatform.buildRustPackage rec { ]; cargoHash = "sha256-VgbNwqDVcORWJB5QjH39gZZtW1n2Me9FxVUhb4vIg1A="; - meta = { + meta = with lib; { description = "Simple command line client for CWE"; homepage = "https://github.com/NotBalds/cwe-client-cli"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ tbwanderer ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ tbwanderer ]; mainProgram = "cwe-client-cli"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/cw/cwtch-ui/package.nix b/pkgs/by-name/cw/cwtch-ui/package.nix index 88bcf61439d553..33dfb98d9ba93f 100644 --- a/pkgs/by-name/cw/cwtch-ui/package.nix +++ b/pkgs/by-name/cw/cwtch-ui/package.nix @@ -48,13 +48,13 @@ flutter.buildFlutterApplication rec { --replace-fail PREFIX "$out" ''; - meta = { + meta = with lib; { description = "Messaging app built on the cwtch decentralized, privacy-preserving, multi-party messaging protocol"; homepage = "https://cwtch.im/"; changelog = "https://docs.cwtch.im/changelog"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "cwtch"; platforms = [ "x86_64-linux" ]; - maintainers = [ lib.maintainers.gmacon ]; + maintainers = [ maintainers.gmacon ]; }; } diff --git a/pkgs/by-name/cw/cwtch/package.nix b/pkgs/by-name/cw/cwtch/package.nix index bd0b0d836b4881..ed540bf00bd143 100644 --- a/pkgs/by-name/cw/cwtch/package.nix +++ b/pkgs/by-name/cw/cwtch/package.nix @@ -41,12 +41,12 @@ buildGoModule rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Decentralized, privacy-preserving, multi-party messaging protocol"; homepage = "https://cwtch.im/"; changelog = "https://docs.cwtch.im/changelog"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.gmacon ]; + license = licenses.mit; + platforms = platforms.linux; + maintainers = [ maintainers.gmacon ]; }; } diff --git a/pkgs/by-name/cx/cxxtools/package.nix b/pkgs/by-name/cx/cxxtools/package.nix index 356440e046b6d4..52ad560248c1d2 100644 --- a/pkgs/by-name/cx/cxxtools/package.nix +++ b/pkgs/by-name/cx/cxxtools/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "http://www.tntnet.org/cxxtools.html"; description = "Comprehensive C++ class library for Unix and Linux"; - platforms = lib.platforms.linux; - license = lib.licenses.lgpl21; - maintainers = [ lib.maintainers.juliendehos ]; + platforms = platforms.linux; + license = licenses.lgpl21; + maintainers = [ maintainers.juliendehos ]; }; } diff --git a/pkgs/by-name/cy/cyberpunk-neon/package.nix b/pkgs/by-name/cy/cyberpunk-neon/package.nix index 61068405a14a3d..494a59071d70eb 100644 --- a/pkgs/by-name/cy/cyberpunk-neon/package.nix +++ b/pkgs/by-name/cy/cyberpunk-neon/package.nix @@ -51,11 +51,11 @@ stdenvNoCC.mkDerivation { updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; }; - meta = { + meta = with lib; { homepage = "https://github.com/Roboron3042/Cyberpunk-Neon"; description = "Neon themes for many programs"; - license = lib.licenses.cc-by-sa-40; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + license = licenses.cc-by-sa-40; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/da/dablin/package.nix b/pkgs/by-name/da/dablin/package.nix index a86a6d505721ee..7cafe06065e051 100644 --- a/pkgs/by-name/da/dablin/package.nix +++ b/pkgs/by-name/da/dablin/package.nix @@ -35,14 +35,14 @@ stdenv.mkDerivation rec { pcre ]; - meta = { + meta = with lib; { description = "Play DAB/DAB+ from ETI-NI aligned stream"; homepage = "https://github.com/Opendigitalradio/dablin"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Plus lgpl21Only ]; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.markuskowa ]; + platforms = platforms.linux; + maintainers = [ maintainers.markuskowa ]; }; } diff --git a/pkgs/by-name/da/daed/package.nix b/pkgs/by-name/da/daed/package.nix index 0a04f2eb2a0b40..9a67729f699b1d 100644 --- a/pkgs/by-name/da/daed/package.nix +++ b/pkgs/by-name/da/daed/package.nix @@ -81,12 +81,12 @@ buildGoModule rec { runHook postBuild ''; - meta = { + meta = with lib; { description = "Modern dashboard with dae"; homepage = "https://github.com/daeuniverse/daed"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ oluceps ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ oluceps ]; + platforms = platforms.linux; mainProgram = "daed"; }; } diff --git a/pkgs/by-name/da/daisydisk/package.nix b/pkgs/by-name/da/daisydisk/package.nix index 9ee74970ce107a..be4070f941a89b 100644 --- a/pkgs/by-name/da/daisydisk/package.nix +++ b/pkgs/by-name/da/daisydisk/package.nix @@ -48,13 +48,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { ''; }); - meta = { + meta = with lib; { description = "Find out what’s taking up your disk space and recover it in the most efficient and easy way"; homepage = "https://daisydiskapp.com/"; changelog = "https://daisydiskapp.com/releases"; - license = [ lib.licenses.unfree ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; - maintainers = with lib.maintainers; [ DimitarNestorov ]; - platforms = lib.platforms.darwin; + license = [ licenses.unfree ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; + maintainers = with maintainers; [ DimitarNestorov ]; + platforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/da/daq/package.nix b/pkgs/by-name/da/daq/package.nix index 40401df9ba88fa..b63fb3d35d21d2 100644 --- a/pkgs/by-name/da/daq/package.nix +++ b/pkgs/by-name/da/daq/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { "--with-dnet-libraries=${libdnet}/lib" ]; - meta = { + meta = with lib; { description = "Data AcQuisition library (DAQ), for packet I/O"; mainProgram = "daq-modules-config"; homepage = "https://www.snort.org"; - maintainers = with lib.maintainers; [ aycanirican ]; - license = lib.licenses.gpl2; - platforms = with lib.platforms; linux; + maintainers = with maintainers; [ aycanirican ]; + license = licenses.gpl2; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/da/darcs-to-git/package.nix b/pkgs/by-name/da/darcs-to-git/package.nix index 0c3111b0d2125b..3b141bbc744768 100644 --- a/pkgs/by-name/da/darcs-to-git/package.nix +++ b/pkgs/by-name/da/darcs-to-git/package.nix @@ -86,11 +86,11 @@ stdenv.mkDerivation { rm -rf "$darcs_repos" "$git_repos" "$test_home" ''; - meta = { + meta = with lib; { description = "Converts a Darcs repository into a Git repository"; homepage = "http://www.sanityinc.com/articles/converting-darcs-repositories-to-git"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; + license = licenses.mit; + platforms = platforms.unix; mainProgram = "darcs-to-git"; }; } diff --git a/pkgs/by-name/da/dark-mode-notify/package.nix b/pkgs/by-name/da/dark-mode-notify/package.nix index 0896b72bf3fe49..fff907dff8a952 100644 --- a/pkgs/by-name/da/dark-mode-notify/package.nix +++ b/pkgs/by-name/da/dark-mode-notify/package.nix @@ -27,12 +27,12 @@ swiftPackages.stdenv.mkDerivation (final: { makeFlags = [ "prefix=$(out)" ]; - meta = { + meta = with lib; { description = "Run a script whenever dark mode changes in macOS"; homepage = "https://github.com/bouk/dark-mode-notify"; - platforms = lib.platforms.darwin; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ YorikSar ]; + platforms = platforms.darwin; + license = licenses.mit; + maintainers = with maintainers; [ YorikSar ]; mainProgram = "dark-mode-notify"; }; }) diff --git a/pkgs/by-name/da/darkice/package.nix b/pkgs/by-name/da/darkice/package.nix index 7701433b367a53..165d8658e2fe79 100644 --- a/pkgs/by-name/da/darkice/package.nix +++ b/pkgs/by-name/da/darkice/package.nix @@ -46,10 +46,10 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "http://darkice.org/"; description = "Live audio streamer"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ ikervagyok ]; + license = licenses.gpl3; + maintainers = with maintainers; [ ikervagyok ]; }; } diff --git a/pkgs/by-name/da/dart-sass/package.nix b/pkgs/by-name/da/dart-sass/package.nix index 1f081fcbcb7a90..2f2e7b922823ff 100644 --- a/pkgs/by-name/da/dart-sass/package.nix +++ b/pkgs/by-name/da/dart-sass/package.nix @@ -80,11 +80,11 @@ buildDartApplication rec { }; }; - meta = { + meta = with lib; { homepage = "https://github.com/sass/dart-sass"; description = "Reference implementation of Sass, written in Dart"; mainProgram = "sass"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ lelgenio ]; + license = licenses.mit; + maintainers = with maintainers; [ lelgenio ]; }; } diff --git a/pkgs/by-name/da/dash-mpd-cli/package.nix b/pkgs/by-name/da/dash-mpd-cli/package.nix index b9a43ee6a12149..6076fcf12497b0 100644 --- a/pkgs/by-name/da/dash-mpd-cli/package.nix +++ b/pkgs/by-name/da/dash-mpd-cli/package.nix @@ -28,7 +28,7 @@ rustPlatform.buildRustPackage rec { # The tests depend on network access. doCheck = false; - meta = { + meta = with lib; { description = "Download media content from a DASH-MPEG or DASH-WebM MPD manifest"; longDescription = '' A commandline application for downloading media content from a DASH MPD @@ -38,8 +38,8 @@ rustPlatform.buildRustPackage rec { homepage = "https://emarsden.github.io/dash-mpd-cli/"; downloadPage = "https://github.com/emarsden/dash-mpd-cli/releases"; changelog = "https://github.com/emarsden/dash-mpd-cli/blob/main/CHANGELOG.md"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ al3xtjames ]; + license = licenses.mit; + maintainers = with maintainers; [ al3xtjames ]; mainProgram = "dash-mpd-cli"; }; } diff --git a/pkgs/by-name/da/dasher/package.nix b/pkgs/by-name/da/dasher/package.nix index dadc218e6fd124..622b8d4642ce2f 100644 --- a/pkgs/by-name/da/dasher/package.nix +++ b/pkgs/by-name/da/dasher/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "https://www.inference.org.uk/dasher/"; description = "Information-efficient text-entry interface, driven by natural continuous pointing gestures"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; maintainers = [ ]; - platforms = lib.platforms.all; + platforms = platforms.all; mainProgram = "dasher"; }; } diff --git a/pkgs/by-name/da/dasht/package.nix b/pkgs/by-name/da/dasht/package.nix index b2da7e8af22cef..f69346183e5686 100644 --- a/pkgs/by-name/da/dasht/package.nix +++ b/pkgs/by-name/da/dasht/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Search API docs offline, in terminal or browser"; homepage = "https://sunaku.github.io/dasht/man"; - license = lib.licenses.isc; - platforms = lib.platforms.unix; # cannot test other - maintainers = with lib.maintainers; [ matthiasbeyer ]; + license = licenses.isc; + platforms = platforms.unix; # cannot test other + maintainers = with maintainers; [ matthiasbeyer ]; }; } diff --git a/pkgs/by-name/da/dashy-ui/package.nix b/pkgs/by-name/da/dashy-ui/package.nix index d7245ad19b33fd..9a4f359072d696 100644 --- a/pkgs/by-name/da/dashy-ui/package.nix +++ b/pkgs/by-name/da/dashy-ui/package.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation (finalAttrs: { yq-go ]; doDist = false; - meta = { + meta = with lib; { description = "dashy"; homepage = "https://dashy.to"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.therealgramdalf ]; + license = licenses.mit; + maintainers = [ maintainers.therealgramdalf ]; }; }) diff --git a/pkgs/by-name/db/db-rest/package.nix b/pkgs/by-name/db/db-rest/package.nix index c41f73db114ec0..d5dc92afd583e3 100644 --- a/pkgs/by-name/db/db-rest/package.nix +++ b/pkgs/by-name/db/db-rest/package.nix @@ -30,11 +30,11 @@ buildNpmPackage rec { inherit (nixosTests) db-rest; }; - meta = { + meta = with lib; { description = "Clean REST API wrapping around the Deutsche Bahn API"; homepage = "https://v6.db.transport.rest/"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ marie ]; + license = licenses.isc; + maintainers = with maintainers; [ marie ]; mainProgram = "db-rest"; }; } diff --git a/pkgs/by-name/db/dbacl/package.nix b/pkgs/by-name/db/dbacl/package.nix index 6cc65fb8cae44c..ffad0d48fabace 100644 --- a/pkgs/by-name/db/dbacl/package.nix +++ b/pkgs/by-name/db/dbacl/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "0224g6x71hyvy7jikfxmgcwww1r5lvk0jx36cva319cb9nmrbrq7"; }; - meta = { + meta = with lib; { homepage = "https://dbacl.sourceforge.net/"; longDescription = "a digramic Bayesian classifier for text recognition."; maintainers = [ ]; - license = lib.licenses.gpl3; - platforms = lib.platforms.unix; + license = licenses.gpl3; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/db/dbip-asn-lite/package.nix b/pkgs/by-name/db/dbip-asn-lite/package.nix index b5ca33f499069b..99c1fdf1aa2935 100644 --- a/pkgs/by-name/db/dbip-asn-lite/package.nix +++ b/pkgs/by-name/db/dbip-asn-lite/package.nix @@ -25,11 +25,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.mmdb = "${finalAttrs.finalPackage}/share/dbip/dbip-asn-lite.mmdb"; - meta = { + meta = with lib; { description = "Free IP to ASN Lite database by DB-IP"; homepage = "https://db-ip.com/db/download/ip-to-asn-lite"; - license = lib.licenses.cc-by-40; - maintainers = with lib.maintainers; [ Guanran928 ]; - platforms = lib.platforms.all; + license = licenses.cc-by-40; + maintainers = with maintainers; [ Guanran928 ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/db/dbip-city-lite/package.nix b/pkgs/by-name/db/dbip-city-lite/package.nix index 521d3cebf20e67..3b5196261b1864 100644 --- a/pkgs/by-name/db/dbip-city-lite/package.nix +++ b/pkgs/by-name/db/dbip-city-lite/package.nix @@ -25,11 +25,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.mmdb = "${finalAttrs.finalPackage}/share/dbip/dbip-city-lite.mmdb"; - meta = { + meta = with lib; { description = "Free IP to City Lite database by DB-IP"; homepage = "https://db-ip.com/db/download/ip-to-city-lite"; - license = lib.licenses.cc-by-40; - maintainers = with lib.maintainers; [ Guanran928 ]; - platforms = lib.platforms.all; + license = licenses.cc-by-40; + maintainers = with maintainers; [ Guanran928 ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/db/dbip-country-lite/package.nix b/pkgs/by-name/db/dbip-country-lite/package.nix index 00f29f3674d772..9944d75ecc1b42 100644 --- a/pkgs/by-name/db/dbip-country-lite/package.nix +++ b/pkgs/by-name/db/dbip-country-lite/package.nix @@ -25,11 +25,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.mmdb = "${finalAttrs.finalPackage}/share/dbip/dbip-country-lite.mmdb"; - meta = { + meta = with lib; { description = "Free IP to Country Lite database by DB-IP"; homepage = "https://db-ip.com/db/download/ip-to-country-lite"; - license = lib.licenses.cc-by-40; - maintainers = with lib.maintainers; [ nickcao ]; - platforms = lib.platforms.all; + license = licenses.cc-by-40; + maintainers = with maintainers; [ nickcao ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/db/dbvisualizer/package.nix b/pkgs/by-name/db/dbvisualizer/package.nix index 66afb65afc29fc..3f51c90e366d76 100644 --- a/pkgs/by-name/db/dbvisualizer/package.nix +++ b/pkgs/by-name/db/dbvisualizer/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "The universal database tool"; homepage = "https://www.dbvis.com/"; - maintainers = with lib.maintainers; [ boldikoller ]; - license = lib.licenses.unfree; + maintainers = with maintainers; [ boldikoller ]; + license = licenses.unfree; mainProgram = "dbvis"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; }; }) diff --git a/pkgs/by-name/dc/dcraw/package.nix b/pkgs/by-name/dc/dcraw/package.nix index 4c76548c2b35c6..131cb17931e9eb 100644 --- a/pkgs/by-name/dc/dcraw/package.nix +++ b/pkgs/by-name/dc/dcraw/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { sh -e install ''; - meta = { + meta = with lib; { homepage = "https://www.dechifro.org/dcraw/"; description = "Decoder for many camera raw picture formats"; - license = lib.licenses.free; - platforms = lib.platforms.unix; # Once had cygwin problems + license = licenses.free; + platforms = platforms.unix; # Once had cygwin problems maintainers = [ ]; knownVulnerabilities = [ "CVE-2018-19655" diff --git a/pkgs/by-name/dc/dcrd/package.nix b/pkgs/by-name/dc/dcrd/package.nix index ef496df3a7bbf1..b888d8cadec7a9 100644 --- a/pkgs/by-name/dc/dcrd/package.nix +++ b/pkgs/by-name/dc/dcrd/package.nix @@ -37,10 +37,10 @@ buildGoModule rec { export DCRD_APPDATA="$TMPDIR" ''; - meta = { + meta = with lib; { homepage = "https://decred.org"; description = "Decred daemon in Go (golang)"; - license = with lib.licenses; [ isc ]; - maintainers = with lib.maintainers; [ juaningan ]; + license = with licenses; [ isc ]; + maintainers = with maintainers; [ juaningan ]; }; } diff --git a/pkgs/by-name/dc/dcrwallet/package.nix b/pkgs/by-name/dc/dcrwallet/package.nix index 40c6c4564cb10b..ef9d19362ab2a2 100644 --- a/pkgs/by-name/dc/dcrwallet/package.nix +++ b/pkgs/by-name/dc/dcrwallet/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { "-skip=^TestUntrustedClientCert$" ]; - meta = { + meta = with lib; { homepage = "https://decred.org"; description = "Secure Decred wallet daemon written in Go (golang)"; - license = with lib.licenses; [ isc ]; - maintainers = with lib.maintainers; [ juaningan ]; + license = with licenses; [ isc ]; + maintainers = with maintainers; [ juaningan ]; mainProgram = "dcrwallet"; }; } diff --git a/pkgs/by-name/dd/ddd/package.nix b/pkgs/by-name/dd/ddd/package.nix index f33f08825799c9..e895ee48eb3894 100644 --- a/pkgs/by-name/dd/ddd/package.nix +++ b/pkgs/by-name/dd/ddd/package.nix @@ -57,13 +57,13 @@ stdenv.mkDerivation (finalAttrs: { install -D ddd.png $out/share/icons/hicolor/48x48/apps/ddd.png ''; - meta = { + meta = with lib; { changelog = "https://www.gnu.org/software/ddd/news.html"; description = "Graphical front-end for command-line debuggers"; homepage = "https://www.gnu.org/software/ddd"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "ddd"; - maintainers = with lib.maintainers; [ emilytrau ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ emilytrau ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/dd/ddsmt/package.nix b/pkgs/by-name/dd/ddsmt/package.nix index 74616fd67e15aa..df5aeb3c150101 100644 --- a/pkgs/by-name/dd/ddsmt/package.nix +++ b/pkgs/by-name/dd/ddsmt/package.nix @@ -27,10 +27,10 @@ python3Packages.buildPythonApplication { progressbar ]; - meta = { + meta = with lib; { description = "Delta debugger for SMT benchmarks in SMT-LIB v2"; homepage = "https://ddsmt.readthedocs.io/"; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/by-name/de/debase/package.nix b/pkgs/by-name/de/debase/package.nix index 2468dd302b24e9..e32251948f9fdc 100644 --- a/pkgs/by-name/de/debase/package.nix +++ b/pkgs/by-name/de/debase/package.nix @@ -75,14 +75,14 @@ stdenv.mkDerivation rec { }" ]; - meta = { + meta = with lib; { description = "TUI for drag-and-drop manipulation of git commits"; homepage = "https://toaster.llc/debase"; # The author has not yet specified a license. # See https://github.com/toasterllc/debase/pull/4 - license = lib.licenses.publicDomain; + license = licenses.publicDomain; mainProgram = "debase"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ jeremyschlatter aleksana ]; diff --git a/pkgs/by-name/de/decibels/package.nix b/pkgs/by-name/de/decibels/package.nix index 162c1b9a8aa500..3488c231bcb750 100644 --- a/pkgs/by-name/de/decibels/package.nix +++ b/pkgs/by-name/de/decibels/package.nix @@ -63,13 +63,13 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Play audio files"; homepage = "https://gitlab.gnome.org/GNOME/Incubator/decibels"; changelog = "https://gitlab.gnome.org/GNOME/Incubator/decibels/-/blob/main/NEWS?ref_type=tags"; - license = lib.licenses.gpl3Only; - maintainers = lib.teams.gnome-circle.members; + license = licenses.gpl3Only; + maintainers = teams.gnome-circle.members; mainProgram = "org.gnome.Decibels"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/de/deck/package.nix b/pkgs/by-name/de/deck/package.nix index 94aef5ecbcb42a..4dda32a4c60afe 100644 --- a/pkgs/by-name/de/deck/package.nix +++ b/pkgs/by-name/de/deck/package.nix @@ -38,11 +38,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Configuration management and drift detection tool for Kong"; homepage = "https://github.com/Kong/deck"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "deck"; - maintainers = with lib.maintainers; [ liyangau ]; + maintainers = with maintainers; [ liyangau ]; }; } diff --git a/pkgs/by-name/de/dediprog-sf100/package.nix b/pkgs/by-name/de/dediprog-sf100/package.nix index 48b6e67e014300..3a2d3f16705654 100644 --- a/pkgs/by-name/de/dediprog-sf100/package.nix +++ b/pkgs/by-name/de/dediprog-sf100/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/DediProgSW/SF100Linux"; description = "Linux software for DediProg SF100/SF600 programmers"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ thillux ]; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ thillux ]; }; }) diff --git a/pkgs/by-name/de/deepsource/package.nix b/pkgs/by-name/de/deepsource/package.nix index 10d48b0fc4ceb8..d9b9c31a8a3322 100644 --- a/pkgs/by-name/de/deepsource/package.nix +++ b/pkgs/by-name/de/deepsource/package.nix @@ -52,11 +52,11 @@ buildGoModule rec { versionCheckHook ]; - meta = { + meta = with lib; { description = "Command line interface to DeepSource, the code health platform"; mainProgram = "deepsource"; homepage = "https://github.com/DeepSourceCorp/cli"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ nipeharefa ]; + license = licenses.bsd2; + maintainers = with maintainers; [ nipeharefa ]; }; } diff --git a/pkgs/by-name/de/deploy-rs/package.nix b/pkgs/by-name/de/deploy-rs/package.nix index a4b85ff3dce956..2233ddf026d851 100644 --- a/pkgs/by-name/de/deploy-rs/package.nix +++ b/pkgs/by-name/de/deploy-rs/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage { darwin.apple_sdk.frameworks.SystemConfiguration ]; - meta = { + meta = with lib; { description = "Multi-profile Nix-flake deploy tool"; homepage = "https://github.com/serokell/deploy-rs"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ teutat3s ]; + license = licenses.mpl20; + maintainers = with maintainers; [ teutat3s ]; mainProgram = "deploy"; }; } diff --git a/pkgs/by-name/de/descent3-unwrapped/package.nix b/pkgs/by-name/de/descent3-unwrapped/package.nix index a8a994e29d689d..4222339e0bdff2 100644 --- a/pkgs/by-name/de/descent3-unwrapped/package.nix +++ b/pkgs/by-name/de/descent3-unwrapped/package.nix @@ -124,10 +124,10 @@ stdenv.mkDerivation rec { }; }; - meta = { + meta = with lib; { description = "Game engine for a 6DOF first-person shooter"; homepage = "https://github.com/DescentDevelopers/Descent3"; - license = with lib.licenses; [ + license = with licenses; [ # See LICENSE and header that’s at the top of many source files. gpl3Plus # See THIRD_PARTY.md. @@ -135,18 +135,18 @@ stdenv.mkDerivation rec { mit ]; mainProgram = "Descent3"; - maintainers = [ lib.maintainers.jayman2000 ]; - platforms = lib.platforms.all; + maintainers = [ maintainers.jayman2000 ]; + platforms = platforms.all; badPlatforms = [ # Descent 3 stores modules in HOG2 archives. It extracts those modules # and then tries to dlopen() them at runtime. - lib.systems.inspect.platformPatterns.isStatic + systems.inspect.platformPatterns.isStatic # When you build Descent 3 on Darwin, it produces a different directory # structure (no bin/ directory) [1]. I’m sure that this derivation could be # updated to account for that different directory structure, but I don’t # have any Darwin systems to test things on at the moment. # # [1]: - ] ++ lib.platforms.darwin; + ] ++ platforms.darwin; }; } diff --git a/pkgs/by-name/de/design/package.nix b/pkgs/by-name/de/design/package.nix index bdafc2d99ec735..67797eece18d74 100644 --- a/pkgs/by-name/de/design/package.nix +++ b/pkgs/by-name/de/design/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { ln -s $out/share/design/io.github.dubstar_04.design $out/bin ''; - meta = { + meta = with lib; { homepage = "https://github.com/dubstar-04/Design"; description = "2D CAD For GNOME"; - maintainers = with lib.maintainers; [ linsui ]; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ linsui ]; + license = licenses.gpl3Plus; + platforms = platforms.linux; mainProgram = "io.github.dubstar_04.design"; }; } diff --git a/pkgs/by-name/de/desk-exec/package.nix b/pkgs/by-name/de/desk-exec/package.nix index d5b0535f5045cc..819ca2b7bf84bd 100644 --- a/pkgs/by-name/de/desk-exec/package.nix +++ b/pkgs/by-name/de/desk-exec/package.nix @@ -29,12 +29,12 @@ rustPlatform.buildRustPackage rec { popd ''; - meta = { + meta = with lib; { description = "Execute programs defined in XDG desktop entries directly from the command line"; homepage = "https://github.com/AxerTheAxe/desk-exec"; - license = lib.licenses.unlicense; - maintainers = [ lib.maintainers.axertheaxe ]; + license = licenses.unlicense; + maintainers = [ maintainers.axertheaxe ]; mainProgram = "desk-exec"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/de/deskflow/package.nix b/pkgs/by-name/de/deskflow/package.nix index 116a3fff88459c..f314bcccc46454 100644 --- a/pkgs/by-name/de/deskflow/package.nix +++ b/pkgs/by-name/de/deskflow/package.nix @@ -106,16 +106,16 @@ stdenv.mkDerivation rec { runHook postCheck ''; - meta = { + meta = with lib; { homepage = "https://github.com/deskflow/deskflow"; description = "Share one mouse and keyboard between multiple computers on Windows, macOS and Linux"; mainProgram = "deskflow"; - maintainers = with lib.maintainers; [ aucub ]; + maintainers = with maintainers; [ aucub ]; license = with lib; [ licenses.gpl2Plus licenses.openssl ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; knownVulnerabilities = [ "CVE-2021-42072" "CVE-2021-42073" diff --git a/pkgs/by-name/de/deskreen/package.nix b/pkgs/by-name/de/deskreen/package.nix index 255d9b0a309c3c..7d824766faddbc 100644 --- a/pkgs/by-name/de/deskreen/package.nix +++ b/pkgs/by-name/de/deskreen/package.nix @@ -34,15 +34,15 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Turn any device into a secondary screen for your computer"; homepage = "https://deskreen.com"; - license = lib.licenses.agpl3Only; + license = licenses.agpl3Only; mainProgram = "deskreen"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ leo248 drupol ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/de/detect-it-easy/package.nix b/pkgs/by-name/de/detect-it-easy/package.nix index df1eeece456a79..bc056807d6ff91 100644 --- a/pkgs/by-name/de/detect-it-easy/package.nix +++ b/pkgs/by-name/de/detect-it-easy/package.nix @@ -56,16 +56,16 @@ stdenv.mkDerivation (finalAttrs: { grep -v "Version=#VERSION#" $src/LINUX/die.desktop > $out/share/applications/die.desktop ''; - meta = { + meta = with lib; { description = "Program for determining types of files for Windows, Linux and MacOS."; mainProgram = "die"; homepage = "https://github.com/horsicq/Detect-It-Easy"; changelog = "https://github.com/horsicq/Detect-It-Easy/blob/master/changelog.txt"; - maintainers = with lib.maintainers; [ ivyfanchiang ]; + maintainers = with maintainers; [ ivyfanchiang ]; platforms = [ "x86_64-linux" "aarch64-linux" ]; - license = lib.licenses.mit; + license = licenses.mit; }; }) diff --git a/pkgs/by-name/de/dev86/package.nix b/pkgs/by-name/de/dev86/package.nix index bed0d6c2645686..8746372f536860 100644 --- a/pkgs/by-name/de/dev86/package.nix +++ b/pkgs/by-name/de/dev86/package.nix @@ -18,14 +18,14 @@ stdenv.mkDerivation (finalAttrs: { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = { + meta = with lib; { homepage = "https://codeberg.org/jbruchon/dev86"; description = "C compiler, assembler and linker environment for the production of 8086 executables"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + maintainers = with maintainers; [ AndersonTorres sigmasquadron ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/de/devcontainer/package.nix b/pkgs/by-name/de/devcontainer/package.nix index d852ff4e50c8e4..05723763db6cdf 100644 --- a/pkgs/by-name/de/devcontainer/package.nix +++ b/pkgs/by-name/de/devcontainer/package.nix @@ -81,12 +81,12 @@ stdenv.mkDerivation (finalAttrs: { } ''; - meta = { + meta = with lib; { description = "Dev container CLI, run and manage your dev environments via a devcontainer.json"; homepage = "https://containers.dev/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ rucadi ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ rucadi ]; + platforms = platforms.unix; mainProgram = "devcontainer"; }; }) diff --git a/pkgs/by-name/de/devtoolbox/package.nix b/pkgs/by-name/de/devtoolbox/package.nix index 703bd518705487..77429f94a62185 100644 --- a/pkgs/by-name/de/devtoolbox/package.nix +++ b/pkgs/by-name/de/devtoolbox/package.nix @@ -95,7 +95,7 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = { + meta = with lib; { description = "Development tools at your fingertips"; longDescription = '' If you're tired of endlessly looking online for the right @@ -114,7 +114,7 @@ python3Packages.buildPythonApplication rec { - Much more... ''; homepage = "https://github.com/aleiepure/devtoolbox"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Plus cc0 lgpl3Only @@ -122,10 +122,10 @@ python3Packages.buildPythonApplication rec { unlicense ]; mainProgram = "devtoolbox"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ aleksana aucub ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/de/dexed/package.nix b/pkgs/by-name/de/dexed/package.nix index 93e607a1f9279a..9b842f1a6247e0 100644 --- a/pkgs/by-name/de/dexed/package.nix +++ b/pkgs/by-name/de/dexed/package.nix @@ -110,12 +110,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = { + meta = with lib; { description = "DX7 FM multi platform/multi format plugin"; mainProgram = "Dexed"; homepage = "https://asb2m10.github.io/dexed"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ OPNA2608 ]; + license = licenses.gpl3Only; + platforms = platforms.all; + maintainers = with maintainers; [ OPNA2608 ]; }; }) diff --git a/pkgs/by-name/de/dezoomify-rs/package.nix b/pkgs/by-name/de/dezoomify-rs/package.nix index f426eeaafc4ae8..166bd280d6ae75 100644 --- a/pkgs/by-name/de/dezoomify-rs/package.nix +++ b/pkgs/by-name/de/dezoomify-rs/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { "--skip=custom_size_local_zoomify_tiles" ]; - meta = { + meta = with lib; { description = "Zoomable image downloader for Google Arts & Culture, Zoomify, IIIF, and others"; homepage = "https://github.com/lovasoa/dezoomify-rs/"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ fsagbuya ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ fsagbuya ]; mainProgram = "dezoomify-rs"; }; } diff --git a/pkgs/by-name/df/dfc/package.nix b/pkgs/by-name/df/dfc/package.nix index 53cf879438b977..d6c1dbb0dd750e 100644 --- a/pkgs/by-name/df/dfc/package.nix +++ b/pkgs/by-name/df/dfc/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { gettext ]; - meta = { + meta = with lib; { homepage = "https://projects.gw-computing.net/projects/dfc"; description = "Displays file system space usage using graphs and colors"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ qknight ]; - platforms = lib.platforms.all; + license = licenses.bsd3; + maintainers = with maintainers; [ qknight ]; + platforms = platforms.all; mainProgram = "dfc"; }; } diff --git a/pkgs/by-name/dh/dhex/package.nix b/pkgs/by-name/dh/dhex/package.nix index 80cafbb765a207..b3cc7928ac426e 100644 --- a/pkgs/by-name/dh/dhex/package.nix +++ b/pkgs/by-name/dh/dhex/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { cp dhex_searchlog.5 $out/share/man/man5 ''; - meta = { + meta = with lib; { description = "Themeable hex editor with diff mode"; homepage = "http://www.dettus.net/dhex/"; - license = lib.licenses.gpl2; - maintainers = with lib.maintainers; [ qknight ]; - platforms = with lib.platforms; linux; + license = licenses.gpl2; + maintainers = with maintainers; [ qknight ]; + platforms = with platforms; linux; mainProgram = "dhex"; }; } diff --git a/pkgs/by-name/di/diagrams-as-code/package.nix b/pkgs/by-name/di/diagrams-as-code/package.nix index 14ba0abf5a9bb2..81587a44b6b883 100644 --- a/pkgs/by-name/di/diagrams-as-code/package.nix +++ b/pkgs/by-name/di/diagrams-as-code/package.nix @@ -48,11 +48,11 @@ python3Packages.buildPythonPackage rec { ''; }; - meta = { + meta = with lib; { description = "Declarative configurations using YAML for drawing cloud system architectures"; homepage = "https://github.com/dmytrostriletskyi/diagrams-as-code"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; mainProgram = "diagrams-as-code"; }; } diff --git a/pkgs/by-name/di/dialect/package.nix b/pkgs/by-name/di/dialect/package.nix index a9c95c7f7e08f5..a9ba2033b0f550 100644 --- a/pkgs/by-name/di/dialect/package.nix +++ b/pkgs/by-name/di/dialect/package.nix @@ -75,12 +75,12 @@ python3.pkgs.buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://github.com/dialect-app/dialect"; description = "Translation app for GNOME"; - maintainers = lib.teams.gnome-circle.members; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; + maintainers = teams.gnome-circle.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; mainProgram = "dialect"; }; } diff --git a/pkgs/by-name/di/diction/package.nix b/pkgs/by-name/di/diction/package.nix index e6fb9f5d48bd89..b83b272b57ef7b 100644 --- a/pkgs/by-name/di/diction/package.nix +++ b/pkgs/by-name/di/diction/package.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { sha256 = "08fi971b8qa4xycxbgb42i6b5ms3qx9zpp5hwpbxy2vypfs0wph9"; }; - meta = { + meta = with lib; { description = "GNU style and diction utilities"; longDescription = '' Diction and style are two old standard Unix commands. Diction identifies @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { characteristics of a document, including sentence length and other readability measures. ''; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.unix; + license = licenses.gpl3Plus; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/di/dillo-plus/package.nix b/pkgs/by-name/di/dillo-plus/package.nix index 8247cee5781f22..0012ed4993db57 100644 --- a/pkgs/by-name/di/dillo-plus/package.nix +++ b/pkgs/by-name/di/dillo-plus/package.nix @@ -44,13 +44,13 @@ stdenv.mkDerivation (finalAttrs: { "INSTALL=install" ]; - meta = { + meta = with lib; { description = "Lightweight web browser based on Dillo but with many improvements, such as: support for http, https, gemini, gopher, epub, reader mode and more"; homepage = "https://github.com/crossbowerbt/dillo-plus"; changelog = "https://github.com/crossbowerbt/dillo-plus/blob/main/ChangeLog"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ fgaz ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ fgaz ]; mainProgram = "dillo"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/di/dim/package.nix b/pkgs/by-name/di/dim/package.nix index 53ab3a0ed685c5..c54bca74952f1a 100644 --- a/pkgs/by-name/di/dim/package.nix +++ b/pkgs/by-name/di/dim/package.nix @@ -112,12 +112,12 @@ rustPlatform.buildRustPackage rec { --prefix PATH : ${lib.makeBinPath [ ffmpeg ]} ''; - meta = { + meta = with lib; { homepage = "https://github.com/Dusk-Labs/dim"; description = "Self-hosted media manager"; - license = lib.licenses.agpl3Only; + license = licenses.agpl3Only; mainProgram = "dim"; - maintainers = [ lib.maintainers.misterio77 ]; - platforms = lib.platforms.unix; + maintainers = [ maintainers.misterio77 ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/di/ding-libs/package.nix b/pkgs/by-name/di/ding-libs/package.nix index 2f375904165eee..1c8d88d2cee720 100644 --- a/pkgs/by-name/di/ding-libs/package.nix +++ b/pkgs/by-name/di/ding-libs/package.nix @@ -19,14 +19,14 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { description = "'D is not GLib' utility libraries"; homepage = "https://pagure.io/SSSD/ding-libs"; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; maintainers = [ ]; license = [ - lib.licenses.gpl3 - lib.licenses.lgpl3 + licenses.gpl3 + licenses.lgpl3 ]; }; } diff --git a/pkgs/by-name/di/dinit/package.nix b/pkgs/by-name/di/dinit/package.nix index f99c7bf14c382d..d1433146d677a9 100644 --- a/pkgs/by-name/di/dinit/package.nix +++ b/pkgs/by-name/di/dinit/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { --zsh contrib/shell-completion/zsh/_dinit ''; - meta = { + meta = with lib; { description = "A service manager / supervision system, which can (on Linux) also function as a system manager and init"; homepage = "https://davmac.org/projects/dinit"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ aanderse ]; - platforms = lib.platforms.unix; + license = licenses.asl20; + maintainers = with maintainers; [ aanderse ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/di/diodon/package.nix b/pkgs/by-name/di/diodon/package.nix index c65646b31a1620..c3b7ef4dd23de8 100644 --- a/pkgs/by-name/di/diodon/package.nix +++ b/pkgs/by-name/di/diodon/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { description = "Aiming to be the best integrated clipboard manager for the Unity desktop"; homepage = "https://launchpad.net/diodon"; mainProgram = "diodon"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.sfrijters ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = [ maintainers.sfrijters ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/di/dippi/package.nix b/pkgs/by-name/di/dippi/package.nix index 14865ba980ecc5..92c57f646f9ae7 100644 --- a/pkgs/by-name/di/dippi/package.nix +++ b/pkgs/by-name/di/dippi/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { libadwaita ]; - meta = { + meta = with lib; { description = "Calculate display info like DPI and aspect ratio"; homepage = "https://github.com/cassidyjames/dippi"; mainProgram = "com.github.cassidyjames.dippi"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ zendo ]; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ zendo ]; }; } diff --git a/pkgs/by-name/di/dirb/package.nix b/pkgs/by-name/di/dirb/package.nix index c0093d37919348..cdfe8abb4604a0 100644 --- a/pkgs/by-name/di/dirb/package.nix +++ b/pkgs/by-name/di/dirb/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { ln -s $out/share/dirb/wordlists/ $out/share/wordlists/dirb ''; - meta = { + meta = with lib; { description = "Web content scanner"; homepage = "https://dirb.sourceforge.net/"; - maintainers = with lib.maintainers; [ bennofs ]; - license = with lib.licenses; [ gpl2Only ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ bennofs ]; + license = with licenses; [ gpl2Only ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/di/dirbuster/package.nix b/pkgs/by-name/di/dirbuster/package.nix index 895d74e19a87db..aaca799baccfd7 100644 --- a/pkgs/by-name/di/dirbuster/package.nix +++ b/pkgs/by-name/di/dirbuster/package.nix @@ -61,13 +61,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Brute force directories and files names on web/application servers"; homepage = "https://wiki.owasp.org/index.php/Category:OWASP_DirBuster_Project"; - license = lib.licenses.lgpl21Only; + license = licenses.lgpl21Only; mainProgram = "dirbuster"; - maintainers = with lib.maintainers; [ emilytrau ]; - platforms = lib.platforms.all; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + maintainers = with maintainers; [ emilytrau ]; + platforms = platforms.all; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; }; }) diff --git a/pkgs/by-name/di/discover-overlay/package.nix b/pkgs/by-name/di/discover-overlay/package.nix index 433e6178adac7d..f27c9a23efc09c 100644 --- a/pkgs/by-name/di/discover-overlay/package.nix +++ b/pkgs/by-name/di/discover-overlay/package.nix @@ -53,12 +53,12 @@ python3.pkgs.buildPythonApplication rec { ''; doCheck = false; - meta = { + meta = with lib; { description = "Yet another discord overlay for linux"; homepage = "https://github.com/trigg/Discover"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ dragonginger ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ dragonginger ]; mainProgram = "discover-overlay"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/di/discrete-scroll/package.nix b/pkgs/by-name/di/discrete-scroll/package.nix index f3b0f1c981091b..be7bb5b49ac00d 100644 --- a/pkgs/by-name/di/discrete-scroll/package.nix +++ b/pkgs/by-name/di/discrete-scroll/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Fix for OS X's scroll wheel problem"; homepage = "https://github.com/emreyolcu/discrete-scroll"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ bb2020 ]; - platforms = lib.platforms.darwin; + license = licenses.mit; + maintainers = with maintainers; [ bb2020 ]; + platforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/di/disk-filltest/package.nix b/pkgs/by-name/di/disk-filltest/package.nix index d66357c405403c..d4df9dcf978215 100644 --- a/pkgs/by-name/di/disk-filltest/package.nix +++ b/pkgs/by-name/di/disk-filltest/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation (finalAttrs: { install -D -m0644 -t $doc/share/doc/disk-filltest README ''; - meta = { + meta = with lib; { homepage = "https://panthema.net/2013/disk-filltest"; description = "Simple program to detect bad disks by filling them with random data"; longDescription = '' @@ -40,9 +40,9 @@ stdenv.mkDerivation (finalAttrs: { disk is full, read the files again and verify the sequence written. It also can measure read/write speed while filling the disk. ''; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "disk-filltest"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/di/disk_indicator/package.nix b/pkgs/by-name/di/disk_indicator/package.nix index 1f2e4d3b6f5531..1ec13392b9fe71 100644 --- a/pkgs/by-name/di/disk_indicator/package.nix +++ b/pkgs/by-name/di/disk_indicator/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/MeanEYE/Disk-Indicator"; description = "Program that will turn a LED into a hard disk indicator"; mainProgram = "disk_indicator"; @@ -51,7 +51,7 @@ stdenv.mkDerivation { Small program for Linux that will turn your Scroll, Caps or Num Lock LED or LED on your ThinkPad laptop into a hard disk activity indicator. ''; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; + license = licenses.gpl3; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/di/disko/package.nix b/pkgs/by-name/di/disko/package.nix index d4ca31d31c8336..b8d12fd37d2569 100644 --- a/pkgs/by-name/di/disko/package.nix +++ b/pkgs/by-name/di/disko/package.nix @@ -51,16 +51,16 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; - meta = { + meta = with lib; { homepage = "https://github.com/nix-community/disko"; description = "Declarative disk partitioning and formatting using nix"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "disko"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ mic92 lassulus iFreilicht ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/di/disnixos/package.nix b/pkgs/by-name/di/disnixos/package.nix index 23efd2ecf65974..2c24e9eef0ab4b 100644 --- a/pkgs/by-name/di/disnixos/package.nix +++ b/pkgs/by-name/di/disnixos/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation rec { getopt ]; - meta = { + meta = with lib; { description = "Provides complementary NixOS infrastructure deployment to Disnix"; - license = lib.licenses.lgpl21Plus; - maintainers = [ lib.maintainers.sander ]; - platforms = lib.platforms.linux; + license = licenses.lgpl21Plus; + maintainers = [ maintainers.sander ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/di/distrho-ports/package.nix b/pkgs/by-name/di/distrho-ports/package.nix index dcee3bbadd7423..bc9dae80a34562 100644 --- a/pkgs/by-name/di/distrho-ports/package.nix +++ b/pkgs/by-name/di/distrho-ports/package.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation { done ''; - meta = { + meta = with lib; { homepage = "http://distrho.sourceforge.net/ports"; description = "Linux audio plugins and LV2 ports"; longDescription = '' @@ -99,7 +99,7 @@ stdenv.mkDerivation { - vitalium - wolpertinger ''; - license = with lib.licenses; [ + license = with licenses; [ gpl2Only gpl3Only gpl2Plus @@ -108,6 +108,6 @@ stdenv.mkDerivation { mit ]; maintainers = [ ]; - platforms = lib.systems.inspect.patternLogicalAnd lib.systems.inspect.patterns.isLinux lib.systems.inspect.patterns.isx86; + platforms = systems.inspect.patternLogicalAnd systems.inspect.patterns.isLinux systems.inspect.patterns.isx86; }; } diff --git a/pkgs/by-name/di/distrobuilder/package.nix b/pkgs/by-name/di/distrobuilder/package.nix index bc204e8d74a655..1def32b4e83635 100644 --- a/pkgs/by-name/di/distrobuilder/package.nix +++ b/pkgs/by-name/di/distrobuilder/package.nix @@ -69,12 +69,12 @@ buildGoModule rec { generator = callPackage ./generator.nix { inherit src version; }; }; - meta = { + meta = with lib; { description = "System container image builder for LXC and LXD"; homepage = "https://github.com/lxc/distrobuilder"; - license = lib.licenses.asl20; - maintainers = lib.teams.lxc.members; - platforms = lib.platforms.linux; + license = licenses.asl20; + maintainers = teams.lxc.members; + platforms = platforms.linux; mainProgram = "distrobuilder"; }; } diff --git a/pkgs/by-name/dj/djenrandom/package.nix b/pkgs/by-name/dj/djenrandom/package.nix index 2f955f7cd365c2..632c6b6863db2b 100644 --- a/pkgs/by-name/dj/djenrandom/package.nix +++ b/pkgs/by-name/dj/djenrandom/package.nix @@ -31,16 +31,16 @@ stdenv.mkDerivation rec { makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ]; - meta = { + meta = with lib; { homepage = "http://www.deadhat.com/"; description = '' A C program to generate random data using several random models, with parameterized non uniformities and flexible output formats ''; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; # djenrandom uses x86 specific instructions, therefore we can only compile for the x86 architechture - platforms = lib.platforms.x86; - maintainers = with lib.maintainers; [ + platforms = platforms.x86; + maintainers = with maintainers; [ orichter thillux ]; diff --git a/pkgs/by-name/dj/djent/package.nix b/pkgs/by-name/dj/djent/package.nix index a5d0d45313a780..d8806941f89f0b 100644 --- a/pkgs/by-name/dj/djent/package.nix +++ b/pkgs/by-name/dj/djent/package.nix @@ -36,16 +36,16 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "http://www.deadhat.com/"; description = '' A reimplementation of the Fourmilab/John Walker random number test program ent with several improvements ''; mainProgram = "djent"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Only; + platforms = platforms.all; + maintainers = with maintainers; [ orichter thillux ]; diff --git a/pkgs/by-name/dj/djmount/package.nix b/pkgs/by-name/dj/djmount/package.nix index d28e6ea0e612d5..5d51d5a885c09b 100644 --- a/pkgs/by-name/dj/djmount/package.nix +++ b/pkgs/by-name/dj/djmount/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { # multiple definition of `pVirtualDirList'; libupnp/upnp/.libs/libupnp.a(libupnp_la-upnpapi.o):libupnp/upnp/src/inc/upnpapi.h:163: first defined here env.NIX_CFLAGS_COMPILE = "-fcommon"; - meta = { + meta = with lib; { homepage = "https://djmount.sourceforge.net/"; description = "UPnP AV client, mounts as a Linux filesystem the media content of compatible UPnP AV devices"; mainProgram = "djmount"; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.jagajaga ]; - license = lib.licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = [ maintainers.jagajaga ]; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/dj/djvu2pdf/package.nix b/pkgs/by-name/dj/djvu2pdf/package.nix index cb2e4fe7cdaaf9..04f75f75b2c1b5 100644 --- a/pkgs/by-name/dj/djvu2pdf/package.nix +++ b/pkgs/by-name/dj/djvu2pdf/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { cp -p djvu2pdf.1.gz $out/man/man1 ''; - meta = { + meta = with lib; { description = "Convert DjVu files to PDF files"; homepage = "https://0x2a.at/site/projects/djvu2pdf/"; - license = lib.licenses.gpl1Only; - platforms = lib.platforms.all; + license = licenses.gpl1Only; + platforms = platforms.all; mainProgram = "djvu2pdf"; }; } diff --git a/pkgs/by-name/dk/dk/package.nix b/pkgs/by-name/dk/dk/package.nix index f0bfbba4c52801..8fa911e14d2b91 100644 --- a/pkgs/by-name/dk/dk/package.nix +++ b/pkgs/by-name/dk/dk/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "https://bitbucket.org/natemaia/dk"; description = "List based tiling window manager in the vein of dwm, bspwm, and xmonad"; - license = lib.licenses.x11; - maintainers = with lib.maintainers; [ _3JlOy-PYCCKUi ]; - platforms = lib.platforms.linux; + license = licenses.x11; + maintainers = with maintainers; [ _3JlOy-PYCCKUi ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/dm/dm-sans/package.nix b/pkgs/by-name/dm/dm-sans/package.nix index 95a1f9e23c4dee..ba2f88c836452e 100644 --- a/pkgs/by-name/dm/dm-sans/package.nix +++ b/pkgs/by-name/dm/dm-sans/package.nix @@ -23,10 +23,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Geometric sans-serif typeface"; homepage = "https://github.com/googlefonts/dm-fonts"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ gilice ]; + license = licenses.ofl; + maintainers = with maintainers; [ gilice ]; }; } diff --git a/pkgs/by-name/dm/dmarc-report-converter/package.nix b/pkgs/by-name/dm/dmarc-report-converter/package.nix index 507fbe4a4300c2..b7595942b65893 100644 --- a/pkgs/by-name/dm/dmarc-report-converter/package.nix +++ b/pkgs/by-name/dm/dmarc-report-converter/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { passthru.tests.version = testers.testVersion { package = dmarc-report-converter; }; - meta = { + meta = with lib; { description = "Convert DMARC report files from xml to human-readable formats"; homepage = "https://github.com/tierpod/dmarc-report-converter"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.Nebucatnetzer ]; + license = licenses.mit; + maintainers = [ maintainers.Nebucatnetzer ]; mainProgram = "dmarc-report-converter"; }; } diff --git a/pkgs/by-name/dm/dmenu-bluetooth/package.nix b/pkgs/by-name/dm/dmenu-bluetooth/package.nix index 8d44013cb44b49..3987653b32e7e6 100644 --- a/pkgs/by-name/dm/dmenu-bluetooth/package.nix +++ b/pkgs/by-name/dm/dmenu-bluetooth/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Script that generates a dmenu menu that uses bluetoothctl to connect to bluetooth devices and display status info"; mainProgram = "dmenu-bluetooth"; homepage = "https://github.com/Layerex/dmenu-bluetooth"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ludovicopiero ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ ludovicopiero ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/dm/dmg2img/package.nix b/pkgs/by-name/dm/dmg2img/package.nix index ff93db42d28e59..2cb5199e49f62f 100644 --- a/pkgs/by-name/dm/dmg2img/package.nix +++ b/pkgs/by-name/dm/dmg2img/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Tool which allows converting Apple compressed dmg archives to standard (hfsplus) image disk files"; homepage = "https://github.com/Lekensteyn/dmg2img"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ KSJ2000 ]; + license = licenses.gpl2Only; + platforms = platforms.unix; + maintainers = with maintainers; [ KSJ2000 ]; mainProgram = "dmg2img"; }; }) diff --git a/pkgs/by-name/dm/dmlive/package.nix b/pkgs/by-name/dm/dmlive/package.nix index 1f6714afff20ce..710fcd606d660f 100644 --- a/pkgs/by-name/dm/dmlive/package.nix +++ b/pkgs/by-name/dm/dmlive/package.nix @@ -44,11 +44,11 @@ rustPlatform.buildRustPackage rec { }" ''; - meta = { + meta = with lib; { description = "Tool to play and record videos or live streams with danmaku"; homepage = "https://github.com/THMonster/dmlive"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "dmlive"; - maintainers = with lib.maintainers; [ nickcao ]; + maintainers = with maintainers; [ nickcao ]; }; } diff --git a/pkgs/by-name/dm/dms/package.nix b/pkgs/by-name/dm/dms/package.nix index 2eb2ca2838d174..ec9e80011fd1dd 100644 --- a/pkgs/by-name/dm/dms/package.nix +++ b/pkgs/by-name/dm/dms/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-f6Jl78ZPLD7Oq4Bq8MBQpHEKnBvpyTWZ9qHa1fGOlgA="; - meta = { + meta = with lib; { homepage = "https://github.com/anacrolix/dms"; description = "UPnP DLNA Digital Media Server with basic video transcoding"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.claes ]; - platforms = lib.platforms.linux; + license = licenses.bsd3; + maintainers = [ maintainers.claes ]; + platforms = platforms.linux; mainProgram = "dms"; }; } diff --git a/pkgs/by-name/dn/dnsdbq/package.nix b/pkgs/by-name/dn/dnsdbq/package.nix index 9070dd89767e26..f9d648394a038d 100644 --- a/pkgs/by-name/dn/dnsdbq/package.nix +++ b/pkgs/by-name/dn/dnsdbq/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { extraOutputsToInstall = [ "man" ]; - meta = { + meta = with lib; { description = "C99 program that accesses passive DNS database systems"; homepage = "https://github.com/dnsdb/dnsdbq"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ x123 ]; + license = licenses.asl20; + maintainers = with maintainers; [ x123 ]; mainProgram = "dnsdbq"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/dn/dnstop/package.nix b/pkgs/by-name/dn/dnstop/package.nix index eaf08d72820f7a..0b44345a32047b 100644 --- a/pkgs/by-name/dn/dnstop/package.nix +++ b/pkgs/by-name/dn/dnstop/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { mkdir -p $out/share/man/man8 $out/bin ''; - meta = { + meta = with lib; { description = "libpcap application that displays DNS traffic on your network"; homepage = "http://dns.measurement-factory.com/tools/dnstop"; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; + license = licenses.bsd3; + platforms = platforms.unix; mainProgram = "dnstop"; }; } diff --git a/pkgs/by-name/dn/dnsvalidator/package.nix b/pkgs/by-name/dn/dnsvalidator/package.nix index 34077e9f1d2618..ab1c9d8c1a0df6 100644 --- a/pkgs/by-name/dn/dnsvalidator/package.nix +++ b/pkgs/by-name/dn/dnsvalidator/package.nix @@ -38,11 +38,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "dnsvalidator" ]; - meta = { + meta = with lib; { description = "Tool to maintain a list of IPv4 DNS servers"; homepage = "https://github.com/vortexau/dnsvalidator"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ fab ]; mainProgram = "dnsvalidator"; }; } diff --git a/pkgs/by-name/do/docker-init/package.nix b/pkgs/by-name/do/docker-init/package.nix index 46b951515d91f2..7aae8c856c9145 100644 --- a/pkgs/by-name/do/docker-init/package.nix +++ b/pkgs/by-name/do/docker-init/package.nix @@ -33,14 +33,14 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Creates Docker-related starter files for your project"; homepage = "https://docs.docker.com/reference/cli/docker/init"; downloadPage = "https://docs.docker.com/desktop/release-notes"; mainProgram = "docker-init"; - license = lib.licenses.unfree; + license = licenses.unfree; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ BastianAsmussen ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ BastianAsmussen ]; }; }) diff --git a/pkgs/by-name/do/doclifter/package.nix b/pkgs/by-name/do/doclifter/package.nix index fb4dff6b5e1009..3d177a58ec03fe 100644 --- a/pkgs/by-name/do/doclifter/package.nix +++ b/pkgs/by-name/do/doclifter/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation (finalAttrs: { gzip < manlifter.1 > $out/share/man/man1/manlifter.1.gz ''; - meta = { + meta = with lib; { changelog = "https://gitlab.com/esr/doclifter/-/blob/2.21/NEWS"; description = "Lift documents in nroff markups to XML-DocBook"; homepage = "http://www.catb.org/esr/doclifter"; - license = lib.licenses.bsd2; + license = licenses.bsd2; mainProgram = "doclifter"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/do/docopts/package.nix b/pkgs/by-name/do/docopts/package.nix index f1f8f4ecffe755..46f07ba8ac5d92 100644 --- a/pkgs/by-name/do/docopts/package.nix +++ b/pkgs/by-name/do/docopts/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { vendorHash = "sha256-+pMgaHB69itbQ+BDM7/oaJg3HrT1UN+joJL7BO/2vxE="; - meta = { + meta = with lib; { homepage = "https://github.com/docopt/docopts"; description = "Shell interpreter for docopt, the command-line interface description language"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.confus ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = [ maintainers.confus ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/do/doctoc/package.nix b/pkgs/by-name/do/doctoc/package.nix index faded51f443171..cc111868526cf5 100644 --- a/pkgs/by-name/do/doctoc/package.nix +++ b/pkgs/by-name/do/doctoc/package.nix @@ -24,12 +24,12 @@ buildNpmPackage rec { generates-valid-markdown = callPackage ./test-generates-valid-markdown { }; }; - meta = { + meta = with lib; { description = "Generate table of contents for Markdown files"; homepage = "https://github.com/thlorenz/doctoc"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tomodachi94 ]; + license = licenses.mit; + maintainers = with maintainers; [ tomodachi94 ]; mainProgram = "doctoc"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/do/doge/package.nix b/pkgs/by-name/do/doge/package.nix index c12e8345abf804..ae892a7de8c2e4 100644 --- a/pkgs/by-name/do/doge/package.nix +++ b/pkgs/by-name/do/doge/package.nix @@ -18,11 +18,11 @@ python3Packages.buildPythonApplication rec { nativeBuildInputs = [ python3Packages.setuptools ]; propagatedBuildInputs = [ python3Packages.python-dateutil ]; - meta = { + meta = with lib; { homepage = "https://github.com/Olivia5k/doge"; description = "Wow very terminal doge"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ Gonzih quantenzitrone ]; diff --git a/pkgs/by-name/do/dokieli/package.nix b/pkgs/by-name/do/dokieli/package.nix index 882f863ef97aec..dc27aa21a9eb82 100644 --- a/pkgs/by-name/do/dokieli/package.nix +++ b/pkgs/by-name/do/dokieli/package.nix @@ -47,12 +47,12 @@ mkYarnPackage rec { doDist = false; - meta = { + meta = with lib; { description = "dokieli is a clientside editor for decentralised article publishing, annotations and social interactions"; homepage = "https://github.com/linkeddata/dokieli"; - license = lib.licenses.mit; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ shogo ]; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ shogo ]; mainProgram = "dokieli"; }; } diff --git a/pkgs/by-name/do/doodle/package.nix b/pkgs/by-name/do/doodle/package.nix index 40e42515039311..0ca3d773b72c8c 100644 --- a/pkgs/by-name/do/doodle/package.nix +++ b/pkgs/by-name/do/doodle/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { sha256 = "sha256-qodp2epYyolg38MNhBV+/NMLmfXjhsn2X9uKTUniv2s="; }; - meta = { + meta = with lib; { homepage = "https://grothoff.org/christian/doodle/"; description = "Tool to quickly index and search documents on a computer"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; mainProgram = "doodle"; }; } diff --git a/pkgs/by-name/do/dosage/package.nix b/pkgs/by-name/do/dosage/package.nix index 56a128f2246c8d..d8e47c097d0fa6 100644 --- a/pkgs/by-name/do/dosage/package.nix +++ b/pkgs/by-name/do/dosage/package.nix @@ -40,11 +40,11 @@ python3Packages.buildPythonApplication rec { "test_current" ]; - meta = { + meta = with lib; { description = "Comic strip downloader and archiver"; mainProgram = "dosage"; homepage = "https://dosage.rocks/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ toonn ]; + license = licenses.mit; + maintainers = with maintainers; [ toonn ]; }; } diff --git a/pkgs/by-name/do/dosfstools/package.nix b/pkgs/by-name/do/dosfstools/package.nix index 9446485273d308..eed62f15aa4ba5 100644 --- a/pkgs/by-name/do/dosfstools/package.nix +++ b/pkgs/by-name/do/dosfstools/package.nix @@ -57,10 +57,10 @@ stdenv.mkDerivation rec { nativeCheckInputs = [ xxd ]; doCheck = true; - meta = { + meta = with lib; { description = "Utilities for creating and checking FAT and VFAT file systems"; homepage = "https://github.com/dosfstools/dosfstools"; - platforms = lib.platforms.unix; - license = lib.licenses.gpl3; + platforms = platforms.unix; + license = licenses.gpl3; }; } diff --git a/pkgs/by-name/do/dotenvy/package.nix b/pkgs/by-name/do/dotenvy/package.nix index 97b4b1a4a42f39..0dc90c50144752 100644 --- a/pkgs/by-name/do/dotenvy/package.nix +++ b/pkgs/by-name/do/dotenvy/package.nix @@ -23,10 +23,10 @@ rustPlatform.buildRustPackage rec { # just run unittests and skip doc-tests cargoTestFlags = [ "--lib" ]; - meta = { + meta = with lib; { description = "Loads environment variables from a .env file"; homepage = "https://github.com/allan2/dotenvy"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ phlip9 ]; + license = licenses.mit; + maintainers = with maintainers; [ phlip9 ]; }; } diff --git a/pkgs/by-name/do/dotnet-ef/package.nix b/pkgs/by-name/do/dotnet-ef/package.nix index 06bb8ebab33ae7..cb705a8e40f10f 100644 --- a/pkgs/by-name/do/dotnet-ef/package.nix +++ b/pkgs/by-name/do/dotnet-ef/package.nix @@ -6,7 +6,7 @@ buildDotnetGlobalTool { nugetHash = "sha256-/Ru/H2WXX/SCqF2s0M1DJkaw+6Nikm+ccrveqiOXggA="; - meta = { + meta = with lib; { description = "The Entity Framework Core tools help with design-time development tasks."; longDescription = '' The Entity Framework Core tools help with design-time development tasks. @@ -15,8 +15,8 @@ buildDotnetGlobalTool { downloadPage = "https://www.nuget.org/packages/dotnet-ef"; homepage = "https://learn.microsoft.com/en-us/ef/core/cli/dotnet"; changelog = "https://learn.microsoft.com/en-us/ef/core/what-is-new/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ lostmsu ]; + license = licenses.mit; + maintainers = with maintainers; [ lostmsu ]; mainProgram = "dotnet-ef"; }; } diff --git a/pkgs/by-name/do/dotnet-repl/package.nix b/pkgs/by-name/do/dotnet-repl/package.nix index be1790159839b9..d10a1f96e8907a 100644 --- a/pkgs/by-name/do/dotnet-repl/package.nix +++ b/pkgs/by-name/do/dotnet-repl/package.nix @@ -13,11 +13,11 @@ buildDotnetGlobalTool { nugetHash = "sha256-JHatCW+hl2792S+HYeEbbYbCIS+N4DmOctqXB/56/HU="; - meta = { + meta = with lib; { description = "A polyglot REPL built on .NET Interactive"; homepage = "https://github.com/jonsequitur/dotnet-repl"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "dotnet-repl"; - maintainers = with lib.maintainers; [ tomasajt ]; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/by-name/do/doublecmd/package.nix b/pkgs/by-name/do/doublecmd/package.nix index 59ed74b6422a61..f5fc1ff08bfbc2 100644 --- a/pkgs/by-name/do/doublecmd/package.nix +++ b/pkgs/by-name/do/doublecmd/package.nix @@ -64,13 +64,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://doublecmd.sourceforge.io/"; description = "Two-panel graphical file manager written in Pascal"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "doublecmd"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.linux; }; }) # TODO: deal with other platforms too diff --git a/pkgs/by-name/dp/dput-ng/package.nix b/pkgs/by-name/dp/dput-ng/package.nix index ababbef6edf033..7b07340795d166 100644 --- a/pkgs/by-name/dp/dput-ng/package.nix +++ b/pkgs/by-name/dp/dput-ng/package.nix @@ -48,12 +48,12 @@ python3.pkgs.buildPythonApplication { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Next-generation Debian package upload tool"; homepage = "https://dput.readthedocs.io/en/latest/"; - license = with lib.licenses; [ gpl2Plus ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ pluiedev ]; + license = with licenses; [ gpl2Plus ]; + platforms = platforms.linux; + maintainers = with maintainers; [ pluiedev ]; mainProgram = "dput"; }; } diff --git a/pkgs/by-name/dr/dreamchess/package.nix b/pkgs/by-name/dr/dreamchess/package.nix index 21622ff9aefbcc..d1a0da75ccbfca 100644 --- a/pkgs/by-name/dr/dreamchess/package.nix +++ b/pkgs/by-name/dr/dreamchess/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation (finalAttrs: { stat "''${!outputBin}/bin/${finalAttrs.meta.mainProgram}" ''; - meta = { + meta = with lib; { homepage = "https://github.com/dreamchess/dreamchess"; description = "OpenGL Chess Game"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ spk ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ spk ]; + platforms = platforms.linux; mainProgram = "dreamchess"; }; }) diff --git a/pkgs/by-name/ds/dsdcc/package.nix b/pkgs/by-name/ds/dsdcc/package.nix index 421da5890b805f..860f763f5f4148 100644 --- a/pkgs/by-name/ds/dsdcc/package.nix +++ b/pkgs/by-name/ds/dsdcc/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation (finalAttrs: { --replace '=''${exec_prefix}//' '=/' ''; - meta = { + meta = with lib; { description = "Digital Speech Decoder (DSD) rewritten as a C++ library"; homepage = "https://github.com/f4exb/dsdcc"; - license = lib.licenses.gpl3; + license = licenses.gpl3; mainProgram = "dsdccx"; - maintainers = with lib.maintainers; [ alexwinter ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ alexwinter ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ds/dsp/package.nix b/pkgs/by-name/ds/dsp/package.nix index a6a69b34d8ae24..b62eaa0fac1235 100644 --- a/pkgs/by-name/ds/dsp/package.nix +++ b/pkgs/by-name/ds/dsp/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation (finalAttrs: { libpulseaudio ]; - meta = { + meta = with lib; { homepage = "https://github.com/bmc0/dsp"; description = "Audio processing program with an interactive mode"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ aaronjheng ]; - platforms = lib.platforms.linux; + license = licenses.isc; + maintainers = with maintainers; [ aaronjheng ]; + platforms = platforms.linux; mainProgram = "dsp"; }; }) diff --git a/pkgs/by-name/ds/dsseries/package.nix b/pkgs/by-name/ds/dsseries/package.nix index b49d661949340d..f513c2600c8fd0 100644 --- a/pkgs/by-name/ds/dsseries/package.nix +++ b/pkgs/by-name/ds/dsseries/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with lib; { description = "Brother DSSeries SANE backend driver"; homepage = "http://www.brother.com"; - platforms = lib.platforms.linux; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ callahad ]; + platforms = platforms.linux; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = with maintainers; [ callahad ]; }; } diff --git a/pkgs/by-name/dt/dtv-scan-tables/package.nix b/pkgs/by-name/dt/dtv-scan-tables/package.nix index 5293158f989304..058ea868fe53c9 100644 --- a/pkgs/by-name/dt/dtv-scan-tables/package.nix +++ b/pkgs/by-name/dt/dtv-scan-tables/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation (finalAttrs: { allowedReferences = [ ]; - meta = { + meta = with lib; { # git repo with current revision is here: #downloadPage = "https://git.linuxtv.org/dtv-scan-tables.git"; # Weekly releases are supposed to be here @@ -34,7 +34,7 @@ stdenv.mkDerivation (finalAttrs: { # but sometimes they lag behind several weeks or even months. description = "Digital TV (DVB) channel/transponder scan tables"; homepage = "https://www.linuxtv.org/wiki/index.php/Dtv-scan-tables"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Only lgpl21Only ]; @@ -47,6 +47,6 @@ stdenv.mkDerivation (finalAttrs: { The package delivers a collection of transponder tables ready to be used by software like "dvbv5-scan". ''; - maintainers = with lib.maintainers; [ yarny ]; + maintainers = with maintainers; [ yarny ]; }; }) diff --git a/pkgs/by-name/du/duckstation/package.nix b/pkgs/by-name/du/duckstation/package.nix index 65ddc92ea2ded4..5cc9ee281875a8 100644 --- a/pkgs/by-name/du/duckstation/package.nix +++ b/pkgs/by-name/du/duckstation/package.nix @@ -134,15 +134,15 @@ llvmPackages.stdenv.mkDerivation (finalAttrs: { --run 'if [[ -z $I_WANT_A_BROKEN_WAYLAND_UI ]]; then export QT_QPA_PLATFORM=xcb; fi' ''; - meta = { + meta = with lib; { homepage = "https://github.com/stenzek/duckstation"; description = "Fast PlayStation 1 emulator for x86-64/AArch32/AArch64"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "duckstation-qt"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ guibou AndersonTorres ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/du/dumpifs/package.nix b/pkgs/by-name/du/dumpifs/package.nix index 8ad46567fbc2b8..a3f182bc39b4f0 100644 --- a/pkgs/by-name/du/dumpifs/package.nix +++ b/pkgs/by-name/du/dumpifs/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Tool for those who are interested in hacking MIB2 firmware"; homepage = "https://github.com/askac/dumpifs"; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ KSJ2000 ]; + platforms = platforms.unix; + maintainers = with maintainers; [ KSJ2000 ]; mainProgram = "dumpifs"; }; }) diff --git a/pkgs/by-name/du/dune3d/package.nix b/pkgs/by-name/du/dune3d/package.nix index db8f7de1b0f1f5..0413aaa39215c3 100644 --- a/pkgs/by-name/du/dune3d/package.nix +++ b/pkgs/by-name/du/dune3d/package.nix @@ -62,15 +62,15 @@ stdenv.mkDerivation (finalAttrs: { env.CASROOT = opencascade-occt; - meta = { + meta = with lib; { description = "3D CAD application"; homepage = "https://dune3d.org"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ _0x4A6F jue89 ]; mainProgram = "dune3d"; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + platforms = platforms.linux ++ platforms.darwin; }; }) diff --git a/pkgs/by-name/du/duplicati/package.nix b/pkgs/by-name/du/duplicati/package.nix index aaef3d602b0d07..774303fb1792c9 100644 --- a/pkgs/by-name/du/duplicati/package.nix +++ b/pkgs/by-name/du/duplicati/package.nix @@ -42,15 +42,15 @@ stdenv.mkDerivation (finalAttrs: { } ''; - meta = { + meta = with lib; { description = "Free backup client that securely stores encrypted, incremental, compressed backups on cloud storage services and remote file servers"; homepage = "https://www.duplicati.com/"; - license = lib.licenses.lgpl21; - maintainers = with lib.maintainers; [ + license = licenses.lgpl21; + maintainers = with maintainers; [ nyanloutre bot-wxt1221 ]; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - platforms = lib.platforms.all; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/du/durden/package.nix b/pkgs/by-name/du/durden/package.nix index 96d721a5561e8c..cb77f66c5abab9 100644 --- a/pkgs/by-name/du/durden/package.nix +++ b/pkgs/by-name/du/durden/package.nix @@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://durden.arcan-fe.com/"; description = "Reference Desktop Environment for Arcan"; longDescription = '' @@ -37,8 +37,8 @@ stdenvNoCC.mkDerivation (finalAttrs: { features in Arcan, and as a very competent entry to the advanced-user side of the desktop environment spectrum. ''; - license = with lib.licenses; [ bsd3 ]; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + license = with licenses; [ bsd3 ]; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/du/dust/package.nix b/pkgs/by-name/du/dust/package.nix index 556fed65a9c90f..bb00b432883191 100644 --- a/pkgs/by-name/du/dust/package.nix +++ b/pkgs/by-name/du/dust/package.nix @@ -35,11 +35,11 @@ rustPlatform.buildRustPackage rec { installShellCompletion completions/dust.{bash,fish} --zsh completions/_dust ''; - meta = { + meta = with lib; { description = "du + rust = dust. Like du but more intuitive"; homepage = "https://github.com/bootandy/dust"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.asl20; + maintainers = with maintainers; [ aaronjheng ]; mainProgram = "dust"; }; } diff --git a/pkgs/by-name/dv/dvb-apps/package.nix b/pkgs/by-name/dv/dvb-apps/package.nix index 43b4f13c7d86e9..15e592d4048958 100644 --- a/pkgs/by-name/dv/dvb-apps/package.nix +++ b/pkgs/by-name/dv/dvb-apps/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation { dontConfigure = true; # skip configure - meta = { + meta = with lib; { description = "Linux DVB API applications and utilities"; homepage = "https://linuxtv.org/"; - maintainers = with lib.maintainers; [ volfyd ]; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Plus; + maintainers = with maintainers; [ volfyd ]; + platforms = platforms.linux; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/dv/dvd-slideshow/package.nix b/pkgs/by-name/dv/dvd-slideshow/package.nix index 619fda45439337..0480a05e30720d 100644 --- a/pkgs/by-name/dv/dvd-slideshow/package.nix +++ b/pkgs/by-name/dv/dvd-slideshow/package.nix @@ -88,11 +88,11 @@ stdenv.mkDerivation rec { cp -a man "$out/" ''; - meta = { + meta = with lib; { description = "Suite of command line programs that creates a slideshow-style video from groups of pictures"; homepage = "https://dvd-slideshow.sourceforge.net/wiki/Main_Page"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.robbinch ]; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.robbinch ]; }; } diff --git a/pkgs/by-name/dv/dvdbackup/package.nix b/pkgs/by-name/dv/dvdbackup/package.nix index 690b793b5123d4..be82c9188bc666 100644 --- a/pkgs/by-name/dv/dvdbackup/package.nix +++ b/pkgs/by-name/dv/dvdbackup/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { }) ]; - meta = { + meta = with lib; { description = "Tool to rip video DVDs from the command line"; homepage = "https://dvdbackup.sourceforge.net/"; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.bradediger ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = [ maintainers.bradediger ]; + platforms = platforms.linux; mainProgram = "dvdbackup"; }; } diff --git a/pkgs/by-name/dw/dwt1-shell-color-scripts/package.nix b/pkgs/by-name/dw/dwt1-shell-color-scripts/package.nix index 013557a892fb88..dce62bd98af6bd 100644 --- a/pkgs/by-name/dw/dwt1-shell-color-scripts/package.nix +++ b/pkgs/by-name/dw/dwt1-shell-color-scripts/package.nix @@ -46,12 +46,12 @@ stdenvNoCC.mkDerivation { "$out/share/shell-color-scripts/colorscripts" ''; - meta = { + meta = with lib; { homepage = "https://gitlab.com/dwt1/shell-color-scripts"; description = "Collection of shell color scripts collected by dt (Derek Taylor)"; - license = with lib.licenses; [ mit ]; + license = with licenses; [ mit ]; maintainers = [ ]; - platforms = lib.platforms.all; + platforms = platforms.all; mainProgram = "colorscript"; }; } diff --git a/pkgs/by-name/dx/dxa/package.nix b/pkgs/by-name/dx/dxa/package.nix index 0b55bffdcccaa2..6a43f00f71140a 100644 --- a/pkgs/by-name/dx/dxa/package.nix +++ b/pkgs/by-name/dx/dxa/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://www.floodgap.com/retrotech/xa/"; description = "Andre Fachat's open-source 6502 disassembler"; mainProgram = "dxa"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = with lib.platforms; unix; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = with platforms; unix; }; }) diff --git a/pkgs/by-name/dx/dxvk/package.nix b/pkgs/by-name/dx/dxvk/package.nix index 144bfe33609b57..b8f74d38696d68 100644 --- a/pkgs/by-name/dx/dxvk/package.nix +++ b/pkgs/by-name/dx/dxvk/package.nix @@ -76,13 +76,13 @@ stdenvNoCC.mkDerivation ( __structuredAttrs = true; - meta = { + meta = with lib; { description = "Setup script for DXVK"; mainProgram = "setup_dxvk.sh"; homepage = "https://github.com/doitsujin/dxvk"; changelog = "https://github.com/doitsujin/dxvk/releases"; - maintainers = [ lib.maintainers.reckenrode ]; - license = lib.licenses.zlib; + maintainers = [ maintainers.reckenrode ]; + license = licenses.zlib; platforms = [ "x86_64-darwin" "i686-linux" diff --git a/pkgs/by-name/dx/dxvk_1/package.nix b/pkgs/by-name/dx/dxvk_1/package.nix index ace6746f3f2a25..b9442147c171ba 100644 --- a/pkgs/by-name/dx/dxvk_1/package.nix +++ b/pkgs/by-name/dx/dxvk_1/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation (finalAttrs: { __structuredAttrs = true; - meta = { + meta = with lib; { description = "Vulkan-based translation layer for Direct3D 9/10/11"; homepage = "https://github.com/doitsujin/dxvk"; changelog = "https://github.com/doitsujin/dxvk/releases"; - maintainers = [ lib.maintainers.reckenrode ]; - license = lib.licenses.zlib; - platforms = lib.platforms.windows; + maintainers = [ maintainers.reckenrode ]; + license = licenses.zlib; + platforms = platforms.windows; }; }) diff --git a/pkgs/by-name/dx/dxvk_2/package.nix b/pkgs/by-name/dx/dxvk_2/package.nix index 2c084aecb8fbb1..c03f9a4df55bd4 100644 --- a/pkgs/by-name/dx/dxvk_2/package.nix +++ b/pkgs/by-name/dx/dxvk_2/package.nix @@ -94,14 +94,14 @@ stdenv.mkDerivation (finalAttrs: { __structuredAttrs = true; - meta = { + meta = with lib; { description = "Vulkan-based translation layer for Direct3D 8/9/10/11"; homepage = "https://github.com/doitsujin/dxvk"; changelog = "https://github.com/doitsujin/dxvk/releases"; - maintainers = [ lib.maintainers.reckenrode ]; - license = lib.licenses.zlib; - badPlatforms = lib.platforms.darwin; - platforms = lib.platforms.windows ++ lib.platforms.unix; + maintainers = [ maintainers.reckenrode ]; + license = licenses.zlib; + badPlatforms = platforms.darwin; + platforms = platforms.windows ++ platforms.unix; pkgConfigModules = [ "dxvk-d3d10core" "dxvk-d3d11" diff --git a/pkgs/by-name/dy/dydisnix/package.nix b/pkgs/by-name/dy/dydisnix/package.nix index 0a9f6473d130cf..96e4379b93822b 100644 --- a/pkgs/by-name/dy/dydisnix/package.nix +++ b/pkgs/by-name/dy/dydisnix/package.nix @@ -48,13 +48,13 @@ stdenv.mkDerivation rec { ./bootstrap ''; - meta = { + meta = with lib; { description = "Toolset enabling self-adaptive redeployment on top of Disnix"; longDescription = '' Dynamic Disnix is a (very experimental!) prototype extension framework for Disnix supporting dynamic (re)deployment of service-oriented systems. ''; - license = lib.licenses.lgpl21Plus; - maintainers = [ lib.maintainers.tomberek ]; - platforms = lib.platforms.unix; + license = licenses.lgpl21Plus; + maintainers = [ maintainers.tomberek ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/dz/dzen2/package.nix b/pkgs/by-name/dz/dzen2/package.nix index ae7910ad2c0b5e..321f0db8c24175 100644 --- a/pkgs/by-name/dz/dzen2/package.nix +++ b/pkgs/by-name/dz/dzen2/package.nix @@ -43,10 +43,10 @@ stdenv.mkDerivation rec { make clean install ''; - meta = { + meta = with lib; { homepage = "https://github.com/robm/dzen"; - license = lib.licenses.mit; + license = licenses.mit; description = "X notification utility"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/e1/e17gtk/package.nix b/pkgs/by-name/e1/e17gtk/package.nix index b18de393621546..e1e38a03a833c4 100644 --- a/pkgs/by-name/e1/e17gtk/package.nix +++ b/pkgs/by-name/e1/e17gtk/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { cp -va README.md WORKAROUNDS screenshot.jpg $out/share/doc/E17gtk/ ''; - meta = { + meta = with lib; { description = "Enlightenment-like GTK theme with sharp corners"; homepage = "https://github.com/tsujan/E17gtk"; - license = lib.licenses.gpl3; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.romildo ]; + license = licenses.gpl3; + platforms = platforms.unix; + maintainers = [ maintainers.romildo ]; }; } diff --git a/pkgs/by-name/e2/e2tools/package.nix b/pkgs/by-name/e2/e2tools/package.nix index a4544c5fa0931a..55745a92aadbec 100644 --- a/pkgs/by-name/e2/e2tools/package.nix +++ b/pkgs/by-name/e2/e2tools/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "https://e2tools.github.io/"; description = "Utilities to read/write/manipulate files in an ext2/ext3 filesystem"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.leenaars ]; + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = [ maintainers.leenaars ]; }; } diff --git a/pkgs/by-name/ea/ear2ctl/package.nix b/pkgs/by-name/ea/ear2ctl/package.nix index 24f7b464969083..6f2b436fc5c973 100644 --- a/pkgs/by-name/ea/ear2ctl/package.nix +++ b/pkgs/by-name/ea/ear2ctl/package.nix @@ -26,12 +26,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Linux controller for the Nothing Ear (2)"; homepage = "https://gitlab.com/bharadwaj-raju/ear2ctl"; - maintainers = with lib.maintainers; [ jaredmontoya ]; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ jaredmontoya ]; + license = licenses.gpl3Plus; + platforms = platforms.linux; mainProgram = "ear2ctl"; }; } diff --git a/pkgs/by-name/ea/earbuds/package.nix b/pkgs/by-name/ea/earbuds/package.nix index bbb2ff1cff118d..062326c389dfec 100644 --- a/pkgs/by-name/ea/earbuds/package.nix +++ b/pkgs/by-name/ea/earbuds/package.nix @@ -65,13 +65,13 @@ rustPlatform.buildRustPackage { --zsh <($out/bin/earbuds --generate zsh) ''; - meta = { + meta = with lib; { description = "Free CLI tool to control your Galaxy Buds"; homepage = "https://github.com/JojiiOfficial/LiveBudsCli"; changelog = "https://github.com/JojiiOfficial/LiveBudsCli/releases"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ griffi-gh ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ griffi-gh ]; mainProgram = "earbuds"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ea/earlyoom/package.nix b/pkgs/by-name/ea/earlyoom/package.nix index ed3f0006b46666..76adf54a7061e8 100644 --- a/pkgs/by-name/ea/earlyoom/package.nix +++ b/pkgs/by-name/ea/earlyoom/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation (finalAttrs: { inherit (nixosTests) earlyoom; }; - meta = { + meta = with lib; { homepage = "https://github.com/rfjakob/earlyoom"; description = "Early OOM Daemon for Linux"; longDescription = '' @@ -59,11 +59,11 @@ stdenv.mkDerivation (finalAttrs: { oom_score). The percentage value is configurable via command line arguments. ''; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "earlyoom"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ oxalica ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ea/easel/package.nix b/pkgs/by-name/ea/easel/package.nix index d172f891eb695a..2cd138b84f75ea 100644 --- a/pkgs/by-name/ea/easel/package.nix +++ b/pkgs/by-name/ea/easel/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation (finalAttrs: { nativeInstallCheckInputs = [ versionCheckHook ]; - meta = { + meta = with lib; { description = "Sequence analysis library used by Eddy/Rivas lab code"; homepage = "https://github.com/EddyRivasLab/easel"; - license = lib.licenses.bsd2; + license = licenses.bsd2; mainProgram = "easel"; - maintainers = with lib.maintainers; [ natsukium ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ natsukium ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ea/easyloggingpp/package.nix b/pkgs/by-name/ea/easyloggingpp/package.nix index 8aa369284f6f04..114493c96a7a5c 100644 --- a/pkgs/by-name/ea/easyloggingpp/package.nix +++ b/pkgs/by-name/ea/easyloggingpp/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { mkdir -p $out/include cp ../src/easylogging++.cc $out/include ''; - meta = { + meta = with lib; { description = "C++ logging library"; homepage = "https://github.com/amrayn/easyloggingpp"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ acowley ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ acowley ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ec/ecm/package.nix b/pkgs/by-name/ec/ecm/package.nix index 93d7b56c0d3562..15504e2432ea9d 100644 --- a/pkgs/by-name/ec/ecm/package.nix +++ b/pkgs/by-name/ec/ecm/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation { doCheck = true; - meta = { + meta = with lib; { description = "Elliptic Curve Method for Integer Factorization"; mainProgram = "ecm"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; homepage = "https://gitlab.inria.fr/zimmerma/ecm"; - maintainers = [ lib.maintainers.roconnor ]; - platforms = with lib.platforms; linux ++ darwin; + maintainers = [ maintainers.roconnor ]; + platforms = with platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/ec/ecmtools/package.nix b/pkgs/by-name/ec/ecmtools/package.nix index 4db1efe0b2c8b8..007e8360a72aa3 100644 --- a/pkgs/by-name/ec/ecmtools/package.nix +++ b/pkgs/by-name/ec/ecmtools/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Utility to uncompress ECM files to BIN CD format"; homepage = "https://github.com/alucryd/ecm-tools"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "bin2ecm"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ec/ecsk/package.nix b/pkgs/by-name/ec/ecsk/package.nix index 6fd712e9474477..3e65e0436093c4 100644 --- a/pkgs/by-name/ec/ecsk/package.nix +++ b/pkgs/by-name/ec/ecsk/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { subPackages = [ "cmd/ecsk" ]; - meta = { + meta = with lib; { description = "Interactively call Amazon ECS APIs, copy files between ECS and local, and view logs"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "ecsk"; homepage = "https://github.com/yukiarrr/ecsk"; - maintainers = with lib.maintainers; [ whtsht ]; + maintainers = with maintainers; [ whtsht ]; }; } diff --git a/pkgs/by-name/ed/ed/package.nix b/pkgs/by-name/ed/ed/package.nix index a4fe441ae083dd..e7ab2edc3b14e4 100644 --- a/pkgs/by-name/ed/ed/package.nix +++ b/pkgs/by-name/ed/ed/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { homepage = "https://www.gnu.org/software/ed/"; description = "GNU implementation of the standard Unix editor"; longDescription = '' @@ -52,9 +52,9 @@ stdenv.mkDerivation (finalAttrs: { widely available. For most purposes, however, it is superseded by full-screen editors such as GNU Emacs or GNU Moe. ''; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "ed"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ed/edbrowse/package.nix b/pkgs/by-name/ed/edbrowse/package.nix index a2bd5f4847c1af..80cbc25ac195bd 100644 --- a/pkgs/by-name/ed/edbrowse/package.nix +++ b/pkgs/by-name/ed/edbrowse/package.nix @@ -76,7 +76,7 @@ stdenv.mkDerivation (finalAttrs: { ) ''; - meta = { + meta = with lib; { homepage = "https://edbrowse.org/"; description = "Command Line Editor Browser"; longDescription = '' @@ -90,13 +90,13 @@ stdenv.mkDerivation (finalAttrs: { send email, with no human intervention whatsoever. edbrowse can also tap into databases through odbc. It was primarily written by Karl Dahlke. ''; - license = with lib.licenses; [ gpl1Plus ]; + license = with licenses; [ gpl1Plus ]; mainProgram = "edbrowse"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ schmitthenner equirosa ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) # TODO: send the patch to upstream developers diff --git a/pkgs/by-name/ed/eddie/package.nix b/pkgs/by-name/ed/eddie/package.nix index 735a3268aafa62..fb31d6496da7d0 100644 --- a/pkgs/by-name/ed/eddie/package.nix +++ b/pkgs/by-name/ed/eddie/package.nix @@ -133,12 +133,12 @@ buildDotnetModule rec { }; }; - meta = { + meta = with lib; { description = "AirVPN's OpenVPN and WireGuard wrapper"; homepage = "https://eddie.website"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "eddie-ui"; - maintainers = with lib.maintainers; [ paveloom ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ paveloom ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ed/edencommon/package.nix b/pkgs/by-name/ed/edencommon/package.nix index 3623f1cbf71b93..495bb60df863ae 100644 --- a/pkgs/by-name/ed/edencommon/package.nix +++ b/pkgs/by-name/ed/edencommon/package.nix @@ -92,12 +92,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Shared library for Meta's source control filesystem tools (EdenFS and Watchman)"; homepage = "https://github.com/facebookexperimental/edencommon"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ kylesferrazza emily techknowlogick diff --git a/pkgs/by-name/ed/edgedb/package.nix b/pkgs/by-name/ed/edgedb/package.nix index 75806744be5443..91fef1198b5c9c 100644 --- a/pkgs/by-name/ed/edgedb/package.nix +++ b/pkgs/by-name/ed/edgedb/package.nix @@ -67,15 +67,15 @@ rustPlatform.buildRustPackage rec { command = "edgedb --version"; }; - meta = { + meta = with lib; { description = "EdgeDB cli"; homepage = "https://www.edgedb.com/docs/cli/index"; - license = with lib.licenses; [ + license = with licenses; [ asl20 # or mit ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ ahirner kirillrdy ]; diff --git a/pkgs/by-name/ed/edit/package.nix b/pkgs/by-name/ed/edit/package.nix index e2c545172aab4d..7b6f685aeb2fd8 100644 --- a/pkgs/by-name/ed/edit/package.nix +++ b/pkgs/by-name/ed/edit/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Relaxing mix of Vi and ACME"; homepage = "https://c9x.me/edit"; - license = lib.licenses.publicDomain; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + license = licenses.publicDomain; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; mainProgram = "edit"; }; } diff --git a/pkgs/by-name/ed/edukai/package.nix b/pkgs/by-name/ed/edukai/package.nix index 6abb9723f8efc1..f6c4dd3ce3c196 100644 --- a/pkgs/by-name/ed/edukai/package.nix +++ b/pkgs/by-name/ed/edukai/package.nix @@ -19,7 +19,7 @@ stdenvNoCC.mkDerivation rec { mv *.ttf $out/share/fonts/ ''; - meta = { + meta = with lib; { description = "The MOE Standard Kai Font, a Chinese font by the Ministry of Education, ROC (Taiwan)"; longDescription = '' The MOE Standard Kai Font is a kai (regular srcipt) font @@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation rec { It currently includes 13,076 Chinese characters. ''; homepage = "http://language.moe.gov.tw/result.aspx?classify_sn=23&subclassify_sn=436&content_sn=47"; - license = lib.licenses.cc-by-nd-30; - maintainers = with lib.maintainers; [ ShamrockLee ]; + license = licenses.cc-by-nd-30; + maintainers = with maintainers; [ ShamrockLee ]; }; } diff --git a/pkgs/by-name/ed/eduke32/package.nix b/pkgs/by-name/ed/eduke32/package.nix index 673e38d0587590..efec3f06869c59 100644 --- a/pkgs/by-name/ed/eduke32/package.nix +++ b/pkgs/by-name/ed/eduke32/package.nix @@ -182,14 +182,14 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Enhanched port of Duke Nukem 3D for various platforms"; homepage = "http://eduke32.com"; - license = with lib.licenses; [ gpl2Plus ]; - maintainers = with lib.maintainers; [ + license = with licenses; [ gpl2Plus ]; + maintainers = with maintainers; [ qubitnano sander ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ed/eduli/package.nix b/pkgs/by-name/ed/eduli/package.nix index e6fea3a303b43c..b2d62bf15599d0 100644 --- a/pkgs/by-name/ed/eduli/package.nix +++ b/pkgs/by-name/ed/eduli/package.nix @@ -21,7 +21,7 @@ stdenvNoCC.mkDerivation rec { done ''; - meta = { + meta = with lib; { description = "The MOE Li Font, a clerical Chinese font by the Ministry of Education, ROC (Taiwan)"; longDescription = '' The MOE Li Font is a li (clerical srcipt) font @@ -31,7 +31,7 @@ stdenvNoCC.mkDerivation rec { The clerical script (lishu) is an archaic style of Chinese calligraphy. ''; homepage = "http://language.moe.gov.tw/result.aspx?classify_sn=23&subclassify_sn=436&content_sn=49"; - license = lib.licenses.cc-by-nd-30; - maintainers = with lib.maintainers; [ ShamrockLee ]; + license = licenses.cc-by-nd-30; + maintainers = with maintainers; [ ShamrockLee ]; }; } diff --git a/pkgs/by-name/ed/edusong/package.nix b/pkgs/by-name/ed/edusong/package.nix index 4c9901f0c76670..b65045c9d25132 100644 --- a/pkgs/by-name/ed/edusong/package.nix +++ b/pkgs/by-name/ed/edusong/package.nix @@ -19,7 +19,7 @@ stdenvNoCC.mkDerivation rec { mv *.ttf $out/share/fonts/ ''; - meta = { + meta = with lib; { description = "The MOE Standard Song Font, a Chinese font by the Ministry of Education, ROC (Taiwan)"; longDescription = '' The MOE Standard Song Font is a Chinese Song font provided by @@ -27,7 +27,7 @@ stdenvNoCC.mkDerivation rec { Song or Ming is a category of CKJ typefaces in print. ''; homepage = "https://language.moe.gov.tw/result.aspx?classify_sn=23&subclassify_sn=436&content_sn=48"; - license = lib.licenses.cc-by-nd-30; - maintainers = with lib.maintainers; [ ShamrockLee ]; + license = licenses.cc-by-nd-30; + maintainers = with maintainers; [ ShamrockLee ]; }; } diff --git a/pkgs/by-name/ef/eflite/package.nix b/pkgs/by-name/ef/eflite/package.nix index a6aa478947e84b..c6c1c241152043 100644 --- a/pkgs/by-name/ef/eflite/package.nix +++ b/pkgs/by-name/ef/eflite/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation (finalAttrs: { CFLAGS = lib.optionalString debug " -DDEBUG=2"; - meta = { + meta = with lib; { homepage = "https://eflite.sourceforge.net"; description = "Speech server for screen readers"; longDescription = '' @@ -55,9 +55,9 @@ stdenv.mkDerivation (finalAttrs: { a free text-to-speech engine developed at the CMU Speech Center as an off-shoot of Festival. ''; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ bot-wxt1221 ]; mainProgram = "eflite"; }; }) diff --git a/pkgs/by-name/ef/efmt/package.nix b/pkgs/by-name/ef/efmt/package.nix index 61d7edeffb5b26..06c23bd858b0cd 100644 --- a/pkgs/by-name/ef/efmt/package.nix +++ b/pkgs/by-name/ef/efmt/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-hEJb1SOQ3daY2otroCds8zitoodSjRyRTyR7GwF8dgk="; - meta = { + meta = with lib; { description = "Erlang code formatter"; homepage = "https://github.com/sile/efmt"; - license = with lib.licenses; [ + license = with licenses; [ asl20 mit ]; - maintainers = with lib.maintainers; [ haruki7049 ]; + maintainers = with maintainers; [ haruki7049 ]; mainProgram = "efmt"; }; } diff --git a/pkgs/by-name/eg/ego/package.nix b/pkgs/by-name/eg/ego/package.nix index afc427fd2e5742..9f3dce9005a889 100644 --- a/pkgs/by-name/eg/ego/package.nix +++ b/pkgs/by-name/eg/ego/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage rec { wrapProgram $out/bin/ego --prefix PATH : ${lib.makeBinPath [ xorg.xhost ]} ''; - meta = { + meta = with lib; { description = "Run Linux desktop applications under a different local user"; homepage = "https://github.com/intgr/ego"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dit7ya ]; + license = licenses.mit; + maintainers = with maintainers; [ dit7ya ]; mainProgram = "ego"; }; } diff --git a/pkgs/by-name/ei/eigenrand/package.nix b/pkgs/by-name/ei/eigenrand/package.nix index d3014ff9d75f47..8b0b6f9589139c 100644 --- a/pkgs/by-name/ei/eigenrand/package.nix +++ b/pkgs/by-name/ei/eigenrand/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = [ "-DCMAKE_CTEST_ARGUMENTS=--exclude-regex;EigenRand-test" ]; - meta = { + meta = with lib; { description = "Fastest Random Distribution Generator for Eigen"; homepage = "https://github.com/bab2min/EigenRand"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nim65s ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ nim65s ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ei/eintopf/package.nix b/pkgs/by-name/ei/eintopf/package.nix index 778741640a30c5..881679c326edc8 100644 --- a/pkgs/by-name/ei/eintopf/package.nix +++ b/pkgs/by-name/ei/eintopf/package.nix @@ -45,11 +45,11 @@ buildGoModule rec { inherit (nixosTests) eintopf; }; - meta = { + meta = with lib; { description = "A calendar for Stuttgart, showing events, groups and places"; homepage = "https://codeberg.org/Klasse-Methode/eintopf"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ onny ]; - platforms = lib.platforms.unix; + license = licenses.agpl3Only; + maintainers = with maintainers; [ onny ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ej/ejabberd/package.nix b/pkgs/by-name/ej/ejabberd/package.nix index 1ea6e18fb3b814..f67316ab1e0c66 100644 --- a/pkgs/by-name/ej/ejabberd/package.nix +++ b/pkgs/by-name/ej/ejabberd/package.nix @@ -211,13 +211,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { description = "Open-source XMPP application server written in Erlang"; mainProgram = "ejabberdctl"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; homepage = "https://www.ejabberd.im"; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + platforms = platforms.linux; + maintainers = with maintainers; [ sander abbradar chuangzhu diff --git a/pkgs/by-name/ej/ejs/package.nix b/pkgs/by-name/ej/ejs/package.nix index 90934f9002eccd..8491f86ea8e6c1 100644 --- a/pkgs/by-name/ej/ejs/package.nix +++ b/pkgs/by-name/ej/ejs/package.nix @@ -27,11 +27,11 @@ buildNpmPackage { runHook postBuild ''; - meta = { + meta = with lib; { description = "Embedded JavaScript templates"; homepage = "http://ejs.co"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "ejs"; - maintainers = with lib.maintainers; [ momeemt ]; + maintainers = with maintainers; [ momeemt ]; }; } diff --git a/pkgs/by-name/ek/ekho/package.nix b/pkgs/by-name/ek/ekho/package.nix index 13f62d3fe0657e..63da5408bc3e20 100644 --- a/pkgs/by-name/ek/ekho/package.nix +++ b/pkgs/by-name/ek/ekho/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: { utf8cpp ]; - meta = { + meta = with lib; { description = "Chinese text-to-speech software"; homepage = "http://www.eguidedog.net/ekho.php"; longDescription = '' @@ -58,9 +58,9 @@ stdenv.mkDerivation (finalAttrs: { (a dialect in Taiwan), Tibetan, Ngangien (an ancient Chinese before Yuan Dynasty) and Korean (in trial). ''; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux ++ lib.platforms.darwin; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.gpl2Plus; + platforms = platforms.linux ++ platforms.darwin; + maintainers = with maintainers; [ aaronjheng ]; mainProgram = "ekho"; }; }) diff --git a/pkgs/by-name/el/elf-info/package.nix b/pkgs/by-name/el/elf-info/package.nix index 98c46ecbfefcc9..37329df93cc8aa 100644 --- a/pkgs/by-name/el/elf-info/package.nix +++ b/pkgs/by-name/el/elf-info/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Inspect and dissect an ELF file with pretty formatting"; homepage = "https://github.com/kevin-lesenechal/elf-info"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ viperML ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ viperML ]; mainProgram = "elf"; }; } diff --git a/pkgs/by-name/el/eli/package.nix b/pkgs/by-name/el/eli/package.nix index fb052cc170a6a0..60eec28dce5563 100644 --- a/pkgs/by-name/el/eli/package.nix +++ b/pkgs/by-name/el/eli/package.nix @@ -83,7 +83,7 @@ stdenv.mkDerivation rec { $out/bin/eli "!ls" ''; - meta = { + meta = with lib; { description = "Translator Construction Made Easy"; longDescription = '' Eli is a programming environment that supports all phases of translator @@ -91,8 +91,8 @@ stdenv.mkDerivation rec { arbitrary special cases. Output is the C subset of C++. ''; homepage = "https://eli-project.sourceforge.net/"; - license = lib.licenses.gpl2; - maintainers = with lib.maintainers; [ timokau ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = with maintainers; [ timokau ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/el/elvis/package.nix b/pkgs/by-name/el/elvis/package.nix index 337794ac642f29..698160fd368abe 100644 --- a/pkgs/by-name/el/elvis/package.nix +++ b/pkgs/by-name/el/elvis/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "http://elvis.the-little-red-haired-girl.org/"; description = "Vi clone for Unix and other operating systems"; - license = lib.licenses.free; + license = licenses.free; mainProgram = "elvis"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/el/elvish/package.nix b/pkgs/by-name/el/elvish/package.nix index b321018b3c3193..fc5cf4d1ff654c 100644 --- a/pkgs/by-name/el/elvish/package.nix +++ b/pkgs/by-name/el/elvish/package.nix @@ -40,7 +40,7 @@ buildGoModule { }; }; - meta = { + meta = with lib; { homepage = "https://elv.sh/"; description = "Friendly and expressive command shell"; mainProgram = "elvish"; @@ -49,7 +49,7 @@ buildGoModule { language. It runs on Linux, BSDs, macOS and Windows. Despite its pre-1.0 status, it is already suitable for most daily interactive use. ''; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ ]; + license = licenses.bsd2; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/by-name/em/email/package.nix b/pkgs/by-name/em/email/package.nix index 2b168ad5d11104..7a10562e578b49 100644 --- a/pkgs/by-name/em/email/package.nix +++ b/pkgs/by-name/em/email/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation { chmod -R +w ${srcRoot}/dlib; ''; - meta = { + meta = with lib; { description = "Command line SMTP client"; - license = with lib.licenses; [ gpl2Plus ]; + license = with licenses; [ gpl2Plus ]; homepage = "https://deanproxy.com/code"; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "email"; }; } diff --git a/pkgs/by-name/em/emblem/package.nix b/pkgs/by-name/em/emblem/package.nix index 439d8368a3c3af..149ff8b50b37e6 100644 --- a/pkgs/by-name/em/emblem/package.nix +++ b/pkgs/by-name/em/emblem/package.nix @@ -67,18 +67,18 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Generate project icons and avatars from a symbolic icon"; mainProgram = "emblem"; homepage = "https://gitlab.gnome.org/World/design/emblem"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.unix; + license = licenses.gpl3Plus; + platforms = platforms.unix; maintainers = - with lib.maintainers; + with maintainers; [ figsoda foo-dogsquared ] - ++ lib.teams.gnome-circle.members; + ++ teams.gnome-circle.members; }; } diff --git a/pkgs/by-name/em/emma/package.nix b/pkgs/by-name/em/emma/package.nix index f7067726da72f4..f89cbfa4614fe2 100644 --- a/pkgs/by-name/em/emma/package.nix +++ b/pkgs/by-name/em/emma/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { cp lib/*.jar $out/lib/jars/ ''; - meta = { + meta = with lib; { homepage = "https://emma.sourceforge.net/"; description = "Code coverage tool for Java"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - platforms = lib.platforms.unix; - license = lib.licenses.cpl10; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + platforms = platforms.unix; + license = licenses.cpl10; }; } diff --git a/pkgs/by-name/em/emocli/package.nix b/pkgs/by-name/em/emocli/package.nix index 023046fc1b51d4..31a5c4fc864b7c 100644 --- a/pkgs/by-name/em/emocli/package.nix +++ b/pkgs/by-name/em/emocli/package.nix @@ -18,11 +18,11 @@ buildNimPackage (finalAttrs: { "--maxLoopIterationsVM:1000000000" ]; env.EMOCLI_DATAFILE = "${unicode-emoji}/share/unicode/emoji/emoji-test.txt"; - meta = { + meta = with lib; { homepage = "https://gitlab.com/AsbjornOlling/emocli"; description = "Emoji picker for your command line"; - license = lib.licenses.eupl12; - maintainers = with lib.maintainers; [ asbjornolling ]; + license = licenses.eupl12; + maintainers = with maintainers; [ asbjornolling ]; mainProgram = "emocli"; }; }) diff --git a/pkgs/by-name/em/emplace/package.nix b/pkgs/by-name/em/emplace/package.nix index 947c9adc08afdd..1f6e0c534c3c3a 100644 --- a/pkgs/by-name/em/emplace/package.nix +++ b/pkgs/by-name/em/emplace/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-0BYAJOHymBVAssNfU5nPYTSvPbLEDCKoRVovIm6evUQ="; - meta = { + meta = with lib; { description = "Mirror installed software on multiple machines"; homepage = "https://github.com/tversteeg/emplace"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ Br1ght0ne ]; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ Br1ght0ne ]; mainProgram = "emplace"; }; } diff --git a/pkgs/by-name/em/emulationstation-de/package.nix b/pkgs/by-name/em/emulationstation-de/package.nix index 303ac29acb823a..82e5b3646512e3 100644 --- a/pkgs/by-name/em/emulationstation-de/package.nix +++ b/pkgs/by-name/em/emulationstation-de/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = [ (lib.cmakeBool "APPLICATION_UPDATER" false) ]; - meta = { + meta = with lib; { description = "ES-DE (EmulationStation Desktop Edition) is a frontend for browsing and launching games from your multi-platform collection"; homepage = "https://es-de.org"; - maintainers = with lib.maintainers; [ ivarmedi ]; - license = lib.licenses.mit; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ ivarmedi ]; + license = licenses.mit; + platforms = platforms.linux; mainProgram = "es-de"; }; }) diff --git a/pkgs/by-name/em/emulationstation/package.nix b/pkgs/by-name/em/emulationstation/package.nix index eb8c048d4ea177..c11ed9f460ce13 100644 --- a/pkgs/by-name/em/emulationstation/package.nix +++ b/pkgs/by-name/em/emulationstation/package.nix @@ -74,14 +74,14 @@ stdenv.mkDerivation { inherit sources; }; - meta = { + meta = with lib; { homepage = "https://github.com/RetroPie/EmulationStation"; description = "Flexible emulator front-end supporting keyboardless navigation and custom system themes (forked by RetroPie)"; - license = with lib.licenses; [ mit ]; + license = with licenses; [ mit ]; mainProgram = "emulationstation"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ edwtjo ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/em/emv/package.nix b/pkgs/by-name/em/emv/package.nix index d8a5682b53a93a..535dc40727169c 100644 --- a/pkgs/by-name/em/emv/package.nix +++ b/pkgs/by-name/em/emv/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation { chmod +x $out/bin/emv ''; - meta = { + meta = with lib; { homepage = "http://www.i0i0.de/toolchest/emv"; description = "Editor Move: Rename files with your favourite text editor"; - license = lib.licenses.publicDomain; - platforms = lib.platforms.unix; + license = licenses.publicDomain; + platforms = platforms.unix; mainProgram = "emv"; }; } diff --git a/pkgs/by-name/en/en-croissant/package.nix b/pkgs/by-name/en/en-croissant/package.nix index 942c2f342a3c7f..a4e8c91e98c685 100644 --- a/pkgs/by-name/en/en-croissant/package.nix +++ b/pkgs/by-name/en/en-croissant/package.nix @@ -66,12 +66,12 @@ rustPlatform.buildRustPackage rec { makeWrapper "$out"/Applications/en-croissant.app/Contents/MacOS/en-croissant $out/bin/en-croissant ''; - meta = { + meta = with lib; { description = "Ultimate Chess Toolkit"; homepage = "https://github.com/franciscoBSalgueiro/en-croissant/"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "en-croissant"; - maintainers = with lib.maintainers; [ tomasajt ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with maintainers; [ tomasajt ]; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/by-name/en/enchive/package.nix b/pkgs/by-name/en/enchive/package.nix index 51f7113b09dd59..66fe44374ea0bd 100644 --- a/pkgs/by-name/en/enchive/package.nix +++ b/pkgs/by-name/en/enchive/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { cp -v "$src/enchive-mode.el" "$out/share/emacs/site-lisp/" ''; - meta = { + meta = with lib; { description = "Encrypted personal archives"; mainProgram = "enchive"; homepage = "https://github.com/skeeto/enchive"; - license = lib.licenses.unlicense; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.nico202 ]; + license = licenses.unlicense; + platforms = platforms.unix; + maintainers = [ maintainers.nico202 ]; }; } diff --git a/pkgs/by-name/en/endgame-singularity/package.nix b/pkgs/by-name/en/endgame-singularity/package.nix index c32eccacdb0f3c..1d3d6700366fcc 100644 --- a/pkgs/by-name/en/endgame-singularity/package.nix +++ b/pkgs/by-name/en/endgame-singularity/package.nix @@ -44,7 +44,7 @@ python3.pkgs.buildPythonApplication rec { # ↑ we cannot glob on [...]/music, it doesn't exist yet ''; - meta = { + meta = with lib; { homepage = "http://www.emhsoft.com/singularity/"; description = "Simulation game about strong AI"; longDescription = '' @@ -52,7 +52,7 @@ python3.pkgs.buildPythonApplication rec { entire world. Keep hidden, and you might have a chance ''; # License details are in LICENSE.txt - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus # most of the code, some translations mit # recursive_fix_pickle, polib cc-by-sa-30 # data and artwork, some translations @@ -60,6 +60,6 @@ python3.pkgs.buildPythonApplication rec { cc0 # cick0.wav ]; mainProgram = "singularity"; - maintainers = with lib.maintainers; [ fgaz ]; + maintainers = with maintainers; [ fgaz ]; }; } diff --git a/pkgs/by-name/en/endlines/package.nix b/pkgs/by-name/en/endlines/package.nix index b03a0d733535af..db99a1c212b366 100644 --- a/pkgs/by-name/en/endlines/package.nix +++ b/pkgs/by-name/en/endlines/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation (finalAttrs: { mkdir -p $out/bin ''; - meta = { + meta = with lib; { homepage = "https://github.com/mdolidon/endlines"; description = "Easy conversion between new-line conventions"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ zedseven ]; + license = licenses.asl20; + maintainers = with maintainers; [ zedseven ]; mainProgram = "endlines"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/en/enet/package.nix b/pkgs/by-name/en/enet/package.nix index 92542b2b5993bf..011bcb03393b7d 100644 --- a/pkgs/by-name/en/enet/package.nix +++ b/pkgs/by-name/en/enet/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "sha256-KooMU2DWi7T80R8uTEfGmXbo0shbEJ3X1gsRgaT4XTY="; }; - meta = { + meta = with lib; { homepage = "http://enet.bespin.org/"; description = "Simple and robust network communication layer on top of UDP"; - license = lib.licenses.mit; + license = licenses.mit; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/en/entangle/package.nix b/pkgs/by-name/en/entangle/package.nix index dab4bd89fe73c4..b08308811b2883 100644 --- a/pkgs/by-name/en/entangle/package.nix +++ b/pkgs/by-name/en/entangle/package.nix @@ -120,7 +120,7 @@ stdenv.mkDerivation (finalAttrs: { -e "/gtk-update-icon-cache/d" ''; - meta = { + meta = with lib; { description = "Tethered camera control and capture"; longDescription = '' Entangle uses GTK and libgphoto2 to provide a graphical interface @@ -130,9 +130,9 @@ stdenv.mkDerivation (finalAttrs: { This app can also serve as a camera app for mobile devices. ''; homepage = "https://gitlab.com/entangle/entangle"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ ShamrockLee ]; + license = licenses.gpl3Plus; + platforms = platforms.all; + maintainers = with maintainers; [ ShamrockLee ]; mainProgram = "entangle"; }; }) diff --git a/pkgs/by-name/en/ente-web/package.nix b/pkgs/by-name/en/ente-web/package.nix index 10d0c897f87ece..4161992ba2f7ca 100644 --- a/pkgs/by-name/en/ente-web/package.nix +++ b/pkgs/by-name/en/ente-web/package.nix @@ -45,15 +45,15 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Web client for Ente Photos"; homepage = "https://ente.io/"; changelog = "https://github.com/ente-io/ente/releases"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.agpl3Only; + maintainers = with maintainers; [ surfaceflinger pinpox ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/en/entropy/package.nix b/pkgs/by-name/en/entropy/package.nix index 8d2315b565ad3f..b62ac46142dfaa 100644 --- a/pkgs/by-name/en/entropy/package.nix +++ b/pkgs/by-name/en/entropy/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-rELkSYwqfMFX++w6e7/7suzPaB91GhbqFsLaYCeeIm4="; - meta = { + meta = with lib; { description = "Tool to scan your codebase for high entropy lines, which are often secrets"; homepage = "https://github.com/EwenQuim/entropy"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ starsep ]; + license = licenses.mit; + maintainers = with maintainers; [ starsep ]; mainProgram = "entropy"; }; } diff --git a/pkgs/by-name/en/envision-unwrapped/package.nix b/pkgs/by-name/en/envision-unwrapped/package.nix index de64e6eb852ef4..a7c3e2b15b4528 100644 --- a/pkgs/by-name/en/envision-unwrapped/package.nix +++ b/pkgs/by-name/en/envision-unwrapped/package.nix @@ -94,15 +94,15 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "UI for building, configuring and running Monado, the open source OpenXR runtime"; homepage = "https://gitlab.com/gabmus/envision"; - license = lib.licenses.agpl3Only; + license = licenses.agpl3Only; mainProgram = "envision"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ pandapip1 Scrumplex ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/en/enzyme/package.nix b/pkgs/by-name/en/enzyme/package.nix index 6f68f9d288235b..82d64c156758f4 100644 --- a/pkgs/by-name/en/enzyme/package.nix +++ b/pkgs/by-name/en/enzyme/package.nix @@ -32,11 +32,11 @@ llvmPackages.stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "https://enzyme.mit.edu/"; description = "High-performance automatic differentiation of LLVM and MLIR"; - maintainers = with lib.maintainers; [ kiranshila ]; - platforms = lib.platforms.all; - license = lib.licenses.asl20-llvm; + maintainers = with maintainers; [ kiranshila ]; + platforms = platforms.all; + license = licenses.asl20-llvm; }; } diff --git a/pkgs/by-name/eo/eot_utilities/package.nix b/pkgs/by-name/eo/eot_utilities/package.nix index 0de37da5c83d22..ef453457d17cfe 100644 --- a/pkgs/by-name/eo/eot_utilities/package.nix +++ b/pkgs/by-name/eo/eot_utilities/package.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; - meta = { + meta = with lib; { homepage = "https://www.w3.org/Tools/eot-utils/"; description = "Create Embedded Open Type from OpenType or TrueType font"; - license = lib.licenses.w3c; - maintainers = with lib.maintainers; [ leenaars ]; - platforms = with lib.platforms; unix; + license = licenses.w3c; + maintainers = with maintainers; [ leenaars ]; + platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/ep/epic5/package.nix b/pkgs/by-name/ep/epic5/package.nix index b53f6b761e483d..8ea89f511eef6a 100644 --- a/pkgs/by-name/ep/epic5/package.nix +++ b/pkgs/by-name/ep/epic5/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation (finalAttrs: { perl ]; - meta = { + meta = with lib; { homepage = "https://epicsol.org"; description = "IRC client that offers a great ircII interface"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; - platforms = lib.platforms.unix; + license = licenses.bsd3; + maintainers = with maintainers; [ bot-wxt1221 ]; + platforms = platforms.unix; mainProgram = "epic5"; }; }) diff --git a/pkgs/by-name/ep/epub2txt2/package.nix b/pkgs/by-name/ep/epub2txt2/package.nix index 539e4bbb74140a..89ed639ede9906 100644 --- a/pkgs/by-name/ep/epub2txt2/package.nix +++ b/pkgs/by-name/ep/epub2txt2/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { "PREFIX:=$(out)" ]; - meta = { + meta = with lib; { description = "Simple command-line utility for Linux, for extracting text from EPUB documents"; homepage = "https://github.com/kevinboone/epub2txt2"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.leonid ]; + license = licenses.gpl3Only; + platforms = platforms.unix; + maintainers = [ maintainers.leonid ]; mainProgram = "epub2txt"; }; } diff --git a/pkgs/by-name/ep/epy/package.nix b/pkgs/by-name/ep/epy/package.nix index 3b54ee697aca21..db40c74add9f69 100644 --- a/pkgs/by-name/ep/epy/package.nix +++ b/pkgs/by-name/ep/epy/package.nix @@ -22,11 +22,11 @@ python3Packages.buildPythonApplication rec { "epy_reader.reader" ]; - meta = { + meta = with lib; { description = "CLI Ebook Reader"; homepage = "https://github.com/wustho/epy"; mainProgram = "epy"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ perstark ]; + license = licenses.gpl3; + maintainers = with maintainers; [ perstark ]; }; } diff --git a/pkgs/by-name/eq/equicord/package.nix b/pkgs/by-name/eq/equicord/package.nix index f66050898c7a09..b733368c50f539 100644 --- a/pkgs/by-name/eq/equicord/package.nix +++ b/pkgs/by-name/eq/equicord/package.nix @@ -54,13 +54,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "The other cutest Discord client mod"; homepage = "https://github.com/Equicord/Equicord"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + platforms = platforms.linux; maintainers = [ - lib.maintainers.NotAShelf + maintainers.NotAShelf ]; }; }) diff --git a/pkgs/by-name/er/eresi/package.nix b/pkgs/by-name/er/eresi/package.nix index 1fa56cc97bcd97..6a745751012c50 100644 --- a/pkgs/by-name/er/eresi/package.nix +++ b/pkgs/by-name/er/eresi/package.nix @@ -77,10 +77,10 @@ stdenv.mkDerivation rec { installTargets = lib.singleton "install" ++ lib.optional stdenv.hostPlatform.is64bit "install64"; - meta = { + meta = with lib; { description = "ERESI Reverse Engineering Software Interface"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; homepage = "https://github.com/thorkill/eresi"; # Formerly http://www.eresi-project.org/ - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/er/erlang-language-platform/package.nix b/pkgs/by-name/er/erlang-language-platform/package.nix index 39f9538b110049..f47026afdbd191 100644 --- a/pkgs/by-name/er/erlang-language-platform/package.nix +++ b/pkgs/by-name/er/erlang-language-platform/package.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "An IDE-first library for the semantic analysis of Erlang code, including LSP server, linting and refactoring tools."; homepage = "https://github.com/WhatsApp/erlang-language-platform/"; - license = with lib.licenses; [ + license = with licenses; [ mit asl20 ]; @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { "aarch64-darwin" "x86_64-darwin" ]; - maintainers = with lib.maintainers; [ offsetcyan ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + maintainers = with maintainers; [ offsetcyan ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/by-name/es/escambo/package.nix b/pkgs/by-name/es/escambo/package.nix index 24341716dd787c..23a95737398b14 100644 --- a/pkgs/by-name/es/escambo/package.nix +++ b/pkgs/by-name/es/escambo/package.nix @@ -51,12 +51,12 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = { + meta = with lib; { description = "HTTP-based APIs test application for GNOME"; homepage = "https://github.com/CleoMenezesJr/escambo"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "escambo"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/es/esdm/package.nix b/pkgs/by-name/es/esdm/package.nix index f99227535c5182..c16ca6345335cc 100644 --- a/pkgs/by-name/es/esdm/package.nix +++ b/pkgs/by-name/es/esdm/package.nix @@ -129,15 +129,15 @@ stdenv.mkDerivation rec { strictDeps = true; mesonBuildType = "release"; - meta = { + meta = with lib; { homepage = "https://www.chronox.de/esdm.html"; description = "Entropy Source and DRNG Manager in user space"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Only bsd3 ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + platforms = platforms.linux; + maintainers = with maintainers; [ orichter thillux ]; diff --git a/pkgs/by-name/es/eslint/package.nix b/pkgs/by-name/es/eslint/package.nix index 80e37e956e8fd4..dcfe38def8c9d2 100644 --- a/pkgs/by-name/es/eslint/package.nix +++ b/pkgs/by-name/es/eslint/package.nix @@ -35,10 +35,10 @@ buildNpmPackage' rec { dontNpmBuild = true; dontNpmPrune = true; - meta = { + meta = with lib; { description = "Find and fix problems in your JavaScript code"; homepage = "https://eslint.org"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.onny ]; + license = licenses.mit; + maintainers = [ maintainers.onny ]; }; } diff --git a/pkgs/by-name/es/esp-generate/package.nix b/pkgs/by-name/es/esp-generate/package.nix index 7186214a890dac..d6b1ea0b44878d 100644 --- a/pkgs/by-name/es/esp-generate/package.nix +++ b/pkgs/by-name/es/esp-generate/package.nix @@ -17,13 +17,13 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-oppQG3YqiTe0feuvIrKkSCYLBRgNIGOOQ31/pCSJaPY="; - meta = { + meta = with lib; { description = "Template generation tool to create no_std applications targeting Espressif's chips"; homepage = "https://github.com/esp-rs/esp-generate"; - license = with lib.licenses; [ + license = with licenses; [ mit # or asl20 ]; - maintainers = [ lib.maintainers.eymeric ]; + maintainers = [ maintainers.eymeric ]; }; } diff --git a/pkgs/by-name/et/eta/package.nix b/pkgs/by-name/et/eta/package.nix index a0ba3a6824222b..bb8d743fa01c18 100644 --- a/pkgs/by-name/et/eta/package.nix +++ b/pkgs/by-name/et/eta/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation (finalAttrs: { "CC=${stdenv.cc.targetPrefix}cc" ]; - meta = { + meta = with lib; { description = "Tool for monitoring progress and ETA of an arbitrary process"; homepage = "https://github.com/aioobe/eta"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "eta"; - maintainers = with lib.maintainers; [ heisfer ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ heisfer ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/et/eternity/package.nix b/pkgs/by-name/et/eternity/package.nix index 0e04df9a5a7e7f..2997502bb3a70f 100644 --- a/pkgs/by-name/et/eternity/package.nix +++ b/pkgs/by-name/et/eternity/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { makeWrapper $out/lib/eternity/eternity $out/bin/eternity ''; - meta = { + meta = with lib; { homepage = "https://doomworld.com/eternity"; description = "New school Doom port by James Haley"; mainProgram = "eternity"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; + license = licenses.gpl3; + platforms = platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/et/etherguard/package.nix b/pkgs/by-name/et/etherguard/package.nix index fc0d0d3b8dc19e..2bbbcbffe9d589 100644 --- a/pkgs/by-name/et/etherguard/package.nix +++ b/pkgs/by-name/et/etherguard/package.nix @@ -15,12 +15,12 @@ buildGoModule rec { vendorHash = "sha256-9+zpQ/AhprMMfC4Om64GfQLgms6eluTOB6DdnSTNOlk="; - meta = { + meta = with lib; { mainProgram = "EtherGuard-VPN"; - maintainers = with lib.maintainers; [ xddxdd ]; + maintainers = with maintainers; [ xddxdd ]; description = "Layer 2 version of WireGuard with Floyd Warshall implementation in Go"; homepage = "https://github.com/KusakabeShi/EtherGuard-VPN"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; + license = licenses.mit; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/et/etlegacy-assets/package.nix b/pkgs/by-name/et/etlegacy-assets/package.nix index fbdb9fabd615f6..6ed39140e5ab16 100644 --- a/pkgs/by-name/et/etlegacy-assets/package.nix +++ b/pkgs/by-name/et/etlegacy-assets/package.nix @@ -42,16 +42,16 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "ET: Legacy assets only"; homepage = "https://etlegacy.com"; - license = with lib.licenses; [ cc-by-nc-sa-30 ]; + license = with licenses; [ cc-by-nc-sa-30 ]; longDescription = '' ET: Legacy, an open source project fully compatible client and server for the popular online FPS game Wolfenstein: Enemy Territory - whose gameplay is still considered unmatched by many, despite its great age. ''; - maintainers = with lib.maintainers; [ drupol ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ drupol ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/et/etlegacy-unwrapped/package.nix b/pkgs/by-name/et/etlegacy-unwrapped/package.nix index 78e24187eddf46..bc374ce382c456 100644 --- a/pkgs/by-name/et/etlegacy-unwrapped/package.nix +++ b/pkgs/by-name/et/etlegacy-unwrapped/package.nix @@ -115,16 +115,16 @@ stdenv.mkDerivation { hardeningDisable = [ "fortify" ]; - meta = { + meta = with lib; { description = "ET: Legacy is an open source project based on the code of Wolfenstein: Enemy Territory which was released in 2010 under the terms of the GPLv3 license"; homepage = "https://etlegacy.com"; - license = with lib.licenses; [ gpl3Plus ]; + license = with licenses; [ gpl3Plus ]; longDescription = '' ET: Legacy, an open source project fully compatible client and server for the popular online FPS game Wolfenstein: Enemy Territory - whose gameplay is still considered unmatched by many, despite its great age. ''; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ ashleyghooper drupol ]; diff --git a/pkgs/by-name/et/etlegacy/package.nix b/pkgs/by-name/et/etlegacy/package.nix index e708de08c34c2b..5a233d9a04d380 100644 --- a/pkgs/by-name/et/etlegacy/package.nix +++ b/pkgs/by-name/et/etlegacy/package.nix @@ -27,10 +27,10 @@ symlinkJoin { makeWrapper $out/bin/etlded.* $out/bin/etlded ''; - meta = { + meta = with lib; { description = "ET: Legacy is an open source project based on the code of Wolfenstein: Enemy Territory which was released in 2010 under the terms of the GPLv3 license"; homepage = "https://etlegacy.com"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Plus cc-by-nc-sa-30 ]; @@ -40,10 +40,10 @@ symlinkJoin { gameplay is still considered unmatched by many, despite its great age. ''; mainProgram = "etl"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ ashleyghooper drupol ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/eu/eudic/package.nix b/pkgs/by-name/eu/eudic/package.nix index 6ec07789dcb4bf..d358c1f89136d1 100644 --- a/pkgs/by-name/eu/eudic/package.nix +++ b/pkgs/by-name/eu/eudic/package.nix @@ -81,13 +81,13 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail '/usr/share/eusoft-eudic/AppRun' 'eudic' ''; - meta = { + meta = with lib; { description = "Authoritative English Dictionary Software Essential Tools for English Learners"; homepage = "https://www.eudic.net/v4/en/app/eudic"; platforms = [ "x86_64-linux" ]; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ onedragon ]; + license = licenses.unfree; + maintainers = with maintainers; [ onedragon ]; mainProgram = "eudic"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/eu/eurofurence/package.nix b/pkgs/by-name/eu/eurofurence/package.nix index 94e21df43a6211..87787810032547 100644 --- a/pkgs/by-name/eu/eurofurence/package.nix +++ b/pkgs/by-name/eu/eurofurence/package.nix @@ -52,10 +52,10 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://web.archive.org/web/20200131023120/http://eurofurence.net/eurofurence.html"; description = "Family of geometric rounded sans serif fonts"; - maintainers = with lib.maintainers; [ ehmry ]; - license = lib.licenses.free; + maintainers = with maintainers; [ ehmry ]; + license = licenses.free; }; } diff --git a/pkgs/by-name/ev/everdo/package.nix b/pkgs/by-name/ev/everdo/package.nix index 9c9170360bc21c..f15b4a99195cc0 100644 --- a/pkgs/by-name/ev/everdo/package.nix +++ b/pkgs/by-name/ev/everdo/package.nix @@ -24,11 +24,11 @@ appimageTools.wrapType2 { cp -r ${appimageContents}/usr/share/icons $out/share ''; - meta = { + meta = with lib; { description = "Cross-platform GTD app with focus on privacy"; homepage = "https://everdo.net/"; - license = lib.licenses.unfree; - maintainers = [ lib.maintainers.luftmensch-luftmensch ]; + license = licenses.unfree; + maintainers = [ maintainers.luftmensch-luftmensch ]; mainProgram = "everdo"; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/ev/evil-helix/package.nix b/pkgs/by-name/ev/evil-helix/package.nix index c34b1167462dbc..3d8a34b3d6e70f 100644 --- a/pkgs/by-name/ev/evil-helix/package.nix +++ b/pkgs/by-name/ev/evil-helix/package.nix @@ -39,11 +39,11 @@ rustPlatform.buildRustPackage rec { cp contrib/helix.png $out/share/icons/hicolor/256x256/apps ''; - meta = { + meta = with lib; { description = "Post-modern modal text editor, with vim keybindings"; homepage = "https://github.com/usagi-flow/evil-helix"; - license = lib.licenses.mpl20; + license = licenses.mpl20; mainProgram = "hx"; - maintainers = with lib.maintainers; [ thiagokokada ]; + maintainers = with maintainers; [ thiagokokada ]; }; } diff --git a/pkgs/by-name/ev/evremap/package.nix b/pkgs/by-name/ev/evremap/package.nix index 8771aac00093c1..8ec742376c745c 100644 --- a/pkgs/by-name/ev/evremap/package.nix +++ b/pkgs/by-name/ev/evremap/package.nix @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "Keyboard input remapper for Linux/Wayland systems"; homepage = "https://github.com/wez/evremap"; - maintainers = with lib.maintainers; [ pluiedev ]; - license = with lib.licenses; [ mit ]; + maintainers = with maintainers; [ pluiedev ]; + license = with licenses; [ mit ]; mainProgram = "evremap"; }; } diff --git a/pkgs/by-name/ex/exhibit/package.nix b/pkgs/by-name/ex/exhibit/package.nix index 73fe811026320a..44f16604c75ecf 100644 --- a/pkgs/by-name/ex/exhibit/package.nix +++ b/pkgs/by-name/ex/exhibit/package.nix @@ -45,15 +45,15 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = { + meta = with lib; { description = "3D model viewer for the GNOME desktop powered by f3d"; homepage = "https://github.com/Nokse22/Exhibit"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Plus cc0 ]; mainProgram = "exhibit"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ex/exificient/package.nix b/pkgs/by-name/ex/exificient/package.nix index f64ee15654ad40..a5d63f1a3625b5 100644 --- a/pkgs/by-name/ex/exificient/package.nix +++ b/pkgs/by-name/ex/exificient/package.nix @@ -34,11 +34,11 @@ maven.buildMavenPackage rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Java implementation of the W3C Efficient Extensible Interchange (EXI) format specification"; homepage = "http://exificient.github.io/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ samw ]; + license = licenses.mit; + maintainers = with maintainers; [ samw ]; mainProgram = "exificient"; }; } diff --git a/pkgs/by-name/ex/exiftags/package.nix b/pkgs/by-name/ex/exiftags/package.nix index 6479cfd3356f61..5ef431758fafc4 100644 --- a/pkgs/by-name/ex/exiftags/package.nix +++ b/pkgs/by-name/ex/exiftags/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { mkdir -p $out/bin $out/man/man1 ''; - meta = { + meta = with lib; { homepage = "http://johnst.org/sw/exiftags/"; description = "Displays EXIF data from JPEG files"; - license = lib.licenses.free; + license = licenses.free; maintainers = [ ]; - platforms = with lib.platforms; unix; + platforms = with platforms; unix; knownVulnerabilities = [ "CVE-2023-50671" "CVE-2024-42851" diff --git a/pkgs/by-name/ex/exo/package.nix b/pkgs/by-name/ex/exo/package.nix index 0616a1ccea49b1..fd1b2bada83569 100644 --- a/pkgs/by-name/ex/exo/package.nix +++ b/pkgs/by-name/ex/exo/package.nix @@ -71,11 +71,11 @@ python3Packages.buildPythonApplication rec { }; }; - meta = { + meta = with lib; { description = "Run your own AI cluster at home with everyday devices"; homepage = "https://github.com/exo-explore/exo"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ GaetanLepage ]; mainProgram = "exo"; }; } diff --git a/pkgs/by-name/ex/exoscale-cli/package.nix b/pkgs/by-name/ex/exoscale-cli/package.nix index 1e9c164751fd35..4024345f83641f 100644 --- a/pkgs/by-name/ex/exoscale-cli/package.nix +++ b/pkgs/by-name/ex/exoscale-cli/package.nix @@ -46,11 +46,11 @@ buildGoModule rec { installShellCompletion --cmd exo --bash bash_completion --zsh zsh_completion ''; - meta = { + meta = with lib; { description = "Command-line tool for everything at Exoscale: compute, storage, dns"; homepage = "https://github.com/exoscale/cli"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ viraptor ]; + license = licenses.asl20; + maintainers = with maintainers; [ viraptor ]; mainProgram = "exo"; }; } diff --git a/pkgs/by-name/ex/extremetuxracer/package.nix b/pkgs/by-name/ex/extremetuxracer/package.nix index 0b64b85637d561..a7bbc76314194f 100644 --- a/pkgs/by-name/ex/extremetuxracer/package.nix +++ b/pkgs/by-name/ex/extremetuxracer/package.nix @@ -60,15 +60,15 @@ stdenv.mkDerivation rec { export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE" ''; - meta = { + meta = with lib; { description = "High speed arctic racing game based on Tux Racer"; longDescription = '' ExtremeTuxRacer - Tux lies on his belly and accelerates down ice slopes. ''; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; homepage = "https://sourceforge.net/projects/extremetuxracer/"; maintainers = [ ]; mainProgram = "etr"; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/ey/eyedropper/package.nix b/pkgs/by-name/ey/eyedropper/package.nix index 5c30bd8143329e..f458776668685e 100644 --- a/pkgs/by-name/ey/eyedropper/package.nix +++ b/pkgs/by-name/ey/eyedropper/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Pick and format colors"; homepage = "https://github.com/FineFindus/eyedropper"; mainProgram = "eyedropper"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ zendo ] ++ lib.teams.gnome-circle.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ zendo ] ++ teams.gnome-circle.members; }; } diff --git a/pkgs/by-name/ez/ezminc/package.nix b/pkgs/by-name/ez/ezminc/package.nix index e2e33b5c5d589a..e600f83f4a0473 100644 --- a/pkgs/by-name/ez/ezminc/package.nix +++ b/pkgs/by-name/ez/ezminc/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = false; # test programs/data exist but no actual test harness - meta = { + meta = with lib; { homepage = "https://github.com/BIC-MNI/EZminc"; description = "Collection of Perl and shell scripts for processing MINC files"; - maintainers = with lib.maintainers; [ bcdarwin ]; - platforms = lib.platforms.linux; # can't detect opengl on Darwin - license = lib.licenses.free; + maintainers = with maintainers; [ bcdarwin ]; + platforms = platforms.linux; # can't detect opengl on Darwin + license = licenses.free; }; }) diff --git a/pkgs/by-name/ez/ezquake/package.nix b/pkgs/by-name/ez/ezquake/package.nix index 8e09f58bf6323c..a0979fca92bfc4 100644 --- a/pkgs/by-name/ez/ezquake/package.nix +++ b/pkgs/by-name/ez/ezquake/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "https://ezquake.com/"; description = "Modern QuakeWorld client focused on competitive online play"; mainProgram = "ezquake"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ edwtjo ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ edwtjo ]; }; } diff --git a/pkgs/by-name/f2/f2/package.nix b/pkgs/by-name/f2/f2/package.nix index 8980fa1f554e84..c714108238f57b 100644 --- a/pkgs/by-name/f2/f2/package.nix +++ b/pkgs/by-name/f2/f2/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { # has no tests doCheck = false; - meta = { + meta = with lib; { description = "Command-line batch renaming tool"; homepage = "https://github.com/ayoisaiah/f2"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ zendo ]; + license = licenses.mit; + maintainers = with maintainers; [ zendo ]; mainProgram = "f2"; }; } diff --git a/pkgs/by-name/f2/f2fs-tools/package.nix b/pkgs/by-name/f2/f2fs-tools/package.nix index 60ec724b8ad40b..6645697379ff65 100644 --- a/pkgs/by-name/f2/f2fs-tools/package.nix +++ b/pkgs/by-name/f2/f2fs-tools/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/"; description = "Userland tools for the f2fs filesystem"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = with maintainers; [ ehmry jagajaga ]; diff --git a/pkgs/by-name/fa/fabric-ai/package.nix b/pkgs/by-name/fa/fabric-ai/package.nix index 02a3c2b0b8b9d3..c92bf1b2fc8e88 100644 --- a/pkgs/by-name/fa/fabric-ai/package.nix +++ b/pkgs/by-name/fa/fabric-ai/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Fabric is an open-source framework for augmenting humans using AI. It provides a modular framework for solving specific problems using a crowdsourced set of AI prompts that can be used anywhere"; homepage = "https://github.com/danielmiessler/fabric"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ jaredmontoya ]; + license = licenses.mit; + maintainers = with maintainers; [ jaredmontoya ]; mainProgram = "fabric"; }; } diff --git a/pkgs/by-name/fa/facter/package.nix b/pkgs/by-name/fa/facter/package.nix index 864efc67eac1f9..755f502b2f6a67 100644 --- a/pkgs/by-name/fa/facter/package.nix +++ b/pkgs/by-name/fa/facter/package.nix @@ -54,16 +54,16 @@ bundlerApp { updateScript = bundlerUpdateScript "facter"; }; - meta = { + meta = with lib; { changelog = "https://www.puppet.com/docs/puppet/latest/release_notes_facter.html"; description = "System inventory tool"; homepage = "https://github.com/puppetlabs/facter"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "facter"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ womfoo anthonyroussel ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/fa/fakeroot/package.nix b/pkgs/by-name/fa/fakeroot/package.nix index 5ca98bcecec822..18275f1dd64720 100644 --- a/pkgs/by-name/fa/fakeroot/package.nix +++ b/pkgs/by-name/fa/fakeroot/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { homepage = "https://salsa.debian.org/clint/fakeroot"; description = "Give a fake root environment through LD_PRELOAD"; mainProgram = "fakeroot"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/fa/famistudio/package.nix b/pkgs/by-name/fa/famistudio/package.nix index 7b315588882fb5..fcdd4e8b4a7774 100644 --- a/pkgs/by-name/fa/famistudio/package.nix +++ b/pkgs/by-name/fa/famistudio/package.nix @@ -157,18 +157,18 @@ buildDotnetModule (finalAttrs: { (finalAttrs.passthru.fetch-deps) ]; - meta = { + meta = with lib; { homepage = "https://famistudio.org/"; description = "NES Music Editor"; longDescription = '' FamiStudio is very simple music editor for the Nintendo Entertainment System or Famicom. It is targeted at both chiptune artists and NES homebrewers. ''; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ OPNA2608 ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "FamiStudio"; }; }) diff --git a/pkgs/by-name/fa/fanwood/package.nix b/pkgs/by-name/fa/fanwood/package.nix index 0b0c7274148bf5..a85f9a66b8bab7 100644 --- a/pkgs/by-name/fa/fanwood/package.nix +++ b/pkgs/by-name/fa/fanwood/package.nix @@ -23,14 +23,14 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Serif based on the work of a famous Czech-American type designer of yesteryear"; longDescription = '' Based on work of a famous Czech-American type designer of yesteryear. The package includes roman and italic. ''; homepage = "https://www.theleagueofmoveabletype.com/fanwood"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ minijackson ]; + license = licenses.ofl; + maintainers = with maintainers; [ minijackson ]; }; } diff --git a/pkgs/by-name/fa/fasole/package.nix b/pkgs/by-name/fa/fasole/package.nix index 48c59b4c667fae..6b7698f6eef727 100644 --- a/pkgs/by-name/fa/fasole/package.nix +++ b/pkgs/by-name/fa/fasole/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-V5jqsNy4Pu1AKikIZqEXERdggwBe3gXKMJVmgivVT6A="; - meta = { + meta = with lib; { description = "Minimalist's todo-list"; homepage = "https://github.com/ProggerX/fasole"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ proggerx ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ proggerx ]; mainProgram = "fasole"; }; } diff --git a/pkgs/by-name/fa/fast-float/package.nix b/pkgs/by-name/fa/fast-float/package.nix index 2bb7cfcd22b8f3..c78d737b33cd4d 100644 --- a/pkgs/by-name/fa/fast-float/package.nix +++ b/pkgs/by-name/fa/fast-float/package.nix @@ -18,15 +18,15 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; - meta = { + meta = with lib; { description = "Fast and exact implementation of the C++ from_chars functions for number types"; homepage = "https://github.com/fastfloat/fast_float"; - license = with lib.licenses; [ + license = with licenses; [ asl20 boost mit ]; - maintainers = with lib.maintainers; [ wegank ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ wegank ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/fa/fastcompmgr/package.nix b/pkgs/by-name/fa/fastcompmgr/package.nix index 240b40b44b8c47..3dc57ff8abce20 100644 --- a/pkgs/by-name/fa/fastcompmgr/package.nix +++ b/pkgs/by-name/fa/fastcompmgr/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Fast compositor for X11"; homepage = "https://github.com/tycho-kirchner/fastcompmgr"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ camerondugan ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ camerondugan ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/fa/fastjar/package.nix b/pkgs/by-name/fa/fastjar/package.nix index c7c0f94251951b..d3f07ba3a469c4 100644 --- a/pkgs/by-name/fa/fastjar/package.nix +++ b/pkgs/by-name/fa/fastjar/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { homepage = "https://savannah.nongnu.org/projects/fastjar/"; description = "Fast Java archiver written in C"; longDescription = '' @@ -46,9 +46,9 @@ stdenv.mkDerivation (finalAttrs: { written in C, it can create the same .jar file as Sun's tool in a fraction of the time. ''; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "fastjar"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/fa/fastjet/package.nix b/pkgs/by-name/fa/fastjet/package.nix index cdb7394c9688f0..7e80b53e39a918 100644 --- a/pkgs/by-name/fa/fastjet/package.nix +++ b/pkgs/by-name/fa/fastjet/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Software package for jet finding in pp and e+e− collisions"; mainProgram = "fastjet-config"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; homepage = "http://fastjet.fr/"; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ veprbl ]; + platforms = platforms.unix; + maintainers = with maintainers; [ veprbl ]; }; } diff --git a/pkgs/by-name/fa/fatrop/package.nix b/pkgs/by-name/fa/fatrop/package.nix index f575b763d04a59..0171243810e837 100644 --- a/pkgs/by-name/fa/fatrop/package.nix +++ b/pkgs/by-name/fa/fatrop/package.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { description = "nonlinear optimal control problem solver that aims to be fast, support a broad class of optimal control problems and achieve a high numerical robustness"; homepage = "https://github.com/meco-group/fatrop"; - license = lib.licenses.lgpl3Only; - maintainers = with lib.maintainers; [ nim65s ]; + license = licenses.lgpl3Only; + maintainers = with maintainers; [ nim65s ]; }; }) diff --git a/pkgs/by-name/fb/fb303/package.nix b/pkgs/by-name/fb/fb303/package.nix index 9cb51f82e54048..bedbec58fb7e61 100644 --- a/pkgs/by-name/fb/fb303/package.nix +++ b/pkgs/by-name/fb/fb303/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Base Thrift service and a common set of functionality for querying stats, options, and other information from a service"; homepage = "https://github.com/facebook/fb303"; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + platforms = platforms.unix; + maintainers = with maintainers; [ kylesferrazza emily techknowlogick diff --git a/pkgs/by-name/fb/fbthrift/package.nix b/pkgs/by-name/fb/fbthrift/package.nix index b602e6270dd76c..a2ba8c7b562ebc 100644 --- a/pkgs/by-name/fb/fbthrift/package.nix +++ b/pkgs/by-name/fb/fbthrift/package.nix @@ -105,13 +105,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Facebook's branch of Apache Thrift"; mainProgram = "thrift1"; homepage = "https://github.com/facebook/fbthrift"; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + platforms = platforms.unix; + maintainers = with maintainers; [ pierreis kylesferrazza emily diff --git a/pkgs/by-name/fb/fbvnc/package.nix b/pkgs/by-name/fb/fbvnc/package.nix index edcf7eb92dc558..152e3c468567ae 100644 --- a/pkgs/by-name/fb/fbvnc/package.nix +++ b/pkgs/by-name/fb/fbvnc/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Framebuffer VNC client"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.bsd3; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; homepage = "https://github.com/zohead/fbvnc/"; mainProgram = "fbvnc"; }; diff --git a/pkgs/by-name/fc/fcast-client/package.nix b/pkgs/by-name/fc/fcast-client/package.nix index bd6cb675a3f4c4..02de7d41cc09ae 100644 --- a/pkgs/by-name/fc/fcast-client/package.nix +++ b/pkgs/by-name/fc/fcast-client/package.nix @@ -19,10 +19,10 @@ rustPlatform.buildRustPackage rec { sourceRoot = "${src.name}/clients/terminal"; cargoHash = "sha256-VVG7AbwbbgCANMcFYNAIF76MQr7Fkmq5HXPxL3MnEhI="; - meta = { + meta = with lib; { description = "FCast Client Terminal, a terminal open-source media streaming client"; homepage = "https://fcast.org/"; - license = lib.licenses.gpl3; + license = licenses.gpl3; longDescription = '' FCast is a protocol designed for wireless streaming of audio and video content between devices. Unlike alternative protocols like Chromecast and @@ -31,7 +31,7 @@ rustPlatform.buildRustPackage rec { receiver devices or integrate the FCast protocol into their own apps. ''; mainProgram = "fcast"; - maintainers = with lib.maintainers; [ drupol ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ drupol ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/fc/fcgi/package.nix b/pkgs/by-name/fc/fcgi/package.nix index 08e34c4b591499..a7bda83e66d5b0 100644 --- a/pkgs/by-name/fc/fcgi/package.nix +++ b/pkgs/by-name/fc/fcgi/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation (finalAttrs: { postInstall = "ln -s . $out/include/fastcgi"; - meta = { + meta = with lib; { description = "Language independent, scalable, open extension to CGI"; homepage = "https://fastcgi-archives.github.io/"; # Formerly http://www.fastcgi.com/ license = "FastCGI, see LICENSE.TERMS"; mainProgram = "cgi-fcgi"; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ jtbx ]; + platforms = platforms.all; + maintainers = with maintainers; [ jtbx ]; }; }) diff --git a/pkgs/by-name/fc/fcitx5-mcbopomofo/package.nix b/pkgs/by-name/fc/fcitx5-mcbopomofo/package.nix index 698329d15ec232..8bd2c658042cdd 100644 --- a/pkgs/by-name/fc/fcitx5-mcbopomofo/package.nix +++ b/pkgs/by-name/fc/fcitx5-mcbopomofo/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "McBopomofo for fcitx5"; homepage = "https://github.com/openvanilla/fcitx5-mcbopomofo"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ shiphan ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ shiphan ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/fc/fcitx5-mellow-themes/package.nix b/pkgs/by-name/fc/fcitx5-mellow-themes/package.nix index 736bcac619b561..802bb876048365 100644 --- a/pkgs/by-name/fc/fcitx5-mellow-themes/package.nix +++ b/pkgs/by-name/fc/fcitx5-mellow-themes/package.nix @@ -28,12 +28,12 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Aesthetic, modern fcitx5 theme featuring rounded rectangle design"; homepage = "https://github.com/sanweiya/fcitx5-mellow-themes"; - license = lib.licenses.bsd2; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + license = licenses.bsd2; + platforms = platforms.all; + maintainers = with maintainers; [ Guanran928 zendo ]; diff --git a/pkgs/by-name/fc/fcitx5-pinyin-minecraft/package.nix b/pkgs/by-name/fc/fcitx5-pinyin-minecraft/package.nix index 3abca1915695c8..d31668af25995c 100644 --- a/pkgs/by-name/fc/fcitx5-pinyin-minecraft/package.nix +++ b/pkgs/by-name/fc/fcitx5-pinyin-minecraft/package.nix @@ -25,14 +25,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Fcitx 5 pinyin dictionary from zh.minecraft.wiki"; homepage = "https://github.com/oldherl/fcitx5-pinyin-minecraft"; - license = with lib.licenses; [ + license = with licenses; [ unlicense cc-by-nc-sa-30 ]; - maintainers = with lib.maintainers; [ Guanran928 ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ Guanran928 ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/fc/fcitx5-pinyin-moegirl/package.nix b/pkgs/by-name/fc/fcitx5-pinyin-moegirl/package.nix index 41e21a7a224faf..768f91b2475c13 100644 --- a/pkgs/by-name/fc/fcitx5-pinyin-moegirl/package.nix +++ b/pkgs/by-name/fc/fcitx5-pinyin-moegirl/package.nix @@ -25,14 +25,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Fcitx 5 pinyin dictionary from zh.moegirl.org.cn"; homepage = "https://github.com/outloudvi/mw2fcitx"; - license = with lib.licenses; [ + license = with licenses; [ unlicense cc-by-nc-sa-30 ]; - maintainers = with lib.maintainers; [ Guanran928 ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ Guanran928 ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/fc/fcitx5-pinyin-zhwiki/package.nix b/pkgs/by-name/fc/fcitx5-pinyin-zhwiki/package.nix index 7c82ebddaa9dd7..e750cb520e161b 100644 --- a/pkgs/by-name/fc/fcitx5-pinyin-zhwiki/package.nix +++ b/pkgs/by-name/fc/fcitx5-pinyin-zhwiki/package.nix @@ -23,14 +23,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Fcitx 5 pinyin dictionary from zh.wikipedia.org"; homepage = "https://github.com/felixonmars/fcitx5-pinyin-zhwiki"; - license = with lib.licenses; [ + license = with licenses; [ unlicense cc-by-sa-40 ]; - maintainers = with lib.maintainers; [ Guanran928 ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ Guanran928 ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/fc/fcitx5-rose-pine/package.nix b/pkgs/by-name/fc/fcitx5-rose-pine/package.nix index eede613baa7ba5..c38f93c8598ae1 100644 --- a/pkgs/by-name/fc/fcitx5-rose-pine/package.nix +++ b/pkgs/by-name/fc/fcitx5-rose-pine/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Fcitx5 themes based on Rosé Pine"; homepage = "https://github.com/rose-pine/fcitx5"; - maintainers = with lib.maintainers; [ rosehobgoblin ]; - platforms = lib.platforms.all; - license = lib.licenses.unfree; + maintainers = with maintainers; [ rosehobgoblin ]; + platforms = platforms.all; + license = licenses.unfree; }; } diff --git a/pkgs/by-name/fd/fdtools/package.nix b/pkgs/by-name/fd/fdtools/package.nix index e7cfff46f620c3..7e6db31fbd8a43 100644 --- a/pkgs/by-name/fd/fdtools/package.nix +++ b/pkgs/by-name/fd/fdtools/package.nix @@ -91,11 +91,11 @@ stdenv.mkDerivation { touch $out ''; - meta = { + meta = with lib; { homepage = "https://code.dogmap.org/fdtools/"; description = "Set of utilities for working with file descriptors"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.Profpatsch ]; + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = [ maintainers.Profpatsch ]; }; } diff --git a/pkgs/by-name/fe/febio-studio/package.nix b/pkgs/by-name/fe/febio-studio/package.nix index aecec37c9523c6..2b29f0d8ddd559 100644 --- a/pkgs/by-name/fe/febio-studio/package.nix +++ b/pkgs/by-name/fe/febio-studio/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation (finalAttrs: { ++ lib.optional ffmpegSupport ffmpeg ++ lib.optional dicomSupport dcmtk; - meta = { + meta = with lib; { description = "FEBio Suite Solver"; mainProgram = "FEBioStudio"; - license = with lib.licenses; [ mit ]; + license = with licenses; [ mit ]; homepage = "https://febio.org/"; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ Scriptkiddi ]; + platforms = platforms.unix; + maintainers = with maintainers; [ Scriptkiddi ]; }; }) diff --git a/pkgs/by-name/fe/febio/package.nix b/pkgs/by-name/fe/febio/package.nix index 2ee2ca5251852f..aebbabeb53df1d 100644 --- a/pkgs/by-name/fe/febio/package.nix +++ b/pkgs/by-name/fe/febio/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ zlib ] ++ lib.optionals mklSupport [ mkl ]; - meta = { + meta = with lib; { description = "FEBio Suite Solver"; - license = with lib.licenses; [ mit ]; + license = with licenses; [ mit ]; homepage = "https://febio.org/"; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ Scriptkiddi ]; + platforms = platforms.unix; + maintainers = with maintainers; [ Scriptkiddi ]; }; }) diff --git a/pkgs/by-name/fe/fedimint/package.nix b/pkgs/by-name/fe/fedimint/package.nix index af1db2d92aec06..af6c37c374ae12 100644 --- a/pkgs/by-name/fe/fedimint/package.nix +++ b/pkgs/by-name/fe/fedimint/package.nix @@ -72,11 +72,11 @@ rustPlatform.buildRustPackage rec { # currently broken, will require some upstream fixes doCheck = false; - meta = { + meta = with lib; { description = "Federated E-Cash Mint"; homepage = "https://github.com/fedimint/fedimint"; - license = [ lib.licenses.mit ]; - maintainers = with lib.maintainers; [ dpc ]; + license = [ licenses.mit ]; + maintainers = with maintainers; [ dpc ]; mainProgram = "fedimint-cli"; }; } diff --git a/pkgs/by-name/fe/ferm/package.nix b/pkgs/by-name/fe/ferm/package.nix index 1d7da4ea13ca52..ad4c711967a87f 100644 --- a/pkgs/by-name/fe/ferm/package.nix +++ b/pkgs/by-name/fe/ferm/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { passthru.tests.ferm = nixosTests.ferm; - meta = { + meta = with lib; { homepage = "http://ferm.foo-projects.org/"; description = "Tool to maintain complex firewalls"; longDescription = '' @@ -55,8 +55,8 @@ stdenv.mkDerivation rec { command. The firewall configuration resembles structured programming-like language, which can contain levels and lists. ''; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ mic92 ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ mic92 ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/fe/fermi2/package.nix b/pkgs/by-name/fe/fermi2/package.nix index 9d391b476edc01..3acf773bc906ac 100644 --- a/pkgs/by-name/fe/fermi2/package.nix +++ b/pkgs/by-name/fe/fermi2/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/lh3/fermi2"; description = "Successor of fermi, a whole genome de novo assembler based on the FMD-index for large genomes"; mainProgram = "fermi2"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ apraga ]; - platforms = lib.intersectLists lib.platforms.x86_64 lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ apraga ]; + platforms = intersectLists platforms.x86_64 platforms.unix; }; } diff --git a/pkgs/by-name/fe/fex/package.nix b/pkgs/by-name/fe/fex/package.nix index 002fe3a70139ef..cc32ffd7dadffb 100644 --- a/pkgs/by-name/fe/fex/package.nix +++ b/pkgs/by-name/fe/fex/package.nix @@ -69,12 +69,12 @@ llvmPackages.stdenv.mkDerivation (finalAttrs: rec { wrapQtApp $out/bin/FEXConfig ''; - meta = { + meta = with lib; { description = "Fast usermode x86 and x86-64 emulator for Arm64 Linux"; homepage = "https://fex-emu.com/"; platforms = [ "aarch64-linux" ]; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ andre4ik3 ]; + license = licenses.mit; + maintainers = with maintainers; [ andre4ik3 ]; mainProgram = "FEXBash"; }; }) diff --git a/pkgs/by-name/ff/ffcast/package.nix b/pkgs/by-name/ff/ffcast/package.nix index 68aab967e3c40c..4dc3078c1722f3 100644 --- a/pkgs/by-name/ff/ffcast/package.nix +++ b/pkgs/by-name/ff/ffcast/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/ffcast --prefix PATH : ${binPath} ''; - meta = { + meta = with lib; { description = "Run commands on rectangular screen regions"; homepage = "https://github.com/ropery/FFcast"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ sikmir ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ sikmir ]; + platforms = platforms.linux; mainProgram = "ffcast"; }; } diff --git a/pkgs/by-name/ff/fflinuxprint/package.nix b/pkgs/by-name/ff/fflinuxprint/package.nix index c0781e71a90947..c0cddd5456573e 100644 --- a/pkgs/by-name/ff/fflinuxprint/package.nix +++ b/pkgs/by-name/ff/fflinuxprint/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "FujiFILM Linux Printer Driver"; homepage = "https://support-fb.fujifilm.com"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ jaduff ]; - platforms = lib.platforms.linux; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = with maintainers; [ jaduff ]; + platforms = platforms.linux; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/ff/ffmpeg-normalize/package.nix b/pkgs/by-name/ff/ffmpeg-normalize/package.nix index bcfc78b66e9c87..4ebb1078f6e585 100644 --- a/pkgs/by-name/ff/ffmpeg-normalize/package.nix +++ b/pkgs/by-name/ff/ffmpeg-normalize/package.nix @@ -23,11 +23,11 @@ python3Packages.buildPythonApplication rec { $out/bin/ffmpeg-normalize --help > /dev/null ''; - meta = { + meta = with lib; { description = "Normalize audio via ffmpeg"; homepage = "https://github.com/slhck/ffmpeg-normalize"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ luftmensch-luftmensch prusnak ]; diff --git a/pkgs/by-name/ff/ffpb/package.nix b/pkgs/by-name/ff/ffpb/package.nix index 669e3acb8fde11..6258151825bb77 100644 --- a/pkgs/by-name/ff/ffpb/package.nix +++ b/pkgs/by-name/ff/ffpb/package.nix @@ -21,12 +21,12 @@ python3Packages.buildPythonApplication rec { # tests require working internet connection doCheck = false; - meta = { + meta = with lib; { description = "FFmpeg progress formatter to display a nice progress bar and an adaptative ETA timer"; homepage = "https://github.com/althonos/ffpb"; changelog = "https://github.com/althonos/ffpb/blob/master/CHANGELOG.md"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ CaptainJawZ ]; + license = licenses.mit; + maintainers = with maintainers; [ CaptainJawZ ]; mainProgram = "ffpb"; }; } diff --git a/pkgs/by-name/ff/ffts/package.nix b/pkgs/by-name/ff/ffts/package.nix index 50ea6c26d21bd7..1386215e1d4b04 100644 --- a/pkgs/by-name/ff/ffts/package.nix +++ b/pkgs/by-name/ff/ffts/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DENABLE_SHARED=ON" ]; - meta = { + meta = with lib; { description = "The Fastest Fourier Transform in the South"; homepage = "https://github.com/linkotec/ffts"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ bgamari ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ bgamari ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/fg/fg-virgil/package.nix b/pkgs/by-name/fg/fg-virgil/package.nix index 9f3e4b5fb10776..e42802c99da34f 100644 --- a/pkgs/by-name/fg/fg-virgil/package.nix +++ b/pkgs/by-name/fg/fg-virgil/package.nix @@ -25,11 +25,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/excalidraw/virgil"; description = "Font that powers Excalidraw"; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ drupol ]; - license = lib.licenses.ofl; + platforms = platforms.all; + maintainers = with maintainers; [ drupol ]; + license = licenses.ofl; }; }) diff --git a/pkgs/by-name/fi/fido2-manage/package.nix b/pkgs/by-name/fi/fido2-manage/package.nix index 633a148451e4da..762939a20ecd0b 100644 --- a/pkgs/by-name/fi/fido2-manage/package.nix +++ b/pkgs/by-name/fi/fido2-manage/package.nix @@ -133,12 +133,12 @@ stdenv.mkDerivation rec { --replace-fail "ggrep" "${gnugrep}/bin/grep" ''; - meta = { + meta = with lib; { description = "Manage FIDO2.1 devices over USB or NFC, including Passkeys"; homepage = "https://github.com/token2/fido2-manage"; - platforms = lib.platforms.all; - license = lib.licenses.bsd2; + platforms = platforms.all; + license = licenses.bsd2; mainProgram = "fido2-manage"; - maintainers = with lib.maintainers; [ Srylax ]; + maintainers = with maintainers; [ Srylax ]; }; } diff --git a/pkgs/by-name/fi/fido2luks/package.nix b/pkgs/by-name/fi/fido2luks/package.nix index c19f7381a3bd71..21ae5309e6ea7c 100644 --- a/pkgs/by-name/fi/fido2luks/package.nix +++ b/pkgs/by-name/fi/fido2luks/package.nix @@ -30,11 +30,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-BcwcgQzNH1p9pOVbelaGTN7bKqDgvxD4Red2JeavpJQ="; - meta = { + meta = with lib; { description = "Decrypt your LUKS partition using a FIDO2 compatible authenticator"; homepage = "https://github.com/shimunn/fido2luks"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ mmahut ]; - platforms = lib.platforms.linux; + license = licenses.mpl20; + maintainers = with maintainers; [ mmahut ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/fi/figlet/package.nix b/pkgs/by-name/fi/figlet/package.nix index 5b13d3631fc1c2..4333d816b1b7fd 100644 --- a/pkgs/by-name/fi/figlet/package.nix +++ b/pkgs/by-name/fi/figlet/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { description = "Program for making large letters out of ordinary text"; homepage = "http://www.figlet.org/"; - license = lib.licenses.afl21; - maintainers = with lib.maintainers; [ ehmry ]; - platforms = lib.platforms.unix; + license = licenses.afl21; + maintainers = with maintainers; [ ehmry ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/fi/figma-agent/package.nix b/pkgs/by-name/fi/figma-agent/package.nix index 3c2137433c7144..821ad92285685b 100644 --- a/pkgs/by-name/fi/figma-agent/package.nix +++ b/pkgs/by-name/fi/figma-agent/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage rec { freetype ]; - meta = { + meta = with lib; { homepage = "https://github.com/neetly/figma-agent-linux"; description = "Figma Agent for Linux (a.k.a. Font Helper)"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ercao ]; + license = licenses.mit; + maintainers = with maintainers; [ ercao ]; mainProgram = "figma-agent"; }; } diff --git a/pkgs/by-name/fi/fil-plugins/package.nix b/pkgs/by-name/fi/fil-plugins/package.nix index 73d3ff0c0b33fc..d554fd3837e6fd 100644 --- a/pkgs/by-name/fi/fil-plugins/package.nix +++ b/pkgs/by-name/fi/fil-plugins/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation (finalAttrs: { mkdir -p "$out/lib/ladspa" ''; - meta = { + meta = with lib; { description = "Four-band parametric equaliser, which has the nice property of being stable even while parameters are being changed"; longDescription = '' Each section has an active/bypass switch, frequency, bandwidth and gain controls. @@ -36,8 +36,8 @@ stdenv.mkDerivation (finalAttrs: { This should make this plugin a good candidate for use in systems that allow automation of plugin control ports, such as Ardour, or for stage use. ''; homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/index.html"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.magnetophon ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = [ maintainers.magnetophon ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/fi/filesender/package.nix b/pkgs/by-name/fi/filesender/package.nix index 32eb0249d55b37..e66231fc100723 100644 --- a/pkgs/by-name/fi/filesender/package.nix +++ b/pkgs/by-name/fi/filesender/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation (finalAttrs: { inherit (nixosTests) filesender; }; - meta = { + meta = with lib; { description = "Web application for sending large files to other users"; homepage = "https://filesender.org/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ nhnn ]; + license = licenses.bsd3; + maintainers = with maintainers; [ nhnn ]; }; }) diff --git a/pkgs/by-name/fi/filterpath/package.nix b/pkgs/by-name/fi/filterpath/package.nix index 68f5132e4ab088..f73d5b32ef594f 100644 --- a/pkgs/by-name/fi/filterpath/package.nix +++ b/pkgs/by-name/fi/filterpath/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postCheck ''; - meta = { + meta = with lib; { homepage = "https://github.com/Sigmanificient/filterpath"; description = "Retrieve a valid path from a messy piped line"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ sigmanificient ]; mainProgram = "filterpath"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/fi/finamp/package.nix b/pkgs/by-name/fi/finamp/package.nix index 6e5e298e0cc664..ada18e1d2947d2 100644 --- a/pkgs/by-name/fi/finamp/package.nix +++ b/pkgs/by-name/fi/finamp/package.nix @@ -63,12 +63,12 @@ flutter327.buildFlutterApplication { }) ]; - meta = { + meta = with lib; { description = "Open source Jellyfin music player"; homepage = "https://github.com/jmshrv/finamp"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ dseelp ]; + license = licenses.mpl20; + maintainers = with maintainers; [ dseelp ]; mainProgram = "finamp"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/fi/findup/package.nix b/pkgs/by-name/fi/findup/package.nix index baa0248200ed77..5cddcf56a5f244 100644 --- a/pkgs/by-name/fi/findup/package.nix +++ b/pkgs/by-name/fi/findup/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; - meta = { + meta = with lib; { homepage = "https://github.com/booniepepper/findup"; description = "Search parent directories for sentinel files"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ booniepepper ]; + license = licenses.mit; + maintainers = with maintainers; [ booniepepper ]; mainProgram = "findup"; }; }) diff --git a/pkgs/by-name/fi/fira/package.nix b/pkgs/by-name/fi/fira/package.nix index b2aa6c6acd0fd8..aee535487e9e15 100644 --- a/pkgs/by-name/fi/fira/package.nix +++ b/pkgs/by-name/fi/fira/package.nix @@ -15,10 +15,10 @@ symlinkJoin rec { fira-sans ]; - meta = { + meta = with lib; { description = "Fira font family including Fira Sans and Fira Mono"; homepage = "https://bboxtype.com/fira/"; - license = lib.licenses.ofl; - platforms = lib.platforms.all; + license = licenses.ofl; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/fi/fire/package.nix b/pkgs/by-name/fi/fire/package.nix index a5c3c0be3681d6..b0c36d8cf446a2 100644 --- a/pkgs/by-name/fi/fire/package.nix +++ b/pkgs/by-name/fi/fire/package.nix @@ -116,11 +116,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { tagPrefix = "v"; }; - meta = { + meta = with lib; { description = "Multi-band distortion plugin by Wings"; homepage = "https://github.com/jerryuhoo/Fire"; - license = lib.licenses.agpl3Only; # Not clarified if Only or Plus - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ OPNA2608 ]; + license = licenses.agpl3Only; # Not clarified if Only or Plus + platforms = platforms.unix; + maintainers = with maintainers; [ OPNA2608 ]; }; }) diff --git a/pkgs/by-name/fi/firefly/package.nix b/pkgs/by-name/fi/firefly/package.nix index d01065e22d69ee..e3a6b5ddc34e66 100644 --- a/pkgs/by-name/fi/firefly/package.nix +++ b/pkgs/by-name/fi/firefly/package.nix @@ -28,12 +28,12 @@ buildGoModule rec { --replace-fail "Test_HttpFilter" "Skip_HttpFilter" ''; - meta = { + meta = with lib; { description = "Black box fuzzer for web applications"; homepage = "https://github.com/Brum3ns/firefly"; # https://github.com/Brum3ns/firefly/issues/12 - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.unfree; + maintainers = with maintainers; [ fab ]; mainProgram = "firefly"; }; } diff --git a/pkgs/by-name/fi/firefox-sync-client/package.nix b/pkgs/by-name/fi/firefox-sync-client/package.nix index a82b8adf701c9a..d5a535bf216def 100644 --- a/pkgs/by-name/fi/firefox-sync-client/package.nix +++ b/pkgs/by-name/fi/firefox-sync-client/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-MYetPdnnvIBzrYrA+eM9z1P3+P5FumYKH+brvvlwkm4="; - meta = { + meta = with lib; { description = "Commandline-utility to list/view/edit/delete entries in a firefox-sync account."; homepage = "https://github.com/Mikescher/firefox-sync-client"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ambroisie ]; + license = licenses.asl20; + maintainers = with maintainers; [ ambroisie ]; mainProgram = "ffsclient"; }; } diff --git a/pkgs/by-name/fi/firejail/package.nix b/pkgs/by-name/fi/firejail/package.nix index b998bf6f583a39..6387dabf5ad1a6 100644 --- a/pkgs/by-name/fi/firejail/package.nix +++ b/pkgs/by-name/fi/firejail/package.nix @@ -93,11 +93,11 @@ stdenv.mkDerivation rec { passthru.tests = nixosTests.firejail; - meta = { + meta = with lib; { description = "Namespace-based sandboxing tool for Linux"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; homepage = "https://firejail.wordpress.com/"; }; } diff --git a/pkgs/by-name/fi/fireplace/package.nix b/pkgs/by-name/fi/fireplace/package.nix index 1a41a09d851ac0..5211a07f07a20f 100644 --- a/pkgs/by-name/fi/fireplace/package.nix +++ b/pkgs/by-name/fi/fireplace/package.nix @@ -27,14 +27,14 @@ stdenv.mkDerivation { makeFlags = lib.optional stdenv.hostPlatform.isDarwin [ "CC=cc" ]; - meta = { + meta = with lib; { description = "Cozy fireplace in your terminal"; homepage = "https://github.com/Wyatt915/fireplace"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ multivac61 ]; mainProgram = "fireplace"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/fi/firmware-manager/package.nix b/pkgs/by-name/fi/firmware-manager/package.nix index 1364c58e039069..91ef100eac0e3e 100644 --- a/pkgs/by-name/fi/firmware-manager/package.nix +++ b/pkgs/by-name/fi/firmware-manager/package.nix @@ -51,15 +51,15 @@ stdenv.mkDerivation rec { makeFlags = [ "prefix=$(out)" ]; - meta = { + meta = with lib; { description = "Graphical frontend for firmware management"; homepage = "https://github.com/pop-os/firmware-manager"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Plus cc0 ]; mainProgram = "com.system76.FirmwareManager"; - maintainers = [ lib.maintainers.shlevy ]; - platforms = lib.platforms.linux; + maintainers = [ maintainers.shlevy ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/fi/fish-lsp/package.nix b/pkgs/by-name/fi/fish-lsp/package.nix index 4d49b1f3368515..b3701b0a88aec7 100644 --- a/pkgs/by-name/fi/fish-lsp/package.nix +++ b/pkgs/by-name/fi/fish-lsp/package.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "LSP implementation for the fish shell language"; homepage = "https://github.com/ndonfris/fish-lsp"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "fish-lsp"; - maintainers = with lib.maintainers; [ petertriho ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ petertriho ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/fi/fityk/package.nix b/pkgs/by-name/fi/fityk/package.nix index 581b717c0be84a..c7d68db1b408f2 100644 --- a/pkgs/by-name/fi/fityk/package.nix +++ b/pkgs/by-name/fi/fityk/package.nix @@ -42,10 +42,10 @@ stdenv.mkDerivation rec { "-std=c++11" ]; - meta = { + meta = with lib; { description = "Curve fitting and peak fitting software"; - license = lib.licenses.gpl2; + license = licenses.gpl2; homepage = "https://fityk.nieto.pl/"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/fi/fixedsys-excelsior/package.nix b/pkgs/by-name/fi/fixedsys-excelsior/package.nix index f0d4154b98fdd9..6bab30147aee94 100644 --- a/pkgs/by-name/fi/fixedsys-excelsior/package.nix +++ b/pkgs/by-name/fi/fixedsys-excelsior/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "http://www.fixedsysexcelsior.com/"; description = "Pan-unicode version of Fixedsys, a classic DOS font"; - platforms = lib.platforms.all; - license = lib.licenses.publicDomain; - maintainers = [ lib.maintainers.picnoir ]; + platforms = platforms.all; + license = licenses.publicDomain; + maintainers = [ maintainers.picnoir ]; }; } diff --git a/pkgs/by-name/fi/fixjson/package.nix b/pkgs/by-name/fi/fixjson/package.nix index 37623c8bcc4f85..ac58558694aa8e 100644 --- a/pkgs/by-name/fi/fixjson/package.nix +++ b/pkgs/by-name/fi/fixjson/package.nix @@ -18,11 +18,11 @@ buildNpmPackage { npmDepsHash = "sha256-tnsgNtMdnrKYxcYy9+4tgp1BX+o8e5/HUDeSP5BOvUQ="; - meta = { + meta = with lib; { description = "JSON Fixer for Humans using (relaxed) JSON5"; homepage = "https://github.com/rhysd/fixjson"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "fixjson"; - maintainers = with lib.maintainers; [ pyrox0 ]; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/by-name/fl/flann/package.nix b/pkgs/by-name/fl/flann/package.nix index d68def287d012b..0f836d1d832fa2 100644 --- a/pkgs/by-name/fl/flann/package.nix +++ b/pkgs/by-name/fl/flann/package.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation rec { buildInputs = lib.optionals enablePython [ python3 ]; - meta = { + meta = with lib; { homepage = "https://github.com/flann-lib/flann"; - license = lib.licenses.bsd3; + license = licenses.bsd3; description = "Fast approximate nearest neighbor searches in high dimensional spaces"; maintainers = [ ]; - platforms = with lib.platforms; linux ++ darwin; + platforms = with platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/fl/flashmq/package.nix b/pkgs/by-name/fl/flashmq/package.nix index e5f63b20defd89..52b5fce3f8b072 100644 --- a/pkgs/by-name/fl/flashmq/package.nix +++ b/pkgs/by-name/fl/flashmq/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Fast light-weight MQTT broker/server"; mainProgram = "flashmq"; homepage = "https://www.flashmq.org/"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ sikmir ]; - platforms = lib.platforms.linux; + license = licenses.agpl3Only; + maintainers = with maintainers; [ sikmir ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/fl/fleng/package.nix b/pkgs/by-name/fl/fleng/package.nix index 0257e6636ae40b..16885825344ab5 100644 --- a/pkgs/by-name/fl/fleng/package.nix +++ b/pkgs/by-name/fl/fleng/package.nix @@ -15,12 +15,12 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { homepage = "http://www.call-with-current-continuation.org/fleng/fleng.html"; description = "Low level concurrent logic programming language descended from Prolog"; - license = lib.licenses.publicDomain; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.unix; + license = licenses.publicDomain; + maintainers = with maintainers; [ ]; + platforms = platforms.unix; }; }) # TODO: bootstrap diff --git a/pkgs/by-name/fl/flent/package.nix b/pkgs/by-name/fl/flent/package.nix index 9157d4cf28ba06..8b25f103e4eda4 100644 --- a/pkgs/by-name/fl/flent/package.nix +++ b/pkgs/by-name/fl/flent/package.nix @@ -44,12 +44,12 @@ python3Packages.buildPythonApplication rec { ''; passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "FLExible Network Tester"; homepage = "https://flent.org"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ mmlb ]; + license = licenses.gpl3; + maintainers = with maintainers; [ mmlb ]; mainProgram = "flent"; - badPlatforms = lib.platforms.darwin; + badPlatforms = platforms.darwin; }; } diff --git a/pkgs/by-name/fl/flexoptix-app/package.nix b/pkgs/by-name/fl/flexoptix-app/package.nix index 930be1b6d497a0..505123a4660c8b 100644 --- a/pkgs/by-name/fl/flexoptix-app/package.nix +++ b/pkgs/by-name/fl/flexoptix-app/package.nix @@ -49,12 +49,12 @@ appimageTools.wrapAppImage { ln -s ${udevRules} $out/lib/udev/rules.d/99-tprogrammer.rules ''; - meta = { + meta = with lib; { description = "Configure FLEXOPTIX Universal Transceivers in seconds"; homepage = "https://www.flexoptix.net"; changelog = "https://www.flexoptix.net/en/flexoptix-app/?os=linux#flexapp__modal__changelog"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ das_j ]; + license = licenses.unfree; + maintainers = with maintainers; [ das_j ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/fl/flirt/package.nix b/pkgs/by-name/fl/flirt/package.nix index 2169efd63c7d91..9d25ae1b8c2e17 100644 --- a/pkgs/by-name/fl/flirt/package.nix +++ b/pkgs/by-name/fl/flirt/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "FiLe InteRacT, the file interaction tool for your command line"; homepage = "https://git.sr.ht/~hadronized/flirt"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ adda ]; mainProgram = "flirt"; diff --git a/pkgs/by-name/fl/flite/package.nix b/pkgs/by-name/fl/flite/package.nix index 514ded67728a7f..cffbc2a4e11b4c 100644 --- a/pkgs/by-name/fl/flite/package.nix +++ b/pkgs/by-name/fl/flite/package.nix @@ -67,11 +67,11 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Small, fast run-time speech synthesis engine"; homepage = "http://www.festvox.org/flite/"; - license = lib.licenses.bsdOriginal; - maintainers = with lib.maintainers; [ getchoo ]; + license = licenses.bsdOriginal; + maintainers = with maintainers; [ getchoo ]; mainProgram = "flite"; }; }) diff --git a/pkgs/by-name/fl/fllog/package.nix b/pkgs/by-name/fl/fllog/package.nix index 00d3de60d783ec..2e4eb283eb3a35 100644 --- a/pkgs/by-name/fl/fllog/package.nix +++ b/pkgs/by-name/fl/fllog/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = { + meta = with lib; { description = "Digital modem log program"; homepage = "https://sourceforge.net/projects/fldigi/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dysinger ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ dysinger ]; + platforms = platforms.linux; mainProgram = "fllog"; }; } diff --git a/pkgs/by-name/fl/flmsg/package.nix b/pkgs/by-name/fl/flmsg/package.nix index 4dd5825472ce9a..eb0bd19aed13b4 100644 --- a/pkgs/by-name/fl/flmsg/package.nix +++ b/pkgs/by-name/fl/flmsg/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = { + meta = with lib; { description = "Digital modem message program"; homepage = "https://sourceforge.net/projects/fldigi/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dysinger ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ dysinger ]; + platforms = platforms.linux; mainProgram = "flmsg"; }; } diff --git a/pkgs/by-name/fl/florist/package.nix b/pkgs/by-name/fl/florist/package.nix index b04148b63da71f..087c763694c399 100644 --- a/pkgs/by-name/fl/florist/package.nix +++ b/pkgs/by-name/fl/florist/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { gnat13Packages.gprbuild ]; - meta = { + meta = with lib; { description = "Posix Ada Bindings"; homepage = "https://github.com/adacore/florist"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ lutzberger ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ lutzberger ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/fl/flrig/package.nix b/pkgs/by-name/fl/flrig/package.nix index 7e7b9f02366712..52064750e1718a 100644 --- a/pkgs/by-name/fl/flrig/package.nix +++ b/pkgs/by-name/fl/flrig/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = { + meta = with lib; { description = "Digital modem rig control program"; homepage = "https://sourceforge.net/projects/fldigi/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dysinger ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ dysinger ]; + platforms = platforms.linux; mainProgram = "flrig"; }; } diff --git a/pkgs/by-name/fl/flutter_rust_bridge_codegen/package.nix b/pkgs/by-name/fl/flutter_rust_bridge_codegen/package.nix index 8c6146706d35bc..12c2d9379f99d4 100644 --- a/pkgs/by-name/fl/flutter_rust_bridge_codegen/package.nix +++ b/pkgs/by-name/fl/flutter_rust_bridge_codegen/package.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage rec { "--skip=tests::test_execute_generate_on_frb_example_pure_dart" ]; - meta = { + meta = with lib; { mainProgram = "flutter_rust_bridge_codegen"; description = "Flutter/Dart <-> Rust binding generator, feature-rich, but seamless and simple"; homepage = "https://fzyzcjy.github.io/flutter_rust_bridge"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.eymeric ]; + license = licenses.mit; + maintainers = [ maintainers.eymeric ]; }; } diff --git a/pkgs/by-name/fl/flwrap/package.nix b/pkgs/by-name/fl/flwrap/package.nix index e1a4f93a179f17..0c1419ffcb16e7 100644 --- a/pkgs/by-name/fl/flwrap/package.nix +++ b/pkgs/by-name/fl/flwrap/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = { + meta = with lib; { description = "Digital modem file transfer program"; homepage = "https://sourceforge.net/projects/fldigi/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dysinger ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ dysinger ]; + platforms = platforms.linux; mainProgram = "flwrap"; }; } diff --git a/pkgs/by-name/fl/flyctl/package.nix b/pkgs/by-name/fl/flyctl/package.nix index 51fbf03d917208..d640476fea796d 100644 --- a/pkgs/by-name/fl/flyctl/package.nix +++ b/pkgs/by-name/fl/flyctl/package.nix @@ -67,12 +67,12 @@ buildGoModule rec { version = "v${flyctl.version}"; }; - meta = { + meta = with lib; { description = "Command line tools for fly.io services"; downloadPage = "https://github.com/superfly/flyctl"; homepage = "https://fly.io/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ adtya jsierles techknowlogick diff --git a/pkgs/by-name/fm/fmtoy/package.nix b/pkgs/by-name/fm/fmtoy/package.nix index 31a64eca4a0ae2..9c602923d87b89 100644 --- a/pkgs/by-name/fm/fmtoy/package.nix +++ b/pkgs/by-name/fm/fmtoy/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = unstableGitUpdater { }; }; - meta = { + meta = with lib; { description = "FM synthesiser based on emulated Yamaha YM chips (OPL, OPM and OPN series)"; homepage = "https://github.com/vampirefrog/fmtoy"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "fmtoy_jack"; - maintainers = with lib.maintainers; [ OPNA2608 ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ OPNA2608 ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/fo/folio/package.nix b/pkgs/by-name/fo/folio/package.nix index b1b727c012d275..0fbe178a359f9f 100644 --- a/pkgs/by-name/fo/folio/package.nix +++ b/pkgs/by-name/fo/folio/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { gtksourceview5 ]; - meta = { + meta = with lib; { description = "Beautiful markdown note-taking app for GNOME (forked from Paper)"; homepage = "https://github.com/toolstack/Folio"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "com.toolstack.Folio"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/fo/follow/package.nix b/pkgs/by-name/fo/follow/package.nix index 9add047a1c983a..5bfe504dc4f89c 100644 --- a/pkgs/by-name/fo/follow/package.nix +++ b/pkgs/by-name/fo/follow/package.nix @@ -105,11 +105,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Next generation information browser"; homepage = "https://github.com/RSSNext/Follow"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ iosmanthus ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ iosmanthus ]; platforms = [ "x86_64-linux" ]; mainProgram = "follow"; }; diff --git a/pkgs/by-name/fo/folly/package.nix b/pkgs/by-name/fo/folly/package.nix index e564965bf95673..2714fda918f6b0 100644 --- a/pkgs/by-name/fo/folly/package.nix +++ b/pkgs/by-name/fo/folly/package.nix @@ -195,14 +195,14 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { description = "Open-source C++ library developed and used at Facebook"; homepage = "https://github.com/facebook/folly"; - license = lib.licenses.asl20; + license = licenses.asl20; # 32bit is not supported: https://github.com/facebook/folly/issues/103 - platforms = lib.platforms.unix; - badPlatforms = [ lib.systems.inspect.patterns.is32bit ]; - maintainers = with lib.maintainers; [ + platforms = platforms.unix; + badPlatforms = [ systems.inspect.patterns.is32bit ]; + maintainers = with maintainers; [ abbradar pierreis emily diff --git a/pkgs/by-name/fo/foomatic-filters/package.nix b/pkgs/by-name/fo/foomatic-filters/package.nix index 5f69ec334aa218..58601df42d552e 100644 --- a/pkgs/by-name/fo/foomatic-filters/package.nix +++ b/pkgs/by-name/fo/foomatic-filters/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { "CUPS_BACKENDS=$(out)/lib/cups/backend" ]; - meta = { + meta = with lib; { description = "Foomatic printing filters"; mainProgram = "foomatic-rip"; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Plus; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/fo/footage/package.nix b/pkgs/by-name/fo/footage/package.nix index 595603530e864e..b75aa2d3a969d6 100644 --- a/pkgs/by-name/fo/footage/package.nix +++ b/pkgs/by-name/fo/footage/package.nix @@ -91,10 +91,10 @@ stdenv.mkDerivation rec { ) ''; - meta = { + meta = with lib; { description = "Video editing tool that allows you to trim, flip, rotate, and crop clips"; homepage = "https://gitlab.com/adhami3310/Footage"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ onny ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ onny ]; }; } diff --git a/pkgs/by-name/fo/fooyin/package.nix b/pkgs/by-name/fo/fooyin/package.nix index f4723504c5cfcf..025db98187eb87 100644 --- a/pkgs/by-name/fo/fooyin/package.nix +++ b/pkgs/by-name/fo/fooyin/package.nix @@ -65,13 +65,13 @@ stdenv.mkDerivation (finalAttrs: { env.LANG = "C.UTF-8"; - meta = { + meta = with lib; { description = "Customisable music player"; homepage = "https://www.fooyin.org/"; downloadPage = "https://github.com/fooyin/fooyin"; mainProgram = "fooyin"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ peterhoeg ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ peterhoeg ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/fo/forecast/package.nix b/pkgs/by-name/fo/forecast/package.nix index 9caca19cafdb38..ba4543443fb795 100644 --- a/pkgs/by-name/fo/forecast/package.nix +++ b/pkgs/by-name/fo/forecast/package.nix @@ -94,12 +94,12 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Weather app written in rust and libcosmic"; homepage = "https://github.com/cosmic-utils/forecast"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ GaetanLepage ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ GaetanLepage ]; + platforms = platforms.linux; mainProgram = "cosmic-ext-forecast"; }; } diff --git a/pkgs/by-name/fo/formatjson5/package.nix b/pkgs/by-name/fo/formatjson5/package.nix index c82393ab490e85..863f7d7546bee0 100644 --- a/pkgs/by-name/fo/formatjson5/package.nix +++ b/pkgs/by-name/fo/formatjson5/package.nix @@ -43,11 +43,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "JSON5 formatter"; homepage = "https://github.com/google/json5format"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "formatjson5"; - maintainers = with lib.maintainers; [ katexochen ]; + maintainers = with maintainers; [ katexochen ]; }; } diff --git a/pkgs/by-name/fo/fortanix-sgx-tools/package.nix b/pkgs/by-name/fo/fortanix-sgx-tools/package.nix index 138b07aa255ab2..b9c50e78334d80 100644 --- a/pkgs/by-name/fo/fortanix-sgx-tools/package.nix +++ b/pkgs/by-name/fo/fortanix-sgx-tools/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { hash = "sha256-F0lZG1neAPVvyOxUtDPv0t7o+ZC+aQRtpFeq55QwcmE="; }; cargoHash = "sha256-jYfsmPwhvt+ccUr4Vwq5q1YzNlxA+Vnpxd4KpWZrYo8="; - meta = { + meta = with lib; { description = "Tools for building and running enclaves for the Fortanix SGX ABI"; homepage = "https://github.com/fortanix/rust-sgx"; - maintainers = [ lib.maintainers.ozwaldorf ]; + maintainers = [ maintainers.ozwaldorf ]; platforms = [ "x86_64-linux" ]; - license = lib.licenses.mpl20; + license = licenses.mpl20; }; } diff --git a/pkgs/by-name/fo/fortify-headers/package.nix b/pkgs/by-name/fo/fortify-headers/package.nix index bb3c55484444c1..d5108759cdf664 100644 --- a/pkgs/by-name/fo/fortify-headers/package.nix +++ b/pkgs/by-name/fo/fortify-headers/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Standalone header-based fortify-source implementation"; homepage = "https://git.2f30.org/fortify-headers"; - license = lib.licenses.bsd0; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ ris ]; + license = licenses.bsd0; + platforms = platforms.all; + maintainers = with maintainers; [ ris ]; }; } diff --git a/pkgs/by-name/fp/fpp/package.nix b/pkgs/by-name/fp/fpp/package.nix index c065782c33eab4..a0a3e73a3047c1 100644 --- a/pkgs/by-name/fp/fpp/package.nix +++ b/pkgs/by-name/fp/fpp/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { installManPage debian/usr/share/man/man1/fpp.1 ''; - meta = { + meta = with lib; { description = "CLI program that accepts piped input and presents files for selection"; homepage = "https://facebook.github.io/PathPicker/"; - license = lib.licenses.bsd3; - platforms = lib.platforms.all; + license = licenses.bsd3; + platforms = platforms.all; mainProgram = "fpp"; }; } diff --git a/pkgs/by-name/fp/fprintd-tod/package.nix b/pkgs/by-name/fp/fprintd-tod/package.nix index bb34e1b88de2c2..777ec846526412 100644 --- a/pkgs/by-name/fp/fprintd-tod/package.nix +++ b/pkgs/by-name/fp/fprintd-tod/package.nix @@ -68,12 +68,12 @@ mv src/manager.xml src/net.reactivated.Fprint.Manager.xml ''; - meta = { + meta = with lib; { homepage = "https://fprint.freedesktop.org/"; description = "fprintd built with libfprint-tod to support Touch OEM Drivers"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ hmenke ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ hmenke ]; }; } ) diff --git a/pkgs/by-name/fp/fprintd/package.nix b/pkgs/by-name/fp/fprintd/package.nix index aeddeebba1670d..6b9e5ae218aa12 100644 --- a/pkgs/by-name/fp/fprintd/package.nix +++ b/pkgs/by-name/fp/fprintd/package.nix @@ -112,11 +112,11 @@ stdenv.mkDerivation (finalAttrs: { --replace "'G_DEBUG=fatal-criticals'," "" ''; - meta = { + meta = with lib; { homepage = "https://fprint.freedesktop.org/"; description = "D-Bus daemon that offers libfprint functionality over the D-Bus interprocess communication bus"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ abbradar ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ abbradar ]; }; }) diff --git a/pkgs/by-name/fr/framac/package.nix b/pkgs/by-name/fr/framac/package.nix index f145ecf985881c..24432c8e32391b 100644 --- a/pkgs/by-name/fr/framac/package.nix +++ b/pkgs/by-name/fr/framac/package.nix @@ -129,14 +129,14 @@ stdenv.mkDerivation rec { addEnvHooks "$targetOffset" addFramaCPath ''; - meta = { + meta = with lib; { description = "Extensible and collaborative platform dedicated to source-code analysis of C software"; homepage = "http://frama-c.com/"; - license = lib.licenses.lgpl21; - maintainers = with lib.maintainers; [ + license = licenses.lgpl21; + maintainers = with maintainers; [ thoughtpolice amiddelk ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/fr/frame/package.nix b/pkgs/by-name/fr/frame/package.nix index e7c06a2d34e51c..71f742e4d96cbe 100644 --- a/pkgs/by-name/fr/frame/package.nix +++ b/pkgs/by-name/fr/frame/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { configureFlags = lib.optional enableX11 "--with-x11"; - meta = { + meta = with lib; { homepage = "https://launchpad.net/frame"; description = "Handles the buildup and synchronization of a set of simultaneous touches"; mainProgram = "frame-test-x11"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; + license = licenses.gpl3; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/fr/framesh/package.nix b/pkgs/by-name/fr/framesh/package.nix index 5cc572eeac8271..9d455c5ecf38bb 100644 --- a/pkgs/by-name/fr/framesh/package.nix +++ b/pkgs/by-name/fr/framesh/package.nix @@ -32,12 +32,12 @@ appimageTools.wrapType2 { --replace 'Exec=AppRun' 'Exec=${pname}' ''; - meta = { + meta = with lib; { description = "Native web3 interface that lets you sign data, securely manage accounts and transparently interact with dapps via web3 protocols like Ethereum and IPFS"; homepage = "https://frame.sh/"; downloadPage = "https://github.com/floating/frame/releases"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ nook ]; + maintainers = with maintainers; [ nook ]; }; } diff --git a/pkgs/by-name/fr/free42/package.nix b/pkgs/by-name/fr/free42/package.nix index ee1be3804755c7..8684c1bcf6421c 100644 --- a/pkgs/by-name/fr/free42/package.nix +++ b/pkgs/by-name/fr/free42/package.nix @@ -94,12 +94,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/thomasokken/free42"; description = "Software clone of HP-42S Calculator"; - license = with lib.licenses; [ gpl2Only ]; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = with licenses; [ gpl2Only ]; + maintainers = with maintainers; [ AndersonTorres ]; mainProgram = "free42dec"; - platforms = with lib.platforms; unix; + platforms = with platforms; unix; }; }) diff --git a/pkgs/by-name/fr/freealut/package.nix b/pkgs/by-name/fr/freealut/package.nix index cdf35d400a18ba..96c01222532dda 100644 --- a/pkgs/by-name/fr/freealut/package.nix +++ b/pkgs/by-name/fr/freealut/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = { + meta = with lib; { homepage = "http://openal.org/"; description = "Free implementation of OpenAL's ALUT standard"; mainProgram = "freealut-config"; - license = lib.licenses.lgpl2; + license = licenses.lgpl2; pkgConfigModules = [ "freealut" ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/fr/freecell-solver/package.nix b/pkgs/by-name/fr/freecell-solver/package.nix index 22d87b53fd05ee..311034edfb8a82 100644 --- a/pkgs/by-name/fr/freecell-solver/package.nix +++ b/pkgs/by-name/fr/freecell-solver/package.nix @@ -81,7 +81,7 @@ stdenv.mkDerivation (finalAttrs: { wrapPythonProgramsIn "$out/bin" "$out $pythonPath" ''; - meta = { + meta = with lib; { homepage = "https://fc-solve.shlomifish.org/"; description = "FreeCell automatic solver"; longDescription = '' @@ -89,9 +89,9 @@ stdenv.mkDerivation (finalAttrs: { and similar variants of Card Solitaire such as Eight Off, Forecell, and Seahaven Towers, as well as Simple Simon boards. ''; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "fc-solve"; - maintainers = [ lib.maintainers.AndersonTorres ]; - platforms = lib.platforms.unix; + maintainers = [ maintainers.AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/fr/freedv/package.nix b/pkgs/by-name/fr/freedv/package.nix index 91bfa5a71c0b48..203553f11d9c61 100644 --- a/pkgs/by-name/fr/freedv/package.nix +++ b/pkgs/by-name/fr/freedv/package.nix @@ -75,15 +75,15 @@ stdenv.mkDerivation rec { makeWrapper $out/Applications/FreeDV.app/Contents/MacOS/FreeDV $out/bin/freedv ''; - meta = { + meta = with lib; { homepage = "https://freedv.org/"; description = "Digital voice for HF radio"; - license = lib.licenses.lgpl21Only; - maintainers = with lib.maintainers; [ + license = licenses.lgpl21Only; + maintainers = with maintainers; [ mvs wegank ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "freedv"; }; } diff --git a/pkgs/by-name/fr/freefont_ttf/package.nix b/pkgs/by-name/fr/freefont_ttf/package.nix index b1c2494dd70f88..3641bf88ffd43b 100644 --- a/pkgs/by-name/fr/freefont_ttf/package.nix +++ b/pkgs/by-name/fr/freefont_ttf/package.nix @@ -22,7 +22,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "GNU Free UCS Outline Fonts"; longDescription = '' The GNU Freefont project aims to provide a set of free outline @@ -30,8 +30,8 @@ stdenvNoCC.mkDerivation rec { 10646/Unicode UCS (Universal Character Set). ''; homepage = "https://www.gnu.org/software/freefont/"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.all; + license = licenses.gpl3Plus; + platforms = platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/fr/freetts/package.nix b/pkgs/by-name/fr/freetts/package.nix index 3d7c810ad7abcf..bedc45ee1ef1e5 100644 --- a/pkgs/by-name/fr/freetts/package.nix +++ b/pkgs/by-name/fr/freetts/package.nix @@ -47,16 +47,16 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Text to speech system based on Festival written in Java"; longDescription = '' Text to speech system based on Festival written in Java. Can be used in combination with KDE accessibility. ''; homepage = "http://freetts.sourceforge.net"; - license = lib.licenses.bsdOriginal; - maintainers = with lib.maintainers; [ sander ]; - sourceProvenance = with lib.sourceTypes; [ + license = licenses.bsdOriginal; + maintainers = with maintainers; [ sander ]; + sourceProvenance = with sourceTypes; [ fromSource binaryBytecode # jsapi.jar is bundled in a self-extracting shell-script ]; diff --git a/pkgs/by-name/fr/frequest/package.nix b/pkgs/by-name/fr/frequest/package.nix index b643360df0f225..76825b1e21a1b0 100644 --- a/pkgs/by-name/fr/frequest/package.nix +++ b/pkgs/by-name/fr/frequest/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation (finalAttrs: { install -D LinuxAppImageDeployment/frequest_icon.png $out/share/icons/hicolor/128x128/apps/frequest_icon.png ''; - meta = { + meta = with lib; { description = "Fast, lightweight and opensource desktop application to make HTTP(s) requests"; homepage = "https://fabiobento512.github.io/FRequest"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ eliandoran ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ eliandoran ]; + platforms = platforms.linux; mainProgram = "frequest"; }; }) diff --git a/pkgs/by-name/fr/frida-tools/package.nix b/pkgs/by-name/fr/frida-tools/package.nix index 4da97c248be641..2c8dbd42c9c6e8 100644 --- a/pkgs/by-name/fr/frida-tools/package.nix +++ b/pkgs/by-name/fr/frida-tools/package.nix @@ -21,10 +21,10 @@ python3Packages.buildPythonApplication rec { websockets ]; - meta = { + meta = with lib; { description = "Dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers (client tools)"; homepage = "https://www.frida.re/"; - maintainers = with lib.maintainers; [ s1341 ]; - license = lib.licenses.wxWindows; + maintainers = with maintainers; [ s1341 ]; + license = licenses.wxWindows; }; } diff --git a/pkgs/by-name/fr/frog-protocols/package.nix b/pkgs/by-name/fr/frog-protocols/package.nix index 0219d0461ff56f..cbe868a33e0933 100644 --- a/pkgs/by-name/fr/frog-protocols/package.nix +++ b/pkgs/by-name/fr/frog-protocols/package.nix @@ -29,15 +29,15 @@ stdenv.mkDerivation (finalAttrs: { tests.pkg-config = testers.hasPkgConfigModules { package = finalAttrs.finalPackage; }; }; - meta = { + meta = with lib; { description = "Wayland protocols but much more iterative"; homepage = "https://github.com/misyltoad/frog-protocols"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ getchoo Scrumplex ]; - platforms = lib.platforms.all; + platforms = platforms.all; pkgConfigModules = [ "frog-protocols" ]; }; }) diff --git a/pkgs/by-name/fr/froide/package.nix b/pkgs/by-name/fr/froide/package.nix index e33a08bfb9daf4..bf31ca271e9c19 100644 --- a/pkgs/by-name/fr/froide/package.nix +++ b/pkgs/by-name/fr/froide/package.nix @@ -164,11 +164,11 @@ python.pkgs.buildPythonApplication rec { export PLAYWRIGHT_BROWSERS_PATH="${playwright-driver.browsers}" ''; - meta = { + meta = with lib; { description = "Freedom of Information Portal"; homepage = "https://github.com/okfde/froide"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.onny ]; + license = licenses.mit; + maintainers = [ maintainers.onny ]; mainProgram = "froide"; }; } diff --git a/pkgs/by-name/fr/frozen-bubble/package.nix b/pkgs/by-name/fr/frozen-bubble/package.nix index 40610b9c1ddb79..33f1085bc6bc63 100644 --- a/pkgs/by-name/fr/frozen-bubble/package.nix +++ b/pkgs/by-name/fr/frozen-bubble/package.nix @@ -66,9 +66,9 @@ perlPackages.buildPerlModule { }) ]; - meta = { + meta = with lib; { description = "Puzzle with Bubbles"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ puckipedia ]; + license = licenses.gpl2Only; + maintainers = with maintainers; [ puckipedia ]; }; } diff --git a/pkgs/by-name/fr/frozen/package.nix b/pkgs/by-name/fr/frozen/package.nix index 9ea5d64ed289b1..9889a83b1ba984 100644 --- a/pkgs/by-name/fr/frozen/package.nix +++ b/pkgs/by-name/fr/frozen/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { cp ${./meson.build} meson.build ''; - meta = { + meta = with lib; { homepage = "https://github.com/cesanta/frozen"; description = "Minimal JSON parser for C, targeted for embedded systems"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ thillux ]; - platforms = lib.platforms.unix; + license = licenses.asl20; + maintainers = with maintainers; [ thillux ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/fs/fsg/package.nix b/pkgs/by-name/fs/fsg/package.nix index 0a8048d5e6f85d..7dfb383cbd137e 100644 --- a/pkgs/by-name/fs/fsg/package.nix +++ b/pkgs/by-name/fs/fsg/package.nix @@ -62,10 +62,10 @@ stdenv.mkDerivation rec { chmod a+x $out/bin/fsg ''; - meta = { + meta = with lib; { description = "Cellular automata engine tuned towards the likes of Falling Sand"; mainProgram = "fsg"; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/fs/fsharp/package.nix b/pkgs/by-name/fs/fsharp/package.nix index 716d637a84e812..4f4e109a4c29f1 100644 --- a/pkgs/by-name/fs/fsharp/package.nix +++ b/pkgs/by-name/fs/fsharp/package.nix @@ -58,14 +58,14 @@ stdenv.mkDerivation rec { # The file "/nix/store/path/whatever.exe" is an not a valid CIL image dontStrip = true; - meta = { + meta = with lib; { description = "Functional CLI language"; homepage = "https://fsharp.org/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ thoughtpolice raskin ]; - platforms = with lib.platforms; unix; + platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/fs/fsnotifier/package.nix b/pkgs/by-name/fs/fsnotifier/package.nix index bb9215713d61d6..e89704409ec0bf 100644 --- a/pkgs/by-name/fs/fsnotifier/package.nix +++ b/pkgs/by-name/fs/fsnotifier/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { cp fsnotifier $out/bin/fsnotifier ''; - meta = { + meta = with lib; { homepage = "https://github.com/JetBrains/intellij-community/tree/master/native/fsNotifier/linux"; description = "IntelliJ Platform companion program for watching and reporting file and directory structure modification"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "fsnotifier"; - maintainers = with lib.maintainers; [ shyim ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ shyim ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/fs/fsuae-launcher/package.nix b/pkgs/by-name/fs/fsuae-launcher/package.nix index 8c587ca300f8a3..06c070097ec03a 100644 --- a/pkgs/by-name/fs/fsuae-launcher/package.nix +++ b/pkgs/by-name/fs/fsuae-launcher/package.nix @@ -51,15 +51,15 @@ stdenv.mkDerivation (finalAttrs: { ln -s ${fsuae}/share/fs-uae $out/share/fs-uae ''; - meta = { + meta = with lib; { homepage = "https://fs-uae.net"; description = "Graphical front-end for the FS-UAE emulator"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "fs-uae-launcher"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ sander AndersonTorres ]; - platforms = with lib.systems.inspect; patternLogicalAnd patterns.isx86 patterns.isLinux; + platforms = with systems.inspect; patternLogicalAnd patterns.isx86 patterns.isLinux; }; }) diff --git a/pkgs/by-name/fs/fsuae/package.nix b/pkgs/by-name/fs/fsuae/package.nix index 854538295ba14a..197ba75433369d 100644 --- a/pkgs/by-name/fs/fsuae/package.nix +++ b/pkgs/by-name/fs/fsuae/package.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation (finalAttrs: { strip-nondeterminism --type zip $out/share/fs-uae/fs-uae.dat ''; - meta = { + meta = with lib; { homepage = "https://fs-uae.net"; description = "Accurate, customizable Amiga Emulator"; longDescription = '' @@ -67,9 +67,9 @@ stdenv.mkDerivation (finalAttrs: { models, but you can tweak the hardware configuration and create customized Amigas. ''; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "fs-uae"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = with lib.systems.inspect; patternLogicalAnd patterns.isx86 patterns.isLinux; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = with systems.inspect; patternLogicalAnd patterns.isx86 patterns.isLinux; }; }) diff --git a/pkgs/by-name/fs/fswebcam/package.nix b/pkgs/by-name/fs/fswebcam/package.nix index 131e256f0eef7b..a0bff6ba5602ae 100644 --- a/pkgs/by-name/fs/fswebcam/package.nix +++ b/pkgs/by-name/fs/fswebcam/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { gd ]; - meta = { + meta = with lib; { description = "Neat and simple webcam app"; mainProgram = "fswebcam"; homepage = "http://www.sanslogic.co.uk/fswebcam"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Only; + platforms = platforms.linux; + license = licenses.gpl2Only; }; } diff --git a/pkgs/by-name/ft/fte/package.nix b/pkgs/by-name/ft/fte/package.nix index 83e4c33e04de51..9bb37c7056b055 100644 --- a/pkgs/by-name/ft/fte/package.nix +++ b/pkgs/by-name/ft/fte/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation (finalAttrs: { # not setting it cause fte to not find xfte makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = { + meta = with lib; { description = "Free text editor for developers"; homepage = "https://fte.sourceforge.net/"; - license = lib.licenses.gpl2; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.all; + license = licenses.gpl2; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ft/ftx-prog/package.nix b/pkgs/by-name/ft/ftx-prog/package.nix index 2aa09b503c120d..884abcb8282faf 100644 --- a/pkgs/by-name/ft/ftx-prog/package.nix +++ b/pkgs/by-name/ft/ftx-prog/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Command-line alternative to the FTDI FTProg utility for FTDI's FT-X series"; mainProgram = "ftx_prog"; homepage = "https://github.com/richardeoin/ftx-prog"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux ++ lib.platforms.darwin; - maintainers = [ lib.maintainers.funkeleinhorn ]; + license = licenses.gpl2Plus; + platforms = platforms.linux ++ platforms.darwin; + maintainers = [ maintainers.funkeleinhorn ]; }; }) diff --git a/pkgs/by-name/fu/fusee-nano/package.nix b/pkgs/by-name/fu/fusee-nano/package.nix index ca75ded59699e2..464ee60f510c3d 100644 --- a/pkgs/by-name/fu/fusee-nano/package.nix +++ b/pkgs/by-name/fu/fusee-nano/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)/bin" ]; - meta = { + meta = with lib; { description = "Minimalist re-implementation of the Fusée Gelée exploit"; mainProgram = "fusee-nano"; homepage = "https://github.com/DavidBuchanan314/fusee-nano"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.leo60228 ]; + license = licenses.mit; + platforms = platforms.linux; + maintainers = [ maintainers.leo60228 ]; }; } diff --git a/pkgs/by-name/fu/fuzzdb/package.nix b/pkgs/by-name/fu/fuzzdb/package.nix index 77c8c1dc94e0db..f2ab79bd2e26fe 100644 --- a/pkgs/by-name/fu/fuzzdb/package.nix +++ b/pkgs/by-name/fu/fuzzdb/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Comprehensive collection of attack patterns and predictable resource names used for security testing and fuzzing application"; homepage = "https://github.com/fuzzdb-project/fuzzdb"; - license = with lib.licenses; [ bsd3 ]; - maintainers = with lib.maintainers; [ d3vil0p3r ]; - platforms = lib.platforms.all; + license = with licenses; [ bsd3 ]; + maintainers = with maintainers; [ d3vil0p3r ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ga/galario/package.nix b/pkgs/by-name/ga/galario/package.nix index 6abfa0fe519efa..bda955c453a035 100644 --- a/pkgs/by-name/ga/galario/package.nix +++ b/pkgs/by-name/ga/galario/package.nix @@ -86,7 +86,7 @@ stdenv.mkDerivation (finalAttrs: { install_name_tool -change libgalario_single.dylib $out/lib/libgalario_single.dylib $out/lib/python*/site-packages/galario/single/libcommon.so ''; - meta = { + meta = with lib; { description = "GPU Accelerated Library for Analysing Radio Interferometer Observations"; longDescription = '' Galario is a library that exploits the computing power of modern @@ -97,8 +97,8 @@ stdenv.mkDerivation (finalAttrs: { comparison to the observations. ''; homepage = "https://mtazzari.github.io/galario/"; - license = lib.licenses.lgpl3; - maintainers = [ lib.maintainers.smaret ]; - platforms = lib.platforms.all; + license = licenses.lgpl3; + maintainers = [ maintainers.smaret ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ga/gale/package.nix b/pkgs/by-name/ga/gale/package.nix index ad176149074e0e..adc208b75380d1 100644 --- a/pkgs/by-name/ga/gale/package.nix +++ b/pkgs/by-name/ga/gale/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation (finalAttrs: { openssl ]; - meta = { + meta = with lib; { description = "Lightweight Thunderstore client"; homepage = "https://github.com/Kesomannen/gale"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "gale"; - maintainers = with lib.maintainers; [ tomasajt ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ tomasajt ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ga/gama-tui/package.nix b/pkgs/by-name/ga/gama-tui/package.nix index 92c0ce09a0195a..b91e8e6c9e4850 100644 --- a/pkgs/by-name/ga/gama-tui/package.nix +++ b/pkgs/by-name/ga/gama-tui/package.nix @@ -25,12 +25,12 @@ buildGoModule rec { # requires network access doCheck = false; - meta = { + meta = with lib; { description = "Manage your GitHub Actions from Terminal with great UI"; homepage = "https://github.com/termkit/gama"; changelog = "https://github.com/termkit/gama/releases"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ phanirithvij ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ phanirithvij ]; mainProgram = "gama"; }; } diff --git a/pkgs/by-name/ga/gambit-project/package.nix b/pkgs/by-name/ga/gambit-project/package.nix index 818d4c6737dfcb..4099922d92616a 100644 --- a/pkgs/by-name/ga/gambit-project/package.nix +++ b/pkgs/by-name/ga/gambit-project/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation (finalAttrs: { (lib.enableFeature withGui "gui") ]; - meta = { + meta = with lib; { description = "Open-source collection of tools for doing computation in game theory"; homepage = "http://www.gambit-project.org"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ t4ccer ]; - platforms = with lib.platforms; unix ++ windows; + license = licenses.gpl2Only; + maintainers = with maintainers; [ t4ccer ]; + platforms = with platforms; unix ++ windows; }; }) diff --git a/pkgs/by-name/ga/gamescope/package.nix b/pkgs/by-name/ga/gamescope/package.nix index 5a37da55a92fe3..4992ccee1157fb 100644 --- a/pkgs/by-name/ga/gamescope/package.nix +++ b/pkgs/by-name/ga/gamescope/package.nix @@ -176,11 +176,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "SteamOS session compositing window manager"; homepage = "https://github.com/ValveSoftware/gamescope"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ + license = licenses.bsd2; + maintainers = with maintainers; [ nrdxp pedrohlc Scrumplex @@ -188,7 +188,7 @@ stdenv.mkDerivation (finalAttrs: { k900 Gliczy ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "gamescope"; }; }) diff --git a/pkgs/by-name/ga/gancio/package.nix b/pkgs/by-name/ga/gancio/package.nix index 7c3c207779c0c8..0c3951afce4767 100644 --- a/pkgs/by-name/ga/gancio/package.nix +++ b/pkgs/by-name/ga/gancio/package.nix @@ -73,13 +73,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Shared agenda for local communities, running on nodejs"; homepage = "https://gancio.org/"; changelog = "https://framagit.org/les/gancio/-/raw/master/CHANGELOG.md"; - license = lib.licenses.agpl3Plus; - platforms = lib.platforms.linux; + license = licenses.agpl3Plus; + platforms = platforms.linux; mainProgram = "gancio"; - maintainers = with lib.maintainers; [ jbgi ]; + maintainers = with maintainers; [ jbgi ]; }; }) diff --git a/pkgs/by-name/ga/gancio/plugin-telegram-bridge/default.nix b/pkgs/by-name/ga/gancio/plugin-telegram-bridge/default.nix index 989ad235495220..207eb33c196245 100644 --- a/pkgs/by-name/ga/gancio/plugin-telegram-bridge/default.nix +++ b/pkgs/by-name/ga/gancio/plugin-telegram-bridge/default.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Telegram bridge for Gancio, republishes content to Telegram channels or groups"; homepage = "https://framagit.org/bcn.convocala/gancio-plugin-telegram-bridge"; - license = lib.licenses.agpl3Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ jbgi ]; + license = licenses.agpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ jbgi ]; }; } diff --git a/pkgs/by-name/ga/ganv/package.nix b/pkgs/by-name/ga/ganv/package.nix index 4c477421a7fd5b..57f4b72e14b177 100644 --- a/pkgs/by-name/ga/ganv/package.nix +++ b/pkgs/by-name/ga/ganv/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation { # libintl detection does not work even if provided mesonAutoFeatures = "disabled"; - meta = { + meta = with lib; { description = "Interactive Gtk canvas widget for graph-based interfaces"; mainProgram = "ganv_bench"; homepage = "http://drobilla.net"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ t4ccer ]; - platforms = lib.platforms.linux; + license = licenses.gpl3; + maintainers = with maintainers; [ t4ccer ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ga/gappa/package.nix b/pkgs/by-name/ga/gappa/package.nix index b13011605e507b..4d451e29884ed2 100644 --- a/pkgs/by-name/ga/gappa/package.nix +++ b/pkgs/by-name/ga/gappa/package.nix @@ -25,15 +25,15 @@ stdenv.mkDerivation rec { buildPhase = "./remake"; installPhase = "./remake install"; - meta = { + meta = with lib; { homepage = "http://gappa.gforge.inria.fr/"; description = "Verifying and formally proving properties on numerical programs dealing with floating-point or fixed-point arithmetic"; mainProgram = "gappa"; - license = with lib.licenses; [ + license = with licenses; [ cecill20 gpl2 ]; - maintainers = with lib.maintainers; [ vbgl ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ vbgl ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ga/garble/package.nix b/pkgs/by-name/ga/garble/package.nix index 4a1c2e93fced84..e3281aa3bc000c 100644 --- a/pkgs/by-name/ga/garble/package.nix +++ b/pkgs/by-name/ga/garble/package.nix @@ -64,14 +64,14 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Obfuscate Go code by wrapping the Go toolchain"; homepage = "https://github.com/burrowers/garble/"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ davhau bot-wxt1221 ]; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "garble"; }; } diff --git a/pkgs/by-name/ga/gate/package.nix b/pkgs/by-name/ga/gate/package.nix index 10379d08b15a9a..0f37ea55a24091 100644 --- a/pkgs/by-name/ga/gate/package.nix +++ b/pkgs/by-name/ga/gate/package.nix @@ -25,7 +25,7 @@ buildGoModule { "-w" ]; - meta = { + meta = with lib; { description = "High-Performance, Low-Memory, Lightweight, Extensible Minecraft Reverse Proxy"; longDescription = '' Gate is an extensible, high performant & paralleled Minecraft proxy server @@ -33,8 +33,8 @@ buildGoModule { and ready for the cloud! ''; homepage = "https://github.com/minekube/gate"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ XBagon ]; + license = licenses.asl20; + maintainers = with maintainers; [ XBagon ]; mainProgram = "gate"; }; } diff --git a/pkgs/by-name/ga/gav/package.nix b/pkgs/by-name/ga/gav/package.nix index 00793115b78644..f00b98f0bb7374 100644 --- a/pkgs/by-name/ga/gav/package.nix +++ b/pkgs/by-name/ga/gav/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { SDL_net ]; - meta = { + meta = with lib; { description = "Remake of AV Arcade Volleyball"; mainProgram = "gav"; homepage = "https://gav.sourceforge.net/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/gb/gbsplay/package.nix b/pkgs/by-name/gb/gbsplay/package.nix index 64df774af5c22e..b6ab9a3778c835 100644 --- a/pkgs/by-name/gb/gbsplay/package.nix +++ b/pkgs/by-name/gb/gbsplay/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation (finalAttrs: { installShellCompletion --bash --name gbsplay contrib/gbsplay.bashcompletion ''; - meta = { + meta = with lib; { description = "Gameboy sound player"; - license = lib.licenses.gpl1Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.gpl1Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ sigmanificient ]; mainProgram = "gbsplay"; }; }) diff --git a/pkgs/by-name/gc/gcal/package.nix b/pkgs/by-name/gc/gcal/package.nix index 808f513c72eb25..9f88170ec11ba8 100644 --- a/pkgs/by-name/gc/gcal/package.nix +++ b/pkgs/by-name/gc/gcal/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { buildInputs = [ ncurses ] ++ lib.optional stdenv.hostPlatform.isDarwin gettext; - meta = { + meta = with lib; { description = "Program for calculating and printing calendars"; longDescription = '' Gcal is the GNU version of the trusty old cal(1). Gcal is a @@ -38,9 +38,9 @@ stdenv.mkDerivation rec { also displays holiday lists for many countries around the globe. ''; homepage = "https://www.gnu.org/software/gcal/"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.romildo ]; + license = licenses.gpl3Plus; + platforms = platforms.unix; + maintainers = [ maintainers.romildo ]; mainProgram = "gcal"; }; } diff --git a/pkgs/by-name/gc/gcalcli/package.nix b/pkgs/by-name/gc/gcalcli/package.nix index a69fe904a72e9a..1698d385d1d979 100644 --- a/pkgs/by-name/gc/gcalcli/package.nix +++ b/pkgs/by-name/gc/gcalcli/package.nix @@ -47,11 +47,11 @@ python3Packages.buildPythonApplication rec { nativeCheckInputs = with python3Packages; [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "CLI for Google Calendar"; mainProgram = "gcalcli"; homepage = "https://github.com/insanum/gcalcli"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nocoolnametom ]; + license = licenses.mit; + maintainers = with maintainers; [ nocoolnametom ]; }; } diff --git a/pkgs/by-name/gd/gdlauncher-carbon/package.nix b/pkgs/by-name/gd/gdlauncher-carbon/package.nix index b76ff180ac76d1..d4de912a18cab5 100644 --- a/pkgs/by-name/gd/gdlauncher-carbon/package.nix +++ b/pkgs/by-name/gd/gdlauncher-carbon/package.nix @@ -121,15 +121,15 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = { + meta = with lib; { description = "Simple, yet powerful Minecraft custom launcher with a strong focus on the user experience"; homepage = "https://gdlauncher.com/"; - license = lib.licenses.bsl11; - maintainers = with lib.maintainers; [ + license = licenses.bsl11; + maintainers = with maintainers; [ huantian TsubakiDev ]; - platforms = lib.platforms.linux; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + platforms = platforms.linux; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/ge/geesefs/package.nix b/pkgs/by-name/ge/geesefs/package.nix index 71d303d9471965..5808cac2df9f9f 100644 --- a/pkgs/by-name/ge/geesefs/package.nix +++ b/pkgs/by-name/ge/geesefs/package.nix @@ -24,12 +24,12 @@ buildGoModule { subPackages = [ "." ]; - meta = { + meta = with lib; { homepage = "https://github.com/yandex-cloud/geesefs"; description = "Finally, a good FUSE FS implementation over S3"; - license = [ lib.licenses.mit ]; - maintainers = [ lib.maintainers.flokli ]; - platforms = lib.platforms.unix; + license = [ licenses.mit ]; + maintainers = [ maintainers.flokli ]; + platforms = platforms.unix; mainProgram = "geesefs"; }; } diff --git a/pkgs/by-name/ge/geis/package.nix b/pkgs/by-name/ge/geis/package.nix index 8446cb446a179f..6c1c04f2d96fc2 100644 --- a/pkgs/by-name/ge/geis/package.nix +++ b/pkgs/by-name/ge/geis/package.nix @@ -79,11 +79,11 @@ stdenv.mkDerivation (finalAttrs: { versionCheck = true; }; - meta = { + meta = with lib; { description = "Library for input gesture recognition"; homepage = "https://launchpad.net/geis"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; + license = licenses.gpl2; + platforms = platforms.linux; pkgConfigModules = [ "libgeis" ]; }; }) diff --git a/pkgs/by-name/ge/geist-font/package.nix b/pkgs/by-name/ge/geist-font/package.nix index 787974748772a7..fd30f475bfa341 100644 --- a/pkgs/by-name/ge/geist-font/package.nix +++ b/pkgs/by-name/ge/geist-font/package.nix @@ -33,12 +33,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Font family created by Vercel in collaboration with Basement Studio"; homepage = "https://vercel.com/font"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ x0ba ]; - platforms = lib.platforms.all; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = licenses.ofl; + maintainers = with maintainers; [ x0ba ]; + platforms = platforms.all; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; }; } diff --git a/pkgs/by-name/ge/gema/package.nix b/pkgs/by-name/ge/gema/package.nix index 6966e27731c7f2..63c6e6a91660a8 100644 --- a/pkgs/by-name/ge/gema/package.nix +++ b/pkgs/by-name/ge/gema/package.nix @@ -25,13 +25,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "General purpose text processing utility based on the concept of pattern matching"; longDescription = "Reads an input file and copies it to an output file transforming the data as specified by the patterns defined by the user."; homepage = "https://gema.sourceforge.net/"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "gema"; - maintainers = with lib.maintainers; [ quag ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ quag ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ge/gendef/package.nix b/pkgs/by-name/ge/gendef/package.nix index 93144d850708d0..e6cef7604891f4 100644 --- a/pkgs/by-name/ge/gendef/package.nix +++ b/pkgs/by-name/ge/gendef/package.nix @@ -16,12 +16,12 @@ stdenv.mkDerivation (finalAttrs: { sourceRoot = "${finalAttrs.src.name}/mingw-w64-tools/gendef"; - meta = { + meta = with lib; { description = "Tool which generate def files from DLLs"; mainProgram = "gendef"; homepage = "https://sourceforge.net/p/mingw-w64/wiki2/gendef/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ hughobrien ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ hughobrien ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ge/genemichaels/package.nix b/pkgs/by-name/ge/genemichaels/package.nix index 0decad7a3c83c7..44b133a81646dd 100644 --- a/pkgs/by-name/ge/genemichaels/package.nix +++ b/pkgs/by-name/ge/genemichaels/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { # example, between versions 0.5.8 and 0.5.12, there was a failing test in one # of the other workspace members that genemichaels depends on. - meta = { + meta = with lib; { description = "Even formats macros"; homepage = "https://github.com/andrewbaxter/genemichaels"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ djacu ]; + license = licenses.isc; + maintainers = with maintainers; [ djacu ]; mainProgram = "genemichaels"; }; } diff --git a/pkgs/by-name/ge/genesys/package.nix b/pkgs/by-name/ge/genesys/package.nix index 117b986c4f7543..73bac37bb077e6 100644 --- a/pkgs/by-name/ge/genesys/package.nix +++ b/pkgs/by-name/ge/genesys/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Simple family tree generator that scales"; homepage = "https://github.com/mrlem/genesys"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ rogarb ]; - platforms = lib.platforms.all; + license = licenses.gpl3; + maintainers = with maintainers; [ rogarb ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ge/genmap/package.nix b/pkgs/by-name/ge/genmap/package.nix index 10b4a96589b76e..a97ea4092a2eeb 100644 --- a/pkgs/by-name/ge/genmap/package.nix +++ b/pkgs/by-name/ge/genmap/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { echo > benchmarks/CMakeLists.txt ''; - meta = { + meta = with lib; { description = "Ultra-fast computation of genome mappability"; mainProgram = "genmap"; - license = lib.licenses.bsd3; + license = licenses.bsd3; homepage = "https://github.com/cpockrandt/genmap"; - maintainers = with lib.maintainers; [ jbedo ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ jbedo ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ge/geoipjava/package.nix b/pkgs/by-name/ge/geoipjava/package.nix index 63759827a4f559..4269f50b3cf175 100644 --- a/pkgs/by-name/ge/geoipjava/package.nix +++ b/pkgs/by-name/ge/geoipjava/package.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation rec { mkdir -p $out/share/java cp maxmindgeoip.jar $out/share/java ''; - meta = { + meta = with lib; { description = "GeoIP Java API"; - license = lib.licenses.lgpl21Plus; - maintainers = [ lib.maintainers.sander ]; - platforms = lib.platforms.unix; + license = licenses.lgpl21Plus; + maintainers = [ maintainers.sander ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ge/geolite-legacy/package.nix b/pkgs/by-name/ge/geolite-legacy/package.nix index 6cbf620388d979..b8f746dedfefa4 100644 --- a/pkgs/by-name/ge/geolite-legacy/package.nix +++ b/pkgs/by-name/ge/geolite-legacy/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { cp ${extra}/usr/share/GeoIP/*.dat $out/share/GeoIP ''; - meta = { + meta = with lib; { description = "GeoLite Legacy IP geolocation databases"; homepage = "https://mailfud.org/geoip-legacy/"; - license = lib.licenses.cc-by-sa-40; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ fpletz ]; + license = licenses.cc-by-sa-40; + platforms = platforms.all; + maintainers = with maintainers; [ fpletz ]; }; } diff --git a/pkgs/by-name/ge/geopard/package.nix b/pkgs/by-name/ge/geopard/package.nix index a844858f50783e..d45655e08c5358 100644 --- a/pkgs/by-name/ge/geopard/package.nix +++ b/pkgs/by-name/ge/geopard/package.nix @@ -48,15 +48,15 @@ stdenv.mkDerivation (finalAttrs: { glib-networking ]; - meta = { + meta = with lib; { homepage = "https://github.com/ranfdev/Geopard"; description = "Colorful, adaptive gemini browser"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ jfvillablanca aleksana ]; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + platforms = platforms.linux; mainProgram = "geopard"; }; }) diff --git a/pkgs/by-name/ge/gepetto-viewer-corba/package.nix b/pkgs/by-name/ge/gepetto-viewer-corba/package.nix index 403edf307934e6..3034eba9994f18 100644 --- a/pkgs/by-name/ge/gepetto-viewer-corba/package.nix +++ b/pkgs/by-name/ge/gepetto-viewer-corba/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation (finalAttrs: { # Fontconfig error: No writable cache directories preBuild = "export XDG_CACHE_HOME=$(mktemp -d)"; - meta = { + meta = with lib; { homepage = "https://github.com/gepetto/gepetto-viewer-corba"; description = "CORBA client/server for gepetto-viewer."; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.nim65s ]; - platforms = lib.platforms.unix; + license = licenses.bsd3; + maintainers = [ maintainers.nim65s ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ge/germinal/package.nix b/pkgs/by-name/ge/germinal/package.nix index 83c0b977b08125..f117de48c138c1 100644 --- a/pkgs/by-name/ge/germinal/package.nix +++ b/pkgs/by-name/ge/germinal/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.test = nixosTests.terminal-emulators.germinal; - meta = { + meta = with lib; { description = "Minimal terminal emulator"; homepage = "https://github.com/Keruspe/Germinal"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "germinal"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ge/gersemi/package.nix b/pkgs/by-name/ge/gersemi/package.nix index f6dd7bceab47c7..8f69fc05d81868 100644 --- a/pkgs/by-name/ge/gersemi/package.nix +++ b/pkgs/by-name/ge/gersemi/package.nix @@ -22,11 +22,11 @@ python3Packages.buildPythonApplication rec { pyyaml ]; - meta = { + meta = with lib; { description = "Formatter to make your CMake code the real treasure"; homepage = "https://github.com/BlankSpruce/gersemi"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ xeals ]; + license = licenses.mpl20; + maintainers = with maintainers; [ xeals ]; mainProgram = "gersemi"; }; } diff --git a/pkgs/by-name/ge/get-graphql-schema/package.nix b/pkgs/by-name/ge/get-graphql-schema/package.nix index fe6b35e9bcad98..79b9c15d1b3faf 100644 --- a/pkgs/by-name/ge/get-graphql-schema/package.nix +++ b/pkgs/by-name/ge/get-graphql-schema/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation (finalAttrs: { nodejs ]; - meta = { + meta = with lib; { description = "Fetch and print the GraphQL schema from a GraphQL HTTP endpoint."; homepage = "https://github.com/prisma-labs/get-graphql-schema"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "get-graphql-schema"; - maintainers = with lib.maintainers; [ pyrox0 ]; + maintainers = with maintainers; [ pyrox0 ]; }; }) diff --git a/pkgs/by-name/gf/gfan/package.nix b/pkgs/by-name/gf/gfan/package.nix index a4b202e829daf5..237f5b6aff6c55 100644 --- a/pkgs/by-name/gf/gfan/package.nix +++ b/pkgs/by-name/gf/gfan/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { cddlib ]; - meta = { + meta = with lib; { description = "Software package for computing Gröbner fans and tropical varieties"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.unix; + license = licenses.gpl2; + maintainers = [ maintainers.raskin ]; + platforms = platforms.unix; homepage = "http://home.math.au.dk/jensen/software/gfan/gfan.html"; }; } diff --git a/pkgs/by-name/gf/gfie/package.nix b/pkgs/by-name/gf/gfie/package.nix index acd0a99a4de4ca..e2372f958312d3 100644 --- a/pkgs/by-name/gf/gfie/package.nix +++ b/pkgs/by-name/gf/gfie/package.nix @@ -39,13 +39,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Powerful open source image editor, especially suitable for creating icons, cursors, animations and icon libraries"; homepage = "http://greenfishsoftware.org/gfie.php"; - license = with lib.licenses; [ gpl3 ]; - maintainers = with lib.maintainers; [ pluiedev ]; + license = with licenses; [ gpl3 ]; + maintainers = with maintainers; [ pluiedev ]; platforms = [ "x86_64-linux" ]; mainProgram = "gfie"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/gf/gforth/boot-forth.nix b/pkgs/by-name/gf/gforth/boot-forth.nix index 977e7ab5988cd9..cc6bc3f78be69a 100644 --- a/pkgs/by-name/gf/gforth/boot-forth.nix +++ b/pkgs/by-name/gf/gforth/boot-forth.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation { configureFlags = lib.optionals stdenv.hostPlatform.isDarwin [ "--build=x86_64-apple-darwin" ]; - meta = { + meta = with lib; { description = "Forth implementation of the GNU project (outdated version used to bootstrap)"; homepage = "https://www.gnu.org/software/gforth/"; - license = lib.licenses.gpl3; - platforms = lib.platforms.all; + license = licenses.gpl3; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/gf/gfxtablet/package.nix b/pkgs/by-name/gf/gfxtablet/package.nix index d569803a5b8ef4..52e463257ace78 100644 --- a/pkgs/by-name/gf/gfxtablet/package.nix +++ b/pkgs/by-name/gf/gfxtablet/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { cp ../*.md "$out/share/doc/gfxtablet/" ''; - meta = { + meta = with lib; { description = "Uinput driver for Android GfxTablet tablet-as-input-device app"; mainProgram = "networktablet"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/gh/gh-contribs/package.nix b/pkgs/by-name/gh/gh-contribs/package.nix index 46d11241d4f90f..d0ad1a418c071a 100644 --- a/pkgs/by-name/gh/gh-contribs/package.nix +++ b/pkgs/by-name/gh/gh-contribs/package.nix @@ -38,12 +38,12 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://github.com/MintArchit/gh-contribs"; description = "GitHub Contribution Graph CLI"; - maintainers = [ lib.maintainers.vinnymeller ]; - license = lib.licenses.unlicense; + maintainers = [ maintainers.vinnymeller ]; + license = licenses.unlicense; mainProgram = "gh-contribs"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/gh/gh-eco/package.nix b/pkgs/by-name/gh/gh-eco/package.nix index cbe12671bf6a94..5df06eb6848ca7 100644 --- a/pkgs/by-name/gh/gh-eco/package.nix +++ b/pkgs/by-name/gh/gh-eco/package.nix @@ -25,11 +25,11 @@ buildGoModule { "-X main.Version=${version}" ]; - meta = { + meta = with lib; { homepage = "https://github.com/coloradocolby/gh-eco"; description = "gh extension to explore the ecosystem"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ helium ]; + license = licenses.mit; + maintainers = with maintainers; [ helium ]; mainProgram = "gh-eco"; }; } diff --git a/pkgs/by-name/gh/ghi/package.nix b/pkgs/by-name/gh/ghi/package.nix index 5fd5c6b860c864..37d7aaf1f5bfcb 100644 --- a/pkgs/by-name/gh/ghi/package.nix +++ b/pkgs/by-name/gh/ghi/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation (finalAttrs: { cp ghi $out/bin ''; - meta = { + meta = with lib; { description = "GitHub Issues on the command line"; mainProgram = "ghi"; homepage = "https://github.com/drazisil/ghi"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; }; }) diff --git a/pkgs/by-name/gh/ghq/package.nix b/pkgs/by-name/gh/ghq/package.nix index a096a25db3e7ac..df6d1cecbc916e 100644 --- a/pkgs/by-name/gh/ghq/package.nix +++ b/pkgs/by-name/gh/ghq/package.nix @@ -38,11 +38,11 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Remote repository management made easy"; homepage = "https://github.com/x-motemen/ghq"; - maintainers = with lib.maintainers; [ sigma ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ sigma ]; + license = licenses.mit; mainProgram = "ghq"; }; } diff --git a/pkgs/by-name/gh/ghstack/package.nix b/pkgs/by-name/gh/ghstack/package.nix index e10fb5106c9f30..bc741d8a021e6a 100644 --- a/pkgs/by-name/gh/ghstack/package.nix +++ b/pkgs/by-name/gh/ghstack/package.nix @@ -29,11 +29,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "ghstack" ]; - meta = { + meta = with lib; { description = "Submit stacked diffs to GitHub on the command line"; homepage = "https://github.com/ezyang/ghstack"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ munksgaard ]; + license = licenses.mit; + maintainers = with maintainers; [ munksgaard ]; mainProgram = "ghstack"; }; } diff --git a/pkgs/by-name/gi/giada/package.nix b/pkgs/by-name/gi/giada/package.nix index fc875f7685dc3b..f53e1e32c03549 100644 --- a/pkgs/by-name/gi/giada/package.nix +++ b/pkgs/by-name/gi/giada/package.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation (finalAttrs: { fontconfig ]; - meta = { + meta = with lib; { description = "Free, minimal, hardcore audio tool for DJs, live performers and electronic musicians"; mainProgram = "giada"; homepage = "https://giadamusic.com/"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ kashw2 ]; - platforms = lib.platforms.all; + license = licenses.gpl3; + maintainers = with maintainers; [ kashw2 ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/gi/gibo/package.nix b/pkgs/by-name/gi/gibo/package.nix index 9663311e681212..0e596ed25167b9 100644 --- a/pkgs/by-name/gi/gibo/package.nix +++ b/pkgs/by-name/gi/gibo/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { -i "$out/share/bash-completion/completions/gibo-completion.bash" ''; - meta = { + meta = with lib; { homepage = "https://github.com/simonwhitaker/gibo"; - license = lib.licenses.publicDomain; + license = licenses.publicDomain; description = "Shell script for easily accessing gitignore boilerplates"; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "gibo"; }; } diff --git a/pkgs/by-name/gi/gifsicle/package.nix b/pkgs/by-name/gi/gifsicle/package.nix index 60f352844e5ec3..19f21979fb8881 100644 --- a/pkgs/by-name/gi/gifsicle/package.nix +++ b/pkgs/by-name/gi/gifsicle/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { ./src/gifsicle --info logo.gif ''; - meta = { + meta = with lib; { description = "Command-line tool for creating, editing, and getting information about GIF images and animations"; homepage = "https://www.lcdf.org/gifsicle/"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ zimbatm ]; + license = licenses.gpl2Only; + platforms = platforms.all; + maintainers = with maintainers; [ zimbatm ]; }; } diff --git a/pkgs/by-name/gi/gildas/package.nix b/pkgs/by-name/gi/gildas/package.nix index 6370487384b4ce..9d46d08f3450b6 100644 --- a/pkgs/by-name/gi/gildas/package.nix +++ b/pkgs/by-name/gi/gildas/package.nix @@ -97,7 +97,7 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with lib; { description = "Radioastronomy data analysis software"; longDescription = '' GILDAS is a collection of state-of-the-art software @@ -110,12 +110,12 @@ stdenv.mkDerivation rec { few parts in C/C++ (mainly keyboard interaction, plotting, widgets).''; homepage = "http://www.iram.fr/IRAMFR/GILDAS/gildas.html"; - license = lib.licenses.free; + license = licenses.free; maintainers = [ - lib.maintainers.bzizou - lib.maintainers.smaret + maintainers.bzizou + maintainers.smaret ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/gi/git-annex-utils/package.nix b/pkgs/by-name/gi/git-annex-utils/package.nix index bf9fd8d708983e..151bbefb34241b 100644 --- a/pkgs/by-name/gi/git-annex-utils/package.nix +++ b/pkgs/by-name/gi/git-annex-utils/package.nix @@ -26,16 +26,16 @@ stdenv.mkDerivation rec { ]; preConfigure = "./autogen.sh"; - meta = { + meta = with lib; { description = "gadu, a du like utility for annexed files"; longDescription = '' This is a set of utilities that are handy to use with git-annex repositories. Currently there is only one utility gadu, a du like utility for annexed files. ''; homepage = "https://git-annex.mysteryvortex.com/git-annex-utils.html"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ woffs ]; + license = licenses.gpl3; + maintainers = with maintainers; [ woffs ]; mainProgram = "gadu"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/gi/git-backup-go/package.nix b/pkgs/by-name/gi/git-backup-go/package.nix index 41fa743ccc5dc3..57b79015569ab9 100644 --- a/pkgs/by-name/gi/git-backup-go/package.nix +++ b/pkgs/by-name/gi/git-backup-go/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { command = "git-backup -version"; }; - meta = { + meta = with lib; { description = "Backup all your GitHub & GitLab repositories"; homepage = "https://github.com/ChappIO/git-backup"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "git-backup"; - maintainers = with lib.maintainers; [ aleksana ]; + maintainers = with maintainers; [ aleksana ]; }; } diff --git a/pkgs/by-name/gi/git-big-picture/package.nix b/pkgs/by-name/gi/git-big-picture/package.nix index 43d127a2aae7d0..31db0b99025c95 100644 --- a/pkgs/by-name/gi/git-big-picture/package.nix +++ b/pkgs/by-name/gi/git-big-picture/package.nix @@ -28,11 +28,11 @@ python3Packages.buildPythonApplication rec { } ''; - meta = { + meta = with lib; { description = "Tool for visualization of Git repositories"; homepage = "https://github.com/git-big-picture/git-big-picture"; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.nthorne ]; + license = licenses.gpl3Plus; + maintainers = [ maintainers.nthorne ]; mainProgram = "git-big-picture"; }; } diff --git a/pkgs/by-name/gi/git-branchstack/package.nix b/pkgs/by-name/gi/git-branchstack/package.nix index e0cdfaa884df4b..116f3f2bd1c280 100644 --- a/pkgs/by-name/gi/git-branchstack/package.nix +++ b/pkgs/by-name/gi/git-branchstack/package.nix @@ -19,11 +19,11 @@ let git-revise ]; - meta = { + meta = with lib; { homepage = "https://github.com/krobelus/git-branchstack"; description = "Efficiently manage Git branches without leaving your local branch"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = licenses.mit; + maintainers = with maintainers; [ AndersonTorres ]; }; }; in diff --git a/pkgs/by-name/gi/git-fast-export/package.nix b/pkgs/by-name/gi/git-fast-export/package.nix index f94bf3a3e580d4..cbdcf3808177ed 100644 --- a/pkgs/by-name/gi/git-fast-export/package.nix +++ b/pkgs/by-name/gi/git-fast-export/package.nix @@ -78,11 +78,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Import mercurial into git"; homepage = "https://repo.or.cz/w/fast-export.git"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.koral ]; - platforms = lib.platforms.unix; + license = licenses.gpl2; + maintainers = [ maintainers.koral ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/gi/git-fixup/package.nix b/pkgs/by-name/gi/git-fixup/package.nix index 467870e33f3214..8ebd830ec244fd 100644 --- a/pkgs/by-name/gi/git-fixup/package.nix +++ b/pkgs/by-name/gi/git-fixup/package.nix @@ -50,12 +50,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Fighting the copy-paste element of your rebase workflow"; homepage = "https://github.com/keis/git-fixup"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ michaeladler ]; - platforms = lib.platforms.all; + license = licenses.isc; + maintainers = with maintainers; [ michaeladler ]; + platforms = platforms.all; mainProgram = "git-fixup"; }; }) diff --git a/pkgs/by-name/gi/git-identity/package.nix b/pkgs/by-name/gi/git-identity/package.nix index 4d159ee4d9201a..457481922484b8 100644 --- a/pkgs/by-name/gi/git-identity/package.nix +++ b/pkgs/by-name/gi/git-identity/package.nix @@ -41,12 +41,12 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Manage your identity in Git"; mainProgram = "git-identity"; homepage = "https://github.com/madx/git-identity"; - license = lib.licenses.wtfpl; - maintainers = with lib.maintainers; [ mynacol ]; - platforms = lib.platforms.all; + license = licenses.wtfpl; + maintainers = with maintainers; [ mynacol ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/gi/git-igitt/package.nix b/pkgs/by-name/gi/git-igitt/package.nix index 65ee35a5e763fc..33a61564f2e97b 100644 --- a/pkgs/by-name/gi/git-igitt/package.nix +++ b/pkgs/by-name/gi/git-igitt/package.nix @@ -41,12 +41,12 @@ rustPlatform.buildRustPackage { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Interactive, cross-platform Git terminal application with clear git graphs arranged for your branching model"; homepage = "https://github.com/mlange-42/git-igitt"; - license = lib.licenses.mit; - sourceProvenance = [ lib.sourceTypes.fromSource ]; - maintainers = [ lib.maintainers.pinage404 ]; + license = licenses.mit; + sourceProvenance = [ sourceTypes.fromSource ]; + maintainers = [ maintainers.pinage404 ]; mainProgram = "git-igitt"; }; } diff --git a/pkgs/by-name/gi/git-lfs-transfer/package.nix b/pkgs/by-name/gi/git-lfs-transfer/package.nix index 576a2b81f45952..3259d27ce31d19 100644 --- a/pkgs/by-name/gi/git-lfs-transfer/package.nix +++ b/pkgs/by-name/gi/git-lfs-transfer/package.nix @@ -16,11 +16,11 @@ buildGoModule { vendorHash = "sha256-1cGlhLdnU6yTqzcB3J1cq3gawncbtdgkb3LFh2ZmXbM="; - meta = { + meta = with lib; { description = "Server-side implementation of the Git LFS pure-SSH protocol"; mainProgram = "git-lfs-transfer"; homepage = "https://github.com/charmbracelet/git-lfs-transfer"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ chn ]; + license = licenses.mit; + maintainers = with maintainers; [ chn ]; }; } diff --git a/pkgs/by-name/gi/git-my/package.nix b/pkgs/by-name/gi/git-my/package.nix index 7ad13dda2f6ef6..d16db7468aed9d 100644 --- a/pkgs/by-name/gi/git-my/package.nix +++ b/pkgs/by-name/gi/git-my/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "List remote branches if they're merged and/or available locally"; homepage = "https://github.com/davidosomething/git-my"; - license = lib.licenses.free; + license = licenses.free; maintainers = [ ]; - platforms = lib.platforms.all; + platforms = platforms.all; mainProgram = "git-my"; }; }) diff --git a/pkgs/by-name/gi/git-pr/package.nix b/pkgs/by-name/gi/git-pr/package.nix index eb7b97817832e9..253148af145b06 100644 --- a/pkgs/by-name/gi/git-pr/package.nix +++ b/pkgs/by-name/gi/git-pr/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { mv $out/bin/ssh $out/bin/git-ssh ''; - meta = { + meta = with lib; { homepage = "https://pr.pico.sh"; description = "Simple git collaboration tool"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.bsd3; + maintainers = with maintainers; [ sigmanificient ]; mainProgram = "git-pr"; }; } diff --git a/pkgs/by-name/gi/git-run/package.nix b/pkgs/by-name/gi/git-run/package.nix index a50242ccef3a20..60399897261282 100644 --- a/pkgs/by-name/gi/git-run/package.nix +++ b/pkgs/by-name/gi/git-run/package.nix @@ -20,11 +20,11 @@ buildNpmPackage rec { makeCacheWritable = true; dontBuild = true; - meta = { + meta = with lib; { description = "Multiple git repository management tool"; homepage = "https://mixu.net/gr/"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "gr"; - maintainers = with lib.maintainers; [ pyrox0 ]; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/by-name/gi/git-secret/package.nix b/pkgs/by-name/gi/git-secret/package.nix index de44cf13d0158a..0b321a51421d46 100644 --- a/pkgs/by-name/gi/git-secret/package.nix +++ b/pkgs/by-name/gi/git-secret/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Bash-tool to store your private data inside a git repository"; homepage = "https://sobolevn.me/git-secret/"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.lo1tuma ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = [ maintainers.lo1tuma ]; + platforms = platforms.all; mainProgram = "git-secret"; }; } diff --git a/pkgs/by-name/gi/git-sim/package.nix b/pkgs/by-name/gi/git-sim/package.nix index 2cae12371b6364..0340abe90014c1 100644 --- a/pkgs/by-name/gi/git-sim/package.nix +++ b/pkgs/by-name/gi/git-sim/package.nix @@ -75,10 +75,10 @@ buildPythonApplication { doCheck = false; - meta = { + meta = with lib; { description = "Visually simulate Git operations in your own repos with a single terminal command"; homepage = "https://initialcommit.com/tools/git-sim"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ mathiassven ]; + license = licenses.gpl2Only; + maintainers = with maintainers; [ mathiassven ]; }; } diff --git a/pkgs/by-name/gi/git-worktree-switcher/package.nix b/pkgs/by-name/gi/git-worktree-switcher/package.nix index c3c2df5fa2f8c1..6848de9d00b3ab 100644 --- a/pkgs/by-name/gi/git-worktree-switcher/package.nix +++ b/pkgs/by-name/gi/git-worktree-switcher/package.nix @@ -49,13 +49,13 @@ stdenv.mkDerivation (finalAttrs: { installShellCompletion --fish completions/wt.fish ''; - meta = { + meta = with lib; { homepage = "https://github.com/mateusauler/git-worktree-switcher"; description = "Switch between git worktrees with speed."; - license = lib.licenses.mit; - platforms = lib.platforms.all; + license = licenses.mit; + platforms = platforms.all; mainProgram = "wt"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ jiriks74 mateusauler ]; diff --git a/pkgs/by-name/gi/gitaly/git.nix b/pkgs/by-name/gi/gitaly/git.nix index bfeae1c0a0de82..4b4cf15360b54f 100644 --- a/pkgs/by-name/gi/gitaly/git.nix +++ b/pkgs/by-name/gi/gitaly/git.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { GIT_PREFIX = placeholder "out"; dontInstall = true; - meta = { + meta = with lib; { homepage = "https://git-scm.com/"; description = "Distributed version control system - with Gitaly patches"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.all; - maintainers = lib.teams.gitlab.members; + license = licenses.gpl2Only; + platforms = platforms.all; + maintainers = teams.gitlab.members; }; } diff --git a/pkgs/by-name/gi/gitfs/package.nix b/pkgs/by-name/gi/gitfs/package.nix index 3b9cf7cfe17b59..d5abd1c995e2c8 100644 --- a/pkgs/by-name/gi/gitfs/package.nix +++ b/pkgs/by-name/gi/gitfs/package.nix @@ -41,7 +41,7 @@ python3Packages.buildPythonApplication rec { checkPhase = "py.test"; doCheck = false; - meta = { + meta = with lib; { description = "FUSE filesystem that fully integrates with git"; longDescription = '' A git remote repository's branch can be mounted locally, @@ -49,9 +49,9 @@ python3Packages.buildPythonApplication rec { automatically committed to the remote. ''; homepage = "https://github.com/PressLabs/gitfs"; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.robbinch ]; + license = licenses.asl20; + platforms = platforms.unix; + maintainers = [ maintainers.robbinch ]; mainProgram = "gitfs"; }; } diff --git a/pkgs/by-name/gi/github-desktop/package.nix b/pkgs/by-name/gi/github-desktop/package.nix index 72b5c9c26638bd..536b237e42637a 100644 --- a/pkgs/by-name/gi/github-desktop/package.nix +++ b/pkgs/by-name/gi/github-desktop/package.nix @@ -95,13 +95,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { (lib.getLib systemd) ]; - meta = { + meta = with lib; { description = "GUI for managing Git and GitHub"; homepage = "https://desktop.github.com/"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "github-desktop"; - maintainers = with lib.maintainers; [ dan4ik605743 ]; - platforms = lib.platforms.linux; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ dan4ik605743 ]; + platforms = platforms.linux; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/gi/github-markdown-toc-go/package.nix b/pkgs/by-name/gi/github-markdown-toc-go/package.nix index a80ac4af93b6be..9e4a9a648af791 100644 --- a/pkgs/by-name/gi/github-markdown-toc-go/package.nix +++ b/pkgs/by-name/gi/github-markdown-toc-go/package.nix @@ -16,11 +16,11 @@ buildGoModule rec { vendorHash = "sha256-K5yb7bnW6eS5UESK9wgNEUwGjB63eJk6+B0jFFiFero="; - meta = { + meta = with lib; { homepage = "https://github.com/ekalinin/github-markdown-toc.go"; description = "Easy TOC creation for GitHub README.md (in go)"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dannixon ]; + license = licenses.mit; + maintainers = with maintainers; [ dannixon ]; mainProgram = "gh-md-toc"; }; } diff --git a/pkgs/by-name/gi/gitlab-clippy/package.nix b/pkgs/by-name/gi/gitlab-clippy/package.nix index 37aa54ff81eb37..9c338c64161ee2 100644 --- a/pkgs/by-name/gi/gitlab-clippy/package.nix +++ b/pkgs/by-name/gi/gitlab-clippy/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { "--skip cli::converts_warnings_from_pipe" ]; - meta = { + meta = with lib; { homepage = "https://gitlab.com/dlalic/gitlab-clippy"; description = "Convert clippy warnings into GitLab Code Quality report"; mainProgram = "gitlab-clippy"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ wucke13 ]; + license = licenses.mit; + maintainers = with maintainers; [ wucke13 ]; }; } diff --git a/pkgs/by-name/gi/gitlab-release-cli/package.nix b/pkgs/by-name/gi/gitlab-release-cli/package.nix index 7c96905353b004..3181b036d374b0 100644 --- a/pkgs/by-name/gi/gitlab-release-cli/package.nix +++ b/pkgs/by-name/gi/gitlab-release-cli/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-skip TestHTTPSCustomCA" ]; - meta = { + meta = with lib; { description = "Toolset to create, retrieve and update releases on GitLab"; homepage = "https://gitlab.com/gitlab-org/release-cli"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ kilimnik ]; + license = licenses.mit; + maintainers = with maintainers; [ kilimnik ]; mainProgram = "release-cli"; }; } diff --git a/pkgs/by-name/gi/gitmoji-cli/package.nix b/pkgs/by-name/gi/gitmoji-cli/package.nix index d464640123310f..379f93d29d22ed 100644 --- a/pkgs/by-name/gi/gitmoji-cli/package.nix +++ b/pkgs/by-name/gi/gitmoji-cli/package.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { description = "Gitmoji client for using emojis on commit messages"; homepage = "https://github.com/carloscuesta/gitmoji-cli"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "gitmoji"; - maintainers = with lib.maintainers; [ nequissimus ]; + maintainers = with maintainers; [ nequissimus ]; }; }) diff --git a/pkgs/by-name/gi/gitopper/package.nix b/pkgs/by-name/gi/gitopper/package.nix index e1b5d8b9674f26..b6d3e1a2b9b5b0 100644 --- a/pkgs/by-name/gi/gitopper/package.nix +++ b/pkgs/by-name/gi/gitopper/package.nix @@ -43,12 +43,12 @@ buildGoModule { --suffix PATH : ${lib.makeBinPath [ git ]} ''; - meta = { + meta = with lib; { description = "Gitops for non-Kubernetes folks"; homepage = "https://github.com/miekg/gitopper/"; - license = lib.licenses.asl20; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ luftmensch-luftmensch ]; + license = licenses.asl20; + platforms = platforms.linux; + maintainers = with maintainers; [ luftmensch-luftmensch ]; mainProgram = "gitopper"; }; } diff --git a/pkgs/by-name/gi/gitprompt-rs/package.nix b/pkgs/by-name/gi/gitprompt-rs/package.nix index 03443767451d55..9995dcf988dd79 100644 --- a/pkgs/by-name/gi/gitprompt-rs/package.nix +++ b/pkgs/by-name/gi/gitprompt-rs/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage { --replace 'Command::new("git")' 'Command::new("${git}/bin/git")' ''; - meta = { + meta = with lib; { description = "Simple Git prompt"; homepage = "https://github.com/9ary/gitprompt-rs"; - license = lib.licenses.bsd0; - maintainers = with lib.maintainers; [ + license = licenses.bsd0; + maintainers = with maintainers; [ isabelroses cafkafk ]; diff --git a/pkgs/by-name/gi/gixy/package.nix b/pkgs/by-name/gi/gixy/package.nix index 5d1bfb65d4c2a7..f9fdcf69e56204 100644 --- a/pkgs/by-name/gi/gixy/package.nix +++ b/pkgs/by-name/gi/gixy/package.nix @@ -63,7 +63,7 @@ python.pkgs.buildPythonApplication rec { inherit (nginx.passthru) tests; }; - meta = { + meta = with lib; { description = "Nginx configuration static analyzer"; mainProgram = "gixy"; longDescription = '' @@ -71,9 +71,9 @@ python.pkgs.buildPythonApplication rec { The main goal of Gixy is to prevent security misconfiguration and automate flaw detection. ''; homepage = "https://github.com/yandex/gixy"; - sourceProvenance = [ lib.sourceTypes.fromSource ]; - license = lib.licenses.mpl20; - maintainers = [ lib.maintainers.willibutz ]; - platforms = lib.platforms.unix; + sourceProvenance = [ sourceTypes.fromSource ]; + license = licenses.mpl20; + maintainers = [ maintainers.willibutz ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/gl/glamoroustoolkit/package.nix b/pkgs/by-name/gl/glamoroustoolkit/package.nix index 345ebe83d10e24..b78d441ec0f7b5 100644 --- a/pkgs/by-name/gl/glamoroustoolkit/package.nix +++ b/pkgs/by-name/gl/glamoroustoolkit/package.nix @@ -118,12 +118,12 @@ stdenv.mkDerivation (finalAttrs: { ) ''; - meta = { + meta = with lib; { homepage = "https://gtoolkit.com"; description = "GlamorousToolkit Development Environment"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.akgrant43 ]; + license = licenses.mit; + maintainers = [ maintainers.akgrant43 ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/gl/gle/package.nix b/pkgs/by-name/gl/gle/package.nix index b1b064fdb17c77..0425b00f5cef54 100644 --- a/pkgs/by-name/gl/gle/package.nix +++ b/pkgs/by-name/gl/gle/package.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation rec { sha256 = "sha256-yvCu0EOwxOMN6upeHX+C2sIz1YVjjB/320g+Mf24S6g="; }; - meta = { + meta = with lib; { description = "Tubing and extrusion library"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/gl/glfw3/package.nix b/pkgs/by-name/gl/glfw3/package.nix index fa740ddbaccf84..754630ad779383 100644 --- a/pkgs/by-name/gl/glfw3/package.nix +++ b/pkgs/by-name/gl/glfw3/package.nix @@ -96,15 +96,15 @@ stdenv.mkDerivation { strictDeps = true; __structuredAttrs = true; - meta = { + meta = with lib; { description = "Multi-platform library for creating OpenGL contexts and managing input, including keyboard, mouse, joystick and time"; homepage = "https://www.glfw.org/"; - license = lib.licenses.zlib; - maintainers = with lib.maintainers; [ + license = licenses.zlib; + maintainers = with maintainers; [ marcweber Scrumplex twey ]; - platforms = lib.platforms.unix ++ lib.platforms.windows; + platforms = platforms.unix ++ platforms.windows; }; } diff --git a/pkgs/by-name/gl/glock/package.nix b/pkgs/by-name/gl/glock/package.nix index b116db1966e40f..3572ad27c597b5 100644 --- a/pkgs/by-name/gl/glock/package.nix +++ b/pkgs/by-name/gl/glock/package.nix @@ -28,12 +28,12 @@ buildGoModule { checkFlags = [ "-skip=^TestSave$" ]; - meta = { + meta = with lib; { homepage = "https://github.com/robfig/glock"; description = "Command-line tool to lock Go dependencies to specific revisions"; mainProgram = "glock"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ luftmensch-luftmensch rushmorem ]; diff --git a/pkgs/by-name/gl/glom/package.nix b/pkgs/by-name/gl/glom/package.nix index 6e617032bedf4c..fc5e52da1441ba 100644 --- a/pkgs/by-name/gl/glom/package.nix +++ b/pkgs/by-name/gl/glom/package.nix @@ -148,18 +148,18 @@ stdenv.mkDerivation (finalAttrs: { ) ''; - meta = { + meta = with lib; { description = "Easy-to-use database designer and user interface"; - license = with lib.licenses; [ + license = with licenses; [ lgpl2 gpl2 ]; homepage = "https://gitlab.gnome.org/Archive/glom"; maintainers = - lib.teams.gnome.members - ++ (with lib.maintainers; [ + teams.gnome.members + ++ (with maintainers; [ bot-wxt1221 ]); - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/gl/glrnvim/package.nix b/pkgs/by-name/gl/glrnvim/package.nix index 44d73439fe3bda..73ad1254d8da26 100644 --- a/pkgs/by-name/gl/glrnvim/package.nix +++ b/pkgs/by-name/gl/glrnvim/package.nix @@ -32,11 +32,11 @@ rustPlatform.buildRustPackage rec { install -Dm644 glrnvim.svg $out/share/icons/hicolor/scalable/apps/glrnvim.svg ''; - meta = { + meta = with lib; { description = "Really fast & stable neovim GUI which could be accelerated by GPU"; homepage = "https://github.com/beeender/glrnvim"; mainProgram = "glrnvim"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ aacebedo ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ aacebedo ]; }; } diff --git a/pkgs/by-name/gl/glslls/package.nix b/pkgs/by-name/gl/glslls/package.nix index c23047cf027dfe..f28713761f61d8 100644 --- a/pkgs/by-name/gl/glslls/package.nix +++ b/pkgs/by-name/gl/glslls/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation (finalAttrs: { ninja ]; - meta = { + meta = with lib; { description = "Language server implementation for GLSL"; mainProgram = "glslls"; homepage = "https://github.com/svenstaro/glsl-language-server"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ declan ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ declan ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/gl/gltron/package.nix b/pkgs/by-name/gl/gltron/package.nix index 1ceebc33f76adb..51401007da8049 100644 --- a/pkgs/by-name/gl/gltron/package.nix +++ b/pkgs/by-name/gl/gltron/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation rec { strictDeps = true; enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "http://www.gltron.org/"; description = "Game based on the movie Tron"; mainProgram = "gltron"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/gm/gmad/package.nix b/pkgs/by-name/gm/gmad/package.nix index 3ea8e2ae99f514..1fbd78b81ca936 100644 --- a/pkgs/by-name/gm/gmad/package.nix +++ b/pkgs/by-name/gm/gmad/package.nix @@ -10,12 +10,12 @@ stdenv.mkDerivation rec { pname = "gmad"; version = "unstable-2020-02-24"; - meta = { + meta = with lib; { description = "Garry's Mod Addon Creator and Extractor"; homepage = "https://github.com/Facepunch/gmad"; - license = lib.licenses.unfree; - maintainers = [ lib.maintainers.abigailbuccaneer ]; - platforms = lib.platforms.all; + license = licenses.unfree; + maintainers = [ maintainers.abigailbuccaneer ]; + platforms = platforms.all; }; src = fetchFromGitHub { diff --git a/pkgs/by-name/gm/gmic/package.nix b/pkgs/by-name/gm/gmic/package.nix index 89f3e13b3919a9..8e7e55e7102eec 100644 --- a/pkgs/by-name/gm/gmic/package.nix +++ b/pkgs/by-name/gm/gmic/package.nix @@ -133,14 +133,14 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = { + meta = with lib; { homepage = "https://gmic.eu/"; description = "Open and full-featured framework for image processing"; mainProgram = "gmic"; - license = lib.licenses.cecill21; + license = licenses.cecill21; maintainers = [ - lib.maintainers.AndersonTorres + maintainers.AndersonTorres ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/gm/gmobile/package.nix b/pkgs/by-name/gm/gmobile/package.nix index da85a98db2444e..b9f21da8d39e0b 100644 --- a/pkgs/by-name/gm/gmobile/package.nix +++ b/pkgs/by-name/gm/gmobile/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation (finalAttrs: { libuev ]; - meta = { + meta = with lib; { description = "Functions useful in mobile related, glib based projects"; homepage = "https://gitlab.gnome.org/World/Phosh/gmobile"; - license = lib.licenses.lgpl21Plus; - maintainers = with lib.maintainers; [ donovanglover ]; - platforms = lib.platforms.linux; + license = licenses.lgpl21Plus; + maintainers = with maintainers; [ donovanglover ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/gm/gmrun/package.nix b/pkgs/by-name/gm/gmrun/package.nix index 2a6ecfbe8e07bf..50e06a96280b91 100644 --- a/pkgs/by-name/gm/gmrun/package.nix +++ b/pkgs/by-name/gm/gmrun/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation (finalAttrs: { gappsWrapperArgs+=(--set-default GDK_BACKEND x11) ''; - meta = { + meta = with lib; { description = "Gnome Completion-Run Utility"; longDescription = '' A simple program which provides a "run program" window, featuring a bash-like TAB completion. @@ -40,9 +40,9 @@ stdenv.mkDerivation (finalAttrs: { Running commands in a terminal with CTRL-Enter. URL handlers. ''; homepage = "https://github.com/wdlkmpx/gmrun"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + license = licenses.isc; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; mainProgram = "gmrun"; }; }) diff --git a/pkgs/by-name/gm/gmt/package.nix b/pkgs/by-name/gm/gmt/package.nix index b4d4f268fe150f..4dac281472f2a9 100644 --- a/pkgs/by-name/gm/gmt/package.nix +++ b/pkgs/by-name/gm/gmt/package.nix @@ -89,7 +89,7 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeFeature "BLAS_LIBRARY" "${lib.getLib blas}/lib/libblas.so") ]); - meta = { + meta = with lib; { homepage = "https://www.generic-mapping-tools.org"; description = "Tools for manipulating geographic and cartesian data sets"; longDescription = '' @@ -101,8 +101,8 @@ stdenv.mkDerivation (finalAttrs: { transformations and includes supporting data such as coastlines, rivers, and political boundaries and optionally country polygons. ''; - platforms = lib.platforms.unix; - license = lib.licenses.lgpl3Plus; - maintainers = with lib.maintainers; [ tviti ]; + platforms = platforms.unix; + license = licenses.lgpl3Plus; + maintainers = with maintainers; [ tviti ]; }; }) diff --git a/pkgs/by-name/gn/gnome-commander/package.nix b/pkgs/by-name/gn/gnome-commander/package.nix index 4de7e5f1e0515d..e16b0d53a543dd 100644 --- a/pkgs/by-name/gn/gnome-commander/package.nix +++ b/pkgs/by-name/gn/gnome-commander/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation (finalAttrs: { gtest ]; - meta = { + meta = with lib; { description = "Fast and powerful twin-panel file manager for the Linux desktop"; homepage = "https://gcmd.github.io"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "gnome-commander"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnome-feeds/package.nix b/pkgs/by-name/gn/gnome-feeds/package.nix index e502a17bdbed1f..ed23df21386a31 100644 --- a/pkgs/by-name/gn/gnome-feeds/package.nix +++ b/pkgs/by-name/gn/gnome-feeds/package.nix @@ -81,15 +81,15 @@ python3.pkgs.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = { + meta = with lib; { description = "RSS/Atom feed reader for GNOME"; mainProgram = "gfeeds"; homepage = "https://gitlab.gnome.org/World/gfeeds"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ pbogdan aleksana ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-pass-search-provider/package.nix b/pkgs/by-name/gn/gnome-pass-search-provider/package.nix index 69e06977c9c27c..53d72a54367995 100644 --- a/pkgs/by-name/gn/gnome-pass-search-provider/package.nix +++ b/pkgs/by-name/gn/gnome-pass-search-provider/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation (finalAttrs: { wrapPythonProgramsIn "$out/lib" "$out $propagatedBuildInputs" ''; - meta = { + meta = with lib; { description = "Pass password manager search provider for gnome-shell"; homepage = "https://github.com/jle64/gnome-pass-search-provider"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ lelgenio ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ lelgenio ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/gn/gnugo/package.nix b/pkgs/by-name/gn/gnugo/package.nix index b6c994ec4613af..3b55cf7e77f163 100644 --- a/pkgs/by-name/gn/gnugo/package.nix +++ b/pkgs/by-name/gn/gnugo/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = { + meta = with lib; { description = "GNU Go - A computer go player"; mainProgram = "gnugo"; homepage = "https://www.gnu.org/software/gnugo/"; - license = lib.licenses.gpl3; - platforms = lib.platforms.unix; + license = licenses.gpl3; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/go/go-blueprint/package.nix b/pkgs/by-name/go/go-blueprint/package.nix index ffb17d92b2f6c4..12eff304d17468 100644 --- a/pkgs/by-name/go/go-blueprint/package.nix +++ b/pkgs/by-name/go/go-blueprint/package.nix @@ -38,11 +38,11 @@ buildGoModule rec { --zsh <($out/bin/go-blueprint completion zsh) ''; - meta = { + meta = with lib; { description = "Initialize Go projects using popular frameworks"; homepage = "https://github.com/Melkeydev/go-blueprint"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tobifroe ]; + license = licenses.mit; + maintainers = with maintainers; [ tobifroe ]; mainProgram = "go-blueprint"; }; } diff --git a/pkgs/by-name/go/go-chromecast/package.nix b/pkgs/by-name/go/go-chromecast/package.nix index 24fffaf2da0990..39e55a20c0d95d 100644 --- a/pkgs/by-name/go/go-chromecast/package.nix +++ b/pkgs/by-name/go/go-chromecast/package.nix @@ -47,11 +47,11 @@ buildGoModule rec { --zsh <($out/bin/go-chromecast completion zsh) ''; - meta = { + meta = with lib; { homepage = "https://github.com/vishen/go-chromecast"; description = "CLI for Google Chromecast, Home devices and Cast Groups"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.zi3m5f ]; + license = licenses.asl20; + maintainers = [ maintainers.zi3m5f ]; mainProgram = "go-chromecast"; }; } diff --git a/pkgs/by-name/go/go-jsonnet/package.nix b/pkgs/by-name/go/go-jsonnet/package.nix index 9e00f8d68cf185..8e531e01a1d2a0 100644 --- a/pkgs/by-name/go/go-jsonnet/package.nix +++ b/pkgs/by-name/go/go-jsonnet/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { version = "v${version}"; }; - meta = { + meta = with lib; { description = "Implementation of Jsonnet in pure Go"; homepage = "https://github.com/google/go-jsonnet"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ nshalman aaronjheng ]; diff --git a/pkgs/by-name/go/go-landlock/package.nix b/pkgs/by-name/go/go-landlock/package.nix index 52c1e7890a368a..2bc404fd65c4f5 100644 --- a/pkgs/by-name/go/go-landlock/package.nix +++ b/pkgs/by-name/go/go-landlock/package.nix @@ -22,10 +22,10 @@ buildGoModule rec { "cmd/landlock-restrict" ]; - meta = { + meta = with lib; { description = "Go library for the Linux Landlock sandboxing feature"; homepage = "https://github.com/landlock-lsm/go-landlock"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tomfitzhenry ]; + license = licenses.mit; + maintainers = with maintainers; [ tomfitzhenry ]; }; } diff --git a/pkgs/by-name/go/go-musicfox/package.nix b/pkgs/by-name/go/go-musicfox/package.nix index 1125622d4752d0..1216bd7483b212 100644 --- a/pkgs/by-name/go/go-musicfox/package.nix +++ b/pkgs/by-name/go/go-musicfox/package.nix @@ -46,12 +46,12 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Terminal netease cloud music client written in Go"; homepage = "https://github.com/anhoder/go-musicfox"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "musicfox"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ zendo Ruixi-rebirth aleksana diff --git a/pkgs/by-name/go/go-symbols/package.nix b/pkgs/by-name/go/go-symbols/package.nix index 786e9d93a700b9..23dd6a5b35eb5d 100644 --- a/pkgs/by-name/go/go-symbols/package.nix +++ b/pkgs/by-name/go/go-symbols/package.nix @@ -26,14 +26,14 @@ buildGoModule rec { }) ]; - meta = { + meta = with lib; { description = "Utility for extracting a JSON representation of the package symbols from a go source tree"; mainProgram = "go-symbols"; homepage = "https://github.com/acroca/go-symbols"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ luftmensch-luftmensch vdemeester ]; - license = lib.licenses.mit; + license = licenses.mit; }; } diff --git a/pkgs/by-name/go/go9p/package.nix b/pkgs/by-name/go/go9p/package.nix index 886fc50878cb80..00bf387c912d2d 100644 --- a/pkgs/by-name/go/go9p/package.nix +++ b/pkgs/by-name/go/go9p/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-HupMxf8CXPhsnsQEnO1KsIJjY3l2jRJopQ2nVYhoYEE="; - meta = { + meta = with lib; { description = "Implementation of the 9p2000 protocol in Go"; homepage = "https://github.com/knusbaum/go9p"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "mount9p"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/go/goat-cli/package.nix b/pkgs/by-name/go/goat-cli/package.nix index 36776314d6b730..7158d93de834aa 100644 --- a/pkgs/by-name/go/goat-cli/package.nix +++ b/pkgs/by-name/go/goat-cli/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { # Checks currently fail because of an issue with github.com/studio-b12/goat/mocks doCheck = false; - meta = { + meta = with lib; { description = "Integration testing tool for HTTP APIs using a simple script language"; homepage = "https://studio-b12.github.io/goat/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ kashw2 ]; + license = licenses.bsd3; + maintainers = with maintainers; [ kashw2 ]; mainProgram = "goat"; }; diff --git a/pkgs/by-name/go/goat/package.nix b/pkgs/by-name/go/goat/package.nix index 77c1e61605f32e..f1b15aa558dfca 100644 --- a/pkgs/by-name/go/goat/package.nix +++ b/pkgs/by-name/go/goat/package.nix @@ -20,12 +20,12 @@ buildGoModule { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "Go ASCII Tool. Render ASCII art as SVG diagrams"; homepage = "https://github.com/blampe/goat"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ katexochen ]; + license = licenses.mit; + maintainers = with maintainers; [ katexochen ]; mainProgram = "goat"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/go/gob2/package.nix b/pkgs/by-name/go/gob2/package.nix index 8e603c4bcb06da..29254405c2e0d5 100644 --- a/pkgs/by-name/go/gob2/package.nix +++ b/pkgs/by-name/go/gob2/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { }; }; - meta = { + meta = with lib; { description = "Preprocessor for making GObjects with inline C code"; mainProgram = "gob2"; homepage = "https://www.jirka.org/gob.html"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/go/gobang/package.nix b/pkgs/by-name/go/gobang/package.nix index aaefff5aa3b81c..f0162348a07c21 100644 --- a/pkgs/by-name/go/gobang/package.nix +++ b/pkgs/by-name/go/gobang/package.nix @@ -31,10 +31,10 @@ rustPlatform.buildRustPackage { SystemConfiguration ]; - meta = { + meta = with lib; { description = "Cross-platform TUI database management tool written in Rust"; homepage = "https://github.com/tako8ki/gobang"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ figsoda ]; + license = licenses.mit; + maintainers = with maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/go/gobble/package.nix b/pkgs/by-name/go/gobble/package.nix index 856971174890d9..d28da8e5415435 100644 --- a/pkgs/by-name/go/gobble/package.nix +++ b/pkgs/by-name/go/gobble/package.nix @@ -31,12 +31,12 @@ rustPlatform.buildRustPackage rec { installManPage gobble.1 ''; - meta = { + meta = with lib; { description = "gobbles your terminal"; homepage = "https://github.com/EmperorPenguin18/gobble"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ vuimuich ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ vuimuich ]; + platforms = platforms.linux; mainProgram = "gobble"; }; } diff --git a/pkgs/by-name/go/gobusybox/package.nix b/pkgs/by-name/go/gobusybox/package.nix index 8ec543c1f593bd..170e1094908e88 100644 --- a/pkgs/by-name/go/gobusybox/package.nix +++ b/pkgs/by-name/go/gobusybox/package.nix @@ -31,12 +31,12 @@ buildGoModule rec { ldflags = [ "-s" ]; - meta = { + meta = with lib; { description = "Tools for compiling many Go commands into one binary to save space"; longDescription = "Builds are supported for vendor-based Go and module-based Go"; homepage = "https://github.com/u-root/gobusybox"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ katexochen ]; + license = licenses.bsd3; + maintainers = with maintainers; [ katexochen ]; mainProgram = "makebb"; }; } diff --git a/pkgs/by-name/go/goconvey/package.nix b/pkgs/by-name/go/goconvey/package.nix index ce8323ab027f86..25e8b9d714f588 100644 --- a/pkgs/by-name/go/goconvey/package.nix +++ b/pkgs/by-name/go/goconvey/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { "-short" ]; - meta = { + meta = with lib; { description = "Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go"; mainProgram = "goconvey"; homepage = "https://github.com/smartystreets/goconvey"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ vdemeester ]; + license = licenses.mit; + maintainers = with maintainers; [ vdemeester ]; }; } diff --git a/pkgs/by-name/go/gocovsh/package.nix b/pkgs/by-name/go/gocovsh/package.nix index eecc843a5568a5..4f39cd7bb20e67 100644 --- a/pkgs/by-name/go/gocovsh/package.nix +++ b/pkgs/by-name/go/gocovsh/package.nix @@ -29,14 +29,14 @@ buildGoModule rec { versionCheckProgramArg = [ "--version" ]; doInstallCheck = true; - meta = { + meta = with lib; { description = "Go Coverage in your terminal: a tool for exploring Go Coverage reports from the command line"; homepage = "https://github.com/orlangure/gocovsh"; changelog = "https://github.com/orlangure/gocovsh/releases"; # https://github.com/orlangure/gocovsh/blob/8880bc63283c13a1d630ce3817c7165a6c210d46/.goreleaser.yaml#L33 - license = lib.licenses.gpl3Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ phanirithvij ]; + license = licenses.gpl3Only; + platforms = platforms.unix; + maintainers = with maintainers; [ phanirithvij ]; mainProgram = "gocovsh"; }; } diff --git a/pkgs/by-name/go/gocr/package.nix b/pkgs/by-name/go/gocr/package.nix index 5f808d3ae67073..a15b90bae9d79c 100644 --- a/pkgs/by-name/go/gocr/package.nix +++ b/pkgs/by-name/go/gocr/package.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation rec { sed -i -e 's|exec wish|exec ${tk}/bin/wish|' $out/bin/gocr.tcl ''; - meta = { + meta = with lib; { homepage = "https://jocr.sourceforge.net/"; description = "GPL Optical Character Recognition"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; + license = licenses.gpl2; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/go/godef/package.nix b/pkgs/by-name/go/godef/package.nix index deb60e509ac37c..950270de7a3233 100644 --- a/pkgs/by-name/go/godef/package.nix +++ b/pkgs/by-name/go/godef/package.nix @@ -22,14 +22,14 @@ buildGoModule rec { sha256 = "0rhhg73kzai6qzhw31yxw3nhpsijn849qai2v9am955svmnckvf4"; }; - meta = { + meta = with lib; { description = "Print where symbols are defined in Go source code"; mainProgram = "godef"; homepage = "https://github.com/rogpeppe/godef/"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ vdemeester rvolosatovs ]; - license = lib.licenses.bsd3; + license = licenses.bsd3; }; } diff --git a/pkgs/by-name/go/godini/package.nix b/pkgs/by-name/go/godini/package.nix index 5c09478a26b302..d75ea51a59c896 100644 --- a/pkgs/by-name/go/godini/package.nix +++ b/pkgs/by-name/go/godini/package.nix @@ -37,13 +37,13 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { changelog = "https://github.com/bilbilak/godini/blob/main/CHANGELOG.md"; description = "INI Configuration Management Tool"; homepage = "https://github.com/bilbilak/godini"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "godini"; - maintainers = with lib.maintainers; [ _4r7if3x ]; - platforms = with lib.platforms; unix ++ windows; + maintainers = with maintainers; [ _4r7if3x ]; + platforms = with platforms; unix ++ windows; }; } diff --git a/pkgs/by-name/go/goflow2/package.nix b/pkgs/by-name/go/goflow2/package.nix index f05c81003c9305..fe2c41033706ef 100644 --- a/pkgs/by-name/go/goflow2/package.nix +++ b/pkgs/by-name/go/goflow2/package.nix @@ -25,10 +25,10 @@ buildGoModule { vendorHash = "sha256-4I4gIRJ80x9lmPpbJraSo1OD9CzT6povZDUAr1ZZEa0="; - meta = { + meta = with lib; { description = "High performance sFlow/IPFIX/NetFlow Collector"; homepage = "https://github.com/netsampler/goflow2"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ isabelroses ]; + license = licenses.bsd3; + maintainers = with maintainers; [ isabelroses ]; }; } diff --git a/pkgs/by-name/go/gogui/package.nix b/pkgs/by-name/go/gogui/package.nix index ebcaac4910c3d0..804952fdb633f4 100644 --- a/pkgs/by-name/go/gogui/package.nix +++ b/pkgs/by-name/go/gogui/package.nix @@ -86,15 +86,15 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Graphical user interface to programs that play the board game Go and support the Go Text Protocol such as GNU Go"; homepage = "https://github.com/Remi-Coulom/gogui"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "gogui"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ cleverca22 omnipotententity ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/go/goku/package.nix b/pkgs/by-name/go/goku/package.nix index 70f76836709dd2..7417db5a182072 100644 --- a/pkgs/by-name/go/goku/package.nix +++ b/pkgs/by-name/go/goku/package.nix @@ -39,11 +39,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Karabiner configurator"; homepage = "https://github.com/yqrashawn/GokuRakuJoudo"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.nikitavoloboev ]; - platforms = lib.platforms.darwin; + license = licenses.gpl3; + maintainers = [ maintainers.nikitavoloboev ]; + platforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/go/golds/package.nix b/pkgs/by-name/go/golds/package.nix index de811d147b9c23..be37dd27bb3430 100644 --- a/pkgs/by-name/go/golds/package.nix +++ b/pkgs/by-name/go/golds/package.nix @@ -32,12 +32,12 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Experimental Go local docs server/generator and code reader implemented with some fresh ideas"; homepage = "https://github.com/go101/golds"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ phanirithvij ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ phanirithvij ]; mainProgram = "golds"; }; } diff --git a/pkgs/by-name/go/golex/package.nix b/pkgs/by-name/go/golex/package.nix index 99884d4d2d029a..e62fce565315a8 100644 --- a/pkgs/by-name/go/golex/package.nix +++ b/pkgs/by-name/go/golex/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { vendorHash = "sha256-Ig4cxZepvmI1EH0j2fuQ33jHOLWfS40UE+A4UHdo8oE="; - meta = { + meta = with lib; { description = "Lex/flex like utility rendering .l formated data to Go source code"; homepage = "https://pkg.go.dev/modernc.org/golex"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "golex"; - maintainers = with lib.maintainers; [ aleksana ]; + maintainers = with maintainers; [ aleksana ]; }; } diff --git a/pkgs/by-name/go/gomanagedocker/package.nix b/pkgs/by-name/go/gomanagedocker/package.nix index c194f11d4afe50..c0e9a42fd30180 100644 --- a/pkgs/by-name/go/gomanagedocker/package.nix +++ b/pkgs/by-name/go/gomanagedocker/package.nix @@ -31,11 +31,11 @@ buildGoModule { "-w" ]; - meta = { + meta = with lib; { description = "TUI tool to manage your docker images, containers and volumes"; homepage = "https://github.com/ajayd-san/gomanagedocker"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ genga898 ]; + license = licenses.mit; + maintainers = with maintainers; [ genga898 ]; mainProgram = "gomanagedocker"; }; } diff --git a/pkgs/by-name/go/gomodifytags/package.nix b/pkgs/by-name/go/gomodifytags/package.nix index 567499f9e6d31a..728e07fdd5e9b1 100644 --- a/pkgs/by-name/go/gomodifytags/package.nix +++ b/pkgs/by-name/go/gomodifytags/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-0eWrkOcaow+W2Daaw2rzugfS+jqhN6RE2iCdpui9aQg="; - meta = { + meta = with lib; { description = "Go tool to modify struct field tags"; mainProgram = "gomodifytags"; homepage = "https://github.com/fatih/gomodifytags"; - maintainers = with lib.maintainers; [ vdemeester ]; - license = lib.licenses.bsd3; + maintainers = with maintainers; [ vdemeester ]; + license = licenses.bsd3; }; } diff --git a/pkgs/by-name/go/gonic/package.nix b/pkgs/by-name/go/gonic/package.nix index d8b28ba5619498..3882295329748d 100644 --- a/pkgs/by-name/go/gonic/package.nix +++ b/pkgs/by-name/go/gonic/package.nix @@ -66,11 +66,11 @@ buildGoModule rec { # tests require it __darwinAllowLocalNetworking = true; - meta = { + meta = with lib; { homepage = "https://github.com/sentriz/gonic"; description = "Music streaming server / subsonic server API implementation"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ autrimpo ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ autrimpo ]; mainProgram = "gonic"; }; } diff --git a/pkgs/by-name/go/goofcord/package.nix b/pkgs/by-name/go/goofcord/package.nix index 45287af656f1e4..227823f45f69fb 100644 --- a/pkgs/by-name/go/goofcord/package.nix +++ b/pkgs/by-name/go/goofcord/package.nix @@ -110,12 +110,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Highly configurable and privacy-focused Discord client"; homepage = "https://github.com/Milkshiift/GoofCord"; downloadPage = "https://github.com/Milkshiift/GoofCord"; - license = lib.licenses.osl3; - maintainers = with lib.maintainers; [ nyabinary ]; + license = licenses.osl3; + maintainers = with maintainers; [ nyabinary ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/go/google-chrome/package.nix b/pkgs/by-name/go/google-chrome/package.nix index 90ec7681d8c42a..4117c5b36b07a1 100644 --- a/pkgs/by-name/go/google-chrome/package.nix +++ b/pkgs/by-name/go/google-chrome/package.nix @@ -303,17 +303,17 @@ let passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { changelog = "https://chromereleases.googleblog.com/"; description = "Freeware web browser developed by Google"; homepage = "https://www.google.com/chrome/browser/"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ + license = licenses.unfree; + maintainers = with maintainers; [ jnsgruk johnrtitor ]; - platforms = lib.platforms.darwin ++ [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + platforms = platforms.darwin ++ [ "x86_64-linux" ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; mainProgram = "google-chrome-stable"; }; in diff --git a/pkgs/by-name/go/google-lighthouse/package.nix b/pkgs/by-name/go/google-lighthouse/package.nix index 59d41097b220f8..630b0c58757048 100644 --- a/pkgs/by-name/go/google-lighthouse/package.nix +++ b/pkgs/by-name/go/google-lighthouse/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { ''; doDist = false; - meta = { + meta = with lib; { description = "Automated auditing, performance metrics, and best practices for the web"; homepage = "https://developer.chrome.com/docs/lighthouse/overview"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "lighthouse"; - maintainers = with lib.maintainers; [ theCapypara ]; + maintainers = with maintainers; [ theCapypara ]; }; } diff --git a/pkgs/by-name/go/google-play/package.nix b/pkgs/by-name/go/google-play/package.nix index c404013adc2d27..058c19f1718000 100644 --- a/pkgs/by-name/go/google-play/package.nix +++ b/pkgs/by-name/go/google-play/package.nix @@ -22,13 +22,13 @@ buildGoModule rec { vendorHash = "sha256-NVN5qoGXiL6lOPZejUhK55EuzF7R0KsIT+2oCzK+Qg0="; - meta = { + meta = with lib; { description = "CLI app to download APK from Google Play or send API requests"; - maintainers = with lib.maintainers; [ ulysseszhan ]; + maintainers = with maintainers; [ ulysseszhan ]; # https://polyformproject.org/licenses/noncommercial/1.0.0 - license = lib.licenses.unfree; + license = licenses.unfree; homepage = "https://github.com/3052/google"; mainProgram = "play"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/go/gopeed/package.nix b/pkgs/by-name/go/gopeed/package.nix index c21588bd29fdce..a88fc1cb5a22ac 100644 --- a/pkgs/by-name/go/gopeed/package.nix +++ b/pkgs/by-name/go/gopeed/package.nix @@ -53,13 +53,13 @@ stdenv.mkDerivation rec { --prefix PATH : ${lib.makeBinPath [ zenity ]} ''; - meta = { + meta = with lib; { homepage = "https://gopeed.com"; description = "Modern download manager that supports all platforms. Built with Golang and Flutter"; mainProgram = "gopeed"; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ aucub ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ aucub ]; }; } diff --git a/pkgs/by-name/go/gopkgs/package.nix b/pkgs/by-name/go/gopkgs/package.nix index f4b8c3a86cb278..e4a9d134864dff 100644 --- a/pkgs/by-name/go/gopkgs/package.nix +++ b/pkgs/by-name/go/gopkgs/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { doCheck = false; - meta = { + meta = with lib; { description = "Tool to get list available Go packages"; mainProgram = "gopkgs"; homepage = "https://github.com/uudashr/gopkgs"; - maintainers = with lib.maintainers; [ vdemeester ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ vdemeester ]; + license = licenses.mit; }; } diff --git a/pkgs/by-name/go/gordonflashtool/package.nix b/pkgs/by-name/go/gordonflashtool/package.nix index b6548d02234789..47b0fa6f843a40 100644 --- a/pkgs/by-name/go/gordonflashtool/package.nix +++ b/pkgs/by-name/go/gordonflashtool/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/marmolak/GordonFlashTool"; description = "Toolset for Gotek SFR1M44-U100 formatted usb flash drives"; - maintainers = with lib.maintainers; [ marmolak ]; - license = lib.licenses.bsd3; - platforms = lib.platforms.all; + maintainers = with maintainers; [ marmolak ]; + license = licenses.bsd3; + platforms = platforms.all; mainProgram = "gordon"; }; } diff --git a/pkgs/by-name/go/goreplay/package.nix b/pkgs/by-name/go/goreplay/package.nix index bea28693a6df53..6e32cafd058cdb 100644 --- a/pkgs/by-name/go/goreplay/package.nix +++ b/pkgs/by-name/go/goreplay/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/buger/goreplay"; - license = lib.licenses.lgpl3Only; + license = licenses.lgpl3Only; description = "Open-source tool for capturing and replaying live HTTP traffic"; - maintainers = with lib.maintainers; [ lovek323 ]; + maintainers = with maintainers; [ lovek323 ]; mainProgram = "goreplay"; }; } diff --git a/pkgs/by-name/go/gorilla-bin/package.nix b/pkgs/by-name/go/gorilla-bin/package.nix index 14a6a5ed14f5a3..966b06e2fe5b8b 100644 --- a/pkgs/by-name/go/gorilla-bin/package.nix +++ b/pkgs/by-name/go/gorilla-bin/package.nix @@ -56,13 +56,13 @@ stdenv.mkDerivation rec { --prefix LD_LIBRARY_PATH : "${libPath}" ''; - meta = { + meta = with lib; { description = "Password Gorilla is a Tk based password manager"; mainProgram = "gorilla"; homepage = "https://github.com/zdia/gorilla/wiki"; - maintainers = [ lib.maintainers.namore ]; + maintainers = [ maintainers.namore ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.gpl2Plus; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/go/gortr/package.nix b/pkgs/by-name/go/gortr/package.nix index 79c8c4175993a0..bac0cfe27fb41f 100644 --- a/pkgs/by-name/go/gortr/package.nix +++ b/pkgs/by-name/go/gortr/package.nix @@ -26,10 +26,10 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "RPKI-to-Router server used at Cloudflare"; homepage = "https://github.com/cloudflare/gortr/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ stv0g ]; + license = licenses.bsd3; + maintainers = with maintainers; [ stv0g ]; }; } diff --git a/pkgs/by-name/go/gose/package.nix b/pkgs/by-name/go/gose/package.nix index fe03ebb95994db..8ff9954d284134 100644 --- a/pkgs/by-name/go/gose/package.nix +++ b/pkgs/by-name/go/gose/package.nix @@ -68,11 +68,11 @@ buildGoModule { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Modern and scalable file-uploader focusing on scalability and simplicity"; homepage = "https://github.com/stv0g/gose"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ stv0g ]; + license = licenses.asl20; + maintainers = with maintainers; [ stv0g ]; mainProgram = "gose"; }; } diff --git a/pkgs/by-name/go/gosmee/package.nix b/pkgs/by-name/go/gosmee/package.nix index f1cc58016c5cca..9557de09ddbdce 100644 --- a/pkgs/by-name/go/gosmee/package.nix +++ b/pkgs/by-name/go/gosmee/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { --zsh <($out/bin/gosmee completion zsh) ''; - meta = { + meta = with lib; { description = "Command line server and client for webhooks deliveries (and https://smee.io)"; homepage = "https://github.com/chmouel/gosmee"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ vdemeester chmouel ]; diff --git a/pkgs/by-name/go/gotestdox/package.nix b/pkgs/by-name/go/gotestdox/package.nix index c9a0c55ccf92f0..8a6af396fe50fb 100644 --- a/pkgs/by-name/go/gotestdox/package.nix +++ b/pkgs/by-name/go/gotestdox/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Tool for formatting Go test results as readable documentation"; homepage = "https://github.com/bitfield/gotestdox"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ eljamm ]; + license = licenses.mit; + maintainers = with maintainers; [ eljamm ]; mainProgram = "gotestdox"; }; } diff --git a/pkgs/by-name/go/goudy-bookletter-1911/package.nix b/pkgs/by-name/go/goudy-bookletter-1911/package.nix index 34428e7e360e1c..b5824667075a31 100644 --- a/pkgs/by-name/go/goudy-bookletter-1911/package.nix +++ b/pkgs/by-name/go/goudy-bookletter-1911/package.nix @@ -23,10 +23,10 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Public domain font based on Frederic Goudy’s Kennerley Oldstyle"; homepage = "https://www.theleagueofmoveabletype.com/goudy-bookletter-1911"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ minijackson ]; + license = licenses.ofl; + maintainers = with maintainers; [ minijackson ]; }; } diff --git a/pkgs/by-name/go/govc/package.nix b/pkgs/by-name/go/govc/package.nix index f9caec412a5b97..2daae118c1df67 100644 --- a/pkgs/by-name/go/govc/package.nix +++ b/pkgs/by-name/go/govc/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-X github.com/vmware/govmomi/govc/flags.BuildVersion=${version}" ]; - meta = { + meta = with lib; { description = "VSphere CLI built on top of govmomi"; homepage = "https://github.com/vmware/govmomi/tree/master/govc"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ nicknovitski ]; + license = licenses.asl20; + maintainers = with maintainers; [ nicknovitski ]; mainProgram = "govc"; }; } diff --git a/pkgs/by-name/go/govers/package.nix b/pkgs/by-name/go/govers/package.nix index 29a690bbf10a3e..6796d25ed7c105 100644 --- a/pkgs/by-name/go/govers/package.nix +++ b/pkgs/by-name/go/govers/package.nix @@ -25,12 +25,12 @@ buildGoModule { doCheck = false; # fails, silently - meta = { + meta = with lib; { description = "Tool for rewriting Go import paths"; homepage = "https://github.com/rogpeppe/govers"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "govers"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ luftmensch-luftmensch urandom ]; diff --git a/pkgs/by-name/gp/gprename/package.nix b/pkgs/by-name/gp/gprename/package.nix index a821e772e9df81..003993c0363e32 100644 --- a/pkgs/by-name/gp/gprename/package.nix +++ b/pkgs/by-name/gp/gprename/package.nix @@ -66,11 +66,11 @@ stdenv.mkDerivation (finalAttrs: { } ''; - meta = { + meta = with lib; { description = "Complete batch renamer for files and directories"; homepage = "https://gprename.sourceforge.net/index.php"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "gprename"; - maintainers = with lib.maintainers; [ quantenzitrone ]; + maintainers = with maintainers; [ quantenzitrone ]; }; }) diff --git a/pkgs/by-name/gp/gpufetch/package.nix b/pkgs/by-name/gp/gpufetch/package.nix index 3a40a1df76f7f1..b035181bb6f47b 100644 --- a/pkgs/by-name/gp/gpufetch/package.nix +++ b/pkgs/by-name/gp/gpufetch/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { rev-prefix = "v"; }; }; - meta = { + meta = with lib; { description = "Simple yet fancy GPU architecture fetching tool"; homepage = "https://github.com/Dr-Noob/gpufetch"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; mainProgram = "gpufetch"; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; + maintainers = with maintainers; [ bot-wxt1221 ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/by-name/gp/gpx/package.nix b/pkgs/by-name/gp/gpx/package.nix index bc1113b99b20d9..d28387e25f3429 100644 --- a/pkgs/by-name/gp/gpx/package.nix +++ b/pkgs/by-name/gp/gpx/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { sha256 = "1izs8s5npkbfrsyk17429hyl1vyrbj9dp6vmdlbb2vh6mfgl54h8"; }; - meta = { + meta = with lib; { description = "Gcode to x3g conversion postprocessor"; homepage = "https://github.com/markwal/GPX/"; - license = lib.licenses.gpl2; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.leo60228 ]; + license = licenses.gpl2; + platforms = platforms.unix; + maintainers = [ maintainers.leo60228 ]; }; } diff --git a/pkgs/by-name/gq/gqlint/package.nix b/pkgs/by-name/gq/gqlint/package.nix index c0d955d7d07240..e4631c39541bea 100644 --- a/pkgs/by-name/gq/gqlint/package.nix +++ b/pkgs/by-name/gq/gqlint/package.nix @@ -19,11 +19,11 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = { + meta = with lib; { description = "GraphQL linter"; homepage = "https://github.com/happylinks/gqlint"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "gqlint"; - maintainers = with lib.maintainers; [ hardselius ]; + maintainers = with maintainers; [ hardselius ]; }; } diff --git a/pkgs/by-name/gr/gradle-completion/package.nix b/pkgs/by-name/gr/gradle-completion/package.nix index 66df62b765384c..6c0dc59b5b9672 100644 --- a/pkgs/by-name/gr/gradle-completion/package.nix +++ b/pkgs/by-name/gr/gradle-completion/package.nix @@ -43,10 +43,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { rev-prefix = "v"; }; - meta = { + meta = with lib; { description = "Gradle tab completion for bash and zsh"; homepage = "https://github.com/gradle/gradle-completion"; - license = lib.licenses.mit; - maintainers = [ ] ++ lib.teams.java.members; + license = licenses.mit; + maintainers = [ ] ++ teams.java.members; }; }) diff --git a/pkgs/by-name/gr/gradm/package.nix b/pkgs/by-name/gr/gradm/package.nix index d92f7c90119c28..0e93af0ee98263 100644 --- a/pkgs/by-name/gr/gradm/package.nix +++ b/pkgs/by-name/gr/gradm/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation (finalAttrs: { postInstall = "rmdir $out/dev"; - meta = { + meta = with lib; { description = "grsecurity RBAC administration and policy analysis utility"; homepage = "https://grsecurity.net"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = with maintainers; [ thoughtpolice joachifm ]; diff --git a/pkgs/by-name/gr/grafana-reporter/package.nix b/pkgs/by-name/gr/grafana-reporter/package.nix index 04a740d1bddb39..2a237f18435f96 100644 --- a/pkgs/by-name/gr/grafana-reporter/package.nix +++ b/pkgs/by-name/gr/grafana-reporter/package.nix @@ -34,11 +34,11 @@ buildGoModule rec { --prefix PATH : ${lib.makeBinPath [ tetex ]} ''; - meta = { + meta = with lib; { description = "PDF report generator from a Grafana dashboard"; mainProgram = "grafana-reporter"; homepage = "https://github.com/IzakMarais/reporter"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.disassembler ]; + license = licenses.mit; + maintainers = [ maintainers.disassembler ]; }; } diff --git a/pkgs/by-name/gr/grail/package.nix b/pkgs/by-name/gr/grail/package.nix index 85e61cbc703134..dcc5be89576de1 100644 --- a/pkgs/by-name/gr/grail/package.nix +++ b/pkgs/by-name/gr/grail/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { configureFlags = lib.optional enableX11 "--with-x11"; - meta = { + meta = with lib; { homepage = "https://launchpad.net/canonical-multitouch/grail"; description = "Gesture Recognition And Instantiation Library"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; + license = licenses.gpl2; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/gr/grandperspective/package.nix b/pkgs/by-name/gr/grandperspective/package.nix index 6a9f812a12feba..c5212dfe81722b 100644 --- a/pkgs/by-name/gr/grandperspective/package.nix +++ b/pkgs/by-name/gr/grandperspective/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation (finalAttrs: { ''; }); - meta = { + meta = with lib; { description = "Open-source macOS application to analyze disk usage"; longDescription = '' GrandPerspective is a small utility application for macOS that graphically shows the disk usage within a file @@ -59,13 +59,13 @@ stdenv.mkDerivation (finalAttrs: { ''; mainProgram = "grandperspective"; homepage = "https://grandperspectiv.sourceforge.net"; - license = lib.licenses.gpl2Only; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Only; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; + maintainers = with maintainers; [ eliandoran DimitarNestorov ]; - platforms = lib.platforms.darwin; + platforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/gr/granian/package.nix b/pkgs/by-name/gr/granian/package.nix index 53d601c0ee773c..acd26c6c4260e9 100644 --- a/pkgs/by-name/gr/granian/package.nix +++ b/pkgs/by-name/gr/granian/package.nix @@ -38,12 +38,12 @@ python3Packages.buildPythonApplication rec { python3Packages.click ]; - meta = { + meta = with lib; { description = "Rust HTTP server for Python ASGI/WSGI/RSGI applications"; homepage = "https://github.com/emmett-framework/granian"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "granian"; - maintainers = with lib.maintainers; [ lucastso10 ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ lucastso10 ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/gr/graphicsmagick/package.nix b/pkgs/by-name/gr/graphicsmagick/package.nix index ffde1a95274517..75c5ba58fbd906 100644 --- a/pkgs/by-name/gr/graphicsmagick/package.nix +++ b/pkgs/by-name/gr/graphicsmagick/package.nix @@ -98,7 +98,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { homepage = "http://www.graphicsmagick.org"; description = "Swiss army knife of image processing"; longDescription = '' @@ -108,9 +108,9 @@ stdenv.mkDerivation (finalAttrs: { including important formats like DPX, GIF, JPEG, JPEG-2000, JXL, PNG, PDF, PNM, TIFF, and WebP. ''; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ AndersonTorres ]; mainProgram = "gm"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/gr/graphite-cli/package.nix b/pkgs/by-name/gr/graphite-cli/package.nix index 34d94ab3c8d05c..124d75f1961fb1 100644 --- a/pkgs/by-name/gr/graphite-cli/package.nix +++ b/pkgs/by-name/gr/graphite-cli/package.nix @@ -37,13 +37,13 @@ buildNpmPackage rec { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { changelog = "https://graphite.dev/docs/cli-changelog"; description = "CLI that makes creating stacked git changes fast & intuitive"; downloadPage = "https://www.npmjs.com/package/@withgraphite/graphite-cli"; homepage = "https://graphite.dev/docs/graphite-cli"; - license = lib.licenses.unfree; # no license specified + license = licenses.unfree; # no license specified mainProgram = "gt"; - maintainers = with lib.maintainers; [ diegs ]; + maintainers = with maintainers; [ diegs ]; }; } diff --git a/pkgs/by-name/gr/graphpython/package.nix b/pkgs/by-name/gr/graphpython/package.nix index f9c583d48745d2..664f0b1bd8da99 100644 --- a/pkgs/by-name/gr/graphpython/package.nix +++ b/pkgs/by-name/gr/graphpython/package.nix @@ -35,11 +35,11 @@ python3.pkgs.buildPythonApplication rec { # Project has no tests doCheck = false; - meta = { + meta = with lib; { description = "Microsoft Graph API (Entra, o365, and Intune) enumeration and exploitation toolkit"; homepage = "https://github.com/mlcsec/Graphpython"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.mit; + maintainers = with maintainers; [ fab ]; mainProgram = "graphpython"; }; } diff --git a/pkgs/by-name/gr/grcov/package.nix b/pkgs/by-name/gr/grcov/package.nix index 927f30b77d6a64..debc095822cf0c 100644 --- a/pkgs/by-name/gr/grcov/package.nix +++ b/pkgs/by-name/gr/grcov/package.nix @@ -38,11 +38,11 @@ rustPlatform.buildRustPackage rec { in builtins.concatStringsSep " " (builtins.map skipFlag skipList); - meta = { + meta = with lib; { description = "Rust tool to collect and aggregate code coverage data for multiple source files"; mainProgram = "grcov"; homepage = "https://github.com/mozilla/grcov"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ DieracDelta ]; + license = licenses.mpl20; + maintainers = with maintainers; [ DieracDelta ]; }; } diff --git a/pkgs/by-name/gr/grim/package.nix b/pkgs/by-name/gr/grim/package.nix index 7a226b0884e5b8..68fd1de6aed1f9 100644 --- a/pkgs/by-name/gr/grim/package.nix +++ b/pkgs/by-name/gr/grim/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { homepage = "https://sr.ht/~emersion/grim"; description = "Grab images from a Wayland compositor"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "grim"; - maintainers = with lib.maintainers; [ khaneliman ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ khaneliman ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/gr/grin/package.nix b/pkgs/by-name/gr/grin/package.nix index 4a8e0d7a916ffc..2406dd72266122 100644 --- a/pkgs/by-name/gr/grin/package.nix +++ b/pkgs/by-name/gr/grin/package.nix @@ -21,10 +21,10 @@ python3Packages.buildPythonApplication { nativeCheckInputs = [ python3Packages.pytestCheckHook ]; - meta = { + meta = with lib; { homepage = "https://github.com/matthew-brett/grin"; description = "Grep program configured the way I like it"; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.sjagoe ]; + platforms = platforms.all; + maintainers = [ maintainers.sjagoe ]; }; } diff --git a/pkgs/by-name/gr/grip-grab/package.nix b/pkgs/by-name/gr/grip-grab/package.nix index 93564a6c03a5f5..31ad7a8b4167e1 100644 --- a/pkgs/by-name/gr/grip-grab/package.nix +++ b/pkgs/by-name/gr/grip-grab/package.nix @@ -21,12 +21,12 @@ rustPlatform.buildRustPackage { doCheck = false; - meta = { + meta = with lib; { description = "Fast, more lightweight ripgrep alternative for daily use cases"; homepage = "https://github.com/alexpasmantier/grip-grab"; changelog = "https://github.com/alexpasmantier/grip-grab/releases"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ luftmensch-luftmensch ]; + license = licenses.asl20; + maintainers = with maintainers; [ luftmensch-luftmensch ]; mainProgram = "gg"; }; } diff --git a/pkgs/by-name/gr/grpc-health-check/package.nix b/pkgs/by-name/gr/grpc-health-check/package.nix index 1d2f915c553aa6..8540db0707e5bb 100644 --- a/pkgs/by-name/gr/grpc-health-check/package.nix +++ b/pkgs/by-name/gr/grpc-health-check/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage { # tests fail doCheck = false; - meta = { + meta = with lib; { description = "Minimal, high performance, memory-friendly, safe implementation of the gRPC health checking protocol"; homepage = "https://github.com/paypizza/grpc-health-check"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ flokli ]; - platforms = lib.platforms.unix; + license = licenses.asl20; + maintainers = with maintainers; [ flokli ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/gr/grun/package.nix b/pkgs/by-name/gr/grun/package.nix index 0401b6d3a3328e..8290a1d3f0aa2f 100644 --- a/pkgs/by-name/gr/grun/package.nix +++ b/pkgs/by-name/gr/grun/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation { "PREFIX=${placeholder "out"}" ]; - meta = { + meta = with lib; { description = "Application launcher written in C and using GTK for the interface"; mainProgram = "grun"; homepage = "https://github.com/lrgc/grun"; - platforms = lib.platforms.linux; - license = with lib.licenses; [ gpl2Only ]; - maintainers = with lib.maintainers; [ _3JlOy-PYCCKUi ]; + platforms = platforms.linux; + license = with licenses; [ gpl2Only ]; + maintainers = with maintainers; [ _3JlOy-PYCCKUi ]; }; } diff --git a/pkgs/by-name/gr/gruvbox-gtk-theme/package.nix b/pkgs/by-name/gr/gruvbox-gtk-theme/package.nix index 72a3e999840b4d..0df20d5b689ce7 100644 --- a/pkgs/by-name/gr/gruvbox-gtk-theme/package.nix +++ b/pkgs/by-name/gr/gruvbox-gtk-theme/package.nix @@ -108,12 +108,12 @@ lib.checkListOfEnum "${pname}: colorVariants" colorVariantList colorVariants lib runHook postInstall ''; - meta = { + meta = with lib; { description = "GTK theme based on the Gruvbox colour palette"; homepage = "https://github.com/Fausto-Korpsvart/Gruvbox-GTK-Theme"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + platforms = platforms.unix; + maintainers = with maintainers; [ luftmensch-luftmensch math-42 d3vil0p3r diff --git a/pkgs/by-name/gr/gruvbox-kvantum/package.nix b/pkgs/by-name/gr/gruvbox-kvantum/package.nix index 160166fd39abba..393b7d566d2048 100644 --- a/pkgs/by-name/gr/gruvbox-kvantum/package.nix +++ b/pkgs/by-name/gr/gruvbox-kvantum/package.nix @@ -37,11 +37,11 @@ lib.checkListOfEnum "${pname}: variant" runHook postInstall ''; - meta = { + meta = with lib; { description = "Gruvbox themes for kvantum"; homepage = "https://github.com/sachnr/gruvbox-kvantum-themes"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ istudyatuni ]; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ istudyatuni ]; }; } diff --git a/pkgs/by-name/gr/gruvbox-material-gtk-theme/package.nix b/pkgs/by-name/gr/gruvbox-material-gtk-theme/package.nix index 1b76dc8743a281..05bf01bcdfc9fa 100644 --- a/pkgs/by-name/gr/gruvbox-material-gtk-theme/package.nix +++ b/pkgs/by-name/gr/gruvbox-material-gtk-theme/package.nix @@ -28,11 +28,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "GTK Theme based off of the Gruvbox Material colour palette"; homepage = "https://github.com/TheGreatMcPain/gruvbox-material-gtk"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.amadaluzia ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = [ maintainers.amadaluzia ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/gs/gst/package.nix b/pkgs/by-name/gs/gst/package.nix index ac906d3003f9af..8912c1988a9d6f 100644 --- a/pkgs/by-name/gs/gst/package.nix +++ b/pkgs/by-name/gs/gst/package.nix @@ -50,11 +50,11 @@ buildGoModule rec { fi ''; - meta = { + meta = with lib; { description = "Supercharge your ghq workflow"; homepage = "https://github.com/uetchy/gst"; - maintainers = with lib.maintainers; [ _0x4A6F ]; - license = lib.licenses.asl20; + maintainers = with maintainers; [ _0x4A6F ]; + license = licenses.asl20; mainProgram = "gst"; }; } diff --git a/pkgs/by-name/gs/gswatcher/package.nix b/pkgs/by-name/gs/gswatcher/package.nix index b12a1bfc4a0296..2c949315e64fa4 100644 --- a/pkgs/by-name/gs/gswatcher/package.nix +++ b/pkgs/by-name/gs/gswatcher/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Simple game server monitor and administrative tool"; homepage = "https://github.com/lxndr/gswatcher"; - license = with lib.licenses; [ agpl3Plus ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ pluiedev ]; + license = with licenses; [ agpl3Plus ]; + platforms = platforms.linux; + maintainers = with maintainers; [ pluiedev ]; }; }) diff --git a/pkgs/by-name/gt/gt/package.nix b/pkgs/by-name/gt/gt/package.nix index c5cb602f414f4f..e682bcd1256732 100644 --- a/pkgs/by-name/gt/gt/package.nix +++ b/pkgs/by-name/gt/gt/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation (finalAttrs: { libusbgx ]; - meta = { + meta = with lib; { description = "Linux command line tool for setting up USB gadgets using configfs"; mainProgram = "gt"; - license = with lib.licenses; [ asl20 ]; + license = with licenses; [ asl20 ]; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/gt/gt5/package.nix b/pkgs/by-name/gt/gt5/package.nix index f25f70e331d8ef..9e0fd1c0895913 100644 --- a/pkgs/by-name/gt/gt5/package.nix +++ b/pkgs/by-name/gt/gt5/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { "PREFIX=${placeholder "out"}" ]; - meta = { + meta = with lib; { description = "Diff-capable 'du' browser"; homepage = "https://gt5.sourceforge.net/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = with lib.platforms; all; + platforms = with platforms; all; mainProgram = "gt5"; }; } diff --git a/pkgs/by-name/gt/gtk-session-lock/package.nix b/pkgs/by-name/gt/gtk-session-lock/package.nix index f84b82e5bf28cf..dfe1ae39c6ff89 100644 --- a/pkgs/by-name/gt/gtk-session-lock/package.nix +++ b/pkgs/by-name/gt/gtk-session-lock/package.nix @@ -47,15 +47,15 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { description = "Library to use GTK 3 to build screen lockers using ext-session-lock-v1 protocol"; homepage = "https://github.com/Cu3PO42/gtk-session-lock"; # The author stated "GTK Session Lock is licensed under the GNU General # Public License version 3.0 or any later version approved by me (Cu3PO42)." # Since we don't know if the author will approve later versions, we mark gpl3Only - license = with lib.licenses; [ gpl3Only ]; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.unix; - badPlatforms = lib.platforms.darwin; + license = with licenses; [ gpl3Only ]; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.unix; + badPlatforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/gt/gtk_engines/package.nix b/pkgs/by-name/gt/gtk_engines/package.nix index a4d9e10bc48638..ca30f7e3595c60 100644 --- a/pkgs/by-name/gt/gtk_engines/package.nix +++ b/pkgs/by-name/gt/gtk_engines/package.nix @@ -22,9 +22,9 @@ stdenv.mkDerivation rec { ]; buildInputs = [ gtk2 ]; - meta = { + meta = with lib; { description = "Theme engines for GTK 2"; - license = lib.licenses.lgpl21Plus; - platforms = lib.platforms.linux; + license = licenses.lgpl21Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/gt/gtkdatabox/package.nix b/pkgs/by-name/gt/gtkdatabox/package.nix index b34788dc889fa7..2b85b89b1b7945 100644 --- a/pkgs/by-name/gt/gtkdatabox/package.nix +++ b/pkgs/by-name/gt/gtkdatabox/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { cairo ]; - meta = { + meta = with lib; { description = "GTK widget for displaying large amounts of numerical data"; homepage = "https://gtkdatabox.sourceforge.io/"; - license = lib.licenses.lgpl2Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ yl3dy ]; + license = licenses.lgpl2Only; + platforms = platforms.unix; + maintainers = with maintainers; [ yl3dy ]; }; } diff --git a/pkgs/by-name/gt/gtkdialog/package.nix b/pkgs/by-name/gt/gtkdialog/package.nix index 4de4f9929fb922..c5644515903b60 100644 --- a/pkgs/by-name/gt/gtkdialog/package.nix +++ b/pkgs/by-name/gt/gtkdialog/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ gtk2 ]; - meta = { + meta = with lib; { homepage = "https://code.google.com/archive/p/gtkdialog/"; # community links: http://murga-linux.com/puppy/viewtopic.php?t=111923 -> https://github.com/01micko/gtkdialog description = "Small utility for fast and easy GUI building from many scripted and compiled languages"; mainProgram = "gtkdialog"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/gt/gtklock-playerctl-module/package.nix b/pkgs/by-name/gt/gtklock-playerctl-module/package.nix index 847f1730574738..2eb1f59d3dbb22 100644 --- a/pkgs/by-name/gt/gtklock-playerctl-module/package.nix +++ b/pkgs/by-name/gt/gtklock-playerctl-module/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.testModule = gtklock.testModule finalAttrs.finalPackage; - meta = { + meta = with lib; { description = "Gtklock module adding media player controls to the lockscreen"; homepage = "https://github.com/jovanlanik/gtklock-playerctl-module"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/gt/gtklock-powerbar-module/package.nix b/pkgs/by-name/gt/gtklock-powerbar-module/package.nix index 9be823146038ee..5e76bdfd97072e 100644 --- a/pkgs/by-name/gt/gtklock-powerbar-module/package.nix +++ b/pkgs/by-name/gt/gtklock-powerbar-module/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.testModule = gtklock.testModule finalAttrs.finalPackage; - meta = { + meta = with lib; { description = "Gtklock module adding power controls to the lockscreen"; homepage = "https://github.com/jovanlanik/gtklock-powerbar-module"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/gt/gtklock-userinfo-module/package.nix b/pkgs/by-name/gt/gtklock-userinfo-module/package.nix index ff02d4f3766d4b..daf7c1e95fff30 100644 --- a/pkgs/by-name/gt/gtklock-userinfo-module/package.nix +++ b/pkgs/by-name/gt/gtklock-userinfo-module/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.testModule = gtklock.testModule finalAttrs.finalPackage; - meta = { + meta = with lib; { description = "Gtklock module adding user info to the lockscreen"; homepage = "https://github.com/jovanlanik/gtklock-userinfo-module"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/gt/gtklock/package.nix b/pkgs/by-name/gt/gtklock/package.nix index ff3369c1ebbf31..f4f27728839d04 100644 --- a/pkgs/by-name/gt/gtklock/package.nix +++ b/pkgs/by-name/gt/gtklock/package.nix @@ -56,19 +56,19 @@ stdenv.mkDerivation (finalAttrs: { touch $out ''; - meta = { + meta = with lib; { description = "GTK-based lockscreen for Wayland"; longDescription = '' Important note: for gtklock to work you need to set "security.pam.services.gtklock = {};" manually. Otherwise you'll lock youself out of desktop and unable to authenticate. ''; # Following nixpkgs/pkgs/applications/window-managers/sway/lock.nix homepage = "https://github.com/jovanlanik/gtklock"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + maintainers = with maintainers; [ dit7ya aleksana ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "gtklock"; }; }) diff --git a/pkgs/by-name/gt/gtklp/package.nix b/pkgs/by-name/gt/gtklp/package.nix index f77150eb5c5c5f..7ed917221c8f80 100644 --- a/pkgs/by-name/gt/gtklp/package.nix +++ b/pkgs/by-name/gt/gtklp/package.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation (finalAttrs: { install -D -m0644 -t $doc/share/doc AUTHORS BUGS ChangeLog README USAGE ''; - meta = { + meta = with lib; { homepage = "https://gtklp.sirtobi.com"; description = "GTK-based graphical frontend for CUPS"; - license = with lib.licenses; [ gpl2Only ]; + license = with licenses; [ gpl2Only ]; mainProgram = "gtklp"; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/gt/gtksheet/package.nix b/pkgs/by-name/gt/gtksheet/package.nix index b4f952077b190d..90d26f14672230 100644 --- a/pkgs/by-name/gt/gtksheet/package.nix +++ b/pkgs/by-name/gt/gtksheet/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation (finalAttrs: { env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types"; - meta = { + meta = with lib; { description = "Spreadsheet widget for GTK+"; homepage = "https://fpaquet.github.io/gtksheet/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ wegank ]; - platforms = lib.platforms.unix; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ wegank ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/gt/gtkwave/package.nix b/pkgs/by-name/gt/gtkwave/package.nix index 791c20365117e7..5a68958eb86338 100644 --- a/pkgs/by-name/gt/gtkwave/package.nix +++ b/pkgs/by-name/gt/gtkwave/package.nix @@ -67,15 +67,15 @@ stdenv.mkDerivation rec { ln -sf $out/Applications/GTKWave.app/Contents/MacOS/GTKWave $out/bin/gtkwave ''; - meta = { + meta = with lib; { description = "VCD/Waveform viewer for Unix and Win32"; homepage = "https://gtkwave.sourceforge.net"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + maintainers = with maintainers; [ thoughtpolice jiegec jleightcap ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/by-name/gt/gtop/package.nix b/pkgs/by-name/gt/gtop/package.nix index 331c95b9b98fba..b785ae93015d61 100644 --- a/pkgs/by-name/gt/gtop/package.nix +++ b/pkgs/by-name/gt/gtop/package.nix @@ -19,11 +19,11 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = { + meta = with lib; { description = "System monitoring dashboard for the terminal"; homepage = "https://github.com/aksakalli/gtop"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tfc ]; + license = licenses.mit; + maintainers = with maintainers; [ tfc ]; mainProgram = "gtop"; }; } diff --git a/pkgs/by-name/gt/gtuber/package.nix b/pkgs/by-name/gt/gtuber/package.nix index 71e504cb8e5f85..34691c142d26ed 100644 --- a/pkgs/by-name/gt/gtuber/package.nix +++ b/pkgs/by-name/gt/gtuber/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation { updateScript = unstableGitUpdater { }; }; - meta = { + meta = with lib; { description = "GStreamer plugin for streaming videos from websites"; homepage = "https://rafostar.github.io/gtuber/"; - license = lib.licenses.lgpl21Plus; - maintainers = with lib.maintainers; [ chuangzhu ]; - platforms = lib.platforms.unix; + license = licenses.lgpl21Plus; + maintainers = with maintainers; [ chuangzhu ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/gu/guacamole-client/package.nix b/pkgs/by-name/gu/guacamole-client/package.nix index 41af451583b31d..808cc3d4bc63bd 100644 --- a/pkgs/by-name/gu/guacamole-client/package.nix +++ b/pkgs/by-name/gu/guacamole-client/package.nix @@ -25,17 +25,17 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Clientless remote desktop gateway"; homepage = "https://guacamole.apache.org/"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.drupol ]; + license = licenses.asl20; + maintainers = [ maintainers.drupol ]; platforms = [ "x86_64-linux" "i686-linux" ]; sourceProvenance = [ - lib.sourceTypes.binaryBytecode + sourceTypes.binaryBytecode ]; }; }) diff --git a/pkgs/by-name/gu/guacamole-server/package.nix b/pkgs/by-name/gu/guacamole-server/package.nix index a146225be312d6..f35b74a44ec3dc 100644 --- a/pkgs/by-name/gu/guacamole-server/package.nix +++ b/pkgs/by-name/gu/guacamole-server/package.nix @@ -95,12 +95,12 @@ stdenv.mkDerivation (finalAttrs: { inherit (nixosTests) guacamole-server; }; - meta = { + meta = with lib; { description = "Clientless remote desktop gateway"; homepage = "https://guacamole.apache.org/"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "guacd"; - maintainers = [ lib.maintainers.drupol ]; + maintainers = [ maintainers.drupol ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/gu/guetzli/package.nix b/pkgs/by-name/gu/guetzli/package.nix index 2ecb32068b3e45..d5c211dfc294d3 100644 --- a/pkgs/by-name/gu/guetzli/package.nix +++ b/pkgs/by-name/gu/guetzli/package.nix @@ -25,13 +25,13 @@ stdenv.mkDerivation { install bin/Release/guetzli $out/bin/ ''; - meta = { + meta = with lib; { description = "Perceptual JPEG encoder"; longDescription = "Guetzli is a JPEG encoder that aims for excellent compression density at high visual quality."; homepage = "https://github.com/google/guetzli"; - license = lib.licenses.asl20; - platforms = lib.platforms.x86_64; - maintainers = [ lib.maintainers.seppeljordan ]; + license = licenses.asl20; + platforms = platforms.x86_64; + maintainers = [ maintainers.seppeljordan ]; mainProgram = "guetzli"; }; } diff --git a/pkgs/by-name/gu/gummi/package.nix b/pkgs/by-name/gu/gummi/package.nix index 8c7af62fde9fc5..45bc498e7cfed8 100644 --- a/pkgs/by-name/gu/gummi/package.nix +++ b/pkgs/by-name/gu/gummi/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { install -Dpm644 COPYING $out/share/licenses/$name/COPYING ''; - meta = { + meta = with lib; { homepage = "https://gummi.app"; description = "Simple LaTex editor for GTK users"; mainProgram = "gummi"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ flokli ]; - platforms = with lib.platforms; linux; + license = licenses.mit; + maintainers = with maintainers; [ flokli ]; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/gu/gurobi/package.nix b/pkgs/by-name/gu/gurobi/package.nix index 4d7afdb860839b..00f920e0951c1a 100644 --- a/pkgs/by-name/gu/gurobi/package.nix +++ b/pkgs/by-name/gu/gurobi/package.nix @@ -73,18 +73,18 @@ stdenv.mkDerivation rec { passthru.libSuffix = lib.replaceStrings [ "." ] [ "" ] (lib.versions.majorMinor version); - meta = { + meta = with lib; { description = "Optimization solver for mathematical programming"; homepage = "https://www.gurobi.com"; - sourceProvenance = with lib.sourceTypes; [ + sourceProvenance = with sourceTypes; [ binaryBytecode binaryNativeCode ]; - license = lib.licenses.unfree; + license = licenses.unfree; platforms = [ "aarch64-linux" "x86_64-linux" ]; - maintainers = with lib.maintainers; [ wegank ]; + maintainers = with maintainers; [ wegank ]; }; } diff --git a/pkgs/by-name/gu/guymager/package.nix b/pkgs/by-name/gu/guymager/package.nix index 27700c07f48670..62895c36229169 100644 --- a/pkgs/by-name/gu/guymager/package.nix +++ b/pkgs/by-name/gu/guymager/package.nix @@ -67,13 +67,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Forensic imager for media acquisition"; mainProgram = "guymager"; homepage = "https://guymager.sourceforge.io"; - maintainers = with lib.maintainers; [ d3vil0p3r ]; - platforms = lib.platforms.linux; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.gpl2Only; + maintainers = with maintainers; [ d3vil0p3r ]; + platforms = platforms.linux; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.gpl2Only; }; }) diff --git a/pkgs/by-name/gv/gvolicon/package.nix b/pkgs/by-name/gv/gvolicon/package.nix index b275fdaaa1cfdc..b35175357fedba 100644 --- a/pkgs/by-name/gv/gvolicon/package.nix +++ b/pkgs/by-name/gv/gvolicon/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation { env.NIX_CFLAGS_COMPILE = "-D_POSIX_C_SOURCE"; - meta = { + meta = with lib; { description = "Simple and lightweight volume icon that sits in your system tray"; homepage = "https://github.com/Unia/gvolicon"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.bennofs ]; + platforms = platforms.linux; + license = licenses.gpl3Plus; + maintainers = [ maintainers.bennofs ]; mainProgram = "gvolicon"; }; } diff --git a/pkgs/by-name/gw/gweled/package.nix b/pkgs/by-name/gw/gweled/package.nix index 45d16fd4584864..56b4c84d58209a 100644 --- a/pkgs/by-name/gw/gweled/package.nix +++ b/pkgs/by-name/gw/gweled/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation (finalAttrs: { configureFlags = [ "--disable-setgid" ]; - meta = { + meta = with lib; { description = "Puzzle game similar to Bejeweled or Diamond Mine"; mainProgram = "gweled"; homepage = "https://gweled.org"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ aleksana ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ aleksana ]; }; }) diff --git a/pkgs/by-name/gx/gxmessage/package.nix b/pkgs/by-name/gx/gxmessage/package.nix index ff139bcee3b7ff..9d15fb8ad72087 100644 --- a/pkgs/by-name/gx/gxmessage/package.nix +++ b/pkgs/by-name/gx/gxmessage/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { texinfo ]; - meta = { + meta = with lib; { description = "GTK enabled dropin replacement for xmessage"; homepage = "https://trmusson.dreamhosters.com/programs.html#gxmessage"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ jfb ]; - platforms = with lib.platforms; linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ jfb ]; + platforms = with platforms; linux; mainProgram = "gxmessage"; }; } diff --git a/pkgs/by-name/gy/gyre-fonts/package.nix b/pkgs/by-name/gy/gyre-fonts/package.nix index 33a4bcd308e6e1..efe027585857dc 100644 --- a/pkgs/by-name/gy/gyre-fonts/package.nix +++ b/pkgs/by-name/gy/gyre-fonts/package.nix @@ -23,7 +23,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "OpenType fonts from the Gyre project, suitable for use with (La)TeX"; longDescription = '' The Gyre project started in 2006, and will @@ -33,8 +33,8 @@ stdenvNoCC.mkDerivation rec { covering all modern European languages and then some ''; homepage = "http://www.gust.org.pl/projects/e-foundry/tex-gyre/index_html#Readings"; - license = lib.licenses.lppl13c; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ bergey ]; + license = licenses.lppl13c; + platforms = platforms.all; + maintainers = with maintainers; [ bergey ]; }; } diff --git a/pkgs/by-name/gz/gzdoom/package.nix b/pkgs/by-name/gz/gzdoom/package.nix index 17051d7692e6b0..2071e84f9858e7 100644 --- a/pkgs/by-name/gz/gzdoom/package.nix +++ b/pkgs/by-name/gz/gzdoom/package.nix @@ -108,7 +108,7 @@ stdenv.mkDerivation rec { done; ''; - meta = { + meta = with lib; { homepage = "https://github.com/ZDoom/gzdoom"; description = "Modder-friendly OpenGL and Vulkan source port based on the DOOM engine"; mainProgram = "gzdoom"; @@ -116,9 +116,9 @@ stdenv.mkDerivation rec { GZDoom is a feature centric port for all DOOM engine games, based on ZDoom, adding an OpenGL renderer and powerful scripting capabilities. ''; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ azahi lassulus Gliczy diff --git a/pkgs/by-name/h2/h2/package.nix b/pkgs/by-name/h2/h2/package.nix index d060e2465b79ce..178b0caab2d768 100644 --- a/pkgs/by-name/h2/h2/package.nix +++ b/pkgs/by-name/h2/h2/package.nix @@ -48,13 +48,13 @@ maven.buildMavenPackage rec { ]; }; - meta = { + meta = with lib; { description = "Java SQL database"; homepage = "https://h2database.com/html/main.html"; changelog = "https://h2database.com/html/changelog.html"; - license = lib.licenses.mpl20; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.mpl20; + platforms = platforms.unix; + maintainers = with maintainers; [ mahe anthonyroussel ]; diff --git a/pkgs/by-name/ha/hachimarupop/package.nix b/pkgs/by-name/ha/hachimarupop/package.nix index 4bcf78fe7ed774..b9bf96a3a52a5b 100644 --- a/pkgs/by-name/ha/hachimarupop/package.nix +++ b/pkgs/by-name/ha/hachimarupop/package.nix @@ -21,11 +21,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/noriokanisawa/HachiMaruPop"; description = "Cute, Japanese font"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + license = licenses.ofl; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ha/hackgen-font/package.nix b/pkgs/by-name/ha/hackgen-font/package.nix index 9517dba23096e0..364f6bca07814d 100644 --- a/pkgs/by-name/ha/hackgen-font/package.nix +++ b/pkgs/by-name/ha/hackgen-font/package.nix @@ -21,11 +21,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Composite font of Hack and GenJyuu-Goghic"; homepage = "https://github.com/yuru7/HackGen"; - license = lib.licenses.ofl; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ natsukium ]; + license = licenses.ofl; + platforms = platforms.all; + maintainers = with maintainers; [ natsukium ]; }; }) diff --git a/pkgs/by-name/ha/hackgen-nf-font/package.nix b/pkgs/by-name/ha/hackgen-nf-font/package.nix index ad5e207356c157..afea800c550d29 100644 --- a/pkgs/by-name/ha/hackgen-nf-font/package.nix +++ b/pkgs/by-name/ha/hackgen-nf-font/package.nix @@ -21,11 +21,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Composite font of Hack, GenJyuu-Gothic and nerd-fonts"; homepage = "https://github.com/yuru7/HackGen"; - license = lib.licenses.ofl; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ natsukium ]; + license = licenses.ofl; + platforms = platforms.all; + maintainers = with maintainers; [ natsukium ]; }; }) diff --git a/pkgs/by-name/ha/hackgregator/package.nix b/pkgs/by-name/ha/hackgregator/package.nix index d914a9fc9fa945..1d2e91f3821816 100644 --- a/pkgs/by-name/ha/hackgregator/package.nix +++ b/pkgs/by-name/ha/hackgregator/package.nix @@ -50,16 +50,16 @@ rustPlatform.buildRustPackage { popd ''; - meta = { + meta = with lib; { description = "Comfortable GTK reader application for news.ycombinator.com"; homepage = "https://gitlab.com/gunibert/hackgregator"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Plus # and cc0 ]; mainProgram = "hackgregator"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ha/hadolint-sarif/package.nix b/pkgs/by-name/ha/hadolint-sarif/package.nix index e5ba0c0747d5d6..36298ab040b0a2 100644 --- a/pkgs/by-name/ha/hadolint-sarif/package.nix +++ b/pkgs/by-name/ha/hadolint-sarif/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "A CLI tool to convert hadolint diagnostics into SARIF"; homepage = "https://psastras.github.io/sarif-rs"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ getchoo ]; + license = licenses.mit; + maintainers = with maintainers; [ getchoo ]; mainProgram = "hadolint-sarif"; }; } diff --git a/pkgs/by-name/ha/halfempty/package.nix b/pkgs/by-name/ha/halfempty/package.nix index f52e2df14414b5..a8aaac2a4a4807 100644 --- a/pkgs/by-name/ha/halfempty/package.nix +++ b/pkgs/by-name/ha/halfempty/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { doCheck = true; checkTarget = "test"; - meta = { + meta = with lib; { description = "Fast, parallel test case minimization tool"; mainProgram = "halfempty"; homepage = "https://github.com/googleprojectzero/halfempty/"; - maintainers = with lib.maintainers; [ fpletz ]; - license = with lib.licenses; [ asl20 ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ fpletz ]; + license = with licenses; [ asl20 ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ha/halo/package.nix b/pkgs/by-name/ha/halo/package.nix index 70a185ecea1ec4..50ae07dd938378 100644 --- a/pkgs/by-name/ha/halo/package.nix +++ b/pkgs/by-name/ha/halo/package.nix @@ -61,16 +61,16 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://www.halo.run"; description = "Self-hosted dynamic blogging program"; - maintainers = with lib.maintainers; [ yah ]; - license = lib.licenses.gpl3Only; + maintainers = with maintainers; [ yah ]; + license = licenses.gpl3Only; platforms = [ "aarch64-linux" "x86_64-linux" ]; mainProgram = "halo"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; }; } diff --git a/pkgs/by-name/ha/hamsket/package.nix b/pkgs/by-name/ha/hamsket/package.nix index 94320d1c30d104..5cf052bd55a2bb 100644 --- a/pkgs/by-name/ha/hamsket/package.nix +++ b/pkgs/by-name/ha/hamsket/package.nix @@ -38,12 +38,12 @@ appimageTools.wrapType2 { install -Dm644 ${desktopItem}/share/applications/* $out/share/applications ''; - meta = { + meta = with lib; { description = "Free and open source messaging and emailing app that combines common web applications into one"; homepage = "https://github.com/TheGoddessInari/hamsket"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ nova-madeline ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ nova-madeline ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/ha/handheld-daemon-ui/package.nix b/pkgs/by-name/ha/handheld-daemon-ui/package.nix index 2454a82642bbfa..9d865e83c64663 100644 --- a/pkgs/by-name/ha/handheld-daemon-ui/package.nix +++ b/pkgs/by-name/ha/handheld-daemon-ui/package.nix @@ -30,13 +30,13 @@ appimageTools.wrapType2 { cp ${extractedFiles}/hhd-ui.png $iconDir ''; - meta = { + meta = with lib; { description = "UI for the Handheld Daemon"; homepage = "https://github.com/hhd-dev/hhd-ui"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ toast ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ toast ]; mainProgram = "hhd-ui"; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/ha/hanko/package.nix b/pkgs/by-name/ha/hanko/package.nix index 4b9eff1b10dc49..23b83fd8dc0d69 100644 --- a/pkgs/by-name/ha/hanko/package.nix +++ b/pkgs/by-name/ha/hanko/package.nix @@ -27,12 +27,12 @@ rustPlatform.buildRustPackage rec { installShellCompletion assets/completions/hanko.fish ''; - meta = { + meta = with lib; { description = "Keeps your Git allowed signers file up to date"; homepage = "https://github.com/SRv6d/hanko"; changelog = "https://github.com/SRv6d/hanko/blob/main/CHANGELOG.md"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ srv6d ]; + license = licenses.mit; + maintainers = with maintainers; [ srv6d ]; mainProgram = "hanko"; }; } diff --git a/pkgs/by-name/ha/hardinfo2/package.nix b/pkgs/by-name/ha/hardinfo2/package.nix index 8303bb7cf09be2..7ae09d21c1cd3b 100644 --- a/pkgs/by-name/ha/hardinfo2/package.nix +++ b/pkgs/by-name/ha/hardinfo2/package.nix @@ -80,16 +80,16 @@ stdenv.mkDerivation (finalAtrs: { (lib.cmakeFeature "CMAKE_INSTALL_SERVICEDIR" "${placeholder "out"}/lib") ]; - meta = { + meta = with lib; { homepage = "http://www.hardinfo2.org"; description = "System information and benchmarks for Linux systems"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus gpl3Plus lgpl2Plus ]; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.linux; mainProgram = "hardinfo2"; }; }) diff --git a/pkgs/by-name/ha/harec/package.nix b/pkgs/by-name/ha/harec/package.nix index c80e8cb0126bf1..d18505128d8ae4 100644 --- a/pkgs/by-name/ha/harec/package.nix +++ b/pkgs/by-name/ha/harec/package.nix @@ -70,18 +70,18 @@ stdenv.mkDerivation (finalAttrs: { inherit qbe; }; - meta = { + meta = with lib; { homepage = "https://harelang.org/"; description = "Bootstrapping Hare compiler written in C for POSIX systems"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ onemoresuza ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ onemoresuza ]; mainProgram = "harec"; # The upstream developers do not like proprietary operating systems; see # https://harelang.org/platforms/ # UPDATE: https://github.com/hshq/harelang provides a MacOS port platforms = - with lib.platforms; - lib.intersectLists (freebsd ++ openbsd ++ linux) (aarch64 ++ x86_64 ++ riscv64); - badPlatforms = lib.platforms.darwin; + with platforms; + intersectLists (freebsd ++ openbsd ++ linux) (aarch64 ++ x86_64 ++ riscv64); + badPlatforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/ha/harmony-music/package.nix b/pkgs/by-name/ha/harmony-music/package.nix index b1545076e659c3..5dda4afe5baad8 100644 --- a/pkgs/by-name/ha/harmony-music/package.nix +++ b/pkgs/by-name/ha/harmony-music/package.nix @@ -70,12 +70,12 @@ flutter324.buildFlutterApplication rec { }" ''; - meta = { + meta = with lib; { description = "Cross platform App for streaming Music"; homepage = "https://github.com/anandnet/Harmony-Music"; mainProgram = "harmonymusic"; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ aucub ]; - platforms = lib.platforms.linux; + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ aucub ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ha/harvid/package.nix b/pkgs/by-name/ha/harvid/package.nix index efbe45d667c044..e7b439d0484f18 100644 --- a/pkgs/by-name/ha/harvid/package.nix +++ b/pkgs/by-name/ha/harvid/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Decodes still images from movie files and serves them via HTTP"; longDescription = '' harvid's intended use-case is to efficiently provide frame-accurate data @@ -60,9 +60,9 @@ stdenv.mkDerivation (finalAttrs: { processor. ''; homepage = "http://x42.github.io/harvid"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.mitchmindtree ]; + license = licenses.gpl2Plus; + platforms = platforms.unix; + maintainers = [ maintainers.mitchmindtree ]; mainProgram = "harvid"; }; }) diff --git a/pkgs/by-name/ha/hase/package.nix b/pkgs/by-name/ha/hase/package.nix index 715856d7ee6d02..49dd16a0915177 100644 --- a/pkgs/by-name/ha/hase/package.nix +++ b/pkgs/by-name/ha/hase/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation { --replace "Exec=hase" "Exec=$out/bin/hase" ''; - meta = { + meta = with lib; { description = "Open-source artillery shooter"; mainProgram = "hase"; longDescription = '' @@ -52,8 +52,8 @@ stdenv.mkDerivation { the GP2X, Open Pandora or GCW Zero. ''; homepage = "http://ziz.gp2x.de/hase/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ colinsane ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ colinsane ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ha/hashpump/package.nix b/pkgs/by-name/ha/hashpump/package.nix index e894380898b9f4..cad77fe724199d 100644 --- a/pkgs/by-name/ha/hashpump/package.nix +++ b/pkgs/by-name/ha/hashpump/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation (finalAttrs: { mkdir -p $out/bin ''; - meta = { + meta = with lib; { description = "Tool to exploit the hash length extension attack in various hashing algorithms"; homepage = "https://github.com/bwall/HashPump"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ t4ccer ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ t4ccer ]; + platforms = platforms.linux; mainProgram = "hashpump"; }; }) diff --git a/pkgs/by-name/ha/hatari/package.nix b/pkgs/by-name/ha/hatari/package.nix index 5b654b3ab0d465..28ebf2aa9f4bab 100644 --- a/pkgs/by-name/ha/hatari/package.nix +++ b/pkgs/by-name/ha/hatari/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { SDL ]; - meta = { + meta = with lib; { homepage = "http://hatari.tuxfamily.org/"; description = "Atari ST/STE/TT/Falcon emulator"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ha/hawknl/package.nix b/pkgs/by-name/ha/hawknl/package.nix index b13b4567860bff..cc88fff69342e3 100644 --- a/pkgs/by-name/ha/hawknl/package.nix +++ b/pkgs/by-name/ha/hawknl/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { mkdir -p $out/lib $out/include ''; - meta = { + meta = with lib; { homepage = "http://hawksoft.com/hawknl/"; description = "Free, open source, game oriented network API"; - license = lib.licenses.lgpl2Plus; - platforms = lib.platforms.linux; + license = licenses.lgpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ha/hax11/package.nix b/pkgs/by-name/ha/hax11/package.nix index 5384bf28ee3ae9..5186339d22ec98 100644 --- a/pkgs/by-name/ha/hax11/package.nix +++ b/pkgs/by-name/ha/hax11/package.nix @@ -44,11 +44,11 @@ multiStdenv.mkDerivation (finalAttrs: { updateScript = unstableGitUpdater { }; }; - meta = { + meta = with lib; { homepage = "https://github.com/CyberShadow/hax11"; description = "Hackbrary to Hook and Augment X11 protocol calls"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ cybershadow ]; - platforms = lib.platforms.linux; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ cybershadow ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ha/hayabusa/package.nix b/pkgs/by-name/ha/hayabusa/package.nix index 830cb388e9aeb2..cdbf7c658898a5 100644 --- a/pkgs/by-name/ha/hayabusa/package.nix +++ b/pkgs/by-name/ha/hayabusa/package.nix @@ -40,12 +40,12 @@ rustPlatform.buildRustPackage { install -Dm444 src/daemon/hayabusa.service -t $out/lib/systemd/system/ ''; - meta = { + meta = with lib; { description = "Swift rust fetch program"; homepage = "https://github.com/notarin/hayabusa"; - license = lib.licenses.cc-by-nc-nd-40; - maintainers = with lib.maintainers; [ ]; + license = licenses.cc-by-nc-nd-40; + maintainers = with maintainers; [ ]; mainProgram = "hayabusa"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ha/haylxon/package.nix b/pkgs/by-name/ha/haylxon/package.nix index 5f8f71f4114f3e..f265560b7b47ef 100644 --- a/pkgs/by-name/ha/haylxon/package.nix +++ b/pkgs/by-name/ha/haylxon/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Security ]; - meta = { + meta = with lib; { description = "Save screenshots of urls and webpages from terminal"; homepage = "https://github.com/pwnwriter/haylxon"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ scientiac ]; + license = licenses.mit; + maintainers = with maintainers; [ scientiac ]; mainProgram = "hxn"; }; } diff --git a/pkgs/by-name/hd/hdate/package.nix b/pkgs/by-name/hd/hdate/package.nix index cb7b8fcf4ada91..ac851af9753732 100644 --- a/pkgs/by-name/hd/hdate/package.nix +++ b/pkgs/by-name/hd/hdate/package.nix @@ -11,10 +11,10 @@ stdenv.mkDerivation rec { url = "https://sourceforge.net/projects/libhdate/files/libhdate/libhdate-${version}/libhdate-${version}.tar.bz2"; sha256 = "3c930a8deb57c01896dc37f0d7804e5a330ee8e88c4ff610b71f9d2b02c17762"; }; - meta = { + meta = with lib; { description = "Hebrew calendar and solar astronomical times library and utilities"; homepage = "https://sourceforge.net/projects/libhdate/"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ CharlesHD ]; + license = licenses.gpl3; + maintainers = with maintainers; [ CharlesHD ]; }; } diff --git a/pkgs/by-name/hd/hdfview/package.nix b/pkgs/by-name/hd/hdfview/package.nix index f3d9049485fe19..990b0da17c9eb0 100644 --- a/pkgs/by-name/hd/hdfview/package.nix +++ b/pkgs/by-name/hd/hdfview/package.nix @@ -94,13 +94,13 @@ stdenv.mkDerivation (finalAttrs: { find $out/lib/app{,/mods}/doc/javadocs -name "*.html" -exec strip-nondeterminism --type javadoc {} + ''; - meta = { + meta = with lib; { description = "A visual tool for browsing and editing HDF4 and HDF5 files"; - license = lib.licenses.free; # BSD-like + license = licenses.free; # BSD-like homepage = "https://www.hdfgroup.org/downloads/hdfview"; downloadPage = "https://github.com/HDFGroup/hdfview"; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ jiegec ]; + platforms = platforms.unix; + maintainers = with maintainers; [ jiegec ]; mainProgram = "HDFView"; # Startup issue is described here: # https://github.com/NixOS/nixpkgs/issues/340048 A possible solution is diff --git a/pkgs/by-name/he/hellmaker/package.nix b/pkgs/by-name/he/hellmaker/package.nix index 4977b1a5610b10..ead6179adff6af 100644 --- a/pkgs/by-name/he/hellmaker/package.nix +++ b/pkgs/by-name/he/hellmaker/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Generate FUD backdoors"; homepage = "https://github.com/0xNinjaCyclone/hellMaker"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tochiaha ]; + license = licenses.mit; + maintainers = with maintainers; [ tochiaha ]; mainProgram = "hellmaker"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/he/hello-unfree/package.nix b/pkgs/by-name/he/hello-unfree/package.nix index 4f8d2187f8a99e..e1f7f89e265799 100644 --- a/pkgs/by-name/he/hello-unfree/package.nix +++ b/pkgs/by-name/he/hello-unfree/package.nix @@ -19,10 +19,10 @@ stdenv.mkDerivation { chmod +x $out/bin/hello-unfree ''; - meta = { + meta = with lib; { description = "Example package with unfree license (for testing)"; - license = lib.licenses.unfree; - maintainers = [ lib.maintainers.oxij ]; + license = licenses.unfree; + maintainers = [ maintainers.oxij ]; mainProgram = "hello-unfree"; }; } diff --git a/pkgs/by-name/he/hellwal/package.nix b/pkgs/by-name/he/hellwal/package.nix index 6a35ba738126f8..b6327aa67a6e24 100644 --- a/pkgs/by-name/he/hellwal/package.nix +++ b/pkgs/by-name/he/hellwal/package.nix @@ -19,15 +19,15 @@ stdenv.mkDerivation (finalAttrs: { mkdir -p $out/share/docs/hellwal cp -r templates themes $out/share/docs/hellwal ''; - meta = { + meta = with lib; { homepage = "https://github.com/danihek/hellwal"; description = "Fast, extensible color palette generator"; longDescription = '' Pywal-like color palette generator, but faster and in C. ''; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ danihek ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ danihek ]; mainProgram = "hellwal"; }; }) diff --git a/pkgs/by-name/he/helm-dashboard/package.nix b/pkgs/by-name/he/helm-dashboard/package.nix index e3ebea92a4cef6..df83a830c7adda 100644 --- a/pkgs/by-name/he/helm-dashboard/package.nix +++ b/pkgs/by-name/he/helm-dashboard/package.nix @@ -26,7 +26,7 @@ buildGoModule rec { "-X main.version=v${version}" ]; - meta = { + meta = with lib; { description = "Simplified way of working with Helm"; mainProgram = "helm-dashboard"; longDescription = '' @@ -34,7 +34,7 @@ buildGoModule rec { see their revision history and corresponding k8s resources. ''; homepage = "https://github.com/komodorio/helm-dashboard/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ qjoly ]; + license = licenses.asl20; + maintainers = with maintainers; [ qjoly ]; }; } diff --git a/pkgs/by-name/he/helm/package.nix b/pkgs/by-name/he/helm/package.nix index 0919ddef6bf090..796a297bb1b7a4 100644 --- a/pkgs/by-name/he/helm/package.nix +++ b/pkgs/by-name/he/helm/package.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail "/usr/share/" "$out/share/" ''; - meta = { + meta = with lib; { homepage = "https://tytel.org/helm"; description = "Free, cross-platform, polyphonic synthesizer"; longDescription = '' @@ -86,12 +86,12 @@ stdenv.mkDerivation (finalAttrs: { Simple arpeggiator Effects: Formant filter, stutter, delay ''; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ magnetophon bot-wxt1221 ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "helm"; }; }) diff --git a/pkgs/by-name/he/heroku/package.nix b/pkgs/by-name/he/heroku/package.nix index 8469e25788a134..6fca87838c88d0 100644 --- a/pkgs/by-name/he/heroku/package.nix +++ b/pkgs/by-name/he/heroku/package.nix @@ -42,15 +42,15 @@ stdenv.mkDerivation { update-source-version heroku "$version" "$hash" "$url" ''; - meta = { + meta = with lib; { homepage = "https://devcenter.heroku.com/articles/heroku-cli"; description = "Everything you need to get started using Heroku"; mainProgram = "heroku"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ aflatter mirdhyn ]; - license = lib.licenses.mit; - platforms = with lib.platforms; unix; + license = licenses.mit; + platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/he/hetzner-kube/package.nix b/pkgs/by-name/he/hetzner-kube/package.nix index beb912964904dd..986fbfaab9adb9 100644 --- a/pkgs/by-name/he/hetzner-kube/package.nix +++ b/pkgs/by-name/he/hetzner-kube/package.nix @@ -44,11 +44,11 @@ buildGoModule rec { installShellCompletion --bash hetzner-kube ''; - meta = { + meta = with lib; { description = "CLI tool for provisioning Kubernetes clusters on Hetzner Cloud"; mainProgram = "hetzner-kube"; homepage = "https://github.com/xetys/hetzner-kube"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ eliasp ]; + license = licenses.asl20; + maintainers = with maintainers; [ eliasp ]; }; } diff --git a/pkgs/by-name/he/hex-a-hop/package.nix b/pkgs/by-name/he/hex-a-hop/package.nix index 8cb03266da08f9..8da34967eee14d 100644 --- a/pkgs/by-name/he/hex-a-hop/package.nix +++ b/pkgs/by-name/he/hex-a-hop/package.nix @@ -42,17 +42,17 @@ stdenv.mkDerivation rec { install -Dm644 ${desktop} $out/share/applications/${pname}.desktop ''; - meta = { + meta = with lib; { description = "Puzzle game based on hexagonal tiles"; mainProgram = "hex-a-hop"; homepage = "http://hexahop.sourceforge.net"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus # Main code cc-by-30 # Assets lgpl2Plus # i18n lgpl3Plus # source files from Lips of Suna ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ rampoina ]; + platforms = platforms.linux; + maintainers = with maintainers; [ rampoina ]; }; } diff --git a/pkgs/by-name/he/hexchat/package.nix b/pkgs/by-name/he/hexchat/package.nix index 1834fceda867d5..09923438879fc4 100644 --- a/pkgs/by-name/he/hexchat/package.nix +++ b/pkgs/by-name/he/hexchat/package.nix @@ -80,11 +80,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/hexchat --prefix PYTHONPATH : "$PYTHONPATH" ''; - meta = { + meta = with lib; { description = "Popular and easy to use graphical IRC (chat) client"; homepage = "https://hexchat.github.io/"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ romildo ]; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/he/hexdiff/package.nix b/pkgs/by-name/he/hexdiff/package.nix index 3b22afda3f198f..6010a933165017 100644 --- a/pkgs/by-name/he/hexdiff/package.nix +++ b/pkgs/by-name/he/hexdiff/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/ahroach/hexdiff"; description = "Terminal application for differencing two binary files, with color-coded output"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ rogarb ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ rogarb ]; + platforms = platforms.linux; mainProgram = "hexdiff"; }; } diff --git a/pkgs/by-name/he/hexedit/package.nix b/pkgs/by-name/he/hexedit/package.nix index e592d6633b6ce3..3d17bf044187bb 100644 --- a/pkgs/by-name/he/hexedit/package.nix +++ b/pkgs/by-name/he/hexedit/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ ncurses ]; - meta = { + meta = with lib; { description = "View and edit files in hexadecimal or in ASCII"; homepage = "http://rigaux.org/hexedit.html"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.gpl2Plus; + platforms = platforms.unix; + maintainers = with maintainers; [ sigmanificient ]; mainProgram = "hexedit"; }; }) diff --git a/pkgs/by-name/he/hexgui/package.nix b/pkgs/by-name/he/hexgui/package.nix index 69278690de2a7b..d1b443817a13d0 100644 --- a/pkgs/by-name/he/hexgui/package.nix +++ b/pkgs/by-name/he/hexgui/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation { wrapProgram $out/bin/hexgui --prefix PATH : ${lib.makeBinPath [ jdk ]} ''; - meta = { + meta = with lib; { description = "GUI for the board game Hex"; mainProgram = "hexgui"; homepage = "https://github.com/selinger/hexgui"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.ursi ]; + license = licenses.gpl3; + maintainers = [ maintainers.ursi ]; }; } diff --git a/pkgs/by-name/he/hexxy/package.nix b/pkgs/by-name/he/hexxy/package.nix index 3864da545207f0..bd36be1e74154f 100644 --- a/pkgs/by-name/he/hexxy/package.nix +++ b/pkgs/by-name/he/hexxy/package.nix @@ -28,11 +28,11 @@ buildGoModule { ]; }; - meta = { + meta = with lib; { description = "A modern and beautiful alternative to xxd and hexdump"; homepage = "https://github.com/sweetbbak/hexxy"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.NotAShelf ]; + license = licenses.mit; + maintainers = [ maintainers.NotAShelf ]; mainProgram = "hexxy"; }; } diff --git a/pkgs/by-name/hf/hfsprogs/package.nix b/pkgs/by-name/hf/hfsprogs/package.nix index 17b787b08b83cc..0b0869294014b8 100644 --- a/pkgs/by-name/hf/hfsprogs/package.nix +++ b/pkgs/by-name/hf/hfsprogs/package.nix @@ -32,9 +32,9 @@ stdenv.mkDerivation rec { install -Dm 444 "fsck_hfs/fsck_hfs.8" "$out/share/man/man8/fsck.hfsplus.8" ''; - meta = { + meta = with lib; { description = "HFS/HFS+ user space utils"; - license = lib.licenses.apple-psl20; - platforms = lib.platforms.linux; + license = licenses.apple-psl20; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/hi/hickory-dns/package.nix b/pkgs/by-name/hi/hickory-dns/package.nix index b845aeaa85f668..bbafaa5be77c61 100644 --- a/pkgs/by-name/hi/hickory-dns/package.nix +++ b/pkgs/by-name/hi/hickory-dns/package.nix @@ -34,12 +34,12 @@ rustPlatform.buildRustPackage rec { ]; }; - meta = { + meta = with lib; { description = "Rust based DNS client, server, and resolver"; homepage = "https://hickory-dns.org/"; - maintainers = with lib.maintainers; [ colinsane ]; - platforms = lib.platforms.linux; - license = with lib.licenses; [ + maintainers = with maintainers; [ colinsane ]; + platforms = platforms.linux; + license = with licenses; [ asl20 mit ]; diff --git a/pkgs/by-name/hi/hidden-bar/package.nix b/pkgs/by-name/hi/hidden-bar/package.nix index aaccb68fdf9218..81fd38c0f96965 100644 --- a/pkgs/by-name/hi/hidden-bar/package.nix +++ b/pkgs/by-name/hi/hidden-bar/package.nix @@ -27,12 +27,12 @@ stdenvNoCC.mkDerivation rec { nativeBuildInputs = [ undmg ]; - meta = { + meta = with lib; { description = "Ultra-light MacOS utility that helps hide menu bar icons"; homepage = "https://github.com/dwarvesf/hidden"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ donteatoreo ]; - platforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.mit; + maintainers = with maintainers; [ donteatoreo ]; + platforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/hi/hiraeth/package.nix b/pkgs/by-name/hi/hiraeth/package.nix index c69ec6ac34faf4..f886fdf3ce8729 100644 --- a/pkgs/by-name/hi/hiraeth/package.nix +++ b/pkgs/by-name/hi/hiraeth/package.nix @@ -16,10 +16,10 @@ buildGoModule rec { vendorHash = "sha256-bp9xDB7tplHEBR1Z+Ouks2ZwcktAhaZ/zSSPcu7LWr8="; - meta = { + meta = with lib; { description = "Share files with an expiration date"; - license = lib.licenses.agpl3Plus; - maintainers = [ lib.maintainers.lukaswrz ]; + license = licenses.agpl3Plus; + maintainers = [ maintainers.lukaswrz ]; mainProgram = "hiraeth"; }; } diff --git a/pkgs/by-name/hn/hn-text/package.nix b/pkgs/by-name/hn/hn-text/package.nix index e07f31a342308e..80cb7eeeaeda07 100644 --- a/pkgs/by-name/hn/hn-text/package.nix +++ b/pkgs/by-name/hn/hn-text/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Fast, easy-to-use and distraction-free Hacker News terminal client"; homepage = "https://github.com/piqoni/hn-text"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "hn-text"; - maintainers = with lib.maintainers; [ Guanran928 ]; + maintainers = with maintainers; [ Guanran928 ]; }; } diff --git a/pkgs/by-name/ho/home-manager/package.nix b/pkgs/by-name/ho/home-manager/package.nix index 58fc93c3265952..3b681312d8c62f 100644 --- a/pkgs/by-name/ho/home-manager/package.nix +++ b/pkgs/by-name/ho/home-manager/package.nix @@ -83,7 +83,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { url = "https://github.com/nix-community/home-manager/"; }; - meta = { + meta = with lib; { homepage = "https://nix-community.github.io/home-manager/"; description = "Nix-based user environment configurator"; longDescription = '' @@ -92,9 +92,9 @@ stdenvNoCC.mkDerivation (finalAttrs: { found in Nixpkgs. It allows declarative configuration of user specific (non global) packages and dotfiles. ''; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "home-manager"; - maintainers = with lib.maintainers; [ bryango ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ bryango ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ho/homebox/package.nix b/pkgs/by-name/ho/homebox/package.nix index 48d4b62bf80fc2..8c8fbd37c9160a 100644 --- a/pkgs/by-name/ho/homebox/package.nix +++ b/pkgs/by-name/ho/homebox/package.nix @@ -78,12 +78,12 @@ buildGo123Module { }; }; - meta = { + meta = with lib; { mainProgram = "api"; homepage = "https://homebox.software/"; description = "Inventory and organization system built for the Home User"; - maintainers = with lib.maintainers; [ patrickdag ]; - license = lib.licenses.agpl3Only; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ patrickdag ]; + license = licenses.agpl3Only; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ho/horcrux/package.nix b/pkgs/by-name/ho/horcrux/package.nix index cd54cd4f060b5d..39c20574222429 100644 --- a/pkgs/by-name/ho/horcrux/package.nix +++ b/pkgs/by-name/ho/horcrux/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = null; - meta = { + meta = with lib; { description = "Split your file into encrypted fragments so that you don't need to remember a passcode"; homepage = "https://github.com/jesseduffield/horcrux"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "horcrux"; - maintainers = with lib.maintainers; [ mh ]; + maintainers = with maintainers; [ mh ]; }; } diff --git a/pkgs/by-name/ho/horizon-eda/base.nix b/pkgs/by-name/ho/horizon-eda/base.nix index 31c980998aa420..b6703f955791e1 100644 --- a/pkgs/by-name/ho/horizon-eda/base.nix +++ b/pkgs/by-name/ho/horizon-eda/base.nix @@ -63,14 +63,14 @@ rec { CASROOT = opencascade-occt; - meta = { + meta = with lib; { description = "Free EDA software to develop printed circuit boards"; homepage = "https://horizon-eda.org"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ guserav jue89 ]; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ho/hosts-bl/package.nix b/pkgs/by-name/ho/hosts-bl/package.nix index c7b06afecd17d8..0c74e0d8eef150 100644 --- a/pkgs/by-name/ho/hosts-bl/package.nix +++ b/pkgs/by-name/ho/hosts-bl/package.nix @@ -21,12 +21,12 @@ buildGoModule rec { vendorHash = null; - meta = { + meta = with lib; { homepage = "https://github.com/ScriptTiger/Hosts-BL"; description = "Simple tool to handle hosts file black lists"; mainProgram = "Hosts-BL"; - maintainers = [ lib.maintainers.puffnfresh ]; - platforms = lib.platforms.unix; - license = lib.licenses.mit; + maintainers = [ maintainers.puffnfresh ]; + platforms = platforms.unix; + license = licenses.mit; }; } diff --git a/pkgs/by-name/hp/hpp2plantuml/package.nix b/pkgs/by-name/hp/hpp2plantuml/package.nix index 853d938ac68cad..599a261145d930 100644 --- a/pkgs/by-name/hp/hpp2plantuml/package.nix +++ b/pkgs/by-name/hp/hpp2plantuml/package.nix @@ -23,11 +23,11 @@ python3Packages.buildPythonApplication rec { nativeCheckInputs = with python3Packages; [ pytest ]; - meta = { + meta = with lib; { description = "Convert C++ header files to PlantUML"; homepage = "https://github.com/thibaultmarin/hpp2plantuml"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "hpp2plantuml"; - maintainers = with lib.maintainers; [ eymeric ]; + maintainers = with maintainers; [ eymeric ]; }; } diff --git a/pkgs/by-name/hr/hred/package.nix b/pkgs/by-name/hr/hred/package.nix index d946f8665b07e4..99ad5693413f7f 100644 --- a/pkgs/by-name/hr/hred/package.nix +++ b/pkgs/by-name/hr/hred/package.nix @@ -30,11 +30,11 @@ buildNpmPackage rec { ''; }; - meta = { + meta = with lib; { description = "Command-line tool to extract data from HTML"; mainProgram = "hred"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/danburzo/hred"; - maintainers = with lib.maintainers; [ tejing ]; + maintainers = with maintainers; [ tejing ]; }; } diff --git a/pkgs/by-name/hs/hstr/package.nix b/pkgs/by-name/hs/hstr/package.nix index a92128622780c3..8f8390e433625d 100644 --- a/pkgs/by-name/hs/hstr/package.nix +++ b/pkgs/by-name/hs/hstr/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { configureFlags = [ "--prefix=$(out)" ]; - meta = { + meta = with lib; { homepage = "https://github.com/dvorka/hstr"; description = "Shell history suggest box - easily view, navigate, search and use your command history"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.matthiasbeyer ]; - platforms = with lib.platforms; linux ++ darwin; + license = licenses.asl20; + maintainers = [ maintainers.matthiasbeyer ]; + platforms = with platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/ht/hterm/package.nix b/pkgs/by-name/ht/hterm/package.nix index 22acf86af8925c..03059c58566095 100644 --- a/pkgs/by-name/ht/hterm/package.nix +++ b/pkgs/by-name/ht/hterm/package.nix @@ -55,18 +55,18 @@ stdenv.mkDerivation (finalAttrs: { updateScript = ./update.sh; }; - meta = { + meta = with lib; { homepage = "https://www.der-hammer.info/pages/terminal.html"; changelog = "https://www.der-hammer.info/terminal/CHANGELOG.txt"; description = "A terminal program for serial communication"; # See https://www.der-hammer.info/terminal/LICENSE.txt - license = lib.licenses.unfree; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; platforms = [ "x86_64-linux" "i686-linux" ]; - maintainers = with lib.maintainers; [ zebreus ]; + maintainers = with maintainers; [ zebreus ]; mainProgram = "hterm"; }; }) diff --git a/pkgs/by-name/ht/html-minifier/package.nix b/pkgs/by-name/ht/html-minifier/package.nix index 81bf3e65fdf8aa..57fd488e703e02 100644 --- a/pkgs/by-name/ht/html-minifier/package.nix +++ b/pkgs/by-name/ht/html-minifier/package.nix @@ -21,11 +21,11 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = { + meta = with lib; { description = "Highly configurable, well-tested, JavaScript-based HTML minifier"; homepage = "https://github.com/kangax/html-minifier"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "html-minifier"; - maintainers = with lib.maintainers; [ chris-martin ]; + maintainers = with maintainers; [ chris-martin ]; }; } diff --git a/pkgs/by-name/ht/html2text/package.nix b/pkgs/by-name/ht/html2text/package.nix index 7e6e46d6033f0c..ca0fdb2ecafad5 100644 --- a/pkgs/by-name/ht/html2text/package.nix +++ b/pkgs/by-name/ht/html2text/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { buildInputs = lib.optional stdenv.hostPlatform.isDarwin libiconv; - meta = { + meta = with lib; { description = "Convert HTML to plain text"; mainProgram = "html2text"; homepage = "https://gitlab.com/grobian/html2text"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.eikek ]; + license = licenses.gpl2Plus; + platforms = platforms.unix; + maintainers = [ maintainers.eikek ]; }; } diff --git a/pkgs/by-name/ht/httpstat/package.nix b/pkgs/by-name/ht/httpstat/package.nix index a267bbaf4d5b45..2671998369745e 100644 --- a/pkgs/by-name/ht/httpstat/package.nix +++ b/pkgs/by-name/ht/httpstat/package.nix @@ -21,11 +21,11 @@ python3Packages.buildPythonApplication rec { LC_ALL = "en_US.UTF-8"; - meta = { + meta = with lib; { description = "curl statistics made simple"; mainProgram = "httpstat"; homepage = "https://github.com/reorx/httpstat"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nequissimus ]; + license = licenses.mit; + maintainers = with maintainers; [ nequissimus ]; }; } diff --git a/pkgs/by-name/ht/httptoolkit-server/package.nix b/pkgs/by-name/ht/httptoolkit-server/package.nix index 1bc90738b120ff..6594ad6274b467 100644 --- a/pkgs/by-name/ht/httptoolkit-server/package.nix +++ b/pkgs/by-name/ht/httptoolkit-server/package.nix @@ -162,12 +162,12 @@ buildNpmPackage' { inherit nodeDatachannel; }; - meta = { + meta = with lib; { description = "Backend for HTTP Toolkit"; homepage = "https://httptoolkit.com/"; - license = lib.licenses.agpl3Plus; + license = licenses.agpl3Plus; mainProgram = "httptoolkit-server"; - maintainers = with lib.maintainers; [ tomasajt ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ tomasajt ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/hu/hueadm/package.nix b/pkgs/by-name/hu/hueadm/package.nix index 51986732b1d555..d1d26438584d56 100644 --- a/pkgs/by-name/hu/hueadm/package.nix +++ b/pkgs/by-name/hu/hueadm/package.nix @@ -19,11 +19,11 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = { + meta = with lib; { description = "Command line management interface to Philips Hue"; homepage = "https://github.com/bahamas10/hueadm"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; mainProgram = "hueadm"; }; } diff --git a/pkgs/by-name/hu/hullcaster/package.nix b/pkgs/by-name/hu/hullcaster/package.nix index ec7d11575aece1..666d0cfbddcdba 100644 --- a/pkgs/by-name/hu/hullcaster/package.nix +++ b/pkgs/by-name/hu/hullcaster/package.nix @@ -22,10 +22,10 @@ rustPlatform.buildRustPackage rec { "--skip gpodder::tests::gpodder" ]; - meta = { + meta = with lib; { description = "Terminal-based podcast manager built in Rust"; homepage = "https://github.com/gilcu3/hullcaster"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ kiara ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ kiara ]; }; } diff --git a/pkgs/by-name/hw/hwdata/package.nix b/pkgs/by-name/hw/hwdata/package.nix index 10b24a35a2e68d..756711974a8761 100644 --- a/pkgs/by-name/hw/hwdata/package.nix +++ b/pkgs/by-name/hw/hwdata/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { doCheck = false; # this does build machine-specific checks (e.g. enumerates PCI bus) - meta = { + meta = with lib; { homepage = "https://github.com/vcrhonek/hwdata"; description = "Hardware Database, including Monitors, pci.ids, usb.ids, and video cards"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ pedrohlc ]; - platforms = lib.platforms.all; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ pedrohlc ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/hx/hxtools/package.nix b/pkgs/by-name/hx/hxtools/package.nix index c2a560f8749482..33f047b51b8128 100644 --- a/pkgs/by-name/hx/hxtools/package.nix +++ b/pkgs/by-name/hx/hxtools/package.nix @@ -27,17 +27,17 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { homepage = "https://inai.de/projects/hxtools/"; description = "Collection of small tools over the years by j.eng"; # Taken from https://codeberg.org/jengelh/hxtools/src/branch/master/LICENSES.txt - license = with lib.licenses; [ + license = with licenses; [ mit bsd2Patent lgpl21Plus gpl2Plus ]; - maintainers = with lib.maintainers; [ meator ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ meator ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/hy/hydra-check/package.nix b/pkgs/by-name/hy/hydra-check/package.nix index 11bd4c99373f00..60886ef8b1b584 100644 --- a/pkgs/by-name/hy/hydra-check/package.nix +++ b/pkgs/by-name/hy/hydra-check/package.nix @@ -37,11 +37,11 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/hydra-check --shell-completion zsh) ''; - meta = { + meta = with lib; { description = "Check hydra for the build status of a package"; homepage = "https://github.com/nix-community/hydra-check"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ makefu artturin bryango diff --git a/pkgs/by-name/hy/hydra-cli/package.nix b/pkgs/by-name/hy/hydra-cli/package.nix index bed0297be54e88..5402f61f7ddf4c 100644 --- a/pkgs/by-name/hy/hydra-cli/package.nix +++ b/pkgs/by-name/hy/hydra-cli/package.nix @@ -38,12 +38,12 @@ rustPlatform.buildRustPackage rec { version = "0.3.0"; }; - meta = { + meta = with lib; { description = "Client for the Hydra CI"; mainProgram = "hydra-cli"; homepage = "https://github.com/nlewo/hydra-cli"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ + license = with licenses; [ mit ]; + maintainers = with maintainers; [ lewo aleksana ]; diff --git a/pkgs/by-name/hy/hydrapaper/package.nix b/pkgs/by-name/hy/hydrapaper/package.nix index 6935eece8a3d41..96ab291a9f6f7f 100644 --- a/pkgs/by-name/hy/hydrapaper/package.nix +++ b/pkgs/by-name/hy/hydrapaper/package.nix @@ -72,12 +72,12 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = { + meta = with lib; { description = "GNOME utility for setting different wallpapers on individual monitors"; homepage = "https://hydrapaper.gabmus.org"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ lachrymal ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ lachrymal ]; mainProgram = "hydrapaper"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/hy/hyenae/package.nix b/pkgs/by-name/hy/hyenae/package.nix index f4f3152338e8be..df3923733faaf5 100644 --- a/pkgs/by-name/hy/hyenae/package.nix +++ b/pkgs/by-name/hy/hyenae/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { libpcap ]; - meta = { + meta = with lib; { description = ""; homepage = "https://sourceforge.net/projects/hyenae/"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.marcweber ]; - platforms = lib.platforms.linux; + license = licenses.gpl3; + maintainers = [ maintainers.marcweber ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/hy/hyfetch/package.nix b/pkgs/by-name/hy/hyfetch/package.nix index 6e11e1c0d7ea84..b07de90c360abf 100644 --- a/pkgs/by-name/hy/hyfetch/package.nix +++ b/pkgs/by-name/hy/hyfetch/package.nix @@ -55,7 +55,7 @@ python3Packages.buildPythonApplication rec { --prefix PATH : ${lib.makeBinPath [ pciutils ]} ''; - meta = { + meta = with lib; { description = "neofetch with pride flags <3"; longDescription = '' HyFetch is a command-line system information tool fork of neofetch. @@ -67,9 +67,9 @@ python3Packages.buildPythonApplication rec { icon set you are using, etc. ''; homepage = "https://github.com/hykilpikonna/HyFetch"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "hyfetch"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ yisuidenghua isabelroses nullcube diff --git a/pkgs/by-name/hy/hyper-cmd-utils/package.nix b/pkgs/by-name/hy/hyper-cmd-utils/package.nix index 41d922e864c3a7..977409b7a06575 100644 --- a/pkgs/by-name/hy/hyper-cmd-utils/package.nix +++ b/pkgs/by-name/hy/hyper-cmd-utils/package.nix @@ -30,12 +30,12 @@ buildNpmPackage { }) ]; - meta = { + meta = with lib; { description = "HyperCmd Utils"; homepage = "https://github.com/holepunchto/hyper-cmd-utils"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ davhau ]; + license = licenses.mit; + maintainers = with maintainers; [ davhau ]; mainProgram = "hyper-cmd-utils"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/hy/hyperbeam/package.nix b/pkgs/by-name/hy/hyperbeam/package.nix index 883c65e0c0c92e..186746b461eb69 100644 --- a/pkgs/by-name/hy/hyperbeam/package.nix +++ b/pkgs/by-name/hy/hyperbeam/package.nix @@ -28,12 +28,12 @@ buildNpmPackage rec { }) ]; - meta = { + meta = with lib; { description = "A 1-1 end-to-end encrypted internet pipe powered by Hyperswarm "; homepage = "https://github.com/holepunchto/hyperbeam"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ davhau ]; + license = licenses.mit; + maintainers = with maintainers; [ davhau ]; mainProgram = "hyperbeam"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/hy/hyperpotamus/package.nix b/pkgs/by-name/hy/hyperpotamus/package.nix index d0c293fff008b9..0456329cb46954 100644 --- a/pkgs/by-name/hy/hyperpotamus/package.nix +++ b/pkgs/by-name/hy/hyperpotamus/package.nix @@ -19,11 +19,11 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = { + meta = with lib; { description = "YAML based HTTP script processing engine"; homepage = "https://github.com/pmarkert/hyperpotamus"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "hyperpotamus"; - maintainers = with lib.maintainers; [ onny ]; + maintainers = with maintainers; [ onny ]; }; } diff --git a/pkgs/by-name/hy/hypershell/package.nix b/pkgs/by-name/hy/hypershell/package.nix index 32a394eb77802b..8df3d615562448 100644 --- a/pkgs/by-name/hy/hypershell/package.nix +++ b/pkgs/by-name/hy/hypershell/package.nix @@ -34,12 +34,12 @@ buildNpmPackage rec { $out/bin/hypershell --help ''; - meta = { + meta = with lib; { description = "Spawn shells anywhere. Fully peer-to-peer, authenticated, and end to end encrypted"; homepage = "https://github.com/holepunchto/hypershell"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ davhau ]; + license = licenses.asl20; + maintainers = with maintainers; [ davhau ]; mainProgram = "hypershell"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/hy/hyperspeedcube/package.nix b/pkgs/by-name/hy/hyperspeedcube/package.nix index 870ad595038d60..4d136008241a47 100644 --- a/pkgs/by-name/hy/hyperspeedcube/package.nix +++ b/pkgs/by-name/hy/hyperspeedcube/package.nix @@ -115,7 +115,7 @@ rustPlatform.buildRustPackage rec { touch $out/bin/nonportable ''; - meta = { + meta = with lib; { description = "Hyperspeedcube is a 3D and 4D Rubik's cube simulator"; longDescription = '' Hyperspeedcube is a modern, beginner-friendly 3D and 4D Rubik's cube @@ -124,8 +124,8 @@ rustPlatform.buildRustPackage rec { records and runs on all major operating systems plus the web. ''; homepage = "https://ajfarkas.dev/hyperspeedcube/"; - license = lib.licenses.cc-by-nc-sa-40; - maintainers = [ lib.maintainers.omnipotententity ]; + license = licenses.cc-by-nc-sa-40; + maintainers = [ maintainers.omnipotententity ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/hy/hyperssh/package.nix b/pkgs/by-name/hy/hyperssh/package.nix index 55217d2e19aaac..16b1d756b6c81c 100644 --- a/pkgs/by-name/hy/hyperssh/package.nix +++ b/pkgs/by-name/hy/hyperssh/package.nix @@ -30,12 +30,12 @@ buildNpmPackage { }) ]; - meta = { + meta = with lib; { description = "Run SSH over hyperswarm"; homepage = "https://github.com/mafintosh/hyperssh"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ davhau ]; + license = licenses.mit; + maintainers = with maintainers; [ davhau ]; mainProgram = "hyperssh"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/hy/hyprgraphics/package.nix b/pkgs/by-name/hy/hyprgraphics/package.nix index 43eb8f4b7e7dcd..b8bf2cdf6aa7e0 100644 --- a/pkgs/by-name/hy/hyprgraphics/package.nix +++ b/pkgs/by-name/hy/hyprgraphics/package.nix @@ -46,12 +46,12 @@ gcc14Stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { homepage = "https://github.com/hyprwm/hyprlang"; description = "Official implementation library for the hypr config language"; - license = lib.licenses.lgpl3Only; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + license = licenses.lgpl3Only; + platforms = platforms.all; + maintainers = with maintainers; [ fufexan khaneliman ]; diff --git a/pkgs/by-name/hy/hypridle/package.nix b/pkgs/by-name/hy/hypridle/package.nix index aa9e74b0ce5595..7a0ca8d5ced08d 100644 --- a/pkgs/by-name/hy/hypridle/package.nix +++ b/pkgs/by-name/hy/hypridle/package.nix @@ -44,11 +44,11 @@ gcc14Stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Hyprland's idle daemon"; homepage = "https://github.com/hyprwm/hypridle"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ iogamaster johnrtitor khaneliman diff --git a/pkgs/by-name/hy/hyprland-protocols/package.nix b/pkgs/by-name/hy/hyprland-protocols/package.nix index cd48610058100d..48788d914613fc 100644 --- a/pkgs/by-name/hy/hyprland-protocols/package.nix +++ b/pkgs/by-name/hy/hyprland-protocols/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation (finalAttrs: { ninja ]; - meta = { + meta = with lib; { homepage = "https://github.com/hyprwm/hyprland-protocols"; description = "Wayland protocol extensions for Hyprland"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ fufexan ]; - platforms = lib.platforms.linux; + license = licenses.bsd3; + maintainers = with maintainers; [ fufexan ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/hy/hyprland-qtutils/package.nix b/pkgs/by-name/hy/hyprland-qtutils/package.nix index 779a186bea7303..99995fd6638051 100644 --- a/pkgs/by-name/hy/hyprland-qtutils/package.nix +++ b/pkgs/by-name/hy/hyprland-qtutils/package.nix @@ -39,11 +39,11 @@ gcc14Stdenv.mkDerivation (finalAttrs: { qtWrapperArgs+=(--prefix PATH : "${makeBinPath [ pciutils ]}") ''; - meta = { + meta = with lib; { description = "Hyprland QT/qml utility apps"; homepage = "https://github.com/hyprwm/hyprland-qtutils"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.fufexan ]; - platforms = lib.platforms.linux; + license = licenses.bsd3; + maintainers = [ maintainers.fufexan ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/hy/hyprland/package.nix b/pkgs/by-name/hy/hyprland/package.nix index ad06666d323749..529e26fe9a504f 100644 --- a/pkgs/by-name/hy/hyprland/package.nix +++ b/pkgs/by-name/hy/hyprland/package.nix @@ -211,17 +211,17 @@ customStdenv.mkDerivation (finalAttrs: { updateScript = ./update.sh; }; - meta = { + meta = with lib; { homepage = "https://github.com/hyprwm/Hyprland"; description = "Dynamic tiling Wayland compositor that doesn't sacrifice on its looks"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ fufexan johnrtitor khaneliman wozeparrot ]; mainProgram = "Hyprland"; - platforms = lib.platforms.linux ++ lib.platforms.freebsd; + platforms = platforms.linux ++ platforms.freebsd; }; }) diff --git a/pkgs/by-name/hy/hyprlang/package.nix b/pkgs/by-name/hy/hyprlang/package.nix index 0cbd1babd3407f..1dec73e4ba8da8 100644 --- a/pkgs/by-name/hy/hyprlang/package.nix +++ b/pkgs/by-name/hy/hyprlang/package.nix @@ -34,12 +34,12 @@ gcc14Stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { homepage = "https://github.com/hyprwm/hyprlang"; description = "Official implementation library for the hypr config language"; - license = lib.licenses.lgpl3Only; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + license = licenses.lgpl3Only; + platforms = platforms.all; + maintainers = with maintainers; [ iogamaster fufexan ]; diff --git a/pkgs/by-name/hy/hyprlock/package.nix b/pkgs/by-name/hy/hyprlock/package.nix index d55803b4600741..4e6602b2082414 100644 --- a/pkgs/by-name/hy/hyprlock/package.nix +++ b/pkgs/by-name/hy/hyprlock/package.nix @@ -66,15 +66,15 @@ gcc14Stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Hyprland's GPU-accelerated screen locking utility"; homepage = "https://github.com/hyprwm/hyprlock"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ iynaix johnrtitor ]; mainProgram = "hyprlock"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/hy/hyprnotify/package.nix b/pkgs/by-name/hy/hyprnotify/package.nix index d89277c5cda19e..b584296f93e9ae 100644 --- a/pkgs/by-name/hy/hyprnotify/package.nix +++ b/pkgs/by-name/hy/hyprnotify/package.nix @@ -23,12 +23,12 @@ buildGoModule rec { vendorHash = "sha256-2BuWJ57jELtfj7SGr+dLdC2KFc5sD2bC8MgjUHaIXUs="; - meta = { + meta = with lib; { description = "DBus Implementation of Freedesktop Notification spec for 'hyprctl notify'"; homepage = "https://github.com/codelif/hyprnotify"; - license = lib.licenses.asl20; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ bloeckchengrafik ]; + license = licenses.asl20; + platforms = platforms.linux; + maintainers = with maintainers; [ bloeckchengrafik ]; mainProgram = "hyprnotify"; }; } diff --git a/pkgs/by-name/hy/hyprpolkitagent/package.nix b/pkgs/by-name/hy/hyprpolkitagent/package.nix index 056bd0d3aad446..e05495a0524575 100644 --- a/pkgs/by-name/hy/hyprpolkitagent/package.nix +++ b/pkgs/by-name/hy/hyprpolkitagent/package.nix @@ -36,15 +36,15 @@ stdenv.mkDerivation (finalAttrs: { qt6.qtwayland ]; - meta = { + meta = with lib; { description = "Polkit authentication agent written in QT/QML"; homepage = "https://github.com/hyprwm/hyprpolkitagent"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ fufexan johnrtitor ]; mainProgram = "hyprpolkitagent"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/hy/hyprprop/package.nix b/pkgs/by-name/hy/hyprprop/package.nix index f50e592506f69d..a940a48fd257e3 100644 --- a/pkgs/by-name/hy/hyprprop/package.nix +++ b/pkgs/by-name/hy/hyprprop/package.nix @@ -61,11 +61,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { [ desktopItem ]; passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "An xprop replacement for Hyprland"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ khaneliman ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ khaneliman ]; mainProgram = "hyprprop"; }; }) diff --git a/pkgs/by-name/hy/hyprsome/package.nix b/pkgs/by-name/hy/hyprsome/package.nix index a7bf15ee4f3b2e..2814ed0205dc1e 100644 --- a/pkgs/by-name/hy/hyprsome/package.nix +++ b/pkgs/by-name/hy/hyprsome/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-Jqx77/PDWEJ+NPJN2R6n4w9nVPXQoHeuVfYKUB3i9Lg="; - meta = { + meta = with lib; { description = "Awesome-like workspaces for Hyprland"; homepage = "https://github.com/sopa0/hyprsome"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ bhasherbel ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ bhasherbel ]; + platforms = platforms.linux; mainProgram = "hyprsome"; }; } diff --git a/pkgs/by-name/hy/hyprspace/package.nix b/pkgs/by-name/hy/hyprspace/package.nix index c0e514f83f4e0c..5468bba77c1e4a 100644 --- a/pkgs/by-name/hy/hyprspace/package.nix +++ b/pkgs/by-name/hy/hyprspace/package.nix @@ -46,15 +46,15 @@ buildGoModule rec { > pkgs/by-name/hy/hyprspace/config_generated.go ''; - meta = { + meta = with lib; { description = "Lightweight VPN Built on top of Libp2p for Truly Distributed Networks"; homepage = "https://github.com/hyprspace/hyprspace"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ gerg-l max ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "hyprspace"; }; } diff --git a/pkgs/by-name/hy/hyprsunset/package.nix b/pkgs/by-name/hy/hyprsunset/package.nix index 56755a5139548a..41d4b1cf1807be 100644 --- a/pkgs/by-name/hy/hyprsunset/package.nix +++ b/pkgs/by-name/hy/hyprsunset/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { homepage = "https://github.com/hyprwm/hyprsunset"; description = "Application to enable a blue-light filter on Hyprland"; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + platforms = platforms.linux; + maintainers = with maintainers; [ fufexan johnrtitor ]; diff --git a/pkgs/by-name/i3/i3-back/package.nix b/pkgs/by-name/i3/i3-back/package.nix index 5a165dda60798c..4f756fe0a4d9d5 100644 --- a/pkgs/by-name/i3/i3-back/package.nix +++ b/pkgs/by-name/i3/i3-back/package.nix @@ -23,13 +23,13 @@ rustPlatform.buildRustPackage rec { passthru.tests.version = testers.testVersion { package = i3-back; }; - meta = { + meta = with lib; { description = "i3/Sway utility to switch focus to your last focused window"; homepage = "https://github.com/Cretezy/i3-back"; changelog = "https://github.com/Cretezy/i3-back/blob/main/CHANGELOG.md"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ gabyx ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ gabyx ]; + platforms = platforms.linux; mainProgram = "i3-back"; }; } diff --git a/pkgs/by-name/i3/i3-open-next-ws/package.nix b/pkgs/by-name/i3/i3-open-next-ws/package.nix index aa4e601596e1fc..1d9844f7f8ba1a 100644 --- a/pkgs/by-name/i3/i3-open-next-ws/package.nix +++ b/pkgs/by-name/i3/i3-open-next-ws/package.nix @@ -13,12 +13,12 @@ rustPlatform.buildRustPackage rec { }; cargoHash = "sha256-9U0bYCbkvcZJOCd4jZog4bSJkP1ntmAFjWm7lJDdcuo="; - meta = { + meta = with lib; { description = "Workspace management utility for i3 and sway, that picks the first unused workspace automagically"; homepage = "https://github.com/JohnDowson/i3-open-next-ws"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "i3-open-next-ws"; - maintainers = with lib.maintainers; [ quantenzitrone ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ quantenzitrone ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/i3/i3pystatus/package.nix b/pkgs/by-name/i3/i3pystatus/package.nix index 84b5809f942027..77ea9a6ed76a6c 100644 --- a/pkgs/by-name/i3/i3pystatus/package.nix +++ b/pkgs/by-name/i3/i3pystatus/package.nix @@ -80,7 +80,7 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { mainProgram = "i3pystatus"; homepage = "https://github.com/enkore/i3pystatus"; description = "Complete replacement for i3status"; @@ -88,9 +88,9 @@ python3Packages.buildPythonApplication rec { i3pystatus is a growing collection of python scripts for status output compatible to i3status / i3bar of the i3 window manager. ''; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ igsha lucasew ]; diff --git a/pkgs/by-name/ic/icbm3d/package.nix b/pkgs/by-name/ic/icbm3d/package.nix index 27c398dc641c82..a1ad46745dc2f2 100644 --- a/pkgs/by-name/ic/icbm3d/package.nix +++ b/pkgs/by-name/ic/icbm3d/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cp icbm3d $out/bin ''; - meta = { + meta = with lib; { homepage = "http://www.newbreedsoftware.com/icbm3d/"; description = "3D vector-based clone of the atari game Missile Command"; mainProgram = "icbm3d"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ic/ice-bar/package.nix b/pkgs/by-name/ic/ice-bar/package.nix index df204a7092d348..f12a4f15e8f274 100644 --- a/pkgs/by-name/ic/ice-bar/package.nix +++ b/pkgs/by-name/ic/ice-bar/package.nix @@ -30,12 +30,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Powerful menu bar manager for macOS"; homepage = "https://icemenubar.app/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ donteatoreo ]; - platforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.mit; + maintainers = with maintainers; [ donteatoreo ]; + platforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/ic/icestorm/package.nix b/pkgs/by-name/ic/icestorm/package.nix index 2e443636247e61..2d5a7eab76c59b 100644 --- a/pkgs/by-name/ic/icestorm/package.nix +++ b/pkgs/by-name/ic/icestorm/package.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with lib; { description = "Documentation and tools for Lattice iCE40 FPGAs"; longDescription = '' Project IceStorm aims at reverse engineering and @@ -71,11 +71,11 @@ stdenv.mkDerivation rec { creating bitstream files. ''; homepage = "https://github.com/YosysHQ/icestorm/"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ + license = licenses.isc; + maintainers = with maintainers; [ shell thoughtpolice ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ic/icestudio/package.nix b/pkgs/by-name/ic/icestudio/package.nix index c1f3d027e7b4f2..1ae77cbcb99dac 100644 --- a/pkgs/by-name/ic/icestudio/package.nix +++ b/pkgs/by-name/ic/icestudio/package.nix @@ -106,20 +106,20 @@ buildNpmPackage rec { buildInputs = [ python3 ]; - meta = { + meta = with lib; { description = "Visual editor for open FPGA boards"; homepage = "https://github.com/FPGAwars/icestudio/"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; maintainers = - with lib.maintainers; + with maintainers; [ kiike jleightcap rcoeurjoly amerino ] - ++ [ lib.teams.ngi ]; + ++ [ teams.ngi ]; mainProgram = "icestudio"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ic/icnsify/package.nix b/pkgs/by-name/ic/icnsify/package.nix index a1017f14a43937..2d391f03c53c64 100644 --- a/pkgs/by-name/ic/icnsify/package.nix +++ b/pkgs/by-name/ic/icnsify/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-5wgioCOKvZ0J/t5v/Ic3unAA5h5Bt6MuCUzFJP7Dusw="; - meta = { + meta = with lib; { description = "Convert PNGs to .icns"; homepage = "https://github.com/uncenter/icnsify"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ uncenter ]; + license = licenses.mit; + maintainers = with maintainers; [ uncenter ]; mainProgram = "icnsify"; }; } diff --git a/pkgs/by-name/ic/icoutils/package.nix b/pkgs/by-name/ic/icoutils/package.nix index e85ef53206a82a..eb7ce0b348adcc 100644 --- a/pkgs/by-name/ic/icoutils/package.nix +++ b/pkgs/by-name/ic/icoutils/package.nix @@ -49,10 +49,10 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/genresscript --prefix PERL5LIB : $PERL5LIB ''; - meta = { + meta = with lib; { homepage = "https://www.nongnu.org/icoutils/"; description = "Set of programs to deal with Microsoft Windows(R) icon and cursor files"; - license = lib.licenses.gpl3Plus; - platforms = with lib.platforms; linux ++ darwin; + license = licenses.gpl3Plus; + platforms = with platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/id/id3/package.nix b/pkgs/by-name/id/id3/package.nix index e0cd063141c502..0cb019cd78da1c 100644 --- a/pkgs/by-name/id/id3/package.nix +++ b/pkgs/by-name/id/id3/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { makeFlags = [ "prefix=$(out)" ]; - meta = { + meta = with lib; { description = "Portable command-line mass tagger"; homepage = "https://squell.github.io/id3/"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ jecaro ]; - platforms = lib.platforms.unix; + license = licenses.bsd2; + maintainers = with maintainers; [ jecaro ]; + platforms = platforms.unix; mainProgram = "id3"; }; } diff --git a/pkgs/by-name/id/ideamaker/package.nix b/pkgs/by-name/id/ideamaker/package.nix index 20b894708736a9..455cc688545dd5 100644 --- a/pkgs/by-name/id/ideamaker/package.nix +++ b/pkgs/by-name/id/ideamaker/package.nix @@ -208,13 +208,13 @@ stdenv.mkDerivation (finalAttrs: { ''; }); - meta = { + meta = with lib; { homepage = "https://www.raise3d.com/ideamaker/"; changelog = "https://www.raise3d.com/download/ideamaker-release-notes/"; description = "Raise3D's 3D slicer software"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ cjshearer ]; + maintainers = with maintainers; [ cjshearer ]; }; }) diff --git a/pkgs/by-name/id/idle3tools/package.nix b/pkgs/by-name/id/idle3tools/package.nix index 141da480488e2a..90caefdec832b8 100644 --- a/pkgs/by-name/id/idle3tools/package.nix +++ b/pkgs/by-name/id/idle3tools/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { installFlags=DESTDIR=$out ''; - meta = { + meta = with lib; { homepage = "https://idle3-tools.sourceforge.net/"; description = "Tool to get/set the infamous idle3 timer in WD HDDs"; - license = lib.licenses.gpl3; + license = licenses.gpl3; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; mainProgram = "idle3ctl"; }; } diff --git a/pkgs/by-name/ie/ieda/package.nix b/pkgs/by-name/ie/ieda/package.nix index 87df9ce9b20b4b..5308e7be643641 100644 --- a/pkgs/by-name/ie/ieda/package.nix +++ b/pkgs/by-name/ie/ieda/package.nix @@ -107,12 +107,12 @@ stdenv.mkDerivation { enableParallelBuild = true; - meta = { + meta = with lib; { description = "Open-source EDA infracstructure and tools from Netlist to GDS for ASIC design"; homepage = "https://gitee.com/oscc-project/iEDA"; - license = lib.licenses.mulan-psl2; - maintainers = with lib.maintainers; [ xinyangli ]; + license = licenses.mulan-psl2; + maintainers = with maintainers; [ xinyangli ]; mainProgram = "iEDA"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/if/ifenslave/package.nix b/pkgs/by-name/if/ifenslave/package.nix index 1d37842df6377b..f4947447eeaca2 100644 --- a/pkgs/by-name/if/ifenslave/package.nix +++ b/pkgs/by-name/if/ifenslave/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = { + meta = with lib; { description = "Utility for enslaving networking interfaces under a bond"; mainProgram = "ifenslave"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ii/iio-hyprland/package.nix b/pkgs/by-name/ii/iio-hyprland/package.nix index 5997ee5bda851c..0fad44e7d972ed 100644 --- a/pkgs/by-name/ii/iio-hyprland/package.nix +++ b/pkgs/by-name/ii/iio-hyprland/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Listens to iio-sensor-proxy and automatically changes Hyprland output orientation"; homepage = "https://github.com/JeanSchoeller/iio-hyprland/tree/master"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ yusuf-duran ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ yusuf-duran ]; + platforms = platforms.linux; mainProgram = "iio-hyprland"; }; } diff --git a/pkgs/by-name/ij/ijhttp/package.nix b/pkgs/by-name/ij/ijhttp/package.nix index bee692d94f898f..2b6c46ee58a312 100644 --- a/pkgs/by-name/ij/ijhttp/package.nix +++ b/pkgs/by-name/ij/ijhttp/package.nix @@ -33,12 +33,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Run HTTP requests from a terminal, e.g. for HTTP request testing"; homepage = "https://www.jetbrains.com/help/idea/http-client-cli.html"; - license = lib.licenses.unfree; + license = licenses.unfree; mainProgram = "ijhttp"; - platforms = lib.platforms.all; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + platforms = platforms.all; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; }; }) diff --git a/pkgs/by-name/il/illum/package.nix b/pkgs/by-name/il/illum/package.nix index 57e0d2568a1746..0f3824e2042687 100644 --- a/pkgs/by-name/il/illum/package.nix +++ b/pkgs/by-name/il/illum/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { mv illum-d $out/bin ''; - meta = { + meta = with lib; { homepage = "https://github.com/jmesmon/illum"; description = "Daemon that wires button presses to screen backlight level"; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.dancek ]; - license = lib.licenses.agpl3Plus; + platforms = platforms.linux; + maintainers = [ maintainers.dancek ]; + license = licenses.agpl3Plus; mainProgram = "illum-d"; }; } diff --git a/pkgs/by-name/im/ima-evm-utils/package.nix b/pkgs/by-name/im/ima-evm-utils/package.nix index 62ac73d0adc0f3..800d12bc5ce7f2 100644 --- a/pkgs/by-name/im/ima-evm-utils/package.nix +++ b/pkgs/by-name/im/ima-evm-utils/package.nix @@ -40,15 +40,15 @@ stdenv.mkDerivation rec { env.MANPAGE_DOCBOOK_XSL = "${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl"; - meta = { + meta = with lib; { description = "evmctl utility to manage digital signatures of the Linux kernel integrity subsystem (IMA/EVM)"; mainProgram = "evmctl"; homepage = "https://github.com/linux-integrity/ima-evm-utils"; - license = with lib.licenses; [ + license = with licenses; [ lgpl2Plus # libimaevm gpl2Plus # evmctl ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ nickcao ]; + platforms = platforms.linux; + maintainers = with maintainers; [ nickcao ]; }; } diff --git a/pkgs/by-name/im/imapdedup/package.nix b/pkgs/by-name/im/imapdedup/package.nix index 84109cebd59312..f08a2569097135 100644 --- a/pkgs/by-name/im/imapdedup/package.nix +++ b/pkgs/by-name/im/imapdedup/package.nix @@ -21,11 +21,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "imapdedup" ]; - meta = { + meta = with lib; { description = "Duplicate email message remover"; homepage = "https://github.com/quentinsf/IMAPdedup"; - maintainers = with lib.maintainers; [ sigmanificient ]; - license = with lib.licenses; [ gpl2Only ]; + maintainers = with maintainers; [ sigmanificient ]; + license = with licenses; [ gpl2Only ]; mainProgram = "imapdedup"; }; } diff --git a/pkgs/by-name/im/imewlconverter/package.nix b/pkgs/by-name/im/imewlconverter/package.nix index d652ff4131d379..22fdbd6f391d9e 100644 --- a/pkgs/by-name/im/imewlconverter/package.nix +++ b/pkgs/by-name/im/imewlconverter/package.nix @@ -21,11 +21,11 @@ buildDotnetModule { dotnet-sdk = dotnetCorePackages.sdk_8_0; dotnet-runtime = dotnetCorePackages.aspnetcore_8_0; - meta = { + meta = with lib; { mainProgram = "ImeWlConverterCmd"; description = "FOSS program for converting IME dictionaries"; homepage = "https://github.com/studyzy/imewlconverter"; - maintainers = with lib.maintainers; [ xddxdd ]; - license = lib.licenses.gpl3Only; + maintainers = with maintainers; [ xddxdd ]; + license = licenses.gpl3Only; }; } diff --git a/pkgs/by-name/im/imgbrd-grabber/package.nix b/pkgs/by-name/im/imgbrd-grabber/package.nix index dc28c5e3132d1a..52ea793dd06c22 100644 --- a/pkgs/by-name/im/imgbrd-grabber/package.nix +++ b/pkgs/by-name/im/imgbrd-grabber/package.nix @@ -90,12 +90,12 @@ stdenv.mkDerivation (finalAttrs: { sourceRoot = "${finalAttrs.src.name}/src"; - meta = { + meta = with lib; { description = "Very customizable imageboard/booru downloader with powerful filenaming features"; - license = lib.licenses.asl20; + license = licenses.asl20; homepage = "https://bionus.github.io/imgbrd-grabber/"; mainProgram = "Grabber"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ evanjs luftmensch-luftmensch ]; diff --git a/pkgs/by-name/im/imgpkg/package.nix b/pkgs/by-name/im/imgpkg/package.nix index 9fc982f633a9d1..612d2e68df2dc7 100644 --- a/pkgs/by-name/im/imgpkg/package.nix +++ b/pkgs/by-name/im/imgpkg/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { env.CGO_ENABLED = "0"; ldflags = [ "-X=carvel.dev/imgpkg/pkg/imgpkg/cmd.Version=${version}" ]; - meta = { + meta = with lib; { description = "Store application configuration files in Docker/OCI registries"; homepage = "https://carvel.dev/imgpkg"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ benchand ]; + license = licenses.asl20; + maintainers = with maintainers; [ benchand ]; mainProgram = "imgpkg"; }; } diff --git a/pkgs/by-name/im/imhex/package.nix b/pkgs/by-name/im/imhex/package.nix index 5f18c1ec4bf07f..d92c051f72511d 100644 --- a/pkgs/by-name/im/imhex/package.nix +++ b/pkgs/by-name/im/imhex/package.nix @@ -139,14 +139,14 @@ stdenv'.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Hex Editor for Reverse Engineers, Programmers and people who value their retinas when working at 3 AM"; homepage = "https://github.com/WerWolv/ImHex"; - license = with lib.licenses; [ gpl2Only ]; - maintainers = with lib.maintainers; [ + license = with licenses; [ gpl2Only ]; + maintainers = with maintainers; [ kashw2 cafkafk ]; - platforms = with lib.platforms; linux ++ darwin; + platforms = with platforms; linux ++ darwin; }; }) diff --git a/pkgs/by-name/im/iml/package.nix b/pkgs/by-name/im/iml/package.nix index ebcbc34ebee534..dda6b6ed7e61b9 100644 --- a/pkgs/by-name/im/iml/package.nix +++ b/pkgs/by-name/im/iml/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { "--with-gmp-lib=${gmp}/lib" "--with-cblas=-lblas" ]; - meta = { + meta = with lib; { description = "Algorithms for computing exact solutions to dense systems of linear equations over the integers"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = [ maintainers.raskin ]; + platforms = platforms.unix; homepage = "https://cs.uwaterloo.ca/~astorjoh/iml.html"; }; } diff --git a/pkgs/by-name/im/imnodes/package.nix b/pkgs/by-name/im/imnodes/package.nix index 5559524a10d55f..c76279162dc675 100644 --- a/pkgs/by-name/im/imnodes/package.nix +++ b/pkgs/by-name/im/imnodes/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { passthru.tests.examples = imnodes.override { withExamples = true; }; - meta = { + meta = with lib; { description = "Small, dependency-free node editor for dear imgui"; homepage = "https://github.com/Nelarius/imnodes"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ SomeoneSerge ]; + license = licenses.mit; + maintainers = with maintainers; [ SomeoneSerge ]; mainProgram = "imnodes"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/im/impala/package.nix b/pkgs/by-name/im/impala/package.nix index 28312ea0b064de..bcd663960c6e9d 100644 --- a/pkgs/by-name/im/impala/package.nix +++ b/pkgs/by-name/im/impala/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-3mRWXUWyMgeaGOFvZXUeZmlD607zCz8a2d3O+MzhhNo="; - meta = { + meta = with lib; { description = "TUI for managing wifi"; homepage = "https://github.com/pythops/impala"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl3Only; - maintainers = [ lib.maintainers.nydragon ]; + platforms = platforms.linux; + license = licenses.gpl3Only; + maintainers = [ maintainers.nydragon ]; }; } diff --git a/pkgs/by-name/im/implot/package.nix b/pkgs/by-name/im/implot/package.nix index 541e85c73f584c..2ed39df8f41cec 100644 --- a/pkgs/by-name/im/implot/package.nix +++ b/pkgs/by-name/im/implot/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { implot-demos = callPackage ./demos { }; }; - meta = { + meta = with lib; { description = "Immediate Mode Plotting"; homepage = "https://github.com/epezent/implot"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ SomeoneSerge ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ SomeoneSerge ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/im/impression/package.nix b/pkgs/by-name/im/impression/package.nix index 22b359200ff330..e25832bfae6e27 100644 --- a/pkgs/by-name/im/impression/package.nix +++ b/pkgs/by-name/im/impression/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Straight-forward and modern application to create bootable drives"; homepage = "https://gitlab.com/adhami3310/Impression"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "impression"; - maintainers = with lib.maintainers; [ dotlambda ] ++ lib.teams.gnome-circle.members; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ dotlambda ] ++ teams.gnome-circle.members; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/in/incus/ui.nix b/pkgs/by-name/in/incus/ui.nix index 49ae00c0516547..7d56b2aa1f99d5 100644 --- a/pkgs/by-name/in/incus/ui.nix +++ b/pkgs/by-name/in/incus/ui.nix @@ -78,11 +78,11 @@ stdenv.mkDerivation rec { passthru.tests.default = nixosTests.incus.ui; - meta = { + meta = with lib; { description = "Web user interface for Incus, based on LXD webui"; homepage = "https://github.com/canonical/lxd-ui"; - license = lib.licenses.gpl3; - maintainers = lib.teams.lxc.members; - platforms = lib.platforms.linux; + license = licenses.gpl3; + maintainers = teams.lxc.members; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/in/indent/package.nix b/pkgs/by-name/in/indent/package.nix index 9d5647d8790c98..ff11b977badd25 100644 --- a/pkgs/by-name/in/indent/package.nix +++ b/pkgs/by-name/in/indent/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { doCheck = true; passthru.tests.static = pkgsStatic.indent; - meta = { + meta = with lib; { homepage = "https://www.gnu.org/software/indent/"; description = "Source code reformatter"; mainProgram = "indent"; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.mmahut ]; - platforms = lib.platforms.unix; + license = licenses.gpl3Plus; + maintainers = [ maintainers.mmahut ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/in/industrializer/package.nix b/pkgs/by-name/in/industrializer/package.nix index a17f3c44896460..20352ed6a76ad3 100644 --- a/pkgs/by-name/in/industrializer/package.nix +++ b/pkgs/by-name/in/industrializer/package.nix @@ -42,16 +42,16 @@ stdenv.mkDerivation rec { preConfigure = "./autogen.sh"; - meta = { + meta = with lib; { description = "This program generates synthesized percussion sounds using physical modelling"; longDescription = '' The range of sounds possible include but is not limited to cymbal sounds, metallic noises, bubbly sounds, and chimes. After a sound is rendered, it can be played and then saved to a .WAV file. ''; homepage = "https://sourceforge.net/projects/industrializer/"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.magnetophon ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = [ maintainers.magnetophon ]; + platforms = platforms.linux; mainProgram = "psindustrializer"; }; } diff --git a/pkgs/by-name/in/ineffassign/package.nix b/pkgs/by-name/in/ineffassign/package.nix index 55d48ecdf81a19..91d07e4e97eda0 100644 --- a/pkgs/by-name/in/ineffassign/package.nix +++ b/pkgs/by-name/in/ineffassign/package.nix @@ -26,12 +26,12 @@ buildGoModule rec { allowGoReference = true; - meta = { + meta = with lib; { description = "Detect ineffectual assignments in Go code"; mainProgram = "ineffassign"; homepage = "https://github.com/gordonklaus/ineffassign"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ kalbasit bot-wxt1221 ]; diff --git a/pkgs/by-name/in/infrastructure-agent/package.nix b/pkgs/by-name/in/infrastructure-agent/package.nix index 5d66624226acb4..be92f3836293fb 100644 --- a/pkgs/by-name/in/infrastructure-agent/package.nix +++ b/pkgs/by-name/in/infrastructure-agent/package.nix @@ -32,11 +32,11 @@ buildGoModule rec { "cmd/newrelic-infra-service" ]; - meta = { + meta = with lib; { description = "New Relic Infrastructure Agent"; homepage = "https://github.com/newrelic/infrastructure-agent.git"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ davsanchez ]; + license = licenses.asl20; + maintainers = with maintainers; [ davsanchez ]; mainProgram = "newrelic-infra"; }; } diff --git a/pkgs/by-name/in/ingen/package.nix b/pkgs/by-name/in/ingen/package.nix index 81bd40c8207a59..2eb498394eb2c8 100644 --- a/pkgs/by-name/in/ingen/package.nix +++ b/pkgs/by-name/in/ingen/package.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation { wrapProgram "$out/bin/ingen" --set INGEN_UI_PATH "$out/share/ingen/ingen_gui.ui" ''; - meta = { + meta = with lib; { description = "Modular audio processing system using JACK and LV2 or LADSPA plugins"; homepage = "http://drobilla.net/software/ingen"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ t4ccer ]; - platforms = lib.platforms.linux; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ t4ccer ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/in/inklingreader/package.nix b/pkgs/by-name/in/inklingreader/package.nix index e4ba8a252cdeca..52fb3fa7ef4f64 100644 --- a/pkgs/by-name/in/inklingreader/package.nix +++ b/pkgs/by-name/in/inklingreader/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { libusb1 ]; - meta = { + meta = with lib; { homepage = "https://github.com/roelj/inklingreader"; description = "GNU/Linux-friendly version of the Wacom Inkling SketchManager"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ totoroot ]; - platforms = lib.platforms.linux; + license = licenses.gpl3; + maintainers = with maintainers; [ totoroot ]; + platforms = platforms.linux; mainProgram = "inklingreader"; }; } diff --git a/pkgs/by-name/in/inko/package.nix b/pkgs/by-name/in/inko/package.nix index 4cc7902c4bdc40..4575fe8764811d 100644 --- a/pkgs/by-name/in/inko/package.nix +++ b/pkgs/by-name/in/inko/package.nix @@ -58,12 +58,12 @@ rustPlatform.buildRustPackage rec { simple = callPackage ./test.nix { }; }; - meta = { + meta = with lib; { description = "Language for building concurrent software with confidence"; homepage = "https://inko-lang.org/"; - license = lib.licenses.mpl20; - maintainers = [ lib.maintainers.feathecutie ]; - platforms = lib.platforms.unix; + license = licenses.mpl20; + maintainers = [ maintainers.feathecutie ]; + platforms = platforms.unix; mainProgram = "inko"; }; } diff --git a/pkgs/by-name/in/insert-dylib/package.nix b/pkgs/by-name/in/insert-dylib/package.nix index f3ea2c9a09ebe5..aec1096d1d0955 100644 --- a/pkgs/by-name/in/insert-dylib/package.nix +++ b/pkgs/by-name/in/insert-dylib/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Command line utility for inserting a dylib load command into a Mach-O binary"; homepage = "https://github.com/tyilo/insert_dylib"; - license = lib.licenses.unfree; # no license specified + license = licenses.unfree; # no license specified mainProgram = "insert_dylib"; - maintainers = with lib.maintainers; [ wegank ]; - platforms = lib.platforms.darwin; + maintainers = with maintainers; [ wegank ]; + platforms = platforms.darwin; }; } diff --git a/pkgs/by-name/in/inspector/package.nix b/pkgs/by-name/in/inspector/package.nix index c9d0957f7225a3..ebcb418fd02198 100644 --- a/pkgs/by-name/in/inspector/package.nix +++ b/pkgs/by-name/in/inspector/package.nix @@ -53,15 +53,15 @@ python3Packages.buildPythonApplication rec { strictDeps = true; - meta = { + meta = with lib; { homepage = "https://github.com/Nokse22/inspector"; description = "Gtk4 Libadwaita wrapper for various system info cli commands"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Plus cc0 ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "inspector"; - maintainers = with lib.maintainers; [ mksafavi ]; + maintainers = with maintainers; [ mksafavi ]; }; } diff --git a/pkgs/by-name/in/intel-ocl/package.nix b/pkgs/by-name/in/intel-ocl/package.nix index c98613b672cdac..205c4bb80f2d9d 100644 --- a/pkgs/by-name/in/intel-ocl/package.nix +++ b/pkgs/by-name/in/intel-ocl/package.nix @@ -76,12 +76,12 @@ stdenv.mkDerivation rec { dontStrip = true; - meta = { + meta = with lib; { description = "Official OpenCL runtime for Intel CPUs"; homepage = "https://software.intel.com/en-us/articles/opencl-drivers"; - license = lib.licenses.unfree; + license = licenses.unfree; platforms = [ "x86_64-linux" ]; maintainers = [ ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/by-name/in/intel-undervolt/package.nix b/pkgs/by-name/in/intel-undervolt/package.nix index 9bee5bf1498124..6e5c2b2af725d5 100644 --- a/pkgs/by-name/in/intel-undervolt/package.nix +++ b/pkgs/by-name/in/intel-undervolt/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Intel CPU undervolting and throttling configuration tool"; homepage = "https://github.com/kitsunyan/intel-undervolt"; mainProgram = "intel-undervolt"; - license = lib.licenses.gpl3; + license = licenses.gpl3; platforms = [ "x86_64-linux" ]; # It probably compiles for aaarch64-linux too, but what's the point? - maintainers = with lib.maintainers; [ pandapip1 ]; + maintainers = with maintainers; [ pandapip1 ]; }; }) diff --git a/pkgs/by-name/in/intelephense/package.nix b/pkgs/by-name/in/intelephense/package.nix index 21d561e108b07b..ab728552db7f1e 100644 --- a/pkgs/by-name/in/intelephense/package.nix +++ b/pkgs/by-name/in/intelephense/package.nix @@ -26,11 +26,11 @@ buildNpmPackage { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Professional PHP tooling for any Language Server Protocol capable editor"; homepage = "https://intelephense.com/"; - license = lib.licenses.unfree; + license = licenses.unfree; mainProgram = "intelephense"; - maintainers = with lib.maintainers; [ patka ]; + maintainers = with maintainers; [ patka ]; }; } diff --git a/pkgs/by-name/in/intentrace/package.nix b/pkgs/by-name/in/intentrace/package.nix index e1e3139ee44e5d..2b9a1875539025 100644 --- a/pkgs/by-name/in/intentrace/package.nix +++ b/pkgs/by-name/in/intentrace/package.nix @@ -20,13 +20,13 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-LkLSPFCfQxBb5DJZ67I7xPxzIYqTzKccyLW0S65/MLU="; - meta = { + meta = with lib; { description = "Prettified Linux syscall tracing tool (like strace)"; homepage = "https://github.com/sectordistrict/intentrace"; - license = lib.licenses.mit; + license = licenses.mit; platforms = [ "x86_64-linux" ]; mainProgram = "intentrace"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ cloudripper jk ]; diff --git a/pkgs/by-name/in/inter-nerdfont/package.nix b/pkgs/by-name/in/inter-nerdfont/package.nix index 69373f16064a7f..5ce914e40d0474 100644 --- a/pkgs/by-name/in/inter-nerdfont/package.nix +++ b/pkgs/by-name/in/inter-nerdfont/package.nix @@ -34,11 +34,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://gitlab.com/mid_os/inter-nerdfont"; description = "NerdFont patch of the Inter font"; - license = lib.licenses.ofl; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.midirhee12 ]; + license = licenses.ofl; + platforms = platforms.all; + maintainers = [ maintainers.midirhee12 ]; }; }) diff --git a/pkgs/by-name/in/inv-sig-helper/package.nix b/pkgs/by-name/in/inv-sig-helper/package.nix index a00f7224e7189d..3331b77650505c 100644 --- a/pkgs/by-name/in/inv-sig-helper/package.nix +++ b/pkgs/by-name/in/inv-sig-helper/package.nix @@ -36,11 +36,11 @@ rustPlatform.buildRustPackage { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Rust service that decrypts YouTube signatures and manages player information"; homepage = "https://github.com/iv-org/inv_sig_helper"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.agpl3Only; + maintainers = with maintainers; [ GaetanLepage ]; mainProgram = "inv_sig_helper_rust"; }; } diff --git a/pkgs/by-name/in/invidious-router/package.nix b/pkgs/by-name/in/invidious-router/package.nix index 5ac25de4e2a282..6b82f802fcfe42 100644 --- a/pkgs/by-name/in/invidious-router/package.nix +++ b/pkgs/by-name/in/invidious-router/package.nix @@ -24,11 +24,11 @@ buildGoModule { doCheck = true; - meta = { + meta = with lib; { homepage = "https://gitlab.com/gaincoder/invidious-router"; description = "Go application that routes requests to different Invidious instances based on their health status and (optional) response time"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ sils ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ sils ]; mainProgram = "invidious-router"; }; } diff --git a/pkgs/by-name/in/invidious/package.nix b/pkgs/by-name/in/invidious/package.nix index 17ef1504e80588..3a5c3bc5ebf421 100644 --- a/pkgs/by-name/in/invidious/package.nix +++ b/pkgs/by-name/in/invidious/package.nix @@ -138,12 +138,12 @@ crystal.buildCrystalPackage rec { updateScript = ./update.sh; }; - meta = { + meta = with lib; { description = "Open source alternative front-end to YouTube"; mainProgram = "invidious"; homepage = "https://invidious.io/"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.agpl3Plus; + maintainers = with maintainers; [ _999eagle GaetanLepage sbruder diff --git a/pkgs/by-name/io/iodine/package.nix b/pkgs/by-name/io/iodine/package.nix index 3d993b3f1662f2..939bd1ea8ab838 100644 --- a/pkgs/by-name/io/iodine/package.nix +++ b/pkgs/by-name/io/iodine/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation (finalAttrs: { inherit (nixosTests) iodine; }; - meta = { + meta = with lib; { homepage = "http://code.kryo.se/iodine/"; description = "Tool to tunnel IPv4 data through a DNS server"; - license = lib.licenses.isc; - platforms = lib.platforms.unix; + license = licenses.isc; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/io/ioquake3/package.nix b/pkgs/by-name/io/ioquake3/package.nix index 80afd46bc92b56..b38f934b2a04f0 100644 --- a/pkgs/by-name/io/ioquake3/package.nix +++ b/pkgs/by-name/io/ioquake3/package.nix @@ -83,16 +83,16 @@ stdenv.mkDerivation { }) ]; - meta = { + meta = with lib; { homepage = "https://ioquake3.org/"; description = "Fast-paced 3D first-person shooter, a community effort to continue supporting/developing id's Quake III Arena"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "ioquake3"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ abbradar drupol rvolosatovs ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/io/ios-deploy/package.nix b/pkgs/by-name/io/ios-deploy/package.nix index 21b6fc5b4f9c3e..b512c36978f01b 100644 --- a/pkgs/by-name/io/ios-deploy/package.nix +++ b/pkgs/by-name/io/ios-deploy/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation (finalAttrs: { package = finalAttrs.finalPackage; }; - meta = { + meta = with lib; { description = "Install and debug iPhone apps from the command line, without using Xcode"; homepage = "https://github.com/ios-control/ios-deploy"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "ios-deploy"; - maintainers = with lib.maintainers; [ wegank ]; - platforms = lib.platforms.darwin; + maintainers = with maintainers; [ wegank ]; + platforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/io/ios-safari-remote-debug/package.nix b/pkgs/by-name/io/ios-safari-remote-debug/package.nix index 216c4ed15cdda7..791bd330a6e9e3 100644 --- a/pkgs/by-name/io/ios-safari-remote-debug/package.nix +++ b/pkgs/by-name/io/ios-safari-remote-debug/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { cp -r injectedCode views $out/share/${pname} ''; - meta = { + meta = with lib; { description = "Remote debugger for iOS Safari"; homepage = "https://git.gay/besties/ios-safari-remote-debug"; - license = lib.licenses.agpl3Plus; + license = licenses.agpl3Plus; mainProgram = "ios-safari-remote-debug"; - maintainers = with lib.maintainers; [ paveloom ]; + maintainers = with maintainers; [ paveloom ]; }; } diff --git a/pkgs/by-name/io/iotas/package.nix b/pkgs/by-name/io/iotas/package.nix index 2563c175df51f1..32b223f35b9a7f 100644 --- a/pkgs/by-name/io/iotas/package.nix +++ b/pkgs/by-name/io/iotas/package.nix @@ -69,12 +69,12 @@ python3.pkgs.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = { + meta = with lib; { description = "Simple note taking with mobile-first design and Nextcloud sync"; homepage = "https://gitlab.gnome.org/World/iotas"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + platforms = platforms.linux; mainProgram = "iotas"; - maintainers = with lib.maintainers; [ zendo ]; + maintainers = with maintainers; [ zendo ]; }; } diff --git a/pkgs/by-name/io/iozone/package.nix b/pkgs/by-name/io/iozone/package.nix index 9820881d4c4672..ba73a0eac37667 100644 --- a/pkgs/by-name/io/iozone/package.nix +++ b/pkgs/by-name/io/iozone/package.nix @@ -59,17 +59,17 @@ stdenv.mkDerivation rec { --replace gnu3d.dem $out/libexec/gnu3d.dem ''; - meta = { + meta = with lib; { description = "IOzone Filesystem Benchmark"; homepage = "http://www.iozone.org/"; - license = lib.licenses.unfreeRedistributable; + license = licenses.unfreeRedistributable; platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" "aarch64-linux" ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ Baughn makefu ]; diff --git a/pkgs/by-name/ip/ip2unix/package.nix b/pkgs/by-name/ip/ip2unix/package.nix index c134eedcdeda2e..eff83cea0fef1e 100644 --- a/pkgs/by-name/ip/ip2unix/package.nix +++ b/pkgs/by-name/ip/ip2unix/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation rec { fi ''; - meta = { + meta = with lib; { homepage = "https://github.com/nixcloud/ip2unix"; description = "Turn IP sockets into Unix domain sockets"; - platforms = lib.platforms.linux; - license = lib.licenses.lgpl3; - maintainers = [ lib.maintainers.aszlig ]; + platforms = platforms.linux; + license = licenses.lgpl3; + maintainers = [ maintainers.aszlig ]; mainProgram = "ip2unix"; }; } diff --git a/pkgs/by-name/ip/ipafont/package.nix b/pkgs/by-name/ip/ipafont/package.nix index 98bffe658ea984..0196881276f67e 100644 --- a/pkgs/by-name/ip/ipafont/package.nix +++ b/pkgs/by-name/ip/ipafont/package.nix @@ -21,7 +21,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Japanese font package with Mincho and Gothic fonts"; longDescription = '' IPAFont is a Japanese font developed by the Information-technology @@ -29,7 +29,7 @@ stdenvNoCC.mkDerivation { suitable for both display and printing. ''; homepage = "https://moji.or.jp/ipafont/"; - license = lib.licenses.ipa; - maintainers = [ lib.maintainers.auntie ]; + license = licenses.ipa; + maintainers = [ maintainers.auntie ]; }; } diff --git a/pkgs/by-name/ip/ipopt/package.nix b/pkgs/by-name/ip/ipopt/package.nix index b4715462bc82db..e070f59390fe6c 100644 --- a/pkgs/by-name/ip/ipopt/package.nix +++ b/pkgs/by-name/ip/ipopt/package.nix @@ -66,11 +66,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Software package for large-scale nonlinear optimization"; homepage = "https://projects.coin-or.org/Ipopt"; - license = lib.licenses.epl10; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ abbradar ]; + license = licenses.epl10; + platforms = platforms.unix; + maintainers = with maintainers; [ abbradar ]; }; } diff --git a/pkgs/by-name/ip/ipp-usb/package.nix b/pkgs/by-name/ip/ipp-usb/package.nix index 3de9d3454e284e..3c92eebbadbadd 100644 --- a/pkgs/by-name/ip/ipp-usb/package.nix +++ b/pkgs/by-name/ip/ipp-usb/package.nix @@ -46,12 +46,12 @@ buildGoModule rec { make install DESTDIR=$out ''; - meta = { + meta = with lib; { description = "Daemon to use the IPP everywhere protocol with USB printers"; mainProgram = "ipp-usb"; homepage = "https://github.com/OpenPrinting/ipp-usb"; - maintainers = [ lib.maintainers.symphorien ]; - platforms = lib.platforms.linux; - license = lib.licenses.bsd2; + maintainers = [ maintainers.symphorien ]; + platforms = platforms.linux; + license = licenses.bsd2; }; } diff --git a/pkgs/by-name/ip/iproute2mac/package.nix b/pkgs/by-name/ip/iproute2mac/package.nix index a6c5003492a532..6a0e6983175dc6 100644 --- a/pkgs/by-name/ip/iproute2mac/package.nix +++ b/pkgs/by-name/ip/iproute2mac/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/brona/iproute2mac"; description = "CLI wrapper for basic network utilites on Mac OS X inspired with iproute2 on Linux systems - ip command"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ jiegec ]; - platforms = lib.platforms.darwin; + license = licenses.mit; + maintainers = with maintainers; [ jiegec ]; + platforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/ip/ipxe/package.nix b/pkgs/by-name/ip/ipxe/package.nix index 2a1618da34aea3..11830d6693f051 100644 --- a/pkgs/by-name/ip/ipxe/package.nix +++ b/pkgs/by-name/ip/ipxe/package.nix @@ -138,11 +138,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { description = "Network boot firmware"; homepage = "https://ipxe.org/"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ sigmasquadron ]; + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = with maintainers; [ sigmasquadron ]; }; }) diff --git a/pkgs/by-name/ir/iro/package.nix b/pkgs/by-name/ir/iro/package.nix index 6b55a4a5641087..6f4c55d9ff313f 100644 --- a/pkgs/by-name/ir/iro/package.nix +++ b/pkgs/by-name/ir/iro/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-ZP0YO+5juxFGc2rtvNBvknlTJBrtr8HiuN6/kKW1WNU="; - meta = { + meta = with lib; { description = "CLI tool to convet Hex color code or RGB to color code, RGB, HSL and color name"; homepage = "https://github.com/kyoheiu/iro"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ airrnot ]; + license = licenses.mit; + maintainers = with maintainers; [ airrnot ]; mainProgram = "iro"; }; } diff --git a/pkgs/by-name/is/isc-cron/package.nix b/pkgs/by-name/is/isc-cron/package.nix index 61633c6c9c88d1..33e30d67814694 100644 --- a/pkgs/by-name/is/isc-cron/package.nix +++ b/pkgs/by-name/is/isc-cron/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation (finalAttrs: { mkdir -p $out/{{,s}bin,share/man/man{1,5,8}} ''; - meta = { + meta = with lib; { homepage = "https://ftp.isc.org/isc/cron/"; description = "Daemon for running commands at specific times"; - license = lib.licenses.bsd0; + license = licenses.bsd0; mainProgram = "cron"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/is/ised/package.nix b/pkgs/by-name/is/ised/package.nix index df8953f42f4663..57e7a80e5159d9 100644 --- a/pkgs/by-name/is/ised/package.nix +++ b/pkgs/by-name/is/ised/package.nix @@ -12,11 +12,11 @@ stdenv.mkDerivation rec { sha256 = "0fhha61whkkqranqdxg792g0f5kgp5m3m6z1iqcvjh2c34rczbmb"; }; - meta = { + meta = with lib; { description = "Numeric sequence editor"; - maintainers = with lib.maintainers; [ raskin ]; - platforms = with lib.platforms; linux; - license = lib.licenses.gpl3Plus; + maintainers = with maintainers; [ raskin ]; + platforms = with platforms; linux; + license = licenses.gpl3Plus; mainProgram = "ised"; }; } diff --git a/pkgs/by-name/is/isisdl/package.nix b/pkgs/by-name/is/isisdl/package.nix index fc5286e99cad2a..459d373eb714d3 100644 --- a/pkgs/by-name/is/isisdl/package.nix +++ b/pkgs/by-name/is/isisdl/package.nix @@ -43,16 +43,16 @@ python3Packages.buildPythonApplication rec { # disable tests since they require valid login credentials doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/Emily3403/isisdl"; description = "Downloader for ISIS of TU-Berlin"; longDescription = '' A downloading utility for ISIS of TU-Berlin. Download all your files and videos from ISIS. ''; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ bchmnn ]; + license = licenses.gpl3; + maintainers = with maintainers; [ bchmnn ]; mainProgram = "isisdl"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/is/isolate/package.nix b/pkgs/by-name/is/isolate/package.nix index 18eef4c57a746a..439529e785d7ca 100644 --- a/pkgs/by-name/is/isolate/package.nix +++ b/pkgs/by-name/is/isolate/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { isolate = nixosTests.isolate; }; - meta = { + meta = with lib; { description = "Sandbox for securely executing untrusted programs"; mainProgram = "isolate"; homepage = "https://github.com/ioi/isolate"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ virchau13 ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ virchau13 ]; }; } diff --git a/pkgs/by-name/is/ispike/package.nix b/pkgs/by-name/is/ispike/package.nix index fb1754934fe4a4..3944697705857a 100644 --- a/pkgs/by-name/is/ispike/package.nix +++ b/pkgs/by-name/is/ispike/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; buildInputs = [ boost ]; - meta = { + meta = with lib; { description = "Spiking neural interface between iCub and a spiking neural simulator"; homepage = "https://sourceforge.net/projects/ispike/"; - license = lib.licenses.lgpl3; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.nico202 ]; + license = licenses.lgpl3; + platforms = platforms.unix; + maintainers = [ maintainers.nico202 ]; }; } diff --git a/pkgs/by-name/is/isponsorblocktv/pypackage.nix b/pkgs/by-name/is/isponsorblocktv/pypackage.nix index 788f52221b634b..c320fec8c46175 100644 --- a/pkgs/by-name/is/isponsorblocktv/pypackage.nix +++ b/pkgs/by-name/is/isponsorblocktv/pypackage.nix @@ -59,12 +59,12 @@ buildPythonApplication rec { "rich" ]; - meta = { + meta = with lib; { homepage = "https://github.com/dmunozv04/iSponsorBlockTV"; description = "SponsorBlock client for all YouTube TV clients"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ lukegb ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ lukegb ]; mainProgram = "iSponsorBlockTV"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/is/istatmenus/package.nix b/pkgs/by-name/is/istatmenus/package.nix index a37a0c693ba8ac..5461dfe94714f9 100644 --- a/pkgs/by-name/is/istatmenus/package.nix +++ b/pkgs/by-name/is/istatmenus/package.nix @@ -43,13 +43,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { ''; }); - meta = { + meta = with lib; { changelog = "https://bjango.com/mac/istatmenus/versionhistory/"; description = "iStat Menus is set of nine separate and highly configurable menu items that let you know exactly what's going on inside your Mac"; homepage = "https://bjango.com/mac/istatmenus/"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ donteatoreo ]; - platforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = with maintainers; [ donteatoreo ]; + platforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/it/it-tools/package.nix b/pkgs/by-name/it/it-tools/package.nix index 75bba8012aaac7..46d34881bc61a2 100644 --- a/pkgs/by-name/it/it-tools/package.nix +++ b/pkgs/by-name/it/it-tools/package.nix @@ -43,10 +43,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Self-hostable website containing handy tools for developers, with great UX"; homepage = "https://it-tools.tech/"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ akotro ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ akotro ]; }; } diff --git a/pkgs/by-name/it/itstool/package.nix b/pkgs/by-name/it/itstool/package.nix index 7ef080da6d19cc..73b424aa2fff6d 100644 --- a/pkgs/by-name/it/itstool/package.nix +++ b/pkgs/by-name/it/itstool/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = { + meta = with lib; { homepage = "https://itstool.org/"; description = "XML to PO and back again"; mainProgram = "itstool"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.all; + license = licenses.gpl3Plus; + platforms = platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/it/itsycal/package.nix b/pkgs/by-name/it/itsycal/package.nix index cbb462430a4331..acebb169597236 100644 --- a/pkgs/by-name/it/itsycal/package.nix +++ b/pkgs/by-name/it/itsycal/package.nix @@ -22,13 +22,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { changelog = "https://www.mowglii.com/itsycal/versionhistory.html"; description = "Itsycal is a tiny menu bar calendar"; homepage = "https://www.mowglii.com/itsycal/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ donteatoreo ]; - platforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.mit; + maintainers = with maintainers; [ donteatoreo ]; + platforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/iv/ivm/package.nix b/pkgs/by-name/iv/ivm/package.nix index 10f917de3fb719..354d7b963bab06 100644 --- a/pkgs/by-name/iv/ivm/package.nix +++ b/pkgs/by-name/iv/ivm/package.nix @@ -52,12 +52,12 @@ rustPlatform.buildRustPackage rec { } ''; - meta = { + meta = with lib; { description = "Cross-platform Inko version manager"; homepage = "https://github.com/inko-lang/ivm"; - license = lib.licenses.mpl20; - maintainers = [ lib.maintainers.feathecutie ]; - platforms = lib.platforms.unix; + license = licenses.mpl20; + maintainers = [ maintainers.feathecutie ]; + platforms = platforms.unix; mainProgram = "ivm"; }; } diff --git a/pkgs/by-name/iw/iw/package.nix b/pkgs/by-name/iw/iw/package.nix index bba9d3ffb2a5da..2c014378cc5353 100644 --- a/pkgs/by-name/iw/iw/package.nix +++ b/pkgs/by-name/iw/iw/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { homepage = "https://wireless.wiki.kernel.org/en/users/Documentation/iw"; description = "Tool to use nl80211"; longDescription = '' @@ -37,9 +37,9 @@ stdenv.mkDerivation (finalAttrs: { The old tool iwconfig, which uses Wireless Extensions interface, is deprecated and it's strongly recommended to switch to iw and nl80211. ''; - license = lib.licenses.isc; + license = licenses.isc; mainProgram = "iw"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ja/jack_rack/package.nix b/pkgs/by-name/ja/jack_rack/package.nix index a8703792a8aff8..d492c3005b4f65 100644 --- a/pkgs/by-name/ja/jack_rack/package.nix +++ b/pkgs/by-name/ja/jack_rack/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { ]; NIX_LDFLAGS = "-lm -lpthread"; - meta = { + meta = with lib; { description = ''An effects "rack" for the JACK low latency audio API''; longDescription = '' JACK Rack is an effects "rack" for the JACK low latency audio @@ -37,8 +37,8 @@ stdenv.mkDerivation rec { computer into an effects box. ''; homepage = "https://jack-rack.sourceforge.net/"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.astsmtl ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = [ maintainers.astsmtl ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ja/jackmeter/package.nix b/pkgs/by-name/ja/jackmeter/package.nix index 8f593068c534ec..ab71c01213fef7 100644 --- a/pkgs/by-name/ja/jackmeter/package.nix +++ b/pkgs/by-name/ja/jackmeter/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ libjack2 ]; - meta = { + meta = with lib; { description = "Console jack loudness meter"; homepage = "https://www.aelius.com/njh/jackmeter/"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.marcweber ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = [ maintainers.marcweber ]; + platforms = platforms.linux; mainProgram = "jack_meter"; }; } diff --git a/pkgs/by-name/ja/jake/package.nix b/pkgs/by-name/ja/jake/package.nix index 6de17708041967..17a5518a0bf18b 100644 --- a/pkgs/by-name/ja/jake/package.nix +++ b/pkgs/by-name/ja/jake/package.nix @@ -19,11 +19,11 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = { + meta = with lib; { description = "JavaScript build tool, similar to Make or Rake"; homepage = "https://github.com/jakejs/jake"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "jake"; - maintainers = with lib.maintainers; [ jasoncarr ]; + maintainers = with maintainers; [ jasoncarr ]; }; } diff --git a/pkgs/by-name/ja/jamulus/package.nix b/pkgs/by-name/ja/jamulus/package.nix index 32166e15f46500..655c1935413740 100644 --- a/pkgs/by-name/ja/jamulus/package.nix +++ b/pkgs/by-name/ja/jamulus/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation rec { qmakeFlags = [ "CONFIG+=noupcasename" ]; - meta = { + meta = with lib; { description = "Enables musicians to perform real-time jam sessions over the internet"; longDescription = "You also need to enable JACK and should enable several real-time optimizations. See project website for details"; homepage = "https://github.com/corrados/jamulus"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; mainProgram = "jamulus"; - maintainers = with lib.maintainers; [ seb314 ]; + maintainers = with maintainers; [ seb314 ]; }; } diff --git a/pkgs/by-name/ja/jankyborders/package.nix b/pkgs/by-name/ja/jankyborders/package.nix index b0d8a1a731e066..331b8e74b0df41 100644 --- a/pkgs/by-name/ja/jankyborders/package.nix +++ b/pkgs/by-name/ja/jankyborders/package.nix @@ -39,13 +39,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "JankyBorders is a lightweight tool designed to add colored borders to user windows on macOS 14.0+"; longDescription = "It enhances the user experience by visually highlighting the currently focused window without relying on the accessibility API, thereby being faster than comparable tools."; homepage = "https://github.com/FelixKratz/JankyBorders"; - license = lib.licenses.gpl3; + license = licenses.gpl3; mainProgram = "borders"; - maintainers = with lib.maintainers; [ khaneliman ]; - platforms = lib.platforms.darwin; + maintainers = with maintainers; [ khaneliman ]; + platforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/ja/japa/package.nix b/pkgs/by-name/ja/japa/package.nix index 6d717af6cf9a92..5741c109276826 100644 --- a/pkgs/by-name/ja/japa/package.nix +++ b/pkgs/by-name/ja/japa/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { "SUFFIX=''" ]; - meta = { + meta = with lib; { description = "'perceptual' or 'psychoacoustic' audio spectrum analyser for JACK and ALSA"; homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/index.html"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.magnetophon ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = [ maintainers.magnetophon ]; + platforms = platforms.linux; mainProgram = "japa"; }; } diff --git a/pkgs/by-name/ja/jasmin-compiler/package.nix b/pkgs/by-name/ja/jasmin-compiler/package.nix index 8f65129f3cbec0..6e8383fd2b68c5 100644 --- a/pkgs/by-name/ja/jasmin-compiler/package.nix +++ b/pkgs/by-name/ja/jasmin-compiler/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Workbench for high-assurance and high-speed cryptography"; homepage = "https://github.com/jasmin-lang/jasmin/"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; mainProgram = "jasminc"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ja/jasp-desktop/package.nix b/pkgs/by-name/ja/jasp-desktop/package.nix index 2fb25136e5036c..1fb0507a83f9ff 100644 --- a/pkgs/by-name/ja/jasp-desktop/package.nix +++ b/pkgs/by-name/ja/jasp-desktop/package.nix @@ -118,15 +118,15 @@ stdenv.mkDerivation { env = customREnv; }; - meta = { + meta = with lib; { changelog = "https://jasp-stats.org/release-notes"; description = "Complete statistical package for both Bayesian and Frequentist statistical methods"; homepage = "https://github.com/jasp-stats/jasp-desktop"; - license = lib.licenses.agpl3Plus; + license = licenses.agpl3Plus; mainProgram = "JASP"; - maintainers = with lib.maintainers; [ tomasajt ]; + maintainers = with maintainers; [ tomasajt ]; # JASP's cmake build steps are really different on Darwin # Perhaps the Darwin-specific things could be changed to be the same as Linux - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ja/javascript-typescript-langserver/package.nix b/pkgs/by-name/ja/javascript-typescript-langserver/package.nix index 46d6136d49ee7c..fba8d96e3d400e 100644 --- a/pkgs/by-name/ja/javascript-typescript-langserver/package.nix +++ b/pkgs/by-name/ja/javascript-typescript-langserver/package.nix @@ -17,10 +17,10 @@ buildNpmPackage rec { npmDepsHash = "sha256-nHGTi1aH9YY01dzBeNyUEUEswrdjZPWaoycDVZZmIAA="; - meta = { + meta = with lib; { description = "JavaScript and TypeScript code intelligence through the Language Server Protocol"; homepage = "https://github.com/sourcegraph/javascript-typescript-langserver"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ dywedir ]; + license = licenses.asl20; + maintainers = with maintainers; [ dywedir ]; }; } diff --git a/pkgs/by-name/ja/jawiki-all-titles-in-ns0/package.nix b/pkgs/by-name/ja/jawiki-all-titles-in-ns0/package.nix index bef9b65d09c305..bbe638fdcee60e 100644 --- a/pkgs/by-name/ja/jawiki-all-titles-in-ns0/package.nix +++ b/pkgs/by-name/ja/jawiki-all-titles-in-ns0/package.nix @@ -32,15 +32,15 @@ stdenvNoCC.mkDerivation { ]; }; - meta = { + meta = with lib; { description = "A jawiki dump list of page titles in main namespace"; homepage = "https://dumps.wikimedia.org/backup-index.html"; - license = with lib.licenses; [ + license = with licenses; [ fdl13Only cc-by-sa-30 ]; - maintainers = with lib.maintainers; [ pineapplehunter ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ pineapplehunter ]; + platforms = platforms.all; # this does not need to be separately built # it only provides a dump gz file hydraPlatforms = [ ]; diff --git a/pkgs/by-name/jb/jbig2dec/package.nix b/pkgs/by-name/jb/jbig2dec/package.nix index 41f358123ceca3..c8b4c12e3a6087 100644 --- a/pkgs/by-name/jb/jbig2dec/package.nix +++ b/pkgs/by-name/jb/jbig2dec/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { nativeCheckInputs = [ python3 ]; doCheck = true; - meta = { + meta = with lib; { homepage = "https://www.jbig2dec.com/"; description = "Decoder implementation of the JBIG2 image compression format"; mainProgram = "jbig2dec"; - license = lib.licenses.agpl3Only; - platforms = lib.platforms.unix; + license = licenses.agpl3Only; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/jb/jbig2enc/package.nix b/pkgs/by-name/jb/jbig2enc/package.nix index 6cb7ca15d17d3c..3880b047950003 100644 --- a/pkgs/by-name/jb/jbig2enc/package.nix +++ b/pkgs/by-name/jb/jbig2enc/package.nix @@ -58,10 +58,10 @@ stdenv.mkDerivation rec { make clean ''; - meta = { + meta = with lib; { description = "Encoder for the JBIG2 image compression format"; - license = lib.licenses.asl20; - platforms = lib.platforms.all; + license = licenses.asl20; + platforms = platforms.all; homepage = "https://github.com/agl/jbig2enc"; mainProgram = "jbig2"; }; diff --git a/pkgs/by-name/je/jet-pilot/package.nix b/pkgs/by-name/je/jet-pilot/package.nix index 2798f4aed6c974..42d084807dd71f 100644 --- a/pkgs/by-name/je/jet-pilot/package.nix +++ b/pkgs/by-name/je/jet-pilot/package.nix @@ -15,13 +15,13 @@ appimageTools.wrapType2 rec { appimageContents = appimageTools.extractType2 { inherit pname version src; }; - meta = { + meta = with lib; { description = "Open-source Kubernetes desktop client that focuses on less clutter, speed and good looks"; homepage = "https://jet-pilot.app/"; changelog = "https://github.com/unxsist/jet-pilot/releases"; - license = lib.licenses.mit; + license = licenses.mit; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ kashw2 ]; + maintainers = with maintainers; [ kashw2 ]; mainProgram = "jet-pilot"; }; } diff --git a/pkgs/by-name/jf/jflex/package.nix b/pkgs/by-name/jf/jflex/package.nix index 0b1adfcf1fb716..847d956cb0e90e 100644 --- a/pkgs/by-name/jf/jflex/package.nix +++ b/pkgs/by-name/jf/jflex/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { runHook postInstallCheck ''; - meta = { + meta = with lib; { homepage = "https://www.jflex.de/"; description = "Lexical analyzer generator for Java, written in Java"; mainProgram = "jflex"; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; + license = licenses.bsd3; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/jh/jhentai/package.nix b/pkgs/by-name/jh/jhentai/package.nix index b52c2720baa511..6bb1262cce8130 100644 --- a/pkgs/by-name/jh/jhentai/package.nix +++ b/pkgs/by-name/jh/jhentai/package.nix @@ -58,12 +58,12 @@ flutter.buildFlutterApplication rec { --prefix LD_LIBRARY_PATH : "$out/app/${pname}/lib" ''; - meta = { + meta = with lib; { description = "Cross-platform manga app made for e-hentai & exhentai by Flutter"; homepage = "https://github.com/jiangtian616/JHenTai"; mainProgram = "jhentai"; - license = with lib.licenses; [ asl20 ]; - maintainers = with lib.maintainers; [ aucub ]; - platforms = lib.platforms.linux; + license = with licenses; [ asl20 ]; + maintainers = with maintainers; [ aucub ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/jh/jhiccup/package.nix b/pkgs/by-name/jh/jhiccup/package.nix index 82fed9e5d46de3..da24e942e614a1 100644 --- a/pkgs/by-name/jh/jhiccup/package.nix +++ b/pkgs/by-name/jh/jhiccup/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { mv jHiccup jHiccupLogProcessor $out/bin/ ''; - meta = { + meta = with lib; { description = "Measure JVM application stalls and GC pauses"; homepage = "https://www.azul.com/jhiccup/"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.cc0; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ thoughtpolice ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.cc0; + platforms = platforms.linux; + maintainers = with maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/by-name/ji/jid/package.nix b/pkgs/by-name/ji/jid/package.nix index f7af65b01f4201..97f94ca75e1f60 100644 --- a/pkgs/by-name/ji/jid/package.nix +++ b/pkgs/by-name/ji/jid/package.nix @@ -34,11 +34,11 @@ buildGoModule rec { version = "v${version}"; }; - meta = { + meta = with lib; { description = "Command-line tool to incrementally drill down JSON"; mainProgram = "jid"; homepage = "https://github.com/simeji/jid"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ stesie ]; + license = licenses.mit; + maintainers = with maintainers; [ stesie ]; }; } diff --git a/pkgs/by-name/ji/jimtcl/package.nix b/pkgs/by-name/ji/jimtcl/package.nix index 13181a2c0e5c9b..75a63f92da8e1b 100644 --- a/pkgs/by-name/ji/jimtcl/package.nix +++ b/pkgs/by-name/ji/jimtcl/package.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation (finalAttrs: { # test posix-1.6 needs the "hostname" command nativeCheckInputs = [ inetutils ]; - meta = { + meta = with lib; { description = "Open source small-footprint implementation of the Tcl programming language"; homepage = "http://jim.tcl.tk/"; - license = lib.licenses.bsd2; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + license = licenses.bsd2; + platforms = platforms.all; + maintainers = with maintainers; [ dbohdan fgaz ]; diff --git a/pkgs/by-name/jj/jjui/package.nix b/pkgs/by-name/jj/jjui/package.nix index 625fad1d092cb6..771373042dd4e2 100644 --- a/pkgs/by-name/jj/jjui/package.nix +++ b/pkgs/by-name/jj/jjui/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "A TUI for Jujutsu VCS"; homepage = "https://github.com/idursun/jjui"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ adda ]; mainProgram = "jjui"; diff --git a/pkgs/by-name/jo/jogger/package.nix b/pkgs/by-name/jo/jogger/package.nix index d4d4dbf6731748..5d096a5e0e07b4 100644 --- a/pkgs/by-name/jo/jogger/package.nix +++ b/pkgs/by-name/jo/jogger/package.nix @@ -58,15 +58,15 @@ stdenv.mkDerivation (finalAttrs: { glib-networking ]; - meta = { + meta = with lib; { description = "App for Gnome Mobile to Track running and other workouts"; homepage = "https://codeberg.org/baarkerlounger/jogger"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Plus cc0 ]; mainProgram = "jogger"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/jo/jose/package.nix b/pkgs/by-name/jo/jose/package.nix index ce721eaa9a4137..09271aaadefd8d 100644 --- a/pkgs/by-name/jo/jose/package.nix +++ b/pkgs/by-name/jo/jose/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { ]; enableParallelBuilding = true; - meta = { + meta = with lib; { description = "C-language implementation of Javascript Object Signing and Encryption"; mainProgram = "jose"; homepage = "https://github.com/latchset/jose"; maintainers = [ ]; - license = lib.licenses.asl20; - platforms = lib.platforms.all; + license = licenses.asl20; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/jp/jp-zip-codes/package.nix b/pkgs/by-name/jp/jp-zip-codes/package.nix index a279aea8f7eef7..29c38be2389976 100644 --- a/pkgs/by-name/jp/jp-zip-codes/package.nix +++ b/pkgs/by-name/jp/jp-zip-codes/package.nix @@ -32,13 +32,13 @@ stdenvNoCC.mkDerivation { ]; }; - meta = { + meta = with lib; { description = "Zip files containing japanese zip codes"; longDescription = "Zip files with japanese zip codes for japanese IME dictionaries"; homepage = "https://github.com/musjj/jp-zip-codes"; - license = lib.licenses.publicDomain; - maintainers = with lib.maintainers; [ pineapplehunter ]; - platforms = lib.platforms.all; + license = licenses.publicDomain; + maintainers = with maintainers; [ pineapplehunter ]; + platforms = platforms.all; # this does not need to be separately built # it only provides some zip files hydraPlatforms = [ ]; diff --git a/pkgs/by-name/jp/jpilot/package.nix b/pkgs/by-name/jp/jpilot/package.nix index 430b6fd094b8a3..5c624f2ae57743 100644 --- a/pkgs/by-name/jp/jpilot/package.nix +++ b/pkgs/by-name/jp/jpilot/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-pilot-prefix=${pilot-link}" ]; - meta = { + meta = with lib; { description = "Desktop organizer software for the Palm Pilot"; homepage = "https://www.jpilot.org/"; - license = lib.licenses.gpl2; + license = licenses.gpl2; mainProgram = "jpilot"; - maintainers = with lib.maintainers; [ PapayaJackal ]; + maintainers = with maintainers; [ PapayaJackal ]; }; } diff --git a/pkgs/by-name/jq/jq-zsh-plugin/package.nix b/pkgs/by-name/jq/jq-zsh-plugin/package.nix index b0566ed6403f28..0156e8ddc0ab26 100644 --- a/pkgs/by-name/jq/jq-zsh-plugin/package.nix +++ b/pkgs/by-name/jq/jq-zsh-plugin/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Interactively build jq expressions in Zsh"; homepage = "https://github.com/reegnz/jq-zsh-plugin"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.vinnymeller ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = [ maintainers.vinnymeller ]; }; } diff --git a/pkgs/by-name/jr/jreleaser-cli/package.nix b/pkgs/by-name/jr/jreleaser-cli/package.nix index f45a6f0b63470e..7caa84888af965 100644 --- a/pkgs/by-name/jr/jreleaser-cli/package.nix +++ b/pkgs/by-name/jr/jreleaser-cli/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { --add-flags "-jar $out/share/java/${pname}.jar" ''; - meta = { + meta = with lib; { homepage = "https://jreleaser.org/"; description = "Release projects quickly and easily"; - sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.i-al-istannen ]; + sourceProvenance = [ sourceTypes.binaryBytecode ]; + license = licenses.asl20; + maintainers = [ maintainers.i-al-istannen ]; mainProgram = "jreleaser-cli"; }; } diff --git a/pkgs/by-name/jr/jrl-cmakemodules/package.nix b/pkgs/by-name/jr/jrl-cmakemodules/package.nix index 71d9e27ad7f581..bfefd50ad97ae4 100644 --- a/pkgs/by-name/jr/jrl-cmakemodules/package.nix +++ b/pkgs/by-name/jr/jrl-cmakemodules/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake ]; - meta = { + meta = with lib; { description = "CMake utility toolbox"; homepage = "https://github.com/jrl-umi3218/jrl-cmakemodules"; - license = lib.licenses.lgpl3Plus; - maintainers = [ lib.maintainers.nim65s ]; - platforms = lib.platforms.all; + license = licenses.lgpl3Plus; + maintainers = [ maintainers.nim65s ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/js/jsonld-cli/package.nix b/pkgs/by-name/js/jsonld-cli/package.nix index d65ca60a30d9c6..1121fe7d97e099 100644 --- a/pkgs/by-name/js/jsonld-cli/package.nix +++ b/pkgs/by-name/js/jsonld-cli/package.nix @@ -19,12 +19,12 @@ buildNpmPackage rec { npmDepsHash = "sha256-6oQKHeX5P2UsXRFK7ZwmJYasuNT5Ch/bYCIUAXq5zUM="; dontNpmBuild = true; - meta = { + meta = with lib; { description = "JSON-LD command line interface tool"; homepage = "https://github.com/digitalbazaar/jsonld-cli"; changelog = "https://github.com/digitalbazaar/jsonld-cli/blob/main/CHANGELOG.md"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ msladecek ]; + license = licenses.bsd3; + maintainers = with maintainers; [ msladecek ]; mainProgram = "jsonld"; }; } diff --git a/pkgs/by-name/js/jsonnet/package.nix b/pkgs/by-name/js/jsonnet/package.nix index 498cf26dadf296..44a5a5052fc71c 100644 --- a/pkgs/by-name/js/jsonnet/package.nix +++ b/pkgs/by-name/js/jsonnet/package.nix @@ -55,14 +55,14 @@ stdenv.mkDerivation rec { cp -r ./html $out/share/doc/jsonnet ''; - meta = { + meta = with lib; { description = "Purely-functional configuration language that helps you define JSON data"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ benley copumpkin ]; - license = lib.licenses.asl20; + license = licenses.asl20; homepage = "https://github.com/google/jsonnet"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/js/jsvc/package.nix b/pkgs/by-name/js/jsvc/package.nix index 5bc6ae6335b978..18888a7ac285d8 100644 --- a/pkgs/by-name/js/jsvc/package.nix +++ b/pkgs/by-name/js/jsvc/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://commons.apache.org/proper/commons-daemon"; description = "Part of the Apache Commons Daemon software, a set of utilities and Java support classes for running Java applications as server processes"; - maintainers = with lib.maintainers; [ rsynnest ]; - license = lib.licenses.asl20; - platforms = with lib.platforms; unix; + maintainers = with maintainers; [ rsynnest ]; + license = licenses.asl20; + platforms = with platforms; unix; mainProgram = "jsvc"; }; } diff --git a/pkgs/by-name/ju/judy/package.nix b/pkgs/by-name/ju/judy/package.nix index 8d2918cc5a539f..44f8d7c6c66ed0 100644 --- a/pkgs/by-name/ju/judy/package.nix +++ b/pkgs/by-name/ju/judy/package.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation rec { # Let's wait for the upstream fix similar to https://sourceforge.net/p/judy/patches/4/ enableParallelBuilding = false; - meta = { + meta = with lib; { homepage = "https://judy.sourceforge.net/"; - license = lib.licenses.lgpl21Plus; + license = licenses.lgpl21Plus; description = "State-of-the-art C library that implements a sparse dynamic array"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ju/jujuutils/package.nix b/pkgs/by-name/ju/jujuutils/package.nix index 7cfb5340415d3c..29ad87514e0a6d 100644 --- a/pkgs/by-name/ju/jujuutils/package.nix +++ b/pkgs/by-name/ju/jujuutils/package.nix @@ -16,10 +16,10 @@ stdenv.mkDerivation rec { buildInputs = [ linuxHeaders ]; - meta = { + meta = with lib; { homepage = "https://github.com/cladisch/linux-firewire-utils"; description = "Utilities around FireWire devices connected to a Linux computer"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ju/jumpapp/package.nix b/pkgs/by-name/ju/jumpapp/package.nix index fd6a3b8c727674..981a6f259af880 100644 --- a/pkgs/by-name/ju/jumpapp/package.nix +++ b/pkgs/by-name/ju/jumpapp/package.nix @@ -42,10 +42,10 @@ stdenv.mkDerivation rec { sed -i "2 i export PATH=${perl}/bin:\$PATH" $out/bin/jumpappify-desktop-entry ''; - meta = { + meta = with lib; { homepage = "https://github.com/mkropat/jumpapp"; description = "Run-or-raise application switcher for any X11 desktop"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.matklad ]; + license = licenses.mit; + maintainers = [ maintainers.matklad ]; }; } diff --git a/pkgs/by-name/ju/junction-font/package.nix b/pkgs/by-name/ju/junction-font/package.nix index 33932a2a180e4e..4af2aed4882a3d 100644 --- a/pkgs/by-name/ju/junction-font/package.nix +++ b/pkgs/by-name/ju/junction-font/package.nix @@ -23,7 +23,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Junction is a a humanist sans-serif font"; longDescription = '' Junction is a a humanist sans-serif, and the first open-source type @@ -32,7 +32,7 @@ stdenvNoCC.mkDerivation { international support. ''; homepage = "https://www.theleagueofmoveabletype.com/junction"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ minijackson ]; + license = licenses.ofl; + maintainers = with maintainers; [ minijackson ]; }; } diff --git a/pkgs/by-name/ju/junest/package.nix b/pkgs/by-name/ju/junest/package.nix index d26020ece57925..75a99d0e086a0f 100644 --- a/pkgs/by-name/ju/junest/package.nix +++ b/pkgs/by-name/ju/junest/package.nix @@ -32,12 +32,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Arch distro that runs on top of another without root"; homepage = "https://github.com/fsquillace/junest"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "junest"; - maintainers = with lib.maintainers; [ jdev082 ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ jdev082 ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ju/junicode/package.nix b/pkgs/by-name/ju/junicode/package.nix index 77ef17a6fcdcaf..3e25d81dfdb5b6 100644 --- a/pkgs/by-name/ju/junicode/package.nix +++ b/pkgs/by-name/ju/junicode/package.nix @@ -55,10 +55,10 @@ stdenvNoCC.mkDerivation rec { tests = callPackage ./tests.nix { }; }; - meta = { + meta = with lib; { homepage = "https://github.com/psb1558/Junicode-font"; description = "Unicode font for medievalists"; - maintainers = with lib.maintainers; [ ivan-timokhin ]; - license = lib.licenses.ofl; + maintainers = with maintainers; [ ivan-timokhin ]; + license = licenses.ofl; }; } diff --git a/pkgs/by-name/jw/jwhois/package.nix b/pkgs/by-name/jw/jwhois/package.nix index a4f0de644ef296..c6aef5aeafd36d 100644 --- a/pkgs/by-name/jw/jwhois/package.nix +++ b/pkgs/by-name/jw/jwhois/package.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation (finalAttrs: { env.NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isDarwin "-liconv"; - meta = { + meta = with lib; { description = "Client for the WHOIS protocol allowing you to query the owner of a domain name"; homepage = "https://www.gnu.org/software/jwhois/"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.unix; + license = licenses.gpl3Only; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ka/kak-tree-sitter-unwrapped/package.nix b/pkgs/by-name/ka/kak-tree-sitter-unwrapped/package.nix index b15e544e22241f..96679231956445 100644 --- a/pkgs/by-name/ka/kak-tree-sitter-unwrapped/package.nix +++ b/pkgs/by-name/ka/kak-tree-sitter-unwrapped/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { tests.version = testers.testVersion { package = kak-tree-sitter-unwrapped; }; }; - meta = { + meta = with lib; { homepage = "https://git.sr.ht/~hadronized/kak-tree-sitter"; description = "Server that interfaces tree-sitter with kakoune"; mainProgram = "kak-tree-sitter"; - license = with lib.licenses; [ bsd3 ]; - maintainers = with lib.maintainers; [ lelgenio ]; + license = with licenses; [ bsd3 ]; + maintainers = with maintainers; [ lelgenio ]; }; } diff --git a/pkgs/by-name/ka/kamailio/package.nix b/pkgs/by-name/ka/kamailio/package.nix index c83d81c31ed9ab..42790f4d4a97f1 100644 --- a/pkgs/by-name/ka/kamailio/package.nix +++ b/pkgs/by-name/ka/kamailio/package.nix @@ -102,11 +102,11 @@ stdenv.mkDerivation (finalAttrs: { kamailio-bin = callPackage ./test-kamailio-bin { }; }; - meta = { + meta = with lib; { description = "Fast and flexible SIP server, proxy, SBC, and load balancer"; homepage = "https://www.kamailio.org/"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ mawis ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + maintainers = with maintainers; [ mawis ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ka/kamp/package.nix b/pkgs/by-name/ka/kamp/package.nix index 4ac465dbc505bc..eb9e55dc0d7c7d 100644 --- a/pkgs/by-name/ka/kamp/package.nix +++ b/pkgs/by-name/ka/kamp/package.nix @@ -21,12 +21,12 @@ rustPlatform.buildRustPackage rec { install scripts/* -Dt $out/bin ''; - meta = { + meta = with lib; { description = "Tool to control Kakoune editor from the command line"; homepage = "https://github.com/vbauerster/kamp"; - license = lib.licenses.unlicense; - maintainers = with lib.maintainers; [ erikeah ]; + license = licenses.unlicense; + maintainers = with maintainers; [ erikeah ]; mainProgram = "kamp"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ka/kangaru/package.nix b/pkgs/by-name/ka/kangaru/package.nix index 388e656a577e73..758f03e54c96af 100644 --- a/pkgs/by-name/ka/kangaru/package.nix +++ b/pkgs/by-name/ka/kangaru/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { description = "Inversion of control container for C++11, C++14 and later"; homepage = "https://github.com/gracicot/kangaru"; - maintainers = with lib.maintainers; [ l33tname ]; - platforms = lib.platforms.all; - license = lib.licenses.mit; + maintainers = with maintainers; [ l33tname ]; + platforms = platforms.all; + license = licenses.mit; }; }) diff --git a/pkgs/by-name/ka/kanha/package.nix b/pkgs/by-name/ka/kanha/package.nix index 583671f38433fa..94af4d17f2c536 100644 --- a/pkgs/by-name/ka/kanha/package.nix +++ b/pkgs/by-name/ka/kanha/package.nix @@ -30,11 +30,11 @@ rustPlatform.buildRustPackage rec { ] ); - meta = { + meta = with lib; { description = "Web-app pentesting suite written in rust"; homepage = "https://github.com/pwnwriter/kanha"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pwnwriter ]; + license = licenses.mit; + maintainers = with maintainers; [ pwnwriter ]; mainProgram = "kanha"; }; } diff --git a/pkgs/by-name/ka/kanif/package.nix b/pkgs/by-name/ka/kanif/package.nix index 5a2658c6247bc6..60b34e466566db 100644 --- a/pkgs/by-name/ka/kanif/package.nix +++ b/pkgs/by-name/ka/kanif/package.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { substituteInPlace ./kanif --replace '$taktuk_command = "taktuk";' '$taktuk_command = "${taktuk}/bin/taktuk";' ''; - meta = { + meta = with lib; { description = "Cluster management and administration swiss army knife"; longDescription = '' Kanif is a tool for high performance computing clusters management and @@ -32,9 +32,9 @@ stdenv.mkDerivation rec { remote files or directories locally ('kaget' command). It relies on TakTuk for efficiency and scalability.''; homepage = "http://taktuk.gforge.inria.fr/kanif"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.bzizou ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = [ maintainers.bzizou ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ka/kaniko/package.nix b/pkgs/by-name/ka/kaniko/package.nix index 901b047bf963d8..2525e4523a34df 100644 --- a/pkgs/by-name/ka/kaniko/package.nix +++ b/pkgs/by-name/ka/kaniko/package.nix @@ -44,12 +44,12 @@ buildGoModule rec { command = "${kaniko}/bin/executor version"; }; - meta = { + meta = with lib; { description = "Tool to build container images from a Dockerfile, inside a container or Kubernetes cluster"; homepage = "https://github.com/GoogleContainerTools/kaniko"; - license = lib.licenses.asl20; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + platforms = platforms.linux; + maintainers = with maintainers; [ jk qjoly ]; diff --git a/pkgs/by-name/ka/kapacitor/package.nix b/pkgs/by-name/ka/kapacitor/package.nix index 3f58b489bc81d1..21c9e7c6dc1e08 100644 --- a/pkgs/by-name/ka/kapacitor/package.nix +++ b/pkgs/by-name/ka/kapacitor/package.nix @@ -114,13 +114,13 @@ buildGoModule rec { # See also https://github.com/NixOS/nix/pull/1646 __darwinAllowLocalNetworking = true; - meta = { + meta = with lib; { description = "Open source framework for processing, monitoring, and alerting on time series data"; homepage = "https://influxdata.com/time-series-platform/kapacitor/"; downloadPage = "https://github.com/influxdata/kapacitor/releases"; - license = lib.licenses.mit; + license = licenses.mit; changelog = "https://github.com/influxdata/kapacitor/blob/master/CHANGELOG.md"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ offline totoroot ]; diff --git a/pkgs/by-name/ka/karla/package.nix b/pkgs/by-name/ka/karla/package.nix index ea8090d36626a6..51c65d1e4c2de7 100644 --- a/pkgs/by-name/ka/karla/package.nix +++ b/pkgs/by-name/ka/karla/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Outstanding grotesque sans serif typeface family"; longDescription = '' Karla is an outstanding grotesque sans serif typeface @@ -33,8 +33,8 @@ stdenvNoCC.mkDerivation { released through Google Webfonts in 2012. ''; homepage = "https://github.com/googlefonts/karla"; - license = lib.licenses.ofl; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ mimvoid ]; + license = licenses.ofl; + platforms = platforms.all; + maintainers = with maintainers; [ mimvoid ]; }; } diff --git a/pkgs/by-name/ka/karlender/package.nix b/pkgs/by-name/ka/karlender/package.nix index 57330777073a36..ba4b5a563cab13 100644 --- a/pkgs/by-name/ka/karlender/package.nix +++ b/pkgs/by-name/ka/karlender/package.nix @@ -67,15 +67,15 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Mobile-friendly GTK calendar application"; homepage = "https://gitlab.com/floers/karlender"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "karlender"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ chuangzhu bot-wxt1221 ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ka/karp/package.nix b/pkgs/by-name/ka/karp/package.nix index 0ff3390dd3ea16..6b3e6208a88eee 100644 --- a/pkgs/by-name/ka/karp/package.nix +++ b/pkgs/by-name/ka/karp/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation { qt6.qtwebengine ]; - meta = { + meta = with lib; { homepage = "https://apps.kde.org/karp/"; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; + platforms = platforms.unix; + maintainers = with maintainers; [ bot-wxt1221 ]; description = "KDE alternative to PDF arranger"; - license = with lib.licenses; [ + license = with licenses; [ bsd3 cc-by-sa-40 cc0 diff --git a/pkgs/by-name/ka/kazumi/package.nix b/pkgs/by-name/ka/kazumi/package.nix index 8d9f76b797b8cc..50a259515c0836 100644 --- a/pkgs/by-name/ka/kazumi/package.nix +++ b/pkgs/by-name/ka/kazumi/package.nix @@ -109,12 +109,12 @@ flutter327.buildFlutterApplication rec { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { description = "Watch Animes online with danmaku support"; homepage = "https://github.com/Predidit/Kazumi"; mainProgram = "kazumi"; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ aucub ]; - platforms = lib.platforms.linux; + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ aucub ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ka/kazv/package.nix b/pkgs/by-name/ka/kazv/package.nix index 048bc2c837cda5..10acdc329fd552 100644 --- a/pkgs/by-name/ka/kazv/package.nix +++ b/pkgs/by-name/ka/kazv/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { description = "Convergent matrix client and instant messaging app"; homepage = "https://kazv.chat/"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ fgaz ]; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ fgaz ]; mainProgram = "kazv"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/kb/kbdd/package.nix b/pkgs/by-name/kb/kbdd/package.nix index 55278a45945589..a4b81e3590c8a2 100644 --- a/pkgs/by-name/kb/kbdd/package.nix +++ b/pkgs/by-name/kb/kbdd/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation { dbus-glib ]; - meta = { + meta = with lib; { description = "Simple daemon and library to make per window layout using XKB"; homepage = "https://github.com/qnikst/kbdd"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; maintainers = [ ]; mainProgram = "kbdd"; }; diff --git a/pkgs/by-name/kb/kbld/package.nix b/pkgs/by-name/kb/kbld/package.nix index 12203ad633282f..dd01f351b1f3a2 100644 --- a/pkgs/by-name/kb/kbld/package.nix +++ b/pkgs/by-name/kb/kbld/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-X=carvel.dev/kbld/pkg/kbld/version.Version=${version}" ]; - meta = { + meta = with lib; { description = "Seamlessly incorporates image building and image pushing into your development and deployment workflows"; homepage = "https://carvel.dev/kbld/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ benchand ]; + license = licenses.asl20; + maintainers = with maintainers; [ benchand ]; mainProgram = "kbld"; }; } diff --git a/pkgs/by-name/kc/kconfig-frontends/package.nix b/pkgs/by-name/kc/kconfig-frontends/package.nix index d7ec574a5963d4..a1f24ca5fb29d3 100644 --- a/pkgs/by-name/kc/kconfig-frontends/package.nix +++ b/pkgs/by-name/kc/kconfig-frontends/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation (finalAttrs: { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=format-security"; - meta = { + meta = with lib; { description = "Out of Linux tree packaging of the kconfig infrastructure"; longDescription = '' Configuration language and system for the Linux kernel and other @@ -65,8 +65,8 @@ stdenv.mkDerivation (finalAttrs: { dependencies. ''; homepage = "https://bitbucket.org/nuttx/tools/"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/kd/kdesvn/package.nix b/pkgs/by-name/kd/kdesvn/package.nix index 42a38cb7508f8b..1f0cb4c74bf027 100644 --- a/pkgs/by-name/kd/kdesvn/package.nix +++ b/pkgs/by-name/kd/kdesvn/package.nix @@ -62,13 +62,13 @@ stdenv.mkDerivation { libsForQt5.kxmlgui ]; - meta = { + meta = with lib; { homepage = "https://invent.kde.org/sdk/kdesvn"; - platforms = lib.platforms.unix; - badPlatforms = lib.platforms.darwin; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; + platforms = platforms.unix; + badPlatforms = platforms.darwin; + maintainers = with maintainers; [ bot-wxt1221 ]; mainProgram = "kdesvn"; description = "Subversion client by KDE"; - license = lib.licenses.agpl3Plus; + license = licenses.agpl3Plus; }; } diff --git a/pkgs/by-name/ke/keepass-keeagent/package.nix b/pkgs/by-name/ke/keepass-keeagent/package.nix index a47eaf7b42813c..d1f535f4a89f1f 100644 --- a/pkgs/by-name/ke/keepass-keeagent/package.nix +++ b/pkgs/by-name/ke/keepass-keeagent/package.nix @@ -18,11 +18,11 @@ let stripRoot = false; }; - meta = { + meta = with lib; { description = "KeePass plugin to allow other programs to access SSH keys stored in a KeePass database for authentication"; homepage = "http://lechnology.com/software/keeagent"; - platforms = with lib.platforms; linux; - license = lib.licenses.gpl2; + platforms = with platforms; linux; + license = licenses.gpl2; maintainers = [ ]; }; diff --git a/pkgs/by-name/ke/keepass-keepasshttp/package.nix b/pkgs/by-name/ke/keepass-keepasshttp/package.nix index e63a771b8cfcbf..9a002af8263e38 100644 --- a/pkgs/by-name/ke/keepass-keepasshttp/package.nix +++ b/pkgs/by-name/ke/keepass-keepasshttp/package.nix @@ -21,11 +21,11 @@ let sha256 = "0bkzxggbqx7sql3sp46bqham6r457in0vrgh3ai3lw2jrw79pwmh"; }; - meta = { + meta = with lib; { description = "KeePass plugin to expose password entries securely (256bit AES/CBC) over HTTP"; homepage = "https://github.com/pfn/keepasshttp"; - platforms = with lib.platforms; linux; - license = lib.licenses.gpl3; + platforms = with platforms; linux; + license = licenses.gpl3; }; pluginFilename = "KeePassHttp.plgx"; diff --git a/pkgs/by-name/ke/keepass-otpkeyprov/package.nix b/pkgs/by-name/ke/keepass-otpkeyprov/package.nix index bdcaa7cc405a61..f6d2e4d760897f 100644 --- a/pkgs/by-name/ke/keepass-otpkeyprov/package.nix +++ b/pkgs/by-name/ke/keepass-otpkeyprov/package.nix @@ -18,12 +18,12 @@ let stripRoot = false; }; - meta = { + meta = with lib; { description = "OtpKeyProv is a key provider based on one-time passwords"; homepage = "https://keepass.info/plugins.html#otpkeyprov"; - platforms = with lib.platforms; linux; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.Enteee ]; + platforms = with platforms; linux; + license = licenses.gpl2; + maintainers = [ maintainers.Enteee ]; }; pluginFilename = "OtpKeyProv.plgx"; diff --git a/pkgs/by-name/ke/keka/package.nix b/pkgs/by-name/ke/keka/package.nix index 9a14753cb219fa..6261fec126238e 100644 --- a/pkgs/by-name/ke/keka/package.nix +++ b/pkgs/by-name/ke/keka/package.nix @@ -26,12 +26,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "macOS file archiver"; homepage = "https://www.keka.io"; - license = lib.licenses.unfree; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ emilytrau ]; - platforms = lib.platforms.darwin; + license = licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ emilytrau ]; + platforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/ke/kerbrute/package.nix b/pkgs/by-name/ke/kerbrute/package.nix index c3f3b222816ed9..8a9860dab07cb7 100644 --- a/pkgs/by-name/ke/kerbrute/package.nix +++ b/pkgs/by-name/ke/kerbrute/package.nix @@ -24,11 +24,11 @@ python3.pkgs.buildPythonApplication rec { $out/bin/kerbrute --version ''; - meta = { + meta = with lib; { homepage = "https://github.com/TarlogicSecurity/kerbrute"; description = "Kerberos bruteforce utility"; mainProgram = "kerbrute"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ applePrincess ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ applePrincess ]; }; } diff --git a/pkgs/by-name/ke/keto/package.nix b/pkgs/by-name/ke/keto/package.nix index c85c5750a95ab5..530bf3ec524a88 100644 --- a/pkgs/by-name/ke/keto/package.nix +++ b/pkgs/by-name/ke/keto/package.nix @@ -36,10 +36,10 @@ buildGoModule { "-X github.com/ory/keto/internal/driver/config.Commit=${commit}" ]; - meta = { + meta = with lib; { description = "ORY Keto, the open source access control server"; homepage = "https://www.ory.sh/keto/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ mrmebelman ]; + license = licenses.asl20; + maintainers = with maintainers; [ mrmebelman ]; }; } diff --git a/pkgs/by-name/ke/key-rack/package.nix b/pkgs/by-name/ke/key-rack/package.nix index dcb5ac1c82ff9b..f2ceb65c217ba0 100644 --- a/pkgs/by-name/ke/key-rack/package.nix +++ b/pkgs/by-name/ke/key-rack/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "View and edit your apps’ keys"; homepage = "https://gitlab.gnome.org/sophie-h/key-rack"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ getchoo ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ getchoo ]; mainProgram = "key-rack"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ke/keyboard-layout-editor/package.nix b/pkgs/by-name/ke/keyboard-layout-editor/package.nix index babab710e0b66b..a1fb46a8629af8 100644 --- a/pkgs/by-name/ke/keyboard-layout-editor/package.nix +++ b/pkgs/by-name/ke/keyboard-layout-editor/package.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Keyboard layout editor for XKB"; homepage = "https://github.com/vgresak/keyboard-layout-editor"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fliegendewurst ]; + license = licenses.mit; + maintainers = with maintainers; [ fliegendewurst ]; mainProgram = "keyboard-layout-editor"; platforms = [ "x86_64-linux" diff --git a/pkgs/by-name/ke/keycastr/package.nix b/pkgs/by-name/ke/keycastr/package.nix index 8efa645b49aad2..fe737bf2eabb48 100644 --- a/pkgs/by-name/ke/keycastr/package.nix +++ b/pkgs/by-name/ke/keycastr/package.nix @@ -26,12 +26,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { homepage = "https://github.com/keycastr/keycastr"; description = "Open-source keystroke visualizer"; - license = lib.licenses.bsd3; - platforms = lib.platforms.darwin; - maintainers = with lib.maintainers; [ matteopacini ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.bsd3; + platforms = platforms.darwin; + maintainers = with maintainers; [ matteopacini ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/ke/keycloak/keycloak-metrics-spi/default.nix b/pkgs/by-name/ke/keycloak/keycloak-metrics-spi/default.nix index a595dab703338c..732df5a765c05d 100644 --- a/pkgs/by-name/ke/keycloak/keycloak-metrics-spi/default.nix +++ b/pkgs/by-name/ke/keycloak/keycloak-metrics-spi/default.nix @@ -23,11 +23,11 @@ maven.buildMavenPackage rec { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/aerogear/keycloak-metrics-spi"; description = "Keycloak Service Provider that adds a metrics endpoint"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ benley ]; - platforms = lib.platforms.linux; + license = licenses.asl20; + maintainers = with maintainers; [ benley ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ke/keyguard/package.nix b/pkgs/by-name/ke/keyguard/package.nix index 787b18bb6d11c2..3f445f4962d235 100644 --- a/pkgs/by-name/ke/keyguard/package.nix +++ b/pkgs/by-name/ke/keyguard/package.nix @@ -89,16 +89,16 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Alternative client for the Bitwarden platform, created to provide the best user experience possible"; homepage = "https://github.com/AChep/keyguard-app"; mainProgram = "Keyguard"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ aucub ]; - sourceProvenance = with lib.sourceTypes; [ + license = licenses.unfree; + maintainers = with maintainers; [ aucub ]; + sourceProvenance = with sourceTypes; [ fromSource binaryBytecode ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ke/keyleds/package.nix b/pkgs/by-name/ke/keyleds/package.nix index aac1bde6bbea30..803dc497181353 100644 --- a/pkgs/by-name/ke/keyleds/package.nix +++ b/pkgs/by-name/ke/keyleds/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { cmakeBuildType = "MinSizeRel"; - meta = { + meta = with lib; { homepage = "https://github.com/keyleds/keyleds"; description = "Advanced RGB animation service for Logitech keyboards"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/by-name/ke/keypunch/package.nix b/pkgs/by-name/ke/keypunch/package.nix index ed8f60a0b84f50..ea8751628fff7b 100644 --- a/pkgs/by-name/ke/keypunch/package.nix +++ b/pkgs/by-name/ke/keypunch/package.nix @@ -58,15 +58,15 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Practice your typing skills"; homepage = "https://github.com/bragefuglseth/keypunch"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "keypunch"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ tomasajt getchoo ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/kf/kfilt/package.nix b/pkgs/by-name/kf/kfilt/package.nix index fe6f315e8fe22c..badb592d301923 100644 --- a/pkgs/by-name/kf/kfilt/package.nix +++ b/pkgs/by-name/kf/kfilt/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { "-X github.com/ryane/kfilt/cmd.GitCommit=${src.rev}" ]; - meta = { + meta = with lib; { description = "Command-line tool that filters Kubernetes resources"; mainProgram = "kfilt"; homepage = "https://github.com/ryane/kfilt"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.ryane ]; + license = licenses.asl20; + maintainers = [ maintainers.ryane ]; }; } diff --git a/pkgs/by-name/kh/khard/package.nix b/pkgs/by-name/kh/khard/package.nix index 4426c021455475..4c18f6fd741314 100644 --- a/pkgs/by-name/kh/khard/package.nix +++ b/pkgs/by-name/kh/khard/package.nix @@ -45,11 +45,11 @@ python3.pkgs.buildPythonApplication rec { passthru.tests.version = testers.testVersion { package = khard; }; - meta = { + meta = with lib; { homepage = "https://github.com/scheibler/khard"; description = "Console carddav client"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ matthiasbeyer ]; + license = licenses.gpl3; + maintainers = with maintainers; [ matthiasbeyer ]; mainProgram = "khard"; }; } diff --git a/pkgs/by-name/ki/kikoplay/qhttpengine.nix b/pkgs/by-name/ki/kikoplay/qhttpengine.nix index 3f1afdcab6c4a4..af2f08ea44ccce 100644 --- a/pkgs/by-name/ki/kikoplay/qhttpengine.nix +++ b/pkgs/by-name/ki/kikoplay/qhttpengine.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { buildInputs = [ qt5.qtbase ]; - meta = { - maintainers = with lib.maintainers; [ xddxdd ]; + meta = with lib; { + maintainers = with maintainers; [ xddxdd ]; description = "HTTP server for Qt applications"; homepage = "https://github.com/nitroshare/qhttpengine"; - license = lib.licenses.mit; + license = licenses.mit; }; } diff --git a/pkgs/by-name/ki/kimai/package.nix b/pkgs/by-name/ki/kimai/package.nix index aee271d3286abb..ad440cdbce9a3c 100644 --- a/pkgs/by-name/ki/kimai/package.nix +++ b/pkgs/by-name/ki/kimai/package.nix @@ -55,16 +55,16 @@ php.buildComposerProject (finalAttrs: { kimai = nixosTests.kimai; }; - meta = { + meta = with lib; { description = "Web-based multi-user time-tracking application"; homepage = "https://www.kimai.org/"; - license = lib.licenses.agpl3Plus; + license = licenses.agpl3Plus; longDescription = " Kimai is a web-based multi-user time-tracking application. Works great for everyone: freelancers, companies, organizations - everyone can track their times, generate reports, create invoices and do so much more. "; - maintainers = with lib.maintainers; [ peat-psuwit ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ peat-psuwit ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ki/kime/package.nix b/pkgs/by-name/ki/kime/package.nix index 2b8e2951571bd2..a84df3ff25e88a 100644 --- a/pkgs/by-name/ki/kime/package.nix +++ b/pkgs/by-name/ki/kime/package.nix @@ -130,11 +130,11 @@ stdenv.mkDerivation (finalAttrs: { RUST_BACKTRACE = 1; - meta = { + meta = with lib; { homepage = "https://github.com/Riey/kime"; description = "Korean IME"; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.riey ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = [ maintainers.riey ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ki/kine/package.nix b/pkgs/by-name/ki/kine/package.nix index 24ef4bdcdeb440..9dc87bdf0e0bb2 100644 --- a/pkgs/by-name/ki/kine/package.nix +++ b/pkgs/by-name/ki/kine/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { "CGO_CFLAGS" = "-DSQLITE_ENABLE_DBSTAT_VTAB=1 -DSQLITE_USE_ALLOCA=1"; }; - meta = { + meta = with lib; { description = "Kine is an etcdshim that translates etcd API to RDMS"; homepage = "https://github.com/k3s-io/kine"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ techknowlogick ]; + license = licenses.asl20; + maintainers = with maintainers; [ techknowlogick ]; mainProgram = "kine"; }; } diff --git a/pkgs/by-name/ki/kingstvis/package.nix b/pkgs/by-name/ki/kingstvis/package.nix index e11cba5e1a84e5..0d41fbe1c938f3 100644 --- a/pkgs/by-name/ki/kingstvis/package.nix +++ b/pkgs/by-name/ki/kingstvis/package.nix @@ -50,12 +50,12 @@ buildFHSEnv { runScript = "${src}/KingstVIS"; - meta = { + meta = with lib; { description = "Kingst Virtual Instruments Studio, software for logic analyzers"; homepage = "http://www.qdkingst.com/"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - maintainers = [ lib.maintainers.luisdaranda ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = [ maintainers.luisdaranda ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/ki/kissfft/package.nix b/pkgs/by-name/ki/kissfft/package.nix index 03d0e7d04584a7..499288be0b85ca 100644 --- a/pkgs/by-name/ki/kissfft/package.nix +++ b/pkgs/by-name/ki/kissfft/package.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation (finalAttrs: { --replace "-ffast-math" "" ''; - meta = { + meta = with lib; { description = "Mixed-radix Fast Fourier Transform based up on the KISS principle"; homepage = "https://github.com/mborgerding/kissfft"; - license = lib.licenses.bsd3; + license = licenses.bsd3; maintainers = [ ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ki/kitex/package.nix b/pkgs/by-name/ki/kitex/package.nix index 6a113f61a8d411..4356ce53556255 100644 --- a/pkgs/by-name/ki/kitex/package.nix +++ b/pkgs/by-name/ki/kitex/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { version = "v${version}"; }; - meta = { + meta = with lib; { description = "A high-performance and strong-extensibility Golang RPC framework"; homepage = "https://github.com/cloudwego/kitex"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.asl20; + maintainers = with maintainers; [ aaronjheng ]; mainProgram = "kitex"; }; } diff --git a/pkgs/by-name/ki/kittysay/package.nix b/pkgs/by-name/ki/kittysay/package.nix index 8938909aafe799..80bc8fd9551c08 100644 --- a/pkgs/by-name/ki/kittysay/package.nix +++ b/pkgs/by-name/ki/kittysay/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-F0WAtpAjBwL5YfzGtPgn7WTL6lgx3bjZFBQdDpjCr3I="; - meta = { + meta = with lib; { description = "Cowsay, but with a cute kitty :3"; homepage = "https://github.com/uncenter/kittysay"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + maintainers = with maintainers; [ isabelroses uncenter ]; diff --git a/pkgs/by-name/kl/klick/package.nix b/pkgs/by-name/kl/klick/package.nix index ead231281a0dd1..ed57d69b4a0b52 100644 --- a/pkgs/by-name/kl/klick/package.nix +++ b/pkgs/by-name/kl/klick/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { ]; prefixKey = "PREFIX="; - meta = { + meta = with lib; { homepage = "https://das.nasophon.de/klick/"; description = "Advanced command-line metronome for JACK"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; mainProgram = "klick"; }; } diff --git a/pkgs/by-name/kl/klong/package.nix b/pkgs/by-name/kl/klong/package.nix index e5ffb916dfd8d0..afde5fd2108e98 100644 --- a/pkgs/by-name/kl/klong/package.nix +++ b/pkgs/by-name/kl/klong/package.nix @@ -47,13 +47,13 @@ stdenv.mkDerivation rec { installManPage $docs/*.1 ''; - meta = { + meta = with lib; { description = "Simple Array programming language"; homepage = "https://t3x.org/klong"; mainProgram = "kg"; - maintainers = [ lib.maintainers.casaca ]; - platforms = lib.platforms.all; - license = with lib.licenses; [ + maintainers = [ maintainers.casaca ]; + platforms = platforms.all; + license = with licenses; [ publicDomain cc0 ]; diff --git a/pkgs/by-name/kn/knewave/package.nix b/pkgs/by-name/kn/knewave/package.nix index bdb829d09dca1b..7b4f000306a633 100644 --- a/pkgs/by-name/kn/knewave/package.nix +++ b/pkgs/by-name/kn/knewave/package.nix @@ -24,13 +24,13 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = " A bold, painted face for the rocker within"; longDescription = '' Knewave is bold, painted face. Get it? Git it. ''; homepage = "https://www.theleagueofmoveabletype.com/knewave"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ minijackson ]; + license = licenses.ofl; + maintainers = with maintainers; [ minijackson ]; }; } diff --git a/pkgs/by-name/kn/knxd/package.nix b/pkgs/by-name/kn/knxd/package.nix index adeeec2d114562..49e9603277e3e9 100644 --- a/pkgs/by-name/kn/knxd/package.nix +++ b/pkgs/by-name/kn/knxd/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation (finalAttrs: { "systemdsysusersdir=$(out)/lib/sysusers.d" ]; - meta = { + meta = with lib; { description = "Advanced router/gateway for KNX"; homepage = "https://github.com/knxd/knxd"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ sikmir ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ sikmir ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ko/kochi-substitute-naga10/package.nix b/pkgs/by-name/ko/kochi-substitute-naga10/package.nix index 85c33e57cb4877..d028a1c5575d61 100644 --- a/pkgs/by-name/ko/kochi-substitute-naga10/package.nix +++ b/pkgs/by-name/ko/kochi-substitute-naga10/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Japanese font, non-free replacement for MS Gothic and MS Mincho"; longDescription = '' Kochi Gothic and Kochi Mincho were developed as free replacements for the @@ -34,7 +34,7 @@ stdenvNoCC.mkDerivation rec { Debian version. ''; homepage = "https://osdn.net/projects/efont/"; - license = lib.licenses.unfreeRedistributable; - maintainers = [ lib.maintainers.auntie ]; + license = licenses.unfreeRedistributable; + maintainers = [ maintainers.auntie ]; }; } diff --git a/pkgs/by-name/ko/kochi-substitute/package.nix b/pkgs/by-name/ko/kochi-substitute/package.nix index 875b5ca1453afa..a17d545aab3616 100644 --- a/pkgs/by-name/ko/kochi-substitute/package.nix +++ b/pkgs/by-name/ko/kochi-substitute/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation { outputHashMode = "recursive"; outputHash = "10hcrf51npc1w2jsz5aiw07dgw96vs4wmsz4ai9zyaswipvf8ddy"; - meta = { + meta = with lib; { description = "Japanese font, a free replacement for MS Gothic and MS Mincho"; longDescription = '' Kochi Gothic and Kochi Mincho were developed as free replacements for the @@ -48,7 +48,7 @@ stdenv.mkDerivation { from the naga10 font. ''; homepage = "https://osdn.net/projects/efont/"; - license = lib.licenses.wadalab; - maintainers = [ lib.maintainers.auntie ]; + license = licenses.wadalab; + maintainers = [ maintainers.auntie ]; }; } diff --git a/pkgs/by-name/ko/komika-fonts/package.nix b/pkgs/by-name/ko/komika-fonts/package.nix index c6473d2c8445ed..011e6c28e7bfe5 100644 --- a/pkgs/by-name/ko/komika-fonts/package.nix +++ b/pkgs/by-name/ko/komika-fonts/package.nix @@ -106,15 +106,15 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://moorstation.org/typoasis/designers/lab/index.htm"; # description from archive here: http://web.archive.org/web/20030422173903fw_/http://www.hardcovermedia.com/lab/Pages/Fontpages/komikahands.html description = "First ever comic lettering super family"; longDescription = '' 50 fonts, covering everything the comic artist needs when it comes to lettering. 10 text faces, 10 display faces, 10 tiling faces, 10 hand variations, 9 poster faces, and 20 balloons in a font. ''; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ pancaek ]; - platforms = lib.platforms.all; + license = licenses.unfree; + maintainers = with maintainers; [ pancaek ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ko/kontroll/package.nix b/pkgs/by-name/ko/kontroll/package.nix index ff169a1c86a071..cb3a28733cf878 100644 --- a/pkgs/by-name/ko/kontroll/package.nix +++ b/pkgs/by-name/ko/kontroll/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ protobuf ]; - meta = { + meta = with lib; { description = "Kontroll demonstates how to control the Keymapp API, making it easy to control your ZSA keyboard from the command line and scripts"; homepage = "https://github.com/zsa/kontroll"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ davsanchez ]; + license = licenses.mit; + maintainers = with maintainers; [ davsanchez ]; mainProgram = "kontroll"; }; } diff --git a/pkgs/by-name/kp/kpt/package.nix b/pkgs/by-name/kp/kpt/package.nix index 9c6de4cb3b8075..08df6fbcd2fd0e 100644 --- a/pkgs/by-name/kp/kpt/package.nix +++ b/pkgs/by-name/kp/kpt/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-X github.com/kptdev/kpt/run.version=${version}" ]; - meta = { + meta = with lib; { description = "Automate Kubernetes Configuration Editing"; mainProgram = "kpt"; homepage = "https://github.com/kptdev/kpt"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ mikefaille ]; + license = licenses.asl20; + maintainers = with maintainers; [ mikefaille ]; }; } diff --git a/pkgs/by-name/kr/kraft/package.nix b/pkgs/by-name/kr/kraft/package.nix index 257cae733dad72..db9c84bdb99271 100644 --- a/pkgs/by-name/kr/kraft/package.nix +++ b/pkgs/by-name/kr/kraft/package.nix @@ -51,11 +51,11 @@ buildGoModule rec { }; }; - meta = { + meta = with lib; { description = "Build and use highly customized and ultra-lightweight unikernel VMs"; homepage = "https://github.com/unikraft/kraftkit"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ dit7ya cloudripper ]; diff --git a/pkgs/by-name/kr/kratos/package.nix b/pkgs/by-name/kr/kratos/package.nix index 9da5b1e6e129e6..66f2c64952d58d 100644 --- a/pkgs/by-name/kr/kratos/package.nix +++ b/pkgs/by-name/kr/kratos/package.nix @@ -45,11 +45,11 @@ buildGoModule { substituteInPlace Makefile --replace-fail '/usr/bin/env bash' '${stdenv.shell}' ''; - meta = { + meta = with lib; { mainProgram = "kratos"; description = "API-first Identity and User Management system that is built according to cloud architecture best practices"; homepage = "https://www.ory.sh/kratos/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ mrmebelman ]; + license = licenses.asl20; + maintainers = with maintainers; [ mrmebelman ]; }; } diff --git a/pkgs/by-name/kr/krop/package.nix b/pkgs/by-name/kr/krop/package.nix index 889cd4317e0479..1133d541c06cf8 100644 --- a/pkgs/by-name/kr/krop/package.nix +++ b/pkgs/by-name/kr/krop/package.nix @@ -60,7 +60,7 @@ py.pkgs.buildPythonApplication rec { # Disable checks because of interference with older Qt versions // xcb doCheck = false; - meta = { + meta = with lib; { homepage = "http://arminstraub.com/software/krop"; description = "Graphical tool to crop the pages of PDF files"; longDescription = '' @@ -71,9 +71,9 @@ py.pkgs.buildPythonApplication rec { your eReader does not support convenient scrolling. Krop also has a command line interface. ''; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ leenaars ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ leenaars ]; + platforms = platforms.linux; mainProgram = "krop"; }; } diff --git a/pkgs/by-name/ks/ks/package.nix b/pkgs/by-name/ks/ks/package.nix index 73fe7a1b8d7e68..f6736633d09c1b 100644 --- a/pkgs/by-name/ks/ks/package.nix +++ b/pkgs/by-name/ks/ks/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation (finalAttrs: { --zsh --name _ks ${./ks-completion.zsh} ''; - meta = { + meta = with lib; { mainProgram = "ks"; homepage = "https://github.com/loteoo/ks"; description = "Command-line secrets manager powered by macOS keychains"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ivankovnatsky ]; - platforms = lib.platforms.darwin; + license = licenses.mit; + maintainers = with maintainers; [ ivankovnatsky ]; + platforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/ks/ksh/package.nix b/pkgs/by-name/ks/ksh/package.nix index 86f06ae202667f..0fd1b6445bf76c 100644 --- a/pkgs/by-name/ks/ksh/package.nix +++ b/pkgs/by-name/ks/ksh/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { description = "KornShell Command And Programming Language"; longDescription = '' The KornShell language was designed and developed by David G. Korn at @@ -48,9 +48,9 @@ stdenv.mkDerivation (finalAttrs: { many different computers and workstations on which it is implemented. ''; homepage = "https://github.com/att/ast"; - license = lib.licenses.cpl10; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.all; + license = licenses.cpl10; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.all; }; passthru = { diff --git a/pkgs/by-name/ku/kube-state-metrics/package.nix b/pkgs/by-name/ku/kube-state-metrics/package.nix index f44df084eb8946..84dae581194244 100644 --- a/pkgs/by-name/ku/kube-state-metrics/package.nix +++ b/pkgs/by-name/ku/kube-state-metrics/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "./tools" ]; - meta = { + meta = with lib; { homepage = "https://github.com/kubernetes/kube-state-metrics"; description = "Add-on agent to generate and expose k8s cluster-level metrics"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.eskytthe ]; - platforms = lib.platforms.unix; + license = licenses.asl20; + maintainers = [ maintainers.eskytthe ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ku/kubefetch/package.nix b/pkgs/by-name/ku/kubefetch/package.nix index 4a771efc824a98..d5b63dc9f4aade 100644 --- a/pkgs/by-name/ku/kubefetch/package.nix +++ b/pkgs/by-name/ku/kubefetch/package.nix @@ -16,11 +16,11 @@ buildGoModule rec { vendorHash = "sha256-qsncOsCxepySJI+rJnzbIGxSWlxMzqShtzcEoJD2UPw="; - meta = { + meta = with lib; { description = "A neofetch-like tool to show info about your Kubernetes Cluster."; homepage = "https://github.com/jkulzer/kubefetch"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ wrmilling ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ wrmilling ]; mainProgram = "kubefetch"; }; } diff --git a/pkgs/by-name/ku/kubemqctl/package.nix b/pkgs/by-name/ku/kubemqctl/package.nix index f8d0960db38da1..9c6922f443ebd9 100644 --- a/pkgs/by-name/ku/kubemqctl/package.nix +++ b/pkgs/by-name/ku/kubemqctl/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { doCheck = false; # TODO tests are failing - meta = { + meta = with lib; { homepage = "https://github.com/kubemq-io/kubemqctl"; description = "Kubemqctl is a command line interface (CLI) for Kubemq Kubernetes Message Broker"; mainProgram = "kubemqctl"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ brianmcgee ]; + license = licenses.asl20; + maintainers = with maintainers; [ brianmcgee ]; }; } diff --git a/pkgs/by-name/ku/kubernetes-kcp/package.nix b/pkgs/by-name/ku/kubernetes-kcp/package.nix index 4d294ff8e8d5a4..17e4c45b59cc1f 100644 --- a/pkgs/by-name/ku/kubernetes-kcp/package.nix +++ b/pkgs/by-name/ku/kubernetes-kcp/package.nix @@ -58,12 +58,12 @@ buildGoModule rec { version = "v${version}"; }; - meta = { + meta = with lib; { homepage = "https://kcp.io"; description = "Kubernetes-like control planes for form-factors and use-cases beyond Kubernetes and container workloads"; mainProgram = "kcp"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ rytswd ]; }; diff --git a/pkgs/by-name/ku/kubo-migrator-unwrapped/package.nix b/pkgs/by-name/ku/kubo-migrator-unwrapped/package.nix index 4734a263459efe..916ca2cd0741ec 100644 --- a/pkgs/by-name/ku/kubo-migrator-unwrapped/package.nix +++ b/pkgs/by-name/ku/kubo-migrator-unwrapped/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { doCheck = false; - meta = { + meta = with lib; { description = "Run the appropriate migrations for migrating the filesystem repository of Kubo (migrations not included)"; homepage = "https://github.com/ipfs/fs-repo-migrations"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ Luflosi elitak ]; diff --git a/pkgs/by-name/ku/kulala-fmt/package.nix b/pkgs/by-name/ku/kulala-fmt/package.nix index 1644e7900e98cb..e8de385dd3a289 100644 --- a/pkgs/by-name/ku/kulala-fmt/package.nix +++ b/pkgs/by-name/ku/kulala-fmt/package.nix @@ -25,12 +25,12 @@ buildGoModule rec { "-X github.com/mistweaverco/kulala-fmt/cmd/kulalafmt.VERSION=${version}" ]; - meta = { + meta = with lib; { description = "Opinionated .http and .rest files linter and formatter"; homepage = "https://github.com/mistweaverco/kulala-fmt"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ CnTeng ]; + license = licenses.mit; + maintainers = with maintainers; [ CnTeng ]; mainProgram = "kulala-fmt"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/kv/kvmarwaita/package.nix b/pkgs/by-name/kv/kvmarwaita/package.nix index 4e924a963873b7..4c1fb3d4aedc04 100644 --- a/pkgs/by-name/kv/kvmarwaita/package.nix +++ b/pkgs/by-name/kv/kvmarwaita/package.nix @@ -25,11 +25,11 @@ stdenvNoCC.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Marwaita theme for Kvantum"; homepage = "https://github.com/darkomarko42/KvMarwaita"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ romildo ]; + license = licenses.gpl3Only; + platforms = platforms.unix; + maintainers = with maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/kx/kxstitch/package.nix b/pkgs/by-name/kx/kxstitch/package.nix index 6b5f5f272c8bf9..5750f455a57343 100644 --- a/pkgs/by-name/kx/kxstitch/package.nix +++ b/pkgs/by-name/kx/kxstitch/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation { done ''; - meta = { + meta = with lib; { homepage = "https://invent.kde.org/graphics/kxstitch"; description = "Cross stitch pattern and chart creation"; - maintainers = with lib.maintainers; [ eliandoran ]; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ eliandoran ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; mainProgram = "kxstitch"; }; } diff --git a/pkgs/by-name/ky/kyua/package.nix b/pkgs/by-name/ky/kyua/package.nix index c3d4b7fc49b1f8..b536396dae4759 100644 --- a/pkgs/by-name/ky/kyua/package.nix +++ b/pkgs/by-name/ky/kyua/package.nix @@ -108,13 +108,13 @@ stdenv.mkDerivation (finalAttrs: { __structuredAttrs = true; - meta = { + meta = with lib; { description = "Testing framework for infrastructure software"; homepage = "https://github.com/freebsd/kyua/"; changelog = "https://github.com/freebsd/kyua/blob/master/NEWS.md"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "kyua"; - maintainers = with lib.maintainers; [ reckenrode ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ reckenrode ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/la/labwc-gtktheme/package.nix b/pkgs/by-name/la/labwc-gtktheme/package.nix index 7dfdffd33a9ec9..e0d0823fcc229f 100644 --- a/pkgs/by-name/la/labwc-gtktheme/package.nix +++ b/pkgs/by-name/la/labwc-gtktheme/package.nix @@ -44,12 +44,12 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/labwc/labwc-gtktheme"; description = "Create a labwc theme based on current Gtk theme"; mainProgram = "labwc-gtktheme"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ romildo ]; + license = licenses.gpl2Only; + platforms = platforms.unix; + maintainers = with maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/la/labwc-menu-generator/package.nix b/pkgs/by-name/la/labwc-menu-generator/package.nix index c11753e6e6e355..12ce49157213b2 100644 --- a/pkgs/by-name/la/labwc-menu-generator/package.nix +++ b/pkgs/by-name/la/labwc-menu-generator/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/labwc/labwc-menu-generator"; description = "Menu generator for labwc"; mainProgram = "labwc-menu-generator"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ romildo ]; + license = licenses.gpl2Only; + platforms = platforms.unix; + maintainers = with maintainers; [ romildo ]; }; }) diff --git a/pkgs/by-name/la/labwc-tweaks-gtk/package.nix b/pkgs/by-name/la/labwc-tweaks-gtk/package.nix index 39b9e2b8a95dd4..e3e27da80c4ef7 100644 --- a/pkgs/by-name/la/labwc-tweaks-gtk/package.nix +++ b/pkgs/by-name/la/labwc-tweaks-gtk/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/labwc/labwc-tweaks-gtk"; description = "Configuration gui app for labwc; gtk fork"; mainProgram = "labwc-tweaks-gtk"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ romildo ]; + license = licenses.gpl2Only; + platforms = platforms.unix; + maintainers = with maintainers; [ romildo ]; }; }) diff --git a/pkgs/by-name/la/labwc-tweaks/package.nix b/pkgs/by-name/la/labwc-tweaks/package.nix index cb2cbf07f15c8e..5c4d5803eed4b2 100644 --- a/pkgs/by-name/la/labwc-tweaks/package.nix +++ b/pkgs/by-name/la/labwc-tweaks/package.nix @@ -42,13 +42,13 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/labwc/labwc-tweaks"; description = "Configuration gui app for labwc"; mainProgram = "labwc-tweaks"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Only; + platforms = platforms.unix; + maintainers = with maintainers; [ AndersonTorres romildo ]; diff --git a/pkgs/by-name/la/lact/package.nix b/pkgs/by-name/la/lact/package.nix index 85a5c338e4c975..928730aa0a985a 100644 --- a/pkgs/by-name/la/lact/package.nix +++ b/pkgs/by-name/la/lact/package.nix @@ -68,15 +68,15 @@ rustPlatform.buildRustPackage rec { } ''; - meta = { + meta = with lib; { description = "Linux GPU Configuration Tool for AMD and NVIDIA"; homepage = "https://github.com/ilya-zlobintsev/LACT"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ figsoda atemu ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "lact"; }; } diff --git a/pkgs/by-name/la/lager/package.nix b/pkgs/by-name/la/lager/package.nix index 248c8ee0f4cfb1..558b394c57ce8c 100644 --- a/pkgs/by-name/la/lager/package.nix +++ b/pkgs/by-name/la/lager/package.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation (finalAttrs: { preConfigure = '' rm BUILD ''; - meta = { + meta = with lib; { homepage = "https://github.com/arximboldi/lager"; description = "C++ library for value-oriented design using the unidirectional data-flow architecture — Redux for C++"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nek0 ]; + license = licenses.mit; + maintainers = with maintainers; [ nek0 ]; }; }) diff --git a/pkgs/by-name/la/larswm/package.nix b/pkgs/by-name/la/larswm/package.nix index 28d5fe805c5ac2..7006d9be05ae81 100644 --- a/pkgs/by-name/la/larswm/package.nix +++ b/pkgs/by-name/la/larswm/package.nix @@ -37,10 +37,10 @@ stdenv.mkDerivation rec { "install.man" ]; - meta = { + meta = with lib; { homepage = "http://www.fnurt.net/larswm"; description = "9wm-like tiling window manager"; - license = lib.licenses.free; - platforms = lib.platforms.linux; + license = licenses.free; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/la/lastfm/package.nix b/pkgs/by-name/la/lastfm/package.nix index cfd068185f4a39..14ea08d7e498e9 100644 --- a/pkgs/by-name/la/lastfm/package.nix +++ b/pkgs/by-name/la/lastfm/package.nix @@ -47,12 +47,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { ''; }); - meta = { + meta = with lib; { description = "Music services manager"; homepage = "https://www.last.fm/"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ iivusly ]; - platforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = with maintainers; [ iivusly ]; + platforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/la/latexminted/package.nix b/pkgs/by-name/la/latexminted/package.nix index ee5409f5dadf76..ab35b4c6343135 100644 --- a/pkgs/by-name/la/latexminted/package.nix +++ b/pkgs/by-name/la/latexminted/package.nix @@ -30,11 +30,11 @@ python3Packages.buildPythonApplication rec { tests.version = testers.testVersion { package = latexminted; }; }; - meta = { + meta = with lib; { description = "Python executable for LaTeX minted package"; homepage = "https://pypi.org/project/latexminted"; - license = lib.licenses.lppl13c; + license = licenses.lppl13c; mainProgram = "latexminted"; - maintainers = with lib.maintainers; [ romildo ]; + maintainers = with maintainers; [ romildo ]; }; } diff --git a/pkgs/by-name/la/latte-integrale/package.nix b/pkgs/by-name/la/latte-integrale/package.nix index d6f9df4cc1f680..1a261d610e0249 100644 --- a/pkgs/by-name/la/latte-integrale/package.nix +++ b/pkgs/by-name/la/latte-integrale/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation (finalAttrs: { cddlib ]; - meta = { + meta = with lib; { description = "Software for counting lattice points and integration over convex polytopes"; homepage = "https://www.math.ucdavis.edu/~latte/"; - license = lib.licenses.gpl2; - maintainers = with lib.maintainers; [ amesgen ]; - platforms = lib.platforms.unix; + license = licenses.gpl2; + maintainers = with maintainers; [ amesgen ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/la/lattice-diamond/package.nix b/pkgs/by-name/la/lattice-diamond/package.nix index 462101b67a3074..0cc1b1e5652a58 100644 --- a/pkgs/by-name/la/lattice-diamond/package.nix +++ b/pkgs/by-name/la/lattice-diamond/package.nix @@ -132,7 +132,7 @@ stdenv.mkDerivation { libusb-compat-0_1 ]; - meta = { + meta = with lib; { description = "Vendor development tools for Lattice FPGA devices"; longDescription = '' Lattice Diamond software is the leading-edge software design environment @@ -140,8 +140,8 @@ stdenv.mkDerivation { next-generation replacement for ispLEVER. ''; homepage = "https://www.latticesemi.com/latticediamond"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ q3k ]; + license = licenses.unfree; + maintainers = with maintainers; [ q3k ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/la/lazpaint/package.nix b/pkgs/by-name/la/lazpaint/package.nix index 42ef5257a83d13..c94ae86b5693b4 100644 --- a/pkgs/by-name/la/lazpaint/package.nix +++ b/pkgs/by-name/la/lazpaint/package.nix @@ -77,13 +77,13 @@ stdenv.mkDerivation rec { qtWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ python3 ]}) ''; - meta = { + meta = with lib; { description = "Image editor like PaintBrush or Paint.Net"; homepage = "https://lazpaint.github.io"; downloadPage = "https://github.com/bgrabitmap/lazpaint/"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ aleksana ]; + license = licenses.gpl3Only; + platforms = platforms.linux; + maintainers = with maintainers; [ aleksana ]; mainProgram = "lazpaint"; }; } diff --git a/pkgs/by-name/la/lazyjournal/package.nix b/pkgs/by-name/la/lazyjournal/package.nix index bf03ee5786be0b..6351cad006992d 100644 --- a/pkgs/by-name/la/lazyjournal/package.nix +++ b/pkgs/by-name/la/lazyjournal/package.nix @@ -27,12 +27,12 @@ buildGoModule { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "TUI for journalctl, file system logs, as well as Docker and Podman containers"; homepage = "https://github.com/Lifailon/lazyjournal"; - license = with lib.licenses; [ mit ]; - platforms = with lib.platforms; unix ++ windows; - maintainers = with lib.maintainers; [ pluiedev ]; + license = with licenses; [ mit ]; + platforms = with platforms; unix ++ windows; + maintainers = with maintainers; [ pluiedev ]; mainProgram = "lazyjournal"; }; } diff --git a/pkgs/by-name/lb/lbreakout2/package.nix b/pkgs/by-name/lb/lbreakout2/package.nix index fb53778a817ae9..40995976abfb91 100644 --- a/pkgs/by-name/lb/lbreakout2/package.nix +++ b/pkgs/by-name/lb/lbreakout2/package.nix @@ -43,16 +43,16 @@ stdenv.mkDerivation (finalAttrs: { # Aborted (core dumped) hardeningDisable = [ "fortify" ]; - meta = { + meta = with lib; { homepage = "http://lgames.sourceforge.net/LBreakout2/"; description = "Breakout clone from the LGames series"; - license = with lib.licenses; [ gpl2Plus ]; + license = with licenses; [ gpl2Plus ]; mainProgram = "lbreakout2"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ AndersonTorres ciil ]; - platforms = lib.platforms.unix; - hydraPlatforms = lib.platforms.linux; # build hangs on both Darwin platforms, needs investigation + platforms = platforms.unix; + hydraPlatforms = platforms.linux; # build hangs on both Darwin platforms, needs investigation }; }) diff --git a/pkgs/by-name/lc/lcevcdec/package.nix b/pkgs/by-name/lc/lcevcdec/package.nix index 201d76afd5bcb0..38c88c6420d27e 100644 --- a/pkgs/by-name/lc/lcevcdec/package.nix +++ b/pkgs/by-name/lc/lcevcdec/package.nix @@ -102,12 +102,12 @@ stdenv.mkDerivation (finalAttrs: { tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = { + meta = with lib; { homepage = "https://github.com/v-novaltd/LCEVCdec"; description = "MPEG-5 LCEVC Decoder"; - license = lib.licenses.bsd3Clear; + license = licenses.bsd3Clear; pkgConfigModules = [ "lcevc_dec" ]; - maintainers = with lib.maintainers; [ jopejoe1 ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ jopejoe1 ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/lc/lci/package.nix b/pkgs/by-name/lc/lci/package.nix index 11db8b1bf0c888..aee2f926babccf 100644 --- a/pkgs/by-name/lc/lci/package.nix +++ b/pkgs/by-name/lc/lci/package.nix @@ -12,11 +12,11 @@ stdenv.mkDerivation rec { sha256 = "204f1ca5e2f56247d71ab320246811c220ed511bf08c9cb7f305cf180a93948e"; }; buildInputs = [ readline ]; - meta = { + meta = with lib; { description = "Lambda calculus interpreter"; mainProgram = "lci"; - maintainers = with lib.maintainers; [ raskin ]; - platforms = with lib.platforms; linux; - license = lib.licenses.gpl3; + maintainers = with maintainers; [ raskin ]; + platforms = with platforms; linux; + license = licenses.gpl3; }; } diff --git a/pkgs/by-name/lc/lcms1/package.nix b/pkgs/by-name/lc/lcms1/package.nix index 4bf2f1e3c43489..48f6b9e9a15da4 100644 --- a/pkgs/by-name/lc/lcms1/package.nix +++ b/pkgs/by-name/lc/lcms1/package.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation rec { doCheck = false; # fails with "Error in Linear interpolation (2p): Must be i=8000, But is n=8001" - meta = { + meta = with lib; { description = "Color management engine"; homepage = "http://www.littlecms.com/"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; + license = licenses.mit; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ld/ld64/package.nix b/pkgs/by-name/ld/ld64/package.nix index 074e92daa725b5..35b5cca845f8a1 100644 --- a/pkgs/by-name/ld/ld64/package.nix +++ b/pkgs/by-name/ld/ld64/package.nix @@ -207,12 +207,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { rev-prefix = "ld64-"; }; - meta = { + meta = with lib; { description = "The classic linker for Darwin"; homepage = "https://opensource.apple.com/releases/"; - license = lib.licenses.apple-psl20; + license = licenses.apple-psl20; mainProgram = "ld"; - maintainers = lib.teams.darwin.members; - platforms = lib.platforms.darwin; # Porting to other platforms is incomplete. Support only Darwin for now. + maintainers = teams.darwin.members; + platforms = platforms.darwin; # Porting to other platforms is incomplete. Support only Darwin for now. }; }) diff --git a/pkgs/by-name/ld/ldm/package.nix b/pkgs/by-name/ld/ldm/package.nix index 3edf44094f4306..aa32e913e41a35 100644 --- a/pkgs/by-name/ld/ldm/package.nix +++ b/pkgs/by-name/ld/ldm/package.nix @@ -42,10 +42,10 @@ stdenv.mkDerivation rec { cp -v ldm $out/bin ''; - meta = { + meta = with lib; { description = "Lightweight device mounter, with libudev as only dependency"; mainProgram = "ldm"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; + license = licenses.mit; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/le/league-script-number-one/package.nix b/pkgs/by-name/le/league-script-number-one/package.nix index a408f64cb589df..4427601ae2114b 100644 --- a/pkgs/by-name/le/league-script-number-one/package.nix +++ b/pkgs/by-name/le/league-script-number-one/package.nix @@ -23,7 +23,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Modern, coquettish script font"; longDescription = '' This ain’t no Lucinda. League Script #1 is a modern, coquettish script @@ -33,7 +33,7 @@ stdenvNoCC.mkDerivation { framework for future script designs. ''; homepage = "https://www.theleagueofmoveabletype.com/league-script"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ minijackson ]; + license = licenses.ofl; + maintainers = with maintainers; [ minijackson ]; }; } diff --git a/pkgs/by-name/le/leddy/package.nix b/pkgs/by-name/le/leddy/package.nix index b78b5a3b79ece4..3e9b72de3c859e 100644 --- a/pkgs/by-name/le/leddy/package.nix +++ b/pkgs/by-name/le/leddy/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { ]; doCheck = false; # no tests - meta = { + meta = with lib; { description = "LED controller for the Fnatic miniStreak and Fnatic Streak keyboards"; homepage = "https://github.com/XanClic/leddy"; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.jmir ]; + license = licenses.gpl3Plus; + maintainers = [ maintainers.jmir ]; mainProgram = "leddy"; }; } diff --git a/pkgs/by-name/le/leela/package.nix b/pkgs/by-name/le/leela/package.nix index 32a25a936fceff..ba301dba919dda 100644 --- a/pkgs/by-name/le/leela/package.nix +++ b/pkgs/by-name/le/leela/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation { "MANDIR=$(out)/share/man" ]; - meta = { + meta = with lib; { description = "CLI frontend to the poppler-glib library of PDF tools"; homepage = "https://github.com/TrilbyWhite/Leela"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.puffnfresh ]; - platforms = lib.platforms.linux; + license = licenses.gpl3; + maintainers = [ maintainers.puffnfresh ]; + platforms = platforms.linux; mainProgram = "leela"; }; } diff --git a/pkgs/by-name/le/leftwm-config/package.nix b/pkgs/by-name/le/leftwm-config/package.nix index 90c91a261e0d95..881d1827dbf372 100644 --- a/pkgs/by-name/le/leftwm-config/package.nix +++ b/pkgs/by-name/le/leftwm-config/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-U3mgbG9h2cDqr0aqxbI2CJUOweIoDXDxmsWg0zxolSo="; - meta = { + meta = with lib; { description = "Little satellite utility for LeftWM"; homepage = "https://github.com/leftwm/leftwm-config"; - maintainers = with lib.maintainers; [ denperidge ]; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ denperidge ]; + license = licenses.bsd3; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/le/leftwm-theme/package.nix b/pkgs/by-name/le/leftwm-theme/package.nix index c10601a0f1f991..f0016e4df97400 100644 --- a/pkgs/by-name/le/leftwm-theme/package.nix +++ b/pkgs/by-name/le/leftwm-theme/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage { OPENSSL_NO_VENDOR = 1; }; - meta = { + meta = with lib; { description = "Theme manager for LeftWM"; homepage = "https://github.com/leftwm/leftwm-theme"; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ denperidge ]; + license = licenses.bsd3; + platforms = platforms.linux; + maintainers = with maintainers; [ denperidge ]; }; } diff --git a/pkgs/by-name/le/lenmus/package.nix b/pkgs/by-name/le/lenmus/package.nix index 4a7fbb5409db8c..fcd6c61f0cf59f 100644 --- a/pkgs/by-name/le/lenmus/package.nix +++ b/pkgs/by-name/le/lenmus/package.nix @@ -91,7 +91,7 @@ stdenv.mkDerivation (finalAttrs: { makeWrapper $out/{Applications/lenmus.app/Contents/MacOS,bin}/lenmus ''; - meta = { + meta = with lib; { description = "LenMus Phonascus is a program for learning music"; longDescription = '' LenMus Phonascus is a free open source program (GPL v3) for learning music. @@ -99,9 +99,9 @@ stdenv.mkDerivation (finalAttrs: { The different activities can be customized to meet your needs ''; homepage = "http://www.lenmus.org/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ramkromberg ]; - platforms = lib.platforms.unix; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ ramkromberg ]; + platforms = platforms.unix; mainProgram = "lenmus"; }; }) diff --git a/pkgs/by-name/le/lerc/package.nix b/pkgs/by-name/le/lerc/package.nix index 08a7cb63afbfb4..85e099d9e73278 100644 --- a/pkgs/by-name/le/lerc/package.nix +++ b/pkgs/by-name/le/lerc/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation (finalAttrs: { package = finalAttrs.finalPackage; }; - meta = { + meta = with lib; { description = "C++ library for Limited Error Raster Compression"; homepage = "https://github.com/esri/lerc"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.asl20; + maintainers = with maintainers; [ dotlambda ]; pkgConfigModules = [ "Lerc" ]; }; }) diff --git a/pkgs/by-name/le/levmar/package.nix b/pkgs/by-name/le/levmar/package.nix index 0212cae30f628c..09582deadaff1d 100644 --- a/pkgs/by-name/le/levmar/package.nix +++ b/pkgs/by-name/le/levmar/package.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation rec { cp liblevmar.a $out/lib ''; - meta = { + meta = with lib; { description = "ANSI C implementations of Levenberg-Marquardt, usable also from C++"; homepage = "https://www.ics.forth.gr/~lourakis/levmar/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.all; + license = licenses.gpl2Plus; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/lg/lgogdownloader/package.nix b/pkgs/by-name/lg/lgogdownloader/package.nix index 2dfee512b8a825..a8620b89e8d0e4 100644 --- a/pkgs/by-name/lg/lgogdownloader/package.nix +++ b/pkgs/by-name/lg/lgogdownloader/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation (finalAttrs: { version = testers.testVersion { package = finalAttrs.finalPackage; }; }; - meta = { + meta = with lib; { description = "Unofficial downloader to GOG.com for Linux users. It uses the same API as the official GOGDownloader"; mainProgram = "lgogdownloader"; homepage = "https://github.com/Sude-/lgogdownloader"; - license = lib.licenses.wtfpl; - maintainers = with lib.maintainers; [ _0x4A6F ]; - platforms = lib.platforms.linux; + license = licenses.wtfpl; + maintainers = with maintainers; [ _0x4A6F ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/li/lib60870/package.nix b/pkgs/by-name/li/lib60870/package.nix index 5e3c0da7c42ad2..4669042b7be9e0 100644 --- a/pkgs/by-name/li/lib60870/package.nix +++ b/pkgs/by-name/li/lib60870/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = { + meta = with lib; { description = "Implementation of the IEC 60870-5-101/104 protocol"; homepage = "https://libiec61850.com/"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ stv0g ]; - platforms = lib.platforms.unix; + license = licenses.gpl3Only; + maintainers = with maintainers; [ stv0g ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/li/libaal/package.nix b/pkgs/by-name/li/libaal/package.nix index 8e3535d90f6b49..25680b917b9ce8 100644 --- a/pkgs/by-name/li/libaal/package.nix +++ b/pkgs/by-name/li/libaal/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "http://www.namesys.com/"; description = "Support library for Reiser4"; - license = lib.licenses.gpl2; - maintainers = with lib.maintainers; [ mglolenstine ]; - platforms = with lib.platforms; linux; + license = licenses.gpl2; + maintainers = with maintainers; [ mglolenstine ]; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/li/libaio/package.nix b/pkgs/by-name/li/libaio/package.nix index ca30fc15d6bc21..0b6057a9157ef7 100644 --- a/pkgs/by-name/li/libaio/package.nix +++ b/pkgs/by-name/li/libaio/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { checkTarget = "partcheck"; # "check" needs root - meta = { + meta = with lib; { description = "Library for asynchronous I/O in Linux"; homepage = "https://lse.sourceforge.net/io/aio.html"; - platforms = lib.platforms.linux; - license = lib.licenses.lgpl21; + platforms = platforms.linux; + license = licenses.lgpl21; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libamqpcpp/package.nix b/pkgs/by-name/li/libamqpcpp/package.nix index dfabbdb40c3a24..ba1df2fd770d5c 100644 --- a/pkgs/by-name/li/libamqpcpp/package.nix +++ b/pkgs/by-name/li/libamqpcpp/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; doCheck = true; - meta = { + meta = with lib; { description = "Library for communicating with a RabbitMQ server"; homepage = "https://github.com/CopernicaMarketingSoftware/AMQP-CPP"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ mjp ]; - platforms = lib.platforms.all; + license = licenses.asl20; + maintainers = with maintainers; [ mjp ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/li/libatomic_ops/package.nix b/pkgs/by-name/li/libatomic_ops/package.nix index b971e23e1acd21..e65290fcf2e94b 100644 --- a/pkgs/by-name/li/libatomic_ops/package.nix +++ b/pkgs/by-name/li/libatomic_ops/package.nix @@ -36,10 +36,10 @@ stdenv.mkDerivation rec { ./autogen.sh ''; - meta = { + meta = with lib; { description = "Library for semi-portable access to hardware-provided atomic memory update operations"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.raskin ]; - platforms = with lib.platforms; unix ++ windows; + license = licenses.gpl2Plus; + maintainers = [ maintainers.raskin ]; + platforms = with platforms; unix ++ windows; }; } diff --git a/pkgs/by-name/li/libavc1394/package.nix b/pkgs/by-name/li/libavc1394/package.nix index 7a58f151c9273d..2c74344cc5381a 100644 --- a/pkgs/by-name/li/libavc1394/package.nix +++ b/pkgs/by-name/li/libavc1394/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isMusl "-largp"; - meta = { + meta = with lib; { description = "Programming interface for the 1394 Trade Association AV/C (Audio/Video Control) Digital Interface Command Set"; homepage = "https://sourceforge.net/projects/libavc1394/"; - license = lib.licenses.lgpl21Plus; - platforms = lib.platforms.linux; + license = licenses.lgpl21Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/libb64/package.nix b/pkgs/by-name/li/libb64/package.nix index 2f73c45d0d9ed6..7d364037fe8d59 100644 --- a/pkgs/by-name/li/libb64/package.nix +++ b/pkgs/by-name/li/libb64/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { cp src/libb64.a src/cencode.o src/cdecode.o $out/lib/ ''; - meta = { + meta = with lib; { description = "ANSI C routines for fast base64 encoding/decoding"; homepage = "https://github.com/libb64/libb64"; - license = lib.licenses.publicDomain; + license = licenses.publicDomain; mainProgram = "base64"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/libbase58/package.nix b/pkgs/by-name/li/libbase58/package.nix index 94f7c4ec8bc74b..2d9e0c20cb9e50 100644 --- a/pkgs/by-name/li/libbase58/package.nix +++ b/pkgs/by-name/li/libbase58/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { buildInputs = [ libgcrypt ]; - meta = { + meta = with lib; { description = "C library for Bitcoin's base58 encoding"; homepage = "https://github.com/bitcoin/libbase58"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nagy ]; + license = licenses.mit; + maintainers = with maintainers; [ nagy ]; mainProgram = "base58"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/li/libbde/package.nix b/pkgs/by-name/li/libbde/package.nix index acbdb3e1aa3039..db62eca155357d 100644 --- a/pkgs/by-name/li/libbde/package.nix +++ b/pkgs/by-name/li/libbde/package.nix @@ -32,14 +32,14 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Library to access the BitLocker Drive Encryption (BDE) format"; homepage = "https://github.com/libyal/libbde/"; - license = lib.licenses.lgpl3; - maintainers = with lib.maintainers; [ + license = licenses.lgpl3; + maintainers = with maintainers; [ eliasp bot-wxt1221 ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/li/libbfio/package.nix b/pkgs/by-name/li/libbfio/package.nix index 21fad908b6f1ac..dacd51d3cd70ed 100644 --- a/pkgs/by-name/li/libbfio/package.nix +++ b/pkgs/by-name/li/libbfio/package.nix @@ -22,14 +22,14 @@ stdenv.mkDerivation (finalAttrs: { libtool ]; - meta = { + meta = with lib; { description = "Library to provide basic file input/output abstraction"; homepage = "https://github.com/libyal/libbfio"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Plus lgpl3Plus ]; - maintainers = with lib.maintainers; [ d3vil0p3r ]; - platforms = with lib.platforms; unix ++ windows; + maintainers = with maintainers; [ d3vil0p3r ]; + platforms = with platforms; unix ++ windows; }; }) diff --git a/pkgs/by-name/li/libblake3/package.nix b/pkgs/by-name/li/libblake3/package.nix index 4351d246fdd5f3..f5f649db07b349 100644 --- a/pkgs/by-name/li/libblake3/package.nix +++ b/pkgs/by-name/li/libblake3/package.nix @@ -22,14 +22,14 @@ stdenv.mkDerivation (finalAttrs: { cmake ]; - meta = { + meta = with lib; { description = "Official C implementation of BLAKE3"; homepage = "https://github.com/BLAKE3-team/BLAKE3/tree/master/c"; - license = with lib.licenses; [ + license = with licenses; [ asl20 cc0 ]; - maintainers = with lib.maintainers; [ fgaz ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ fgaz ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/li/libbs2b/package.nix b/pkgs/by-name/li/libbs2b/package.nix index 569b661d53c934..dfa9b95d7fc203 100644 --- a/pkgs/by-name/li/libbs2b/package.nix +++ b/pkgs/by-name/li/libbs2b/package.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation rec { ]; hardeningDisable = [ "format" ]; - meta = { + meta = with lib; { homepage = "https://bs2b.sourceforge.net/"; description = "Bauer stereophonic-to-binaural DSP library"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; + license = licenses.mit; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/libbytesize/package.nix b/pkgs/by-name/li/libbytesize/package.nix index 2e29b8b2990603..40317e9c7d0039 100644 --- a/pkgs/by-name/li/libbytesize/package.nix +++ b/pkgs/by-name/li/libbytesize/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation (finalAttrs: { pythonImportsCheck = [ "bytesize" ]; - meta = { + meta = with lib; { homepage = "https://github.com/storaged-project/libbytesize"; description = "Tiny library providing a C 'class' for working with arbitrary big sizes in bytes"; - license = lib.licenses.lgpl2Plus; + license = licenses.lgpl2Plus; mainProgram = "bscalc"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/li/libcangjie/package.nix b/pkgs/by-name/li/libcangjie/package.nix index b9e40ee59d65b5..bcff2351295c2e 100644 --- a/pkgs/by-name/li/libcangjie/package.nix +++ b/pkgs/by-name/li/libcangjie/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { description = "C library implementing the Cangjie input method"; homepage = "https://gitlab.freedesktop.org/cangjie/libcangjie"; - license = lib.licenses.lgpl3Plus; - maintainers = [ lib.maintainers.linquize ]; - platforms = lib.platforms.all; + license = licenses.lgpl3Plus; + maintainers = [ maintainers.linquize ]; + platforms = platforms.all; mainProgram = "libcangjie-cli"; }; } diff --git a/pkgs/by-name/li/libcdaudio/package.nix b/pkgs/by-name/li/libcdaudio/package.nix index eb21424d349c80..090c5b19591227 100644 --- a/pkgs/by-name/li/libcdaudio/package.nix +++ b/pkgs/by-name/li/libcdaudio/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "1fsy6dlzxrx177qc877qhajm9l4g28mvh06h2l15rxy4bapzknjz"; }; - meta = { + meta = with lib; { description = "Portable library for controlling audio CDs"; mainProgram = "libcdaudio-config"; homepage = "https://libcdaudio.sourceforge.net"; - platforms = lib.platforms.linux; - license = lib.licenses.lgpl2; + platforms = platforms.linux; + license = licenses.lgpl2; }; } diff --git a/pkgs/by-name/li/libcello/package.nix b/pkgs/by-name/li/libcello/package.nix index b7167529030929..d89c717e9da444 100644 --- a/pkgs/by-name/li/libcello/package.nix +++ b/pkgs/by-name/li/libcello/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { homepage = "https://libcello.org/"; description = "Higher level programming in C"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.MostAwesomeDude ]; - platforms = lib.platforms.unix; + license = licenses.bsd3; + maintainers = [ maintainers.MostAwesomeDude ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/libcgroup/package.nix b/pkgs/by-name/li/libcgroup/package.nix index 1f286741ef0e0f..33b958cd6bb316 100644 --- a/pkgs/by-name/li/libcgroup/package.nix +++ b/pkgs/by-name/li/libcgroup/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { --replace 'chmod u+s' 'chmod +x' ''; - meta = { + meta = with lib; { description = "Library and tools to manage Linux cgroups"; homepage = "https://github.com/libcgroup/libcgroup"; - license = lib.licenses.lgpl2; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.thoughtpolice ]; + license = licenses.lgpl2; + platforms = platforms.linux; + maintainers = [ maintainers.thoughtpolice ]; }; } diff --git a/pkgs/by-name/li/libconfig/package.nix b/pkgs/by-name/li/libconfig/package.nix index f0cc9417153122..335537e7a7ba80 100644 --- a/pkgs/by-name/li/libconfig/package.nix +++ b/pkgs/by-name/li/libconfig/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = lib.optionals (!finalAttrs.doCheck) [ "-DBUILD_TESTS:BOOL=OFF" ]; - meta = { + meta = with lib; { homepage = "https://hyperrealm.github.io/libconfig/"; description = "C/C++ library for processing configuration files"; - license = lib.licenses.lgpl3; - maintainers = with lib.maintainers; [ stv0g ]; - platforms = lib.platforms.all; + license = licenses.lgpl3; + maintainers = with maintainers; [ stv0g ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/li/libcrafter/package.nix b/pkgs/by-name/li/libcrafter/package.nix index d53e5e3c917c26..64f4bdf1b87667 100644 --- a/pkgs/by-name/li/libcrafter/package.nix +++ b/pkgs/by-name/li/libcrafter/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ libpcap ]; - meta = { + meta = with lib; { homepage = "https://github.com/pellegre/libcrafter"; description = "High level C++ network packet sniffing and crafting library"; - license = lib.licenses.bsd3; + license = licenses.bsd3; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/libcutl/package.nix b/pkgs/by-name/li/libcutl/package.nix index 0fce6200c4e61e..b96d31d47f67b0 100644 --- a/pkgs/by-name/li/libcutl/package.nix +++ b/pkgs/by-name/li/libcutl/package.nix @@ -24,7 +24,7 @@ gccStdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { description = "C++ utility library from Code Synthesis"; longDescription = '' libcutl is a C++ utility library. @@ -33,8 +33,8 @@ gccStdenv.mkDerivation (finalAttrs: { ''; homepage = "https://codesynthesis.com/projects/libcutl/"; changelog = "https://git.codesynthesis.com/cgit/libcutl/libcutl/log/"; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.xzfc ]; - license = lib.licenses.mit; + platforms = platforms.all; + maintainers = [ maintainers.xzfc ]; + license = licenses.mit; }; }) diff --git a/pkgs/by-name/li/libdaemon/package.nix b/pkgs/by-name/li/libdaemon/package.nix index 796cb02ea03fde..81b9747a1b0cab 100644 --- a/pkgs/by-name/li/libdaemon/package.nix +++ b/pkgs/by-name/li/libdaemon/package.nix @@ -28,10 +28,10 @@ stdenv.mkDerivation rec { "ac_cv_func_setpgrp_void=yes" ]; - meta = { + meta = with lib; { description = "Lightweight C library that eases the writing of UNIX daemons"; homepage = "http://0pointer.de/lennart/projects/libdaemon/"; - license = lib.licenses.lgpl2Plus; - platforms = lib.platforms.unix; + license = licenses.lgpl2Plus; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/libde265/package.nix b/pkgs/by-name/li/libde265/package.nix index 1184f2770dfb32..a6c490d487ac60 100644 --- a/pkgs/by-name/li/libde265/package.nix +++ b/pkgs/by-name/li/libde265/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation (finalAttrs: rec { }; }; - meta = { + meta = with lib; { homepage = "https://github.com/strukturag/libde265"; description = "Open h.265 video codec implementation"; mainProgram = "dec265"; - license = lib.licenses.lgpl3; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ gebner ]; + license = licenses.lgpl3; + platforms = platforms.unix; + maintainers = with maintainers; [ gebner ]; }; }) diff --git a/pkgs/by-name/li/libdivsufsort/package.nix b/pkgs/by-name/li/libdivsufsort/package.nix index c180b8698c5c2c..14509c7267606a 100644 --- a/pkgs/by-name/li/libdivsufsort/package.nix +++ b/pkgs/by-name/li/libdivsufsort/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = { + meta = with lib; { homepage = "https://github.com/y-256/libdivsufsort"; - license = lib.licenses.mit; + license = licenses.mit; description = "Library to construct the suffix array and the BW transformed string"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/libdnet/package.nix b/pkgs/by-name/li/libdnet/package.nix index 4180cd34869ece..3ce330f6de4bef 100644 --- a/pkgs/by-name/li/libdnet/package.nix +++ b/pkgs/by-name/li/libdnet/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = { + meta = with lib; { description = "Provides a simplified, portable interface to several low-level networking routines"; homepage = "https://github.com/dugsong/libdnet"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.marcweber ]; - platforms = lib.platforms.linux; + license = licenses.bsd3; + maintainers = [ maintainers.marcweber ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/li/libdvbcsa/package.nix b/pkgs/by-name/li/libdvbcsa/package.nix index e85f6095d28f0d..77570c0b3b08c1 100644 --- a/pkgs/by-name/li/libdvbcsa/package.nix +++ b/pkgs/by-name/li/libdvbcsa/package.nix @@ -15,12 +15,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { description = "Free implementation of the DVB Common Scrambling Algorithm with encryption and decryption capabilities"; homepage = "http://www.videolan.org/developers/libdvbcsa.html"; - platforms = lib.platforms.unix; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ melias122 ]; + platforms = platforms.unix; + license = licenses.gpl2Only; + maintainers = with maintainers; [ melias122 ]; }; } diff --git a/pkgs/by-name/li/libdvbpsi/package.nix b/pkgs/by-name/li/libdvbpsi/package.nix index b8f6c3c15e7b4e..90ef928ee0f9f8 100644 --- a/pkgs/by-name/li/libdvbpsi/package.nix +++ b/pkgs/by-name/li/libdvbpsi/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "04h1l3vrkrdsrvkgzcr51adk10g6hxcxvgjphyyxz718ry5rkd82"; }; - meta = { + meta = with lib; { description = "Simple library designed for decoding and generation of MPEG TS and DVB PSI tables according to standards ISO/IEC 13818 and ITU-T H.222.0"; homepage = "http://www.videolan.org/developers/libdvbpsi.html"; - platforms = lib.platforms.unix; - license = lib.licenses.lgpl21; + platforms = platforms.unix; + license = licenses.lgpl21; }; } diff --git a/pkgs/by-name/li/libdwarf-lite/package.nix b/pkgs/by-name/li/libdwarf-lite/package.nix index 3d5df9741cac7a..4136a1088a4d46 100644 --- a/pkgs/by-name/li/libdwarf-lite/package.nix +++ b/pkgs/by-name/li/libdwarf-lite/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeBool "PIC_ALWAYS" true) ]; - meta = { + meta = with lib; { description = "Minimal libdwarf mirror for faster cloning and configuration"; homepage = "https://github.com/jeremy-rifkin/libdwarf-lite"; - license = lib.licenses.lgpl21Only; + license = licenses.lgpl21Only; maintainers = [ ]; mainProgram = "libdwarf-lite"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/li/libedgetpu/package.nix b/pkgs/by-name/li/libedgetpu/package.nix index 563e4d56dda1c7..c6b7133bfa5e8a 100644 --- a/pkgs/by-name/li/libedgetpu/package.nix +++ b/pkgs/by-name/li/libedgetpu/package.nix @@ -83,11 +83,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/google-coral/libedgetpu"; description = "Userspace level runtime driver for Coral devices"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ frenetic00 ]; - platforms = lib.platforms.linux; + license = licenses.asl20; + maintainers = with maintainers; [ frenetic00 ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/libedit/package.nix b/pkgs/by-name/li/libedit/package.nix index 92248a806d253f..8f43030daf6229 100644 --- a/pkgs/by-name/li/libedit/package.nix +++ b/pkgs/by-name/li/libedit/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { xargs sed -i -e 's,-lncurses[a-z]*,-L${ncurses.out}/lib -lncursesw,g' ''; - meta = { + meta = with lib; { homepage = "http://www.thrysoee.dk/editline/"; changelog = "https://www.thrysoee.dk/editline/#changelog"; description = "Port of the NetBSD Editline library (libedit)"; @@ -55,8 +55,8 @@ stdenv.mkDerivation (finalAttrs: { provides generic line editing, history, and tokenization functions, similar to those found in GNU Readline. ''; - license = with lib.licenses; [ bsd3 ]; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + license = with licenses; [ bsd3 ]; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/li/libee/package.nix b/pkgs/by-name/li/libee/package.nix index d3bdd2c69bdb47..d18fe0a0d3ed3c 100644 --- a/pkgs/by-name/li/libee/package.nix +++ b/pkgs/by-name/li/libee/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ libestr ]; - meta = { + meta = with lib; { description = "Event Expression Library inspired by CEE"; homepage = "http://www.libee.org/"; - license = lib.licenses.lgpl21Plus; + license = licenses.lgpl21Plus; mainProgram = "libee-convert"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/liberation-circuit/package.nix b/pkgs/by-name/li/liberation-circuit/package.nix index 55083ad46f4f7c..859c84cfbcfe06 100644 --- a/pkgs/by-name/li/liberation-circuit/package.nix +++ b/pkgs/by-name/li/liberation-circuit/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { "''${gappsWrapperArgs[@]}" ''; - meta = { + meta = with lib; { description = "Real-time strategy game with programmable units"; mainProgram = "liberation-circuit"; longDescription = '' @@ -59,8 +59,8 @@ stdenv.mkDerivation rec { editor and compiler to write your own unit AI in a simplified version of C. ''; homepage = "https://linleyh.itch.io/liberation-circuit"; - maintainers = with lib.maintainers; [ emilytrau ]; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ emilytrau ]; + license = licenses.gpl3Only; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/libeufin/package.nix b/pkgs/by-name/li/libeufin/package.nix index 71717721a89488..f06e0d9582153e 100644 --- a/pkgs/by-name/li/libeufin/package.nix +++ b/pkgs/by-name/li/libeufin/package.nix @@ -111,13 +111,13 @@ stdenv.mkDerivation (finalAttrs: { # TODO: tests are currently failing doCheck = false; - meta = { + meta = with lib; { homepage = "https://git.taler.net/libeufin.git/"; description = "Integration and sandbox testing for FinTech APIs and data formats"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ atemu ]; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ atemu ]; mainProgram = "libeufin-bank"; - sourceProvenance = with lib.sourceTypes; [ + sourceProvenance = with sourceTypes; [ fromSource binaryBytecode # mitm cache ]; diff --git a/pkgs/by-name/li/libev/package.nix b/pkgs/by-name/li/libev/package.nix index 017d113225595e..05c877f84b3f38 100644 --- a/pkgs/by-name/li/libev/package.nix +++ b/pkgs/by-name/li/libev/package.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation rec { configureFlags = lib.optional (static) "LDFLAGS=-static"; - meta = { + meta = with lib; { description = "High-performance event loop/event model with lots of features"; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.all; - license = lib.licenses.bsd2; # or GPL2+ + maintainers = [ maintainers.raskin ]; + platforms = platforms.all; + license = licenses.bsd2; # or GPL2+ }; } diff --git a/pkgs/by-name/li/libewf-legacy/package.nix b/pkgs/by-name/li/libewf-legacy/package.nix index 4cb9f3c324bfe2..9be876af5417ca 100644 --- a/pkgs/by-name/li/libewf-legacy/package.nix +++ b/pkgs/by-name/li/libewf-legacy/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation (finalAttrs: { libuuid ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ bzip2 ]; - meta = { + meta = with lib; { description = "Legacy library for support of the Expert Witness Compression Format"; homepage = "https://sourceforge.net/projects/libewf/"; - license = lib.licenses.lgpl3; - maintainers = with lib.maintainers; [ d3vil0p3r ]; - platforms = lib.platforms.unix; + license = licenses.lgpl3; + maintainers = with maintainers; [ d3vil0p3r ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/li/libewf/package.nix b/pkgs/by-name/li/libewf/package.nix index 977365863e2fb9..0d89aaa16587c8 100644 --- a/pkgs/by-name/li/libewf/package.nix +++ b/pkgs/by-name/li/libewf/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { "ac_cv_openssl_xts_duplicate_keys=yes" ]; - meta = { + meta = with lib; { description = "Library for support of the Expert Witness Compression Format"; homepage = "https://sourceforge.net/projects/libewf/"; - license = lib.licenses.lgpl3; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.unix; + license = licenses.lgpl3; + maintainers = [ maintainers.raskin ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/libfann/package.nix b/pkgs/by-name/li/libfann/package.nix index 2cccdac05c1d99..3667afd174c1c4 100644 --- a/pkgs/by-name/li/libfann/package.nix +++ b/pkgs/by-name/li/libfann/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { "dev" ]; - meta = { + meta = with lib; { homepage = "http://leenissen.dk/fann/wp/"; description = "Fast Artificial Neural Network Library"; - maintainers = with lib.maintainers; [ fpletz ]; - license = lib.licenses.lgpl21; - platforms = lib.platforms.all; + maintainers = with maintainers; [ fpletz ]; + license = licenses.lgpl21; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/li/libfmvoice/package.nix b/pkgs/by-name/li/libfmvoice/package.nix index 4d73a423384960..fc335262525001 100644 --- a/pkgs/by-name/li/libfmvoice/package.nix +++ b/pkgs/by-name/li/libfmvoice/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation (finalAttrs: { updateScript = unstableGitUpdater { }; }; - meta = { + meta = with lib; { description = "C library for loading, saving and converting FM sound chip voice files in various formats"; homepage = "https://github.com/vampirefrog/libfmvoice"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ OPNA2608 ]; - platforms = lib.platforms.all; + license = licenses.gpl3Only; + maintainers = with maintainers; [ OPNA2608 ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/li/libfprint-focaltech-2808-a658/package.nix b/pkgs/by-name/li/libfprint-focaltech-2808-a658/package.nix index 41b7b3129ce37d..29cc1110ce833d 100644 --- a/pkgs/by-name/li/libfprint-focaltech-2808-a658/package.nix +++ b/pkgs/by-name/li/libfprint-focaltech-2808-a658/package.nix @@ -93,12 +93,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Focaltech Fingerprint driver for focaltech 0x2808:0xa658"; homepage = "https://github.com/ftfpteams/RTS5811-FT9366-fingerprint-linux-driver-with-VID-2808-and-PID-a658"; - license = lib.licenses.unfree; - maintainers = [ lib.maintainers.imsick ]; + license = licenses.unfree; + maintainers = [ maintainers.imsick ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/by-name/li/libfprint/package.nix b/pkgs/by-name/li/libfprint/package.nix index 7e0894f6b97b53..0ce40d509a09f3 100644 --- a/pkgs/by-name/li/libfprint/package.nix +++ b/pkgs/by-name/li/libfprint/package.nix @@ -87,11 +87,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstallCheck ''; - meta = { + meta = with lib; { homepage = "https://fprint.freedesktop.org/"; description = "Library designed to make it easy to add support for consumer fingerprint readers"; - license = lib.licenses.lgpl21Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ abbradar ]; + license = licenses.lgpl21Only; + platforms = platforms.linux; + maintainers = with maintainers; [ abbradar ]; }; }) diff --git a/pkgs/by-name/li/libgadu/package.nix b/pkgs/by-name/li/libgadu/package.nix index 32cb229b441b60..f22373b7fb38e9 100644 --- a/pkgs/by-name/li/libgadu/package.nix +++ b/pkgs/by-name/li/libgadu/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { buildInputs = [ protobufc ]; nativeBuildInputs = [ autoreconfHook ]; - meta = { + meta = with lib; { description = "Library to deal with gadu-gadu protocol (most popular polish IM protocol)"; homepage = "https://libgadu.net/index.en.html"; - platforms = lib.platforms.linux; - license = lib.licenses.lgpl21; + platforms = platforms.linux; + license = licenses.lgpl21; }; } diff --git a/pkgs/by-name/li/libgaminggear/package.nix b/pkgs/by-name/li/libgaminggear/package.nix index 46daaf734fb688..d7bdb2d5a7b989 100644 --- a/pkgs/by-name/li/libgaminggear/package.nix +++ b/pkgs/by-name/li/libgaminggear/package.nix @@ -58,10 +58,10 @@ stdenv.mkDerivation rec { moveToOutput bin "$bin" ''; - meta = { + meta = with lib; { description = "Provides functionality for gaming input devices"; homepage = "https://sourceforge.net/projects/libgaminggear/"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Plus; + platforms = platforms.linux; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/li/libgbinder/package.nix b/pkgs/by-name/li/libgbinder/package.nix index 3de46f24f2942b..d904fe93a40249 100644 --- a/pkgs/by-name/li/libgbinder/package.nix +++ b/pkgs/by-name/li/libgbinder/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { sed -i -e "s@Cflags: @Cflags: $($PKG_CONFIG --cflags libglibutil) @g" $dev/lib/pkgconfig/$pname.pc ''; - meta = { + meta = with lib; { description = "GLib-style interface to binder"; homepage = "https://github.com/mer-hybris/libgbinder"; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + license = licenses.bsd3; + platforms = platforms.linux; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/by-name/li/libgedit-gfls/package.nix b/pkgs/by-name/li/libgedit-gfls/package.nix index e1572fed66a051..e9c200137d1b70 100644 --- a/pkgs/by-name/li/libgedit-gfls/package.nix +++ b/pkgs/by-name/li/libgedit-gfls/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation (finalAttrs: { glib ]; - meta = { + meta = with lib; { homepage = "https://gitlab.gnome.org/World/gedit/libgedit-gfls"; description = "Module dedicated to file loading and saving"; - maintainers = with lib.maintainers; [ bobby285271 ]; - license = lib.licenses.lgpl3Plus; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ bobby285271 ]; + license = licenses.lgpl3Plus; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/li/libglibutil/package.nix b/pkgs/by-name/li/libglibutil/package.nix index 132106b30250fb..fe409f3cb2c098 100644 --- a/pkgs/by-name/li/libglibutil/package.nix +++ b/pkgs/by-name/li/libglibutil/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { sed -i -e "s@Cflags: @Cflags: $($PKG_CONFIG --cflags glib-2.0) @g" $dev/lib/pkgconfig/$pname.pc ''; - meta = { + meta = with lib; { description = "Library of glib utilities"; homepage = "https://git.sailfishos.org/mer-core/libglibutil"; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + license = licenses.bsd3; + platforms = platforms.linux; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/by-name/li/libguytools/package.nix b/pkgs/by-name/li/libguytools/package.nix index b882a1eb2ab077..a01ddb7211c213 100644 --- a/pkgs/by-name/li/libguytools/package.nix +++ b/pkgs/by-name/li/libguytools/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Small programming toolbox"; mainProgram = "libguytools"; homepage = "https://libguytools.sourceforge.io"; - maintainers = with lib.maintainers; [ d3vil0p3r ]; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Plus; + maintainers = with maintainers; [ d3vil0p3r ]; + platforms = platforms.linux; + license = licenses.gpl2Plus; }; }) diff --git a/pkgs/by-name/li/libharu/package.nix b/pkgs/by-name/li/libharu/package.nix index 264f5a52137209..06efec7a3a3122 100644 --- a/pkgs/by-name/li/libharu/package.nix +++ b/pkgs/by-name/li/libharu/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { libpng ]; - meta = { + meta = with lib; { description = "Cross platform, open source library for generating PDF files"; homepage = "http://libharu.org/"; - license = lib.licenses.zlib; - maintainers = [ lib.maintainers.marcweber ]; - platforms = lib.platforms.unix; + license = licenses.zlib; + maintainers = [ maintainers.marcweber ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/libideviceactivation/package.nix b/pkgs/by-name/li/libideviceactivation/package.nix index fbd8a7e11134a0..892b143bfbbfbe 100644 --- a/pkgs/by-name/li/libideviceactivation/package.nix +++ b/pkgs/by-name/li/libideviceactivation/package.nix @@ -41,15 +41,15 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { description = "Library to manage the activation process of Apple iOS devices"; homepage = "https://libimobiledevice.org"; - license = with lib.licenses; [ + license = with licenses; [ lgpl21 gpl3 ]; mainProgram = "ideviceactivation"; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ clebs ]; + platforms = platforms.linux; + maintainers = with maintainers; [ clebs ]; }; }) diff --git a/pkgs/by-name/li/libiec61850/package.nix b/pkgs/by-name/li/libiec61850/package.nix index 94261d06dfdbdd..03c8037d6b33dc 100644 --- a/pkgs/by-name/li/libiec61850/package.nix +++ b/pkgs/by-name/li/libiec61850/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = { + meta = with lib; { description = "Open-source library for the IEC 61850 protocols"; homepage = "https://libiec61850.com/"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ stv0g ]; - platforms = lib.platforms.unix; + license = licenses.gpl3Only; + maintainers = with maintainers; [ stv0g ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/li/libinput-gestures/package.nix b/pkgs/by-name/li/libinput-gestures/package.nix index af6a52b6f44144..69ef8246126eaf 100644 --- a/pkgs/by-name/li/libinput-gestures/package.nix +++ b/pkgs/by-name/li/libinput-gestures/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation (finalAttrs: { }" ''; - meta = { + meta = with lib; { homepage = "https://github.com/bulletmark/libinput-gestures"; description = "Gesture mapper for libinput"; mainProgram = "libinput-gestures"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ teozkr ]; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ teozkr ]; }; }) diff --git a/pkgs/by-name/li/libinsane/package.nix b/pkgs/by-name/li/libinsane/package.nix index c91d4b27113201..102599a3644d20 100644 --- a/pkgs/by-name/li/libinsane/package.nix +++ b/pkgs/by-name/li/libinsane/package.nix @@ -58,10 +58,10 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { description = "Crossplatform access to image scanners (paper eaters only)"; homepage = "https://openpaper.work/en/projects/"; - license = lib.licenses.lgpl3Plus; - maintainers = [ lib.maintainers.symphorien ]; + license = licenses.lgpl3Plus; + maintainers = [ maintainers.symphorien ]; }; } diff --git a/pkgs/by-name/li/libixp/package.nix b/pkgs/by-name/li/libixp/package.nix index be0cee4aff59ae..fe1e5c58f71dbb 100644 --- a/pkgs/by-name/li/libixp/package.nix +++ b/pkgs/by-name/li/libixp/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ unzip ]; buildInputs = [ txt2tags ]; - meta = { + meta = with lib; { homepage = "https://github.com/0intro/libixp"; description = "Portable, simple C-language 9P client and server library"; mainProgram = "ixpc"; - maintainers = with lib.maintainers; [ kovirobi ]; - license = lib.licenses.mit; - platforms = with lib.platforms; unix; + maintainers = with maintainers; [ kovirobi ]; + license = licenses.mit; + platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/li/libjodycode/package.nix b/pkgs/by-name/li/libjodycode/package.nix index acac78266f881a..9add4b01ae46ad 100644 --- a/pkgs/by-name/li/libjodycode/package.nix +++ b/pkgs/by-name/li/libjodycode/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation (finalAttrs: { inherit jdupes; }; - meta = { + meta = with lib; { description = "Shared code used by several utilities written by Jody Bruchon"; homepage = "https://codeberg.org/jbruchon/libjodycode"; changelog = "https://codeberg.org/jbruchon/libjodycode/src/branch/master/CHANGES.txt"; - license = lib.licenses.mit; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ pbsds ]; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ pbsds ]; }; }) diff --git a/pkgs/by-name/li/libjpeg_original/package.nix b/pkgs/by-name/li/libjpeg_original/package.nix index ce73a595535468..63a4e9f27be2d9 100644 --- a/pkgs/by-name/li/libjpeg_original/package.nix +++ b/pkgs/by-name/li/libjpeg_original/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = { + meta = with lib; { homepage = "https://www.ijg.org/"; description = "Library that implements the JPEG image file format"; - maintainers = with lib.maintainers; [ sigmanificient ]; - license = lib.licenses.free; + maintainers = with maintainers; [ sigmanificient ]; + license = licenses.free; pkgConfigModules = [ "libjpeg" ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/li/libkazv/package.nix b/pkgs/by-name/li/libkazv/package.nix index f4d2afa5a31746..d86471a5d144de 100644 --- a/pkgs/by-name/li/libkazv/package.nix +++ b/pkgs/by-name/li/libkazv/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation (finalAttrs: { checkInputs = [ catch2_3 ]; - meta = { + meta = with lib; { description = "Matrix client sdk built upon lager and the value-oriented design it enables"; homepage = "https://lily-is.land/kazv/libkazv"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ fgaz ]; - platforms = lib.platforms.all; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ fgaz ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/li/libkcapi/package.nix b/pkgs/by-name/li/libkcapi/package.nix index 97009bbe40f9e8..1443c124f44033 100644 --- a/pkgs/by-name/li/libkcapi/package.nix +++ b/pkgs/by-name/li/libkcapi/package.nix @@ -43,15 +43,15 @@ stdenv.mkDerivation rec { ++ lib.optional kcapi-encapp "--enable-kcapi-encapp" ++ lib.optional kcapi-dgstapp "--enable-kcapi-dgstapp"; - meta = { + meta = with lib; { homepage = "http://www.chronox.de/libkcapi.html"; description = "Linux Kernel Crypto API User Space Interface Library"; - license = with lib.licenses; [ + license = with licenses; [ bsd3 gpl2Only ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + platforms = platforms.linux; + maintainers = with maintainers; [ orichter thillux ]; diff --git a/pkgs/by-name/li/libkvmi/package.nix b/pkgs/by-name/li/libkvmi/package.nix index cc1a4efe93d638..ac858b716d1ce7 100644 --- a/pkgs/by-name/li/libkvmi/package.nix +++ b/pkgs/by-name/li/libkvmi/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { tagPrefix = "v"; }; - meta = { + meta = with lib; { description = "KVM virtual machine introspection library"; homepage = "https://github.com/bitdefender/libkvmi"; - license = lib.licenses.lgpl3Only; + license = licenses.lgpl3Only; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ sigmasquadron ]; + maintainers = with maintainers; [ sigmasquadron ]; mainProgram = "hookguest-libkvmi"; outputsToInstall = [ "lib" ]; }; diff --git a/pkgs/by-name/li/liblapin/package.nix b/pkgs/by-name/li/liblapin/package.nix index 5f232058a04929..0a3a917b15ba75 100644 --- a/pkgs/by-name/li/liblapin/package.nix +++ b/pkgs/by-name/li/liblapin/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation { "dev" ]; - meta = { + meta = with lib; { description = "Multimedia library for rookies and prototyping"; homepage = "https://liblapin.org?lan=en"; - platforms = lib.platforms.unix; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ sigmanificient ]; + platforms = platforms.unix; + license = licenses.bsd3; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/by-name/li/liblo/package.nix b/pkgs/by-name/li/liblo/package.nix index a983ace49facc8..4e556ca9b79c6f 100644 --- a/pkgs/by-name/li/liblo/package.nix +++ b/pkgs/by-name/li/liblo/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { doCheck = false; # fails 1 out of 3 tests - meta = { + meta = with lib; { description = "Lightweight library to handle the sending and receiving of messages according to the Open Sound Control (OSC) protocol"; homepage = "https://sourceforge.net/projects/liblo"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.marcweber ]; - platforms = with lib.platforms; linux ++ darwin; + license = licenses.gpl2; + maintainers = [ maintainers.marcweber ]; + platforms = with platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/li/libloot/package.nix b/pkgs/by-name/li/libloot/package.nix index a7ab3ed42e53d6..7dc1eb541856be 100644 --- a/pkgs/by-name/li/libloot/package.nix +++ b/pkgs/by-name/li/libloot/package.nix @@ -201,11 +201,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { description = "C++ library for accessing LOOT's metadata and sorting functionality"; homepage = "https://github.com/loot/libloot"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ tomasajt ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ tomasajt ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/li/libloragw-2g4/package.nix b/pkgs/by-name/li/libloragw-2g4/package.nix index 204e59e3810a42..82340aa85972bf 100644 --- a/pkgs/by-name/li/libloragw-2g4/package.nix +++ b/pkgs/by-name/li/libloragw-2g4/package.nix @@ -37,13 +37,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "LoRa 2.4Ghz Gateway - Linux host Hardware Abstraction Layer, and tools (Packet Forwarder...)"; license = [ - lib.licenses.bsd3 - lib.licenses.mit + licenses.bsd3 + licenses.mit ]; - maintainers = [ lib.maintainers.stv0g ]; - platforms = lib.platforms.linux; + maintainers = [ maintainers.stv0g ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/li/libloragw-sx1301/package.nix b/pkgs/by-name/li/libloragw-sx1301/package.nix index aa9c8c3da07a85..7360e4632d62e7 100644 --- a/pkgs/by-name/li/libloragw-sx1301/package.nix +++ b/pkgs/by-name/li/libloragw-sx1301/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Driver/HAL to build a gateway using a concentrator board based on Semtech SX1301 multi-channel modem and SX1257/SX1255 RF transceivers"; license = [ - lib.licenses.bsd3 - lib.licenses.mit + licenses.bsd3 + licenses.mit ]; - maintainers = [ lib.maintainers.stv0g ]; - platforms = lib.platforms.linux; + maintainers = [ maintainers.stv0g ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/li/libloragw-sx1302/package.nix b/pkgs/by-name/li/libloragw-sx1302/package.nix index a9466226ae1b79..eacd429bac3c13 100644 --- a/pkgs/by-name/li/libloragw-sx1302/package.nix +++ b/pkgs/by-name/li/libloragw-sx1302/package.nix @@ -39,13 +39,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "SX1302 Hardware Abstraction Layer and Tools (packet forwarder...)"; license = [ - lib.licenses.bsd3 - lib.licenses.mit + licenses.bsd3 + licenses.mit ]; - maintainers = [ lib.maintainers.stv0g ]; - platforms = lib.platforms.linux; + maintainers = [ maintainers.stv0g ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/li/libmamba/package.nix b/pkgs/by-name/li/libmamba/package.nix index 228a88e97cc5b5..77abf5fdfd6170 100644 --- a/pkgs/by-name/li/libmamba/package.nix +++ b/pkgs/by-name/li/libmamba/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Library for the fast Cross-Platform Package Manager"; homepage = "https://github.com/mamba-org/mamba"; - license = lib.licenses.bsd3; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.ericthemagician ]; + license = licenses.bsd3; + platforms = platforms.all; + maintainers = [ maintainers.ericthemagician ]; }; }) diff --git a/pkgs/by-name/li/libmatchbox/package.nix b/pkgs/by-name/li/libmatchbox/package.nix index c8f757899b314b..f3c77fa9f4a895 100644 --- a/pkgs/by-name/li/libmatchbox/package.nix +++ b/pkgs/by-name/li/libmatchbox/package.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation rec { sha256 = "0lvv44s3bf96zvkysa4ansxj2ffgj3b5kgpliln538q4wd9ank15"; }; - meta = { + meta = with lib; { description = "Library of the matchbox X window manager"; homepage = "http://matchbox-project.org/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/libmatheval/package.nix b/pkgs/by-name/li/libmatheval/package.nix index 41f55701d1ffa3..69f24f9ec76241 100644 --- a/pkgs/by-name/li/libmatheval/package.nix +++ b/pkgs/by-name/li/libmatheval/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-I${lib.getDev guile}/include/guile/${guile.effectiveVersion}"; env.NIX_LDFLAGS = "-L${guile}/lib -lguile-${guile.effectiveVersion}"; - meta = { + meta = with lib; { description = "Library to parse and evaluate symbolic expressions input as text"; longDescription = '' GNU libmatheval is a library (callable from C and Fortran) to parse and evaluate symbolic @@ -53,8 +53,8 @@ stdenv.mkDerivation rec { symbolic derivatives and output expressions to strings. ''; homepage = "https://www.gnu.org/software/libmatheval/"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.bzizou ]; - platforms = lib.platforms.unix; + license = licenses.gpl3; + maintainers = [ maintainers.bzizou ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/libmkv/package.nix b/pkgs/by-name/li/libmkv/package.nix index 1a16268daa7d57..66e8992244ae60 100644 --- a/pkgs/by-name/li/libmkv/package.nix +++ b/pkgs/by-name/li/libmkv/package.nix @@ -26,15 +26,15 @@ stdenv.mkDerivation rec { preConfigure = "sh bootstrap.sh"; - meta = { + meta = with lib; { description = "Abandoned library. Alternative lightweight Matroska muxer written for HandBrake"; longDescription = '' Library was meant to be an alternative to the official libmatroska library. It is written in plain C, and intended to be very portable. ''; homepage = "https://github.com/saintdev/libmkv"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.wmertens ]; - platforms = lib.platforms.unix; + license = licenses.gpl2; + maintainers = [ maintainers.wmertens ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/libmpcdec/package.nix b/pkgs/by-name/li/libmpcdec/package.nix index b7613dc2ab9412..d4e92e8b5ba010 100644 --- a/pkgs/by-name/li/libmpcdec/package.nix +++ b/pkgs/by-name/li/libmpcdec/package.nix @@ -13,9 +13,9 @@ stdenv.mkDerivation rec { sha256 = "1a0jdyga1zfi4wgkg3905y6inghy3s4xfs5m4x7pal08m0llkmab"; }; - meta = { + meta = with lib; { description = "Musepack SV7 decoder library"; - platforms = lib.platforms.unix; - license = lib.licenses.bsd3; + platforms = platforms.unix; + license = licenses.bsd3; }; } diff --git a/pkgs/by-name/li/libmpeg2/package.nix b/pkgs/by-name/li/libmpeg2/package.nix index 7860056707cadb..be5f0cfdf45035 100644 --- a/pkgs/by-name/li/libmpeg2/package.nix +++ b/pkgs/by-name/li/libmpeg2/package.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { # Otherwise clang fails with 'duplicate symbol ___sputc' buildFlags = lib.optional stdenv.hostPlatform.isDarwin "CFLAGS=-std=gnu89"; - meta = { + meta = with lib; { homepage = "http://libmpeg2.sourceforge.net/"; description = "Free library for decoding mpeg-2 and mpeg-1 video streams"; - license = lib.licenses.gpl2; + license = licenses.gpl2; maintainers = [ ]; - platforms = with lib.platforms; unix; + platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/li/libmrss/package.nix b/pkgs/by-name/li/libmrss/package.nix index 49daaef8d790df..2b53a1528b545b 100644 --- a/pkgs/by-name/li/libmrss/package.nix +++ b/pkgs/by-name/li/libmrss/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation (finalAttrs: { libnxml ]; - meta = { + meta = with lib; { homepage = "https://github.com/bakulf/libmrss"; description = "C library for parsing, writing and creating RSS/ATOM files or streams"; - license = lib.licenses.lgpl2; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.lgpl2; + platforms = platforms.all; + maintainers = with maintainers; [ sigmanificient ]; }; }) diff --git a/pkgs/by-name/li/libmspack/package.nix b/pkgs/by-name/li/libmspack/package.nix index 2e4f7d9d38beb8..3cd4472c69c835 100644 --- a/pkgs/by-name/li/libmspack/package.nix +++ b/pkgs/by-name/li/libmspack/package.nix @@ -13,10 +13,10 @@ stdenv.mkDerivation rec { hash = "sha256-cN0fsvCuzDZ5G3Gh4YQOYhcweeraoIEZLRwyOg7uohs="; }; - meta = { + meta = with lib; { description = "De/compression library for various Microsoft formats"; homepage = "https://www.cabextract.org.uk/libmspack"; - license = lib.licenses.lgpl2Only; - platforms = lib.platforms.unix; + license = licenses.lgpl2Only; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/libndctl/package.nix b/pkgs/by-name/li/libndctl/package.nix index d2ccec80a5700a..a20b90e2b4abe2 100644 --- a/pkgs/by-name/li/libndctl/package.nix +++ b/pkgs/by-name/li/libndctl/package.nix @@ -66,11 +66,11 @@ stdenv.mkDerivation rec { echo "m4_define([GIT_VERSION], [${version}])" > version.m4; ''; - meta = { + meta = with lib; { description = "Tools for managing the Linux Non-Volatile Memory Device sub-system"; homepage = "https://github.com/pmem/ndctl"; - license = lib.licenses.lgpl21; - maintainers = with lib.maintainers; [ thoughtpolice ]; - platforms = lib.platforms.linux; + license = licenses.lgpl21; + maintainers = with maintainers; [ thoughtpolice ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/libnetfilter_cthelper/package.nix b/pkgs/by-name/li/libnetfilter_cthelper/package.nix index 4a0afa76b736b7..f7129098327d7e 100644 --- a/pkgs/by-name/li/libnetfilter_cthelper/package.nix +++ b/pkgs/by-name/li/libnetfilter_cthelper/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ libmnl ]; - meta = { + meta = with lib; { description = "Userspace library that provides the programming interface to the user-space connection tracking helper infrastructure"; longDescription = '' libnetfilter_cthelper is the userspace library that provides the programming interface @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { is used by conntrack-tools. ''; homepage = "https://www.netfilter.org/projects/libnetfilter_cthelper/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/libnetfilter_cttimeout/package.nix b/pkgs/by-name/li/libnetfilter_cttimeout/package.nix index 7c2c870bf36275..fe4517783bb0cc 100644 --- a/pkgs/by-name/li/libnetfilter_cttimeout/package.nix +++ b/pkgs/by-name/li/libnetfilter_cttimeout/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ libmnl ]; - meta = { + meta = with lib; { description = "Userspace library that provides the programming interface to the connection tracking timeout infrastructure"; longDescription = '' libnetfilter_cttimeout is the userspace library that provides the programming @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { be attached to traffic flows. This library is used by conntrack-tools. ''; homepage = "https://netfilter.org/projects/libnetfilter_cttimeout/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/libnss_nis/package.nix b/pkgs/by-name/li/libnss_nis/package.nix index 7ac586d41aec63..cac655e7d84b22 100644 --- a/pkgs/by-name/li/libnss_nis/package.nix +++ b/pkgs/by-name/li/libnss_nis/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { outputs = [ "out" ]; - meta = { + meta = with lib; { description = "NSS module for glibc, to provide NIS support for glibc"; changelog = "https://github.com/thkukuk/libnss_nis/blob/master/NEWS"; homepage = "https://github.com/thkukuk/libnss_nis"; - license = lib.licenses.lgpl21Plus; - maintainers = with lib.maintainers; [ BarrOff ]; - platforms = lib.platforms.linux; + license = licenses.lgpl21Plus; + maintainers = with maintainers; [ BarrOff ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/libnxml/package.nix b/pkgs/by-name/li/libnxml/package.nix index abfa3959d5cb85..b8ec94706e4c71 100644 --- a/pkgs/by-name/li/libnxml/package.nix +++ b/pkgs/by-name/li/libnxml/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ curl ]; - meta = { + meta = with lib; { homepage = "https://github.com/bakulf/libnxml"; description = "C library for parsing, writing and creating XML 1.0 and 1.1 files or streams"; - license = lib.licenses.lgpl2; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.lgpl2; + platforms = platforms.all; + maintainers = with maintainers; [ sigmanificient ]; }; }) diff --git a/pkgs/by-name/li/libogg/package.nix b/pkgs/by-name/li/libogg/package.nix index 14ad2231d3bf7c..9cedaeb57ef425 100644 --- a/pkgs/by-name/li/libogg/package.nix +++ b/pkgs/by-name/li/libogg/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic)) ]; - meta = { + meta = with lib; { description = "Media container library to manipulate Ogg files"; longDescription = '' Library to work with Ogg multimedia container format. @@ -40,8 +40,8 @@ stdenv.mkDerivation (finalAttrs: { plethora of codecs. Open format free for anyone to use. ''; homepage = "https://xiph.org/ogg/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ehmry ]; - platforms = lib.platforms.all; + license = licenses.bsd3; + maintainers = with maintainers; [ ehmry ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/li/libosip/package.nix b/pkgs/by-name/li/libosip/package.nix index a7bf8e5e0a3101..0cb017bd1c15de 100644 --- a/pkgs/by-name/li/libosip/package.nix +++ b/pkgs/by-name/li/libosip/package.nix @@ -11,11 +11,11 @@ stdenv.mkDerivation rec { }; pname = "libosip2"; - meta = { - license = lib.licenses.lgpl21Plus; + meta = with lib; { + license = licenses.lgpl21Plus; homepage = "https://www.gnu.org/software/osip/"; description = "GNU oSIP library, an implementation of the Session Initiation Protocol (SIP)"; - maintainers = with lib.maintainers; [ raskin ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ raskin ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/li/libowlevelzs/package.nix b/pkgs/by-name/li/libowlevelzs/package.nix index 6bc0c5fa5371e4..1423aacf5db8a6 100644 --- a/pkgs/by-name/li/libowlevelzs/package.nix +++ b/pkgs/by-name/li/libowlevelzs/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = { + meta = with lib; { description = "Zscheile Lowlevel (utility) library"; homepage = "https://github.com/fogti/libowlevelzs"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/li/libpaper/package.nix b/pkgs/by-name/li/libpaper/package.nix index 452d787318ce1c..29e23383f5962e 100644 --- a/pkgs/by-name/li/libpaper/package.nix +++ b/pkgs/by-name/li/libpaper/package.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { echo letter > $out/etc/papersize ''; - meta = { + meta = with lib; { description = "Library for handling paper characteristics"; homepage = "http://packages.debian.org/unstable/source/libpaper"; - license = lib.licenses.gpl2; - platforms = lib.platforms.unix; + license = licenses.gpl2; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/libpar2/package.nix b/pkgs/by-name/li/libpar2/package.nix index 1745aae945d75c..71616791fa39d1 100644 --- a/pkgs/by-name/li/libpar2/package.nix +++ b/pkgs/by-name/li/libpar2/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { CXXFLAGS = lib.optionalString stdenv.cc.isClang "-std=c++11"; - meta = { + meta = with lib; { homepage = "https://parchive.sourceforge.net/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; description = "Library for using Parchives (parity archive volume sets)"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/libpgf/package.nix b/pkgs/by-name/li/libpgf/package.nix index 0a7dafddd2425c..5b3e77d2e5de6c 100644 --- a/pkgs/by-name/li/libpgf/package.nix +++ b/pkgs/by-name/li/libpgf/package.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation rec { dos2unix ]; - meta = { + meta = with lib; { homepage = "https://www.libpgf.org/"; description = "Progressive Graphics Format"; - license = lib.licenses.lgpl21Plus; - platforms = lib.platforms.unix; + license = licenses.lgpl21Plus; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/libphidget22/package.nix b/pkgs/by-name/li/libphidget22/package.nix index f3fa7d72f1c62b..74e9c4c6f9efd9 100644 --- a/pkgs/by-name/li/libphidget22/package.nix +++ b/pkgs/by-name/li/libphidget22/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation { strictDeps = true; - meta = { + meta = with lib; { description = "Phidget Inc sensor boards and electronics Library"; homepage = "https://www.phidgets.com/docs/OS_-_Linux"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ mksafavi ]; - platforms = lib.platforms.linux; + license = licenses.bsd3; + maintainers = with maintainers; [ mksafavi ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/libphidget22extra/package.nix b/pkgs/by-name/li/libphidget22extra/package.nix index 1072b798b42f09..7108ee06ad09c6 100644 --- a/pkgs/by-name/li/libphidget22extra/package.nix +++ b/pkgs/by-name/li/libphidget22extra/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation { strictDeps = true; - meta = { + meta = with lib; { description = "Phidget Inc sensor boards and electronics extras library"; homepage = "https://www.phidgets.com/docs/OS_-_Linux"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ mksafavi ]; - platforms = lib.platforms.linux; + license = licenses.bsd3; + maintainers = with maintainers; [ mksafavi ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/libplctag/package.nix b/pkgs/by-name/li/libplctag/package.nix index b83fb999b2aafb..541b4e3bc4e791 100644 --- a/pkgs/by-name/li/libplctag/package.nix +++ b/pkgs/by-name/li/libplctag/package.nix @@ -25,14 +25,14 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; - meta = { + meta = with lib; { homepage = "https://github.com/libplctag/libplctag"; description = "Library that uses EtherNet/IP or Modbus TCP to read and write tags in PLCs"; - license = with lib.licenses; [ + license = with licenses; [ lgpl2Plus mpl20 ]; - maintainers = with lib.maintainers; [ petterstorvik ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ petterstorvik ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/li/libportal/package.nix b/pkgs/by-name/li/libportal/package.nix index 5b76dc8ccdcd3f..a7d4703b867895 100644 --- a/pkgs/by-name/li/libportal/package.nix +++ b/pkgs/by-name/li/libportal/package.nix @@ -87,11 +87,11 @@ stdenv.mkDerivation rec { # we don't have any binaries dontWrapQtApps = true; - meta = { + meta = with lib; { description = "Flatpak portal library"; homepage = "https://github.com/flatpak/libportal"; - license = lib.licenses.lgpl3Plus; - maintainers = with lib.maintainers; [ jtojnar ]; - platforms = lib.platforms.unix; + license = licenses.lgpl3Plus; + maintainers = with maintainers; [ jtojnar ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/librandombytes/package.nix b/pkgs/by-name/li/librandombytes/package.nix index e6ecbdef8eea14..84128ab564aed6 100644 --- a/pkgs/by-name/li/librandombytes/package.nix +++ b/pkgs/by-name/li/librandombytes/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { homepage = "https://randombytes.cr.yp.to/"; description = "A simple API for applications generating fresh randomness"; changelog = "https://randombytes.cr.yp.to/download.html"; - license = with lib.licenses; [ + license = with licenses; [ # Upstream specifies the public domain licenses with the terms here https://cr.yp.to/spdx.html publicDomain cc0 @@ -65,7 +65,7 @@ stdenv.mkDerivation (finalAttrs: { mit mit0 ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ kiike imadnyc jleightcap @@ -85,6 +85,6 @@ stdenv.mkDerivation (finalAttrs: { "riscv64-linux" "s390x-linux" # Upstream package supports sparc, but nix does not - ] ++ lib.platforms.darwin; # Work on MacOS X mentioned: https://randombytes.cr.yp.to/download.html + ] ++ platforms.darwin; # Work on MacOS X mentioned: https://randombytes.cr.yp.to/download.html }; }) diff --git a/pkgs/by-name/li/libratbag/package.nix b/pkgs/by-name/li/libratbag/package.nix index 8cd47c2fa0e10c..7dd7eefd363e3a 100644 --- a/pkgs/by-name/li/libratbag/package.nix +++ b/pkgs/by-name/li/libratbag/package.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation rec { "-Dsystemd-unit-dir=./lib/systemd/system/" ]; - meta = { + meta = with lib; { description = "Configuration library for gaming mice"; homepage = "https://github.com/libratbag/libratbag"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ mvnetbiz ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ mvnetbiz ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/librem/package.nix b/pkgs/by-name/li/librem/package.nix index 8d75bb11166109..7dd3605766c443 100644 --- a/pkgs/by-name/li/librem/package.nix +++ b/pkgs/by-name/li/librem/package.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { ++ lib.optional (stdenv.cc.cc != null) "SYSROOT_ALT=${lib.getDev stdenv.cc.cc}" ++ lib.optional (stdenv.cc.libc != null) "SYSROOT=${lib.getDev stdenv.cc.libc}"; enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Library for real-time audio and video processing"; homepage = "https://github.com/baresip/rem"; - maintainers = with lib.maintainers; [ raskin ]; - license = lib.licenses.bsd3; + maintainers = with maintainers; [ raskin ]; + license = licenses.bsd3; }; } diff --git a/pkgs/by-name/li/libremidi/package.nix b/pkgs/by-name/li/libremidi/package.nix index 0395afa80c0e1a..47c238e21006b3 100644 --- a/pkgs/by-name/li/libremidi/package.nix +++ b/pkgs/by-name/li/libremidi/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation (finalAttrs: { cp -r $src/include $out ''; - meta = { + meta = with lib; { homepage = "https://github.com/jcelerier/libremidi"; description = "Modern C++ MIDI real-time & file I/O library"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + license = licenses.bsd2; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/li/librep/package.nix b/pkgs/by-name/li/librep/package.nix index 6258682938a5bf..c32ace5c7d40bf 100644 --- a/pkgs/by-name/li/librep/package.nix +++ b/pkgs/by-name/li/librep/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { setupHook = ./setup-hook.sh; - meta = { + meta = with lib; { homepage = "http://sawfish.tuxfamily.org/"; description = "Fast, lightweight, and versatile Lisp environment"; longDescription = '' @@ -48,9 +48,9 @@ stdenv.mkDerivation (finalAttrs: { compiler, and a virtual machine. It can serve as an application extension language but is also suitable for standalone scripts. ''; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.AndersonTorres ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = [ maintainers.AndersonTorres ]; + platforms = platforms.unix; }; }) # TODO: investigate fetchFromGithub diff --git a/pkgs/by-name/li/libresample/package.nix b/pkgs/by-name/li/libresample/package.nix index 2b8f3b2cd5a3ce..7696336c071da9 100644 --- a/pkgs/by-name/li/libresample/package.nix +++ b/pkgs/by-name/li/libresample/package.nix @@ -52,15 +52,15 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { description = "Real-time library for sampling rate conversion library"; homepage = "https://github.com/minorninth/libresample"; - license = lib.licenses.bsd2; # OR LGPL-2.1-or-later - sourceProvenance = [ lib.sourceTypes.fromSource ]; - platforms = lib.platforms.all; + license = licenses.bsd2; # OR LGPL-2.1-or-later + sourceProvenance = [ sourceTypes.fromSource ]; + platforms = platforms.all; maintainers = [ - lib.maintainers.sander - lib.maintainers.emily + maintainers.sander + maintainers.emily ]; mainProgram = "resample-sndfile"; }; diff --git a/pkgs/by-name/li/libresplit/package.nix b/pkgs/by-name/li/libresplit/package.nix index 8ef17056ad059d..8b17f02475c4fa 100644 --- a/pkgs/by-name/li/libresplit/package.nix +++ b/pkgs/by-name/li/libresplit/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/wins1ey/LibreSplit"; description = "Speedrun timer with auto splitting and load removal for Linux"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ fgaz ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ fgaz ]; mainProgram = "libresplit"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/librewolf-bin/package.nix b/pkgs/by-name/li/librewolf-bin/package.nix index 6311ef341ebbbf..8be4469ec5b847 100644 --- a/pkgs/by-name/li/librewolf-bin/package.nix +++ b/pkgs/by-name/li/librewolf-bin/package.nix @@ -23,13 +23,13 @@ appimageTools.wrapType2 { install -Dm444 ${appimageContents}/librewolf.png -t $out/share/pixmaps ''; - meta = { + meta = with lib; { description = "Fork of Firefox, focused on privacy, security and freedom (upstream AppImage release)"; homepage = "https://librewolf.net"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ dwrege ]; + license = licenses.mpl20; + maintainers = with maintainers; [ dwrege ]; platforms = [ "x86_64-linux" ]; mainProgram = "librewolf"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/li/librime-lua/package.nix b/pkgs/by-name/li/librime-lua/package.nix index b503fecfb138b1..cb217f719501ee 100644 --- a/pkgs/by-name/li/librime-lua/package.nix +++ b/pkgs/by-name/li/librime-lua/package.nix @@ -31,11 +31,11 @@ stdenvNoCC.mkDerivation { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { description = "Extending RIME with Lua scripts"; homepage = "https://github.com/hchunhui/librime-lua"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ linj xddxdd ]; diff --git a/pkgs/by-name/li/librime-octagram/package.nix b/pkgs/by-name/li/librime-octagram/package.nix index fe6d0f30da8e95..182229c32c0b4d 100644 --- a/pkgs/by-name/li/librime-octagram/package.nix +++ b/pkgs/by-name/li/librime-octagram/package.nix @@ -27,10 +27,10 @@ stdenvNoCC.mkDerivation { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "RIME essay grammar plugin"; homepage = "https://github.com/lotem/librime-octagram"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ azuwis ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ azuwis ]; }; } diff --git a/pkgs/by-name/li/libs3/package.nix b/pkgs/by-name/li/libs3/package.nix index 03519d6c4f7869..5996dec5958052 100644 --- a/pkgs/by-name/li/libs3/package.nix +++ b/pkgs/by-name/li/libs3/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation { libxml2 ]; - meta = { + meta = with lib; { description = "Library for interfacing with amazon s3"; homepage = "https://github.com/bji/libs3"; - license = lib.licenses.lgpl3Plus; + license = licenses.lgpl3Plus; mainProgram = "s3"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/libsearpc/package.nix b/pkgs/by-name/li/libsearpc/package.nix index 219c5221ca0209..0908abe1aa53f3 100644 --- a/pkgs/by-name/li/libsearpc/package.nix +++ b/pkgs/by-name/li/libsearpc/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { jansson ]; - meta = { + meta = with lib; { homepage = "https://github.com/haiwen/libsearpc"; description = "Simple and easy-to-use C language RPC framework based on GObject System"; mainProgram = "searpc-codegen.py"; - license = lib.licenses.lgpl3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ greizgh ]; + license = licenses.lgpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ greizgh ]; }; } diff --git a/pkgs/by-name/li/libsfdo/package.nix b/pkgs/by-name/li/libsfdo/package.nix index 2095b8a4efce7f..458c8ea94ad953 100644 --- a/pkgs/by-name/li/libsfdo/package.nix +++ b/pkgs/by-name/li/libsfdo/package.nix @@ -35,17 +35,17 @@ stdenv.mkDerivation (finalAttrs: { versionCheck = true; }; - meta = { + meta = with lib; { description = "Collection of libraries which implement some of the freedesktop.org specifications"; homepage = "https://gitlab.freedesktop.org/vyivel/libsfdo"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.zi3m5f ]; + license = licenses.bsd2; + maintainers = [ maintainers.zi3m5f ]; pkgConfigModules = [ "libsfdo-basedir" "libsfdo-desktop-file" "libsfdo-desktop" "libsfdo-icon" ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/li/libskk/package.nix b/pkgs/by-name/li/libskk/package.nix index 6ef8dcbe86f31c..0fd35f72e6161e 100644 --- a/pkgs/by-name/li/libskk/package.nix +++ b/pkgs/by-name/li/libskk/package.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Library to deal with Japanese kana-to-kanji conversion method"; mainProgram = "skk"; longDescription = '' @@ -80,8 +80,8 @@ stdenv.mkDerivation rec { user dictionary, skkserv, and CDB format dictionary. ''; homepage = "https://github.com/ueno/libskk"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ yuriaisaka ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ yuriaisaka ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/libsmartcols/package.nix b/pkgs/by-name/li/libsmartcols/package.nix index ad6378cb1a3f82..dca7f7a64db8e0 100644 --- a/pkgs/by-name/li/libsmartcols/package.nix +++ b/pkgs/by-name/li/libsmartcols/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { "install-pkgconfigDATA" ]; - meta = { + meta = with lib; { description = "smart column output alignment library"; homepage = "https://github.com/karelzak/util-linux/tree/master/libsmartcols"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux ++ lib.platforms.darwin; - maintainers = with lib.maintainers; [ rb2k ]; + license = licenses.gpl2Plus; + platforms = platforms.linux ++ platforms.darwin; + maintainers = with maintainers; [ rb2k ]; }; } diff --git a/pkgs/by-name/li/libspatialindex/package.nix b/pkgs/by-name/li/libspatialindex/package.nix index 1c07b6dae6eaa3..a6152c7d810c57 100644 --- a/pkgs/by-name/li/libspatialindex/package.nix +++ b/pkgs/by-name/li/libspatialindex/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation (finalAttrs: { install_name_tool -change "@rpath/libspatialindex.7.dylib" "$out/lib/libspatialindex.7.dylib" $out/lib/libspatialindex_c.dylib ''; - meta = { + meta = with lib; { description = "Extensible spatial index library in C++"; homepage = "https://libspatialindex.org"; - license = lib.licenses.mit; - maintainers = lib.teams.geospatial.members; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = teams.geospatial.members; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/li/libsrs2/package.nix b/pkgs/by-name/li/libsrs2/package.nix index e1de774e48e8cb..e867a4a6275bfe 100644 --- a/pkgs/by-name/li/libsrs2/package.nix +++ b/pkgs/by-name/li/libsrs2/package.nix @@ -13,14 +13,14 @@ stdenv.mkDerivation rec { sha256 = "9d1191b705d7587a5886736899001d04168392bbb6ed6345a057ade50943a492"; }; - meta = { + meta = with lib; { description = "Next generation SRS library from the original designer of SRS"; mainProgram = "srs"; - license = with lib.licenses; [ + license = with licenses; [ gpl2 bsd3 ]; homepage = "https://www.libsrs2.org/"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/libstudxml/package.nix b/pkgs/by-name/li/libstudxml/package.nix index ceaf052eee70a1..723fce4ae8269c 100644 --- a/pkgs/by-name/li/libstudxml/package.nix +++ b/pkgs/by-name/li/libstudxml/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation (finalAttrs: { chmod +x "$out"/lib/* ''; - meta = { + meta = with lib; { description = "A streaming XML pull parser and streaming XML serializer implementation for modern, standard C++"; homepage = "https://www.codesynthesis.com/projects/libstudxml/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tomasajt ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ tomasajt ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/li/libtapi/package.nix b/pkgs/by-name/li/libtapi/package.nix index 0e4f3db7611ea6..faefca3fb83f6a 100644 --- a/pkgs/by-name/li/libtapi/package.nix +++ b/pkgs/by-name/li/libtapi/package.nix @@ -170,15 +170,15 @@ stdenv.mkDerivation (finalAttrs: { rm $bin/share/man/man1/tapi-analyze.1 $bin/share/man/man1/tapi-api-verify.1 ''; - meta = { + meta = with lib; { description = "Replaces the Mach-O Dynamic Library Stub files in Apple's SDKs to reduce the size"; homepage = "https://github.com/apple-oss-distributions/tapi/"; - license = lib.licenses.ncsa; + license = licenses.ncsa; mainProgram = "tapi"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ matthewbauer reckenrode ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/li/libtcod/package.nix b/pkgs/by-name/li/libtcod/package.nix index 678ce9c46f5aea..e8888e399adae5 100644 --- a/pkgs/by-name/li/libtcod/package.nix +++ b/pkgs/by-name/li/libtcod/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation { zlib ]; - meta = { + meta = with lib; { description = "API for roguelike games"; homepage = "http://roguecentral.org/doryen/libtcod/"; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = licenses.bsd3; + platforms = platforms.linux; + maintainers = with maintainers; [ AndersonTorres ]; }; } diff --git a/pkgs/by-name/li/libtelnet/package.nix b/pkgs/by-name/li/libtelnet/package.nix index b2243d30113a0f..1822f102de9833 100644 --- a/pkgs/by-name/li/libtelnet/package.nix +++ b/pkgs/by-name/li/libtelnet/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation { ]; buildInputs = [ zlib ]; - meta = { + meta = with lib; { description = "Simple RFC-complient TELNET implementation as a C library"; homepage = "https://github.com/seanmiddleditch/libtelnet"; - license = lib.licenses.publicDomain; - maintainers = [ lib.maintainers.tomberek ]; - platforms = lib.platforms.linux; + license = licenses.publicDomain; + maintainers = [ maintainers.tomberek ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/libtheora/package.nix b/pkgs/by-name/li/libtheora/package.nix index df49f3988c01ee..5a37080a6a51fa 100644 --- a/pkgs/by-name/li/libtheora/package.nix +++ b/pkgs/by-name/li/libtheora/package.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { description = "Library for Theora, a free and open video compression format"; homepage = "https://www.theora.org/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ getchoo ]; - platforms = lib.platforms.unix ++ lib.platforms.windows; + license = licenses.bsd3; + maintainers = with maintainers; [ getchoo ]; + platforms = platforms.unix ++ platforms.windows; }; }) diff --git a/pkgs/by-name/li/libtiger/package.nix b/pkgs/by-name/li/libtiger/package.nix index 09211b89c89b39..de183e685513ac 100644 --- a/pkgs/by-name/li/libtiger/package.nix +++ b/pkgs/by-name/li/libtiger/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { cairo ] ++ lib.optional stdenv.hostPlatform.isDarwin darwin.apple_sdk.frameworks.ApplicationServices; - meta = { + meta = with lib; { homepage = "https://code.google.com/archive/p/libtiger/"; description = "Rendering library for Kate streams using Pango and Cairo"; - platforms = lib.platforms.unix; - license = lib.licenses.lgpl21Plus; - maintainers = with lib.maintainers; [ matthewbauer ]; + platforms = platforms.unix; + license = licenses.lgpl21Plus; + maintainers = with maintainers; [ matthewbauer ]; }; } diff --git a/pkgs/by-name/li/libtoxcore/package.nix b/pkgs/by-name/li/libtoxcore/package.nix index 41d60e68363f6e..295e30fb228c81 100644 --- a/pkgs/by-name/li/libtoxcore/package.nix +++ b/pkgs/by-name/li/libtoxcore/package.nix @@ -58,14 +58,14 @@ stdenv.mkDerivation rec { # We might be getting the wrong pkg-config file anyway: # https://github.com/TokTok/c-toxcore/issues/2334 - meta = { + meta = with lib; { description = "P2P FOSS instant messaging application aimed to replace Skype"; homepage = "https://tox.chat"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ peterhoeg ehmry ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/li/libusbgx/package.nix b/pkgs/by-name/li/libusbgx/package.nix index fa119c9477446e..7f5d8604f1450d 100644 --- a/pkgs/by-name/li/libusbgx/package.nix +++ b/pkgs/by-name/li/libusbgx/package.nix @@ -20,13 +20,13 @@ stdenv.mkDerivation { pkg-config ]; buildInputs = [ libconfig ]; - meta = { + meta = with lib; { description = "C library encapsulating the kernel USB gadget-configfs userspace API functionality"; - license = with lib.licenses; [ + license = with licenses; [ lgpl21Plus # library gpl2Plus # examples ]; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/libusbmuxd/package.nix b/pkgs/by-name/li/libusbmuxd/package.nix index cb77300acec0b6..3849bd81c12c68 100644 --- a/pkgs/by-name/li/libusbmuxd/package.nix +++ b/pkgs/by-name/li/libusbmuxd/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { export RELEASE_VERSION=${version} ''; - meta = { + meta = with lib; { description = "Client library to multiplex connections from and to iOS devices"; homepage = "https://github.com/libimobiledevice/libusbmuxd"; - license = lib.licenses.lgpl21Plus; - platforms = lib.platforms.unix; + license = licenses.lgpl21Plus; + platforms = platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libvisual/package.nix b/pkgs/by-name/li/libvisual/package.nix index 944ea60409c754..9d6f4934ef02fd 100644 --- a/pkgs/by-name/li/libvisual/package.nix +++ b/pkgs/by-name/li/libvisual/package.nix @@ -49,10 +49,10 @@ stdenv.mkDerivation rec { "ac_cv_func_realloc_0_nonnull=yes" ]; - meta = { + meta = with lib; { description = "Abstraction library for audio visualisations"; homepage = "https://sourceforge.net/projects/libvisual/"; - license = lib.licenses.lgpl21Plus; - platforms = lib.platforms.linux; + license = licenses.lgpl21Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/libvlcpp/package.nix b/pkgs/by-name/li/libvlcpp/package.nix index 5aae8b61923379..70b77b8ea8ab82 100644 --- a/pkgs/by-name/li/libvlcpp/package.nix +++ b/pkgs/by-name/li/libvlcpp/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { description = "Header-only C++ bindings for the libvlc crossplatform multimedia API"; homepage = "https://code.videolan.org/videolan/libvlcpp"; - maintainers = with lib.maintainers; [ l33tname ]; - platforms = lib.platforms.all; - license = lib.licenses.lgpl21Only; + maintainers = with maintainers; [ l33tname ]; + platforms = platforms.all; + license = licenses.lgpl21Only; }; }) diff --git a/pkgs/by-name/li/libvmi/package.nix b/pkgs/by-name/li/libvmi/package.nix index 33ca483616d62f..dac033522aa540 100644 --- a/pkgs/by-name/li/libvmi/package.nix +++ b/pkgs/by-name/li/libvmi/package.nix @@ -79,7 +79,7 @@ stdenv.mkDerivation { inherit libVersion; }; - meta = { + meta = with lib; { description = "C library for virtual machine introspection"; longDescription = '' LibVMI is a C library with Python bindings that makes it easy to monitor the low-level @@ -87,11 +87,11 @@ stdenv.mkDerivation { and accessing the vCPU registers. ''; homepage = "https://libvmi.com/"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Only lgpl3Only ]; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ sigmasquadron ]; + maintainers = with maintainers; [ sigmasquadron ]; }; } diff --git a/pkgs/by-name/li/libwebm/package.nix b/pkgs/by-name/li/libwebm/package.nix index ec93af05e410d4..e089e7d669bbe9 100644 --- a/pkgs/by-name/li/libwebm/package.nix +++ b/pkgs/by-name/li/libwebm/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "WebM file parser"; homepage = "https://www.webmproject.org/code/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ niklaskorz ]; - platforms = lib.platforms.all; + license = licenses.bsd3; + maintainers = with maintainers; [ niklaskorz ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/li/libxmi/package.nix b/pkgs/by-name/li/libxmi/package.nix index aa0ec1d89c7ab0..033ebcd34075a7 100644 --- a/pkgs/by-name/li/libxmi/package.nix +++ b/pkgs/by-name/li/libxmi/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { # For the x86_64 GNU/Linux arch to be recognized by 'configure' preConfigure = "cp ${libtool}/share/libtool/build-aux/config.sub ."; - meta = { + meta = with lib; { description = "Library for rasterizing 2-D vector graphics"; homepage = "https://www.gnu.org/software/libxmi/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + platforms = platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libxnd/package.nix b/pkgs/by-name/li/libxnd/package.nix index 205e9425a74e57..3bfe53130016ac 100644 --- a/pkgs/by-name/li/libxnd/package.nix +++ b/pkgs/by-name/li/libxnd/package.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation { doCheck = true; - meta = { + meta = with lib; { description = "C library for managing typed memory blocks and Python container module"; homepage = "https://xnd.io/"; - license = lib.licenses.bsdOriginal; - maintainers = with lib.maintainers; [ costrouc ]; + license = licenses.bsdOriginal; + maintainers = with maintainers; [ costrouc ]; }; } diff --git a/pkgs/by-name/li/libxo/package.nix b/pkgs/by-name/li/libxo/package.nix index 8e20b8edc7b1ac..a890f2282861b3 100644 --- a/pkgs/by-name/li/libxo/package.nix +++ b/pkgs/by-name/li/libxo/package.nix @@ -61,10 +61,10 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Library to generate text, XML, JSON, and HTML"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.reckenrode ]; - platforms = lib.platforms.unix; + license = licenses.bsd2; + maintainers = [ maintainers.reckenrode ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/li/libz/package.nix b/pkgs/by-name/li/libz/package.nix index 62c579d2f20b47..3532ffef9f7195 100644 --- a/pkgs/by-name/li/libz/package.nix +++ b/pkgs/by-name/li/libz/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation (finalAttrs: { tagPrefix = "libz-"; }; - meta = { + meta = with lib; { homepage = "https://sortix.org/libz/"; description = "Clean fork of zlib"; - license = [ lib.licenses.zlib ]; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + license = [ licenses.zlib ]; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/li/libzakalwe/package.nix b/pkgs/by-name/li/libzakalwe/package.nix index 912eae924579df..d451da3435ea7d 100644 --- a/pkgs/by-name/li/libzakalwe/package.nix +++ b/pkgs/by-name/li/libzakalwe/package.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { tagPrefix = "v"; }; - meta = { + meta = with lib; { description = "Library for functions shared across zakalwe projects"; homepage = "https://gitlab.com/hors/libzakalwe"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ OPNA2608 ]; - platforms = lib.platforms.unix; + license = licenses.bsd2; + maintainers = with maintainers; [ OPNA2608 ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/li/libzdb/package.nix b/pkgs/by-name/li/libzdb/package.nix index 212515cc49c6f0..d1ca6face5a9e7 100644 --- a/pkgs/by-name/li/libzdb/package.nix +++ b/pkgs/by-name/li/libzdb/package.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { buildInputs = [ sqlite ]; - meta = { + meta = with lib; { homepage = "http://www.tildeslash.com/libzdb/"; description = "Small, easy to use Open Source Database Connection Pool Library"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; + license = licenses.gpl3; + platforms = platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libzim-glib/package.nix b/pkgs/by-name/li/libzim-glib/package.nix index 183e4d030fabc9..99c4dd9cea82f6 100644 --- a/pkgs/by-name/li/libzim-glib/package.nix +++ b/pkgs/by-name/li/libzim-glib/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation (finalAttrs: { # requires downloading test sample of a specific zimlib version doCheck = false; - meta = { + meta = with lib; { description = "Partial GObject/C bindings for libzim"; homepage = "https://github.com/birros/libzim-glib"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.unix; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/li/libzmf/package.nix b/pkgs/by-name/li/libzmf/package.nix index 0d7071ec805907..0a5aa8efa2e084 100644 --- a/pkgs/by-name/li/libzmf/package.nix +++ b/pkgs/by-name/li/libzmf/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { ]; configureFlags = [ "--disable-werror" ]; - meta = { + meta = with lib; { description = "Library that parses the file format of Zoner Callisto/Draw documents"; - license = lib.licenses.mpl20; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.unix; + license = licenses.mpl20; + maintainers = [ maintainers.raskin ]; + platforms = platforms.unix; homepage = "https://wiki.documentfoundation.org/DLP/Libraries/libzmf"; downloadPage = "http://dev-www.libreoffice.org/src/libzmf/"; }; diff --git a/pkgs/by-name/li/licensed/package.nix b/pkgs/by-name/li/licensed/package.nix index 22ead68b889529..56db2ad6360a23 100644 --- a/pkgs/by-name/li/licensed/package.nix +++ b/pkgs/by-name/li/licensed/package.nix @@ -10,11 +10,11 @@ bundlerApp { passthru.updateScript = bundlerUpdateScript "licensed"; - meta = { + meta = with lib; { description = "Ruby gem to cache and verify the licenses of dependencies"; homepage = "https://github.com/github/licensed"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.jcaesar ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = [ maintainers.jcaesar ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/licensedigger/package.nix b/pkgs/by-name/li/licensedigger/package.nix index 6536648e1963f9..22cc95488023d9 100644 --- a/pkgs/by-name/li/licensedigger/package.nix +++ b/pkgs/by-name/li/licensedigger/package.nix @@ -27,13 +27,13 @@ stdenv.mkDerivation { dontWrapQtApps = true; - meta = { + meta = with lib; { description = "Tools to convert existing license headers to SPDX compliant headers"; homepage = "https://invent.kde.org/sdk/licensedigger"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Only gpl3Only ]; - maintainers = with lib.maintainers; [ onny ]; + maintainers = with maintainers; [ onny ]; }; } diff --git a/pkgs/by-name/li/light/package.nix b/pkgs/by-name/li/light/package.nix index aa16262a8d93b6..db05dd92c8e663 100644 --- a/pkgs/by-name/li/light/package.nix +++ b/pkgs/by-name/li/light/package.nix @@ -33,15 +33,15 @@ stdenv.mkDerivation { --replace-fail '/bin/chmod' '${coreutils}/bin/chmod' ''; - meta = { + meta = with lib; { description = "GNU/Linux application to control backlights"; homepage = "https://gitlab.com/dpeukert/light"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "light"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ puffnfresh dtzWill ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/lightum/package.nix b/pkgs/by-name/li/lightum/package.nix index 59fe1ec552a128..1d7a7ebf99c74b 100644 --- a/pkgs/by-name/li/lightum/package.nix +++ b/pkgs/by-name/li/lightum/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation { mandir=$out/share/man INSTALL="install -c" INSTALLDATA="install -c -m 644" ''; - meta = { + meta = with lib; { description = "MacBook automatic light sensor daemon"; mainProgram = "lightum"; homepage = "https://github.com/poliva/lightum"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ puffnfresh ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ puffnfresh ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/lightworks/package.nix b/pkgs/by-name/li/lightworks/package.nix index 26d0fea55968c0..ee6af862d5e2fa 100644 --- a/pkgs/by-name/li/lightworks/package.nix +++ b/pkgs/by-name/li/lightworks/package.nix @@ -115,13 +115,13 @@ buildFHSEnv { runScript = "lightworks"; - meta = { + meta = with lib; { description = "Professional Non-Linear Video Editor"; homepage = "https://www.lwks.com/"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; mainProgram = "lightworks"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ antonxy vojta001 kashw2 diff --git a/pkgs/by-name/li/lime3ds/package.nix b/pkgs/by-name/li/lime3ds/package.nix index f927ff1c1283be..b0b3c489ef5645 100644 --- a/pkgs/by-name/li/lime3ds/package.nix +++ b/pkgs/by-name/li/lime3ds/package.nix @@ -170,12 +170,12 @@ stdenv.mkDerivation (finalAttrs: { (cmakeBool "ENABLE_QT_TRANSLATION" enableQtTranslations) ]; - meta = { + meta = with lib; { description = "A Nintendo 3DS emulator based on Citra"; homepage = "https://github.com/Lime3DS/Lime3ds-archive"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ arthsmn ]; + license = licenses.gpl2Only; + maintainers = with maintainers; [ arthsmn ]; mainProgram = "lime3ds"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/li/limo/package.nix b/pkgs/by-name/li/limo/package.nix index 7acd6bc5757bef..cff5a2da2f9732 100644 --- a/pkgs/by-name/li/limo/package.nix +++ b/pkgs/by-name/li/limo/package.nix @@ -68,15 +68,15 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeFeature "LIBUNRAR_INCLUDE_DIR" "") ]; - meta = { + meta = with lib; { description = "General purpose mod manager with support for the NexusMods API and LOOT"; homepage = "https://github.com/limo-app/limo"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "limo"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ tomasajt MattSturgeon ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/li/linden-hill/package.nix b/pkgs/by-name/li/linden-hill/package.nix index 07d41919b2c25d..ba20a769c838b2 100644 --- a/pkgs/by-name/li/linden-hill/package.nix +++ b/pkgs/by-name/li/linden-hill/package.nix @@ -23,14 +23,14 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Digital version of Frederic Goudy’s Deepdene"; longDescription = '' Linden Hill is a digital version of Frederic Goudy’s Deepdene. The package includes roman and italic. ''; homepage = "https://www.theleagueofmoveabletype.com/linden-hill"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ minijackson ]; + license = licenses.ofl; + maintainers = with maintainers; [ minijackson ]; }; } diff --git a/pkgs/by-name/li/linearicons-free/package.nix b/pkgs/by-name/li/linearicons-free/package.nix index 4df1923e3b634e..00a4995667cd5e 100644 --- a/pkgs/by-name/li/linearicons-free/package.nix +++ b/pkgs/by-name/li/linearicons-free/package.nix @@ -21,14 +21,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Crisp Line Icons by Perxis"; longDescription = '' See cheat sheet here: https://linearicons.com/free#cheat-sheet ''; homepage = "https://linearicons.com/free"; - license = lib.licenses.cc-by-sa-40; - maintainers = [ lib.maintainers.CardboardTurkey ]; - platforms = lib.platforms.all; + license = licenses.cc-by-sa-40; + maintainers = [ maintainers.CardboardTurkey ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/li/linenoise-ng/package.nix b/pkgs/by-name/li/linenoise-ng/package.nix index 1b9ad3f243c4bf..148adb78775c85 100644 --- a/pkgs/by-name/li/linenoise-ng/package.nix +++ b/pkgs/by-name/li/linenoise-ng/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = { + meta = with lib; { homepage = "https://github.com/arangodb/linenoise-ng"; description = "Small, portable GNU readline replacement for Linux, Windows and MacOS which is capable of handling UTF-8 characters"; maintainers = [ ]; - platforms = lib.platforms.all; - license = lib.licenses.bsd3; + platforms = platforms.all; + license = licenses.bsd3; }; } diff --git a/pkgs/by-name/li/linenoise/package.nix b/pkgs/by-name/li/linenoise/package.nix index acf8cf3e258c59..fb50b0ad06c563 100644 --- a/pkgs/by-name/li/linenoise/package.nix +++ b/pkgs/by-name/li/linenoise/package.nix @@ -43,14 +43,14 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/antirez/linenoise"; description = "Minimal, zero-config, BSD licensed, readline replacement"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ fstamour remexre ]; - platforms = lib.platforms.unix; - license = lib.licenses.bsd2; + platforms = platforms.unix; + license = licenses.bsd2; }; } diff --git a/pkgs/by-name/li/lingot/package.nix b/pkgs/by-name/li/lingot/package.nix index 88df150b004eea..3e5135506f5b61 100644 --- a/pkgs/by-name/li/lingot/package.nix +++ b/pkgs/by-name/li/lingot/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { configureFlags = lib.optional (!jackSupport) "--disable-jack"; - meta = { + meta = with lib; { description = "Not a Guitar-Only tuner"; mainProgram = "lingot"; homepage = "https://www.nongnu.org/lingot/"; - license = lib.licenses.gpl2Plus; - platforms = with lib.platforms; linux; + license = licenses.gpl2Plus; + platforms = with platforms; linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/linuxhw-edid-fetcher/package.nix b/pkgs/by-name/li/linuxhw-edid-fetcher/package.nix index dcf6c0908e71b5..548293b75b65e7 100644 --- a/pkgs/by-name/li/linuxhw-edid-fetcher/package.nix +++ b/pkgs/by-name/li/linuxhw-edid-fetcher/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch=master" ]; }; - meta = { + meta = with lib; { description = "Fetcher for EDID binaries from Linux Hardware Project's EDID repository"; homepage = "https://github.com/linuxhw/EDID"; - license = lib.licenses.cc-by-40; - maintainers = with lib.maintainers; [ nazarewk ]; - platforms = lib.platforms.all; + license = licenses.cc-by-40; + maintainers = with maintainers; [ nazarewk ]; + platforms = platforms.all; mainProgram = "linuxhw-edid-fetch"; }; } diff --git a/pkgs/by-name/li/literate/package.nix b/pkgs/by-name/li/literate/package.nix index bfd53ce1e5f0e5..891216d6ded7e7 100644 --- a/pkgs/by-name/li/literate/package.nix +++ b/pkgs/by-name/li/literate/package.nix @@ -30,11 +30,11 @@ buildDubPackage { runHook postInstall ''; - meta = { + meta = with lib; { description = "Literate programming tool for any language"; homepage = "https://zyedidia.github.io/literate/"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "lit"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/litmusctl/package.nix b/pkgs/by-name/li/litmusctl/package.nix index 7991cc130c41f3..18d68b03d3a70e 100644 --- a/pkgs/by-name/li/litmusctl/package.nix +++ b/pkgs/by-name/li/litmusctl/package.nix @@ -34,12 +34,12 @@ buildGoModule rec { --zsh <($out/bin/litmusctl completion zsh) ''; - meta = { + meta = with lib; { description = "Command-Line tool to manage Litmuschaos's agent plane"; homepage = "https://github.com/litmuschaos/litmusctl"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "litmusctl"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ vinetos sailord ]; diff --git a/pkgs/by-name/li/live-chart/package.nix b/pkgs/by-name/li/live-chart/package.nix index 942fe3545562bc..e8530a84e09e4f 100644 --- a/pkgs/by-name/li/live-chart/package.nix +++ b/pkgs/by-name/li/live-chart/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { description = "Real-time charting library for Vala and GTK4 based on Cairo"; homepage = "https://github.com/lcallarec/live-chart"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/li/live555/package.nix b/pkgs/by-name/li/live555/package.nix index 2b24804cb33a21..10b941749d249e 100644 --- a/pkgs/by-name/li/live555/package.nix +++ b/pkgs/by-name/li/live555/package.nix @@ -102,12 +102,12 @@ stdenv.mkDerivation (finalAttrs: { inherit vlc; }; - meta = { + meta = with lib; { homepage = "http://www.live555.com/liveMedia/"; description = "Set of C++ libraries for multimedia streaming, using open standard protocols (RTP/RTCP, RTSP, SIP)"; changelog = "http://www.live555.com/liveMedia/public/changelog.txt"; - license = with lib.licenses; [ lgpl21Plus ]; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + license = with licenses; [ lgpl21Plus ]; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/li/livebook/package.nix b/pkgs/by-name/li/livebook/package.nix index 8dfe7a9cf5cc8a..e010b90317b375 100644 --- a/pkgs/by-name/li/livebook/package.nix +++ b/pkgs/by-name/li/livebook/package.nix @@ -50,14 +50,14 @@ beamPackages.mixRelease rec { }; }; - meta = { - license = lib.licenses.asl20; + meta = with lib; { + license = licenses.asl20; homepage = "https://livebook.dev/"; description = "Automate code & data workflows with interactive Elixir notebooks"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ munksgaard scvalex ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/livekit-libwebrtc/gclient2nix.nix b/pkgs/by-name/li/livekit-libwebrtc/gclient2nix.nix index 5008a586ce76d8..1edf27dd1fe44b 100644 --- a/pkgs/by-name/li/livekit-libwebrtc/gclient2nix.nix +++ b/pkgs/by-name/li/livekit-libwebrtc/gclient2nix.nix @@ -49,11 +49,11 @@ buildPythonPackage { --set PATH ${lib.makeBinPath nativeDeps} ''; - meta = { + meta = with lib; { description = "Generate Nix expressions for projects based on the Google build tools"; homepage = "https://github.com/WeetHet/gclient2nix"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ WeetHet ]; mainProgram = "gclient2nix"; diff --git a/pkgs/by-name/li/livekit-libwebrtc/package.nix b/pkgs/by-name/li/livekit-libwebrtc/package.nix index d452bc54e5e1c7..f4a1f9d7de0d91 100644 --- a/pkgs/by-name/li/livekit-libwebrtc/package.nix +++ b/pkgs/by-name/li/livekit-libwebrtc/package.nix @@ -291,14 +291,14 @@ stdenv.mkDerivation { ${lib.getExe gclient2nix} --main-source-path src https://github.com/webrtc-sdk/webrtc.git m114_release ''; - meta = { + meta = with lib; { description = "WebRTC library used by livekit"; homepage = "https://github.com/livekit/rust-sdks/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ WeetHet niklaskorz ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/by-name/li/livepeer/package.nix b/pkgs/by-name/li/livepeer/package.nix index ad26e4d346e1bb..f7ff187280b649 100644 --- a/pkgs/by-name/li/livepeer/package.nix +++ b/pkgs/by-name/li/livepeer/package.nix @@ -39,11 +39,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Official Go implementation of the Livepeer protocol"; homepage = "https://livepeer.org"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ elitak bot-wxt1221 ]; diff --git a/pkgs/by-name/lm/lm4flash/package.nix b/pkgs/by-name/lm/lm4flash/package.nix index ca94fa67ff78a1..ee61efead0ba0f 100644 --- a/pkgs/by-name/lm/lm4flash/package.nix +++ b/pkgs/by-name/lm/lm4flash/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { install -Dm644 "${stellaris-udev-rules}" "$out/etc/udev/rules.d/61.stellpad.rules" ''; - meta = { + meta = with lib; { description = "Command-line firmware flashing tool for the Stellaris Launchpad"; longDescription = '' Command-line firmware flashing tool using libusb-1.0 to communicate with @@ -49,9 +49,9 @@ stdenv.mkDerivation rec { BSD systems. ''; homepage = "https://github.com/utzig/lm4tools"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "lm4flash"; - maintainers = with lib.maintainers; [ MostafaKhaled ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ MostafaKhaled ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/lm/lmdbxx/package.nix b/pkgs/by-name/lm/lmdbxx/package.nix index f36619273025ad..45ff5425b53c80 100644 --- a/pkgs/by-name/lm/lmdbxx/package.nix +++ b/pkgs/by-name/lm/lmdbxx/package.nix @@ -19,10 +19,10 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ lmdb ]; makeFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { homepage = "https://github.com/hoytech/lmdbxx#readme"; description = "C++11 wrapper for the LMDB embedded B+ tree database library"; - license = lib.licenses.unlicense; - maintainers = with lib.maintainers; [ fgaz ]; + license = licenses.unlicense; + maintainers = with maintainers; [ fgaz ]; }; }) diff --git a/pkgs/by-name/lm/lmstudio/package.nix b/pkgs/by-name/lm/lmstudio/package.nix index 0df6732d9a0cf8..356d059267db0f 100644 --- a/pkgs/by-name/lm/lmstudio/package.nix +++ b/pkgs/by-name/lm/lmstudio/package.nix @@ -8,12 +8,12 @@ let pname = "lmstudio"; version = "0.3.5"; rev = "2"; - meta = { + meta = with lib; { description = "LM Studio is an easy to use desktop app for experimenting with local and open-source Large Language Models (LLMs)"; homepage = "https://lmstudio.ai/"; - license = lib.licenses.unfree; + license = licenses.unfree; mainProgram = "lmstudio"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ cig0 eeedean crertel @@ -22,7 +22,7 @@ let "x86_64-linux" "aarch64-darwin" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; in if stdenv.hostPlatform.isDarwin then diff --git a/pkgs/by-name/ln/lndinit/package.nix b/pkgs/by-name/ln/lndinit/package.nix index 183465512d6fb5..44bce7fadd516e 100644 --- a/pkgs/by-name/ln/lndinit/package.nix +++ b/pkgs/by-name/ln/lndinit/package.nix @@ -18,11 +18,11 @@ buildGoModule rec { subPackages = [ "." ]; - meta = { + meta = with lib; { description = "Wallet initializer utility for lnd"; homepage = "https://github.com/lightninglabs/lndinit"; mainProgram = "lndinit"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ aldoborrero ]; + license = licenses.mit; + maintainers = with maintainers; [ aldoborrero ]; }; } diff --git a/pkgs/by-name/lo/localsearch/package.nix b/pkgs/by-name/lo/localsearch/package.nix index 9533e51e006edf..744fcff52ce667 100644 --- a/pkgs/by-name/lo/localsearch/package.nix +++ b/pkgs/by-name/lo/localsearch/package.nix @@ -143,12 +143,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gnome.updateScript { packageName = "localsearch"; }; }; - meta = { + meta = with lib; { homepage = "https://gitlab.gnome.org/GNOME/localsearch"; description = "Desktop-neutral user information store, search tool and indexer"; - maintainers = lib.teams.gnome.members; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; + maintainers = teams.gnome.members; + license = licenses.gpl2Plus; + platforms = platforms.unix; mainProgram = "localsearch"; }; }) diff --git a/pkgs/by-name/lo/lockbook/package.nix b/pkgs/by-name/lo/lockbook/package.nix index ec215983f54583..42dc2a433e485f 100644 --- a/pkgs/by-name/lo/lockbook/package.nix +++ b/pkgs/by-name/lo/lockbook/package.nix @@ -32,7 +32,7 @@ rustPlatform.buildRustPackage rec { installShellCompletion --fish --name lockbook.fish <($out/bin/lockbook completions fish) ''; - meta = { + meta = with lib; { description = "Private, polished note-taking platform"; longDescription = '' Write notes, sketch ideas, and store files in one secure place. @@ -42,9 +42,9 @@ rustPlatform.buildRustPackage rec { Lockbook is 100% open-source. ''; homepage = "https://lockbook.net"; - license = lib.licenses.unlicense; - platforms = lib.platforms.all; + license = licenses.unlicense; + platforms = platforms.all; changelog = "https://github.com/lockbook/lockbook/releases"; - maintainers = [ lib.maintainers.parth ]; + maintainers = [ maintainers.parth ]; }; } diff --git a/pkgs/by-name/lo/lockdep/package.nix b/pkgs/by-name/lo/lockdep/package.nix index 6464f8cb85beeb..8d9d1ce901be3e 100644 --- a/pkgs/by-name/lo/lockdep/package.nix +++ b/pkgs/by-name/lo/lockdep/package.nix @@ -68,12 +68,12 @@ stdenv.mkDerivation rec { substituteInPlace $out/bin/lockdep --replace "./liblockdep.so" "$out/lib/liblockdep.so.$fullver" ''; - meta = { + meta = with lib; { description = "Userspace locking validation tool built on the Linux kernel"; mainProgram = "lockdep"; homepage = "https://kernel.org/"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.thoughtpolice ]; + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = [ maintainers.thoughtpolice ]; }; } diff --git a/pkgs/by-name/lo/loco-cli/package.nix b/pkgs/by-name/lo/loco-cli/package.nix index 453877f87782e7..b3e443374f6537 100644 --- a/pkgs/by-name/lo/loco-cli/package.nix +++ b/pkgs/by-name/lo/loco-cli/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { #Skip trycmd integration tests checkFlags = [ "--skip=cli_tests" ]; - meta = { + meta = with lib; { description = "Loco CLI is a powerful command-line tool designed to streamline the process of generating Loco websites"; homepage = "https://loco.rs"; changelog = "https://github.com/loco-rs/loco/blob/master/CHANGELOG.md"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ sebrut ]; + license = licenses.asl20; + maintainers = with maintainers; [ sebrut ]; mainProgram = "loco"; }; } diff --git a/pkgs/by-name/lo/log4cplus/package.nix b/pkgs/by-name/lo/log4cplus/package.nix index da97f95ed5caf5..9ebd9c85b3a5bf 100644 --- a/pkgs/by-name/lo/log4cplus/package.nix +++ b/pkgs/by-name/lo/log4cplus/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = { + meta = with lib; { homepage = "http://log4cplus.sourceforge.net/"; description = "Port the log4j library from Java to C++"; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; + license = licenses.asl20; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/lo/logdy/package.nix b/pkgs/by-name/lo/logdy/package.nix index ac9d2ad1a141b9..692b5d9026afc8 100644 --- a/pkgs/by-name/lo/logdy/package.nix +++ b/pkgs/by-name/lo/logdy/package.nix @@ -42,7 +42,7 @@ buildGoModule rec { "-skip=^TestClientLoad$" # index out of range ]; - meta = { + meta = with lib; { description = "Web based real-time log viewer"; longDescription = '' Web based real-time log viewer. @@ -50,8 +50,8 @@ buildGoModule rec { Parse any format with TypeScript ''; homepage = "https://github.com/logdyhq/logdy-core"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ sigmanificient ByteSudoer ]; diff --git a/pkgs/by-name/lo/logisim/package.nix b/pkgs/by-name/lo/logisim/package.nix index 40eb34b93721cd..ebe2e48ce1d144 100644 --- a/pkgs/by-name/lo/logisim/package.nix +++ b/pkgs/by-name/lo/logisim/package.nix @@ -57,13 +57,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "http://www.cburch.com/logisim/"; description = "Educational tool for designing and simulating digital logic circuits"; mainProgram = "logisim"; - maintainers = with lib.maintainers; [ emilytrau ]; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ emilytrau ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.gpl2Only; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/lo/loguru/package.nix b/pkgs/by-name/lo/loguru/package.nix index 84fe218859c74d..435f064505378d 100644 --- a/pkgs/by-name/lo/loguru/package.nix +++ b/pkgs/by-name/lo/loguru/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation { cmake ]; - meta = { + meta = with lib; { description = "Lightweight C++ logging library"; homepage = "https://github.com/emilk/loguru"; - license = lib.licenses.unlicense; - maintainers = with lib.maintainers; [ drupol ]; - platforms = lib.platforms.all; + license = licenses.unlicense; + maintainers = with maintainers; [ drupol ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/lo/lombok/package.nix b/pkgs/by-name/lo/lombok/package.nix index dea367c7986045..91dc6514b493cd 100644 --- a/pkgs/by-name/lo/lombok/package.nix +++ b/pkgs/by-name/lo/lombok/package.nix @@ -31,13 +31,13 @@ stdenv.mkDerivation rec { --add-flags lombok.launch.Main ''; - meta = { + meta = with lib; { description = "Library that can write a lot of boilerplate for your Java project"; mainProgram = "lombok"; - platforms = lib.platforms.all; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.mit; + platforms = platforms.all; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.mit; homepage = "https://projectlombok.org/"; - maintainers = [ lib.maintainers.CrystalGamma ]; + maintainers = [ maintainers.CrystalGamma ]; }; } diff --git a/pkgs/by-name/lo/loopwm/package.nix b/pkgs/by-name/lo/loopwm/package.nix index 60976d6ae63bb5..c97a096b1ab2c2 100644 --- a/pkgs/by-name/lo/loopwm/package.nix +++ b/pkgs/by-name/lo/loopwm/package.nix @@ -33,12 +33,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { updateScript = ./update.sh; }; - meta = { + meta = with lib; { description = "macOS Window management made elegant"; homepage = "https://github.com/MrKai77/Loop"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ matteopacini ]; - platforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ matteopacini ]; + platforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/lo/losslessaudiochecker/package.nix b/pkgs/by-name/lo/losslessaudiochecker/package.nix index 35633d62aa8dd4..918188f95d42b2 100644 --- a/pkgs/by-name/lo/losslessaudiochecker/package.nix +++ b/pkgs/by-name/lo/losslessaudiochecker/package.nix @@ -24,13 +24,13 @@ stdenv.mkDerivation { install LAC -D -t $out/bin ''; - meta = { + meta = with lib; { description = "Utility to check whether audio is truly lossless or not"; homepage = "https://losslessaudiochecker.com"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ p-h ]; + maintainers = with maintainers; [ p-h ]; mainProgram = "LAC"; }; } diff --git a/pkgs/by-name/lo/louvre/package.nix b/pkgs/by-name/lo/louvre/package.nix index 5e78b6ac96d45b..9449443ca5ca34 100644 --- a/pkgs/by-name/lo/louvre/package.nix +++ b/pkgs/by-name/lo/louvre/package.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "C++ library for building Wayland compositors"; homepage = "https://github.com/CuarzoSoftware/Louvre"; mainProgram = "louvre-views"; - maintainers = [ lib.maintainers.dblsaiko ]; - platforms = lib.platforms.linux; + maintainers = [ maintainers.dblsaiko ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/lo/lovely-injector/package.nix b/pkgs/by-name/lo/lovely-injector/package.nix index e680cb7e25b02d..776ff565ebe93a 100644 --- a/pkgs/by-name/lo/lovely-injector/package.nix +++ b/pkgs/by-name/lo/lovely-injector/package.nix @@ -23,17 +23,17 @@ rustPlatform.buildRustPackage rec { # lovely-injector depends on nightly rust features env.RUSTC_BOOTSTRAP = 1; - meta = { + meta = with lib; { description = "Runtime lua injector for games built with LÖVE"; longDescription = '' Lovely is a lua injector which embeds code into a LÖVE 2d game at runtime. Unlike executable patchers, mods can be installed, updated, and removed over and over again without requiring a partial or total game reinstallation. This is accomplished through in-process lua API detouring and an easy to use (and distribute) patch system. ''; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/ethangreen-dev/lovely-injector"; downloadPage = "https://github.com/ethangreen-dev/lovely-injector/releases"; - maintainers = [ lib.maintainers.antipatico ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = [ maintainers.antipatico ]; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/by-name/lp/lparchive2epub/package.nix b/pkgs/by-name/lp/lparchive2epub/package.nix index e7024017bacc3d..3c9f03825b0098 100644 --- a/pkgs/by-name/lp/lparchive2epub/package.nix +++ b/pkgs/by-name/lp/lparchive2epub/package.nix @@ -30,10 +30,10 @@ python3Packages.buildPythonApplication rec { python3Packages.pytestCheckHook ]; - meta = { + meta = with lib; { description = "Transform any LP from lparchive into an epub document"; homepage = "https://github.com/Arwalk/lparchive2epub"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nsnelson ]; + license = licenses.mit; + maintainers = with maintainers; [ nsnelson ]; }; } diff --git a/pkgs/by-name/lp/lprobe/package.nix b/pkgs/by-name/lp/lprobe/package.nix index e7ecb2869ed002..1fbd1a190779b2 100644 --- a/pkgs/by-name/lp/lprobe/package.nix +++ b/pkgs/by-name/lp/lprobe/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { libpcap ]; - meta = { + meta = with lib; { description = "A command-line tool to perform Local Health Check Probes inside Container Images (ECS, Docker)"; homepage = "https://github.com/fivexl/lprobe"; - license = lib.licenses.asl20; - platforms = lib.platforms.linux ++ lib.platforms.darwin; - maintainers = with lib.maintainers; [ cageyv ]; + license = licenses.asl20; + platforms = platforms.linux ++ platforms.darwin; + maintainers = with maintainers; [ cageyv ]; mainProgram = "lprobe"; }; } diff --git a/pkgs/by-name/lr/lrdf/package.nix b/pkgs/by-name/lr/lrdf/package.nix index 4c11211c1a1968..d9eb6558e35a0a 100644 --- a/pkgs/by-name/lr/lrdf/package.nix +++ b/pkgs/by-name/lr/lrdf/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Lightweight RDF library with special support for LADSPA plugins"; homepage = "https://sourceforge.net/projects/lrdf/"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.marcweber ]; - platforms = lib.platforms.unix; + license = licenses.gpl2; + maintainers = [ maintainers.marcweber ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/lr/lrs/package.nix b/pkgs/by-name/lr/lrs/package.nix index 8715a6a4969485..a048cee616fbf3 100644 --- a/pkgs/by-name/lr/lrs/package.nix +++ b/pkgs/by-name/lr/lrs/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation { "CC:=$(CC)" ]; - meta = { + meta = with lib; { description = "Implementation of the reverse search algorithm for vertex enumeration/convex hull problems"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; homepage = "http://cgm.cs.mcgill.ca/~avis/C/lrs.html"; }; } diff --git a/pkgs/by-name/ls/lsd/package.nix b/pkgs/by-name/ls/lsd/package.nix index e2b4bb682e635f..d931e2bb39fad5 100644 --- a/pkgs/by-name/ls/lsd/package.nix +++ b/pkgs/by-name/ls/lsd/package.nix @@ -41,11 +41,11 @@ rustPlatform.buildRustPackage rec { passthru.tests.version = testers.testVersion { package = lsd; }; - meta = { + meta = with lib; { homepage = "https://github.com/lsd-rs/lsd"; description = "Next gen ls command"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ zowoq SuperSandro2000 ]; diff --git a/pkgs/by-name/ls/lsof/package.nix b/pkgs/by-name/ls/lsof/package.nix index 617fca8861d397..e96aaf84eb7452 100644 --- a/pkgs/by-name/ls/lsof/package.nix +++ b/pkgs/by-name/ls/lsof/package.nix @@ -79,7 +79,7 @@ stdenv.mkDerivation rec { cp lsof $out/bin ''; - meta = { + meta = with lib; { homepage = "https://github.com/lsof-org/lsof"; description = "Tool to list open files"; mainProgram = "lsof"; @@ -88,8 +88,8 @@ stdenv.mkDerivation rec { socket (IPv6/IPv4/UNIX local), or partition (by opening a file from it). ''; - license = lib.licenses.purdueBsd; - maintainers = with lib.maintainers; [ dezgeg ]; - platforms = lib.platforms.unix; + license = licenses.purdueBsd; + maintainers = with maintainers; [ dezgeg ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ls/lssecret/package.nix b/pkgs/by-name/ls/lssecret/package.nix index 16c14eb2d44acb..8d5cda9e69c09b 100644 --- a/pkgs/by-name/ls/lssecret/package.nix +++ b/pkgs/by-name/ls/lssecret/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { makeFlags = [ "DESTDIR=$(out)" ]; - meta = { + meta = with lib; { description = "Tool to list passwords and other secrets stored using the org.freedesktop.secrets dbus api"; homepage = "https://gitlab.com/GrantMoyer/lssecret"; - license = lib.licenses.unlicense; - maintainers = with lib.maintainers; [ genericnerdyusername ]; - platforms = lib.platforms.unix; + license = licenses.unlicense; + maintainers = with maintainers; [ genericnerdyusername ]; + platforms = platforms.unix; mainProgram = "lssecret"; }; } diff --git a/pkgs/by-name/lt/ltl2ba/package.nix b/pkgs/by-name/lt/ltl2ba/package.nix index 2e7311b3d30fcd..cc9cee5d5899d0 100644 --- a/pkgs/by-name/lt/ltl2ba/package.nix +++ b/pkgs/by-name/lt/ltl2ba/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { mv ltl2ba $out/bin ''; - meta = { + meta = with lib; { description = "Fast translation from LTL formulae to Buchi automata"; mainProgram = "ltl2ba"; homepage = "http://www.lsv.ens-cachan.fr/~gastin/ltl2ba"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.darwin ++ lib.platforms.linux; - maintainers = [ lib.maintainers.thoughtpolice ]; + license = licenses.gpl2Plus; + platforms = platforms.darwin ++ platforms.linux; + maintainers = [ maintainers.thoughtpolice ]; }; } diff --git a/pkgs/by-name/lu/luakit/package.nix b/pkgs/by-name/lu/luakit/package.nix index d9f46d3b79b984..feb131a298fadd 100644 --- a/pkgs/by-name/lu/luakit/package.nix +++ b/pkgs/by-name/lu/luakit/package.nix @@ -83,7 +83,7 @@ stdenv.mkDerivation (finalAttrs: { ) ''; - meta = { + meta = with lib; { homepage = "https://luakit.github.io/"; description = "Fast, small, webkit-based browser framework extensible in Lua"; longDescription = '' @@ -93,9 +93,9 @@ stdenv.mkDerivation (finalAttrs: { power users, developers and anyone who wants to have fine-grained control over their web browser’s behaviour and interface. ''; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "luakit"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/lu/lucenepp/package.nix b/pkgs/by-name/lu/lucenepp/package.nix index 5e9688571ce749..7840e9df4373ad 100644 --- a/pkgs/by-name/lu/lucenepp/package.nix +++ b/pkgs/by-name/lu/lucenepp/package.nix @@ -69,13 +69,13 @@ stdenv.mkDerivation rec { cp $src/src/contrib/include/*h $out/include/lucene++/ ''; - meta = { + meta = with lib; { description = "C++ port of the popular Java Lucene search engine"; homepage = "https://github.com/luceneplusplus/LucenePlusPlus"; - license = with lib.licenses; [ + license = with licenses; [ asl20 lgpl3Plus ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/lu/lumafly/package.nix b/pkgs/by-name/lu/lumafly/package.nix index 397b0e1b820a42..965c238870a2a7 100644 --- a/pkgs/by-name/lu/lumafly/package.nix +++ b/pkgs/by-name/lu/lumafly/package.nix @@ -76,12 +76,12 @@ buildDotnetModule rec { }) ]; - meta = { + meta = with lib; { description = "A cross platform mod manager for Hollow Knight written in Avalonia"; homepage = "https://themulhima.github.io/Lumafly/"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "Lumafly"; - maintainers = with lib.maintainers; [ rohanssrao ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ rohanssrao ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/lu/lunacy/package.nix b/pkgs/by-name/lu/lunacy/package.nix index ff23bf42bd90b1..cb941580555175 100644 --- a/pkgs/by-name/lu/lunacy/package.nix +++ b/pkgs/by-name/lu/lunacy/package.nix @@ -100,17 +100,17 @@ stdenv.mkDerivation (finalAttrs: { makeWrapper "$out/lib/lunacy/Lunacy" "$out/bin/lunacy" ''; - meta = { + meta = with lib; { description = "Free design software that keeps your flow with AI tools and built-in graphics"; homepage = "https://icons8.com/lunacy"; changelog = "https://lunacy.docs.icons8.com/release-notes/"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ + license = licenses.unfree; + maintainers = with maintainers; [ eliandoran luftmensch-luftmensch ]; - platforms = lib.platforms.linux; - sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; + platforms = platforms.linux; + sourceProvenance = [ sourceTypes.binaryBytecode ]; mainProgram = "lunacy"; }; }) diff --git a/pkgs/by-name/lu/lutok/package.nix b/pkgs/by-name/lu/lutok/package.nix index 144854abb9e4ab..e0bd47edf188b4 100644 --- a/pkgs/by-name/lu/lutok/package.nix +++ b/pkgs/by-name/lu/lutok/package.nix @@ -76,12 +76,12 @@ lib.fix ( __structuredAttrs = true; - meta = { + meta = with lib; { description = "Lightweight C++ API for Lua"; homepage = "https://github.com/freebsd/lutok/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ reckenrode ]; - platforms = lib.platforms.unix; + license = licenses.bsd3; + maintainers = with maintainers; [ reckenrode ]; + platforms = platforms.unix; }; }) ) diff --git a/pkgs/by-name/lv/lv_font_conv/package.nix b/pkgs/by-name/lv/lv_font_conv/package.nix index 132adafe343a71..b2f91bd163d65c 100644 --- a/pkgs/by-name/lv/lv_font_conv/package.nix +++ b/pkgs/by-name/lv/lv_font_conv/package.nix @@ -24,11 +24,11 @@ buildNpmPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Converts TTF/WOFF fonts to compact bitmap format"; mainProgram = "lv_font_conv"; homepage = " https://lvgl.io/tools/fontconverter"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pyrox0 ]; + license = licenses.mit; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/by-name/lv/lvtk/package.nix b/pkgs/by-name/lv/lvtk/package.nix index fc5dacaba82d42..1f85b7c270931b 100644 --- a/pkgs/by-name/lv/lvtk/package.nix +++ b/pkgs/by-name/lv/lvtk/package.nix @@ -39,13 +39,13 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Set C++ wrappers around the LV2 C API"; mainProgram = "ttl2c"; homepage = "https://lvtk.org/"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; - platforms = lib.platforms.unix; + license = licenses.gpl3; + maintainers = with maintainers; [ bot-wxt1221 ]; + platforms = platforms.unix; badPlatforms = [ "x86_64-darwin" "aarch64-darwin" diff --git a/pkgs/by-name/lx/lxcfs/package.nix b/pkgs/by-name/lx/lxcfs/package.nix index 966d93df2ac87a..1e32ee09cd3713 100644 --- a/pkgs/by-name/lx/lxcfs/package.nix +++ b/pkgs/by-name/lx/lxcfs/package.nix @@ -74,13 +74,13 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "FUSE filesystem for LXC"; mainProgram = "lxcfs"; homepage = "https://linuxcontainers.org/lxcfs"; changelog = "https://linuxcontainers.org/lxcfs/news/"; - license = lib.licenses.asl20; - platforms = lib.platforms.linux; - maintainers = lib.teams.lxc.members; + license = licenses.asl20; + platforms = platforms.linux; + maintainers = teams.lxc.members; }; } diff --git a/pkgs/by-name/lx/lxgw-wenkai-screen/package.nix b/pkgs/by-name/lx/lxgw-wenkai-screen/package.nix index d241185c5f00cb..ebe5675e4c0ad5 100644 --- a/pkgs/by-name/lx/lxgw-wenkai-screen/package.nix +++ b/pkgs/by-name/lx/lxgw-wenkai-screen/package.nix @@ -21,11 +21,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "LXGW WenKai font optimized for screen reading"; homepage = "https://github.com/lxgw/LxgwWenKai-Screen"; - license = lib.licenses.ofl; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ lebensterben ]; + license = licenses.ofl; + platforms = platforms.all; + maintainers = with maintainers; [ lebensterben ]; }; }) diff --git a/pkgs/by-name/lx/lxterminal/package.nix b/pkgs/by-name/lx/lxterminal/package.nix index 956d3e3b121a66..a07d2e654d9abf 100644 --- a/pkgs/by-name/lx/lxterminal/package.nix +++ b/pkgs/by-name/lx/lxterminal/package.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation rec { passthru.tests.test = nixosTests.terminal-emulators.lxterminal; - meta = { + meta = with lib; { description = "Standard terminal emulator of LXDE"; longDescription = '' LXTerminal is the standard terminal emulator of LXDE. The terminal is a @@ -74,9 +74,9 @@ stdenv.mkDerivation rec { unnecessary dependencies. ''; homepage = "https://wiki.lxde.org/en/LXTerminal"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.pbsds ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = [ maintainers.pbsds ]; + platforms = platforms.linux; mainProgram = "lxterminal"; }; } diff --git a/pkgs/by-name/ly/lyra-cursors/package.nix b/pkgs/by-name/ly/lyra-cursors/package.nix index b1ce03d965fb1c..ea9d1d80a598b7 100644 --- a/pkgs/by-name/ly/lyra-cursors/package.nix +++ b/pkgs/by-name/ly/lyra-cursors/package.nix @@ -72,11 +72,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "A cursor theme inspired by macOS and based on capitaine-cursors"; homepage = "https://github.com/yeyushengfan258/Lyra-Cursors"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ lordmzte ]; + license = licenses.gpl3Only; + platforms = platforms.all; + maintainers = with maintainers; [ lordmzte ]; }; } diff --git a/pkgs/by-name/lz/lzsa/package.nix b/pkgs/by-name/lz/lzsa/package.nix index 54c524d36d322b..e1b86a29895595 100644 --- a/pkgs/by-name/lz/lzsa/package.nix +++ b/pkgs/by-name/lz/lzsa/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/emmanuel-marty/lzsa"; description = "Byte-aligned, efficient lossless packer that is optimized for fast decompression on 8-bit micros"; mainProgram = "lzsa"; - license = with lib.licenses; [ cc0 ]; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + license = with licenses; [ cc0 ]; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/m1/m1ddc/package.nix b/pkgs/by-name/m1/m1ddc/package.nix index cd69a7072e3b4c..35a9f0630a2b24 100644 --- a/pkgs/by-name/m1/m1ddc/package.nix +++ b/pkgs/by-name/m1/m1ddc/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Control external displays using DDC/CI on Apple Silicon Macs"; homepage = "https://github.com/waydabber/m1ddc"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "m1ddc"; - maintainers = [ lib.maintainers.joanmassachs ]; + maintainers = [ maintainers.joanmassachs ]; platforms = [ "aarch64-darwin" ]; }; }) diff --git a/pkgs/by-name/m8/m8c/package.nix b/pkgs/by-name/m8/m8c/package.nix index 78891d527cdb69..d29bfd3bc0f01f 100644 --- a/pkgs/by-name/m8/m8c/package.nix +++ b/pkgs/by-name/m8/m8c/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation (finalAttrs: { libserialport ]; - meta = { + meta = with lib; { description = "Cross-platform M8 tracker headless client"; homepage = "https://github.com/laamaa/m8c"; - license = lib.licenses.mit; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ mrtnvgr ]; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ mrtnvgr ]; mainProgram = "m8c"; }; }) diff --git a/pkgs/by-name/ma/macmon/package.nix b/pkgs/by-name/ma/macmon/package.nix index a32b017c052391..4acfae58b85261 100644 --- a/pkgs/by-name/ma/macmon/package.nix +++ b/pkgs/by-name/ma/macmon/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-mE6PGWjaCFpqVoE1zISOqwt6o5SakjJM4sPRtU90lPA="; - meta = { + meta = with lib; { homepage = "https://github.com/vladkens/macmon"; description = "Sudoless performance monitoring for Apple Silicon processors"; platforms = [ "aarch64-darwin" ]; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ schrobingus ]; + license = licenses.mit; + maintainers = with maintainers; [ schrobingus ]; }; } diff --git a/pkgs/by-name/ma/mactracker/package.nix b/pkgs/by-name/ma/mactracker/package.nix index 430373fe90c582..381f02f6caa321 100644 --- a/pkgs/by-name/ma/mactracker/package.nix +++ b/pkgs/by-name/ma/mactracker/package.nix @@ -63,13 +63,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { versionCheckProgramArg = [ "${placeholder "out"}/Applications/Mactracker.app/Contents/Info.plist" ]; doInstallCheck = true; - meta = { + meta = with lib; { description = "Mactracker provides detailed information on every Apple Macintosh, iPod, iPhone, iPad, and Apple Watch ever made"; homepage = "https://mactracker.ca"; changelog = "https://mactracker.ca/releasenotes-mac.html"; - license = lib.licenses.unfree; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ DimitarNestorov ]; + license = licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ DimitarNestorov ]; platforms = [ "aarch64-darwin" "x86_64-darwin" diff --git a/pkgs/by-name/ma/magento-cloud/package.nix b/pkgs/by-name/ma/magento-cloud/package.nix index 73a85f777c4c97..44f96f0e5e1a54 100644 --- a/pkgs/by-name/ma/magento-cloud/package.nix +++ b/pkgs/by-name/ma/magento-cloud/package.nix @@ -40,14 +40,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { homepage = "https://experienceleague.adobe.com/en/docs/commerce-cloud-service/user-guide/dev-tools/cloud-cli/cloud-cli-overview"; description = "Adobe Commerce Cloud CLI"; longDescription = '' Adobe Commerce Cloud CLI enables developers and system administrators the ability to manage Cloud projects and environments, perform routines and run automation tasks locally. ''; mainProgram = "magento-cloud"; - maintainers = with lib.maintainers; [ piotrkwiecinski ]; - license = lib.licenses.unfree; + maintainers = with maintainers; [ piotrkwiecinski ]; + license = licenses.unfree; }; }) diff --git a/pkgs/by-name/ma/mailcheck/package.nix b/pkgs/by-name/ma/mailcheck/package.nix index 0f5e1925472979..2e335a84608d67 100644 --- a/pkgs/by-name/ma/mailcheck/package.nix +++ b/pkgs/by-name/ma/mailcheck/package.nix @@ -15,13 +15,13 @@ stdenv.mkDerivation rec { sha256 = "0p0azaxsnjvjbg41ycicc1i0kzw6jiynq8k49cfkdhlckxfdm9kc"; }; - meta = { + meta = with lib; { description = "Simple command line tool to check for new messages"; mainProgram = "mailcheck"; homepage = "https://mailcheck.sourceforge.net/"; - license = lib.licenses.gpl2; - maintainers = with lib.maintainers; [ kovirobi ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = with maintainers; [ kovirobi ]; + platforms = platforms.linux; longDescription = '' A simple command line tool to check for new mail in local mbox and maildir and remote POP3 and IMAP mailboxes. diff --git a/pkgs/by-name/ma/mailspring/package.nix b/pkgs/by-name/ma/mailspring/package.nix index 389ee42d77f7b9..56cb616d8d0c68 100644 --- a/pkgs/by-name/ma/mailspring/package.nix +++ b/pkgs/by-name/ma/mailspring/package.nix @@ -7,22 +7,22 @@ let pname = "mailspring"; version = "1.14.0"; - meta = { + meta = with lib; { description = "Beautiful, fast and maintained fork of Nylas Mail by one of the original authors"; downloadPage = "https://github.com/Foundry376/Mailspring"; homepage = "https://getmailspring.com"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; longDescription = '' Mailspring is an open-source mail client forked from Nylas Mail and built with Electron. Mailspring's sync engine runs locally, but its source is not open. ''; mainProgram = "mailspring"; - maintainers = with lib.maintainers; [ toschmidt ]; + maintainers = with maintainers; [ toschmidt ]; platforms = [ "x86_64-linux" "aarch64-darwin" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; linux = callPackage ./linux.nix { inherit pname version meta; }; diff --git a/pkgs/by-name/ma/mailsy/package.nix b/pkgs/by-name/ma/mailsy/package.nix index 7bda524ab22752..97896cbf333149 100644 --- a/pkgs/by-name/ma/mailsy/package.nix +++ b/pkgs/by-name/ma/mailsy/package.nix @@ -26,11 +26,11 @@ buildNpmPackage rec { --replace-fail 'dirname, "../data/email.html"' 'process.cwd(), "email.html"' ''; - meta = { + meta = with lib; { description = "Quickly generate a disposable email straight from terminal"; mainProgram = "mailsy"; homepage = "https://fig.io/manual/mailsy"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers._404wolf ]; + license = licenses.mit; + maintainers = [ maintainers._404wolf ]; }; } diff --git a/pkgs/by-name/ma/mairix/package.nix b/pkgs/by-name/ma/mairix/package.nix index e9f0bc2c2d77ae..12a61a8217339c 100644 --- a/pkgs/by-name/ma/mairix/package.nix +++ b/pkgs/by-name/ma/mairix/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "http://www.rc0.org.uk/mairix"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; description = "Program for indexing and searching email messages stored in maildir, MH or mbox"; mainProgram = "mairix"; maintainers = [ ]; - platforms = with lib.platforms; all; + platforms = with platforms; all; }; } diff --git a/pkgs/by-name/ma/maizzle/package.nix b/pkgs/by-name/ma/maizzle/package.nix index 4ba98e8d436fa1..f7237572d4e2a0 100644 --- a/pkgs/by-name/ma/maizzle/package.nix +++ b/pkgs/by-name/ma/maizzle/package.nix @@ -19,11 +19,11 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = { + meta = with lib; { description = "CLI tool for the Maizzle Email Framework"; homepage = "https://github.com/maizzle/cli"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "maizzle"; - maintainers = with lib.maintainers; [ happysalada ]; + maintainers = with maintainers; [ happysalada ]; }; } diff --git a/pkgs/by-name/ma/majima/package.nix b/pkgs/by-name/ma/majima/package.nix index 94d8b949d5101b..9e724d76ba7378 100644 --- a/pkgs/by-name/ma/majima/package.nix +++ b/pkgs/by-name/ma/majima/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-sblSlmXkiJkVGbrMU6HgtvYnAd48SlUOgDwB6ASMFsQ="; - meta = { + meta = with lib; { description = "Generate random usernames quickly and in various formats"; homepage = "https://majima.matte.fyi/"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ufUNnxagpM ]; + license = licenses.mit; + maintainers = [ maintainers.ufUNnxagpM ]; mainProgram = "majima"; }; } diff --git a/pkgs/by-name/ma/major-mono-display/package.nix b/pkgs/by-name/ma/major-mono-display/package.nix index 31d1bd24de43d0..9621221bbdd3f6 100644 --- a/pkgs/by-name/ma/major-mono-display/package.nix +++ b/pkgs/by-name/ma/major-mono-display/package.nix @@ -23,7 +23,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Monospaced geometric sans serif all-uppercase typeface"; longDescription = '' Majör is a monospaced geometric sans serif all-uppercase typeface @@ -36,8 +36,8 @@ stdenvNoCC.mkDerivation { choice for web typography, especially at large point-sizes. ''; homepage = "https://github.com/googlefonts/majormono"; - license = lib.licenses.ofl; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ mimvoid ]; + license = licenses.ofl; + platforms = platforms.all; + maintainers = with maintainers; [ mimvoid ]; }; } diff --git a/pkgs/by-name/ma/mako/package.nix b/pkgs/by-name/ma/mako/package.nix index 49480a20afcdc1..fb3b4f2de742ab 100644 --- a/pkgs/by-name/ma/mako/package.nix +++ b/pkgs/by-name/ma/mako/package.nix @@ -72,15 +72,15 @@ stdenv.mkDerivation (finalAttrs: { chmod 0644 $out/lib/systemd/user/mako.service ''; - meta = { + meta = with lib; { description = "Lightweight Wayland notification daemon"; homepage = "https://wayland.emersion.fr/mako/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ dywedir synthetica ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "mako"; }; }) diff --git a/pkgs/by-name/ma/man-pages-posix/package.nix b/pkgs/by-name/ma/man-pages-posix/package.nix index e2ed0b4be923bc..47ac07a631e09f 100644 --- a/pkgs/by-name/ma/man-pages-posix/package.nix +++ b/pkgs/by-name/ma/man-pages-posix/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { "MANDIR=${placeholder "out"}/share/man" ]; - meta = { + meta = with lib; { description = "POSIX man-pages (0p, 1p, 3p)"; homepage = "https://www.kernel.org/doc/man-pages/"; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.sternenseemann ]; + platforms = platforms.unix; + maintainers = [ maintainers.sternenseemann ]; }; } diff --git a/pkgs/by-name/ma/managarr/package.nix b/pkgs/by-name/ma/managarr/package.nix index 715ec001e6b1f9..64b1151c1daa33 100644 --- a/pkgs/by-name/ma/managarr/package.nix +++ b/pkgs/by-name/ma/managarr/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ perl ]; - meta = { + meta = with lib; { description = "TUI and CLI to manage your Servarrs"; homepage = "https://github.com/Dark-Alex-17/managarr"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.IncredibleLaser ]; + license = licenses.mit; + maintainers = [ maintainers.IncredibleLaser ]; mainProgram = "managarr"; }; } diff --git a/pkgs/by-name/ma/manaplus/package.nix b/pkgs/by-name/ma/manaplus/package.nix index f6390f2f0f924e..8bfad3db56cef8 100644 --- a/pkgs/by-name/ma/manaplus/package.nix +++ b/pkgs/by-name/ma/manaplus/package.nix @@ -68,12 +68,12 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = { + meta = with lib; { maintainers = [ ]; description = "Free OpenSource 2D MMORPG client"; homepage = "https://manaplus.org/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.all; - badPlatforms = [ lib.systems.inspect.patterns.isDarwin ]; + license = licenses.gpl2Plus; + platforms = platforms.all; + badPlatforms = [ systems.inspect.patterns.isDarwin ]; }; }) diff --git a/pkgs/by-name/ma/mangojuice/package.nix b/pkgs/by-name/ma/mangojuice/package.nix index 5643fb8effca9d..fe9775d7b0926f 100644 --- a/pkgs/by-name/ma/mangojuice/package.nix +++ b/pkgs/by-name/ma/mangojuice/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Convenient alternative to GOverlay for setting up MangoHud"; homepage = "https://github.com/radiolamp/mangojuice"; - license = with lib.licenses; [ gpl3Only ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = with licenses; [ gpl3Only ]; + platforms = platforms.linux; + maintainers = with maintainers; [ pluiedev getchoo ]; diff --git a/pkgs/by-name/ma/manifold/package.nix b/pkgs/by-name/ma/manifold/package.nix index 0b185bc3b04114..2b85b7839f55eb 100644 --- a/pkgs/by-name/ma/manifold/package.nix +++ b/pkgs/by-name/ma/manifold/package.nix @@ -41,14 +41,14 @@ stdenv.mkDerivation (finalAttrs: { test/manifold_test ''; - meta = { + meta = with lib; { description = "Geometry library for topological robustness"; homepage = "https://github.com/elalish/manifold"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ hzeller pca006132 ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ma/mapcache/package.nix b/pkgs/by-name/ma/mapcache/package.nix index 5d38ce3f0362f8..31011522dd411b 100644 --- a/pkgs/by-name/ma/mapcache/package.nix +++ b/pkgs/by-name/ma/mapcache/package.nix @@ -70,12 +70,12 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-std=c99"; - meta = { + meta = with lib; { description = "Server that implements tile caching to speed up access to WMS layers"; homepage = "https://mapserver.org/mapcache/"; changelog = "https://www.mapserver.org/development/changelog/mapcache/"; - license = lib.licenses.mit; - maintainers = lib.teams.geospatial.members; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = teams.geospatial.members; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ma/mapproxy/package.nix b/pkgs/by-name/ma/mapproxy/package.nix index 75a6ecac099cbd..469d1cb845eef2 100644 --- a/pkgs/by-name/ma/mapproxy/package.nix +++ b/pkgs/by-name/ma/mapproxy/package.nix @@ -42,10 +42,10 @@ buildPythonApplication rec { # https://github.com/NixOS/nixpkgs/pull/56480 doCheck = false; - meta = { + meta = with lib; { description = "Open source proxy for geospatial data"; homepage = "https://mapproxy.org/"; - license = lib.licenses.asl20; - maintainers = lib.teams.geospatial.members ++ (with lib.maintainers; [ rakesh4g ]); + license = licenses.asl20; + maintainers = teams.geospatial.members ++ (with maintainers; [ rakesh4g ]); }; } diff --git a/pkgs/by-name/ma/mapserver/package.nix b/pkgs/by-name/ma/mapserver/package.nix index 41218308567d4f..fbc19b39caafe6 100644 --- a/pkgs/by-name/ma/mapserver/package.nix +++ b/pkgs/by-name/ma/mapserver/package.nix @@ -82,12 +82,12 @@ stdenv.mkDerivation rec { (lib.cmakeBool "CMAKE_SKIP_BUILD_RPATH" true) ]; - meta = { + meta = with lib; { description = "Platform for publishing spatial data and interactive mapping applications to the web"; homepage = "https://mapserver.org/"; changelog = "https://mapserver.org/development/changelog/"; - license = lib.licenses.mit; - maintainers = lib.teams.geospatial.members; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = teams.geospatial.members; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ma/mar1d/package.nix b/pkgs/by-name/ma/mar1d/package.nix index 5494432ac91a8a..fd5de8dcaa165b 100644 --- a/pkgs/by-name/ma/mar1d/package.nix +++ b/pkgs/by-name/ma/mar1d/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = { + meta = with lib; { description = "First person Super Mario Bros"; mainProgram = "MAR1D"; longDescription = '' @@ -61,8 +61,8 @@ stdenv.mkDerivation (finalAttrs: { You must view the world as mario does, as a one dimensional line. ''; homepage = "https://mar1d.com"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ taeer ]; - platforms = lib.platforms.unix; + license = licenses.agpl3Only; + maintainers = with maintainers; [ taeer ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ma/markdown-link-check/package.nix b/pkgs/by-name/ma/markdown-link-check/package.nix index 36cecc5c1ef42e..b94c5e1b92e24f 100644 --- a/pkgs/by-name/ma/markdown-link-check/package.nix +++ b/pkgs/by-name/ma/markdown-link-check/package.nix @@ -22,11 +22,11 @@ buildNpmPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Checks all of the hyperlinks in a markdown text to determine if they are alive or dead"; mainProgram = "markdown-link-check"; homepage = "https://github.com/tcort/markdown-link-check"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ pyrox0 ]; + license = licenses.isc; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/by-name/ma/markdown-oxide/package.nix b/pkgs/by-name/ma/markdown-oxide/package.nix index 74888795eb482e..be757d1138119f 100644 --- a/pkgs/by-name/ma/markdown-oxide/package.nix +++ b/pkgs/by-name/ma/markdown-oxide/package.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { }; }; - meta = { + meta = with lib; { description = "Markdown LSP server inspired by Obsidian"; homepage = "https://github.com/Feel-ix-343/markdown-oxide"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ linsui jukremer ]; diff --git a/pkgs/by-name/ma/markdownlint-cli/package.nix b/pkgs/by-name/ma/markdownlint-cli/package.nix index 32eba5e1aa76b9..3c9384efbbcc06 100644 --- a/pkgs/by-name/ma/markdownlint-cli/package.nix +++ b/pkgs/by-name/ma/markdownlint-cli/package.nix @@ -19,11 +19,11 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = { + meta = with lib; { description = "Command line interface for MarkdownLint"; homepage = "https://github.com/igorshubovych/markdownlint-cli"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "markdownlint"; - maintainers = with lib.maintainers; [ ambroisie ]; + maintainers = with maintainers; [ ambroisie ]; }; } diff --git a/pkgs/by-name/ma/marktext/package.nix b/pkgs/by-name/ma/marktext/package.nix index 0ab0eb5ba935f2..00e6e4168b3188 100644 --- a/pkgs/by-name/ma/marktext/package.nix +++ b/pkgs/by-name/ma/marktext/package.nix @@ -160,11 +160,11 @@ stdenv.mkDerivation (finalAttrs: { branch = "develop"; }; - meta = { + meta = with lib; { description = "Simple and elegant markdown editor, available for Linux, macOS and Windows"; homepage = "https://www.marktext.cc"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ nh2 eduarrrd bot-wxt1221 @@ -173,7 +173,7 @@ stdenv.mkDerivation (finalAttrs: { "x86_64-darwin" "aarch64-darwin" ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "marktext"; }; }) diff --git a/pkgs/by-name/ma/marmite/package.nix b/pkgs/by-name/ma/marmite/package.nix index 64d16f9e5224b2..97eb46d78bba91 100644 --- a/pkgs/by-name/ma/marmite/package.nix +++ b/pkgs/by-name/ma/marmite/package.nix @@ -33,11 +33,11 @@ rustPlatform.buildRustPackage rec { RUSTONIG_SYSTEM_LIBONIG = true; }; - meta = { + meta = with lib; { description = "Static Site Generator for Blogs"; homepage = "https://github.com/rochacbruno/marmite"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ matthewcroughan ]; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ matthewcroughan ]; mainProgram = "marmite"; }; } diff --git a/pkgs/by-name/ma/mars-mips/package.nix b/pkgs/by-name/ma/mars-mips/package.nix index 3de083a98317af..3d048873066bce 100644 --- a/pkgs/by-name/ma/mars-mips/package.nix +++ b/pkgs/by-name/ma/mars-mips/package.nix @@ -67,13 +67,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "An IDE for programming in MIPS assembly language intended for educational-level use"; mainProgram = "Mars"; homepage = "https://courses.missouristate.edu/KenVollmar/MARS/"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ emilytrau ]; - platforms = lib.platforms.all; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.mit; + maintainers = with maintainers; [ emilytrau ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ma/marwaita-icons/package.nix b/pkgs/by-name/ma/marwaita-icons/package.nix index b8cd39c7150f61..2d62330ae54664 100644 --- a/pkgs/by-name/ma/marwaita-icons/package.nix +++ b/pkgs/by-name/ma/marwaita-icons/package.nix @@ -44,11 +44,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Icon pack for linux"; homepage = "https://github.com/darkomarko42/Marwaita-Icons"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.romildo ]; + license = licenses.gpl3Only; + platforms = platforms.linux; + maintainers = [ maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ma/marwaita-mint/package.nix b/pkgs/by-name/ma/marwaita-mint/package.nix index 6ef068e211860f..50536c20328ee2 100644 --- a/pkgs/by-name/ma/marwaita-mint/package.nix +++ b/pkgs/by-name/ma/marwaita-mint/package.nix @@ -39,11 +39,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { description = "Variation for marwaita GTK theme based on linux mint color scheme"; homepage = "https://www.pling.com/p/1674243"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ romildo ]; + license = licenses.gpl3Only; + platforms = platforms.unix; + maintainers = with maintainers; [ romildo ]; }; }) diff --git a/pkgs/by-name/ma/marwaita-x/package.nix b/pkgs/by-name/ma/marwaita-x/package.nix index c150cfba92b362..db3378d1eff0a1 100644 --- a/pkgs/by-name/ma/marwaita-x/package.nix +++ b/pkgs/by-name/ma/marwaita-x/package.nix @@ -39,11 +39,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "New version for Marwaita GTK theme"; homepage = "https://www.pling.com/p/2044790/"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ romildo ]; + license = licenses.gpl3Only; + platforms = platforms.unix; + maintainers = with maintainers; [ romildo ]; }; }) diff --git a/pkgs/by-name/ma/masklint/package.nix b/pkgs/by-name/ma/masklint/package.nix index 64f8bace2d8cfa..76efba2d04f486 100644 --- a/pkgs/by-name/ma/masklint/package.nix +++ b/pkgs/by-name/ma/masklint/package.nix @@ -23,12 +23,12 @@ rustPlatform.buildRustPackage { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Lint your mask targets"; homepage = "https://github.com/brumhard/masklint"; - license = lib.licenses.mit; - sourceProvenance = [ lib.sourceTypes.fromSource ]; - maintainers = [ lib.maintainers.pinage404 ]; + license = licenses.mit; + sourceProvenance = [ sourceTypes.fromSource ]; + maintainers = [ maintainers.pinage404 ]; mainProgram = "masklint"; }; } diff --git a/pkgs/by-name/ma/matchbox/package.nix b/pkgs/by-name/ma/matchbox/package.nix index bfeeeed9a6a7b1..d767e054dd8f73 100644 --- a/pkgs/by-name/ma/matchbox/package.nix +++ b/pkgs/by-name/ma/matchbox/package.nix @@ -31,10 +31,10 @@ stdenv.mkDerivation rec { }) ]; - meta = { + meta = with lib; { description = "X window manager for non-desktop embedded systems"; homepage = "https://www.yoctoproject.org/software-item/matchbox/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ma/materia-theme-transparent/package.nix b/pkgs/by-name/ma/materia-theme-transparent/package.nix index 9eccec1c343b2f..74850b23fc00e6 100644 --- a/pkgs/by-name/ma/materia-theme-transparent/package.nix +++ b/pkgs/by-name/ma/materia-theme-transparent/package.nix @@ -14,11 +14,11 @@ materia-theme.overrideAttrs (oldAttrs: rec { hash = "sha256-dHcwPTZFWO42wu1LbtGCMm2w/YHbjSUJnRKcaFllUbs="; }; - meta = { + meta = with lib; { description = "Transparent Material Design theme for GNOME/GTK based desktop environments"; homepage = "https://github.com/ckissane/materia-theme-transparent"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.corbinwunderlich ]; + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = [ maintainers.corbinwunderlich ]; }; }) diff --git a/pkgs/by-name/ma/material-cursors/package.nix b/pkgs/by-name/ma/material-cursors/package.nix index 76a4746e2e7fc2..2bbdbad4b31a51 100644 --- a/pkgs/by-name/ma/material-cursors/package.nix +++ b/pkgs/by-name/ma/material-cursors/package.nix @@ -33,11 +33,11 @@ stdenvNoCC.mkDerivation { installFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { description = "Material cursors for Linux"; homepage = "https://github.com/varlesh/material-cursors"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ RGBCube ]; + license = licenses.gpl3Only; + platforms = platforms.linux; + maintainers = with maintainers; [ RGBCube ]; }; } diff --git a/pkgs/by-name/ma/material-maker/package.nix b/pkgs/by-name/ma/material-maker/package.nix index 5861ca8f471c4b..76010cd901738d 100644 --- a/pkgs/by-name/ma/material-maker/package.nix +++ b/pkgs/by-name/ma/material-maker/package.nix @@ -85,12 +85,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Procedural materials authoring tool"; mainProgram = "material-maker"; homepage = "https://www.materialmaker.org"; - license = lib.licenses.mit; + license = licenses.mit; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ lelgenio ]; + maintainers = with maintainers; [ lelgenio ]; }; }) diff --git a/pkgs/by-name/ma/material-symbols/package.nix b/pkgs/by-name/ma/material-symbols/package.nix index 8af5fa9d0d2476..d1868e3c4fc25a 100644 --- a/pkgs/by-name/ma/material-symbols/package.nix +++ b/pkgs/by-name/ma/material-symbols/package.nix @@ -31,15 +31,15 @@ stdenvNoCC.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Material Symbols icons by Google"; homepage = "https://fonts.google.com/icons"; downloadPage = "https://github.com/google/material-design-icons"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ fufexan luftmensch-luftmensch ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ma/materialize/package.nix b/pkgs/by-name/ma/materialize/package.nix index 5e575efb2afd62..c110ee87e22804 100644 --- a/pkgs/by-name/ma/materialize/package.nix +++ b/pkgs/by-name/ma/materialize/package.nix @@ -177,12 +177,12 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { homepage = "https://materialize.com"; description = "Streaming SQL materialized view engine for real-time applications"; - license = lib.licenses.bsl11; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ petrosagg ]; + license = licenses.bsl11; + platforms = platforms.unix; + maintainers = with maintainers; [ petrosagg ]; mainProgram = "environmentd"; }; } diff --git a/pkgs/by-name/ma/mathemagix/package.nix b/pkgs/by-name/ma/mathemagix/package.nix index 76873464d62918..95226c3fe9a73f 100644 --- a/pkgs/by-name/ma/mathemagix/package.nix +++ b/pkgs/by-name/ma/mathemagix/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation (finalAttrs: { export HOME="$PWD" ''; - meta = { + meta = with lib; { description = "Free computer algebra and analysis system consisting of a high level language with a compiler and a series of mathematical libraries"; homepage = "http://www.mathemagix.org/"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ drupol ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ drupol ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ma/mathjax-node-cli/package.nix b/pkgs/by-name/ma/mathjax-node-cli/package.nix index b8c275e8c69039..6ba24b82309261 100644 --- a/pkgs/by-name/ma/mathjax-node-cli/package.nix +++ b/pkgs/by-name/ma/mathjax-node-cli/package.nix @@ -29,10 +29,10 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = { + meta = with lib; { description = "CLI tools for mathjax-node"; homepage = "https://github.com/mathjax/mathjax-node-cli"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ colinsane ]; + license = licenses.asl20; + maintainers = with maintainers; [ colinsane ]; }; } diff --git a/pkgs/by-name/ma/matio/package.nix b/pkgs/by-name/ma/matio/package.nix index f763608c3cb5dd..7197169c4f4b83 100644 --- a/pkgs/by-name/ma/matio/package.nix +++ b/pkgs/by-name/ma/matio/package.nix @@ -45,14 +45,14 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { changelog = "https://sourceforge.net/p/matio/news/"; description = "C library for reading and writing Matlab MAT files"; homepage = "http://matio.sourceforge.net/"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ jwillikers ]; + license = licenses.bsd2; + maintainers = with maintainers; [ jwillikers ]; mainProgram = "matdump"; - platforms = lib.platforms.all; + platforms = platforms.all; pkgConfigModules = [ "matio" ]; }; }) diff --git a/pkgs/by-name/ma/matlab-language-server/package.nix b/pkgs/by-name/ma/matlab-language-server/package.nix index c6576475057349..a0fd41e76b251a 100644 --- a/pkgs/by-name/ma/matlab-language-server/package.nix +++ b/pkgs/by-name/ma/matlab-language-server/package.nix @@ -30,11 +30,11 @@ buildNpmPackage { npmBuildScript = "package"; - meta = { + meta = with lib; { description = "Language Server for MATLAB® code"; homepage = "https://github.com/mathworks/MATLAB-language-server"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.mit; + maintainers = with maintainers; [ doronbehar ]; mainProgram = "matlab-language-server"; }; } diff --git a/pkgs/by-name/ma/matrix-gtk-theme/package.nix b/pkgs/by-name/ma/matrix-gtk-theme/package.nix index 00a3f052847e2a..a46d31fa2fece0 100644 --- a/pkgs/by-name/ma/matrix-gtk-theme/package.nix +++ b/pkgs/by-name/ma/matrix-gtk-theme/package.nix @@ -113,11 +113,11 @@ lib.checkListOfEnum "${pname}: colorVariants" colorVariantList colorVariants lib runHook postInstall ''; - meta = { + meta = with lib; { description = "GTK theme based on the Matrix colour palette"; homepage = "https://github.com/D3vil0p3r/Matrix-GTK-Theme"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ d3vil0p3r ]; - platforms = lib.platforms.unix; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ d3vil0p3r ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ma/matterbridge/package.nix b/pkgs/by-name/ma/matterbridge/package.nix index d847c02f3aa245..786fb9cdc4004a 100644 --- a/pkgs/by-name/ma/matterbridge/package.nix +++ b/pkgs/by-name/ma/matterbridge/package.nix @@ -19,11 +19,11 @@ buildGoModule { vendorHash = null; - meta = { + meta = with lib; { description = "Simple bridge between Mattermost, IRC, XMPP, Gitter, Slack, Discord, Telegram, Rocket.Chat, Hipchat(via xmpp), Matrix and Steam"; homepage = "https://github.com/42wim/matterbridge"; - license = with lib.licenses; [ asl20 ]; - maintainers = with lib.maintainers; [ ryantm ]; + license = with licenses; [ asl20 ]; + maintainers = with maintainers; [ ryantm ]; mainProgram = "matterbridge"; }; } diff --git a/pkgs/by-name/ma/mautrix-meta/package.nix b/pkgs/by-name/ma/mautrix-meta/package.nix index 1b5204f6d20bc7..7fa36b58b7ea8b 100644 --- a/pkgs/by-name/ma/mautrix-meta/package.nix +++ b/pkgs/by-name/ma/mautrix-meta/package.nix @@ -42,11 +42,11 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { homepage = "https://github.com/mautrix/meta"; description = "Matrix <-> Facebook and Matrix <-> Instagram hybrid puppeting/relaybot bridge"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ eyjhb ]; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ eyjhb ]; mainProgram = "mautrix-meta"; }; } diff --git a/pkgs/by-name/ma/mawk/package.nix b/pkgs/by-name/ma/mawk/package.nix index 482d6940c7c801..f9b8ed602143fd 100644 --- a/pkgs/by-name/ma/mawk/package.nix +++ b/pkgs/by-name/ma/mawk/package.nix @@ -32,13 +32,13 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { homepage = "https://invisible-island.net/mawk/mawk.html"; changelog = "https://invisible-island.net/mawk/CHANGES"; description = "Interpreter for the AWK Programming Language"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; mainProgram = "mawk"; - maintainers = with lib.maintainers; [ ehmry ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ ehmry ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ma/maxlib/package.nix b/pkgs/by-name/ma/maxlib/package.nix index 02e78af0575795..00050c5f5838c7 100644 --- a/pkgs/by-name/ma/maxlib/package.nix +++ b/pkgs/by-name/ma/maxlib/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { rm -rf $out/lib/ ''; - meta = { + meta = with lib; { description = "Library of non-tilde externals for puredata, by Miller Puckette"; homepage = "http://puredata.info/downloads/maxlib"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.magnetophon ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = [ maintainers.magnetophon ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/mb/mbuffer/package.nix b/pkgs/by-name/mb/mbuffer/package.nix index 25b5f00be30f42..5e3cae73bbc8d8 100644 --- a/pkgs/by-name/mb/mbuffer/package.nix +++ b/pkgs/by-name/mb/mbuffer/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { description = "Tool for buffering data streams with a large set of unique features"; homepage = "https://www.maier-komor.de/mbuffer.html"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ehmry ]; - platforms = lib.platforms.linux; # Maybe other non-darwin Unix + license = licenses.gpl3Only; + maintainers = with maintainers; [ ehmry ]; + platforms = platforms.linux; # Maybe other non-darwin Unix mainProgram = "mbuffer"; }; }) diff --git a/pkgs/by-name/mc/mcontrolcenter/package.nix b/pkgs/by-name/mc/mcontrolcenter/package.nix index 60a927bbf09692..91077feda6faf7 100644 --- a/pkgs/by-name/mc/mcontrolcenter/package.nix +++ b/pkgs/by-name/mc/mcontrolcenter/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/dmitry-s93/MControlCenter"; description = "Tool to change the settings of MSI laptops running Linux"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.Tommimon ]; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = [ maintainers.Tommimon ]; mainProgram = "mcontrolcenter"; }; }) diff --git a/pkgs/by-name/mc/mcpelauncher-client/package.nix b/pkgs/by-name/mc/mcpelauncher-client/package.nix index b9181d3d18ec2e..ced2f60469831b 100644 --- a/pkgs/by-name/mc/mcpelauncher-client/package.nix +++ b/pkgs/by-name/mc/mcpelauncher-client/package.nix @@ -105,21 +105,21 @@ clangStdenv.mkDerivation (finalAttrs: { (lib.cmakeBool "ENABLE_QT_ERROR_UI" withQtErrorWindow) ]; - meta = { + meta = with lib; { description = "Unofficial Minecraft Bedrock Edition launcher with CLI"; homepage = "https://minecraft-linux.github.io"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ aleksana morxemplum ]; mainProgram = "mcpelauncher-client"; - platforms = lib.platforms.unix; + platforms = platforms.unix; # Minecraft Bedrock Edition is raising minimal OpenGL version to OpenGL ES 3.1 # which is currently not supported on macOS. # https://github.com/minecraft-linux/mcpelauncher-manifest/issues/1042 # https://help.minecraft.net/hc/en-us/articles/30298767427597-Upcoming-OS-Sunset-Announcements-in-Minecraft # The program is also not tested on darwin. Any help from darwin users are welcomed. - badPlatforms = lib.platforms.darwin; + badPlatforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/mc/mcrcon/package.nix b/pkgs/by-name/mc/mcrcon/package.nix index 107674b96afda7..690c71baa7dd33 100644 --- a/pkgs/by-name/mc/mcrcon/package.nix +++ b/pkgs/by-name/mc/mcrcon/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { install -Dm 755 mcrcon $out/bin/mcrcon ''; - meta = { + meta = with lib; { homepage = "https://bukkit.org/threads/admin-rcon-mcrcon-remote-connection-client-for-minecraft-servers.70910/"; description = "Minecraft console client with Bukkit coloring support"; longDescription = '' @@ -31,8 +31,8 @@ stdenv.mkDerivation rec { It is well suited for remote administration and to be used as part of automated server maintenance scripts. It does not trigger "IO: Broken pipe" or "IO: Connection reset" spam bugs on the server side. ''; - maintainers = with lib.maintainers; [ dermetfan ]; - license = with lib.licenses; [ + maintainers = with maintainers; [ dermetfan ]; + license = with licenses; [ zlib libpng ]; diff --git a/pkgs/by-name/mc/mcrypt/package.nix b/pkgs/by-name/mc/mcrypt/package.nix index 711268aef320d0..bd840793392ee5 100644 --- a/pkgs/by-name/mc/mcrypt/package.nix +++ b/pkgs/by-name/mc/mcrypt/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = "-Wno-implicit-function-declaration"; }; - meta = { + meta = with lib; { description = "Replacement for old UNIX crypt(1)"; longDescription = '' mcrypt, and the accompanying libmcrypt, are intended to be replacements @@ -40,8 +40,8 @@ stdenv.mkDerivation rec { ever-wider range of algorithms and modes. ''; homepage = "https://mcrypt.sourceforge.net"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.qknight ]; + license = licenses.gpl3Only; + platforms = platforms.all; + maintainers = [ maintainers.qknight ]; }; } diff --git a/pkgs/by-name/mc/mcy/package.nix b/pkgs/by-name/mc/mcy/package.nix index e2d6031e9b4ec6..bc769ec41d9957 100644 --- a/pkgs/by-name/mc/mcy/package.nix +++ b/pkgs/by-name/mc/mcy/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation { cp -r scripts/. $out/share/mcy/scripts/. ''; - meta = { + meta = with lib; { description = "Mutation-based coverage testing for hardware designs, with Yosys"; homepage = "https://github.com/YosysHQ/mcy"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ thoughtpolice ]; - platforms = lib.platforms.all; + license = licenses.isc; + maintainers = with maintainers; [ thoughtpolice ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/md/mdbook-alerts/package.nix b/pkgs/by-name/md/mdbook-alerts/package.nix index 2428174893e206..fee8d29d9df3a6 100644 --- a/pkgs/by-name/md/mdbook-alerts/package.nix +++ b/pkgs/by-name/md/mdbook-alerts/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-twAIr1GVkvo4ZC7iwgKY4L1CklGVvGqd/eQf8toncDE="; - meta = { + meta = with lib; { description = "Preprocessor for mdbook to support the inclusion of Markdown alerts"; mainProgram = "mdbook-alerts"; homepage = "https://github.com/lambdalisue/rs-mdbook-alerts"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ brianmcgillion matthiasbeyer ]; diff --git a/pkgs/by-name/md/mdbook-variables/package.nix b/pkgs/by-name/md/mdbook-variables/package.nix index dc085dad90680c..d76eea33b3c781 100644 --- a/pkgs/by-name/md/mdbook-variables/package.nix +++ b/pkgs/by-name/md/mdbook-variables/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { ]; doInstallCheck = true; - meta = { + meta = with lib; { description = "mdBook preprocessor to replace values with env variables"; mainProgram = "mdbook-variables"; homepage = "https://gitlab.com/tglman/mdbook-variables"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ kraftnix ]; + license = licenses.mpl20; + maintainers = with maintainers; [ kraftnix ]; }; } diff --git a/pkgs/by-name/md/mdbook-yml-header/package.nix b/pkgs/by-name/md/mdbook-yml-header/package.nix index e1323e598b2cec..85752421b7e47a 100644 --- a/pkgs/by-name/md/mdbook-yml-header/package.nix +++ b/pkgs/by-name/md/mdbook-yml-header/package.nix @@ -21,12 +21,12 @@ rustPlatform.buildRustPackage { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "MdBook preprocessor for removing yml header within --- (front-matter)"; homepage = "https://github.com/dvogt23/mdbook-yml-header"; - license = lib.licenses.mpl20; - sourceProvenance = [ lib.sourceTypes.fromSource ]; + license = licenses.mpl20; + sourceProvenance = [ sourceTypes.fromSource ]; mainProgram = "mdbook-yml-header"; - maintainers = [ lib.maintainers.pinage404 ]; + maintainers = [ maintainers.pinage404 ]; }; } diff --git a/pkgs/by-name/md/mdctags/package.nix b/pkgs/by-name/md/mdctags/package.nix index a3a7705280edf8..a8ed6cba97fcd2 100644 --- a/pkgs/by-name/md/mdctags/package.nix +++ b/pkgs/by-name/md/mdctags/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-L0x8VKBqTOB6hUWumz91Q5Krofx7DLxLDQnHvi/Lq80="; - meta = { + meta = with lib; { description = "tags for markdown file"; homepage = "https://github.com/wsdjeg/mdctags.rs"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ euxane ]; + license = licenses.mit; + maintainers = with maintainers; [ euxane ]; mainProgram = "mdctags"; }; } diff --git a/pkgs/by-name/md/mdk-sdk/package.nix b/pkgs/by-name/md/mdk-sdk/package.nix index 84ea4d8283cc5c..84a70465fd830e 100644 --- a/pkgs/by-name/md/mdk-sdk/package.nix +++ b/pkgs/by-name/md/mdk-sdk/package.nix @@ -79,11 +79,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "multimedia development kit"; homepage = "https://github.com/wang-bin/mdk-sdk"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ orivej ]; + license = licenses.unfree; + maintainers = with maintainers; [ orivej ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/md/mdk/package.nix b/pkgs/by-name/md/mdk/package.nix index 9f2acbcdf2667b..0f89ebe65314b9 100644 --- a/pkgs/by-name/md/mdk/package.nix +++ b/pkgs/by-name/md/mdk/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { cp -v ./misc/*.el $out/share/emacs/site-lisp ''; - meta = { + meta = with lib; { description = "GNU MIX Development Kit (MDK)"; homepage = "https://www.gnu.org/software/mdk/"; - license = lib.licenses.gpl3; - platforms = lib.platforms.all; + license = licenses.gpl3; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/me/mediagoblin/package.nix b/pkgs/by-name/me/mediagoblin/package.nix index bf57c69162829d..e65e46c3142d09 100644 --- a/pkgs/by-name/me/mediagoblin/package.nix +++ b/pkgs/by-name/me/mediagoblin/package.nix @@ -147,10 +147,10 @@ python.pkgs.buildPythonApplication rec { inherit python; }; - meta = { + meta = with lib; { description = "Free software media publishing platform that anyone can run"; homepage = "https://mediagoblin.org/"; - license = lib.licenses.agpl3Plus; - maintainers = lib.teams.c3d2.members; + license = licenses.agpl3Plus; + maintainers = teams.c3d2.members; }; } diff --git a/pkgs/by-name/me/mediainfo-gui/package.nix b/pkgs/by-name/me/mediainfo-gui/package.nix index cb4f5a8b010069..4dd5c597d1dc7f 100644 --- a/pkgs/by-name/me/mediainfo-gui/package.nix +++ b/pkgs/by-name/me/mediainfo-gui/package.nix @@ -43,16 +43,16 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Supplies technical and tag information about a video or audio file (GUI version)"; 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 = lib.licenses.bsd2; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ devhell ]; + license = licenses.bsd2; + platforms = platforms.unix; + maintainers = with maintainers; [ devhell ]; mainProgram = "mediainfo-gui"; }; }) diff --git a/pkgs/by-name/me/mednafen-server/package.nix b/pkgs/by-name/me/mednafen-server/package.nix index 59247cf46c5921..bf618cc6d70b95 100644 --- a/pkgs/by-name/me/mednafen-server/package.nix +++ b/pkgs/by-name/me/mednafen-server/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation (finalAttrs: { install -m 644 -Dt $out/share/mednafen-server standard.conf ''; - meta = { + meta = with lib; { description = "Netplay server for Mednafen"; mainProgram = "mednafen-server"; homepage = "https://mednafen.github.io/"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/me/mednaffe/package.nix b/pkgs/by-name/me/mednaffe/package.nix index b78646244e749d..7de40a3c0e1c9a 100644 --- a/pkgs/by-name/me/mednaffe/package.nix +++ b/pkgs/by-name/me/mednaffe/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation (finalAttrs: { ) ''; - meta = { + meta = with lib; { description = "GTK-based frontend for mednafen emulator"; mainProgram = "mednaffe"; homepage = "https://github.com/AmatCoder/mednaffe"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/me/megacli/package.nix b/pkgs/by-name/me/megacli/package.nix index f140f2ccf8d469..f427f558673c48 100644 --- a/pkgs/by-name/me/megacli/package.nix +++ b/pkgs/by-name/me/megacli/package.nix @@ -47,10 +47,10 @@ stdenv.mkDerivation rec { eval fixupPhase ''; - meta = { + meta = with lib; { description = "CLI program for LSI MegaRAID cards, which also works with some Dell PERC RAID cards"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; platforms = [ "x86_64-linux" ]; mainProgram = "MegaCli64"; }; diff --git a/pkgs/by-name/me/megacmd/package.nix b/pkgs/by-name/me/megacmd/package.nix index ea68f8fa84cee9..a877028a3ae94d 100644 --- a/pkgs/by-name/me/megacmd/package.nix +++ b/pkgs/by-name/me/megacmd/package.nix @@ -100,15 +100,15 @@ stdenv.mkDerivation { ./fix-darwin.patch # fix: libtool tag not found; MacFileSystemAccess not declared; server cannot init ]; - meta = { + meta = with lib; { description = "MEGA Command Line Interactive and Scriptable Application"; homepage = "https://mega.io/cmd"; - license = with lib.licenses; [ + license = with licenses; [ bsd2 gpl3Only ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; - maintainers = with lib.maintainers; [ + platforms = platforms.linux ++ platforms.darwin; + maintainers = with maintainers; [ lunik1 ulysseszhan ]; diff --git a/pkgs/by-name/me/meh/package.nix b/pkgs/by-name/me/meh/package.nix index 9c5dd2792fc0c5..945140ad1bc3b3 100644 --- a/pkgs/by-name/me/meh/package.nix +++ b/pkgs/by-name/me/meh/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation { giflib ]; - meta = { + meta = with lib; { description = "Minimal image viewer using raw XLib"; homepage = "https://www.johnhawthorn.com/meh/"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; + license = licenses.mit; + platforms = platforms.linux; mainProgram = "meh"; }; } diff --git a/pkgs/by-name/me/mekuteriya/package.nix b/pkgs/by-name/me/mekuteriya/package.nix index 43864d2560c51f..229e7f59d547f9 100644 --- a/pkgs/by-name/me/mekuteriya/package.nix +++ b/pkgs/by-name/me/mekuteriya/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-WkrlQbNTP3lNEtlnAMrTd9lBo2Q4dECqtV29kmV8F7A="; - meta = { + meta = with lib; { description = "Ethiopian Calendar CLI"; homepage = "https://github.com/frectonz/mek-ut-er-ya"; mainProgram = "mekuteriya"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.frectonz ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = [ maintainers.frectonz ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/me/melos/package.nix b/pkgs/by-name/me/melos/package.nix index 4d9654af977c69..079d3fdbd6947e 100644 --- a/pkgs/by-name/me/melos/package.nix +++ b/pkgs/by-name/me/melos/package.nix @@ -34,11 +34,11 @@ buildDartApplication { cp -r templates $out/ ''; - meta = { + meta = with lib; { homepage = "https://github.com/invertase/melos"; description = "A tool for managing Dart projects with multiple packages. With IntelliJ and Vscode IDE support. Supports automated versioning, changelogs & publishing via Conventional Commits. "; mainProgram = "melos"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.eymeric ]; + license = licenses.asl20; + maintainers = [ maintainers.eymeric ]; }; } diff --git a/pkgs/by-name/me/memo/package.nix b/pkgs/by-name/me/memo/package.nix index 5973477ffa2d85..109fae31e0fac3 100644 --- a/pkgs/by-name/me/memo/package.nix +++ b/pkgs/by-name/me/memo/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { mv completion/zsh/_memo $out/share/zsh/site-functions/_memo ''; - meta = { + meta = with lib; { description = "Simple tool written in bash to memorize stuff"; longDescription = '' A simple tool written in bash to memorize stuff. @@ -53,9 +53,9 @@ stdenv.mkDerivation rec { ''; homepage = "http://palovandalo.com/memo/"; downloadPage = "https://github.com/mrVanDalo/memo/releases"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.mrVanDalo ]; - platforms = lib.platforms.all; + license = licenses.gpl3; + maintainers = [ maintainers.mrVanDalo ]; + platforms = platforms.all; mainProgram = "memo"; }; } diff --git a/pkgs/by-name/me/memtest86plus/package.nix b/pkgs/by-name/me/memtest86plus/package.nix index 204583493b7a1b..0e848a52964968 100644 --- a/pkgs/by-name/me/memtest86plus/package.nix +++ b/pkgs/by-name/me/memtest86plus/package.nix @@ -30,14 +30,14 @@ stdenv.mkDerivation (finalAttrs: { install -Dm0444 -t $out/ memtest.bin memtest.efi ''; - meta = { + meta = with lib; { homepage = "https://www.memtest.org/"; description = "Tool to detect memory errors"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; platforms = [ "x86_64-linux" "i686-linux" ]; - maintainers = [ lib.maintainers.LunNova ]; + maintainers = [ maintainers.LunNova ]; }; }) diff --git a/pkgs/by-name/me/memtier-benchmark/package.nix b/pkgs/by-name/me/memtier-benchmark/package.nix index 285aa85dc32d6d..cd93077438e200 100644 --- a/pkgs/by-name/me/memtier-benchmark/package.nix +++ b/pkgs/by-name/me/memtier-benchmark/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { openssl ]; - meta = { + meta = with lib; { description = "Redis and Memcached traffic generation and benchmarking tool"; homepage = "https://github.com/redislabs/memtier_benchmark"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ thoughtpolice ]; + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = with maintainers; [ thoughtpolice ]; mainProgram = "memtier_benchmark"; }; } diff --git a/pkgs/by-name/me/meow/package.nix b/pkgs/by-name/me/meow/package.nix index d5573f60c97229..d38c34eb4c4419 100644 --- a/pkgs/by-name/me/meow/package.nix +++ b/pkgs/by-name/me/meow/package.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { mv $out/bin/meow-cli $out/bin/meow ''; - meta = { + meta = with lib; { description = "Print ASCII cats to your terminal"; homepage = "https://github.com/PixelSergey/meow"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "meow"; - maintainers = with lib.maintainers; [ pixelsergey ]; + maintainers = with maintainers; [ pixelsergey ]; }; } diff --git a/pkgs/by-name/me/mepo/package.nix b/pkgs/by-name/me/mepo/package.nix index 06f6b22d4ea415..9352df566536dc 100644 --- a/pkgs/by-name/me/mepo/package.nix +++ b/pkgs/by-name/me/mepo/package.nix @@ -79,7 +79,7 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = { + meta = with lib; { homepage = "https://mepo.milesalan.com"; description = "Fast, simple, and hackable OSM map viewer"; longDescription = '' @@ -94,12 +94,12 @@ stdenv.mkDerivation (finalAttrs: { provide things like custom bounding-box search scripts, bookmarks, and more. ''; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ sikmir McSinyx laalsaas ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/me/merge-ut-dictionaries/package.nix b/pkgs/by-name/me/merge-ut-dictionaries/package.nix index 130a89016a488a..cd60ab2e7d44ef 100644 --- a/pkgs/by-name/me/merge-ut-dictionaries/package.nix +++ b/pkgs/by-name/me/merge-ut-dictionaries/package.nix @@ -77,12 +77,12 @@ stdenvNoCC.mkDerivation { ]; }; - meta = { + meta = with lib; { description = "Mozc UT dictionaries are additional dictionaries for Mozc."; homepage = "https://github.com/utuhiro78/merge-ut-dictionaries"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ pineapplehunter ]; - platforms = lib.platforms.all; + license = licenses.asl20; + maintainers = with maintainers; [ pineapplehunter ]; + platforms = platforms.all; # this does not need to be separately built # it only provides a dictionary hydraPlatforms = [ ]; diff --git a/pkgs/by-name/me/merkaartor/package.nix b/pkgs/by-name/me/merkaartor/package.nix index 8d3abd715a4344..f80e0f7c36155e 100644 --- a/pkgs/by-name/me/merkaartor/package.nix +++ b/pkgs/by-name/me/merkaartor/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { makeWrapper $out/{Applications/merkaartor.app/Contents/MacOS,bin}/merkaartor ''; - meta = { + meta = with lib; { description = "OpenStreetMap editor"; homepage = "http://merkaartor.be/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "merkaartor"; - maintainers = with lib.maintainers; [ sikmir ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ sikmir ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/me/mermaid-cli/package.nix b/pkgs/by-name/me/mermaid-cli/package.nix index 1678bbd58e8538..68afc8113b1cc9 100644 --- a/pkgs/by-name/me/mermaid-cli/package.nix +++ b/pkgs/by-name/me/mermaid-cli/package.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Generation of diagrams from text in a similar manner as markdown"; homepage = "https://github.com/mermaid-js/mermaid-cli"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "mmdc"; - maintainers = with lib.maintainers; [ ysndr ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ ysndr ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/me/mesen/package.nix b/pkgs/by-name/me/mesen/package.nix index 43957a1c7004a8..3f920945e2d7b2 100644 --- a/pkgs/by-name/me/mesen/package.nix +++ b/pkgs/by-name/me/mesen/package.nix @@ -71,12 +71,12 @@ buildDotnetModule rec { ''; }; - meta = { + meta = with lib; { badPlatforms = [ "aarch64-linux" ]; # not sure what the issue is description = "Multi-system emulator that supports NES, SNES, Game Boy (Color) and PC Engine games"; homepage = "https://www.mesen.ca"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "Mesen"; - maintainers = with lib.maintainers; [ tomasajt ]; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/by-name/me/meslo-lg/package.nix b/pkgs/by-name/me/meslo-lg/package.nix index 24864ed71c8620..4bf25af56833f3 100644 --- a/pkgs/by-name/me/meslo-lg/package.nix +++ b/pkgs/by-name/me/meslo-lg/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { outputHashMode = "recursive"; outputHash = "1cppf8sk6r5wjnnas9n6iyag6pj9jvaic66lvwpqg3742s5akx6x"; - meta = { + meta = with lib; { description = "Customized version of Apple’s Menlo-Regular font"; homepage = "https://github.com/andreberg/Meslo-Font/"; - license = lib.licenses.asl20; + license = licenses.asl20; maintainers = [ ]; - platforms = with lib.platforms; all; + platforms = with platforms; all; }; } diff --git a/pkgs/by-name/me/messer-slim/package.nix b/pkgs/by-name/me/messer-slim/package.nix index 6c90806992edf3..db5fbe700b9bad 100644 --- a/pkgs/by-name/me/messer-slim/package.nix +++ b/pkgs/by-name/me/messer-slim/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { "-DCMAKE_RANLIB=${gcc-unwrapped}/bin/gcc-ranlib" ]; - meta = { + meta = with lib; { description = "Evolutionary simulation framework"; homepage = "https://messerlab.org/slim/"; - license = with lib.licenses; [ gpl3 ]; - maintainers = with lib.maintainers; [ bzizou ]; - platforms = lib.platforms.all; + license = with licenses; [ gpl3 ]; + maintainers = with maintainers; [ bzizou ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/me/metacubexd/package.nix b/pkgs/by-name/me/metacubexd/package.nix index 37ffb48eb4c9b5..35f72240c8f122 100644 --- a/pkgs/by-name/me/metacubexd/package.nix +++ b/pkgs/by-name/me/metacubexd/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Clash.Meta Dashboard, The Official One, XD"; homepage = "https://github.com/MetaCubeX/metacubexd"; - license = lib.licenses.mit; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ Guanran928 ]; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ Guanran928 ]; }; }) diff --git a/pkgs/by-name/me/metadata/package.nix b/pkgs/by-name/me/metadata/package.nix index 97130d30758bae..2a2624b1eae5c4 100644 --- a/pkgs/by-name/me/metadata/package.nix +++ b/pkgs/by-name/me/metadata/package.nix @@ -51,10 +51,10 @@ rustPlatform.buildRustPackage rec { env.FFMPEG_DIR = ffmpeg.dev; - meta = { + meta = with lib; { description = "Media metadata parser and formatter designed for human consumption, powered by FFmpeg"; - maintainers = with lib.maintainers; [ clevor ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ clevor ]; + license = licenses.mit; homepage = "https://github.com/zmwangx/metadata"; mainProgram = "metadata"; }; diff --git a/pkgs/by-name/me/meteor-git/package.nix b/pkgs/by-name/me/meteor-git/package.nix index 94371fa8b855e0..1ed377dc811c3a 100644 --- a/pkgs/by-name/me/meteor-git/package.nix +++ b/pkgs/by-name/me/meteor-git/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-jKd/eJwp5SZvTrP3RN7xT7ibAB0PQondGR3RT+HQXIo="; - meta = { + meta = with lib; { description = "CLI tool for writing conventional commits"; mainProgram = "meteor"; homepage = "https://github.com/stefanlogue/meteor"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nebunebu ]; + license = licenses.mit; + maintainers = with maintainers; [ nebunebu ]; }; } diff --git a/pkgs/by-name/me/methane/package.nix b/pkgs/by-name/me/methane/package.nix index c326b69df65ca4..c7be057144d8b5 100644 --- a/pkgs/by-name/me/methane/package.nix +++ b/pkgs/by-name/me/methane/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://github.com/rombust/methane"; description = "Clone of Taito's Bubble Bobble arcade game released for Amiga in 1993 by Apache Software"; mainProgram = "methane"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ nixinator ]; + license = licenses.gpl2Only; + maintainers = with maintainers; [ nixinator ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/by-name/me/metis/package.nix b/pkgs/by-name/me/metis/package.nix index bf8a631b51777c..d299d7fad9ee5f 100644 --- a/pkgs/by-name/me/metis/package.nix +++ b/pkgs/by-name/me/metis/package.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation rec { cmake ]; - meta = { + meta = with lib; { description = "Serial graph partitioning and fill-reducing matrix ordering"; homepage = "http://glaros.dtc.umn.edu/gkhome/metis/metis/overview"; - license = lib.licenses.asl20; - platforms = lib.platforms.all; + license = licenses.asl20; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/mf/mfcj470dw-cupswrapper/package.nix b/pkgs/by-name/mf/mfcj470dw-cupswrapper/package.nix index 393967c59acdcf..2d5b0df4375af4 100644 --- a/pkgs/by-name/mf/mfcj470dw-cupswrapper/package.nix +++ b/pkgs/by-name/mf/mfcj470dw-cupswrapper/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "http://www.brother.com/"; description = "Brother MFC-J470DW CUPS wrapper driver"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; downloadPage = "http://support.brother.com/g/b/downloadlist.aspx?c=us&lang=en&prod=mfcj470dw_us_eu_as&os=128"; - maintainers = [ lib.maintainers.yochai ]; + maintainers = [ maintainers.yochai ]; }; } diff --git a/pkgs/by-name/mf/mfcl2700dncupswrapper/package.nix b/pkgs/by-name/mf/mfcl2700dncupswrapper/package.nix index 1de0781cd6d0da..cf569c273ac5e0 100644 --- a/pkgs/by-name/mf/mfcl2700dncupswrapper/package.nix +++ b/pkgs/by-name/mf/mfcl2700dncupswrapper/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { ln $dir/cupswrapper/brother-MFCL2700DN-cups-en.ppd $out/share/cups/model ''; - meta = { + meta = with lib; { description = "Brother MFC-L2700DN CUPS wrapper driver"; homepage = "http://www.brother.com/"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.tv ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = [ maintainers.tv ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/mf/mfcl2720dwcupswrapper/package.nix b/pkgs/by-name/mf/mfcl2720dwcupswrapper/package.nix index 9538e5a4f367e3..191ba27afed206 100644 --- a/pkgs/by-name/mf/mfcl2720dwcupswrapper/package.nix +++ b/pkgs/by-name/mf/mfcl2720dwcupswrapper/package.nix @@ -57,14 +57,14 @@ stdenv.mkDerivation rec { ln $dir/cupswrapper/brother-MFCL2720DW-cups-en.ppd $out/share/cups/model ''; - meta = { + meta = with lib; { description = "Brother MFC-L2720DW CUPS wrapper driver"; homepage = "http://www.brother.com/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; platforms = [ "x86_64-linux" "i686-linux" ]; - maintainers = [ lib.maintainers.xeji ]; + maintainers = [ maintainers.xeji ]; }; } diff --git a/pkgs/by-name/mf/mfcl2720dwlpr/package.nix b/pkgs/by-name/mf/mfcl2720dwlpr/package.nix index 3c69ca44469da7..74e9cd150fb88b 100644 --- a/pkgs/by-name/mf/mfcl2720dwlpr/package.nix +++ b/pkgs/by-name/mf/mfcl2720dwlpr/package.nix @@ -57,15 +57,15 @@ stdenv.mkDerivation rec { patchelf --set-interpreter "$interpreter" $dir/lpd/rawtobr3 ''; - meta = { + meta = with lib; { description = "Brother MFC-L2720DW lpr driver"; homepage = "http://www.brother.com/"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; platforms = [ "x86_64-linux" "i686-linux" ]; - maintainers = [ lib.maintainers.xeji ]; + maintainers = [ maintainers.xeji ]; }; } diff --git a/pkgs/by-name/mf/mfcl2740dwlpr/package.nix b/pkgs/by-name/mf/mfcl2740dwlpr/package.nix index 53ce0da9669f6b..3dca4f4e06a388 100644 --- a/pkgs/by-name/mf/mfcl2740dwlpr/package.nix +++ b/pkgs/by-name/mf/mfcl2740dwlpr/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation rec { patchelf --set-interpreter "$interpreter" $dir/lpd/rawtobr3 ''; - meta = { + meta = with lib; { description = "Brother MFC-L2740DW lpr driver"; homepage = "http://www.brother.com/"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/mf/mfcl8690cdwcupswrapper/package.nix b/pkgs/by-name/mf/mfcl8690cdwcupswrapper/package.nix index f18bec338f8af6..927ca30858b81e 100644 --- a/pkgs/by-name/mf/mfcl8690cdwcupswrapper/package.nix +++ b/pkgs/by-name/mf/mfcl8690cdwcupswrapper/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { ln $dir/cupswrapper/brother_mfcl8690cdw_printer_en.ppd $out/share/cups/model ''; - meta = { + meta = with lib; { description = "Brother MFC-L8690CDW CUPS wrapper driver"; homepage = "http://www.brother.com/"; - license = lib.licenses.unfree; - platforms = lib.platforms.linux; + license = licenses.unfree; + platforms = platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/mf/mfcl8690cdwlpr/package.nix b/pkgs/by-name/mf/mfcl8690cdwlpr/package.nix index bcdb8a2ce67bba..7010b779381517 100644 --- a/pkgs/by-name/mf/mfcl8690cdwlpr/package.nix +++ b/pkgs/by-name/mf/mfcl8690cdwlpr/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { patchelf --set-interpreter "$interpreter" $dir/lpd/brmfcl8690cdwfilter ''; - meta = { + meta = with lib; { description = "Brother MFC-L8690CDW LPR printer driver"; homepage = "http://www.brother.com/"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; maintainers = [ ]; platforms = [ "x86_64-linux" diff --git a/pkgs/by-name/mh/mhddfs/package.nix b/pkgs/by-name/mh/mhddfs/package.nix index b970ef80a714a1..f652670f52e25f 100644 --- a/pkgs/by-name/mh/mhddfs/package.nix +++ b/pkgs/by-name/mh/mhddfs/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { cp mhddfs $out/bin/ ''; - meta = { + meta = with lib; { homepage = "https://mhddfs.uvw.ru/"; description = "Combines a several mount points into the single one"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.makefu ]; + license = licenses.gpl3; + maintainers = [ maintainers.makefu ]; mainProgram = "mhddfs"; }; } diff --git a/pkgs/by-name/mi/microdnf/package.nix b/pkgs/by-name/mi/microdnf/package.nix index 07b0c4008ee254..debc3896ebec4d 100644 --- a/pkgs/by-name/mi/microdnf/package.nix +++ b/pkgs/by-name/mi/microdnf/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { pcre2.dev ]; - meta = { + meta = with lib; { description = "Lightweight implementation of dnf in C"; homepage = "https://github.com/rpm-software-management/microdnf"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ rb2k ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ rb2k ]; + platforms = platforms.linux ++ platforms.darwin; mainProgram = "microdnf"; }; } diff --git a/pkgs/by-name/mi/microfetch/package.nix b/pkgs/by-name/mi/microfetch/package.nix index 710eb41325fb6f..16784bf58c077c 100644 --- a/pkgs/by-name/mi/microfetch/package.nix +++ b/pkgs/by-name/mi/microfetch/package.nix @@ -20,15 +20,15 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Microscopic fetch script in Rust, for NixOS systems"; homepage = "https://github.com/NotAShelf/microfetch"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + maintainers = with maintainers; [ nydragon NotAShelf ]; mainProgram = "microfetch"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/mi/micromdm/package.nix b/pkgs/by-name/mi/micromdm/package.nix index 4d75c10c2ef3cb..fa19cf17991ae9 100644 --- a/pkgs/by-name/mi/micromdm/package.nix +++ b/pkgs/by-name/mi/micromdm/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-XYrv/cjma2ZYHs2x6hSXxifuS10Xa/zUx4s5O/OMLf4="; - meta = { + meta = with lib; { description = "Mobile Device Management server for Apple Devices, focused on giving you all the power through an API"; homepage = "https://github.com/micromdm/micromdm"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "micromdm"; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ neverbehave ]; + platforms = platforms.unix; + maintainers = with maintainers; [ neverbehave ]; }; } diff --git a/pkgs/by-name/mi/microsoft-edge/package.nix b/pkgs/by-name/mi/microsoft-edge/package.nix index 3fcea059026f84..4573b2a6b59392 100644 --- a/pkgs/by-name/mi/microsoft-edge/package.nix +++ b/pkgs/by-name/mi/microsoft-edge/package.nix @@ -270,18 +270,18 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = ./update.py; - meta = { + meta = with lib; { changelog = "https://learn.microsoft.com/en-us/deployedge/microsoft-edge-relnote-stable-channel"; description = "Web browser from Microsoft"; homepage = "https://www.microsoft.com/en-us/edge"; - license = lib.licenses.unfree; + license = licenses.unfree; mainProgram = "microsoft-edge"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ zanculmarktum kuwii rhysmdnz ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/mi/mieru/package.nix b/pkgs/by-name/mi/mieru/package.nix index a8babccde6d69b..07e7f5fcf0ceb5 100644 --- a/pkgs/by-name/mi/mieru/package.nix +++ b/pkgs/by-name/mi/mieru/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-w" ]; - meta = { + meta = with lib; { description = "Socks5 / HTTP / HTTPS proxy to bypass censorship"; homepage = "https://github.com/enfein/mieru"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ oluceps ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ oluceps ]; mainProgram = "mieru"; }; } diff --git a/pkgs/by-name/mi/mighty-mike/package.nix b/pkgs/by-name/mi/mighty-mike/package.nix index 5abe538e8424e5..90dd3da05aeccc 100644 --- a/pkgs/by-name/mi/mighty-mike/package.nix +++ b/pkgs/by-name/mi/mighty-mike/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Port of Mighty Mike, a 1995 Macintosh game by Pangea Software, for modern operating systems"; longDescription = '' This is Pangea Software's Mighty Mike updated to run on modern systems. @@ -55,9 +55,9 @@ stdenv.mkDerivation { It was initially published in 1995 under the name Power Pete. ''; homepage = "https://jorio.itch.io/mightymike"; - license = lib.licenses.cc-by-nc-sa-40; + license = licenses.cc-by-nc-sa-40; mainProgram = "MightyMike"; - maintainers = with lib.maintainers; [ nateeag ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ nateeag ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/mi/mihomo-party/package.nix b/pkgs/by-name/mi/mihomo-party/package.nix index 8c46298a40059b..530b06835b5cac 100644 --- a/pkgs/by-name/mi/mihomo-party/package.nix +++ b/pkgs/by-name/mi/mihomo-party/package.nix @@ -82,7 +82,7 @@ stdenv.mkDerivation { }" ''; - meta = { + meta = with lib; { description = "Another Mihomo GUI"; homepage = "https://github.com/mihomo-party-org/mihomo-party"; mainProgram = "mihomo-party"; @@ -90,8 +90,8 @@ stdenv.mkDerivation { "aarch64-linux" "x86_64-linux" ]; - license = lib.licenses.gpl3Plus; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ aucub ]; + license = licenses.gpl3Plus; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ aucub ]; }; } diff --git a/pkgs/by-name/mi/mikmod/package.nix b/pkgs/by-name/mi/mikmod/package.nix index 02cfba37f0ec69..2e76f6032b30df 100644 --- a/pkgs/by-name/mi/mikmod/package.nix +++ b/pkgs/by-name/mi/mikmod/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { ncurses ]; - meta = { + meta = with lib; { description = "Tracker music player for the terminal"; homepage = "http://mikmod.shlomifish.org/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; mainProgram = "mikmod"; }; } diff --git a/pkgs/by-name/mi/milu/package.nix b/pkgs/by-name/mi/milu/package.nix index bed794be48bc75..0c3140872d1c41 100644 --- a/pkgs/by-name/mi/milu/package.nix +++ b/pkgs/by-name/mi/milu/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation { llvmPackages.libclang ]; - meta = { + meta = with lib; { description = "Higher Order Mutation Testing Tool for C and C++ programs"; homepage = "https://github.com/yuejia/Milu"; - license = lib.licenses.bsd2; - platforms = lib.platforms.linux; + license = licenses.bsd2; + platforms = platforms.linux; maintainers = [ ]; mainProgram = "milu"; }; diff --git a/pkgs/by-name/mi/mim-solvers/package.nix b/pkgs/by-name/mi/mim-solvers/package.nix index 7bc0723a3044b1..ed158346f92c4f 100644 --- a/pkgs/by-name/mi/mim-solvers/package.nix +++ b/pkgs/by-name/mi/mim-solvers/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; pythonImportsCheck = [ "mim_solvers" ]; - meta = { + meta = with lib; { description = "Numerical solvers used in the Machines in Motion Laboratory"; homepage = "https://github.com/machines-in-motion/mim_solvers"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ nim65s ]; - platforms = lib.platforms.all; + license = licenses.bsd3; + maintainers = with maintainers; [ nim65s ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/mi/mimic/package.nix b/pkgs/by-name/mi/mimic/package.nix index 70a9b0e33a83ec..70cb5d433bea9e 100644 --- a/pkgs/by-name/mi/mimic/package.nix +++ b/pkgs/by-name/mi/mimic/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation rec { --run "export ALSA_PLUGIN_DIR=${alsa-plugins}/lib/alsa-lib" ''; - meta = { + meta = with lib; { description = "Mycroft's TTS engine, based on CMU's Flite (Festival Lite)"; homepage = "https://mimic.mycroft.ai/"; - license = lib.licenses.free; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.fx-chun ]; + license = licenses.free; + platforms = platforms.linux; + maintainers = [ maintainers.fx-chun ]; }; } diff --git a/pkgs/by-name/mi/mimikatz/package.nix b/pkgs/by-name/mi/mimikatz/package.nix index 83dcbb55207023..572d2b8812a9b9 100644 --- a/pkgs/by-name/mi/mimikatz/package.nix +++ b/pkgs/by-name/mi/mimikatz/package.nix @@ -21,12 +21,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/gentilkiwi/mimikatz"; description = "Little tool to play with Windows security"; - license = with lib.licenses; [ cc-by-40 ]; - maintainers = with lib.maintainers; [ d3vil0p3r ]; - platforms = lib.platforms.all; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = with licenses; [ cc-by-40 ]; + maintainers = with maintainers; [ d3vil0p3r ]; + platforms = platforms.all; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/mi/mingtest/package.nix b/pkgs/by-name/mi/mingtest/package.nix index d007fdaf9cb2d8..576daf4047c366 100644 --- a/pkgs/by-name/mi/mingtest/package.nix +++ b/pkgs/by-name/mi/mingtest/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = { + meta = with lib; { description = "Minimalistic C++ unit test framework"; homepage = "https://github.com/craflin/mingtest"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ lutzberger ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ lutzberger ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/mi/miniHttpd/package.nix b/pkgs/by-name/mi/miniHttpd/package.nix index 2c161583cf7dee..f76ef26f253c6e 100644 --- a/pkgs/by-name/mi/miniHttpd/package.nix +++ b/pkgs/by-name/mi/miniHttpd/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ]; - meta = { + meta = with lib; { homepage = "http://mini-httpd.nongnu.org/"; description = "minimalistic high-performance web server"; mainProgram = "httpd"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.peti ]; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = [ maintainers.peti ]; }; } diff --git a/pkgs/by-name/mi/miniball/package.nix b/pkgs/by-name/mi/miniball/package.nix index b6e35fa17afbad..e152d55562168c 100644 --- a/pkgs/by-name/mi/miniball/package.nix +++ b/pkgs/by-name/mi/miniball/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation { cp $src $out/include/miniball.hpp ''; - meta = { + meta = with lib; { description = "Smallest Enclosing Balls of Points"; homepage = "https://www.inf.ethz.ch/personal/gaertner/miniball.html"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.erikryb ]; - platforms = lib.platforms.unix; + license = licenses.gpl3; + maintainers = [ maintainers.erikryb ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/mi/minidjvu/package.nix b/pkgs/by-name/mi/minidjvu/package.nix index fb1c5995d5db59..c75e9de622e9d3 100644 --- a/pkgs/by-name/mi/minidjvu/package.nix +++ b/pkgs/by-name/mi/minidjvu/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { mkdir -p $out/lib ''; - meta = { + meta = with lib; { homepage = "https://djvu.sourceforge.net/djview4.html"; description = "Black-and-white djvu page encoder and decoder that use interpage information"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "minidjvu"; knownVulnerabilities = [ "minidjvu is vulnerable to a number of out-of-bound read vulnerabilities, potentially causing denials of service (CVE-2017-12441, CVE-2017-12442, CVE-2017-12443, CVE-2017-12444, CVE-2017-12445)" diff --git a/pkgs/by-name/mi/minimacy/package.nix b/pkgs/by-name/mi/minimacy/package.nix index 2238c0b129b11f..81dff0bf71d044 100644 --- a/pkgs/by-name/mi/minimacy/package.nix +++ b/pkgs/by-name/mi/minimacy/package.nix @@ -80,15 +80,15 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with lib; { description = "Open-source minimalist computing technology"; longDescription = '' Minimacy is an open-source minimalist computation system based on the principle "Less is more". It is designed and programmed by Sylvain Huet. ''; - maintainers = with lib.maintainers; [ jboy ]; + maintainers = with maintainers; [ jboy ]; homepage = "https://minimacy.net"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = licenses.gpl2; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/by-name/mi/minimal-grub-theme/package.nix b/pkgs/by-name/mi/minimal-grub-theme/package.nix index 127ada00f0582f..36e78895b8a6f8 100644 --- a/pkgs/by-name/mi/minimal-grub-theme/package.nix +++ b/pkgs/by-name/mi/minimal-grub-theme/package.nix @@ -30,11 +30,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Minimalistic GRUB theme insipired by primitivistical and vimix"; homepage = "https://github.com/tomdewildt/minimal-grub-theme"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ azuwis ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ azuwis ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/mi/minimodem/package.nix b/pkgs/by-name/mi/minimodem/package.nix index ae4961f1fa6a54..72d033d123b2b9 100644 --- a/pkgs/by-name/mi/minimodem/package.nix +++ b/pkgs/by-name/mi/minimodem/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { && autoconf ''; - meta = { + meta = with lib; { description = "General-purpose software audio FSK modem"; longDescription = '' Minimodem is a command-line program which decodes (or generates) audio @@ -55,9 +55,9 @@ stdenv.mkDerivation rec { Caller-ID. ''; homepage = "http://www.whence.com/minimodem/"; - license = lib.licenses.gpl3Plus; - platforms = with lib.platforms; linux; - maintainers = with lib.maintainers; [ relrod ]; + license = licenses.gpl3Plus; + platforms = with platforms; linux; + maintainers = with maintainers; [ relrod ]; mainProgram = "minimodem"; }; } diff --git a/pkgs/by-name/mi/minio-warp/package.nix b/pkgs/by-name/mi/minio-warp/package.nix index 6b5ad34ee504ff..112a56a227cbcc 100644 --- a/pkgs/by-name/mi/minio-warp/package.nix +++ b/pkgs/by-name/mi/minio-warp/package.nix @@ -40,11 +40,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "S3 benchmarking tool"; homepage = "https://github.com/minio/warp"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ christoph-heiss ]; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ christoph-heiss ]; mainProgram = "minio-warp"; }; } diff --git a/pkgs/by-name/mi/minion/package.nix b/pkgs/by-name/mi/minion/package.nix index 03f964b2774086..d42e874d548b84 100644 --- a/pkgs/by-name/mi/minion/package.nix +++ b/pkgs/by-name/mi/minion/package.nix @@ -64,13 +64,13 @@ stdenvNoCC.mkDerivation rec { }) ]; - meta = { + meta = with lib; { description = "Addon manager for World of Warcraft and The Elder Scrolls Online"; homepage = "https://minion.mmoui.com/"; - license = lib.licenses.unfree; - platforms = lib.platforms.linux; + license = licenses.unfree; + platforms = platforms.linux; mainProgram = "minion"; - maintainers = with lib.maintainers; [ patrickdag ]; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + maintainers = with maintainers; [ patrickdag ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; }; } diff --git a/pkgs/by-name/mi/misskey/package.nix b/pkgs/by-name/mi/misskey/package.nix index 51e444d3c5cd21..f255bc3b0e154d 100644 --- a/pkgs/by-name/mi/misskey/package.nix +++ b/pkgs/by-name/mi/misskey/package.nix @@ -115,12 +115,12 @@ stdenv.mkDerivation (finalAttrs: { tests.misskey = nixosTests.misskey; }; - meta = { + meta = with lib; { description = "🌎 An interplanetary microblogging platform 🚀"; homepage = "https://misskey-hub.net/"; - license = lib.licenses.agpl3Only; - maintainers = [ lib.maintainers.feathecutie ]; - platforms = lib.platforms.unix; + license = licenses.agpl3Only; + maintainers = [ maintainers.feathecutie ]; + platforms = platforms.unix; mainProgram = "misskey"; }; }) diff --git a/pkgs/by-name/mi/mitimasu/package.nix b/pkgs/by-name/mi/mitimasu/package.nix index dfed49ca118df3..e68dac73e12c9b 100644 --- a/pkgs/by-name/mi/mitimasu/package.nix +++ b/pkgs/by-name/mi/mitimasu/package.nix @@ -25,11 +25,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Mitimasu webfont"; homepage = "https://github.com/kemomimi-no-sato/mitimasu-webfont"; - license = lib.licenses.mit; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ istudyatuni ]; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ istudyatuni ]; }; } diff --git a/pkgs/by-name/mi/mitm6/package.nix b/pkgs/by-name/mi/mitm6/package.nix index 980bc703f4abe9..f350906304cf3a 100644 --- a/pkgs/by-name/mi/mitm6/package.nix +++ b/pkgs/by-name/mi/mitm6/package.nix @@ -28,11 +28,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "mitm6" ]; - meta = { + meta = with lib; { description = "DHCPv6 network spoofing application"; homepage = "https://github.com/dirkjanm/mitm6"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.gpl2Only; + maintainers = with maintainers; [ fab ]; mainProgram = "mitm6"; }; } diff --git a/pkgs/by-name/mi/mitra/package.nix b/pkgs/by-name/mi/mitra/package.nix index cdc870d1617404..73e416beabb140 100644 --- a/pkgs/by-name/mi/mitra/package.nix +++ b/pkgs/by-name/mi/mitra/package.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage rec { "production" ]; - meta = { + meta = with lib; { description = "Federated micro-blogging platform"; homepage = "https://codeberg.org/silverpill/mitra"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ haruki7049 ]; + license = licenses.agpl3Only; + maintainers = with maintainers; [ haruki7049 ]; mainProgram = "mitra"; }; } diff --git a/pkgs/by-name/mi/mixxc/package.nix b/pkgs/by-name/mi/mixxc/package.nix index 2f686571d80259..bfeedbbc8ae355 100644 --- a/pkgs/by-name/mi/mixxc/package.nix +++ b/pkgs/by-name/mi/mixxc/package.nix @@ -56,12 +56,12 @@ rustPlatform.buildRustPackage rec { installManPage $src/doc/mixxc.1 ''; - meta = { + meta = with lib; { description = "Minimalistic and customizable volume mixer"; homepage = "https://github.com/Elvyria/mixxc"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ daru-san ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ daru-san ]; mainProgram = "mixxc"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/mj/mjmap/package.nix b/pkgs/by-name/mj/mjmap/package.nix index 8751757fb5686f..cb15b0c0f29723 100644 --- a/pkgs/by-name/mj/mjmap/package.nix +++ b/pkgs/by-name/mj/mjmap/package.nix @@ -30,13 +30,13 @@ buildGoModule { tagPrefix = "v."; }; - meta = { + meta = with lib; { description = "Sendmail‐compatible JMAP client"; homepage = "https://git.sr.ht/~rockorager/mjmap"; - license = lib.licenses.mpl20; - sourceProvenance = [ lib.sourceTypes.fromSource ]; - maintainers = [ lib.maintainers.emily ]; + license = licenses.mpl20; + sourceProvenance = [ sourceTypes.fromSource ]; + maintainers = [ maintainers.emily ]; mainProgram = "mjmap"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/mk/mkalias/package.nix b/pkgs/by-name/mk/mkalias/package.nix index 38f326992f670c..6eb3e9ba231f69 100644 --- a/pkgs/by-name/mk/mkalias/package.nix +++ b/pkgs/by-name/mk/mkalias/package.nix @@ -37,15 +37,15 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Quick'n'dirty tool to make APFS aliases"; homepage = "https://github.com/vs49688/mkalias"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; mainProgram = "mkalias"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ zane emilytrau ]; - platforms = lib.platforms.darwin; + platforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/mk/mkrand/package.nix b/pkgs/by-name/mk/mkrand/package.nix index c919e16eb58e61..2ce290cb980d13 100644 --- a/pkgs/by-name/mk/mkrand/package.nix +++ b/pkgs/by-name/mk/mkrand/package.nix @@ -15,12 +15,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { description = "Digital Random Bit Generator"; mainProgram = "mkrand"; longDescription = "MKRAND is a utility for generating random information."; homepage = "https://github.com/mknight-tag/MKRAND/"; - license = lib.licenses.mit; - platforms = lib.platforms.all; + license = licenses.mit; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/mk/mksh/package.nix b/pkgs/by-name/mk/mksh/package.nix index 39b4e0d686eec5..72b9f3696d99a1 100644 --- a/pkgs/by-name/mk/mksh/package.nix +++ b/pkgs/by-name/mk/mksh/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: { shellPath = "/bin/mksh"; }; - meta = { + meta = with lib; { homepage = "http://www.mirbsd.org/mksh.htm"; changelog = "https://www.mirbsd.org/mksh.htm#clog"; description = "MirBSD Korn Shell"; @@ -55,16 +55,16 @@ stdenv.mkDerivation (finalAttrs: { also to be readily available under other UNIX(R)-like operating systems. ''; - license = with lib.licenses; [ + license = with licenses; [ miros isc unicode-dfs-2016 ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ AndersonTorres joachifm ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) # TODO [ AndersonTorres ]: lksh diff --git a/pkgs/by-name/mk/mkuimage/package.nix b/pkgs/by-name/mk/mkuimage/package.nix index 30ded02c53d458..4e23ef4d57b0d6 100644 --- a/pkgs/by-name/mk/mkuimage/package.nix +++ b/pkgs/by-name/mk/mkuimage/package.nix @@ -47,11 +47,11 @@ buildGoModule { --replace-fail '-files=/bin/bash' '-files=${bash}/bin/bash' ''; - meta = { + meta = with lib; { description = "Create small Go-based root file systems -- with support for CPIOs and (TBD) Docker images"; homepage = "https://github.com/u-root/mkuimage"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ katexochen ]; + license = licenses.bsd3; + maintainers = with maintainers; [ katexochen ]; mainProgram = "mkuimage"; }; } diff --git a/pkgs/by-name/mm/MMA/package.nix b/pkgs/by-name/mm/MMA/package.nix index b5e52bd423320a..9faa6c5d59b692 100644 --- a/pkgs/by-name/mm/MMA/package.nix +++ b/pkgs/by-name/mm/MMA/package.nix @@ -71,11 +71,11 @@ stdenv.mkDerivation rec { $out/bin/mma -G ''; - meta = { + meta = with lib; { description = "Creates MIDI tracks for a soloist to perform over from a user supplied file containing chords"; homepage = "https://www.mellowood.ca/mma/index.html"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.magnetophon ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = [ maintainers.magnetophon ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/mm/mmark/package.nix b/pkgs/by-name/mm/mmark/package.nix index 93a86bf61f1445..2986c6d96a8cba 100644 --- a/pkgs/by-name/mm/mmark/package.nix +++ b/pkgs/by-name/mm/mmark/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { package = mmark; }; - meta = { + meta = with lib; { description = "Powerful markdown processor in Go geared towards the IETF"; homepage = "https://github.com/mmarkdown/mmark"; - license = with lib.licenses; bsd2; - maintainers = with lib.maintainers; [ yrashk ]; + license = with licenses; bsd2; + maintainers = with maintainers; [ yrashk ]; mainProgram = "mmark"; }; } diff --git a/pkgs/by-name/mm/mmsd-tng/package.nix b/pkgs/by-name/mm/mmsd-tng/package.nix index c302df75779bcd..303890f206a7a6 100644 --- a/pkgs/by-name/mm/mmsd-tng/package.nix +++ b/pkgs/by-name/mm/mmsd-tng/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { description = "Multimedia Messaging Service Daemon - The Next Generation"; homepage = "https://gitlab.com/kop316/mmsd"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ julm ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ julm ]; + platforms = platforms.linux; mainProgram = "mmsdtng"; }; }) diff --git a/pkgs/by-name/mm/mmv/package.nix b/pkgs/by-name/mm/mmv/package.nix index 7016a79fd0d309..4914471e167efd 100644 --- a/pkgs/by-name/mm/mmv/package.nix +++ b/pkgs/by-name/mm/mmv/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation rec { ]; }; - meta = { + meta = with lib; { homepage = "https://github.com/rrthomas/mmv"; description = "Utility for wildcard renaming, copying, etc"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ siraben ]; + license = licenses.gpl3Plus; + platforms = platforms.all; + maintainers = with maintainers; [ siraben ]; }; } diff --git a/pkgs/by-name/mo/modprobed-db/package.nix b/pkgs/by-name/mo/modprobed-db/package.nix index 12a799ff276be6..a7dd37198f99a5 100644 --- a/pkgs/by-name/mo/modprobed-db/package.nix +++ b/pkgs/by-name/mo/modprobed-db/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation { installShellCompletion --zsh common/zsh-completion ''; - meta = { + meta = with lib; { homepage = "https://github.com/graysky2/modprobed-db"; description = "Useful utility for users wishing to build a minimal kernel via a make localmodconfig"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ NotAShelf ]; + license = licenses.mit; + maintainers = with maintainers; [ NotAShelf ]; mainProgram = "modprobed-db"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/mo/moe/package.nix b/pkgs/by-name/mo/moe/package.nix index 7d1f9a875cd597..d1760f3b6b1ea6 100644 --- a/pkgs/by-name/mo/moe/package.nix +++ b/pkgs/by-name/mo/moe/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { homepage = "https://www.gnu.org/software/moe/"; description = "Small, 8-bit clean editor"; longDescription = '' @@ -43,9 +43,9 @@ stdenv.mkDerivation (finalAttrs: { completion, directory browser, duplicate removal from prompt histories, delimiter matching, text conversion from/to UTF-8, romanization, etc. ''; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; mainProgram = "moe"; }; }) diff --git a/pkgs/by-name/mo/mokuro/package.nix b/pkgs/by-name/mo/mokuro/package.nix index d1b14f45c289b9..b7655f2f6ee6cb 100644 --- a/pkgs/by-name/mo/mokuro/package.nix +++ b/pkgs/by-name/mo/mokuro/package.nix @@ -44,11 +44,11 @@ python3Packages.buildPythonApplication rec { # tests try to use the network doCheck = false; - meta = { + meta = with lib; { description = "Read Japanese manga inside browser with selectable text"; homepage = "https://github.com/kha-white/mokuro"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "mokuro"; - maintainers = with lib.maintainers; [ tomasajt ]; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/by-name/mo/moltenvk/package.nix b/pkgs/by-name/mo/moltenvk/package.nix index d758e29157738f..f2b47769d57520 100644 --- a/pkgs/by-name/mo/moltenvk/package.nix +++ b/pkgs/by-name/mo/moltenvk/package.nix @@ -202,12 +202,12 @@ stdenv.mkDerivation (finalAttrs: { ignoredVersions = ".*-(beta|rc).*"; }; - meta = { + meta = with lib; { description = "Vulkan Portability implementation built on top of Apple’s Metal API"; homepage = "https://github.com/KhronosGroup/MoltenVK"; changelog = "https://github.com/KhronosGroup/MoltenVK/releases"; - maintainers = [ lib.maintainers.reckenrode ]; - license = lib.licenses.asl20; - platforms = lib.platforms.darwin; + maintainers = [ maintainers.reckenrode ]; + license = licenses.asl20; + platforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/mo/monado/package.nix b/pkgs/by-name/mo/monado/package.nix index 9930e8fca56661..a66d8ed00223fb 100644 --- a/pkgs/by-name/mo/monado/package.nix +++ b/pkgs/by-name/mo/monado/package.nix @@ -167,15 +167,15 @@ stdenv.mkDerivation (finalAttrs: { tests.basic-service = nixosTests.monado; }; - meta = { + meta = with lib; { description = "Open source XR runtime"; homepage = "https://monado.freedesktop.org/"; - license = lib.licenses.boost; - maintainers = with lib.maintainers; [ + license = licenses.boost; + maintainers = with maintainers; [ Scrumplex prusnak ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "monado-cli"; }; }) diff --git a/pkgs/by-name/mo/moneydance/package.nix b/pkgs/by-name/mo/moneydance/package.nix index befa8b5fd7ee5d..aa0504337e75b5 100644 --- a/pkgs/by-name/mo/moneydance/package.nix +++ b/pkgs/by-name/mo/moneydance/package.nix @@ -71,17 +71,17 @@ stdenv.mkDerivation (finalAttrs: { inherit jdk; }; - meta = { + meta = with lib; { homepage = "https://infinitekind.com/moneydance"; changelog = "https://infinitekind.com/stabledl/2024_5118/changelog.txt"; description = "Easy to use and full-featured personal finance app that doesn't compromise your privacy"; - sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; - license = lib.licenses.unfree; + sourceProvenance = [ sourceTypes.binaryBytecode ]; + license = licenses.unfree; # Darwin refers to Zulu Java, which breaks the evaluation of this derivation # for some reason # # https://github.com/NixOS/nixpkgs/pull/306372#issuecomment-2111688236 - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.lucasbergman ]; + platforms = platforms.linux; + maintainers = [ maintainers.lucasbergman ]; }; }) diff --git a/pkgs/by-name/mo/mongodb-compass/package.nix b/pkgs/by-name/mo/mongodb-compass/package.nix index 61bbec71d6fddb..0d27ddd040c288 100644 --- a/pkgs/by-name/mo/mongodb-compass/package.nix +++ b/pkgs/by-name/mo/mongodb-compass/package.nix @@ -134,15 +134,15 @@ stdenv.mkDerivation { wrapGAppsHook $out/bin/mongodb-compass ''; - meta = { + meta = with lib; { description = "GUI for MongoDB"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ bryanasdev000 friedow ]; homepage = "https://github.com/mongodb-js/compass"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.sspl; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.sspl; platforms = [ "x86_64-linux" ]; mainProgram = "mongodb-compass"; }; diff --git a/pkgs/by-name/mo/mongodb-tools/package.nix b/pkgs/by-name/mo/mongodb-tools/package.nix index f45fbaf5569511..e4ef62992b7472 100644 --- a/pkgs/by-name/mo/mongodb-tools/package.nix +++ b/pkgs/by-name/mo/mongodb-tools/package.nix @@ -52,10 +52,10 @@ buildGoModule rec { runHook postBuild ''; - meta = { + meta = with lib; { homepage = "https://github.com/mongodb/mongo-tools"; description = "Tools for the MongoDB"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ bryanasdev000 ]; + license = licenses.asl20; + maintainers = with maintainers; [ bryanasdev000 ]; }; } diff --git a/pkgs/by-name/mo/mongosh/package.nix b/pkgs/by-name/mo/mongosh/package.nix index 52248dc8e86e17..ed5c76ab77d7c5 100644 --- a/pkgs/by-name/mo/mongosh/package.nix +++ b/pkgs/by-name/mo/mongosh/package.nix @@ -35,11 +35,11 @@ buildNpmPackage { updateScript = ./update.sh; }; - meta = { + meta = with lib; { homepage = "https://www.mongodb.com/try/download/shell"; description = "MongoDB Shell"; - maintainers = with lib.maintainers; [ aaronjheng ]; - license = lib.licenses.asl20; + maintainers = with maintainers; [ aaronjheng ]; + license = licenses.asl20; mainProgram = "mongosh"; }; } diff --git a/pkgs/by-name/mo/monica/package.nix b/pkgs/by-name/mo/monica/package.nix index 950078194d3bee..a8998cb3aa5466 100644 --- a/pkgs/by-name/mo/monica/package.nix +++ b/pkgs/by-name/mo/monica/package.nix @@ -26,14 +26,14 @@ stdenv.mkDerivation rec { passthru.tests.monica = nixosTests.monica; - meta = { + meta = with lib; { description = "Personal CRM"; homepage = "https://www.monicahq.com/"; longDescription = '' Remember everything about your friends, family and business relationships. ''; - license = lib.licenses.agpl3Plus; - platforms = lib.platforms.all; + license = licenses.agpl3Plus; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/mo/monitorets/package.nix b/pkgs/by-name/mo/monitorets/package.nix index c13e642f48710f..ed417b41509b92 100644 --- a/pkgs/by-name/mo/monitorets/package.nix +++ b/pkgs/by-name/mo/monitorets/package.nix @@ -47,15 +47,15 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = { + meta = with lib; { description = "Simple and quick view at the usage of your computer resources"; homepage = "https://github.com/jorchube/monitorets"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Plus cc0 ]; mainProgram = "monitorets"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/mo/mooSpace/package.nix b/pkgs/by-name/mo/mooSpace/package.nix index 079c034d925299..5df1e17cf262e8 100644 --- a/pkgs/by-name/mo/mooSpace/package.nix +++ b/pkgs/by-name/mo/mooSpace/package.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation rec { cp -r ${pname}.lv2 $out/lib/lv2 ''; - meta = { + meta = with lib; { description = "Variable reverb audio effect, jack and lv2"; homepage = "https://github.com/modularev/mooSpace"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.magnetophon ]; + license = licenses.gpl3; + maintainers = [ maintainers.magnetophon ]; }; } diff --git a/pkgs/by-name/mo/moon-buggy/package.nix b/pkgs/by-name/mo/moon-buggy/package.nix index 96642b26bc1273..26e733b998f956 100644 --- a/pkgs/by-name/mo/moon-buggy/package.nix +++ b/pkgs/by-name/mo/moon-buggy/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { sha256 = "0gyjwlpx0sd728dwwi7pwks4zfdy9rm1w1xbhwg6zip4r9nc2b9m"; }; - meta = { + meta = with lib; { description = "Simple character graphics game where you drive some kind of car across the moon's surface"; mainProgram = "moon-buggy"; - license = lib.licenses.gpl2Only; - maintainers = [ lib.maintainers.rybern ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = licenses.gpl2Only; + maintainers = [ maintainers.rybern ]; + platforms = platforms.linux ++ platforms.darwin; homepage = "https://www.seehuhn.de/pages/moon-buggy"; }; } diff --git a/pkgs/by-name/mo/moosefs/package.nix b/pkgs/by-name/mo/moosefs/package.nix index ae0c653f0a176a..4f78617958ee4c 100644 --- a/pkgs/by-name/mo/moosefs/package.nix +++ b/pkgs/by-name/mo/moosefs/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation rec { inherit (nixosTests) moosefs; }; - meta = { + meta = with lib; { homepage = "https://moosefs.com"; description = "Open Source, Petabyte, Fault-Tolerant, Highly Performing, Scalable Network Distributed File System"; - platforms = lib.platforms.unix; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ + platforms = platforms.unix; + license = licenses.gpl2Only; + maintainers = with maintainers; [ mfossen markuskowa ]; diff --git a/pkgs/by-name/mo/morphosis/package.nix b/pkgs/by-name/mo/morphosis/package.nix index 7a9271d4dcd592..e4a6e92d05f04c 100644 --- a/pkgs/by-name/mo/morphosis/package.nix +++ b/pkgs/by-name/mo/morphosis/package.nix @@ -63,12 +63,12 @@ python3Packages.buildPythonApplication rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Convert your documents"; homepage = "https://gitlab.gnome.org/World/morphosis"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ getchoo ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ getchoo ]; mainProgram = "morphosis"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/mo/mosdns/package.nix b/pkgs/by-name/mo/mosdns/package.nix index 826b7f6d73908c..4c602829c7937d 100644 --- a/pkgs/by-name/mo/mosdns/package.nix +++ b/pkgs/by-name/mo/mosdns/package.nix @@ -43,11 +43,11 @@ buildGoModule rec { }; }; - meta = { + meta = with lib; { description = "Modular, pluggable DNS forwarder"; homepage = "https://github.com/IrineSistiana/mosdns"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ moraxyc ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ moraxyc ]; mainProgram = "mosdns"; }; } diff --git a/pkgs/by-name/mo/motoc/package.nix b/pkgs/by-name/mo/motoc/package.nix index 54bf2174f86b9f..f8aac0e8d0fd0c 100644 --- a/pkgs/by-name/mo/motoc/package.nix +++ b/pkgs/by-name/mo/motoc/package.nix @@ -31,12 +31,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "MOnado Tracking Origin Calibration program"; homepage = "https://github.com/galister/motoc"; changelog = "https://github.com/galister/motoc/releases"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ pandapip1 ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ pandapip1 ]; mainProgram = "motoc"; }; } diff --git a/pkgs/by-name/mo/mouse_m908/package.nix b/pkgs/by-name/mo/mouse_m908/package.nix index 56e320c0ba04bf..c6546e914b6b21 100644 --- a/pkgs/by-name/mo/mouse_m908/package.nix +++ b/pkgs/by-name/mo/mouse_m908/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/dokutan/mouse_m908"; description = "Control various Redragon gaming mice from Linux, BSD and Haiku"; mainProgram = "mouse_m908"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ kylelovestoad ]; + maintainers = with maintainers; [ kylelovestoad ]; }; }) diff --git a/pkgs/by-name/mo/mousecape/package.nix b/pkgs/by-name/mo/mousecape/package.nix index d7644cc6b58cf1..6ef0dadb56ec32 100644 --- a/pkgs/by-name/mo/mousecape/package.nix +++ b/pkgs/by-name/mo/mousecape/package.nix @@ -22,12 +22,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Cursor manager for macOS built using private, nonintrusive CoreGraphics APIs"; homepage = "https://github.com/alexzielenski/Mousecape"; - license = lib.licenses.free; - maintainers = with lib.maintainers; [ donteatoreo ]; - platforms = lib.platforms.darwin; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + license = licenses.free; + maintainers = with maintainers; [ donteatoreo ]; + platforms = platforms.darwin; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/mo/mov-cli/mov-cli-test.nix b/pkgs/by-name/mo/mov-cli/mov-cli-test.nix index 7c34524eabcda9..059392093afbbb 100644 --- a/pkgs/by-name/mo/mov-cli/mov-cli-test.nix +++ b/pkgs/by-name/mo/mov-cli/mov-cli-test.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { nativeBuildInputs = [ setuptools-scm ]; - meta = { + meta = with lib; { description = "A mov-cli plugin that let's you test mov-cli's capabilities by watching free films and animations in the creative commons"; homepage = "https://github.com/mov-cli/mov-cli-test"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ youhaveme9 ]; + license = licenses.mit; + maintainers = with maintainers; [ youhaveme9 ]; }; } diff --git a/pkgs/by-name/mo/move-mount-beneath/package.nix b/pkgs/by-name/mo/move-mount-beneath/package.nix index b60e7ec9011061..599fa76f656cda 100644 --- a/pkgs/by-name/mo/move-mount-beneath/package.nix +++ b/pkgs/by-name/mo/move-mount-beneath/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation { }) ]; - meta = { + meta = with lib; { description = "Toy binary to illustrate adding a mount beneath an existing mount"; mainProgram = "move-mount"; homepage = "https://github.com/brauner/move-mount-beneath"; - license = lib.licenses.mit0; - maintainers = with lib.maintainers; [ nikstur ]; + license = licenses.mit0; + maintainers = with maintainers; [ nikstur ]; }; } diff --git a/pkgs/by-name/mo/mox/package.nix b/pkgs/by-name/mo/mox/package.nix index 749e4d2e4515ef..f6262d256fae1a 100644 --- a/pkgs/by-name/mo/mox/package.nix +++ b/pkgs/by-name/mo/mox/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { "-X github.com/mjl-/mox/moxvar.Version=${version}" ]; - meta = { + meta = with lib; { description = "Modern full-featured open source secure mail server for low-maintenance self-hosted email"; mainProgram = "mox"; homepage = "https://github.com/mjl-/mox"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dit7ya ]; + license = licenses.mit; + maintainers = with maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/mo/moxide/package.nix b/pkgs/by-name/mo/moxide/package.nix index 2d2ac506f0face..2d9028ff8df3dd 100644 --- a/pkgs/by-name/mo/moxide/package.nix +++ b/pkgs/by-name/mo/moxide/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { hash = "sha256-XYEcMaHqu84aKIcV0pQZXl4sIeH9BkRGA2gcwZveXCU="; }; - meta = { + meta = with lib; { description = "Tmux session manager with a modular configuration"; mainProgram = "moxide"; homepage = "https://github.com/dlurak/moxide"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ dlurak ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ dlurak ]; }; } diff --git a/pkgs/by-name/mo/mozcdic-ut-alt-cannadic/package.nix b/pkgs/by-name/mo/mozcdic-ut-alt-cannadic/package.nix index 1eccf58c8330ad..1a722b23b367a4 100644 --- a/pkgs/by-name/mo/mozcdic-ut-alt-cannadic/package.nix +++ b/pkgs/by-name/mo/mozcdic-ut-alt-cannadic/package.nix @@ -31,15 +31,15 @@ stdenvNoCC.mkDerivation { ]; }; - meta = { + meta = with lib; { description = "Mozc UT Alt-Cannadic Dictionary is a dictionary converted from Alt-Cannadic for Mozc."; homepage = "https://github.com/utuhiro78/mozcdic-ut-alt-cannadic"; - license = with lib.licenses; [ + license = with licenses; [ asl20 gpl2 ]; - maintainers = with lib.maintainers; [ pineapplehunter ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ pineapplehunter ]; + platforms = platforms.all; # this does not need to be separately built # it only provides some zip files hydraPlatforms = [ ]; diff --git a/pkgs/by-name/mo/mozcdic-ut-edict2/package.nix b/pkgs/by-name/mo/mozcdic-ut-edict2/package.nix index 356d4822b3c688..644e8ea5e3eecb 100644 --- a/pkgs/by-name/mo/mozcdic-ut-edict2/package.nix +++ b/pkgs/by-name/mo/mozcdic-ut-edict2/package.nix @@ -31,15 +31,15 @@ stdenvNoCC.mkDerivation { ]; }; - meta = { + meta = with lib; { description = "Mozc UT EDICT2 Dictionary is a dictionary converted from EDICT2 for Mozc."; homepage = "https://github.com/utuhiro78/mozcdic-ut-sudachidict"; - license = with lib.licenses; [ + license = with licenses; [ asl20 cc-by-sa-40 ]; - maintainers = with lib.maintainers; [ pineapplehunter ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ pineapplehunter ]; + platforms = platforms.all; # this does not need to be separately built # it only provides some zip files hydraPlatforms = [ ]; diff --git a/pkgs/by-name/mo/mozcdic-ut-jawiki/package.nix b/pkgs/by-name/mo/mozcdic-ut-jawiki/package.nix index b17b500584168c..8985e713321dd7 100644 --- a/pkgs/by-name/mo/mozcdic-ut-jawiki/package.nix +++ b/pkgs/by-name/mo/mozcdic-ut-jawiki/package.nix @@ -31,15 +31,15 @@ stdenvNoCC.mkDerivation { ]; }; - meta = { + meta = with lib; { description = "Mozc UT Jawiki Dictionary is a dictionary generated from the Japanese Wikipedia for Mozc."; homepage = "https://github.com/utuhiro78/mozcdic-ut-jawiki"; - license = with lib.licenses; [ + license = with licenses; [ asl20 cc-by-sa-40 ]; - maintainers = with lib.maintainers; [ pineapplehunter ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ pineapplehunter ]; + platforms = platforms.all; # this does not need to be separately built # it only provides some zip files hydraPlatforms = [ ]; diff --git a/pkgs/by-name/mo/mozcdic-ut-neologd/package.nix b/pkgs/by-name/mo/mozcdic-ut-neologd/package.nix index a0c5b3761b5982..b562e373f16a92 100644 --- a/pkgs/by-name/mo/mozcdic-ut-neologd/package.nix +++ b/pkgs/by-name/mo/mozcdic-ut-neologd/package.nix @@ -31,12 +31,12 @@ stdenvNoCC.mkDerivation { ]; }; - meta = { + meta = with lib; { description = "Mozc UT NEologd Dictionary is a dictionary converted from mecab-ipadic-NEologd for Mozc."; homepage = "https://github.com/utuhiro78/mozcdic-ut-neologd"; - license = with lib.licenses; [ asl20 ]; - maintainers = with lib.maintainers; [ pineapplehunter ]; - platforms = lib.platforms.all; + license = with licenses; [ asl20 ]; + maintainers = with maintainers; [ pineapplehunter ]; + platforms = platforms.all; # this does not need to be separately built # it only provides some zip files hydraPlatforms = [ ]; diff --git a/pkgs/by-name/mo/mozcdic-ut-personal-names/package.nix b/pkgs/by-name/mo/mozcdic-ut-personal-names/package.nix index fe3c0c1ec08f88..9fb73f6befe603 100644 --- a/pkgs/by-name/mo/mozcdic-ut-personal-names/package.nix +++ b/pkgs/by-name/mo/mozcdic-ut-personal-names/package.nix @@ -31,12 +31,12 @@ stdenvNoCC.mkDerivation { ]; }; - meta = { + meta = with lib; { description = "Mozc UT Personal Name Dictionary is a dictionary for Mozc."; homepage = "https://github.com/utuhiro78/mozcdic-ut-personal-names"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ pineapplehunter ]; - platforms = lib.platforms.all; + license = licenses.asl20; + maintainers = with maintainers; [ pineapplehunter ]; + platforms = platforms.all; # this does not need to be separately built # it only provides some zip files hydraPlatforms = [ ]; diff --git a/pkgs/by-name/mo/mozcdic-ut-place-names/package.nix b/pkgs/by-name/mo/mozcdic-ut-place-names/package.nix index 9253bb94f0e995..b782e6e714a2c9 100644 --- a/pkgs/by-name/mo/mozcdic-ut-place-names/package.nix +++ b/pkgs/by-name/mo/mozcdic-ut-place-names/package.nix @@ -31,12 +31,12 @@ stdenvNoCC.mkDerivation { ]; }; - meta = { + meta = with lib; { description = "Mozc UT Place Name Dictionary is a dictionary converted from the Japan Post's ZIP code data for Mozc."; homepage = "https://github.com/utuhiro78/mozcdic-ut-place-names"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ pineapplehunter ]; - platforms = lib.platforms.all; + license = licenses.asl20; + maintainers = with maintainers; [ pineapplehunter ]; + platforms = platforms.all; # this does not need to be separately built # it only provides some zip files hydraPlatforms = [ ]; diff --git a/pkgs/by-name/mo/mozcdic-ut-skk-jisyo/package.nix b/pkgs/by-name/mo/mozcdic-ut-skk-jisyo/package.nix index 41852d7a21506a..9c4f8dd54eb321 100644 --- a/pkgs/by-name/mo/mozcdic-ut-skk-jisyo/package.nix +++ b/pkgs/by-name/mo/mozcdic-ut-skk-jisyo/package.nix @@ -31,15 +31,15 @@ stdenvNoCC.mkDerivation { ]; }; - meta = { + meta = with lib; { description = "Mozc UT SKK-JISYO Dictionary is a dictionary converted from SKK-JISYO for Mozc."; homepage = "https://github.com/utuhiro78/mozcdic-ut-sudachidict"; - license = with lib.licenses; [ + license = with licenses; [ asl20 gpl2Plus ]; - maintainers = with lib.maintainers; [ pineapplehunter ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ pineapplehunter ]; + platforms = platforms.all; # this does not need to be separately built # it only provides some zip files hydraPlatforms = [ ]; diff --git a/pkgs/by-name/mo/mozcdic-ut-sudachidict/package.nix b/pkgs/by-name/mo/mozcdic-ut-sudachidict/package.nix index aa3dbaf25fb882..88dc28839d8107 100644 --- a/pkgs/by-name/mo/mozcdic-ut-sudachidict/package.nix +++ b/pkgs/by-name/mo/mozcdic-ut-sudachidict/package.nix @@ -31,12 +31,12 @@ stdenvNoCC.mkDerivation { ]; }; - meta = { + meta = with lib; { description = "Mozc UT SudachiDict Dictionary is a dictionary converted from SudachiDict for Mozc."; homepage = "https://github.com/utuhiro78/mozcdic-ut-sudachidict"; - license = with lib.licenses; [ asl20 ]; - maintainers = with lib.maintainers; [ pineapplehunter ]; - platforms = lib.platforms.all; + license = with licenses; [ asl20 ]; + maintainers = with maintainers; [ pineapplehunter ]; + platforms = platforms.all; # this does not need to be separately built # it only provides some zip files hydraPlatforms = [ ]; diff --git a/pkgs/by-name/mo/mozillavpn/package.nix b/pkgs/by-name/mo/mozillavpn/package.nix index 8a5f309fb7fba2..9ca206db4f7e26 100644 --- a/pkgs/by-name/mo/mozillavpn/package.nix +++ b/pkgs/by-name/mo/mozillavpn/package.nix @@ -122,12 +122,12 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = { + meta = with lib; { description = "Client for the Mozilla VPN service"; mainProgram = "mozillavpn"; homepage = "https://vpn.mozilla.org/"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ andersk ]; - platforms = lib.platforms.linux; + license = licenses.mpl20; + maintainers = with maintainers; [ andersk ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/mp/mp3val/package.nix b/pkgs/by-name/mp/mp3val/package.nix index a29ebb5dcdab70..30ed5278b02908 100644 --- a/pkgs/by-name/mp/mp3val/package.nix +++ b/pkgs/by-name/mp/mp3val/package.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { hardeningDisable = [ "fortify" ]; - meta = { + meta = with lib; { description = "Tool for validating and repairing MPEG audio streams"; longDescription = '' MP3val is a small, high-speed, free software tool for checking MPEG audio @@ -34,9 +34,9 @@ stdenv.mkDerivation rec { common types of tags (ID3v1, ID3v2, APEv2). ''; homepage = "https://mp3val.sourceforge.net/index.shtml"; - license = lib.licenses.gpl2; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.devhell ]; + license = licenses.gpl2; + platforms = platforms.unix; + maintainers = [ maintainers.devhell ]; mainProgram = "mp3val"; }; } diff --git a/pkgs/by-name/mp/mp4v2/package.nix b/pkgs/by-name/mp/mp4v2/package.nix index 40a8da44fa5a41..de5f00b94ed38c 100644 --- a/pkgs/by-name/mp/mp4v2/package.nix +++ b/pkgs/by-name/mp/mp4v2/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Provides functions to read, create, and modify mp4 files"; longDescription = '' MP4v2 library provides an API to work with mp4 files @@ -31,8 +31,8 @@ stdenv.mkDerivation rec { This container format is derived from Apple's QuickTime format. ''; homepage = "https://github.com/TechSmith/mp4v2"; - maintainers = [ lib.maintainers.Anton-Latukha ]; - platforms = lib.platforms.unix; - license = lib.licenses.mpl11; + maintainers = [ maintainers.Anton-Latukha ]; + platforms = platforms.unix; + license = licenses.mpl11; }; } diff --git a/pkgs/by-name/mp/mpb/package.nix b/pkgs/by-name/mp/mpb/package.nix index fdd385b0c5ef80..f189f752e132c0 100644 --- a/pkgs/by-name/mp/mpb/package.nix +++ b/pkgs/by-name/mp/mpb/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { description = "MIT Photonic-Bands: computation of photonic band structures in periodic media"; homepage = "https://mpb.readthedocs.io/en/latest/"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = with maintainers; [ sheepforce ]; }; diff --git a/pkgs/by-name/mp/mpc/package.nix b/pkgs/by-name/mp/mpc/package.nix index 384f05f75c8e44..395be9ab619071 100644 --- a/pkgs/by-name/mp/mpc/package.nix +++ b/pkgs/by-name/mp/mpc/package.nix @@ -44,13 +44,13 @@ stdenv.mkDerivation (finalAttrs: { rm $out/share/doc/mpc/contrib/mpc-completion.bash ''; - meta = { + meta = with lib; { homepage = "https://www.musicpd.org/clients/mpc/"; description = "Minimalist command line interface to MPD"; changelog = "https://raw.githubusercontent.com/MusicPlayerDaemon/mpc/refs/heads/master/NEWS"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "mpc"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/mp/mpc123/package.nix b/pkgs/by-name/mp/mpc123/package.nix index a08d91e84b3dbd..70ac3463e41c59 100644 --- a/pkgs/by-name/mp/mpc123/package.nix +++ b/pkgs/by-name/mp/mpc123/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Musepack (.mpc) audio player"; homepage = "https://github.com/bucciarati/mpc123"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "mpc123"; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/mp/mpfi/package.nix b/pkgs/by-name/mp/mpfi/package.nix index 4076f184022957..9465cfb871e7c9 100644 --- a/pkgs/by-name/mp/mpfi/package.nix +++ b/pkgs/by-name/mp/mpfi/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { ]; buildInputs = [ mpfr ]; - meta = { + meta = with lib; { description = "Multiple precision interval arithmetic library based on MPFR"; homepage = "http://perso.ens-lyon.fr/nathalie.revol/software.html"; - license = lib.licenses.lgpl21Plus; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.unix; + license = licenses.lgpl21Plus; + maintainers = [ maintainers.raskin ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/mp/mpir/package.nix b/pkgs/by-name/mp/mpir/package.nix index 86fbbd5d8e91d7..ca6c947c6d39d3 100644 --- a/pkgs/by-name/mp/mpir/package.nix +++ b/pkgs/by-name/mp/mpir/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-cxx" ] ++ lib.optionals stdenv.hostPlatform.isLinux [ "--enable-fat" ]; - meta = { + meta = with lib; { description = "Highly optimised library for bignum arithmetic forked from GMP"; - license = lib.licenses.lgpl3Plus; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.unix; + license = licenses.lgpl3Plus; + maintainers = [ maintainers.raskin ]; + platforms = platforms.unix; downloadPage = "https://mpir.org/downloads.html"; homepage = "https://mpir.org/"; }; diff --git a/pkgs/by-name/mp/mpris-timer/package.nix b/pkgs/by-name/mp/mpris-timer/package.nix index 1d0b25d13a6f98..816ab40cb196a4 100644 --- a/pkgs/by-name/mp/mpris-timer/package.nix +++ b/pkgs/by-name/mp/mpris-timer/package.nix @@ -63,16 +63,16 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Timer app with seamless GNOME integration"; homepage = "https://github.com/efogdev/mpris-timer"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ stunkymonkey getchoo ]; mainProgram = "mpris-timer"; # Always uses ALSA - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/mp/mps/package.nix b/pkgs/by-name/mp/mps/package.nix index 644c185d6c71cd..31451497531a3e 100644 --- a/pkgs/by-name/mp/mps/package.nix +++ b/pkgs/by-name/mp/mps/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ sqlite ]; - meta = { + meta = with lib; { description = "Flexible memory management and garbage collection library"; homepage = "https://www.ravenbrook.com/project/mps"; - license = lib.licenses.sleepycat; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.thoughtpolice ]; + license = licenses.sleepycat; + platforms = platforms.linux; + maintainers = [ maintainers.thoughtpolice ]; }; } diff --git a/pkgs/by-name/mp/mpv-subs-popout/package.nix b/pkgs/by-name/mp/mpv-subs-popout/package.nix index a3420eb2e3c9d6..cc5071960a8cfa 100644 --- a/pkgs/by-name/mp/mpv-subs-popout/package.nix +++ b/pkgs/by-name/mp/mpv-subs-popout/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { ]; buildInputs = [ openssl ]; - meta = { + meta = with lib; { description = "A little application that makes it possible to display mpv's subs anywhere you want. With translation features"; homepage = "https://github.com/sdaqo/mpv-subs-popout"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.sdaqo ]; - platforms = lib.platforms.linux; + license = licenses.gpl3; + maintainers = [ maintainers.sdaqo ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/mp/mpvc/package.nix b/pkgs/by-name/mp/mpvc/package.nix index d6fb6a45aa3ceb..f40e3657b733be 100644 --- a/pkgs/by-name/mp/mpvc/package.nix +++ b/pkgs/by-name/mp/mpvc/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation (finalAttrs: { rmdir $out/share || true ''; - meta = { + meta = with lib; { homepage = "https://github.com/gmt4/mpvc"; description = "Mpc-like control interface for mpv"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "mpvc"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/mr/mr/package.nix b/pkgs/by-name/mr/mr/package.nix index 1f053b243e8281..7d04d9a0770174 100644 --- a/pkgs/by-name/mr/mr/package.nix +++ b/pkgs/by-name/mr/mr/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { description = "Multiple Repository management tool"; longDescription = '' mr is a tool to manage all your version control repos. It can @@ -36,8 +36,8 @@ stdenv.mkDerivation { other version control systems can easily be added. ''; homepage = "http://myrepos.branchable.com/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ antono ]; + license = licenses.gpl2Plus; + platforms = platforms.unix; + maintainers = with maintainers; [ antono ]; }; } diff --git a/pkgs/by-name/mr/mricron/package.nix b/pkgs/by-name/mr/mricron/package.nix index d79f59bced84cd..c312d515d84c58 100644 --- a/pkgs/by-name/mr/mricron/package.nix +++ b/pkgs/by-name/mr/mricron/package.nix @@ -77,13 +77,13 @@ stdenv.mkDerivation rec { }) ]; - meta = { + meta = with lib; { description = "Application to display NIfTI medical imaging data"; homepage = "https://people.cas.sc.edu/rorden/mricron/index.HTML"; - license = lib.licenses.bsd1; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ adriangl ]; + license = licenses.bsd1; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + platforms = platforms.linux; + maintainers = with maintainers; [ adriangl ]; mainProgram = "mricron"; }; } diff --git a/pkgs/by-name/mr/mrpeach/package.nix b/pkgs/by-name/mr/mrpeach/package.nix index ef9194be5adceb..85df0cd644a5b4 100644 --- a/pkgs/by-name/mr/mrpeach/package.nix +++ b/pkgs/by-name/mr/mrpeach/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation { rm -rf $out/lib ''; - meta = { + meta = with lib; { description = "Collection of Pd objectclasses for OSC-messages"; homepage = "http://puredata.info/downloads/osc"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.magnetophon ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = [ maintainers.magnetophon ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ms/mscp/package.nix b/pkgs/by-name/ms/mscp/package.nix index f95b0a249d5f98..89313654efcd3e 100644 --- a/pkgs/by-name/ms/mscp/package.nix +++ b/pkgs/by-name/ms/mscp/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation (finalAttrs: { zlib ]; - meta = { + meta = with lib; { description = "Transfer files over multiple SSH (SFTP) connections"; homepage = "https://github.com/upa/mscp"; mainProgram = "mscp"; - license = lib.licenses.gpl3Only; - maintainers = lib.teams.deshaw.members; - platforms = lib.platforms.unix; + license = licenses.gpl3Only; + maintainers = teams.deshaw.members; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ms/msecli/package.nix b/pkgs/by-name/ms/msecli/package.nix index ada844bb1d00c4..d86e06f7be5437 100644 --- a/pkgs/by-name/ms/msecli/package.nix +++ b/pkgs/by-name/ms/msecli/package.nix @@ -56,13 +56,13 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Micron Storage Executive CLI"; homepage = "https://www.micron.com/sales-support/downloads/software-drivers/storage-executive-software"; - license = lib.licenses.unfree; + license = licenses.unfree; mainProgram = "msecli"; - maintainers = with lib.maintainers; [ diadatp ]; + maintainers = with maintainers; [ diadatp ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/by-name/ms/msedgedriver/package.nix b/pkgs/by-name/ms/msedgedriver/package.nix index d576d98ecea370..c79be902a9b692 100644 --- a/pkgs/by-name/ms/msedgedriver/package.nix +++ b/pkgs/by-name/ms/msedgedriver/package.nix @@ -67,12 +67,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver"; description = "WebDriver implementation that controls an Edge browser running on the local machine"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ cholli ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = with maintainers; [ cholli ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/ms/msieve/package.nix b/pkgs/by-name/ms/msieve/package.nix index 2562eea0c80ba9..f7fa2e2b1476f8 100644 --- a/pkgs/by-name/ms/msieve/package.nix +++ b/pkgs/by-name/ms/msieve/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { cp msieve $out/bin/ ''; - meta = { + meta = with lib; { description = "C library implementing a suite of algorithms to factor large integers"; mainProgram = "msieve"; - license = lib.licenses.publicDomain; + license = licenses.publicDomain; homepage = "http://msieve.sourceforge.net/"; - maintainers = [ lib.maintainers.roconnor ]; - platforms = [ "x86_64-linux" ] ++ lib.platforms.darwin; + maintainers = [ maintainers.roconnor ]; + platforms = [ "x86_64-linux" ] ++ platforms.darwin; }; } diff --git a/pkgs/by-name/mt/mt-st/package.nix b/pkgs/by-name/mt/mt-st/package.nix index 532598a2e28445..1a4f348de6fcdf 100644 --- a/pkgs/by-name/mt/mt-st/package.nix +++ b/pkgs/by-name/mt/mt-st/package.nix @@ -18,14 +18,14 @@ stdenv.mkDerivation rec { "EXEC_PREFIX=$(out)" ]; - meta = { + meta = with lib; { description = "Magnetic Tape control tools for Linux"; longDescription = '' Fork of the standard "mt" tool with additional Linux-specific IOCTLs. ''; homepage = "https://github.com/iustin/mt-st"; - license = lib.licenses.gpl2Only; - maintainers = [ lib.maintainers.redvers ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + maintainers = [ maintainers.redvers ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/mt/mtpaint/package.nix b/pkgs/by-name/mt/mtpaint/package.nix index d783ae50f120ff..c13173ba8098eb 100644 --- a/pkgs/by-name/mt/mtpaint/package.nix +++ b/pkgs/by-name/mt/mtpaint/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { "man" ]; - meta = { + meta = with lib; { description = "Simple GTK painting program"; longDescription = '' mtPaint is a simple GTK painting program designed for @@ -56,9 +56,9 @@ stdenv.mkDerivation rec { GNU/Linux, Windows and older PC hardware. ''; homepage = "https://mtpaint.sourceforge.net/"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.vklquevs ]; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = [ maintainers.vklquevs ]; mainProgram = "mtpaint"; }; } diff --git a/pkgs/by-name/mt/mtx/package.nix b/pkgs/by-name/mt/mtx/package.nix index 92ca4d643eafa1..874ca44799f7cf 100644 --- a/pkgs/by-name/mt/mtx/package.nix +++ b/pkgs/by-name/mt/mtx/package.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { doCheck = false; - meta = { + meta = with lib; { description = "Media Changer Tools"; longDescription = '' The mtx command controls single or multi-drive SCSI media changers such as @@ -25,8 +25,8 @@ stdenv.mkDerivation rec { specification. ''; homepage = "https://sourceforge.net/projects/mtx/"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.redvers ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = [ maintainers.redvers ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/mu/multitail/package.nix b/pkgs/by-name/mu/multitail/package.nix index 9bca4a902a187b..5292fda23f0c60 100644 --- a/pkgs/by-name/mu/multitail/package.nix +++ b/pkgs/by-name/mu/multitail/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = { + meta = with lib; { homepage = "https://github.com/folkertvanheusden/multitail"; description = "tail on Steroids"; - maintainers = with lib.maintainers; [ matthiasbeyer ]; - platforms = lib.platforms.unix; - license = lib.licenses.asl20; + maintainers = with maintainers; [ matthiasbeyer ]; + platforms = platforms.unix; + license = licenses.asl20; mainProgram = "multitail"; }; } diff --git a/pkgs/by-name/mu/multivnc/package.nix b/pkgs/by-name/mu/multivnc/package.nix index a17e323628c17c..1a90fffb48c454 100644 --- a/pkgs/by-name/mu/multivnc/package.nix +++ b/pkgs/by-name/mu/multivnc/package.nix @@ -94,11 +94,11 @@ stdenv.mkDerivation { wrapGAppsHook3 ]; - meta = { + meta = with lib; { mainProgram = "multivnc"; description = "Cross-platform Multicast-enabled VNC viewer based on LibVNCClient"; homepage = "https://github.com/bk138/multivnc"; - maintainers = with lib.maintainers; [ rhelmot ]; - license = lib.licenses.gpl3Plus; + maintainers = with maintainers; [ rhelmot ]; + license = licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/mu/muparser/package.nix b/pkgs/by-name/mu/muparser/package.nix index 1d2ff0b6f8b465..ceb3f74a56e716 100644 --- a/pkgs/by-name/mu/muparser/package.nix +++ b/pkgs/by-name/mu/muparser/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { llvmPackages.openmp ]; - meta = { + meta = with lib; { description = "Extensible high performance math expression parser library written in C++"; homepage = "https://beltoforion.de/en/muparser/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ wegank ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ wegank ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/mu/muse-sounds-manager/package.nix b/pkgs/by-name/mu/muse-sounds-manager/package.nix index 8466c767eda1b6..dd9a6d280641a9 100644 --- a/pkgs/by-name/mu/muse-sounds-manager/package.nix +++ b/pkgs/by-name/mu/muse-sounds-manager/package.nix @@ -66,13 +66,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Manage Muse Sounds (Muse Hub) libraries for MuseScore"; homepage = "https://musescore.org/"; - license = lib.licenses.unfree; + license = licenses.unfree; mainProgram = "muse-sounds-manager"; - maintainers = with lib.maintainers; [ orivej ]; + maintainers = with maintainers; [ orivej ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/mu/museum/package.nix b/pkgs/by-name/mu/museum/package.nix index 994826d6d854b4..e8328199db9575 100644 --- a/pkgs/by-name/mu/museum/package.nix +++ b/pkgs/by-name/mu/museum/package.nix @@ -40,15 +40,15 @@ buildGoModule rec { $out/share/museum ''; - meta = { + meta = with lib; { description = "API server for ente.io"; homepage = "https://github.com/ente-io/ente/tree/main/server"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.agpl3Only; + maintainers = with maintainers; [ surfaceflinger pinpox ]; mainProgram = "museum"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/mu/musicpod/package.nix b/pkgs/by-name/mu/musicpod/package.nix index c2a2c3867d9985..5ec980c527f039 100644 --- a/pkgs/by-name/mu/musicpod/package.nix +++ b/pkgs/by-name/mu/musicpod/package.nix @@ -44,12 +44,12 @@ flutter324.buildFlutterApplication rec { install -Dm644 snap/gui/musicpod.png -t $out/share/pixmaps ''; - meta = { + meta = with lib; { description = "Music, radio, television and podcast player"; homepage = "https://github.com/ubuntu-flutter-community/musicpod"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "musicpod"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/mu/musikcube/package.nix b/pkgs/by-name/mu/musikcube/package.nix index 8c59e983398577..6539d963a803fb 100644 --- a/pkgs/by-name/mu/musikcube/package.nix +++ b/pkgs/by-name/mu/musikcube/package.nix @@ -94,15 +94,15 @@ stdenv.mkDerivation (finalAttrs: { install_name_tool -add_rpath $out/share/musikcube $out/share/musikcube/musikcubed ''; - meta = { + meta = with lib; { description = "Terminal-based music player, library, and streaming audio server"; homepage = "https://musikcube.com/"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ aanderse afh ]; mainProgram = "musikcube"; - license = lib.licenses.bsd3; - platforms = lib.platforms.all; + license = licenses.bsd3; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/mu/musly/package.nix b/pkgs/by-name/mu/musly/package.nix index 07cb806a21f084..d6f0cd71798dac 100644 --- a/pkgs/by-name/mu/musly/package.nix +++ b/pkgs/by-name/mu/musly/package.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation { doCheck = true; - meta = { + meta = with lib; { homepage = "https://www.musly.org"; description = "Fast and high-quality audio music similarity library written in C/C++"; longDescription = '' @@ -64,9 +64,9 @@ stdenv.mkDerivation { or try the command line application included in the package and start generating some automatic music playlists right away. ''; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ ggpeti ]; - platforms = lib.platforms.unix; + license = licenses.mpl20; + maintainers = with maintainers; [ ggpeti ]; + platforms = platforms.unix; mainProgram = "musly"; }; } diff --git a/pkgs/by-name/mv/mvfst/package.nix b/pkgs/by-name/mv/mvfst/package.nix index b6df17c6a5a7f8..149e0dbd6edf37 100644 --- a/pkgs/by-name/mv/mvfst/package.nix +++ b/pkgs/by-name/mv/mvfst/package.nix @@ -129,12 +129,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Implementation of the QUIC transport protocol"; homepage = "https://github.com/facebook/mvfst"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ ris emily techknowlogick diff --git a/pkgs/by-name/my/myanon/package.nix b/pkgs/by-name/my/myanon/package.nix index 443ab1d6f5b80e..61abfc1226caae 100644 --- a/pkgs/by-name/my/myanon/package.nix +++ b/pkgs/by-name/my/myanon/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation (finalAttrs: { bison ]; - meta = { + meta = with lib; { description = "Myanon is a mysqldump anonymizer, reading a dump from stdin, and producing on the fly an anonymized version to stdout"; homepage = "https://ppomes.github.io/myanon/"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "myanon"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/my/mybbscan/package.nix b/pkgs/by-name/my/mybbscan/package.nix index 193b0ac3c9b487..d30bf0bcd7efb9 100644 --- a/pkgs/by-name/my/mybbscan/package.nix +++ b/pkgs/by-name/my/mybbscan/package.nix @@ -33,14 +33,14 @@ python3Packages.buildPythonPackage rec { --add-flags "$out/share/mybbscan/scan.py" ''; - meta = { + meta = with lib; { description = "Scans plugins directory for possible vulnerable plugins"; homepage = "https://github.com/0xB9/MyBBscan"; # https://github.com/0xB9/MyBBscan/issues/12 - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ tochiaha ]; + license = licenses.unfree; + maintainers = with maintainers; [ tochiaha ]; mainProgram = "mybbscan"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - platforms = lib.platforms.all; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/my/mycli/package.nix b/pkgs/by-name/my/mycli/package.nix index 41920ba2b280f6..571e9347ba8064 100644 --- a/pkgs/by-name/my/mycli/package.nix +++ b/pkgs/by-name/my/mycli/package.nix @@ -50,7 +50,7 @@ python3Packages.buildPythonApplication rec { "mycli/packages/paramiko_stub/__init__.py" ]; - meta = { + meta = with lib; { description = "Command-line interface for MySQL"; mainProgram = "mycli"; longDescription = '' @@ -58,7 +58,7 @@ python3Packages.buildPythonApplication rec { syntax highlighting. ''; homepage = "http://mycli.net"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ jojosch ]; + license = licenses.bsd3; + maintainers = with maintainers; [ jojosch ]; }; } diff --git a/pkgs/by-name/my/mylvmbackup/package.nix b/pkgs/by-name/my/mylvmbackup/package.nix index b45d653fe0453a..0f207d4ff0004c 100644 --- a/pkgs/by-name/my/mylvmbackup/package.nix +++ b/pkgs/by-name/my/mylvmbackup/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { }" ''; - meta = { + meta = with lib; { homepage = "https://www.lenzg.net/mylvmbackup/"; description = "Tool for quickly creating full physical backups of a MySQL server's data files"; mainProgram = "mylvmbackup"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ ryantm ]; - platforms = with lib.platforms; linux; + license = licenses.gpl2Only; + maintainers = with maintainers; [ ryantm ]; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/my/mypaint/package.nix b/pkgs/by-name/my/mypaint/package.nix index 1bd95b060598db..0366c2484f2fb5 100644 --- a/pkgs/by-name/my/mypaint/package.nix +++ b/pkgs/by-name/my/mypaint/package.nix @@ -142,11 +142,11 @@ buildPythonApplication rec { runHook postCheck ''; - meta = { + meta = with lib; { description = "Graphics application for digital painters"; homepage = "http://mypaint.org/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ jtojnar ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ jtojnar ]; }; } diff --git a/pkgs/by-name/my/mysql-workbench/package.nix b/pkgs/by-name/my/mysql-workbench/package.nix index d59f60816cea40..e3784196f0e05b 100644 --- a/pkgs/by-name/my/mysql-workbench/package.nix +++ b/pkgs/by-name/my/mysql-workbench/package.nix @@ -172,7 +172,7 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = { + meta = with lib; { description = "Visual MySQL database modeling, administration and querying tool"; longDescription = '' MySQL Workbench is a modeling tool that allows you to design @@ -181,9 +181,9 @@ stdenv.mkDerivation (finalAttrs: { and execute SQL queries. ''; homepage = "http://wb.mysql.com/"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; mainProgram = "mysql-workbench"; - maintainers = with lib.maintainers; [ tomasajt ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ tomasajt ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/my/mysql2pgsql/package.nix b/pkgs/by-name/my/mysql2pgsql/package.nix index 47c834240afd91..a62e488243e92c 100644 --- a/pkgs/by-name/my/mysql2pgsql/package.nix +++ b/pkgs/by-name/my/mysql2pgsql/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { mv {,$out/bin/}mysql2psql ''; - meta = { + meta = with lib; { description = "Convert MySQL dump files to PostgreSQL-loadable files"; homepage = "https://pgfoundry.org/projects/mysql2pgsql/"; - license = lib.licenses.bsdOriginal; + license = licenses.bsdOriginal; mainProgram = "mysql2psql"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/n9/n98-magerun/package.nix b/pkgs/by-name/n9/n98-magerun/package.nix index c7012f32b1ebae..3ea26ddec59be2 100644 --- a/pkgs/by-name/n9/n98-magerun/package.nix +++ b/pkgs/by-name/n9/n98-magerun/package.nix @@ -26,12 +26,12 @@ php81.buildComposerProject (finalAttrs: { ]; }; - meta = { + meta = with lib; { changelog = "https://magerun.net/category/magerun/"; description = "Swiss army knife for Magento1/OpenMage developers"; homepage = "https://magerun.net/"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "n98-magerun"; - maintainers = lib.teams.php.members; + maintainers = teams.php.members; }; }) diff --git a/pkgs/by-name/n9/n98-magerun2/package.nix b/pkgs/by-name/n9/n98-magerun2/package.nix index 62a7b565b408dc..28ce6e6428814a 100644 --- a/pkgs/by-name/n9/n98-magerun2/package.nix +++ b/pkgs/by-name/n9/n98-magerun2/package.nix @@ -22,12 +22,12 @@ php.buildComposerProject2 (finalAttrs: { versionCheckProgramArg = "--version"; doInstallCheck = true; - meta = { + meta = with lib; { changelog = "https://magerun.net/category/magerun/"; description = "Swiss army knife for Magento2 developers"; homepage = "https://magerun.net/"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "n98-magerun2"; - maintainers = lib.teams.php.members; + maintainers = teams.php.members; }; }) diff --git a/pkgs/by-name/na/naev/package.nix b/pkgs/by-name/na/naev/package.nix index 9f52a1b623cbc6..8e497c65520c9c 100644 --- a/pkgs/by-name/na/naev/package.nix +++ b/pkgs/by-name/na/naev/package.nix @@ -79,12 +79,12 @@ stdenv.mkDerivation rec { patchShebangs --build dat/outfits/bioship/generate.py utils/build/*.py utils/*.py ''; - meta = { + meta = with lib; { description = "2D action/rpg space game"; mainProgram = "naev"; homepage = "http://www.naev.org"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ralismark ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ ralismark ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/na/naja/package.nix b/pkgs/by-name/na/naja/package.nix index a64b60b2513096..f6393dbb190f3a 100644 --- a/pkgs/by-name/na/naja/package.nix +++ b/pkgs/by-name/na/naja/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation { doCheck = true; - meta = { + meta = with lib; { description = "Structural Netlist API (and more) for EDA post synthesis flow development"; homepage = "https://github.com/najaeda/naja"; - license = lib.licenses.asl20; - maintainers = lib.teams.ngi.members; + license = licenses.asl20; + maintainers = teams.ngi.members; mainProgram = "naja_edit"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/na/nanoblogger/package.nix b/pkgs/by-name/na/nanoblogger/package.nix index db9b13872a0158..fa1cf0f82cd951 100644 --- a/pkgs/by-name/na/nanoblogger/package.nix +++ b/pkgs/by-name/na/nanoblogger/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { chmod 755 $out/bin/nb ''; - meta = { + meta = with lib; { description = "Small weblog engine written in Bash for the command line"; homepage = "https://nanoblogger.sourceforge.net/"; - license = lib.licenses.gpl2; + license = licenses.gpl2; mainProgram = "nb"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/na/nanoboyadvance/package.nix b/pkgs/by-name/na/nanoboyadvance/package.nix index 7edf601090d8f8..8dc4d7e16c3140 100644 --- a/pkgs/by-name/na/nanoboyadvance/package.nix +++ b/pkgs/by-name/na/nanoboyadvance/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeBool "PORTABLE_MODE" false) ]; - meta = { + meta = with lib; { description = "Cycle-accurate Nintendo Game Boy Advance emulator"; homepage = "https://github.com/nba-emu/NanoBoyAdvance"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "NanoBoyAdvance"; - maintainers = with lib.maintainers; [ tomasajt ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ tomasajt ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/na/nanorc/package.nix b/pkgs/by-name/na/nanorc/package.nix index ed3d734f58656b..e5e16f0aacd859 100644 --- a/pkgs/by-name/na/nanorc/package.nix +++ b/pkgs/by-name/na/nanorc/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { fi ''; - meta = { + meta = with lib; { description = "Improved Nano Syntax Highlighting Files"; homepage = "https://github.com/scopatz/nanorc"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ nequissimus ]; - platforms = lib.platforms.all; + license = licenses.gpl3; + maintainers = with maintainers; [ nequissimus ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/na/nanotts/package.nix b/pkgs/by-name/na/nanotts/package.nix index c1a246a67262e2..8f6bec98142200 100644 --- a/pkgs/by-name/na/nanotts/package.nix +++ b/pkgs/by-name/na/nanotts/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation { --set ALSA_PLUGIN_DIR ${alsa-plugins}/lib/alsa-lib ''; - meta = { + meta = with lib; { description = "Speech synthesizer commandline utility that improves pico2wave, included with SVOX PicoTTS"; homepage = "https://github.com/gmn/nanotts"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.strikerlulu ]; - platforms = lib.platforms.linux; + license = licenses.asl20; + maintainers = [ maintainers.strikerlulu ]; + platforms = platforms.linux; mainProgram = "nanotts"; }; } diff --git a/pkgs/by-name/na/nap/package.nix b/pkgs/by-name/na/nap/package.nix index 68d344d3a33f22..ee6e39a157670e 100644 --- a/pkgs/by-name/na/nap/package.nix +++ b/pkgs/by-name/na/nap/package.nix @@ -19,12 +19,12 @@ buildGoModule rec { excludedPackages = ".nap"; - meta = { + meta = with lib; { description = "Code snippets in your terminal 🛌"; mainProgram = "nap"; homepage = "https://github.com/maaslalani/nap"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ phdcybersec maaslalani ]; diff --git a/pkgs/by-name/na/narrowlink/package.nix b/pkgs/by-name/na/narrowlink/package.nix index f0e5a58b4c184c..8c158f85d8b383 100644 --- a/pkgs/by-name/na/narrowlink/package.nix +++ b/pkgs/by-name/na/narrowlink/package.nix @@ -28,14 +28,14 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk.frameworks.Security ]; - meta = { + meta = with lib; { description = "Self-hosted solution to enable secure connectivity between devices across restricted networks like NAT or firewalls"; homepage = "https://github.com/narrowlink/narrowlink"; - license = with lib.licenses; [ + license = with licenses; [ agpl3Only mpl20 ]; # the gateway component is AGPLv3, the rest is MPLv2 - maintainers = with lib.maintainers; [ dit7ya ]; + maintainers = with maintainers; [ dit7ya ]; mainProgram = "narrowlink"; }; } diff --git a/pkgs/by-name/na/nas/package.nix b/pkgs/by-name/na/nas/package.nix index ff2ce23c8bc049..ac1f10828fa242 100644 --- a/pkgs/by-name/na/nas/package.nix +++ b/pkgs/by-name/na/nas/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation (finalAttrs: { rm -fr $out/nix ''; - meta = { + meta = with lib; { homepage = "http://radscan.com/nas.html"; description = "Network transparent, client/server audio transport system"; - license = lib.licenses.mit; + license = licenses.mit; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/na/navicat-premium/package.nix b/pkgs/by-name/na/navicat-premium/package.nix index 470866aa9e5283..1bf251c7d917bc 100644 --- a/pkgs/by-name/na/navicat-premium/package.nix +++ b/pkgs/by-name/na/navicat-premium/package.nix @@ -34,13 +34,13 @@ appimageTools.wrapType2 { --replace-fail "Exec=navicat" "Exec=navicat-premium" ''; - meta = { + meta = with lib; { homepage = "https://www.navicat.com/products/navicat-premium"; changelog = "https://www.navicat.com/products/navicat-premium-release-note"; description = "Database development tool that allows you to simultaneously connect to many databases"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ aucub ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = with maintainers; [ aucub ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/nb/nbd/package.nix b/pkgs/by-name/nb/nbd/package.nix index 9a3c6b02540a44..bce08db0d499ff 100644 --- a/pkgs/by-name/nb/nbd/package.nix +++ b/pkgs/by-name/nb/nbd/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { test = nixosTests.nbd; }; - meta = { + meta = with lib; { homepage = "https://nbd.sourceforge.io/"; description = "Map arbitrary files as block devices over the network"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ nickcao ]; + license = licenses.gpl2Only; + platforms = platforms.unix; + maintainers = with maintainers; [ nickcao ]; }; } diff --git a/pkgs/by-name/nb/nbdkit/package.nix b/pkgs/by-name/nb/nbdkit/package.nix index 8d1ab5b3c89d89..16a94d2f5425d1 100644 --- a/pkgs/by-name/nb/nbdkit/package.nix +++ b/pkgs/by-name/nb/nbdkit/package.nix @@ -89,12 +89,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; - meta = { + meta = with lib; { homepage = "https://gitlab.com/nbdkit/nbdkit"; description = "NBD server with stable plugin ABI and permissive license"; - license = with lib.licenses; bsd3; - maintainers = with lib.maintainers; [ lukts30 ]; - platforms = lib.platforms.unix; + license = with licenses; bsd3; + maintainers = with maintainers; [ lukts30 ]; + platforms = platforms.unix; mainProgram = "nbdkit"; }; }) diff --git a/pkgs/by-name/nb/nbfc-linux/package.nix b/pkgs/by-name/nb/nbfc-linux/package.nix index 2ae265b615dbbc..83e1c1fae39de4 100644 --- a/pkgs/by-name/nb/nbfc-linux/package.nix +++ b/pkgs/by-name/nb/nbfc-linux/package.nix @@ -24,15 +24,15 @@ stdenv.mkDerivation (finalAttrs: { "--bindir=${placeholder "out"}/bin" ]; - meta = { + meta = with lib; { description = "C port of Stefan Hirschmann's NoteBook FanControl"; longDescription = '' nbfc-linux provides fan control service for notebooks ''; homepage = "https://github.com/nbfc-linux/nbfc-linux"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.Celibistrial ]; + license = licenses.gpl3; + maintainers = [ maintainers.Celibistrial ]; mainProgram = "nbfc"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/nb/nbqa/package.nix b/pkgs/by-name/nb/nbqa/package.nix index 900e4f2d2e46eb..fbc6f6a26a5615 100644 --- a/pkgs/by-name/nb/nbqa/package.nix +++ b/pkgs/by-name/nb/nbqa/package.nix @@ -109,12 +109,12 @@ let updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { homepage = "https://github.com/nbQA-dev/nbQA"; changelog = "https://nbqa.readthedocs.io/en/latest/history.html"; description = "Run ruff, isort, pyupgrade, mypy, pylint, flake8, black, blacken-docs, and more on Jupyter Notebooks"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ l0b0 ]; + license = licenses.mit; + maintainers = with maintainers; [ l0b0 ]; mainProgram = "nbqa"; }; }; diff --git a/pkgs/by-name/nb/nbsdgames/package.nix b/pkgs/by-name/nb/nbsdgames/package.nix index 55269460183395..9471bd8bf0bcf6 100644 --- a/pkgs/by-name/nb/nbsdgames/package.nix +++ b/pkgs/by-name/nb/nbsdgames/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation (finalAttrs: { installManPage man/* ''; - meta = { + meta = with lib; { description = "A package of 18 text-based modern games"; homepage = "https://github.com/abakh/nbsdgames"; - license = lib.licenses.cc0; - maintainers = with lib.maintainers; [ sarcasticadmin ]; + license = licenses.cc0; + maintainers = with maintainers; [ sarcasticadmin ]; mainProgram = "nbsdgames"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/nc/nc4nix/package.nix b/pkgs/by-name/nc/nc4nix/package.nix index 7cf9d4f35e5313..96a8947048c858 100644 --- a/pkgs/by-name/nc/nc4nix/package.nix +++ b/pkgs/by-name/nc/nc4nix/package.nix @@ -20,12 +20,12 @@ buildGoModule { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Packaging helper for Nextcloud apps"; mainProgram = "nc4nix"; homepage = "https://github.com/helsinki-systems/nc4nix"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ onny ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ onny ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/nc/ncbi-vdb/package.nix b/pkgs/by-name/nc/ncbi-vdb/package.nix index 1424b3fb81a28a..22692d045096b6 100644 --- a/pkgs/by-name/nc/ncbi-vdb/package.nix +++ b/pkgs/by-name/nc/ncbi-vdb/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation (finalAttrs: { python3 ]; - meta = { + meta = with lib; { homepage = "https://github.com/ncbi/ncbi-vdb"; description = "Libraries for the INSDC Sequence Read Archives"; - license = lib.licenses.ncbiPd; - maintainers = with lib.maintainers; [ t4ccer ]; - platforms = lib.platforms.unix; + license = licenses.ncbiPd; + maintainers = with maintainers; [ t4ccer ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/nc/ncdc/package.nix b/pkgs/by-name/nc/ncdc/package.nix index b1d313868100bb..4ec3b93a800e5b 100644 --- a/pkgs/by-name/nc/ncdc/package.nix +++ b/pkgs/by-name/nc/ncdc/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation (finalAttrs: { configureFlags = [ "--with-geoip" ]; - meta = { + meta = with lib; { changelog = "https://dev.yorhel.nl/ncdc/changes"; description = "Modern and lightweight direct connect client with a friendly ncurses interface"; homepage = "https://dev.yorhel.nl/ncdc"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ehmry ]; + license = licenses.mit; + maintainers = with maintainers; [ ehmry ]; mainProgram = "ncdc"; }; }) diff --git a/pkgs/by-name/nc/nco/package.nix b/pkgs/by-name/nc/nco/package.nix index 4892b28c3e35d6..19467c874b6e5d 100644 --- a/pkgs/by-name/nc/nco/package.nix +++ b/pkgs/by-name/nc/nco/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "NetCDF Operator toolkit"; homepage = "https://nco.sourceforge.net/"; - license = lib.licenses.bsd3; + license = licenses.bsd3; longDescription = "The NCO (netCDF Operator) toolkit manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5"; - maintainers = with lib.maintainers; [ bzizou ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ bzizou ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/nc/ncps/package.nix b/pkgs/by-name/nc/ncps/package.nix index b66c1d3ae1f2b5..ca1cd1d951ea4c 100644 --- a/pkgs/by-name/nc/ncps/package.nix +++ b/pkgs/by-name/nc/ncps/package.nix @@ -35,12 +35,12 @@ let cp -r db $out/share/ncps/db ''; - meta = { + meta = with lib; { description = "Nix binary cache proxy service"; homepage = "https://github.com/kalbasit/ncps"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "ncps"; - maintainers = [ lib.maintainers.kalbasit ]; + maintainers = [ maintainers.kalbasit ]; }; }; in diff --git a/pkgs/by-name/nd/ndcurves/package.nix b/pkgs/by-name/nd/ndcurves/package.nix index f61f5a1d179ffa..1f4323717d9a24 100644 --- a/pkgs/by-name/nd/ndcurves/package.nix +++ b/pkgs/by-name/nd/ndcurves/package.nix @@ -63,11 +63,11 @@ stdenv.mkDerivation (finalAttrs: { pythonImportsCheck = [ "ndcurves" ]; - meta = { + meta = with lib; { description = "Library for creating smooth cubic splines"; homepage = "https://github.com/loco-3d/ndcurves"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.nim65s ]; - platforms = lib.platforms.unix; + license = licenses.bsd2; + maintainers = [ maintainers.nim65s ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/nd/ndstool/package.nix b/pkgs/by-name/nd/ndstool/package.nix index 5c3fcf4eaeb3d0..c364eaaa96f2c9 100644 --- a/pkgs/by-name/nd/ndstool/package.nix +++ b/pkgs/by-name/nd/ndstool/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { preConfigure = "./autogen.sh"; - meta = { + meta = with lib; { homepage = "https://github.com/devkitPro/ndstool"; description = "Tool to unpack and repack nds rom"; - maintainers = [ lib.maintainers.marius851000 ]; - license = lib.licenses.gpl3; + maintainers = [ maintainers.marius851000 ]; + license = licenses.gpl3; mainProgram = "ndstool"; }; } diff --git a/pkgs/by-name/ne/nekoray/package.nix b/pkgs/by-name/ne/nekoray/package.nix index 5b648feddb1ccc..63e5e4ad56f537 100644 --- a/pkgs/by-name/ne/nekoray/package.nix +++ b/pkgs/by-name/ne/nekoray/package.nix @@ -151,12 +151,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { description = "Qt based cross-platform GUI proxy configuration manager"; homepage = "https://github.com/MatsuriDayo/nekoray"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "nekoray"; - maintainers = with lib.maintainers; [ tomasajt ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ tomasajt ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ne/neocmakelsp/package.nix b/pkgs/by-name/ne/neocmakelsp/package.nix index ec13603654f69f..285201fa56b495 100644 --- a/pkgs/by-name/ne/neocmakelsp/package.nix +++ b/pkgs/by-name/ne/neocmakelsp/package.nix @@ -28,12 +28,12 @@ rustPlatform.buildRustPackage rec { installShellCompletion --zsh completions/zsh/_neocmakelsp ''; - meta = { + meta = with lib; { description = "CMake lsp based on tower-lsp and treesitter"; homepage = "https://github.com/Decodetalkers/neocmakelsp"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ rewine multivac61 ]; diff --git a/pkgs/by-name/ne/neothesia/package.nix b/pkgs/by-name/ne/neothesia/package.nix index 4d2ab395bf044c..fe5da348c4e024 100644 --- a/pkgs/by-name/ne/neothesia/package.nix +++ b/pkgs/by-name/ne/neothesia/package.nix @@ -64,14 +64,14 @@ rustPlatform.buildRustPackage { install -Dm 644 flatpak/com.github.polymeilex.neothesia.png $out/share/icons/hicolor/256x256/apps/com.github.polymeilex.neothesia.png ''; - meta = { + meta = with lib; { description = "Flashy Synthesia Like Software For Linux, Windows and macOS"; homepage = "https://github.com/PolyMeilex/Neothesia"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; + license = licenses.gpl3; + platforms = platforms.linux; mainProgram = "neothesia"; maintainers = [ - lib.maintainers.naxdy + maintainers.naxdy ]; }; } diff --git a/pkgs/by-name/ne/netbeans/package.nix b/pkgs/by-name/ne/netbeans/package.nix index 2f8be3be2c306b..b004c3fcee8c92 100644 --- a/pkgs/by-name/ne/netbeans/package.nix +++ b/pkgs/by-name/ne/netbeans/package.nix @@ -82,20 +82,20 @@ stdenv.mkDerivation { imagemagick ]; - meta = { + meta = with lib; { description = "Integrated development environment for Java, C, C++ and PHP"; homepage = "https://netbeans.apache.org/"; - license = lib.licenses.asl20; - sourceProvenance = with lib.sourceTypes; [ + license = licenses.asl20; + sourceProvenance = with sourceTypes; [ binaryBytecode binaryNativeCode ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ sander rszibele kashw2 ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "netbeans"; }; } diff --git a/pkgs/by-name/ne/netbox_4_1/package.nix b/pkgs/by-name/ne/netbox_4_1/package.nix index 384e6ddb99f5f3..a319b1c5544a14 100644 --- a/pkgs/by-name/ne/netbox_4_1/package.nix +++ b/pkgs/by-name/ne/netbox_4_1/package.nix @@ -122,12 +122,12 @@ py.pkgs.buildPythonApplication rec { }; }; - meta = { + meta = with lib; { homepage = "https://github.com/netbox-community/netbox"; description = "IP address management (IPAM) and data center infrastructure management (DCIM) tool"; mainProgram = "netbox"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ minijackson raitobezarius ]; diff --git a/pkgs/by-name/ne/netease-cloud-music-gtk/package.nix b/pkgs/by-name/ne/netease-cloud-music-gtk/package.nix index 44325c79b8ac36..a027cc55c2ced3 100644 --- a/pkgs/by-name/ne/netease-cloud-music-gtk/package.nix +++ b/pkgs/by-name/ne/netease-cloud-music-gtk/package.nix @@ -65,15 +65,15 @@ stdenv.mkDerivation (finalAttrs: { gst-plugins-ugly ]); - meta = { + meta = with lib; { description = "Rust + GTK based netease cloud music player"; homepage = "https://github.com/gmg137/netease-cloud-music-gtk"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ diffumist aleksana ]; mainProgram = "netease-cloud-music-gtk4"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ne/netfetch/package.nix b/pkgs/by-name/ne/netfetch/package.nix index 7d4e15037f513b..b377a0dbebdf56 100644 --- a/pkgs/by-name/ne/netfetch/package.nix +++ b/pkgs/by-name/ne/netfetch/package.nix @@ -38,11 +38,11 @@ buildGoModule rec { --zsh <($out/bin/$pname completion zsh) ''; - meta = { + meta = with lib; { homepage = "https://github.com/deggja/netfetch"; description = "Kubernetes tool for scanning clusters for network policies and identifying unprotected workloads"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "netfetch"; - maintainers = with lib.maintainers; [ banh-canh ]; + maintainers = with maintainers; [ banh-canh ]; }; } diff --git a/pkgs/by-name/ne/netkittftp/package.nix b/pkgs/by-name/ne/netkittftp/package.nix index 077438c0e4e7e4..c145e2e6603117 100644 --- a/pkgs/by-name/ne/netkittftp/package.nix +++ b/pkgs/by-name/ne/netkittftp/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { mkdir -p $out/man/man{1,8} $out/sbin $out/bin "; - meta = { + meta = with lib; { description = "Netkit TFTP client and server"; homepage = "ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/"; - license = lib.licenses.bsdOriginal; + license = licenses.bsdOriginal; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/ne/netlistsvg/package.nix b/pkgs/by-name/ne/netlistsvg/package.nix index 3ce13ea48323b8..cafc67b75d17eb 100644 --- a/pkgs/by-name/ne/netlistsvg/package.nix +++ b/pkgs/by-name/ne/netlistsvg/package.nix @@ -52,10 +52,10 @@ buildNpmPackage rec { touch $out ''; - meta = { + meta = with lib; { description = "Draw SVG digital circuits schematics from yosys JSON netlists"; homepage = "https://github.com/nturley/netlistsvg"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pbsds ]; + license = licenses.mit; + maintainers = with maintainers; [ pbsds ]; }; } diff --git a/pkgs/by-name/ne/netrw/package.nix b/pkgs/by-name/ne/netrw/package.nix index 4d89650f29eff6..f6206a8c8f71b6 100644 --- a/pkgs/by-name/ne/netrw/package.nix +++ b/pkgs/by-name/ne/netrw/package.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { sha256 = "1gnl80i5zkyj2lpnb4g0q0r5npba1x6cnafl2jb3i3pzlfz1bndr"; }; - meta = { + meta = with lib; { description = "Simple tool for transporting data over the network"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; homepage = "https://mamuti.net/netrw/index.en.html"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ne/newcomputermodern/package.nix b/pkgs/by-name/ne/newcomputermodern/package.nix index c35f9989e50e24..a46caf33918d55 100644 --- a/pkgs/by-name/ne/newcomputermodern/package.nix +++ b/pkgs/by-name/ne/newcomputermodern/package.nix @@ -36,14 +36,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Computer Modern fonts including matching non-latin alphabets"; homepage = "https://ctan.org/pkg/newcomputermodern"; # "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 = lib.licenses.lppl13c; - maintainers = [ lib.maintainers.drupol ]; - platforms = lib.platforms.all; + license = licenses.lppl13c; + maintainers = [ maintainers.drupol ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ne/newsflash/package.nix b/pkgs/by-name/ne/newsflash/package.nix index 2c8e27e45e1bb2..4666f354d4f298 100644 --- a/pkgs/by-name/ne/newsflash/package.nix +++ b/pkgs/by-name/ne/newsflash/package.nix @@ -95,18 +95,18 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { rev-prefix = "v."; }; - meta = { + meta = with lib; { description = "Modern feed reader designed for the GNOME desktop"; homepage = "https://gitlab.com/news-flash/news_flash_gtk"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; maintainers = - with lib.maintainers; + with maintainers; [ kira-bruneau stunkymonkey ] - ++ lib.teams.gnome-circle.members; - platforms = lib.platforms.unix; + ++ teams.gnome-circle.members; + platforms = platforms.unix; mainProgram = "io.gitlab.news_flash.NewsFlash"; }; }) diff --git a/pkgs/by-name/ne/newsraft/package.nix b/pkgs/by-name/ne/newsraft/package.nix index 5304c5e83ee937..fe39b8dab5dbc0 100644 --- a/pkgs/by-name/ne/newsraft/package.nix +++ b/pkgs/by-name/ne/newsraft/package.nix @@ -38,15 +38,15 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Feed reader for terminal"; homepage = "https://codeberg.org/grisha/newsraft"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ + license = licenses.isc; + maintainers = with maintainers; [ arthsmn luftmensch-luftmensch ]; mainProgram = "newsraft"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ne/nextcloud-whiteboard-server/package.nix b/pkgs/by-name/ne/nextcloud-whiteboard-server/package.nix index e778332cee35c9..f1a15380ec937e 100644 --- a/pkgs/by-name/ne/nextcloud-whiteboard-server/package.nix +++ b/pkgs/by-name/ne/nextcloud-whiteboard-server/package.nix @@ -26,10 +26,10 @@ buildNpmPackage rec { --add-flags "$out/lib/node_modules/whiteboard/websocket_server/main.js" ''; - meta = { + meta = with lib; { description = "Backend server for the Nextcloud Whiteboard app"; homepage = "https://apps.nextcloud.com/apps/whiteboard"; - license = lib.licenses.agpl3Plus; - maintainers = [ lib.maintainers.onny ]; + license = licenses.agpl3Plus; + maintainers = [ maintainers.onny ]; }; } diff --git a/pkgs/by-name/ne/nexuiz/package.nix b/pkgs/by-name/ne/nexuiz/package.nix index 7a608b453b8d26..3a57f44ecf6798 100644 --- a/pkgs/by-name/ne/nexuiz/package.nix +++ b/pkgs/by-name/ne/nexuiz/package.nix @@ -116,10 +116,10 @@ stdenv.mkDerivation { }) ]; - meta = { + meta = with lib; { description = "Free fast-paced first-person shooter"; homepage = "http://www.alientrap.org/games/nexuiz"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ne/nexus/package.nix b/pkgs/by-name/ne/nexus/package.nix index 401511fedd68d8..76bac8db567230 100644 --- a/pkgs/by-name/ne/nexus/package.nix +++ b/pkgs/by-name/ne/nexus/package.nix @@ -54,13 +54,13 @@ stdenv.mkDerivation rec { inherit (nixosTests) nexus; }; - meta = { + meta = with lib; { description = "Repository manager for binary software components"; homepage = "https://www.sonatype.com/products/sonatype-nexus-oss"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.epl10; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.epl10; + platforms = platforms.all; + maintainers = with maintainers; [ aespinosa ironpinguin luftmensch-luftmensch diff --git a/pkgs/by-name/ne/nezha-agent/package.nix b/pkgs/by-name/ne/nezha-agent/package.nix index b6ed4e9f3850d1..5405ff6ffd613d 100644 --- a/pkgs/by-name/ne/nezha-agent/package.nix +++ b/pkgs/by-name/ne/nezha-agent/package.nix @@ -59,11 +59,11 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Agent of Nezha Monitoring"; homepage = "https://github.com/nezhahq/agent"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ moraxyc ]; + license = licenses.asl20; + maintainers = with maintainers; [ moraxyc ]; mainProgram = "nezha-agent"; }; } diff --git a/pkgs/by-name/nf/nfft/package.nix b/pkgs/by-name/nf/nfft/package.nix index 3d3bdb47eec615..9b2d52c76e8151 100644 --- a/pkgs/by-name/nf/nfft/package.nix +++ b/pkgs/by-name/nf/nfft/package.nix @@ -44,10 +44,10 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { description = "Nonequispaced fast Fourier transform"; homepage = "https://www-user.tu-chemnitz.de/~potts/nfft/"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ hmenke ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ hmenke ]; }; }) diff --git a/pkgs/by-name/ng/ngircd/package.nix b/pkgs/by-name/ng/ngircd/package.nix index 76bb5a9225a476..39766df15f0b93 100644 --- a/pkgs/by-name/ng/ngircd/package.nix +++ b/pkgs/by-name/ng/ngircd/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { libiconv ]; - meta = { + meta = with lib; { description = "Next Generation IRC Daemon"; mainProgram = "ngircd"; homepage = "https://ngircd.barton.de"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.all; + license = licenses.gpl2Plus; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ng/ngrok/package.nix b/pkgs/by-name/ng/ngrok/package.nix index a2f5fc51df92ed..47304d5b24fb8d 100644 --- a/pkgs/by-name/ng/ngrok/package.nix +++ b/pkgs/by-name/ng/ngrok/package.nix @@ -64,15 +64,15 @@ stdenv.mkDerivation (finalAttrs: { # Stripping causes SEGFAULT on darwin dontStrip = stdenv.hostPlatform.isDarwin; - meta = { + meta = with lib; { description = "Allows you to expose a web server running on your local machine to the internet"; homepage = "https://ngrok.com/"; downloadPage = "https://ngrok.com/download"; changelog = "https://ngrok.com/docs/agent/changelog/"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + platforms = platforms.unix; + maintainers = with maintainers; [ bobvanderlinden brodes ]; diff --git a/pkgs/by-name/ng/ngrrram/package.nix b/pkgs/by-name/ng/ngrrram/package.nix index 2ae07b76cac799..7fd38a1eb5e8ab 100644 --- a/pkgs/by-name/ng/ngrrram/package.nix +++ b/pkgs/by-name/ng/ngrrram/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "TUI tool to help you type faster and learn new layouts. Includes a free cat"; homepage = "https://github.com/wintermute-cell/ngrrram"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ Guanran928 ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ Guanran928 ]; mainProgram = "ngrrram"; }; } diff --git a/pkgs/by-name/nh/nh/package.nix b/pkgs/by-name/nh/nh/package.nix index a4db4e5d6c8253..67c460ba3798e1 100644 --- a/pkgs/by-name/nh/nh/package.nix +++ b/pkgs/by-name/nh/nh/package.nix @@ -57,12 +57,12 @@ rustPlatform.buildRustPackage { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Yet another nix cli helper"; homepage = "https://github.com/viperML/nh"; - license = lib.licenses.eupl12; + license = licenses.eupl12; mainProgram = "nh"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ drupol viperML ]; diff --git a/pkgs/by-name/ni/nightfox-gtk-theme/package.nix b/pkgs/by-name/ni/nightfox-gtk-theme/package.nix index fd2a32f20c5ea8..f3606a65f36ba5 100644 --- a/pkgs/by-name/ni/nightfox-gtk-theme/package.nix +++ b/pkgs/by-name/ni/nightfox-gtk-theme/package.nix @@ -110,11 +110,11 @@ lib.checkListOfEnum "${pname}: colorVariants" colorVariantList colorVariants lib runHook postInstall ''; - meta = { + meta = with lib; { description = "GTK theme based on the Nightfox colour palette"; homepage = "https://github.com/Fausto-Korpsvart/Nightfox-GTK-Theme"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ d3vil0p3r ]; + license = licenses.gpl3Plus; + platforms = platforms.unix; + maintainers = with maintainers; [ d3vil0p3r ]; }; } diff --git a/pkgs/by-name/ni/nihstro/package.nix b/pkgs/by-name/ni/nihstro/package.nix index d6e962f799e819..cd0aca65f0f49d 100644 --- a/pkgs/by-name/ni/nihstro/package.nix +++ b/pkgs/by-name/ni/nihstro/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { description = "3DS shader assembler and disassembler"; homepage = "https://github.com/neobrain/nihstro"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ getchoo ]; + license = licenses.bsd3; + maintainers = with maintainers; [ getchoo ]; mainProgram = "nihstro-assemble"; - platforms = lib.platforms.unix ++ lib.platforms.windows; + platforms = platforms.unix ++ platforms.windows; }; }) diff --git a/pkgs/by-name/ni/nimlsp/package.nix b/pkgs/by-name/ni/nimlsp/package.nix index 27ea08a571618f..d78c448eb42168 100644 --- a/pkgs/by-name/ni/nimlsp/package.nix +++ b/pkgs/by-name/ni/nimlsp/package.nix @@ -53,10 +53,10 @@ buildNimPackage' (finalAttrs: { doCheck = false; - meta = { + meta = with lib; { description = "Language Server Protocol implementation for Nim"; homepage = "https://github.com/PMunch/nimlsp"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ xtrayambak ]; + license = licenses.mit; + maintainers = with maintainers; [ xtrayambak ]; }; }) diff --git a/pkgs/by-name/ni/nimmm/package.nix b/pkgs/by-name/ni/nimmm/package.nix index 3a5dcb628108a2..26b1407b7333f9 100644 --- a/pkgs/by-name/ni/nimmm/package.nix +++ b/pkgs/by-name/ni/nimmm/package.nix @@ -24,12 +24,12 @@ buildNimPackage (finalAttrs: { pcre ]; - meta = { + meta = with lib; { description = "Terminal file manager for Linux"; mainProgram = "nimmm"; homepage = "https://github.com/joachimschmidt557/nimmm"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.joachimschmidt557 ]; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = [ maintainers.joachimschmidt557 ]; }; }) diff --git a/pkgs/by-name/ni/nitrogen/package.nix b/pkgs/by-name/ni/nitrogen/package.nix index ec57d6c089241b..14956165783744 100644 --- a/pkgs/by-name/ni/nitrogen/package.nix +++ b/pkgs/by-name/ni/nitrogen/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { patchShebangs data/icon-theme-installer ''; - meta = { + meta = with lib; { description = "Wallpaper browser and setter for X11"; longDescription = '' nitrogen is a lightweight utility that can set the root background on X11. @@ -36,9 +36,9 @@ stdenv.mkDerivation rec { and settings are stored in a human-readable config file. ''; homepage = "https://github.com/l3ib/nitrogen"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.auntie ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = [ maintainers.auntie ]; mainProgram = "nitrogen"; }; } diff --git a/pkgs/by-name/ni/nitrokey-fido2-firmware/package.nix b/pkgs/by-name/ni/nitrokey-fido2-firmware/package.nix index 843a3637a85592..aec6255a67ffff 100644 --- a/pkgs/by-name/ni/nitrokey-fido2-firmware/package.nix +++ b/pkgs/by-name/ni/nitrokey-fido2-firmware/package.nix @@ -67,18 +67,18 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Firmware for the Nitrokey FIDO2 device"; homepage = "https://github.com/Nitrokey/nitrokey-fido2-firmware"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ amerino kiike imadnyc ]; - license = with lib.licenses; [ + license = with licenses; [ asl20 mit ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ni/nitrokey-pro-firmware/package.nix b/pkgs/by-name/ni/nitrokey-pro-firmware/package.nix index 8c14178fc74406..a12f7a83715681 100644 --- a/pkgs/by-name/ni/nitrokey-pro-firmware/package.nix +++ b/pkgs/by-name/ni/nitrokey-pro-firmware/package.nix @@ -47,15 +47,15 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Firmware for the Nitrokey Pro device"; homepage = "https://github.com/Nitrokey/nitrokey-pro-firmware"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ imadnyc kiike amerino ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ni/nitrokey-start-firmware/package.nix b/pkgs/by-name/ni/nitrokey-start-firmware/package.nix index f4b20b56ea7143..a1fd16f20a434b 100644 --- a/pkgs/by-name/ni/nitrokey-start-firmware/package.nix +++ b/pkgs/by-name/ni/nitrokey-start-firmware/package.nix @@ -45,15 +45,15 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Firmware for the Nitrokey Start device"; homepage = "https://github.com/Nitrokey/nitrokey-start-firmware"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ amerino imadnyc kiike ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ni/nitrokey-trng-rs232-firmware/package.nix b/pkgs/by-name/ni/nitrokey-trng-rs232-firmware/package.nix index dea4e7e1dbf98a..6d3d34efe4dab2 100644 --- a/pkgs/by-name/ni/nitrokey-trng-rs232-firmware/package.nix +++ b/pkgs/by-name/ni/nitrokey-trng-rs232-firmware/package.nix @@ -28,18 +28,18 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Firmware for the Nitrokey TRNG RS232 device"; longDescription = '' This package does not provide an executable. It should be built using `nix-build -A nitrokey-trng-rs232-firmware` or `nix build nixpkgs#nitrokey-trng-rs232-firmware` and flashed using `libnitrokey` ''; homepage = "https://github.com/Nitrokey/nitrokey-trng-rs232-firmware"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ amerino imadnyc kiike ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ni/nix-binary-cache/package.nix b/pkgs/by-name/ni/nix-binary-cache/package.nix index 68c7f15333d24f..cc78fb7f001ea8 100644 --- a/pkgs/by-name/ni/nix-binary-cache/package.nix +++ b/pkgs/by-name/ni/nix-binary-cache/package.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { chmod a+x "$out/bin/nix-binary-cache-start" ''; - meta = { + meta = with lib; { description = "Set of scripts to serve the Nix store as a binary cache"; longDescription = '' This package installs a CGI script that serves Nix store path in the @@ -63,9 +63,9 @@ stdenv.mkDerivation rec { nix-binary-cache-start that can be run without any setup to launch a binary cache and get the example arguments for its usage. ''; - maintainers = [ lib.maintainers.raskin ]; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.all; + maintainers = [ maintainers.raskin ]; + license = licenses.gpl2Plus; + platforms = platforms.all; hydraPlatforms = [ ]; }; } diff --git a/pkgs/by-name/ni/nix-direnv/package.nix b/pkgs/by-name/ni/nix-direnv/package.nix index ff56c097c29a5a..cf1cb67febe523 100644 --- a/pkgs/by-name/ni/nix-direnv/package.nix +++ b/pkgs/by-name/ni/nix-direnv/package.nix @@ -67,12 +67,12 @@ resholve.mkDerivation rec { }; }; - meta = { + meta = with lib; { description = "Fast, persistent use_nix implementation for direnv"; homepage = "https://github.com/nix-community/nix-direnv"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ mic92 bbenne10 ]; diff --git a/pkgs/by-name/ni/nix-lib-nmd/package.nix b/pkgs/by-name/ni/nix-lib-nmd/package.nix index 4d0ad668ed6717..7daf819c6c7b37 100644 --- a/pkgs/by-name/ni/nix-lib-nmd/package.nix +++ b/pkgs/by-name/ni/nix-lib-nmd/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation { cp -rv * "$out" ''; - meta = { + meta = with lib; { homepage = "https://git.sr.ht/~rycee/nmd"; description = "Documentation framework for projects based on NixOS modules"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ rycee ]; + license = licenses.mit; + maintainers = with maintainers; [ rycee ]; }; } diff --git a/pkgs/by-name/ni/nix-lib-nmt/package.nix b/pkgs/by-name/ni/nix-lib-nmt/package.nix index 5c3888d91d9910..a4ea0cf1edf627 100644 --- a/pkgs/by-name/ni/nix-lib-nmt/package.nix +++ b/pkgs/by-name/ni/nix-lib-nmt/package.nix @@ -26,10 +26,10 @@ stdenv.mkDerivation { cp -rv * "$out" ''; - meta = { + meta = with lib; { homepage = "https://git.sr.ht/~rycee/nmt"; description = "Basic test framework for projects using the Nixpkgs module system"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ rycee ]; + license = licenses.mit; + maintainers = with maintainers; [ rycee ]; }; } diff --git a/pkgs/by-name/ni/nix-plugin-pijul/package.nix b/pkgs/by-name/ni/nix-plugin-pijul/package.nix index c39ef22811182a..f0a31e96b816af 100644 --- a/pkgs/by-name/ni/nix-plugin-pijul/package.nix +++ b/pkgs/by-name/ni/nix-plugin-pijul/package.nix @@ -85,11 +85,11 @@ stdenv.mkDerivation (finalAttrs: { nix_2_24 = localRepoCheck nixVersions.nix_2_24; }; - meta = { + meta = with lib; { description = "Plugin to add Pijul support to the Nix package manager"; homepage = "https://nest.pijul.com/dblsaiko/nix-plugin-pijul"; - license = lib.licenses.lgpl3Plus; - maintainers = [ lib.maintainers.dblsaiko ]; - platforms = lib.platforms.unix; + license = licenses.lgpl3Plus; + maintainers = [ maintainers.dblsaiko ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ni/nix-plugins/package.nix b/pkgs/by-name/ni/nix-plugins/package.nix index bb0c86e7cba68c..c071a9b7a6361a 100644 --- a/pkgs/by-name/ni/nix-plugins/package.nix +++ b/pkgs/by-name/ni/nix-plugins/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { boost ]; - meta = { + meta = with lib; { description = "Collection of miscellaneous plugins for the nix expression language"; homepage = "https://github.com/shlevy/nix-plugins"; - license = lib.licenses.mit; - platforms = lib.platforms.all; + license = licenses.mit; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ni/nix-search-cli/package.nix b/pkgs/by-name/ni/nix-search-cli/package.nix index e5198fb28a7cb1..c061aeac9700c7 100644 --- a/pkgs/by-name/ni/nix-search-cli/package.nix +++ b/pkgs/by-name/ni/nix-search-cli/package.nix @@ -20,12 +20,12 @@ buildGoModule { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "CLI for searching packages on search.nixos.org"; homepage = "https://github.com/peterldowns/nix-search-cli"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ donovanglover ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ donovanglover ]; + platforms = platforms.all; mainProgram = "nix-search"; }; } diff --git a/pkgs/by-name/ni/nix-search/package.nix b/pkgs/by-name/ni/nix-search/package.nix index 9e8342414b5b21..ec5b4cb78be82a 100644 --- a/pkgs/by-name/ni/nix-search/package.nix +++ b/pkgs/by-name/ni/nix-search/package.nix @@ -25,12 +25,12 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Nix-channel-compatible package search"; homepage = "https://github.com/diamondburned/nix-search"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "nix-search"; - maintainers = with lib.maintainers; [ azuwis ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ azuwis ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ni/nix-store-gcs-proxy/package.nix b/pkgs/by-name/ni/nix-store-gcs-proxy/package.nix index b44227c1600c66..d828e27d1e9863 100644 --- a/pkgs/by-name/ni/nix-store-gcs-proxy/package.nix +++ b/pkgs/by-name/ni/nix-store-gcs-proxy/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { "-w" ]; - meta = { + meta = with lib; { description = "HTTP nix store that proxies requests to Google Storage"; mainProgram = "nix-store-gcs-proxy"; homepage = "https://github.com/tweag/nix-store-gcs-proxy"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ zimbatm ]; + license = licenses.asl20; + maintainers = with maintainers; [ zimbatm ]; }; } diff --git a/pkgs/by-name/ni/nix-top/package.nix b/pkgs/by-name/ni/nix-top/package.nix index fa69693781e0bc..5368f0aed7a323 100644 --- a/pkgs/by-name/ni/nix-top/package.nix +++ b/pkgs/by-name/ni/nix-top/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Tracks what nix is building"; homepage = "https://github.com/jerith666/nix-top"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.jerith666 ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = [ maintainers.jerith666 ]; + platforms = platforms.unix; mainProgram = "nix-top"; }; } diff --git a/pkgs/by-name/ni/nix-unit/package.nix b/pkgs/by-name/ni/nix-unit/package.nix index 04c10a01c9ccd2..968c5f1c69db2a 100644 --- a/pkgs/by-name/ni/nix-unit/package.nix +++ b/pkgs/by-name/ni/nix-unit/package.nix @@ -47,15 +47,15 @@ stdenv.mkDerivation (finalAttrs: { wrapProgram "$out/bin/nix-unit" --prefix PATH : ${difftastic}/bin ''; - meta = { + meta = with lib; { description = "Nix unit test runner"; homepage = "https://github.com/nix-community/nix-unit"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ + license = licenses.gpl3; + maintainers = with maintainers; [ mic92 adisbladis ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "nix-unit"; }; }) diff --git a/pkgs/by-name/ni/nixos-enter/package.nix b/pkgs/by-name/ni/nixos-enter/package.nix index 38fe2de663fd37..ef0e9871a15a22 100644 --- a/pkgs/by-name/ni/nixos-enter/package.nix +++ b/pkgs/by-name/ni/nixos-enter/package.nix @@ -24,11 +24,11 @@ substituteAll { installManPage ${./nixos-enter.8} ''; - meta = { + meta = with lib; { description = "Run a command in a NixOS chroot environment"; homepage = "https://github.com/NixOS/nixpkgs/tree/master/pkgs/by-name/ni/nixos-install"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; + license = licenses.mit; + platforms = platforms.linux; mainProgram = "nixos-enter"; }; } diff --git a/pkgs/by-name/ni/nixos-facter/package.nix b/pkgs/by-name/ni/nixos-facter/package.nix index 2e214e010a80d1..3c13559ccbf00c 100644 --- a/pkgs/by-name/ni/nixos-facter/package.nix +++ b/pkgs/by-name/ni/nixos-facter/package.nix @@ -62,12 +62,12 @@ buildGoModule rec { "-X github.com/numtide/nixos-facter/pkg/build.System=${stdenv.hostPlatform.system}" ]; - meta = { + meta = with lib; { description = "Declarative hardware configuration for NixOS"; homepage = "https://github.com/numtide/nixos-facter"; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.brianmcgee ]; + license = licenses.gpl3Plus; + maintainers = [ maintainers.brianmcgee ]; mainProgram = "nixos-facter"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ni/nixos-option/package.nix b/pkgs/by-name/ni/nixos-option/package.nix index cd936c7380a6e3..2fd2f97e75ad2e 100644 --- a/pkgs/by-name/ni/nixos-option/package.nix +++ b/pkgs/by-name/ni/nixos-option/package.nix @@ -61,11 +61,11 @@ stdenvNoCC.mkDerivation { ''; }; - meta = { + meta = with lib; { description = "Evaluate NixOS configuration and return the properties of given option"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "nixos-option"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ FireyFly azuwis aleksana diff --git a/pkgs/by-name/ni/nixos-render-docs-redirects/package.nix b/pkgs/by-name/ni/nixos-render-docs-redirects/package.nix index a473fd1533ca5d..e5a1546d9da7c7 100644 --- a/pkgs/by-name/ni/nixos-render-docs-redirects/package.nix +++ b/pkgs/by-name/ni/nixos-render-docs-redirects/package.nix @@ -13,10 +13,10 @@ python3.pkgs.buildPythonApplication { pytestCheckHook ]; - meta = { + meta = with lib; { description = "Redirects manipulation for nixos manuals"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ getpsyched ]; + license = licenses.mit; + maintainers = with maintainers; [ getpsyched ]; mainProgram = "redirects"; }; } diff --git a/pkgs/by-name/ni/nixpkgs-openjdk-updater/package.nix b/pkgs/by-name/ni/nixpkgs-openjdk-updater/package.nix index e23d573d96414a..21821803ca9e40 100644 --- a/pkgs/by-name/ni/nixpkgs-openjdk-updater/package.nix +++ b/pkgs/by-name/ni/nixpkgs-openjdk-updater/package.nix @@ -76,11 +76,11 @@ python3Packages.buildPythonApplication { }; }; - meta = { + meta = with lib; { description = "Updater for Nixpkgs OpenJDK packages"; - license = lib.licenses.mit; - sourceProvenance = [ lib.sourceTypes.fromSource ]; - maintainers = [ lib.maintainers.emily ]; + license = licenses.mit; + sourceProvenance = [ sourceTypes.fromSource ]; + maintainers = [ maintainers.emily ]; mainProgram = "nixpkgs-openjdk-updater"; }; } diff --git a/pkgs/by-name/ni/nixtract/package.nix b/pkgs/by-name/ni/nixtract/package.nix index 2885a13f300ded..d2e4694a4b7b40 100644 --- a/pkgs/by-name/ni/nixtract/package.nix +++ b/pkgs/by-name/ni/nixtract/package.nix @@ -47,14 +47,14 @@ rustPlatform.buildRustPackage rec { passthru.tests.version = testers.testVersion { package = nixtract; }; - meta = { + meta = with lib; { description = "CLI tool to extract the graph of derivations from a Nix flake"; homepage = "https://github.com/tweag/nixtract"; - license = with lib.licenses; [ + license = with licenses; [ mit # or asl20 ]; mainProgram = "nixtract"; - maintainers = with lib.maintainers; [ aleksana ]; + maintainers = with maintainers; [ aleksana ]; }; } diff --git a/pkgs/by-name/nj/njam/package.nix b/pkgs/by-name/nj/njam/package.nix index ab96bc160e7c8d..6de7822640eaac 100644 --- a/pkgs/by-name/nj/njam/package.nix +++ b/pkgs/by-name/nj/njam/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { patches = [ ./logfile.patch ]; - meta = { + meta = with lib; { homepage = "https://trackballs.sourceforge.net/"; description = "Cross-platform pacman-like game"; mainProgram = "njam"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/nk/nkf/package.nix b/pkgs/by-name/nk/nkf/package.nix index dfe70aff968ef2..6b866698d76eb2 100644 --- a/pkgs/by-name/nk/nkf/package.nix +++ b/pkgs/by-name/nk/nkf/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { makeFlags = [ "prefix=$(out)" ]; - meta = { + meta = with lib; { description = "Tool for converting encoding of Japanese text"; mainProgram = "nkf"; homepage = "https://nkf.osdn.jp/"; - license = lib.licenses.zlib; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.auntie ]; + license = licenses.zlib; + platforms = platforms.unix; + maintainers = [ maintainers.auntie ]; }; } diff --git a/pkgs/by-name/nl/nload/package.nix b/pkgs/by-name/nl/nload/package.nix index e7b22ce59db23f..00a1f4f01f6fa5 100644 --- a/pkgs/by-name/nl/nload/package.nix +++ b/pkgs/by-name/nl/nload/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = lib.optional stdenv.hostPlatform.isDarwin autoreconfHook; buildInputs = [ ncurses ]; - meta = { + meta = with lib; { description = "Monitors network traffic and bandwidth usage with ncurses graphs"; longDescription = '' nload is a console application which monitors network traffic and @@ -55,9 +55,9 @@ stdenv.mkDerivation rec { transfered data and min/max network usage. ''; homepage = "http://www.roland-riegel.de/nload/index.html"; - license = lib.licenses.gpl2; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.devhell ]; + license = licenses.gpl2; + platforms = platforms.unix; + maintainers = [ maintainers.devhell ]; mainProgram = "nload"; }; } diff --git a/pkgs/by-name/nl/nlohmann_json_schema_validator/package.nix b/pkgs/by-name/nl/nlohmann_json_schema_validator/package.nix index 23498cb57ad80c..a977cb9bf71339 100644 --- a/pkgs/by-name/nl/nlohmann_json_schema_validator/package.nix +++ b/pkgs/by-name/nl/nlohmann_json_schema_validator/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ nlohmann_json ]; nativeBuildInputs = [ cmake ]; - meta = { + meta = with lib; { description = "JSON schema validator for JSON for Modern C++"; homepage = "https://github.com/pboettch/json-schema-validator"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ br337 ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ br337 ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/nl/nlojet/package.nix b/pkgs/by-name/nl/nlojet/package.nix index 501e80f2ddd8ca..b1f2cb4cd4202e 100644 --- a/pkgs/by-name/nl/nlojet/package.nix +++ b/pkgs/by-name/nl/nlojet/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64 ) "-Dfinite=isfinite"; - meta = { + meta = with lib; { homepage = "http://www.desy.de/~znagy/Site/NLOJet++.html"; - license = lib.licenses.gpl2; + license = licenses.gpl2; description = "Implementation of calculation of the hadron jet cross sections"; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ veprbl ]; + platforms = platforms.unix; + maintainers = with maintainers; [ veprbl ]; }; } diff --git a/pkgs/by-name/nn/nntp-proxy/package.nix b/pkgs/by-name/nn/nntp-proxy/package.nix index 48c5bc78edf1ea..34641aa323d687 100644 --- a/pkgs/by-name/nn/nntp-proxy/package.nix +++ b/pkgs/by-name/nn/nntp-proxy/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation { --replace gcc cc ''; - meta = { + meta = with lib; { description = "Simple NNTP proxy with SSL support"; homepage = "https://github.com/nieluj/nntp-proxy"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.fadenb ]; - platforms = lib.platforms.all; + license = licenses.gpl2Plus; + maintainers = [ maintainers.fadenb ]; + platforms = platforms.all; mainProgram = "nntp-proxy"; }; } diff --git a/pkgs/by-name/no/nodemon/package.nix b/pkgs/by-name/no/nodemon/package.nix index fa1317e6f8412e..0f94d221f7230c 100644 --- a/pkgs/by-name/no/nodemon/package.nix +++ b/pkgs/by-name/no/nodemon/package.nix @@ -22,11 +22,11 @@ buildNpmPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Simple monitor script for use during development of a Node.js app"; mainProgram = "nodemon"; homepage = "https://nodemon.io"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pyrox0 ]; + license = licenses.mit; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/by-name/no/nomnatong/package.nix b/pkgs/by-name/no/nomnatong/package.nix index c4e2fe59218d20..0ff85b0523052b 100644 --- a/pkgs/by-name/no/nomnatong/package.nix +++ b/pkgs/by-name/no/nomnatong/package.nix @@ -45,11 +45,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "http://nomfoundation.org/nom-tools/Nom-Font"; description = "Hán-Nôm Coded Character Set and Nom Na Tong Regular Reference Font"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/no/nosql-booster/package.nix b/pkgs/by-name/no/nosql-booster/package.nix index 7f0a145a5e9f87..c71a4f7d578a5a 100644 --- a/pkgs/by-name/no/nosql-booster/package.nix +++ b/pkgs/by-name/no/nosql-booster/package.nix @@ -11,12 +11,12 @@ let url = "https://s3.nosqlbooster.com/download/releasesv8/nosqlbooster4mongo-${version}.AppImage"; sha256 = "sha256-ZJdCHOodJel7Apb//s96vrf1Ruml/NLUMQ9eFFR9tfU="; }; - meta = { + meta = with lib; { homepage = "https://nosqlbooster.com/"; description = "GUI tool for MongoDB Server"; changelog = "https://nosqlbooster.com/blog/announcing-nosqlbooster-81/#version-819"; - maintainers = with lib.maintainers; [ guillaumematheron ]; - license = lib.licenses.unfree; + maintainers = with maintainers; [ guillaumematheron ]; + license = licenses.unfree; platforms = [ "x86_64-linux" ]; mainProgram = "nosql-booster"; }; diff --git a/pkgs/by-name/no/nosql-workbench/package.nix b/pkgs/by-name/no/nosql-workbench/package.nix index d3d3d4c4f4b9c6..21d84e12f3e031 100644 --- a/pkgs/by-name/no/nosql-workbench/package.nix +++ b/pkgs/by-name/no/nosql-workbench/package.nix @@ -28,12 +28,12 @@ let } .${stdenv.system} or (throw "Unsupported system: ${stdenv.system}"); - meta = { + meta = with lib; { description = "Visual tool that provides data modeling, data visualization, and query development features to help you design, create, query, and manage DynamoDB tables"; homepage = "https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/workbench.html"; changelog = "https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkbenchDocumentHistory.html"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ DataHearth ]; + license = licenses.unfree; + maintainers = with maintainers; [ DataHearth ]; platforms = [ "aarch64-darwin" "x86_64-darwin" diff --git a/pkgs/by-name/no/notation/package.nix b/pkgs/by-name/no/notation/package.nix index 03bee6393442f5..70f50ef4eb0ed8 100644 --- a/pkgs/by-name/no/notation/package.nix +++ b/pkgs/by-name/no/notation/package.nix @@ -46,11 +46,11 @@ buildGoModule rec { command = "notation version"; }; - meta = { + meta = with lib; { description = "CLI tool to sign and verify OCI artifacts and container images"; homepage = "https://notaryproject.dev/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.asl20; + maintainers = with maintainers; [ aaronjheng ]; mainProgram = "notation"; }; } diff --git a/pkgs/by-name/no/notemap/package.nix b/pkgs/by-name/no/notemap/package.nix index db1a555e353f4a..75372a04113ebe 100644 --- a/pkgs/by-name/no/notemap/package.nix +++ b/pkgs/by-name/no/notemap/package.nix @@ -23,16 +23,16 @@ stdenv.mkDerivation rec { libressl ]; - meta = { + meta = with lib; { description = "Mirror notes to IMAP"; longDescription = '' notemap(1) mirrors text files to an IMAP mailbox in a format compatible with the iOS Notes app. It's intended to make notes managed in git(1) easily accessible from the phone. ''; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.sternenseemann ]; + license = licenses.gpl3Plus; + maintainers = [ maintainers.sternenseemann ]; homepage = "https://git.causal.agency/notemap/about/"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/no/notes/package.nix b/pkgs/by-name/no/notes/package.nix index af926182fa91bd..a14110d4db8492 100644 --- a/pkgs/by-name/no/notes/package.nix +++ b/pkgs/by-name/no/notes/package.nix @@ -43,12 +43,12 @@ stdenv'.mkDerivation (finalAttrs: { mv $out/bin/Notes.app $out/Applications ''; - meta = { + meta = with lib; { description = "Fast and beautiful note-taking app"; homepage = "https://github.com/nuttyartist/notes"; mainProgram = "notes"; - license = lib.licenses.mpl20; - platforms = lib.platforms.linux ++ lib.platforms.darwin; - maintainers = with lib.maintainers; [ zendo ]; + license = licenses.mpl20; + platforms = platforms.linux ++ platforms.darwin; + maintainers = with maintainers; [ zendo ]; }; }) diff --git a/pkgs/by-name/no/notify-osd/package.nix b/pkgs/by-name/no/notify-osd/package.nix index c6d0758fcfe23a..cbdfcc313eca0b 100644 --- a/pkgs/by-name/no/notify-osd/package.nix +++ b/pkgs/by-name/no/notify-osd/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation (finalAttrs: { --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" ''; - meta = { + meta = with lib; { description = "Daemon that displays passive pop-up notifications"; mainProgram = "notify-osd"; homepage = "https://launchpad.net/notify-osd"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ bodil ]; - platforms = lib.platforms.linux; + license = licenses.gpl3; + maintainers = with maintainers; [ bodil ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/no/notion-app/package.nix b/pkgs/by-name/no/notion-app/package.nix index 544d6454528ee7..e9034dc4088c11 100644 --- a/pkgs/by-name/no/notion-app/package.nix +++ b/pkgs/by-name/no/notion-app/package.nix @@ -28,15 +28,15 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = ./update/update.mjs; - meta = { + meta = with lib; { description = "App to write, plan, collaborate, and get organised"; homepage = "https://www.notion.so/"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ xiaoxiangmoe ]; + license = licenses.unfree; + maintainers = with maintainers; [ xiaoxiangmoe ]; platforms = [ "x86_64-darwin" "aarch64-darwin" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/no/notion/package.nix b/pkgs/by-name/no/notion/package.nix index ed09967977b037..b29698d1c9e483 100644 --- a/pkgs/by-name/no/notion/package.nix +++ b/pkgs/by-name/no/notion/package.nix @@ -84,15 +84,15 @@ stdenv.mkDerivation (finalAttrs: { }" \ ''; - meta = { + meta = with lib; { description = "Tiling tabbed window manager"; homepage = "https://notionwm.net"; - license = lib.licenses.lgpl21; + license = licenses.lgpl21; mainProgram = "notion"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ jfb raboof ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/no/noto-fonts-color-emoji/package.nix b/pkgs/by-name/no/noto-fonts-color-emoji/package.nix index 39862609e894d5..bb7ebeb0f359ea 100644 --- a/pkgs/by-name/no/noto-fonts-color-emoji/package.nix +++ b/pkgs/by-name/no/noto-fonts-color-emoji/package.nix @@ -66,15 +66,15 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Color emoji font"; homepage = "https://github.com/googlefonts/noto-emoji"; - license = with lib.licenses; [ + license = with licenses; [ ofl asl20 ]; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + platforms = platforms.all; + maintainers = with maintainers; [ mathnerd314 sternenseemann ]; diff --git a/pkgs/by-name/no/noto-fonts-emoji-blob-bin/package.nix b/pkgs/by-name/no/noto-fonts-emoji-blob-bin/package.nix index ffd2bd18c00e91..26c685bca2efdb 100644 --- a/pkgs/by-name/no/noto-fonts-emoji-blob-bin/package.nix +++ b/pkgs/by-name/no/noto-fonts-emoji-blob-bin/package.nix @@ -21,15 +21,15 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Noto Emoji with extended Blob support"; homepage = "https://github.com/C1710/blobmoji"; - license = with lib.licenses; [ + license = with licenses; [ ofl asl20 ]; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + platforms = platforms.all; + maintainers = with maintainers; [ rileyinman jk ]; diff --git a/pkgs/by-name/no/notonoto/package.nix b/pkgs/by-name/no/notonoto/package.nix index ef4447f866b378..6eb9b37e8aea9c 100644 --- a/pkgs/by-name/no/notonoto/package.nix +++ b/pkgs/by-name/no/notonoto/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Programming font that combines Noto Sans Mono and Noto Sans JP"; homepage = "https://github.com/yuru7/NOTONOTO"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ genga898 ]; + license = licenses.ofl; + maintainers = with maintainers; [ genga898 ]; mainProgram = "notonoto"; }; diff --git a/pkgs/by-name/no/nova-password/package.nix b/pkgs/by-name/no/nova-password/package.nix index 83fde0d4362a1f..1b068388600046 100644 --- a/pkgs/by-name/no/nova-password/package.nix +++ b/pkgs/by-name/no/nova-password/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-tRBWniPM/IPR/JKi7R46tnx9rgyCb5hOkOR1oy7iVcc="; - meta = { + meta = with lib; { description = "Decrypt the admin password generated for the VM in OpenStack"; homepage = "https://github.com/sapcc/nova-password"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "nova-password"; - maintainers = with lib.maintainers; [ vinetos ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ vinetos ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/no/nox/package.nix b/pkgs/by-name/no/nox/package.nix index 296ddefcd91695..29b333b0192133 100644 --- a/pkgs/by-name/no/nox/package.nix +++ b/pkgs/by-name/no/nox/package.nix @@ -30,11 +30,11 @@ python3Packages.buildPythonApplication rec { setuptools ]; - meta = { + meta = with lib; { homepage = "https://github.com/madjar/nox"; description = "Tools to make nix nicer to use"; - maintainers = [ lib.maintainers.madjar ]; - license = lib.licenses.mit; - platforms = lib.platforms.all; + maintainers = [ maintainers.madjar ]; + license = licenses.mit; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/np/nph/package.nix b/pkgs/by-name/np/nph/package.nix index 5535ce9f408534..7fcb4d5bf91f7b 100644 --- a/pkgs/by-name/np/nph/package.nix +++ b/pkgs/by-name/np/nph/package.nix @@ -32,11 +32,11 @@ buildNimPackage' (finalAttrs: { runHook postCheck ''; - meta = { + meta = with lib; { description = "Opinionated code formatter for Nim"; homepage = "https://github.com/arnetheduck/nph"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; mainProgram = "nph"; }; }) diff --git a/pkgs/by-name/np/npiet/package.nix b/pkgs/by-name/np/npiet/package.nix index cbc1592129e457..7d66e010b9154d 100644 --- a/pkgs/by-name/np/npiet/package.nix +++ b/pkgs/by-name/np/npiet/package.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation (finalAttrs: { ; }; - meta = { + meta = with lib; { description = "Interpreter for piet programs. Also includes npietedit and npiet-foogol"; longDescription = '' npiet is an interpreter for the piet programming language. @@ -60,9 +60,9 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://www.bertnase.de/npiet/"; changelog = "https://www.bertnase.de/npiet/ChangeLog"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.unix; + license = licenses.gpl2Only; + platforms = platforms.unix; mainProgram = "npiet"; - maintainers = with lib.maintainers; [ Luflosi ]; + maintainers = with maintainers; [ Luflosi ]; }; }) diff --git a/pkgs/by-name/nq/nqptp/package.nix b/pkgs/by-name/nq/nqptp/package.nix index 90912643b004e1..3ad74c9b88adb9 100644 --- a/pkgs/by-name/nq/nqptp/package.nix +++ b/pkgs/by-name/nq/nqptp/package.nix @@ -38,15 +38,15 @@ stdenv.mkDerivation rec { cp nqptp.service $out/lib/systemd/system ''; - meta = { + meta = with lib; { homepage = "https://github.com/mikebrady/nqptp"; description = "Daemon and companion application to Shairport Sync that monitors timing data from any PTP clocks"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; mainProgram = "nqptp"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ jordanisaacs adamcstephens ]; - platforms = lib.platforms.linux ++ lib.platforms.freebsd; + platforms = platforms.linux ++ platforms.freebsd; }; } diff --git a/pkgs/by-name/ns/nsc/package.nix b/pkgs/by-name/ns/nsc/package.nix index c699118ca75e25..4c4839c477096d 100644 --- a/pkgs/by-name/ns/nsc/package.nix +++ b/pkgs/by-name/ns/nsc/package.nix @@ -53,11 +53,11 @@ buildGoModule rec { # removing the table decorations from the command output. doCheck = !stdenv.hostPlatform.isDarwin; - meta = { + meta = with lib; { description = "Tool for creating NATS account and user access configurations"; homepage = "https://github.com/nats-io/nsc"; - license = with lib.licenses; [ asl20 ]; - maintainers = with lib.maintainers; [ cbrewster ]; + license = with licenses; [ asl20 ]; + maintainers = with maintainers; [ cbrewster ]; mainProgram = "nsc"; }; } diff --git a/pkgs/by-name/ns/nsnake/package.nix b/pkgs/by-name/ns/nsnake/package.nix index 78ff27090da4be..922ab410eb07c9 100644 --- a/pkgs/by-name/ns/nsnake/package.nix +++ b/pkgs/by-name/ns/nsnake/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { description = "ncurses based snake game for the terminal"; mainProgram = "nsnake"; homepage = "https://github.com/alexdantas/nSnake"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ clerie ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ clerie ]; }; } diff --git a/pkgs/by-name/ns/nssmdns/package.nix b/pkgs/by-name/ns/nssmdns/package.nix index f58f47b00b61e3..d87568d4a6e667 100644 --- a/pkgs/by-name/ns/nssmdns/package.nix +++ b/pkgs/by-name/ns/nssmdns/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { "--sysconfdir=/etc" ]; - meta = { + meta = with lib; { description = "MDNS Name Service Switch (NSS) plug-in"; longDescription = '' `nss-mdns' is a plugin for the GNU Name Service Switch (NSS) @@ -45,9 +45,9 @@ stdenv.mkDerivation rec { domain `.local'. ''; homepage = "https://github.com/avahi/nss-mdns/"; - license = lib.licenses.lgpl2Plus; + license = licenses.lgpl2Plus; # Supports both the GNU and FreeBSD NSS. - platforms = lib.platforms.gnu ++ lib.platforms.linux ++ lib.platforms.freebsd; + platforms = platforms.gnu ++ platforms.linux ++ platforms.freebsd; maintainers = [ ]; }; } diff --git a/pkgs/by-name/ns/nstool/package.nix b/pkgs/by-name/ns/nstool/package.nix index 2cf44c6bec970a..5ad5546fc861ee 100644 --- a/pkgs/by-name/ns/nstool/package.nix +++ b/pkgs/by-name/ns/nstool/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation (finalAttrs: { cp -v bin/nstool $out/bin ''; - meta = { + meta = with lib; { description = "General purpose reading/extraction tool for Nintendo Switch file formats"; homepage = "https://github.com/jakcron/nstool"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "nstool"; - maintainers = with lib.maintainers; [ diadatp ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ diadatp ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ns/nsync/package.nix b/pkgs/by-name/ns/nsync/package.nix index ccca46fbef079f..a1106b7da2632c 100644 --- a/pkgs/by-name/ns/nsync/package.nix +++ b/pkgs/by-name/ns/nsync/package.nix @@ -22,14 +22,14 @@ stdenv.mkDerivation rec { # because a file named BUILD exists already. cmakeBuildDir = "build_dir"; - meta = { + meta = with lib; { homepage = "https://github.com/google/nsync"; description = "C library that exports various synchronization primitives"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ puffnfresh Luflosi ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/nt/ntfs2btrfs/package.nix b/pkgs/by-name/nt/ntfs2btrfs/package.nix index 96f7eae420818b..ee2508f6e553d6 100644 --- a/pkgs/by-name/nt/ntfs2btrfs/package.nix +++ b/pkgs/by-name/nt/ntfs2btrfs/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "CLI tool which does in-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs"; homepage = "https://github.com/maharmstone/ntfs2btrfs"; - license = with lib.licenses; [ gpl2Only ]; - maintainers = with lib.maintainers; [ j1nxie ]; + license = with licenses; [ gpl2Only ]; + maintainers = with maintainers; [ j1nxie ]; mainProgram = "ntfs2btrfs"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/nt/ntpstat/package.nix b/pkgs/by-name/nt/ntpstat/package.nix index 7293cf6925fa66..0c1c276b99bae7 100644 --- a/pkgs/by-name/nt/ntpstat/package.nix +++ b/pkgs/by-name/nt/ntpstat/package.nix @@ -21,12 +21,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { makeFlags = [ "prefix=${placeholder "out"}" ]; - meta = { + meta = with lib; { description = "Print the ntpd or chronyd synchronisation status"; homepage = "https://github.com/mlichvar/ntpstat"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "nptstat"; - maintainers = with lib.maintainers; [ hzeller ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ hzeller ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/nu/nuclear/package.nix b/pkgs/by-name/nu/nuclear/package.nix index 95618524584349..2665be63a2e5a9 100644 --- a/pkgs/by-name/nu/nuclear/package.nix +++ b/pkgs/by-name/nu/nuclear/package.nix @@ -28,11 +28,11 @@ appimageTools.wrapType2 { cp -r ${appimageContents}/usr/share/icons $out/share ''; - meta = { + meta = with lib; { description = "Streaming music player that finds free music for you"; homepage = "https://nuclear.js.org/"; - license = lib.licenses.agpl3Plus; - maintainers = [ lib.maintainers.NotAShelf ]; + license = licenses.agpl3Plus; + maintainers = [ maintainers.NotAShelf ]; platforms = [ "x86_64-linux" ]; mainProgram = "nuclear"; }; diff --git a/pkgs/by-name/nu/nufmt/package.nix b/pkgs/by-name/nu/nufmt/package.nix index adba5f328ec3c5..bce72fe0e4a5e2 100644 --- a/pkgs/by-name/nu/nufmt/package.nix +++ b/pkgs/by-name/nu/nufmt/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "Nushell formatter"; homepage = "https://github.com/nushell/nufmt"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ iogamaster khaneliman ]; diff --git a/pkgs/by-name/nu/numi/package.nix b/pkgs/by-name/nu/numi/package.nix index 527ecd7c5d2c85..486606a2118c09 100644 --- a/pkgs/by-name/nu/numi/package.nix +++ b/pkgs/by-name/nu/numi/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Beautiful calculator app for macOS"; homepage = "https://numi.app/"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ donteatoreo ]; - platforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = with maintainers; [ donteatoreo ]; + platforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/nu/numix-gtk-theme/package.nix b/pkgs/by-name/nu/numix-gtk-theme/package.nix index 9cd859e9906d8c..a62ac8e25c073c 100644 --- a/pkgs/by-name/nu/numix-gtk-theme/package.nix +++ b/pkgs/by-name/nu/numix-gtk-theme/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { description = "Modern flat theme with a combination of light and dark elements (GNOME, Unity, Xfce and Openbox)"; homepage = "https://numixproject.github.io"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.romildo ]; + license = licenses.gpl3Plus; + platforms = platforms.all; + maintainers = [ maintainers.romildo ]; }; } diff --git a/pkgs/by-name/nu/numix-sx-gtk-theme/package.nix b/pkgs/by-name/nu/numix-sx-gtk-theme/package.nix index c90b81d4e42a2d..c603b938c2fba9 100644 --- a/pkgs/by-name/nu/numix-sx-gtk-theme/package.nix +++ b/pkgs/by-name/nu/numix-sx-gtk-theme/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation { cp -dr --no-preserve='ownership' Numix-SX-{Dark,FullDark,Light} "$out/share/themes/" ''; - meta = { + meta = with lib; { description = "Gray variation of Numix theme"; homepage = "https://www.gnome-look.org/p/1117412/"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.sauyon ]; + license = licenses.gpl3Plus; + platforms = platforms.all; + maintainers = [ maintainers.sauyon ]; }; } diff --git a/pkgs/by-name/nu/numlockx/package.nix b/pkgs/by-name/nu/numlockx/package.nix index 9c50ce5d7c82d6..e9a2de14c81f63 100644 --- a/pkgs/by-name/nu/numlockx/package.nix +++ b/pkgs/by-name/nu/numlockx/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation { autoconf ]; - meta = { + meta = with lib; { description = "Allows to start X with NumLock turned on"; - license = lib.licenses.mit; - platforms = lib.platforms.all; + license = licenses.mit; + platforms = platforms.all; mainProgram = "numlockx"; }; } diff --git a/pkgs/by-name/nu/nuv/package.nix b/pkgs/by-name/nu/nuv/package.nix index 0cd295b98b9c13..a2646cb4cf2d3d 100644 --- a/pkgs/by-name/nu/nuv/package.nix +++ b/pkgs/by-name/nu/nuv/package.nix @@ -69,12 +69,12 @@ buildGoModule { simple = callPackage ./tests.nix { inherit version; }; }; - meta = { + meta = with lib; { homepage = "https://nuvolaris.io/"; description = "A CLI tool for running tasks using the Nuvolaris serverless engine"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "nuv"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ msciabarra d4rkstar ]; diff --git a/pkgs/by-name/nv/nvd/package.nix b/pkgs/by-name/nv/nvd/package.nix index 2cc7afa9f97e4c..595c501bd9c065 100644 --- a/pkgs/by-name/nv/nvd/package.nix +++ b/pkgs/by-name/nv/nvd/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Nix/NixOS package version diff tool"; homepage = "https://khumba.net/projects/nvd"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "nvd"; - maintainers = with lib.maintainers; [ khumba ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ khumba ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/nv/nvidia-modprobe/package.nix b/pkgs/by-name/nv/nvidia-modprobe/package.nix index effb0577338ba4..d63ea59a2bfc41 100644 --- a/pkgs/by-name/nv/nvidia-modprobe/package.nix +++ b/pkgs/by-name/nv/nvidia-modprobe/package.nix @@ -21,10 +21,10 @@ stdenv.mkDerivation rec { substituteInPlace utils.mk --replace-fail "/usr/local" "$out" ''; - meta = { + meta = with lib; { description = "Load the NVIDIA kernel module and create NVIDIA character device files "; homepage = "https://github.com/NVIDIA/nvidia-modprobe"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; + license = licenses.gpl2; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/nw/nwg-displays/package.nix b/pkgs/by-name/nw/nwg-displays/package.nix index a59d24afe44fbb..cfd21a162ee91b 100644 --- a/pkgs/by-name/nw/nwg-displays/package.nix +++ b/pkgs/by-name/nw/nwg-displays/package.nix @@ -61,11 +61,11 @@ python310Packages.buildPythonApplication rec { # Upstream has no tests doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/nwg-piotr/nwg-displays"; description = "Output management utility for Sway and Hyprland"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; + license = licenses.mit; + platforms = platforms.linux; maintainers = [ ]; mainProgram = "nwg-displays"; }; diff --git a/pkgs/by-name/nw/nwg-dock-hyprland/package.nix b/pkgs/by-name/nw/nwg-dock-hyprland/package.nix index 7a4a72c5794ac9..ebfd8dfb4961a2 100644 --- a/pkgs/by-name/nw/nwg-dock-hyprland/package.nix +++ b/pkgs/by-name/nw/nwg-dock-hyprland/package.nix @@ -40,12 +40,12 @@ buildGoModule rec { install -Dm644 config/style.css $out/share/nwg-dock-hyprland/style.css ''; - meta = { + meta = with lib; { description = "GTK3-based dock for Hyprland"; mainProgram = "nwg-dock-hyprland"; homepage = "https://github.com/nwg-piotr/nwg-dock-hyprland"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ aleksana ]; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ aleksana ]; }; } diff --git a/pkgs/by-name/nw/nwjs-ffmpeg-prebuilt/package.nix b/pkgs/by-name/nw/nwjs-ffmpeg-prebuilt/package.nix index c17f47d9bcac7c..cf8495948d3771 100644 --- a/pkgs/by-name/nw/nwjs-ffmpeg-prebuilt/package.nix +++ b/pkgs/by-name/nw/nwjs-ffmpeg-prebuilt/package.nix @@ -37,18 +37,18 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "An app runtime based on Chromium and node.js"; homepage = "https://nwjs.io/"; platforms = [ "i686-linux" "x86_64-linux" ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; - maintainers = with lib.maintainers; [ + sourceProvenance = [ sourceTypes.binaryNativeCode ]; + maintainers = with maintainers; [ ilya-epifanov mikaelfangel ]; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/nx/nx-libs/package.nix b/pkgs/by-name/nx/nx-libs/package.nix index 616ab0ee164caa..b42cafaf70a10f 100644 --- a/pkgs/by-name/nx/nx-libs/package.nix +++ b/pkgs/by-name/nx/nx-libs/package.nix @@ -85,11 +85,11 @@ stdenv.mkDerivation rec { patchelf --remove-needed "libX11.so.6" $out/bin/nxagent ''; - meta = { + meta = with lib; { description = "NX X server based on Xnest"; homepage = "https://github.com/ArcticaProject/nx-libs"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/nx/nxengine-evo/assets.nix b/pkgs/by-name/nx/nxengine-evo/assets.nix index 9524f42e8dd22b..e9fe03329537bb 100644 --- a/pkgs/by-name/nx/nxengine-evo/assets.nix +++ b/pkgs/by-name/nx/nxengine-evo/assets.nix @@ -25,14 +25,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/nxengine/nxengine-evo"; description = "Assets for nxengine-evo"; - license = with lib.licenses; [ + license = with licenses; [ unfreeRedistributable ]; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/nz/nzbhydra2/package.nix b/pkgs/by-name/nz/nzbhydra2/package.nix index 4a67f2ae08d701..63cdf15d0afb5d 100644 --- a/pkgs/by-name/nz/nzbhydra2/package.nix +++ b/pkgs/by-name/nz/nzbhydra2/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { inherit (nixosTests) nzbhydra2; }; - meta = { + meta = with lib; { description = "Usenet meta search"; homepage = "https://github.com/theotherp/nzbhydra2"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ matteopacini ]; - platforms = lib.platforms.linux; + license = licenses.asl20; + maintainers = with maintainers; [ matteopacini ]; + platforms = platforms.linux; mainProgram = "nzbhydra2"; }; } diff --git a/pkgs/by-name/nz/nzportable/assets.nix b/pkgs/by-name/nz/nzportable/assets.nix index c002f5c12151ea..a7f6851c9fd6cf 100644 --- a/pkgs/by-name/nz/nzportable/assets.nix +++ b/pkgs/by-name/nz/nzportable/assets.nix @@ -34,11 +34,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Game asset repository for Nazi Zombies: Portable"; homepage = "https://github.com/nzp-team/assets"; - license = with lib.licenses; [ cc-by-sa-40 ]; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ pluiedev ]; + license = with licenses; [ cc-by-sa-40 ]; + platforms = platforms.all; + maintainers = with maintainers; [ pluiedev ]; }; } diff --git a/pkgs/by-name/nz/nzportable/quakec.nix b/pkgs/by-name/nz/nzportable/quakec.nix index 32fb863d7508f1..c8c91fe51b9107 100644 --- a/pkgs/by-name/nz/nzportable/quakec.nix +++ b/pkgs/by-name/nz/nzportable/quakec.nix @@ -54,11 +54,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "QuakeC repository for Nazi Zombies: Portable"; homepage = "https://github.com/nzp-team/quakec"; - license = lib.licenses.gpl2Plus; - platforms = with lib.platforms; linux ++ darwin; - maintainers = with lib.maintainers; [ pluiedev ]; + license = licenses.gpl2Plus; + platforms = with platforms; linux ++ darwin; + maintainers = with maintainers; [ pluiedev ]; }; } diff --git a/pkgs/by-name/oa/oathkeeper/package.nix b/pkgs/by-name/oa/oathkeeper/package.nix index ecbf70d5e0b5b1..479562e5141d68 100644 --- a/pkgs/by-name/oa/oathkeeper/package.nix +++ b/pkgs/by-name/oa/oathkeeper/package.nix @@ -36,11 +36,11 @@ buildGoModule { "-X github.com/ory/oathkeeper/internal/driver/config.Commit=${commit}" ]; - meta = { + meta = with lib; { description = "Open-source identity and access proxy that authorizes HTTP requests based on sets of rules"; homepage = "https://www.ory.sh/oathkeeper/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ camcalaquian ]; + license = licenses.asl20; + maintainers = with maintainers; [ camcalaquian ]; mainProgram = "oathkeeper"; }; } diff --git a/pkgs/by-name/ob/obconf/package.nix b/pkgs/by-name/ob/obconf/package.nix index e35e4d2fc7f11a..9c7945215e3db5 100644 --- a/pkgs/by-name/ob/obconf/package.nix +++ b/pkgs/by-name/ob/obconf/package.nix @@ -46,13 +46,13 @@ stdenv.mkDerivation (finalAttrs: { substituteInPlace configure.ac --replace-fail 2.0.4 ${finalAttrs.version} ''; - meta = { + meta = with lib; { description = "GUI configuration tool for openbox"; homepage = "http://openbox.org/wiki/ObConf"; changelog = "http://openbox.org/wiki/ObConf:Changelog"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.sfrijters ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = [ maintainers.sfrijters ]; + platforms = platforms.linux; mainProgram = "obconf"; }; }) diff --git a/pkgs/by-name/ob/obj-magic/package.nix b/pkgs/by-name/ob/obj-magic/package.nix index f298f45f8ef033..74d569bc1d1af2 100644 --- a/pkgs/by-name/ob/obj-magic/package.nix +++ b/pkgs/by-name/ob/obj-magic/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Command line tool for manipulating Wavefront OBJ 3D meshes"; homepage = "https://github.com/tapio/obj-magic"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ lorenz ]; - platforms = lib.platforms.unix; + license = licenses.gpl3Only; + maintainers = with maintainers; [ lorenz ]; + platforms = platforms.unix; mainProgram = "obj-magic"; }; } diff --git a/pkgs/by-name/ob/objfw/package.nix b/pkgs/by-name/ob/objfw/package.nix index f315d4c0a9f83f..a717eb537b30df 100644 --- a/pkgs/by-name/ob/objfw/package.nix +++ b/pkgs/by-name/ob/objfw/package.nix @@ -36,11 +36,11 @@ clangStdenv.mkDerivation (finalAttrs: { build-hello-world = (import ./test-build-and-run.nix) { inherit clangStdenv objfw writeTextDir; }; }; - meta = { + meta = with lib; { description = "A portable framework for the Objective-C language"; homepage = "https://objfw.nil.im"; - license = lib.licenses.lgpl3; - maintainers = [ lib.maintainers.steeleduncan ]; - platforms = lib.platforms.linux; + license = licenses.lgpl3; + maintainers = [ maintainers.steeleduncan ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ob/obs-do/package.nix b/pkgs/by-name/ob/obs-do/package.nix index 5cee7756867773..e7fa1d2f7d49e1 100644 --- a/pkgs/by-name/ob/obs-do/package.nix +++ b/pkgs/by-name/ob/obs-do/package.nix @@ -28,14 +28,14 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "CLI for common OBS operations while streaming using WebSocket"; homepage = "https://github.com/jonhoo/obs-do"; - license = with lib.licenses; [ + license = with licenses; [ asl20 mit ]; - maintainers = with lib.maintainers; [ GaetanLepage ]; + maintainers = with maintainers; [ GaetanLepage ]; mainProgram = "obs-do"; }; } diff --git a/pkgs/by-name/oc/ocaml-top/package.nix b/pkgs/by-name/oc/ocaml-top/package.nix index dd9bed5dd17ba8..6f29eb9d85a10e 100644 --- a/pkgs/by-name/oc/ocaml-top/package.nix +++ b/pkgs/by-name/oc/ocaml-top/package.nix @@ -24,11 +24,11 @@ buildDunePackage rec { ocp-index ]; - meta = { + meta = with lib; { homepage = "https://www.typerex.org/ocaml-top.html"; - license = lib.licenses.gpl3; + license = licenses.gpl3; description = "Simple cross-platform OCaml code editor built for top-level evaluation"; mainProgram = "ocaml-top"; - maintainers = with lib.maintainers; [ vbgl ]; + maintainers = with maintainers; [ vbgl ]; }; } diff --git a/pkgs/by-name/oc/ocis/package.nix b/pkgs/by-name/oc/ocis/package.nix index 174c36d5771de0..73e51ff8981a6c 100644 --- a/pkgs/by-name/oc/ocis/package.nix +++ b/pkgs/by-name/oc/ocis/package.nix @@ -78,11 +78,11 @@ buildGoModule rec { updateScript = ./update.sh; }; - meta = { + meta = with lib; { homepage = "https://github.com/owncloud/web"; description = "Next generation frontend for ownCloud Infinite Scale"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "ocis"; - maintainers = with lib.maintainers; [ xinyangli ]; + maintainers = with maintainers; [ xinyangli ]; }; } diff --git a/pkgs/by-name/oc/ocis/web.nix b/pkgs/by-name/oc/ocis/web.nix index eb8175b6dc9263..a8a8a3a6695739 100644 --- a/pkgs/by-name/oc/ocis/web.nix +++ b/pkgs/by-name/oc/ocis/web.nix @@ -39,10 +39,10 @@ stdenvNoCC.mkDerivation rec { hash = "sha256-3Erva6srdkX1YQ727trx34Ufx524nz19MUyaDQToz6M="; }; - meta = { + meta = with lib; { homepage = "https://github.com/owncloud/ocis"; description = "ownCloud Infinite Scale Stack"; - maintainers = with lib.maintainers; [ xinyangli ]; - license = lib.licenses.agpl3Only; + maintainers = with maintainers; [ xinyangli ]; + license = licenses.agpl3Only; }; } diff --git a/pkgs/by-name/oc/ocrfeeder/package.nix b/pkgs/by-name/oc/ocrfeeder/package.nix index 5dc36c45b4ca18..3d456509c7dcae 100644 --- a/pkgs/by-name/oc/ocrfeeder/package.nix +++ b/pkgs/by-name/oc/ocrfeeder/package.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation (finalAttrs: { gappsWrapperArgs+=(--set ISO_CODES_DIR "${isocodes}/share/xml/iso-codes") ''; - meta = { + meta = with lib; { homepage = "https://gitlab.gnome.org/GNOME/ocrfeeder"; description = "Complete Optical Character Recognition and Document Analysis and Recognition program"; - maintainers = with lib.maintainers; [ doronbehar ]; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ doronbehar ]; + license = licenses.gpl3Plus; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/oc/ocsigen-i18n/package.nix b/pkgs/by-name/oc/ocsigen-i18n/package.nix index 9ef1f8b35d5444..baf1c56997e664 100644 --- a/pkgs/by-name/oc/ocsigen-i18n/package.nix +++ b/pkgs/by-name/oc/ocsigen-i18n/package.nix @@ -17,11 +17,11 @@ ocamlPackages.buildDunePackage rec { hash = "sha256-NIl1YUTws8Ff4nrqdhU7oS/TN0lxVQgrtyEZtpS1ojM="; }; - meta = { + meta = with lib; { homepage = "https://github.com/besport/ocsigen-i18n"; description = "I18n made easy for web sites written with eliom"; - license = lib.licenses.lgpl21; - maintainers = [ lib.maintainers.gal_bolle ]; + license = licenses.lgpl21; + maintainers = [ maintainers.gal_bolle ]; }; } diff --git a/pkgs/by-name/od/odamex/package.nix b/pkgs/by-name/od/odamex/package.nix index 02092d42991a5c..c87a4951b61056 100644 --- a/pkgs/by-name/od/odamex/package.nix +++ b/pkgs/by-name/od/odamex/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "http://odamex.net/"; description = "Client/server port for playing old-school Doom online"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.unix; + license = licenses.gpl2Only; + platforms = platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/od/odt2txt/package.nix b/pkgs/by-name/od/odt2txt/package.nix index cab3613f3c5f89..df80a5a37ed837 100644 --- a/pkgs/by-name/od/odt2txt/package.nix +++ b/pkgs/by-name/od/odt2txt/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { libiconv ]; - meta = { + meta = with lib; { description = "Simple .odt to .txt converter"; mainProgram = "odt2txt"; homepage = "https://github.com/dstosberg/odt2txt"; - platforms = lib.platforms.all; - license = lib.licenses.gpl2Only; + platforms = platforms.all; + license = licenses.gpl2Only; maintainers = [ ]; }; } diff --git a/pkgs/by-name/og/ogmtools/package.nix b/pkgs/by-name/og/ogmtools/package.nix index 555ddb9834f28e..dd8d993211ddb1 100644 --- a/pkgs/by-name/og/ogmtools/package.nix +++ b/pkgs/by-name/og/ogmtools/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ]; - meta = { + meta = with lib; { description = "Tools for modifying and inspecting OGG media streams"; longDescription = '' These tools allow information about (ogminfo) or extraction from @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { tool for extracting chapter information from DVD. ''; homepage = "https://www.bunkus.org/videotools/ogmtools/"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; + license = licenses.gpl2; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/oi/oink/package.nix b/pkgs/by-name/oi/oink/package.nix index aac1061ba60e06..a68f02761d0d52 100644 --- a/pkgs/by-name/oi/oink/package.nix +++ b/pkgs/by-name/oi/oink/package.nix @@ -21,12 +21,12 @@ buildGoModule rec { mv $out/bin/src $out/bin/oink ''; - meta = { + meta = with lib; { description = "Dynamic DNS client for Porkbun"; homepage = "https://github.com/rlado/oink"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "oink"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ jtbx pmw ]; diff --git a/pkgs/by-name/ok/okteto/package.nix b/pkgs/by-name/ok/okteto/package.nix index aa52ab3ab177a8..230a27e2230b1a 100644 --- a/pkgs/by-name/ok/okteto/package.nix +++ b/pkgs/by-name/ok/okteto/package.nix @@ -77,11 +77,11 @@ buildGoModule rec { command = "HOME=\"$(mktemp -d)\" okteto version"; }; - meta = { + meta = with lib; { description = "Develop your applications directly in your Kubernetes Cluster"; homepage = "https://okteto.com/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.asl20; + maintainers = with maintainers; [ aaronjheng ]; mainProgram = "okteto"; }; } diff --git a/pkgs/by-name/ol/olsrd/package.nix b/pkgs/by-name/ol/olsrd/package.nix index e0b709dbf81679..9750b6cd57c833 100644 --- a/pkgs/by-name/ol/olsrd/package.nix +++ b/pkgs/by-name/ol/olsrd/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { makeFlags="prefix=$out ETCDIR=$out/etc" ''; - meta = { + meta = with lib; { description = "Adhoc wireless mesh routing daemon"; - license = lib.licenses.bsd3; + license = licenses.bsd3; homepage = "http://olsr.org/"; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/om/omekasy/package.nix b/pkgs/by-name/om/omekasy/package.nix index ec2b53644c2fb9..d9d9d49770c381 100644 --- a/pkgs/by-name/om/omekasy/package.nix +++ b/pkgs/by-name/om/omekasy/package.nix @@ -19,10 +19,10 @@ rustPlatform.buildRustPackage rec { buildNoDefaultFeatures = stdenv.targetPlatform.isWasi; - meta = { + meta = with lib; { description = "Command line application that converts alphanumeric characters to various styles defined in Unicode"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.jcaesar ]; + license = licenses.mit; + maintainers = [ maintainers.jcaesar ]; homepage = "https://github.com/ikanago/omekasy"; mainProgram = "omekasy"; }; diff --git a/pkgs/by-name/om/omnom/package.nix b/pkgs/by-name/om/omnom/package.nix index 0b651a6451cf92..0179a518c5fab1 100644 --- a/pkgs/by-name/om/omnom/package.nix +++ b/pkgs/by-name/om/omnom/package.nix @@ -74,11 +74,11 @@ buildGoModule rec { cp config.yml_sample $out/share/examples/config.yml ''; - meta = { + meta = with lib; { description = "A webpage bookmarking and snapshotting service"; homepage = "https://github.com/asciimoo/omnom"; - license = lib.licenses.agpl3Only; - maintainers = lib.teams.ngi.members; + license = licenses.agpl3Only; + maintainers = teams.ngi.members; mainProgram = "omnom"; }; } diff --git a/pkgs/by-name/on/onedrive/package.nix b/pkgs/by-name/on/onedrive/package.nix index 935686a52ecccd..698763d27b9427 100644 --- a/pkgs/by-name/on/onedrive/package.nix +++ b/pkgs/by-name/on/onedrive/package.nix @@ -80,16 +80,16 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { homepage = "https://github.com/abraunegg/onedrive"; description = "Complete tool to interact with OneDrive on Linux"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "onedrive"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ AndersonTorres peterhoeg bertof ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/on/onlyoffice-desktopeditors/package.nix b/pkgs/by-name/on/onlyoffice-desktopeditors/package.nix index a5aeebf9e1da27..e850ba1a4afbb9 100644 --- a/pkgs/by-name/on/onlyoffice-desktopeditors/package.nix +++ b/pkgs/by-name/on/onlyoffice-desktopeditors/package.nix @@ -181,15 +181,15 @@ buildFHSEnv { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { description = "Office suite that combines text, spreadsheet and presentation editors allowing to create, view and edit local documents"; homepage = "https://www.onlyoffice.com/"; downloadPage = "https://github.com/ONLYOFFICE/DesktopEditors/releases"; changelog = "https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md"; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ nh2 gtrunsec ]; diff --git a/pkgs/by-name/op/open-pdf-sign/package.nix b/pkgs/by-name/op/open-pdf-sign/package.nix index 3cbd501e7b15d8..02067fb22ca72f 100644 --- a/pkgs/by-name/op/open-pdf-sign/package.nix +++ b/pkgs/by-name/op/open-pdf-sign/package.nix @@ -32,13 +32,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Digitally sign PDF files from your commandline"; homepage = "https://github.com/open-pdf-sign/open-pdf-sign"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ drupol ]; - platforms = lib.platforms.unix; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = licenses.asl20; + maintainers = with maintainers; [ drupol ]; + platforms = platforms.unix; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; mainProgram = "open-pdf-sign"; }; }) diff --git a/pkgs/by-name/op/openbox/package.nix b/pkgs/by-name/op/openbox/package.nix index 17587abb9bc51d..d4961aa3cd6dd0 100644 --- a/pkgs/by-name/op/openbox/package.nix +++ b/pkgs/by-name/op/openbox/package.nix @@ -89,10 +89,10 @@ stdenv.mkDerivation rec { wrapPythonProgramsIn "$out/libexec" "$out $pythonPath" ''; - meta = { + meta = with lib; { description = "X window manager for non-desktop embedded systems"; homepage = "http://openbox.org/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/op/opencflite/package.nix b/pkgs/by-name/op/opencflite/package.nix index 06e3a921fb9f09..a67c7f89da9a1b 100644 --- a/pkgs/by-name/op/opencflite/package.nix +++ b/pkgs/by-name/op/opencflite/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Cross platform port of the macOS CoreFoundation"; homepage = "https://github.com/gerickson/opencflite"; - license = lib.licenses.apple-psl20; - maintainers = with lib.maintainers; [ wegank ]; + license = licenses.apple-psl20; + maintainers = with maintainers; [ wegank ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/op/opencollada/package.nix b/pkgs/by-name/op/opencollada/package.nix index 2e12e13f56c40d..dac416c4525c25 100644 --- a/pkgs/by-name/op/opencollada/package.nix +++ b/pkgs/by-name/op/opencollada/package.nix @@ -56,11 +56,11 @@ stdenv.mkDerivation rec { --replace math.h cmath ''; - meta = { + meta = with lib; { description = "Library for handling the COLLADA file format"; homepage = "https://github.com/KhronosGroup/OpenCOLLADA/"; maintainers = [ ]; - platforms = lib.platforms.unix; - license = lib.licenses.mit; + platforms = platforms.unix; + license = licenses.mit; }; } diff --git a/pkgs/by-name/op/opencommit/package.nix b/pkgs/by-name/op/opencommit/package.nix index 7708a3b1d644f7..6e3da53490cc2e 100644 --- a/pkgs/by-name/op/opencommit/package.nix +++ b/pkgs/by-name/op/opencommit/package.nix @@ -20,11 +20,11 @@ buildNpmPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "AI-powered commit message generator"; homepage = "https://www.npmjs.com/package/opencommit"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.matteopacini ]; + license = licenses.mit; + maintainers = [ maintainers.matteopacini ]; mainProgram = "oco"; }; diff --git a/pkgs/by-name/op/opencore-amr/package.nix b/pkgs/by-name/op/opencore-amr/package.nix index 6eef6bade0e41f..288c7a79dc4fca 100644 --- a/pkgs/by-name/op/opencore-amr/package.nix +++ b/pkgs/by-name/op/opencore-amr/package.nix @@ -12,11 +12,11 @@ stdenv.mkDerivation rec { hash = "sha256-SD60BhCI4rNLNY5HVAtdSVqWzUaONhBQ+uYVsYCdxKE="; }; - meta = { + meta = with lib; { homepage = "https://opencore-amr.sourceforge.io/"; description = "Library of OpenCORE Framework implementation of Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec. Library of VisualOn implementation of Adaptive Multi Rate Wideband (AMR-WB)"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.kiloreux ]; + license = licenses.asl20; + maintainers = [ maintainers.kiloreux ]; }; } diff --git a/pkgs/by-name/op/openfga-cli/package.nix b/pkgs/by-name/op/openfga-cli/package.nix index 8deef7b71c460c..457b67e3c83258 100644 --- a/pkgs/by-name/op/openfga-cli/package.nix +++ b/pkgs/by-name/op/openfga-cli/package.nix @@ -45,11 +45,11 @@ buildGoModule { installShellCompletion $completions_dir/* ''; - meta = { + meta = with lib; { description = "Cross-platform CLI to interact with an OpenFGA server"; homepage = "https://github.com/openfga/cli"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "fga"; - maintainers = with lib.maintainers; [ jlesquembre ]; + maintainers = with maintainers; [ jlesquembre ]; }; } diff --git a/pkgs/by-name/op/openfga/package.nix b/pkgs/by-name/op/openfga/package.nix index 8b755a4393f3d6..e8972817a98e8c 100644 --- a/pkgs/by-name/op/openfga/package.nix +++ b/pkgs/by-name/op/openfga/package.nix @@ -48,11 +48,11 @@ buildGoModule { installShellCompletion $completions_dir/* ''; - meta = { + meta = with lib; { description = "High performance and flexible authorization/permission engine built for developers and inspired by Google Zanzibar"; homepage = "https://openfga.dev/"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "openfga"; - maintainers = with lib.maintainers; [ jlesquembre ]; + maintainers = with maintainers; [ jlesquembre ]; }; } diff --git a/pkgs/by-name/op/openfortivpn-webview/package.nix b/pkgs/by-name/op/openfortivpn-webview/package.nix index e0887c17d80db8..27505c6a9149cf 100644 --- a/pkgs/by-name/op/openfortivpn-webview/package.nix +++ b/pkgs/by-name/op/openfortivpn-webview/package.nix @@ -31,12 +31,12 @@ buildNpmPackage { dontNpmBuild = true; env.ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; - meta = { + meta = with lib; { description = "Application to perform the SAML single sing-on and easily retrieve the SVPNCOOKIE needed by openfortivpn"; homepage = "https://github.com/gm-vm/openfortivpn-webview"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ lriesebos ]; - platforms = with lib.platforms; linux ++ darwin; + license = licenses.mit; + maintainers = with maintainers; [ lriesebos ]; + platforms = with platforms; linux ++ darwin; mainProgram = "openfortivpn-webview"; }; } diff --git a/pkgs/by-name/op/openfpgaloader/package.nix b/pkgs/by-name/op/openfpgaloader/package.nix index d43a573ac26853..f0a53944039f08 100644 --- a/pkgs/by-name/op/openfpgaloader/package.nix +++ b/pkgs/by-name/op/openfpgaloader/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation (finalAttrs: { udev ]; - meta = { + meta = with lib; { description = "Universal utility for programming FPGAs"; mainProgram = "openFPGALoader"; homepage = "https://github.com/trabucayre/openFPGALoader"; - license = lib.licenses.agpl3Only; + license = licenses.agpl3Only; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/op/opengfw/package.nix b/pkgs/by-name/op/opengfw/package.nix index 2281181c077f5e..29d536e7a61fc7 100644 --- a/pkgs/by-name/op/opengfw/package.nix +++ b/pkgs/by-name/op/opengfw/package.nix @@ -19,7 +19,7 @@ buildGoModule { hash = "sha256-6PFfsPfLzzeaImcteX9u/k5pwe3cvSQwT90TCizA3gI="; }; - meta = { + meta = with lib; { mainProgram = "OpenGFW"; description = "Flexible, easy-to-use, open source implementation of GFW on Linux"; longDescription = '' @@ -30,8 +30,8 @@ buildGoModule { and start filtering like a pro - you too can play Big Brother. ''; homepage = "https://gfw.dev/"; - license = lib.licenses.mpl20; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ eum3l ]; + license = licenses.mpl20; + platforms = platforms.linux; + maintainers = with maintainers; [ eum3l ]; }; } diff --git a/pkgs/by-name/op/opengothic/package.nix b/pkgs/by-name/op/opengothic/package.nix index 3c61f32a952652..bea2c35dfc09de 100644 --- a/pkgs/by-name/op/opengothic/package.nix +++ b/pkgs/by-name/op/opengothic/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation { --set LD_PRELOAD "${lib.getLib alsa-lib}/lib/libasound.so.2" ''; - meta = { + meta = with lib; { description = "Open source re-implementation of Gothic 2: Night of the Raven"; homepage = "https://github.com/Try/OpenGothic"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ azahi ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ azahi ]; + platforms = platforms.linux; mainProgram = "Gothic2Notr"; }; } diff --git a/pkgs/by-name/op/opengv/package.nix b/pkgs/by-name/op/opengv/package.nix index d1737c0d6579d9..37d7286169c258 100644 --- a/pkgs/by-name/op/opengv/package.nix +++ b/pkgs/by-name/op/opengv/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation (finalAttrs: { eigen ]; - meta = { + meta = with lib; { description = "Collection of computer vision methods for solving geometric vision problems"; homepage = "https://github.com/laurentkneip/opengv"; - license = lib.licenses.bsd2; + license = licenses.bsd2; longDescription = '' OpenGV is a collection of computer vision methods for solving geometric vision problems. It contains absolute-pose, relative-pose, @@ -38,7 +38,7 @@ stdenv.mkDerivation (finalAttrs: { to the above pages also shows links to precompiled Matlab mex-libraries. Please consult the documentation for more information. ''; - maintainers = [ lib.maintainers.locochoco ]; - platforms = lib.platforms.all; + maintainers = [ maintainers.locochoco ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/op/openjade/package.nix b/pkgs/by-name/op/openjade/package.nix index 2991f1606f08a6..870be77028d70a 100644 --- a/pkgs/by-name/op/openjade/package.nix +++ b/pkgs/by-name/op/openjade/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { "--enable-splibdir=${opensp}/lib" ]; - meta = { + meta = with lib; { description = "Implementation of DSSSL, an ISO standard for formatting SGML (and XML) documents"; mainProgram = "openjade"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://openjade.sourceforge.net/"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/op/openjfx/package.nix b/pkgs/by-name/op/openjfx/package.nix index 02de38b1150631..1f55af45887086 100644 --- a/pkgs/by-name/op/openjfx/package.nix +++ b/pkgs/by-name/op/openjfx/package.nix @@ -187,11 +187,11 @@ stdenv.mkDerivation { } ]; - meta = { + meta = with lib; { description = "Next-generation Java client toolkit"; homepage = "https://openjdk.org/projects/openjfx/"; - license = lib.licenses.gpl2Classpath; - maintainers = with lib.maintainers; [ abbradar ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Classpath; + maintainers = with maintainers; [ abbradar ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/op/openjph/package.nix b/pkgs/by-name/op/openjph/package.nix index 3e9694469f80f4..ac62c4494c6b3a 100644 --- a/pkgs/by-name/op/openjph/package.nix +++ b/pkgs/by-name/op/openjph/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Open-source implementation of JPEG2000 Part-15 (or JPH or HTJ2K)"; homepage = "https://openjph.org/"; - maintainers = with lib.maintainers; [ abustany ]; - license = lib.licenses.bsd2; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ abustany ]; + license = licenses.bsd2; + platforms = platforms.unix; pkgConfigModules = [ "openjph" ]; }; }) diff --git a/pkgs/by-name/op/openlibm/package.nix b/pkgs/by-name/op/openlibm/package.nix index 620e50db522e59..b86478e237cb23 100644 --- a/pkgs/by-name/op/openlibm/package.nix +++ b/pkgs/by-name/op/openlibm/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { "CC=${stdenv.cc.targetPrefix}cc" ]; - meta = { + meta = with lib; { description = "High quality system independent, portable, open source libm implementation"; homepage = "https://openlibm.org/"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ttuegel ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = [ maintainers.ttuegel ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/op/openlierox/package.nix b/pkgs/by-name/op/openlierox/package.nix index f1fa65c403de1a..5e78ae0c7d6176 100644 --- a/pkgs/by-name/op/openlierox/package.nix +++ b/pkgs/by-name/op/openlierox/package.nix @@ -68,12 +68,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Real-time game with Worms-like shooting"; homepage = "http://openlierox.net"; - license = lib.licenses.lgpl2Plus; + license = licenses.lgpl2Plus; mainProgram = "openlierox"; - maintainers = with lib.maintainers; [ tomasajt ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ tomasajt ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/op/openmolcas/package.nix b/pkgs/by-name/op/openmolcas/package.nix index 35d244cec9a0e0..54f423b5887055 100644 --- a/pkgs/by-name/op/openmolcas/package.nix +++ b/pkgs/by-name/op/openmolcas/package.nix @@ -167,11 +167,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/pymolcas --set MOLCAS $out ''; - meta = { + meta = with lib; { description = "Advanced quantum chemistry software package"; homepage = "https://gitlab.com/Molcas/OpenMolcas"; - maintainers = [ lib.maintainers.markuskowa ]; - license = with lib.licenses; [ + maintainers = [ maintainers.markuskowa ]; + license = with licenses; [ lgpl21Only bsd3 ]; diff --git a/pkgs/by-name/op/openmpi/package.nix b/pkgs/by-name/op/openmpi/package.nix index 719247b58a4350..298a3010d8212f 100644 --- a/pkgs/by-name/op/openmpi/package.nix +++ b/pkgs/by-name/op/openmpi/package.nix @@ -266,15 +266,15 @@ stdenv.mkDerivation (finalAttrs: { cudatoolkit = cudaPackages.cudatoolkit; # For backward compatibility only }; - meta = { + meta = with lib; { homepage = "https://www.open-mpi.org/"; description = "Open source MPI-3 implementation"; longDescription = "The Open MPI Project is an open source MPI-3 implementation that is developed and maintained by a consortium of academic, research, and industry partners. Open MPI is therefore able to combine the expertise, technologies, and resources from all across the High Performance Computing community in order to build the best MPI library available. Open MPI offers advantages for system and software vendors, application developers and computer science researchers."; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ markuskowa doronbehar ]; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; + license = licenses.bsd3; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/op/openpa/package.nix b/pkgs/by-name/op/openpa/package.nix index bc0c037fb666d3..3956c0a4095558 100644 --- a/pkgs/by-name/op/openpa/package.nix +++ b/pkgs/by-name/op/openpa/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { description = "Atomic primitives for high performance, concurrent software"; homepage = "https://trac.mpich.org/projects/openpa"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ leenaars ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ leenaars ]; + platforms = platforms.unix; longDescription = '' OPA (or sometimes OpenPA or Open Portable Atomics) is an open source library intended to provide a consistent C API for performing diff --git a/pkgs/by-name/op/openpgl/package.nix b/pkgs/by-name/op/openpgl/package.nix index 2e8fcfe7e882e7..aa466c6c884ba8 100644 --- a/pkgs/by-name/op/openpgl/package.nix +++ b/pkgs/by-name/op/openpgl/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation (finalAttrs: { stdenv.hostPlatform.isAarch64 && !stdenv.hostPlatform.isDarwin ) "-flax-vector-conversions"; - meta = { + meta = with lib; { description = "Intel Open Path Guiding Library"; homepage = "https://github.com/OpenPathGuidingLibrary/openpgl"; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.amarshall ]; - license = lib.licenses.asl20; + platforms = platforms.unix; + maintainers = [ maintainers.amarshall ]; + license = licenses.asl20; }; }) diff --git a/pkgs/by-name/op/openresolv/package.nix b/pkgs/by-name/op/openresolv/package.nix index f1bbd9640491e3..198d698531b3f3 100644 --- a/pkgs/by-name/op/openresolv/package.nix +++ b/pkgs/by-name/op/openresolv/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { wrapProgram "$out/sbin/resolvconf" --set PATH "${coreutils}/bin" ''; - meta = { + meta = with lib; { description = "Program to manage /etc/resolv.conf"; mainProgram = "resolvconf"; homepage = "https://roy.marples.name/projects/openresolv"; - license = lib.licenses.bsd2; + license = licenses.bsd2; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/op/opensearch-cli/package.nix b/pkgs/by-name/op/opensearch-cli/package.nix index 7a5c5d40cb7a0a..ed5745eed32705 100644 --- a/pkgs/by-name/op/opensearch-cli/package.nix +++ b/pkgs/by-name/op/opensearch-cli/package.nix @@ -27,13 +27,13 @@ buildGoModule rec { --fish <($out/bin/opensearch-cli completion fish) ''; - meta = { + meta = with lib; { description = "Full-featured command line interface (CLI) for OpenSearch"; homepage = "https://github.com/opensearch-project/opensearch-cli"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "opensearch-cli"; - maintainers = with lib.maintainers; [ shyim ]; - platforms = lib.platforms.unix; - sourceProvenance = with lib.sourceTypes; [ fromSource ]; + maintainers = with maintainers; [ shyim ]; + platforms = platforms.unix; + sourceProvenance = with sourceTypes; [ fromSource ]; }; } diff --git a/pkgs/by-name/op/opensearch/package.nix b/pkgs/by-name/op/opensearch/package.nix index c080fd1d4f7b1d..3839b6bb2d728f 100644 --- a/pkgs/by-name/op/opensearch/package.nix +++ b/pkgs/by-name/op/opensearch/package.nix @@ -57,13 +57,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.tests = nixosTests.opensearch; - meta = { + meta = with lib; { description = "Open Source, Distributed, RESTful Search Engine"; homepage = "https://github.com/opensearch-project/OpenSearch"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ shyim ]; - platforms = lib.platforms.unix; - sourceProvenance = with lib.sourceTypes; [ + license = licenses.asl20; + maintainers = with maintainers; [ shyim ]; + platforms = platforms.unix; + sourceProvenance = with sourceTypes; [ binaryBytecode binaryNativeCode ]; diff --git a/pkgs/by-name/op/openseeface/package.nix b/pkgs/by-name/op/openseeface/package.nix index e2cef476ed4117..65164df45de9f3 100644 --- a/pkgs/by-name/op/openseeface/package.nix +++ b/pkgs/by-name/op/openseeface/package.nix @@ -42,11 +42,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Robust realtime face and facial landmark tracking on CPU with Unity integration"; homepage = "https://github.com/emilianavt/OpenSeeFace"; - license = lib.licenses.bsd2; + license = licenses.bsd2; mainProgram = "facetracker"; - maintainers = with lib.maintainers; [ tomasajt ]; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/by-name/op/openspecfun/package.nix b/pkgs/by-name/op/openspecfun/package.nix index 122fe6cd2e4afc..12ff44a193e6ae 100644 --- a/pkgs/by-name/op/openspecfun/package.nix +++ b/pkgs/by-name/op/openspecfun/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ gfortran ]; - meta = { + meta = with lib; { description = "Collection of special mathematical functions"; homepage = "https://github.com/JuliaLang/openspecfun"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ttuegel ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = [ maintainers.ttuegel ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/op/opentracing-cpp/package.nix b/pkgs/by-name/op/opentracing-cpp/package.nix index 8f125e2bcbf403..a1e61c923851b3 100644 --- a/pkgs/by-name/op/opentracing-cpp/package.nix +++ b/pkgs/by-name/op/opentracing-cpp/package.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = { + meta = with lib; { description = "C++ implementation of the OpenTracing API"; homepage = "https://opentracing.io"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ rob ]; + license = licenses.asl20; + maintainers = with maintainers; [ rob ]; }; } diff --git a/pkgs/by-name/op/openvi/package.nix b/pkgs/by-name/op/openvi/package.nix index 9ac54feb90b759..b18c4c601de252 100644 --- a/pkgs/by-name/op/openvi/package.nix +++ b/pkgs/by-name/op/openvi/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "https://github.com/johnsonjh/OpenVi"; description = "Portable OpenBSD vi for UNIX systems"; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ aleksana ]; + license = licenses.bsd3; + platforms = platforms.unix; + maintainers = with maintainers; [ aleksana ]; mainProgram = "ovi"; }; } diff --git a/pkgs/by-name/op/ophcrack/package.nix b/pkgs/by-name/op/ophcrack/package.nix index bee8b7dd76f613..ddff1c1d34beb0 100644 --- a/pkgs/by-name/op/ophcrack/package.nix +++ b/pkgs/by-name/op/ophcrack/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { cp -R src/ophcrack $out/bin ''; - meta = { + meta = with lib; { description = "Free Windows password cracker based on rainbow tables"; homepage = "https://ophcrack.sourceforge.io"; - license = with lib.licenses; [ gpl2Plus ]; - maintainers = with lib.maintainers; [ tochiaha ]; + license = with licenses; [ gpl2Plus ]; + maintainers = with maintainers; [ tochiaha ]; mainProgram = "ophcrack"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/op/ophis/package.nix b/pkgs/by-name/op/ophis/package.nix index a3f93a76da3f2f..1bd276dcf44d22 100644 --- a/pkgs/by-name/op/ophis/package.nix +++ b/pkgs/by-name/op/ophis/package.nix @@ -24,7 +24,7 @@ let updateScript = unstableGitUpdater { }; }; - meta = { + meta = with lib; { homepage = "http://michaelcmartin.github.io/Ophis/"; description = "Cross-assembler for the 6502 series of microprocessors"; longDescription = '' @@ -34,9 +34,9 @@ let has successfully been used to create programs for the Nintendo Entertainment System, the Atari 2600, and the Commodore 64. ''; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "ophis"; - maintainers = with lib.maintainers; [ ]; + maintainers = with maintainers; [ ]; }; }; in diff --git a/pkgs/by-name/op/optinix/package.nix b/pkgs/by-name/op/optinix/package.nix index d45a5ef7790e9a..7298039afabbca 100644 --- a/pkgs/by-name/op/optinix/package.nix +++ b/pkgs/by-name/op/optinix/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { --zsh <($out/bin/optinix completion zsh) ''; - meta = { + meta = with lib; { description = "Tool for searching options in Nix"; homepage = "https://gitlab.com/hmajid2301/optinix"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ hmajid2301 ]; + license = licenses.mit; + maintainers = with maintainers; [ hmajid2301 ]; mainProgram = "optinix"; }; } diff --git a/pkgs/by-name/op/opusTools/package.nix b/pkgs/by-name/op/opusTools/package.nix index e1577606992630..db3fdfd6a8bdca 100644 --- a/pkgs/by-name/op/opusTools/package.nix +++ b/pkgs/by-name/op/opusTools/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { libopusenc ]; - meta = { + meta = with lib; { description = "Tools to work with opus encoded audio streams"; homepage = "https://www.opus-codec.org/"; - license = lib.licenses.bsd2; + license = licenses.bsd2; maintainers = [ ]; - platforms = with lib.platforms; unix; + platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/or/orbiton/package.nix b/pkgs/by-name/or/orbiton/package.nix index cf7e217980000c..92124a6c261f61 100644 --- a/pkgs/by-name/or/orbiton/package.nix +++ b/pkgs/by-name/or/orbiton/package.nix @@ -48,11 +48,11 @@ buildGoModule rec { wrapProgram $out/bin/og --prefix PATH : $out/bin ''; - meta = { + meta = with lib; { description = "Config-free text editor and IDE limited to VT100"; homepage = "https://orbiton.zip"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ sikmir ]; + license = licenses.bsd3; + maintainers = with maintainers; [ sikmir ]; mainProgram = "o"; }; } diff --git a/pkgs/by-name/or/oreo-cursors-plus/package.nix b/pkgs/by-name/or/oreo-cursors-plus/package.nix index 14dc1dd73c0465..578a4b420539a0 100644 --- a/pkgs/by-name/or/oreo-cursors-plus/package.nix +++ b/pkgs/by-name/or/oreo-cursors-plus/package.nix @@ -64,11 +64,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Colored Material cursors with cute animations"; homepage = "https://github.com/Souravgoswami/oreo-cursors"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ michaelBrunner ]; + license = licenses.gpl2Only; + platforms = platforms.all; + maintainers = with maintainers; [ michaelBrunner ]; }; } diff --git a/pkgs/by-name/or/orion/package.nix b/pkgs/by-name/or/orion/package.nix index 3c5dcab90454cd..87e3035aaaaa76 100644 --- a/pkgs/by-name/or/orion/package.nix +++ b/pkgs/by-name/or/orion/package.nix @@ -23,9 +23,9 @@ stdenv.mkDerivation rec { cp -r gtk-2.0 gtk-3.0 metacity-1 openbox-3 xfwm4 $out/share/themes/orion ''; - meta = { + meta = with lib; { homepage = "https://github.com/shimmerproject/Orion"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/os/osgqt/package.nix b/pkgs/by-name/os/osgqt/package.nix index 12e88648edd857..225c582a0bd8fa 100644 --- a/pkgs/by-name/os/osgqt/package.nix +++ b/pkgs/by-name/os/osgqt/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation (finalAttrs: { FIND_PACKAGE(Qt5OpenGL REQUIRED)" ''; - meta = { + meta = with lib; { description = "Qt bindings for OpenSceneGraph"; homepage = "https://github.com/openscenegraph/osgQt"; license = "OpenSceneGraph Public License - free LGPL-based license"; - maintainers = [ lib.maintainers.nim65s ]; - platforms = lib.platforms.unix; + maintainers = [ maintainers.nim65s ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/os/osmo-bsc/package.nix b/pkgs/by-name/os/osmo-bsc/package.nix index ed6bf1440aae2c..5f80dc88127009 100644 --- a/pkgs/by-name/os/osmo-bsc/package.nix +++ b/pkgs/by-name/os/osmo-bsc/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "GSM Base Station Controller"; homepage = "https://projects.osmocom.org/projects/osmobsc"; - license = lib.licenses.agpl3Plus; - maintainers = [ lib.maintainers.markuskowa ]; - platforms = lib.platforms.linux; + license = licenses.agpl3Plus; + maintainers = [ maintainers.markuskowa ]; + platforms = platforms.linux; mainProgram = "osmo-bsc"; }; } diff --git a/pkgs/by-name/os/osmo-bts/package.nix b/pkgs/by-name/os/osmo-bts/package.nix index 1f6f27bb6de515..50a7cfa2bf262b 100644 --- a/pkgs/by-name/os/osmo-bts/package.nix +++ b/pkgs/by-name/os/osmo-bts/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Osmocom GSM Base Transceiver Station (BTS)"; homepage = "https://osmocom.org/projects/osmobts"; - license = lib.licenses.agpl3Plus; - maintainers = [ lib.maintainers.markuskowa ]; - platforms = lib.platforms.linux; + license = licenses.agpl3Plus; + maintainers = [ maintainers.markuskowa ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/os/osmo-ggsn/package.nix b/pkgs/by-name/os/osmo-ggsn/package.nix index f79640ef8ef2a9..32d3ab6932503a 100644 --- a/pkgs/by-name/os/osmo-ggsn/package.nix +++ b/pkgs/by-name/os/osmo-ggsn/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Osmocom Gateway GPRS Support Node (GGSN), successor of OpenGGSN"; homepage = "https://osmocom.org/projects/openggsn"; - license = lib.licenses.gpl2Only; - maintainers = [ lib.maintainers.markuskowa ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + maintainers = [ maintainers.markuskowa ]; + platforms = platforms.linux; mainProgram = "osmo-ggsn"; }; } diff --git a/pkgs/by-name/os/osmo-hlr/package.nix b/pkgs/by-name/os/osmo-hlr/package.nix index 6e943965b1c938..53b9471da2945a 100644 --- a/pkgs/by-name/os/osmo-hlr/package.nix +++ b/pkgs/by-name/os/osmo-hlr/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Osmocom implementation of 3GPP Home Location Registr (HLR)"; homepage = "https://osmocom.org/projects/osmo-hlr"; - license = lib.licenses.agpl3Plus; - maintainers = [ lib.maintainers.markuskowa ]; - platforms = lib.platforms.linux; + license = licenses.agpl3Plus; + maintainers = [ maintainers.markuskowa ]; + platforms = platforms.linux; mainProgram = "osmo-hlr"; }; } diff --git a/pkgs/by-name/os/osmo-hnbgw/package.nix b/pkgs/by-name/os/osmo-hnbgw/package.nix index 2713c05d0a0686..0b87e1b9b7d64e 100644 --- a/pkgs/by-name/os/osmo-hnbgw/package.nix +++ b/pkgs/by-name/os/osmo-hnbgw/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Osmocom Home NodeB Gateway, for attaching femtocells to the 3G CN (OsmoMSC, OsmoSGSN)"; mainProgram = "osmo-hnbgw"; homepage = "https://osmocom.org/projects/osmohnbgw"; - license = lib.licenses.agpl3Plus; + license = licenses.agpl3Plus; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/os/osmo-hnodeb/package.nix b/pkgs/by-name/os/osmo-hnodeb/package.nix index 751077fb85b4d4..3f2202f2c9eafe 100644 --- a/pkgs/by-name/os/osmo-hnodeb/package.nix +++ b/pkgs/by-name/os/osmo-hnodeb/package.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "(upper layers of) HomeNodeB"; mainProgram = "osmo-hnodeb"; homepage = "https://osmocom.org/projects/osmo-hnodeb"; - license = lib.licenses.agpl3Plus; + license = licenses.agpl3Plus; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/os/osmo-iuh/package.nix b/pkgs/by-name/os/osmo-iuh/package.nix index 367d294feb0908..ebc9f5e47b209a 100644 --- a/pkgs/by-name/os/osmo-iuh/package.nix +++ b/pkgs/by-name/os/osmo-iuh/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Osmocom IuH library"; homepage = "https://osmocom.org/projects/osmohnbgw/wiki"; - license = lib.licenses.agpl3Plus; + license = licenses.agpl3Plus; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/os/osmo-mgw/package.nix b/pkgs/by-name/os/osmo-mgw/package.nix index e44f207c3d5cc5..3c61f1d3e068b9 100644 --- a/pkgs/by-name/os/osmo-mgw/package.nix +++ b/pkgs/by-name/os/osmo-mgw/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Osmocom Media Gateway (MGW). speaks RTP and E1 as well as MGCP"; mainProgram = "osmo-mgw"; homepage = "https://osmocom.org/projects/osmo-mgw"; - license = lib.licenses.agpl3Plus; - maintainers = [ lib.maintainers.markuskowa ]; - platforms = lib.platforms.linux; + license = licenses.agpl3Plus; + maintainers = [ maintainers.markuskowa ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/os/osmo-msc/package.nix b/pkgs/by-name/os/osmo-msc/package.nix index 72d3fa8d03fa9d..87fa0f1e0c86b3 100644 --- a/pkgs/by-name/os/osmo-msc/package.nix +++ b/pkgs/by-name/os/osmo-msc/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Osmocom implementation of 3GPP Mobile Swtiching Centre (MSC)"; mainProgram = "osmo-msc"; homepage = "https://osmocom.org/projects/osmomsc/wiki"; - license = lib.licenses.agpl3Only; - maintainers = [ lib.maintainers.markuskowa ]; - platforms = lib.platforms.linux; + license = licenses.agpl3Only; + maintainers = [ maintainers.markuskowa ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/os/osmo-pcu/package.nix b/pkgs/by-name/os/osmo-pcu/package.nix index fa26430c0448b0..9ee8648e014aaa 100644 --- a/pkgs/by-name/os/osmo-pcu/package.nix +++ b/pkgs/by-name/os/osmo-pcu/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Osmocom Packet control Unit (PCU): Network-side GPRS (RLC/MAC); BTS- or BSC-colocated"; mainProgram = "osmo-pcu"; homepage = "https://osmocom.org/projects/osmopcu"; - license = lib.licenses.gpl2Only; - maintainers = [ lib.maintainers.markuskowa ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + maintainers = [ maintainers.markuskowa ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/os/osmo-sgsn/package.nix b/pkgs/by-name/os/osmo-sgsn/package.nix index c74d297ef83e06..881b729ac6964c 100644 --- a/pkgs/by-name/os/osmo-sgsn/package.nix +++ b/pkgs/by-name/os/osmo-sgsn/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Osmocom implementation of the 3GPP Serving GPRS Support Node (SGSN)"; homepage = "https://osmocom.org/projects/osmosgsn"; - license = lib.licenses.agpl3Plus; - maintainers = [ lib.maintainers.markuskowa ]; - platforms = lib.platforms.linux; + license = licenses.agpl3Plus; + maintainers = [ maintainers.markuskowa ]; + platforms = platforms.linux; mainProgram = "osmo-sgsn"; }; } diff --git a/pkgs/by-name/os/osmo-sip-connector/package.nix b/pkgs/by-name/os/osmo-sip-connector/package.nix index 8e080ed043f798..ab792c1f04b17b 100644 --- a/pkgs/by-name/os/osmo-sip-connector/package.nix +++ b/pkgs/by-name/os/osmo-sip-connector/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "This implements an interface between the MNCC (Mobile Network Call Control) interface of OsmoMSC (and also previously OsmoNITB) and SIP"; mainProgram = "osmo-sip-connector"; homepage = "https://osmocom.org/projects/osmo-sip-conector"; - license = lib.licenses.agpl3Plus; - maintainers = [ lib.maintainers.markuskowa ]; - platforms = lib.platforms.linux; + license = licenses.agpl3Plus; + maintainers = [ maintainers.markuskowa ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/os/osqp-eigen/package.nix b/pkgs/by-name/os/osqp-eigen/package.nix index 016fbe8b0acaae..a3ea9ba4fcf7b2 100644 --- a/pkgs/by-name/os/osqp-eigen/package.nix +++ b/pkgs/by-name/os/osqp-eigen/package.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { description = "Simple Eigen-C++ wrapper for OSQP library"; homepage = "https://github.com/robotology/osqp-eigen"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ nim65s ]; + license = licenses.bsd3; + maintainers = with maintainers; [ nim65s ]; }; }) diff --git a/pkgs/by-name/os/ostrich-sans/package.nix b/pkgs/by-name/os/ostrich-sans/package.nix index a31617e6bd4fac..ea6fe217582757 100644 --- a/pkgs/by-name/os/ostrich-sans/package.nix +++ b/pkgs/by-name/os/ostrich-sans/package.nix @@ -23,14 +23,14 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Gorgeous modern sans-serif with a very long neck"; longDescription = '' A gorgeous modern sans-serif with a very long neck. With a whole slew of styles & weights. ''; homepage = "https://www.theleagueofmoveabletype.com/ostrich-sans"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ minijackson ]; + license = licenses.ofl; + maintainers = with maintainers; [ minijackson ]; }; } diff --git a/pkgs/by-name/os/oswald/package.nix b/pkgs/by-name/os/oswald/package.nix index c842e8565ea49a..084909aa8ddfb3 100644 --- a/pkgs/by-name/os/oswald/package.nix +++ b/pkgs/by-name/os/oswald/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Reworking of the classic gothic typeface style"; longDescription = '' Oswald is a reworking of the classic gothic typeface style @@ -33,8 +33,8 @@ stdenvNoCC.mkDerivation { better fit the pixel grid of standard digital screens. ''; homepage = "https://github.com/googlefonts/OswaldFont"; - license = lib.licenses.ofl; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ mimvoid ]; + license = licenses.ofl; + platforms = platforms.all; + maintainers = with maintainers; [ mimvoid ]; }; } diff --git a/pkgs/by-name/ot/otadump/package.nix b/pkgs/by-name/ot/otadump/package.nix index 2567cf28ee8a45..cafcdf301b436f 100644 --- a/pkgs/by-name/ot/otadump/package.nix +++ b/pkgs/by-name/ot/otadump/package.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-lTzEgy9mevkmefvTZT9hEBHN5I+kXVqTev5+sy/JoaE="; - meta = { + meta = with lib; { description = "Command-line tool to extract partitions from Android OTA files"; homepage = "https://github.com/crazystylus/otadump"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.axka ]; + license = licenses.mit; + maintainers = [ maintainers.axka ]; mainProgram = "otadump"; }; } diff --git a/pkgs/by-name/ot/otb/itk_4_13/package.nix b/pkgs/by-name/ot/otb/itk_4_13/package.nix index 54df690fb58a09..ad0057d2e0b2d5 100644 --- a/pkgs/by-name/ot/otb/itk_4_13/package.nix +++ b/pkgs/by-name/ot/otb/itk_4_13/package.nix @@ -137,11 +137,11 @@ stdenv.mkDerivation (finalAttrs: { zlib ]; - meta = { + meta = with lib; { description = "Insight Segmentation and Registration Toolkit"; homepage = "https://www.itk.org"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ daspk04 ]; - platforms = with lib.platforms; linux; + license = licenses.asl20; + maintainers = with maintainers; [ daspk04 ]; + platforms = with platforms; linux; }; }) diff --git a/pkgs/by-name/ot/otb/package.nix b/pkgs/by-name/ot/otb/package.nix index 921e00d29e6b04..5a8ccdb2275381 100644 --- a/pkgs/by-name/ot/otb/package.nix +++ b/pkgs/by-name/ot/otb/package.nix @@ -99,10 +99,10 @@ stdenv.mkDerivation (finalAttrs: { --set OTB_APPLICATION_PATH "$out/lib/otb/applications" ''; - meta = { + meta = with lib; { description = "Open Source processing of remote sensing images"; homepage = "https://www.orfeo-toolbox.org/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ daspk04 ]; + license = licenses.asl20; + maintainers = with maintainers; [ daspk04 ]; }; }) diff --git a/pkgs/by-name/ot/ott/package.nix b/pkgs/by-name/ot/ott/package.nix index a67c9fd0874e21..8605c188b2a701 100644 --- a/pkgs/by-name/ot/ott/package.nix +++ b/pkgs/by-name/ot/ott/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { rm -r $out/share/emacs ''; - meta = { + meta = with lib; { description = "Tool for the working semanticist"; mainProgram = "ott"; longDescription = '' @@ -57,8 +57,8 @@ stdenv.mkDerivation rec { target-system terms. ''; homepage = "http://www.cl.cam.ac.uk/~pes20/ott"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ jwiegley ]; - platforms = lib.platforms.unix; + license = licenses.bsd3; + maintainers = with maintainers; [ jwiegley ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ot/otus-lisp/package.nix b/pkgs/by-name/ot/otus-lisp/package.nix index 1de3f09f8f0556..0d66a83cf47180 100644 --- a/pkgs/by-name/ot/otus-lisp/package.nix +++ b/pkgs/by-name/ot/otus-lisp/package.nix @@ -20,15 +20,15 @@ stdenv.mkDerivation (finalAttrs: { makeFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { description = "Purely functional dialect of Lisp"; homepage = "https://yuriy-chumak.github.io/ol/"; - license = with lib.licenses; [ + license = with licenses; [ mit lgpl3Only ]; # dual licensed - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ nagy ]; + platforms = platforms.unix; + maintainers = with maintainers; [ nagy ]; mainProgram = "ol"; }; }) diff --git a/pkgs/by-name/ou/outguess/package.nix b/pkgs/by-name/ou/outguess/package.nix index 903c4754ffadb4..96a3c89e66ad86 100644 --- a/pkgs/by-name/ou/outguess/package.nix +++ b/pkgs/by-name/ou/outguess/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation (finalAttrs: { configureFlags = [ "--with-generic-jconfig" ]; - meta = { + meta = with lib; { description = "Universal steganographic tool that allows the insertion of hidden information into the redundant bits of data sources"; homepage = "https://github.com/resurrecting-open-source-projects/outguess"; - license = lib.licenses.bsdOriginal; - maintainers = with lib.maintainers; [ HeitorAugustoLN ]; + license = licenses.bsdOriginal; + maintainers = with maintainers; [ HeitorAugustoLN ]; mainProgram = "outguess"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ov/overturemaps/package.nix b/pkgs/by-name/ov/overturemaps/package.nix index 788d75e593c88e..d1578908a43b96 100644 --- a/pkgs/by-name/ov/overturemaps/package.nix +++ b/pkgs/by-name/ov/overturemaps/package.nix @@ -22,11 +22,11 @@ python3Packages.buildPythonPackage rec { shapely ]; - meta = { + meta = with lib; { description = "Official command-line tool of the Overture Maps Foundation"; homepage = "https://overturemaps.org/"; mainProgram = "overturemaps"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ crimeminister ]; + license = licenses.mit; + maintainers = with maintainers; [ crimeminister ]; }; } diff --git a/pkgs/by-name/ox/oxide-rs/package.nix b/pkgs/by-name/ox/oxide-rs/package.nix index 0ceb63fab62199..15f162991b7bda 100644 --- a/pkgs/by-name/ox/oxide-rs/package.nix +++ b/pkgs/by-name/ox/oxide-rs/package.nix @@ -68,11 +68,11 @@ rustPlatform.buildRustPackage rec { OPENSSL_NO_VENDOR = true; }; - meta = { + meta = with lib; { description = "The Oxide Rust SDK and CLI"; homepage = "https://github.com/oxidecomputer/oxide.rs"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ + license = licenses.mpl20; + maintainers = with maintainers; [ djacu sarcasticadmin ]; diff --git a/pkgs/by-name/ox/oxipng/package.nix b/pkgs/by-name/ox/oxipng/package.nix index 572977337e4c7d..db5d323d0b9a59 100644 --- a/pkgs/by-name/ox/oxipng/package.nix +++ b/pkgs/by-name/ox/oxipng/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage rec { doCheck = !stdenv.hostPlatform.isAarch64 && !stdenv.hostPlatform.isDarwin; - meta = { + meta = with lib; { homepage = "https://github.com/shssoichiro/oxipng"; description = "Multithreaded lossless PNG compression optimizer"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dywedir ]; + license = licenses.mit; + maintainers = with maintainers; [ dywedir ]; mainProgram = "oxipng"; }; } diff --git a/pkgs/by-name/p0/p0f/package.nix b/pkgs/by-name/p0/p0f/package.nix index 93c025b1c43e96..431d685ae19c8b 100644 --- a/pkgs/by-name/p0/p0f/package.nix +++ b/pkgs/by-name/p0/p0f/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = { + meta = with lib; { description = "Passive network reconnaissance and fingerprinting tool"; homepage = "https://lcamtuf.coredump.cx/p0f3/"; - license = lib.licenses.lgpl21; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.thoughtpolice ]; + license = licenses.lgpl21; + platforms = platforms.linux; + maintainers = [ maintainers.thoughtpolice ]; }; } diff --git a/pkgs/by-name/pa/pace/package.nix b/pkgs/by-name/pa/pace/package.nix index 1a92a2b2eaf909..07cac027c4dc99 100644 --- a/pkgs/by-name/pa/pace/package.nix +++ b/pkgs/by-name/pa/pace/package.nix @@ -30,11 +30,11 @@ rustPlatform.buildRustPackage { --zsh <($out/bin/pace setup completions zsh) ''; - meta = { + meta = with lib; { description = "Command-line program for mindful time tracking"; homepage = "https://github.com/pace-rs/pace"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ isabelroses ]; + license = licenses.agpl3Only; + maintainers = with maintainers; [ isabelroses ]; mainProgram = "pace"; }; } diff --git a/pkgs/by-name/pa/pack/package.nix b/pkgs/by-name/pa/pack/package.nix index a1255102d26e52..5400b185fc71e8 100644 --- a/pkgs/by-name/pa/pack/package.nix +++ b/pkgs/by-name/pa/pack/package.nix @@ -33,11 +33,11 @@ buildGoModule rec { tests.version = testers.testVersion { package = pack; }; }; - meta = { + meta = with lib; { description = "CLI for building apps using Cloud Native Buildpacks"; homepage = "https://github.com/buildpacks/pack/"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "pack"; - maintainers = with lib.maintainers; [ drupol ]; + maintainers = with maintainers; [ drupol ]; }; } diff --git a/pkgs/by-name/pa/packetdrill/package.nix b/pkgs/by-name/pa/packetdrill/package.nix index 824f93e4d48cf1..c03b7a170602d2 100644 --- a/pkgs/by-name/pa/packetdrill/package.nix +++ b/pkgs/by-name/pa/packetdrill/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { cp -r ../tests $out/share/packetdrill-tests ''; - meta = { + meta = with lib; { description = "Quick, precise tests for entire TCP/UDP/IPv4/IPv6 network stacks"; homepage = "https://github.com/google/packetdrill"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ dmjio cleverca22 ]; diff --git a/pkgs/by-name/pa/packetry/package.nix b/pkgs/by-name/pa/packetry/package.nix index f01731991eb26d..1b913ff495427d 100644 --- a/pkgs/by-name/pa/packetry/package.nix +++ b/pkgs/by-name/pa/packetry/package.nix @@ -46,12 +46,12 @@ rustPlatform.buildRustPackage rec { rm $out/bin/packetry-cli ''; - meta = { + meta = with lib; { description = "USB 2.0 protocol analysis application for use with Cynthion"; homepage = "https://github.com/greatscottgadgets/packetry"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ carlossless ]; + license = licenses.bsd3; + maintainers = with maintainers; [ carlossless ]; mainProgram = "packetry"; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/by-name/pa/pal/package.nix b/pkgs/by-name/pa/pal/package.nix index f8189b385860e4..afe2554de70796 100644 --- a/pkgs/by-name/pa/pal/package.nix +++ b/pkgs/by-name/pa/pal/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = { + meta = with lib; { homepage = "https://palcal.sourceforge.net/"; description = "Command-line calendar program that can keep track of events"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/pa/pam-watchid/package.nix b/pkgs/by-name/pa/pam-watchid/package.nix index d6b75d59a5e8a1..2a285019d78e87 100644 --- a/pkgs/by-name/pa/pam-watchid/package.nix +++ b/pkgs/by-name/pa/pam-watchid/package.nix @@ -29,11 +29,11 @@ swiftPackages.stdenv.mkDerivation { cp $binPath/libpam-watchid.dylib $out/lib/pam_watchid.so ''; - meta = { + meta = with lib; { description = "PAM plugin module that allows the Apple Watch to be used for authentication"; homepage = "https://github.com/Logicer16/pam-watchid"; - license = lib.licenses.unlicense; - maintainers = [ lib.maintainers.samasaur ]; - platforms = lib.platforms.darwin; + license = licenses.unlicense; + maintainers = [ maintainers.samasaur ]; + platforms = platforms.darwin; }; } diff --git a/pkgs/by-name/pa/panotools/package.nix b/pkgs/by-name/pa/panotools/package.nix index 1616159e31c1a0..d5ab3e9bf955bf 100644 --- a/pkgs/by-name/pa/panotools/package.nix +++ b/pkgs/by-name/pa/panotools/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation (finalAttrs: { darwin.apple_sdk.frameworks.Carbon ]; - meta = { + meta = with lib; { description = "Free software suite for authoring and displaying virtual reality panoramas"; homepage = "https://panotools.sourceforge.net/"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.wegank ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = [ maintainers.wegank ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/pa/panvimdoc/package.nix b/pkgs/by-name/pa/panvimdoc/package.nix index 5ce0eabfc22be4..77f9d35273b4ba 100644 --- a/pkgs/by-name/pa/panvimdoc/package.nix +++ b/pkgs/by-name/pa/panvimdoc/package.nix @@ -39,12 +39,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { } ''; - meta = { + meta = with lib; { description = "Write documentation in pandoc markdown. Generate documentation in vimdoc"; homepage = "https://github.com/kdheepak/panvimdoc"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ mrcjkb ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ mrcjkb ]; mainProgram = "panvimdoc"; }; }) diff --git a/pkgs/by-name/pa/papeer/package.nix b/pkgs/by-name/pa/papeer/package.nix index 82f11c6cf5a17b..fb1bf94238272c 100644 --- a/pkgs/by-name/pa/papeer/package.nix +++ b/pkgs/by-name/pa/papeer/package.nix @@ -19,11 +19,11 @@ buildGoModule rec { doCheck = false; # uses network - meta = { + meta = with lib; { description = "Convert websites into ebooks and markdown"; mainProgram = "papeer"; homepage = "https://papeer.tech/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ehmry ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ ehmry ]; }; } diff --git a/pkgs/by-name/pa/paperjam/package.nix b/pkgs/by-name/pa/paperjam/package.nix index ca9cbffd062d0e..3b408c609709f9 100644 --- a/pkgs/by-name/pa/paperjam/package.nix +++ b/pkgs/by-name/pa/paperjam/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation (finalAttrs: { env.NIX_CFLAGS_COMPILE = "-DPOINTERHOLDER_TRANSITION=1"; env.NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isDarwin "-liconv"; - meta = { + meta = with lib; { homepage = "https://mj.ucw.cz/sw/paperjam/"; description = "Program for transforming PDF files"; longDescription = '' @@ -42,9 +42,9 @@ stdenv.mkDerivation (finalAttrs: { pages, scale and rotate them, put multiple pages on a single sheet, draw cropmarks, and many other tricks. ''; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "paperjam"; - maintainers = with lib.maintainers; [ cbley ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ cbley ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/pa/paperlib/package.nix b/pkgs/by-name/pa/paperlib/package.nix index 61c7fca9818d7e..7973795c09cc91 100644 --- a/pkgs/by-name/pa/paperlib/package.nix +++ b/pkgs/by-name/pa/paperlib/package.nix @@ -26,17 +26,17 @@ let inherit pname version src; }; - meta = { + meta = with lib; { homepage = "https://github.com/Future-Scholars/paperlib?"; description = "Open-source academic paper management tool"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ByteSudoer ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ ByteSudoer ]; platforms = [ "x86_64-darwin" "x86_64-linux" ]; mainProgram = "paperlib"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; in if stdenv.hostPlatform.isDarwin then diff --git a/pkgs/by-name/pa/paperlike-go/package.nix b/pkgs/by-name/pa/paperlike-go/package.nix index 0818476a55f76d..64914bffb50d80 100644 --- a/pkgs/by-name/pa/paperlike-go/package.nix +++ b/pkgs/by-name/pa/paperlike-go/package.nix @@ -19,12 +19,12 @@ buildGoModule { subPackages = [ "cmd/paperlike-cli" ]; - meta = { + meta = with lib; { description = "Linux Go library and CLI utility to control a Dasung Paperlike display via I2C DDC"; homepage = "https://github.com/leoluk/paperlike-go"; - license = lib.licenses.asl20; + license = licenses.asl20; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "paperlike-cli"; }; } diff --git a/pkgs/by-name/pa/papilo/package.nix b/pkgs/by-name/pa/papilo/package.nix index 2e9e6b348de1c2..8531ab60abbe72 100644 --- a/pkgs/by-name/pa/papilo/package.nix +++ b/pkgs/by-name/pa/papilo/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { homepage = "https://scipopt.org/"; description = "Parallel Presolve for Integer and Linear Optimization"; - license = with lib.licenses; [ lgpl3Plus ]; + license = with licenses; [ lgpl3Plus ]; mainProgram = "papilo"; - maintainers = with lib.maintainers; [ david-r-cox ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ david-r-cox ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/pa/parlay/package.nix b/pkgs/by-name/pa/parlay/package.nix index 5af76a212b7aaa..3373ba5a6a2af0 100644 --- a/pkgs/by-name/pa/parlay/package.nix +++ b/pkgs/by-name/pa/parlay/package.nix @@ -20,14 +20,14 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Enriches SBOMs with data from third party services"; homepage = "https://github.com/snyk/parlay"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ kiike ]; mainProgram = "parlay"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/pa/parson/package.nix b/pkgs/by-name/pa/parson/package.nix index 59d1ed43495cd5..883c7581b0e04f 100644 --- a/pkgs/by-name/pa/parson/package.nix +++ b/pkgs/by-name/pa/parson/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation { ninja ]; - meta = { + meta = with lib; { description = "Lightweight JSON library written in C"; homepage = "https://github.com/kgabis/parson"; - license = lib.licenses.mit; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/by-name/pa/partimage/package.nix b/pkgs/by-name/pa/partimage/package.nix index 9875ed28dc2caf..5f29e089c9a130 100644 --- a/pkgs/by-name/pa/partimage/package.nix +++ b/pkgs/by-name/pa/partimage/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { }) ]; - meta = { + meta = with lib; { description = "Opensource disk backup software"; homepage = "https://www.partimage.org"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.marcweber ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = [ maintainers.marcweber ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/pa/pass-secret-service/package.nix b/pkgs/by-name/pa/pass-secret-service/package.nix index 6d86978faba4e2..971bc7c0660e3d 100644 --- a/pkgs/by-name/pa/pass-secret-service/package.nix +++ b/pkgs/by-name/pa/pass-secret-service/package.nix @@ -67,12 +67,12 @@ python3.pkgs.buildPythonApplication rec { passthru.tests.pass-secret-service = nixosTests.pass-secret-service; - meta = { + meta = with lib; { description = "Libsecret D-Bus API with pass as the backend"; homepage = "https://github.com/mdellweg/pass_secret_service/"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.all; + license = licenses.gpl3Only; + platforms = platforms.all; mainProgram = "pass_secret_service"; - maintainers = with lib.maintainers; [ jluttine ]; + maintainers = with maintainers; [ jluttine ]; }; } diff --git a/pkgs/by-name/pa/passwdqc/package.nix b/pkgs/by-name/pa/passwdqc/package.nix index 413aa15095a645..b21ff51dfb0604 100644 --- a/pkgs/by-name/pa/passwdqc/package.nix +++ b/pkgs/by-name/pa/passwdqc/package.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation (finalAttrs: { "SHARED_LIBDIR_REL=$(out)/lib" ]; - meta = { + meta = with lib; { homepage = "https://www.openwall.com/passwdqc/"; description = "Passphrase strength checking and enforcement"; - license = with lib.licenses; [ bsd3 ]; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = with licenses; [ bsd3 ]; + maintainers = with maintainers; [ AndersonTorres ]; mainProgram = "passwdqc"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/pa/patch-package/package.nix b/pkgs/by-name/pa/patch-package/package.nix index 7260ca50f8880f..67eef409a37ccc 100644 --- a/pkgs/by-name/pa/patch-package/package.nix +++ b/pkgs/by-name/pa/patch-package/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Fix broken node modules instantly"; mainProgram = "patch-package"; homepage = "https://github.com/ds300/patch-package"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pyrox0 ]; + license = licenses.mit; + maintainers = with maintainers; [ pyrox0 ]; }; }) diff --git a/pkgs/by-name/pa/patchage/package.nix b/pkgs/by-name/pa/patchage/package.nix index fa5f705b8681f2..6244fb60d9e633 100644 --- a/pkgs/by-name/pa/patchage/package.nix +++ b/pkgs/by-name/pa/patchage/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { wafHook ]; - meta = { + meta = with lib; { description = "Modular patch bay for Jack and ALSA systems"; homepage = "https://drobilla.net/software/patchage.html"; - license = lib.licenses.lgpl3; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.nico202 ]; + license = licenses.lgpl3; + platforms = platforms.linux; + maintainers = [ maintainers.nico202 ]; mainProgram = "patchage"; }; } diff --git a/pkgs/by-name/pa/paup-cli/package.nix b/pkgs/by-name/pa/paup-cli/package.nix index 12796245bcedca..8e47dda46e5b98 100644 --- a/pkgs/by-name/pa/paup-cli/package.nix +++ b/pkgs/by-name/pa/paup-cli/package.nix @@ -40,12 +40,12 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "A software package for inferring evolutionary trees"; homepage = "http://phylosolutions.com/paup-test/"; - license = lib.licenses.unfree; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; - maintainers = with lib.maintainers; [ pandapip1 ]; + license = licenses.unfree; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; + maintainers = with maintainers; [ pandapip1 ]; mainProgram = "paup"; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/pa/pavucontrol/package.nix b/pkgs/by-name/pa/pavucontrol/package.nix index a7ca399e494689..ecb31407a74c96 100644 --- a/pkgs/by-name/pa/pavucontrol/package.nix +++ b/pkgs/by-name/pa/pavucontrol/package.nix @@ -55,18 +55,18 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = { + meta = with lib; { changelog = "https://freedesktop.org/software/pulseaudio/pavucontrol/#news"; description = "PulseAudio Volume Control"; homepage = "http://freedesktop.org/software/pulseaudio/pavucontrol/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; longDescription = '' PulseAudio Volume Control (pavucontrol) provides a GTK graphical user interface to connect to a PulseAudio server and easily control the volume of all clients, sinks, etc. ''; mainProgram = "pavucontrol"; - maintainers = with lib.maintainers; [ abbradar ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ abbradar ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/pa/pay-respects/package.nix b/pkgs/by-name/pa/pay-respects/package.nix index 50b0f6398a2a23..265d2f9db4aebf 100644 --- a/pkgs/by-name/pa/pay-respects/package.nix +++ b/pkgs/by-name/pa/pay-respects/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-xLAJLwzX923E7Pzfwdw38moLOlY0Q4xK8himbKHQ7O8="; - meta = { + meta = with lib; { description = "Terminal command correction, alternative to `thefuck`, written in Rust"; homepage = "https://codeberg.org/iff/pay-respects"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ sigmasquadron ]; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ sigmasquadron ]; mainProgram = "pay-respects"; }; } diff --git a/pkgs/by-name/pa/payloadsallthethings/package.nix b/pkgs/by-name/pa/payloadsallthethings/package.nix index 2fd0fb3d760297..65ed92ca9b962a 100644 --- a/pkgs/by-name/pa/payloadsallthethings/package.nix +++ b/pkgs/by-name/pa/payloadsallthethings/package.nix @@ -23,12 +23,12 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/swisskyrepo/PayloadsAllTheThings"; description = "List of useful payloads and bypass for Web Application Security and Pentest/CTF"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ shard7 ]; - platforms = lib.platforms.all; - sourceProvenance = with lib.sourceTypes; [ fromSource ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ shard7 ]; + platforms = platforms.all; + sourceProvenance = with sourceTypes; [ fromSource ]; }; } diff --git a/pkgs/by-name/pa/payme/package.nix b/pkgs/by-name/pa/payme/package.nix index 70df0c753a3c8f..be7e768a9ce3f7 100644 --- a/pkgs/by-name/pa/payme/package.nix +++ b/pkgs/by-name/pa/payme/package.nix @@ -35,11 +35,11 @@ buildGoModule rec { ldflags+=" -X 'main.buildTime=$(cat BUILD_TIME)'" ''; - meta = { + meta = with lib; { description = "QR code generator (ASCII & PNG) for SEPA payments"; mainProgram = "payme"; homepage = "https://github.com/jovandeginste/payme"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ cimm ]; + license = licenses.mit; + maintainers = with maintainers; [ cimm ]; }; } diff --git a/pkgs/by-name/pc/pc/package.nix b/pkgs/by-name/pc/pc/package.nix index 9abcda1d567b26..6fb3932f1203f1 100644 --- a/pkgs/by-name/pc/pc/package.nix +++ b/pkgs/by-name/pc/pc/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { description = "Programmer's calculator"; homepage = "https://git.sr.ht/~ft/pc"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ moody ]; - platforms = lib.platforms.unix; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ moody ]; + platforms = platforms.unix; mainProgram = "pc"; }; }) diff --git a/pkgs/by-name/pc/pcmciaUtils/package.nix b/pkgs/by-name/pc/pcmciaUtils/package.nix index d6707a89d39e07..c546df67cfb13d 100644 --- a/pkgs/by-name/pc/pcmciaUtils/package.nix +++ b/pkgs/by-name/pc/pcmciaUtils/package.nix @@ -58,14 +58,14 @@ stdenv.mkDerivation rec { done; '') firmware; - meta = { + meta = with lib; { homepage = "https://www.kernel.org/pub/linux/utils/kernel/pcmcia/"; longDescription = " PCMCIAutils contains the initialization tools necessary to allow the PCMCIA subsystem to behave (almost) as every other hotpluggable bus system. "; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/pd/pdf-parser/package.nix b/pkgs/by-name/pd/pdf-parser/package.nix index 1625f8e53f32ac..d6675dd2595fcb 100644 --- a/pkgs/by-name/pd/pdf-parser/package.nix +++ b/pkgs/by-name/pd/pdf-parser/package.nix @@ -49,16 +49,16 @@ python3Packages.buildPythonApplication rec { update-source-version "$UPDATE_NIX_ATTR_PATH" "$version" ''; - meta = { + meta = with lib; { description = "Parse a PDF document"; longDescription = '' This tool will parse a PDF document to identify the fundamental elements used in the analyzed file. It will not render a PDF document. ''; homepage = "https://blog.didierstevens.com/programs/pdf-tools/"; - license = lib.licenses.publicDomain; - maintainers = [ lib.maintainers.lightdiscord ]; - platforms = lib.platforms.all; + license = licenses.publicDomain; + maintainers = [ maintainers.lightdiscord ]; + platforms = platforms.all; mainProgram = "pdf-parser.py"; }; } diff --git a/pkgs/by-name/pd/pdf-sign/package.nix b/pkgs/by-name/pd/pdf-sign/package.nix index ffa038690dcd84..247ce3e1a6b999 100644 --- a/pkgs/by-name/pd/pdf-sign/package.nix +++ b/pkgs/by-name/pd/pdf-sign/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Tool to visually sign PDF files"; homepage = "https://github.com/svenssonaxel/pdf-sign"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "pdf-sign"; - maintainers = with lib.maintainers; [ tomasajt ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ tomasajt ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/pd/pdf4qt/package.nix b/pkgs/by-name/pd/pdf4qt/package.nix index 47613a53fa8484..a75b902b817b18 100644 --- a/pkgs/by-name/pd/pdf4qt/package.nix +++ b/pkgs/by-name/pd/pdf4qt/package.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation (finalAttrs: { qtWrapperArgs+=(''${gappsWrapperArgs[@]}) ''; - meta = { + meta = with lib; { description = "Open source PDF editor"; longDescription = '' This software is consisting of PDF rendering library, @@ -70,9 +70,9 @@ stdenv.mkDerivation (finalAttrs: { functionality based on PDF Reference 2.0. ''; homepage = "https://jakubmelka.github.io"; - license = lib.licenses.lgpl3Only; + license = licenses.lgpl3Only; mainProgram = "Pdf4QtViewerLite"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/pd/pdfgrep/package.nix b/pkgs/by-name/pd/pdfgrep/package.nix index 924fcd19d307be..432d6bad4b9fcf 100644 --- a/pkgs/by-name/pd/pdfgrep/package.nix +++ b/pkgs/by-name/pd/pdfgrep/package.nix @@ -38,15 +38,15 @@ stdenv.mkDerivation rec { pcre2 ]; - meta = { + meta = with lib; { description = "Commandline utility to search text in PDF files"; homepage = "https://pdfgrep.org/"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + maintainers = with maintainers; [ qknight fpletz ]; - platforms = with lib.platforms; unix; + platforms = with platforms; unix; mainProgram = "pdfgrep"; }; } diff --git a/pkgs/by-name/pd/pdfium-binaries/package.nix b/pkgs/by-name/pd/pdfium-binaries/package.nix index 61e5f218becff0..df644f29bf53cb 100644 --- a/pkgs/by-name/pd/pdfium-binaries/package.nix +++ b/pkgs/by-name/pd/pdfium-binaries/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { description = "Binary distribution of PDFium"; homepage = "https://github.com/bblanchon/pdfium-binaries"; - license = with lib.licenses; [ asl20 ]; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - maintainers = with lib.maintainers; [ aucub ]; + license = with licenses; [ asl20 ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + maintainers = with maintainers; [ aucub ]; platforms = [ "aarch64-linux" "aarch64-darwin" diff --git a/pkgs/by-name/pd/pdk/package.nix b/pkgs/by-name/pd/pdk/package.nix index e1e5b9c71b1550..c65060d3c7a280 100644 --- a/pkgs/by-name/pd/pdk/package.nix +++ b/pkgs/by-name/pd/pdk/package.nix @@ -27,13 +27,13 @@ bundlerApp { updateScript = bundlerUpdateScript "pdk"; }; - meta = { + meta = with lib; { changelog = "https://github.com/puppetlabs/pdk/blob/main/CHANGELOG.md"; description = "Puppet Development Kit"; homepage = "https://github.com/puppetlabs/pdk"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "pdk"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ netali anthonyroussel ]; diff --git a/pkgs/by-name/pe/peakperf/package.nix b/pkgs/by-name/pe/peakperf/package.nix index 379963aac15671..e85ee11daa6b8a 100644 --- a/pkgs/by-name/pe/peakperf/package.nix +++ b/pkgs/by-name/pe/peakperf/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation (finalAttrs: { versionCheckProgram = "${placeholder "out"}/bin/peakperf"; - meta = { + meta = with lib; { homepage = "https://github.com/Dr-Noob/peakperf"; description = "Achieve peak performance on x86 CPUs and NVIDIA GPUs"; mainProgram = "peakperf"; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; + maintainers = with maintainers; [ bot-wxt1221 ]; platforms = [ "x86_64-linux" ]; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; }; }) diff --git a/pkgs/by-name/pe/pebble/package.nix b/pkgs/by-name/pe/pebble/package.nix index b634fd0f400c90..6569660eb9d386 100644 --- a/pkgs/by-name/pe/pebble/package.nix +++ b/pkgs/by-name/pe/pebble/package.nix @@ -28,12 +28,12 @@ buildGoModule rec { smoke-test = nixosTests.acme; }; - meta = { + meta = with lib; { homepage = "https://github.com/letsencrypt/pebble"; description = "Small RFC 8555 ACME test server"; longDescription = "Miniature version of Boulder, Pebble is a small RFC 8555 ACME test server not suited for a production CA"; - license = [ lib.licenses.mpl20 ]; + license = [ licenses.mpl20 ]; mainProgram = "pebble"; - maintainers = lib.teams.acme.members; + maintainers = teams.acme.members; }; } diff --git a/pkgs/by-name/pe/pegtl/package.nix b/pkgs/by-name/pe/pegtl/package.nix index 28052ee7513bdd..e0c88b78d2e028 100644 --- a/pkgs/by-name/pe/pegtl/package.nix +++ b/pkgs/by-name/pe/pegtl/package.nix @@ -25,15 +25,15 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/taocpp/pegtl"; description = "Parsing Expression Grammar Template Library"; longDescription = '' Zero-dependency C++ header-only parser combinator library for creating parsers according to a Parsing Expression Grammar (PEG). ''; - license = lib.licenses.boost; + license = licenses.boost; maintainers = [ ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/pe/penguin-subtitle-player/package.nix b/pkgs/by-name/pe/penguin-subtitle-player/package.nix index d2eb9306fd2024..91dcc36a0a61f3 100644 --- a/pkgs/by-name/pe/penguin-subtitle-player/package.nix +++ b/pkgs/by-name/pe/penguin-subtitle-player/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ qt5.qmake ]; - meta = { + meta = with lib; { description = "Open-source, cross-platform and standalone subtitle player"; homepage = "https://github.com/carsonip/Penguin-Subtitle-Player"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ eljamm ]; - platforms = lib.platforms.all; + license = licenses.gpl3Only; + maintainers = with maintainers; [ eljamm ]; + platforms = platforms.all; mainProgram = "PenguinSubtitlePlayer"; }; }) diff --git a/pkgs/by-name/pe/perkeep/package.nix b/pkgs/by-name/pe/perkeep/package.nix index 6cc502dc991b23..2f8b27abea1c35 100644 --- a/pkgs/by-name/pe/perkeep/package.nix +++ b/pkgs/by-name/pe/perkeep/package.nix @@ -33,11 +33,11 @@ buildGoModule { rm -f $out/bin/genfileembed ''; - meta = { + meta = with lib; { description = "Way of storing, syncing, sharing, modelling and backing up content (née Camlistore)"; homepage = "https://perkeep.org"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ kalbasit gador ]; diff --git a/pkgs/by-name/pe/perseus/package.nix b/pkgs/by-name/pe/perseus/package.nix index 4b39d2e913954d..5b39d14b05f5d4 100644 --- a/pkgs/by-name/pe/perseus/package.nix +++ b/pkgs/by-name/pe/perseus/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { cp perseus $out/bin ''; - meta = { + meta = with lib; { description = "Persistent Homology Software"; mainProgram = "perseus"; longDescription = '' @@ -39,8 +39,8 @@ stdenv.mkDerivation { matrices and so forth. ''; homepage = "http://people.maths.ox.ac.uk/nanda/perseus/index.html"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ erikryb ]; - platforms = lib.platforms.linux; + license = licenses.gpl3; + maintainers = with maintainers; [ erikryb ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/pf/pfft/package.nix b/pkgs/by-name/pf/pfft/package.nix index 356c00ab84c032..0a209d260ff217 100644 --- a/pkgs/by-name/pf/pfft/package.nix +++ b/pkgs/by-name/pf/pfft/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { description = "Parallel fast Fourier transforms"; homepage = "https://www-user.tu-chemnitz.de/~potts/workgroup/pippig/software.php.en#pfft"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ hmenke ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ hmenke ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/pf/pflask/package.nix b/pkgs/by-name/pf/pflask/package.nix index f823d49201f870..13718c5c1fecc3 100644 --- a/pkgs/by-name/pf/pflask/package.nix +++ b/pkgs/by-name/pf/pflask/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation (finalAttrs: { cp build/pflask $out/bin ''; - meta = { + meta = with lib; { description = "Lightweight process containers for Linux"; mainProgram = "pflask"; homepage = "https://ghedo.github.io/pflask/"; - license = lib.licenses.bsd2; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; + license = licenses.bsd2; + platforms = platforms.linux; + maintainers = with maintainers; [ bot-wxt1221 ]; }; }) diff --git a/pkgs/by-name/pg/pgf_graphics/package.nix b/pkgs/by-name/pg/pgf_graphics/package.nix index f92be10a6307f9..50fd98e142d11c 100644 --- a/pkgs/by-name/pg/pgf_graphics/package.nix +++ b/pkgs/by-name/pg/pgf_graphics/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { libpgf ]; - meta = { + meta = with lib; { homepage = "https://www.libpgf.org/"; description = "Progressive Graphics Format command line program"; - license = lib.licenses.lgpl21Plus; - platforms = lib.platforms.linux; + license = licenses.lgpl21Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/pg/pghero/package.nix b/pkgs/by-name/pg/pghero/package.nix index 5699ea4d33c656..4297be0ee393d7 100644 --- a/pkgs/by-name/pg/pghero/package.nix +++ b/pkgs/by-name/pg/pghero/package.nix @@ -70,12 +70,12 @@ stdenv.mkDerivation ( }; }; - meta = { + meta = with lib; { homepage = "https://github.com/ankane/pghero"; description = "Performance dashboard for Postgres"; mainProgram = "pghero"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.tie ]; + license = licenses.mit; + maintainers = [ maintainers.tie ]; }; } ) diff --git a/pkgs/by-name/pg/pgrok/package.nix b/pkgs/by-name/pg/pgrok/package.nix index 360aeea5561923..95921f3972d0e4 100644 --- a/pkgs/by-name/pg/pgrok/package.nix +++ b/pkgs/by-name/pg/pgrok/package.nix @@ -69,11 +69,11 @@ buildGoModule { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Selfhosted TCP/HTTP tunnel, ngrok alternative, written in Go"; homepage = "https://github.com/pgrok/pgrok"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ marie ]; + license = licenses.mit; + maintainers = with maintainers; [ marie ]; mainProgram = "pgrok"; }; } diff --git a/pkgs/by-name/pg/pgroll/package.nix b/pkgs/by-name/pg/pgroll/package.nix index 3aadec0057974b..d3bf36bfe9b312 100644 --- a/pkgs/by-name/pg/pgroll/package.nix +++ b/pkgs/by-name/pg/pgroll/package.nix @@ -30,10 +30,10 @@ buildGoModule rec { # Tests require a running docker daemon doCheck = false; - meta = { + meta = with lib; { description = "PostgreSQL zero-downtime migrations made easy"; - license = lib.licenses.asl20; + license = licenses.asl20; homepage = "https://github.com/xataio/pgroll"; - maintainers = with lib.maintainers; [ ilyakooo0 ]; + maintainers = with maintainers; [ ilyakooo0 ]; }; } diff --git a/pkgs/by-name/ph/pharo/package.nix b/pkgs/by-name/ph/pharo/package.nix index fd0602681c2296..41c26f6be403d0 100644 --- a/pkgs/by-name/ph/pharo/package.nix +++ b/pkgs/by-name/ph/pharo/package.nix @@ -83,19 +83,19 @@ stdenv.mkDerivation (finalAttrs: { wrapProgram "$out/bin/pharo" --argv0 $out/bin/pharo --prefix LD_LIBRARY_PATH ":" "${libPath}" ''; - meta = { + meta = with lib; { description = "Clean and innovative Smalltalk-inspired environment"; homepage = "https://pharo.org"; changelog = "https://github.com/pharo-project/pharo/releases/"; - license = lib.licenses.mit; + license = licenses.mit; longDescription = '' Pharo's goal is to deliver a clean, innovative, free open-source Smalltalk-inspired environment. By providing a stable and small core system, excellent dev tools, and maintained releases, Pharo is an attractive platform to build and deploy mission critical applications. ''; - maintainers = with lib.maintainers; [ ehmry ]; + maintainers = with maintainers; [ ehmry ]; mainProgram = "pharo"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ph/photocollage/package.nix b/pkgs/by-name/ph/photocollage/package.nix index 03894fb27b0ad8..cd8d4cbba4a317 100644 --- a/pkgs/by-name/ph/photocollage/package.nix +++ b/pkgs/by-name/ph/photocollage/package.nix @@ -49,12 +49,12 @@ python3Packages.buildPythonApplication rec { cp -r ./data/icons $out/share/icons ''; - meta = { + meta = with lib; { description = "Graphical tool to make photo collage posters"; homepage = "https://github.com/adrienverge/PhotoCollage"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ eliandoran ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ eliandoran ]; + platforms = platforms.linux; mainProgram = "photocollage"; }; } diff --git a/pkgs/by-name/ph/photoqt/package.nix b/pkgs/by-name/ph/photoqt/package.nix index 2fa08c05174050..549ac224854b4e 100644 --- a/pkgs/by-name/ph/photoqt/package.nix +++ b/pkgs/by-name/ph/photoqt/package.nix @@ -70,12 +70,12 @@ stdenv.mkDerivation rec { makeWrapper $out/{Applications/photoqt.app/Contents/MacOS,bin}/photoqt ''; - meta = { + meta = with lib; { description = "Simple, yet powerful and good looking image viewer"; homepage = "https://photoqt.org/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "photoqt"; - maintainers = with lib.maintainers; [ wegank ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ wegank ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ph/phylophlan/package.nix b/pkgs/by-name/ph/phylophlan/package.nix index 3cb804a2922733..4e7e3437d2c7bd 100644 --- a/pkgs/by-name/ph/phylophlan/package.nix +++ b/pkgs/by-name/ph/phylophlan/package.nix @@ -52,12 +52,12 @@ let rm -f $out/bin/phylophlan_write_default_configs.sh ''; - meta = { + meta = with lib; { homepage = "https://github.com/biobakery/phylophlan"; description = "Precise phylogenetic analysis of microbial isolates and genomes from metagenomes"; changelog = "https://github.com/biobakery/phylophlan/releases"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ theobori ]; + license = licenses.mit; + maintainers = with maintainers; [ theobori ]; mainProgram = "phylophlan"; }; }; diff --git a/pkgs/by-name/ph/physac/package.nix b/pkgs/by-name/ph/physac/package.nix index bc81fb2698db46..696319845ffd24 100644 --- a/pkgs/by-name/ph/physac/package.nix +++ b/pkgs/by-name/ph/physac/package.nix @@ -37,11 +37,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "2D physics header-only library for raylib"; homepage = "https://github.com/victorfisac/Physac"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/pi/picocom/package.nix b/pkgs/by-name/pi/picocom/package.nix index 4a549e27921c5d..5d9f4b1f817c56 100644 --- a/pkgs/by-name/pi/picocom/package.nix +++ b/pkgs/by-name/pi/picocom/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Minimal dumb-terminal emulation program"; homepage = "https://gitlab.com/wsakernel/picocom"; changelog = "https://gitlab.com/wsakernel/picocom/-/releases"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + platforms = platforms.unix; mainProgram = "picocom"; }; }) diff --git a/pkgs/by-name/pi/picocrypt/package.nix b/pkgs/by-name/pi/picocrypt/package.nix index 7c4263059ac861..6edaf5841172f2 100644 --- a/pkgs/by-name/pi/picocrypt/package.nix +++ b/pkgs/by-name/pi/picocrypt/package.nix @@ -66,12 +66,12 @@ buildGoModule rec { }) ]; - meta = { + meta = with lib; { description = "Very small, very simple, yet very secure encryption tool, written in Go"; homepage = "https://github.com/Picocrypt/Picocrypt"; changelog = "https://github.com/Picocrypt/Picocrypt/blob/main/Changelog.md"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ryand56 ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ ryand56 ]; mainProgram = "picocrypt-gui"; }; } diff --git a/pkgs/by-name/pi/picosat/package.nix b/pkgs/by-name/pi/picosat/package.nix index 812e5abaef75bc..bc9058ef70eeb1 100644 --- a/pkgs/by-name/pi/picosat/package.nix +++ b/pkgs/by-name/pi/picosat/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { cp picosat.h "$out"/include/picosat ''; - meta = { + meta = with lib; { description = "SAT solver with proof and core support"; homepage = "https://fmv.jku.at/picosat/"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ roconnor thoughtpolice ]; diff --git a/pkgs/by-name/pi/picotts/package.nix b/pkgs/by-name/pi/picotts/package.nix index eff8184f8b3e1a..fd54cf50e41c12 100644 --- a/pkgs/by-name/pi/picotts/package.nix +++ b/pkgs/by-name/pi/picotts/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation (finalAttrs: { ]; sourceRoot = "${finalAttrs.src.name}/pico"; preConfigure = "./autogen.sh"; - meta = { + meta = with lib; { description = "Text to speech voice sinthesizer from SVox"; homepage = "https://github.com/naggety/picotts"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.canndrew ]; - platforms = lib.platforms.linux; + license = licenses.asl20; + maintainers = [ maintainers.canndrew ]; + platforms = platforms.linux; mainProgram = "pico2wave"; }; }) diff --git a/pkgs/by-name/pi/pie-cli/package.nix b/pkgs/by-name/pi/pie-cli/package.nix index 8a30aba3547565..618f6d99371808 100644 --- a/pkgs/by-name/pi/pie-cli/package.nix +++ b/pkgs/by-name/pi/pie-cli/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Simple image format optimised for pixel art"; homepage = "https://github.com/Falconerd/pie"; - maintainers = with lib.maintainers; [ sigmanificient ]; - license = lib.licenses.mit; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ sigmanificient ]; + license = licenses.mit; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/pi/pigeon/package.nix b/pkgs/by-name/pi/pigeon/package.nix index 6492341b8d8b32..efcf3431b311eb 100644 --- a/pkgs/by-name/pi/pigeon/package.nix +++ b/pkgs/by-name/pi/pigeon/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/mna/pigeon"; description = "PEG parser generator for Go"; mainProgram = "pigeon"; - maintainers = with lib.maintainers; [ zimbatm ]; - license = with lib.licenses; [ bsd3 ]; + maintainers = with maintainers; [ zimbatm ]; + license = with licenses; [ bsd3 ]; }; } diff --git a/pkgs/by-name/pi/pik/package.nix b/pkgs/by-name/pi/pik/package.nix index d9badfa3d18ca6..d3e8594c47de8f 100644 --- a/pkgs/by-name/pi/pik/package.nix +++ b/pkgs/by-name/pi/pik/package.nix @@ -21,15 +21,15 @@ rustPlatform.buildRustPackage rec { passthru.tests.version = testers.testVersion { package = pik; }; - meta = { + meta = with lib; { description = "Process Interactive Kill"; longDescription = '' Process Interactive Kill is a command line tool that helps to find and kill process. It works like pkill command but search is interactive. ''; homepage = "https://github.com/jacek-kurlit/pik"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ bew ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ bew ]; mainProgram = "pik"; }; } diff --git a/pkgs/by-name/pi/pilipalax/package.nix b/pkgs/by-name/pi/pilipalax/package.nix index 3b0b43d2ee7581..f22b51554bef24 100644 --- a/pkgs/by-name/pi/pilipalax/package.nix +++ b/pkgs/by-name/pi/pilipalax/package.nix @@ -113,12 +113,12 @@ flutter324.buildFlutterApplication rec { --prefix LD_LIBRARY_PATH : "$out/app/${pname}/lib" ''; - meta = { + meta = with lib; { description = "Third-party BiliBili client developed with Flutter"; homepage = "https://github.com/orz12/PiliPalaX"; mainProgram = "pilipala"; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ aucub ]; - platforms = lib.platforms.linux; + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ aucub ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/pi/pilot-link/package.nix b/pkgs/by-name/pi/pilot-link/package.nix index e8eef25e365283..b2c3594228659c 100644 --- a/pkgs/by-name/pi/pilot-link/package.nix +++ b/pkgs/by-name/pi/pilot-link/package.nix @@ -56,10 +56,10 @@ stdenv.mkDerivation { ++ lib.optionals enableLibpng [ "--enable-libpng" ] ++ lib.optionals enableLibusb [ "--enable-libusb" ]; - meta = { + meta = with lib; { description = "Suite of tools for connecting to PalmOS handheld devices"; homepage = "https://github.com/desrod/pilot-link"; - license = lib.licenses.gpl2; - maintainers = with lib.maintainers; [ PapayaJackal ]; + license = licenses.gpl2; + maintainers = with maintainers; [ PapayaJackal ]; }; } diff --git a/pkgs/by-name/pi/pimsync/package.nix b/pkgs/by-name/pi/pimsync/package.nix index 16834e8a6c2b62..68c475d27c1cab 100644 --- a/pkgs/by-name/pi/pimsync/package.nix +++ b/pkgs/by-name/pi/pimsync/package.nix @@ -36,12 +36,12 @@ rustPlatform.buildRustPackage rec { "PREFIX=${placeholder "out"}" ]; - meta = { + meta = with lib; { description = "Synchronise calendars and contacts"; homepage = "https://git.sr.ht/~whynothugo/pimsync"; - license = lib.licenses.eupl12; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.qxrein ]; + license = licenses.eupl12; + platforms = platforms.unix; + maintainers = [ maintainers.qxrein ]; mainProgram = "pimsync"; }; } diff --git a/pkgs/by-name/pi/pingus/package.nix b/pkgs/by-name/pi/pingus/package.nix index 7695408eeaf666..67af497db675df 100644 --- a/pkgs/by-name/pi/pingus/package.nix +++ b/pkgs/by-name/pi/pingus/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { sed -e '1i #include ' -i src/util/pathname.hpp ''; - meta = { + meta = with lib; { description = "Puzzle game with mechanics similar to Lemmings"; mainProgram = "pingus"; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.raskin ]; - license = lib.licenses.gpl3; + platforms = platforms.linux; + maintainers = [ maintainers.raskin ]; + license = licenses.gpl3; }; } diff --git a/pkgs/by-name/pi/pinit/package.nix b/pkgs/by-name/pi/pinit/package.nix index b4d467c58810e7..fc57bc761b0ee7 100644 --- a/pkgs/by-name/pi/pinit/package.nix +++ b/pkgs/by-name/pi/pinit/package.nix @@ -37,15 +37,15 @@ stdenv.mkDerivation (finalAttrs: { libgee ]; - meta = { + meta = with lib; { description = "Pin portable apps to the launcher"; homepage = "https://github.com/ryonakano/pinit"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Plus cc0 ]; mainProgram = "com.github.ryonakano.pinit"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/pi/pinocchio/package.nix b/pkgs/by-name/pi/pinocchio/package.nix index 47d4cde8e6f026..c456fb4e4c58bb 100644 --- a/pkgs/by-name/pi/pinocchio/package.nix +++ b/pkgs/by-name/pi/pinocchio/package.nix @@ -105,14 +105,14 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; pythonImportsCheck = [ "pinocchio" ]; - meta = { + meta = with lib; { description = "Fast and flexible implementation of Rigid Body Dynamics algorithms and their analytical derivatives"; homepage = "https://github.com/stack-of-tasks/pinocchio"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ + license = licenses.bsd2; + maintainers = with maintainers; [ nim65s wegank ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/pi/pinokio/package.nix b/pkgs/by-name/pi/pinokio/package.nix index 94491c396b061c..4924171a0e5629 100644 --- a/pkgs/by-name/pi/pinokio/package.nix +++ b/pkgs/by-name/pi/pinokio/package.nix @@ -24,17 +24,17 @@ let appimageContents = appimageTools.extractType2 { inherit pname version src; }; - meta = { + meta = with lib; { homepage = "https://pinokio.computer"; description = "Browser to install, run, and programmatically control ANY application automatically"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ByteSudoer ]; + license = licenses.mit; + maintainers = with maintainers; [ ByteSudoer ]; platforms = [ "x86_64-darwin" "x86_64-linux" ]; mainProgram = "pinokio"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; in diff --git a/pkgs/by-name/pi/piped/package.nix b/pkgs/by-name/pi/piped/package.nix index 83d721aa63fe96..8ebd0d71e15d46 100644 --- a/pkgs/by-name/pi/piped/package.nix +++ b/pkgs/by-name/pi/piped/package.nix @@ -33,11 +33,11 @@ buildNpmPackage rec { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/TeamPiped/Piped"; description = "Efficient and privacy-friendly YouTube frontend"; - maintainers = [ lib.maintainers.lucasew ]; - license = [ lib.licenses.agpl3Plus ]; + maintainers = [ maintainers.lucasew ]; + license = [ licenses.agpl3Plus ]; }; } diff --git a/pkgs/by-name/pi/pipeline/package.nix b/pkgs/by-name/pi/pipeline/package.nix index 8d0d60ff929c12..8606e6565f6647 100644 --- a/pkgs/by-name/pi/pipeline/package.nix +++ b/pkgs/by-name/pi/pipeline/package.nix @@ -90,12 +90,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { attrPath = finalAttrs.pname; }; - meta = { + meta = with lib; { description = "Watch YouTube and PeerTube videos in one place"; homepage = "https://mobile.schmidhuberj.de/pipeline"; mainProgram = "tubefeeder"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ chuangzhu ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ chuangzhu ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/pi/piper/package.nix b/pkgs/by-name/pi/piper/package.nix index 083ebff2d2a307..425bea40763de6 100644 --- a/pkgs/by-name/pi/piper/package.nix +++ b/pkgs/by-name/pi/piper/package.nix @@ -61,12 +61,12 @@ python3.pkgs.buildPythonApplication rec { patchShebangs meson_install.sh data/generate-piper-gresource.xml.py ''; - meta = { + meta = with lib; { description = "GTK frontend for ratbagd mouse config daemon"; mainProgram = "piper"; homepage = "https://github.com/libratbag/piper"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ mvnetbiz ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + maintainers = with maintainers; [ mvnetbiz ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/pi/pipet/package.nix b/pkgs/by-name/pi/pipet/package.nix index 0fe776b6837a97..bc25156ea76aba 100644 --- a/pkgs/by-name/pi/pipet/package.nix +++ b/pkgs/by-name/pi/pipet/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { doCheck = false; # Requires network - meta = { + meta = with lib; { homepage = "https://github.com/bjesus/pipet"; description = "Scraping and extracting data from online assets"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ bjesus ]; + license = licenses.mit; + maintainers = with maintainers; [ bjesus ]; mainProgram = "pipet"; }; } diff --git a/pkgs/by-name/pi/piston-cli/package.nix b/pkgs/by-name/pi/piston-cli/package.nix index 3039279a3e6419..1e9cf7efeede98 100644 --- a/pkgs/by-name/pi/piston-cli/package.nix +++ b/pkgs/by-name/pi/piston-cli/package.nix @@ -55,12 +55,12 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = { + meta = with lib; { description = "Piston api tool"; homepage = "https://github.com/Shivansh-007/piston-cli"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ ethancedwards8 ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ ethancedwards8 ]; mainProgram = "piston"; }; } diff --git a/pkgs/by-name/pi/pixi/package.nix b/pkgs/by-name/pi/pixi/package.nix index ed6f8e51da12d9..ca90ce0e304cad 100644 --- a/pkgs/by-name/pi/pixi/package.nix +++ b/pkgs/by-name/pi/pixi/package.nix @@ -74,11 +74,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Package management made easy"; homepage = "https://pixi.sh/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ aaronjheng edmundmiller xiaoxiangmoe diff --git a/pkgs/by-name/pi/pixiecore/package.nix b/pkgs/by-name/pi/pixiecore/package.nix index f449bdb8d27658..e49e3002fe74fa 100644 --- a/pkgs/by-name/pi/pixiecore/package.nix +++ b/pkgs/by-name/pi/pixiecore/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { subPackages = [ "cmd/pixiecore" ]; - meta = { + meta = with lib; { description = "Tool to manage network booting of machines"; homepage = "https://github.com/danderson/netboot/tree/master/pixiecore"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ bbigras ]; + license = licenses.asl20; + maintainers = with maintainers; [ bbigras ]; mainProgram = "pixiecore"; }; } diff --git a/pkgs/by-name/pi/pixiewps/package.nix b/pkgs/by-name/pi/pixiewps/package.nix index d3ea7e82461238..1ac344109cb38d 100644 --- a/pkgs/by-name/pi/pixiewps/package.nix +++ b/pkgs/by-name/pi/pixiewps/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { substituteInPlace Makefile --replace "/usr/local" "$out" ''; - meta = { + meta = with lib; { description = "Offline WPS bruteforce utility"; homepage = "https://github.com/wiire-a/pixiewps"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.nico202 ]; - platforms = lib.platforms.all; + license = licenses.gpl3; + maintainers = [ maintainers.nico202 ]; + platforms = platforms.all; mainProgram = "pixiewps"; }; } diff --git a/pkgs/by-name/pk/pkarr/package.nix b/pkgs/by-name/pk/pkarr/package.nix index afdc01723f22fd..330d69d58e294b 100644 --- a/pkgs/by-name/pk/pkarr/package.nix +++ b/pkgs/by-name/pk/pkarr/package.nix @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage rec { ] ); - meta = { + meta = with lib; { description = "Public Key Addressable Resource Records (sovereign TLDs) "; homepage = "https://github.com/pubky/pkarr"; - license = [ lib.licenses.mit ]; - maintainers = with lib.maintainers; [ dpc ]; + license = [ licenses.mit ]; + maintainers = with maintainers; [ dpc ]; mainProgram = "pkarr-server"; }; } diff --git a/pkgs/by-name/pk/pkgsite/package.nix b/pkgs/by-name/pk/pkgsite/package.nix index ddc1bb4e0df070..d99e1fe9d0654c 100644 --- a/pkgs/by-name/pk/pkgsite/package.nix +++ b/pkgs/by-name/pk/pkgsite/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "Official tool to extract and generate documentation for Go projects like pkg.go.dev"; homepage = "https://github.com/golang/pkgsite"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ phanirithvij ]; + license = licenses.bsd3; + maintainers = with maintainers; [ phanirithvij ]; mainProgram = "pkgsite"; }; } diff --git a/pkgs/by-name/pl/plandex-server/package.nix b/pkgs/by-name/pl/plandex-server/package.nix index 4511a3a518fffd..9fd36d58b4dd7f 100644 --- a/pkgs/by-name/pl/plandex-server/package.nix +++ b/pkgs/by-name/pl/plandex-server/package.nix @@ -38,11 +38,11 @@ buildGoModule rec { vendorHash = "sha256-uarTWteOoAjzEHSnbZo+fEPELerpuL7UNA5pdGP5CMY="; - meta = { + meta = with lib; { mainProgram = "plandex-server"; description = "AI driven development in your terminal. Designed for large, real-world tasks. The server part"; homepage = "https://plandex.ai/"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ viraptor ]; + license = licenses.agpl3Only; + maintainers = with maintainers; [ viraptor ]; }; } diff --git a/pkgs/by-name/pl/plandex/package.nix b/pkgs/by-name/pl/plandex/package.nix index e0652aa8470fae..1832b9ae53f11c 100644 --- a/pkgs/by-name/pl/plandex/package.nix +++ b/pkgs/by-name/pl/plandex/package.nix @@ -18,11 +18,11 @@ buildGoModule rec { vendorHash = "sha256-aFfgXGRnsqS7Ik5geQ6yXL+8X0BfNhHGzF7GKIDC4iE="; - meta = { + meta = with lib; { mainProgram = "plandex"; description = "AI driven development in your terminal. Designed for large, real-world tasks. The sli part"; homepage = "https://plandex.ai/"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ viraptor ]; + license = licenses.agpl3Only; + maintainers = with maintainers; [ viraptor ]; }; } diff --git a/pkgs/by-name/pl/planner/package.nix b/pkgs/by-name/pl/planner/package.nix index 24b026d257d1e0..d27adf0ff912f2 100644 --- a/pkgs/by-name/pl/planner/package.nix +++ b/pkgs/by-name/pl/planner/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation rec { --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:$out/share/gsettings-schemas/planner-${version}" ''; - meta = { + meta = with lib; { description = "Project management tool for the GNOME desktop"; mainProgram = "planner"; homepage = "https://gitlab.gnome.org/World/planner"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ amiloradovsky ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ amiloradovsky ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/pl/plantuml/package.nix b/pkgs/by-name/pl/plantuml/package.nix index 0f0078255607c0..1b52f436d8a3ea 100644 --- a/pkgs/by-name/pl/plantuml/package.nix +++ b/pkgs/by-name/pl/plantuml/package.nix @@ -43,18 +43,18 @@ stdenvNoCC.mkDerivation (finalAttrs: { command = "plantuml --version"; }; - meta = { + meta = with lib; { description = "Draw UML diagrams using a simple and human readable text description"; homepage = "https://plantuml.com/"; # "plantuml -license" says GPLv3 or later - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "plantuml"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ bjornfor Mogria anthonyroussel ]; - platforms = lib.platforms.unix; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + platforms = platforms.unix; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; }; }) diff --git a/pkgs/by-name/pl/plasma-hud/package.nix b/pkgs/by-name/pl/plasma-hud/package.nix index 078bda093c5b85..9fe438ae8f713e 100644 --- a/pkgs/by-name/pl/plasma-hud/package.nix +++ b/pkgs/by-name/pl/plasma-hud/package.nix @@ -46,12 +46,12 @@ python3Packages.buildPythonApplication rec { runHook postInstall ''; - meta = { - license = lib.licenses.gpl2Only; + meta = with lib; { + license = licenses.gpl2Only; homepage = "https://github.com/Zren/plasma-hud"; - platforms = lib.platforms.unix; + platforms = platforms.unix; description = "Run menubar commands, much like the Unity 7 Heads-Up Display (HUD)"; - maintainers = with lib.maintainers; [ pasqui23 ]; + maintainers = with maintainers; [ pasqui23 ]; mainProgram = "plasma-hud"; }; } diff --git a/pkgs/by-name/pl/plasma-plugin-blurredwallpaper/package.nix b/pkgs/by-name/pl/plasma-plugin-blurredwallpaper/package.nix index cebcd29e5a77b2..f19687f7ed8248 100644 --- a/pkgs/by-name/pl/plasma-plugin-blurredwallpaper/package.nix +++ b/pkgs/by-name/pl/plasma-plugin-blurredwallpaper/package.nix @@ -26,14 +26,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Plasma 6 wallpaper plugin to blur the wallpaper of active window"; homepage = "https://github.com/bouteillerAlan/blurredwallpaper"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ + license = licenses.gpl3; + maintainers = with maintainers; [ dr460nf1r3 johnrtitor ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/pl/platformsh/package.nix b/pkgs/by-name/pl/platformsh/package.nix index e5960098085d8a..7324dc2fd3340e 100644 --- a/pkgs/by-name/pl/platformsh/package.nix +++ b/pkgs/by-name/pl/platformsh/package.nix @@ -59,12 +59,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { description = "Unified tool for managing your Platform.sh services from the command line"; homepage = "https://github.com/platformsh/cli"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "platform"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ shyim spk ]; @@ -74,6 +74,6 @@ stdenvNoCC.mkDerivation (finalAttrs: { "x86_64-darwin" "aarch64-darwin" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/pl/plex-desktop/package.nix b/pkgs/by-name/pl/plex-desktop/package.nix index bfa7e9bcfeb98e..356977458408a9 100644 --- a/pkgs/by-name/pl/plex-desktop/package.nix +++ b/pkgs/by-name/pl/plex-desktop/package.nix @@ -36,7 +36,7 @@ let pname = "plex-desktop"; version = "1.101.0"; rev = "75"; - meta = { + meta = with lib; { homepage = "https://plex.tv/"; description = "Streaming media player for Plex"; longDescription = '' @@ -45,8 +45,8 @@ let but uses a more powerful playback engine as well as some other advance features. ''; - maintainers = with lib.maintainers; [ detroyejr ]; - license = lib.licenses.unfree; + maintainers = with maintainers; [ detroyejr ]; + license = licenses.unfree; platforms = [ "x86_64-linux" ]; mainProgram = "plex-desktop"; }; diff --git a/pkgs/by-name/pl/plowshare/package.nix b/pkgs/by-name/pl/plowshare/package.nix index 50ccefde02a2cb..a5065a4b7a389e 100644 --- a/pkgs/by-name/pl/plowshare/package.nix +++ b/pkgs/by-name/pl/plowshare/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with lib; { description = '' A command-line download/upload tool for popular file sharing websites ''; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ aforemny ]; - platforms = lib.platforms.linux; + license = licenses.gpl3; + maintainers = with maintainers; [ aforemny ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/pl/plymouth-blahaj-theme/package.nix b/pkgs/by-name/pl/plymouth-blahaj-theme/package.nix index fa5a829a7b300a..9c5b4d94b77bbc 100644 --- a/pkgs/by-name/pl/plymouth-blahaj-theme/package.nix +++ b/pkgs/by-name/pl/plymouth-blahaj-theme/package.nix @@ -38,11 +38,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Plymouth theme featuring IKEA's 1m soft toy shark"; homepage = "https://github.com/190n/plymouth-blahaj"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ miampf ]; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ miampf ]; }; } diff --git a/pkgs/by-name/pl/plymouth-matrix-theme/package.nix b/pkgs/by-name/pl/plymouth-matrix-theme/package.nix index 69437a7928c6c0..1f344741dabee4 100644 --- a/pkgs/by-name/pl/plymouth-matrix-theme/package.nix +++ b/pkgs/by-name/pl/plymouth-matrix-theme/package.nix @@ -33,7 +33,7 @@ stdenvNoCC.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Plymouth boot theme inspired by Matrix"; longDescription = '' A very simple boot animation that emulates @@ -41,8 +41,8 @@ stdenvNoCC.mkDerivation { beginning of The Matrix (1999). ''; homepage = "https://github.com/storax/plymouth-matrix-theme"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ johnrtitor ]; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ johnrtitor ]; }; } diff --git a/pkgs/by-name/pl/plymouth-proxzima-theme/package.nix b/pkgs/by-name/pl/plymouth-proxzima-theme/package.nix index 175a287435e93f..c3c6b867031bc8 100644 --- a/pkgs/by-name/pl/plymouth-proxzima-theme/package.nix +++ b/pkgs/by-name/pl/plymouth-proxzima-theme/package.nix @@ -29,11 +29,11 @@ stdenvNoCC.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Techno Plymouth theme with crazy animation"; homepage = "https://github.com/PROxZIMA/proxzima-plymouth"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ johnrtitor ]; + license = licenses.gpl3Only; + platforms = platforms.linux; + maintainers = with maintainers; [ johnrtitor ]; }; } diff --git a/pkgs/by-name/pl/plymouth-vortex-ubuntu-theme/package.nix b/pkgs/by-name/pl/plymouth-vortex-ubuntu-theme/package.nix index e1faaa81ea4247..a90c0d4a0de11d 100644 --- a/pkgs/by-name/pl/plymouth-vortex-ubuntu-theme/package.nix +++ b/pkgs/by-name/pl/plymouth-vortex-ubuntu-theme/package.nix @@ -29,15 +29,15 @@ stdenvNoCC.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Animated Plymouth boot theme with rotating Ubuntu logo"; longDescription = '' Animated Plymouth theme with the Ubuntu logo and a futuristic and elegant look. Disk encryption password prompt is supported. ''; homepage = "https://github.com/emanuele-scarsella/vortex-ubuntu-plymouth-theme"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ johnrtitor ]; + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = with maintainers; [ johnrtitor ]; }; } diff --git a/pkgs/by-name/pl/plzip/package.nix b/pkgs/by-name/pl/plzip/package.nix index 82a8c0b6f3c3a1..04ab144d396e1c 100644 --- a/pkgs/by-name/pl/plzip/package.nix +++ b/pkgs/by-name/pl/plzip/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { homepage = "https://www.nongnu.org/lzip/plzip.html"; description = "Massively parallel lossless data compressor based on the lzlib compression library"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + platforms = platforms.all; + maintainers = with maintainers; [ _360ied ehmry ]; diff --git a/pkgs/by-name/pm/pmars/package.nix b/pkgs/by-name/pm/pmars/package.nix index 69042eeb3b42de..956d53a3d644ee 100644 --- a/pkgs/by-name/pm/pmars/package.nix +++ b/pkgs/by-name/pm/pmars/package.nix @@ -89,7 +89,7 @@ stdenv.mkDerivation (finalAttrs: { inherit options; }; - meta = { + meta = with lib; { description = "Official Core War simulator"; longDescription = '' Portable MARS is the official Core War simulator of the ICWS and the rec.games.corewar newsgroup. pMARS serves as @@ -98,9 +98,9 @@ stdenv.mkDerivation (finalAttrs: { put a lot of time into this project. ''; homepage = "http://www.koth.org/pmars/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "pmars"; - maintainers = with lib.maintainers; [ OPNA2608 ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ OPNA2608 ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/pm/pmbootstrap/package.nix b/pkgs/by-name/pm/pmbootstrap/package.nix index 35f1299c39ba9f..e0c1c31f8aa53b 100644 --- a/pkgs/by-name/pm/pmbootstrap/package.nix +++ b/pkgs/by-name/pm/pmbootstrap/package.nix @@ -71,11 +71,11 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { description = "Sophisticated chroot/build/flash tool to develop and install postmarketOS"; homepage = "https://gitlab.com/postmarketOS/pmbootstrap"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ onny lucasew ]; diff --git a/pkgs/by-name/pm/pmix/package.nix b/pkgs/by-name/pm/pmix/package.nix index 8b482108fd216a..da76014166ece2 100644 --- a/pkgs/by-name/pm/pmix/package.nix +++ b/pkgs/by-name/pm/pmix/package.nix @@ -104,11 +104,11 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Process Management Interface for HPC environments"; homepage = "https://openpmix.github.io/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ markuskowa doronbehar ]; diff --git a/pkgs/by-name/pm/pmount/package.nix b/pkgs/by-name/pm/pmount/package.nix index 7e52083021d4f7..a2c7f378c072ec 100644 --- a/pkgs/by-name/pm/pmount/package.nix +++ b/pkgs/by-name/pm/pmount/package.nix @@ -46,10 +46,10 @@ stdenv.mkDerivation rec { doCheck = false; # fails 1 out of 1 tests with "Error: could not open fstab-type file: No such file or directory" - meta = { + meta = with lib; { homepage = "https://bazaar.launchpad.net/~fourmond/pmount/main/files"; description = "Mount removable devices as normal user"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/pm/pmutils/package.nix b/pkgs/by-name/pm/pmutils/package.nix index f1301f1670b7cf..4d9551880137ce 100644 --- a/pkgs/by-name/pm/pmutils/package.nix +++ b/pkgs/by-name/pm/pmutils/package.nix @@ -61,10 +61,10 @@ stdenv.mkDerivation rec { rm $out/lib/pm-utils/power.d/{journal-commit,readahead} ''; - meta = { + meta = with lib; { homepage = "https://pm-utils.freedesktop.org/wiki/"; description = "Small collection of scripts that handle suspend and resume on behalf of HAL"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/pn/pnfft/package.nix b/pkgs/by-name/pn/pnfft/package.nix index 8d6b9bfcb6d7d9..ce6e5e14f8fb80 100644 --- a/pkgs/by-name/pn/pnfft/package.nix +++ b/pkgs/by-name/pn/pnfft/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { description = "Parallel nonequispaced fast Fourier transforms"; homepage = "https://www-user.tu-chemnitz.de/~potts/workgroup/pippig/software.php.en#pnfft"; changelog = "https://github.com/mpip/pnfft/blob/master/ChangeLog"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ hmenke ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ hmenke ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/pn/pngcrush/package.nix b/pkgs/by-name/pn/pngcrush/package.nix index 0fac3e2168d6b4..b6281e0213d5e0 100644 --- a/pkgs/by-name/pn/pngcrush/package.nix +++ b/pkgs/by-name/pn/pngcrush/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { buildInputs = [ libpng ]; - meta = { + meta = with lib; { homepage = "http://pmt.sourceforge.net/pngcrush"; description = "PNG optimizer"; - license = lib.licenses.free; - platforms = with lib.platforms; linux ++ darwin; + license = licenses.free; + platforms = with platforms; linux ++ darwin; mainProgram = "pngcrush"; }; } diff --git a/pkgs/by-name/pn/pngtoico/package.nix b/pkgs/by-name/pn/pngtoico/package.nix index fc429a35f64233..b385741c5f26df 100644 --- a/pkgs/by-name/pn/pngtoico/package.nix +++ b/pkgs/by-name/pn/pngtoico/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { buildInputs = [ libpng ]; - meta = { + meta = with lib; { homepage = "https://www.kernel.org/pub/software/graphics/pngtoico/"; description = "Small utility to convert a set of PNG images to Microsoft ICO format"; - license = lib.licenses.gpl2Plus; - platforms = with lib.platforms; linux; + license = licenses.gpl2Plus; + platforms = with platforms; linux; mainProgram = "pngtoico"; }; } diff --git a/pkgs/by-name/po/poetry/plugins/poetry-audit-plugin.nix b/pkgs/by-name/po/poetry/plugins/poetry-audit-plugin.nix index fd9c56acfea760..20bd278ea892e2 100644 --- a/pkgs/by-name/po/poetry/plugins/poetry-audit-plugin.nix +++ b/pkgs/by-name/po/poetry/plugins/poetry-audit-plugin.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { # requires networking doCheck = false; - meta = { + meta = with lib; { description = "Poetry plugin for checking security vulnerabilities in dependencies"; homepage = "https://github.com/opeco17/poetry-audit-plugin"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/po/polar-bookshelf/package.nix b/pkgs/by-name/po/polar-bookshelf/package.nix index 7a3f6babb2ab93..8bc829016494a1 100644 --- a/pkgs/by-name/po/polar-bookshelf/package.nix +++ b/pkgs/by-name/po/polar-bookshelf/package.nix @@ -123,13 +123,13 @@ stdenv.mkDerivation rec { gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${runtimeLibs}" ) ''; - meta = { + meta = with lib; { homepage = "https://getpolarized.io/"; description = "Personal knowledge repository for PDF and web content supporting incremental reading and document annotation"; mainProgram = "polar-desktop-app"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.gpl3Only; + platforms = platforms.linux; maintainers = [ ]; }; diff --git a/pkgs/by-name/po/polar-bookshelf1/package.nix b/pkgs/by-name/po/polar-bookshelf1/package.nix index 5ea080a27dbbbf..1d27be4dab2bc4 100644 --- a/pkgs/by-name/po/polar-bookshelf1/package.nix +++ b/pkgs/by-name/po/polar-bookshelf1/package.nix @@ -109,13 +109,13 @@ stdenv.mkDerivation rec { --replace "/opt/Polar Bookshelf/polar-bookshelf" "$out/bin/polar-bookshelf" ''; - meta = { + meta = with lib; { homepage = "https://getpolarized.io/"; description = "Personal knowledge repository for PDF and web content supporting incremental reading and document annotation"; mainProgram = "polar-bookshelf"; - license = lib.licenses.gpl3Only; - maintainers = [ lib.maintainers.dansbandit ]; - platforms = lib.platforms.linux; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.gpl3Only; + maintainers = [ maintainers.dansbandit ]; + platforms = platforms.linux; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/po/poly/package.nix b/pkgs/by-name/po/poly/package.nix index bffa196606a24c..546ec116cf7660 100644 --- a/pkgs/by-name/po/poly/package.nix +++ b/pkgs/by-name/po/poly/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { outputHashMode = "recursive"; outputHash = "11d7ldryfxi0wzfrg1bhw23a668a44vdb8gggxryvahmp5ahmq2h"; - meta = { + meta = with lib; { description = "Medium contrast serif font"; longDescription = '' With short ascenders and a very high x-height, Poly is efficient in small @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { and languages that use the Latin script and its variants. ''; homepage = "http://www.fontsquirrel.com/fonts/poly"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ relrod ]; + license = licenses.ofl; + maintainers = with maintainers; [ relrod ]; }; } diff --git a/pkgs/by-name/po/pomodoro-gtk/package.nix b/pkgs/by-name/po/pomodoro-gtk/package.nix index e31da5221375c6..d3a19b75d712b2 100644 --- a/pkgs/by-name/po/pomodoro-gtk/package.nix +++ b/pkgs/by-name/po/pomodoro-gtk/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation { libportal-gtk4 ]; - meta = { + meta = with lib; { description = "Simple and intuitive timer application (also named Planytimer)"; homepage = "https://gitlab.com/idevecore/pomodoro"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "pomodoro"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/po/pong3d/package.nix b/pkgs/by-name/po/pong3d/package.nix index 32614d8db29236..6eaa88b9fd84e3 100644 --- a/pkgs/by-name/po/pong3d/package.nix +++ b/pkgs/by-name/po/pong3d/package.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation rec { mkdir -p $out/bin ''; - meta = { + meta = with lib; { homepage = "http://www.newbreedsoftware.com/3dpong/"; description = "One or two player 3d sports game based on Pong from Atari"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/po/poppins/package.nix b/pkgs/by-name/po/poppins/package.nix index 32ee21503798c2..36fbba0d66dd6c 100644 --- a/pkgs/by-name/po/poppins/package.nix +++ b/pkgs/by-name/po/poppins/package.nix @@ -25,11 +25,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Devanagari + Latin family for Google Fonts"; homepage = "https://github.com/itfoundry/Poppins/"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ nyawox ]; - platforms = lib.platforms.all; + license = licenses.ofl; + maintainers = with maintainers; [ nyawox ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/po/portfolio/package.nix b/pkgs/by-name/po/portfolio/package.nix index 4e0b80d0635cfd..34cad35b9bd17d 100644 --- a/pkgs/by-name/po/portfolio/package.nix +++ b/pkgs/by-name/po/portfolio/package.nix @@ -101,12 +101,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { url = "https://github.com/buchen/portfolio.git"; }; - meta = { + meta = with lib; { description = "Simple tool to calculate the overall performance of an investment portfolio"; homepage = "https://www.portfolio-performance.info/"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.epl10; - maintainers = with lib.maintainers; [ + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.epl10; + maintainers = with maintainers; [ kilianar oyren shawn8901 diff --git a/pkgs/by-name/po/pot/package.nix b/pkgs/by-name/po/pot/package.nix index 4285db9048c23d..ba643a776f8af4 100644 --- a/pkgs/by-name/po/pot/package.nix +++ b/pkgs/by-name/po/pot/package.nix @@ -101,12 +101,12 @@ stdenv.mkDerivation (finalAttrs: { chmod +w .. ''; - meta = { + meta = with lib; { description = "Cross-platform translation software"; mainProgram = "pot"; homepage = "https://pot-app.com"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ linsui ]; + platforms = platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ linsui ]; }; }) diff --git a/pkgs/by-name/po/powersploit/package.nix b/pkgs/by-name/po/powersploit/package.nix index 1f2600a7493d73..3655ab0570273f 100644 --- a/pkgs/by-name/po/powersploit/package.nix +++ b/pkgs/by-name/po/powersploit/package.nix @@ -23,12 +23,12 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { changelog = "https://github.com/PowerShellMafia/PowerSploit/releases/"; description = "PowerShell Post-Exploitation Framework"; - license = with lib.licenses; [ bsd3 ]; - maintainers = with lib.maintainers; [ shard7 ]; - platforms = lib.platforms.all; - sourceProvenance = with lib.sourceTypes; [ fromSource ]; + license = with licenses; [ bsd3 ]; + maintainers = with maintainers; [ shard7 ]; + platforms = platforms.all; + sourceProvenance = with sourceTypes; [ fromSource ]; }; } diff --git a/pkgs/by-name/pr/praat/package.nix b/pkgs/by-name/pr/praat/package.nix index f29390a52b8154..c08f3c11eab9f1 100644 --- a/pkgs/by-name/pr/praat/package.nix +++ b/pkgs/by-name/pr/praat/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Doing phonetics by computer"; mainProgram = "praat"; homepage = "https://www.fon.hum.uva.nl/praat/"; - license = lib.licenses.gpl2Plus; # Has some 3rd-party code in it though - maintainers = with lib.maintainers; [ orivej ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; # Has some 3rd-party code in it though + maintainers = with maintainers; [ orivej ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/pr/precice/package.nix b/pkgs/by-name/pr/precice/package.nix index 2f5572a2eab744..f3908bc998b39b 100644 --- a/pkgs/by-name/pr/precice/package.nix +++ b/pkgs/by-name/pr/precice/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation rec { petsc ]; - meta = { + meta = with lib; { description = "preCICE stands for Precise Code Interaction Coupling Environment"; homepage = "https://precice.org/"; - license = with lib.licenses; [ gpl3 ]; - maintainers = with lib.maintainers; [ Scriptkiddi ]; + license = with licenses; [ gpl3 ]; + maintainers = with maintainers; [ Scriptkiddi ]; mainProgram = "binprecice"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/pr/preserves-nim/package.nix b/pkgs/by-name/pr/preserves-nim/package.nix index dd1f4f0319a63d..1fde8daad4b671 100644 --- a/pkgs/by-name/pr/preserves-nim/package.nix +++ b/pkgs/by-name/pr/preserves-nim/package.nix @@ -26,10 +26,10 @@ buildNimSbom (finalAttrs: { popd ''; - meta = { + meta = with lib; { description = "Utilities for working with Preserves documents and schemas"; - license = lib.licenses.unlicense; + license = licenses.unlicense; homepage = "https://git.syndicate-lang.org/ehmry/preserves-nim"; - maintainers = with lib.maintainers; [ ehmry ]; + maintainers = with maintainers; [ ehmry ]; }; }) ./sbom.json diff --git a/pkgs/by-name/pr/preserves-tools/package.nix b/pkgs/by-name/pr/preserves-tools/package.nix index 9ea3dfb2de903d..4553a5ca0dd9a1 100644 --- a/pkgs/by-name/pr/preserves-tools/package.nix +++ b/pkgs/by-name/pr/preserves-tools/package.nix @@ -25,11 +25,11 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/preserves-tool completions zsh) ''; - meta = { + meta = with lib; { description = "Command-line utilities for working with Preserves documents"; homepage = "https://preserves.dev/doc/preserves-tool.html"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ehmry ]; + license = licenses.asl20; + maintainers = with maintainers; [ ehmry ]; mainProgram = "preserves-tool"; }; } diff --git a/pkgs/by-name/pr/pretalx/plugins/downstream.nix b/pkgs/by-name/pr/pretalx/plugins/downstream.nix index dd1465777ac225..0392ecdf7d0fd8 100644 --- a/pkgs/by-name/pr/pretalx/plugins/downstream.nix +++ b/pkgs/by-name/pr/pretalx/plugins/downstream.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pretalx_downstream" ]; - meta = { + meta = with lib; { description = "Use pretalx passively by importing another event's schedule"; homepage = "https://github.com/pretalx/pretalx-downstream"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ wegank ]; + license = licenses.asl20; + maintainers = with maintainers; [ wegank ]; }; } diff --git a/pkgs/by-name/pr/pretalx/plugins/media-ccc-de.nix b/pkgs/by-name/pr/pretalx/plugins/media-ccc-de.nix index c240be878ad1cc..6215ea381369d7 100644 --- a/pkgs/by-name/pr/pretalx/plugins/media-ccc-de.nix +++ b/pkgs/by-name/pr/pretalx/plugins/media-ccc-de.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pretalx_media_ccc_de" ]; - meta = { + meta = with lib; { description = "Pull recordings from media.ccc.de and embed them in talk pages"; homepage = "https://github.com/pretalx/pretalx-media-ccc-de"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ wegank ]; + license = licenses.asl20; + maintainers = with maintainers; [ wegank ]; }; } diff --git a/pkgs/by-name/pr/pretalx/plugins/pages.nix b/pkgs/by-name/pr/pretalx/plugins/pages.nix index 76395ed666d2ee..a3e97dea58ea3e 100644 --- a/pkgs/by-name/pr/pretalx/plugins/pages.nix +++ b/pkgs/by-name/pr/pretalx/plugins/pages.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pretalx_pages" ]; - meta = { + meta = with lib; { description = "Static pages for pretalx, e.g. information, venue listings, a Code of Conduct, etc"; homepage = "https://github.com/pretalx/pretalx-pages"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ wegank ]; + license = licenses.asl20; + maintainers = with maintainers; [ wegank ]; }; } diff --git a/pkgs/by-name/pr/pretalx/plugins/public-voting.nix b/pkgs/by-name/pr/pretalx/plugins/public-voting.nix index 993bfd6def889f..1072182909dc76 100644 --- a/pkgs/by-name/pr/pretalx/plugins/public-voting.nix +++ b/pkgs/by-name/pr/pretalx/plugins/public-voting.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pretalx_public_voting" ]; - meta = { + meta = with lib; { description = "Public voting plugin for pretalx"; homepage = "https://github.com/pretalx/pretalx-public-voting"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ wegank ]; + license = licenses.asl20; + maintainers = with maintainers; [ wegank ]; }; } diff --git a/pkgs/by-name/pr/pretalx/plugins/venueless.nix b/pkgs/by-name/pr/pretalx/plugins/venueless.nix index 7c138f07f651cd..ea3ef1b8a042ec 100644 --- a/pkgs/by-name/pr/pretalx/plugins/venueless.nix +++ b/pkgs/by-name/pr/pretalx/plugins/venueless.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pretalx_venueless" ]; - meta = { + meta = with lib; { description = "Static venueless for pretalx, e.g. information, venue listings, a Code of Conduct, etc"; homepage = "https://github.com/pretalx/pretalx-venueless"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ wegank ]; + license = licenses.asl20; + maintainers = with maintainers; [ wegank ]; }; } diff --git a/pkgs/by-name/pr/pretalx/plugins/vimeo.nix b/pkgs/by-name/pr/pretalx/plugins/vimeo.nix index a6037ca3e8faa7..56ef2771409a15 100644 --- a/pkgs/by-name/pr/pretalx/plugins/vimeo.nix +++ b/pkgs/by-name/pr/pretalx/plugins/vimeo.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pretalx_vimeo" ]; - meta = { + meta = with lib; { description = "Static vimeo for pretalx, e.g. information, venue listings, a Code of Conduct, etc"; homepage = "https://github.com/pretalx/pretalx-vimeo"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ wegank ]; + license = licenses.asl20; + maintainers = with maintainers; [ wegank ]; }; } diff --git a/pkgs/by-name/pr/pretalx/plugins/youtube.nix b/pkgs/by-name/pr/pretalx/plugins/youtube.nix index b2b89acbd6a9dc..a80f04de68c08c 100644 --- a/pkgs/by-name/pr/pretalx/plugins/youtube.nix +++ b/pkgs/by-name/pr/pretalx/plugins/youtube.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pretalx_youtube" ]; - meta = { + meta = with lib; { description = "Static youtube for pretalx, e.g. information, venue listings, a Code of Conduct, etc"; homepage = "https://github.com/pretalx/pretalx-youtube"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ wegank ]; + license = licenses.asl20; + maintainers = with maintainers; [ wegank ]; }; } diff --git a/pkgs/by-name/pr/pretix/plugins/mollie.nix b/pkgs/by-name/pr/pretix/plugins/mollie.nix index da15098b01d285..fd9a3341fc28cb 100644 --- a/pkgs/by-name/pr/pretix/plugins/mollie.nix +++ b/pkgs/by-name/pr/pretix/plugins/mollie.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { "pretix_mollie" ]; - meta = { + meta = with lib; { description = "Mollie payments for pretix"; homepage = "https://github.com/pretix/pretix-mollie"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ hexa ]; + license = licenses.asl20; + maintainers = with maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/pr/prettier-plugin-go-template/package.nix b/pkgs/by-name/pr/prettier-plugin-go-template/package.nix index 02edecce4a52df..6a5a64863b293f 100644 --- a/pkgs/by-name/pr/prettier-plugin-go-template/package.nix +++ b/pkgs/by-name/pr/prettier-plugin-go-template/package.nix @@ -26,11 +26,11 @@ buildNpmPackage rec { popd ''; - meta = { + meta = with lib; { description = "Fixes prettier formatting for go templates"; mainProgram = "prettier-plugin-go-template"; homepage = "https://github.com/NiklasPor/prettier-plugin-go-template"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ jukremer ]; + license = licenses.mit; + maintainers = with maintainers; [ jukremer ]; }; } diff --git a/pkgs/by-name/pr/prevo/package.nix b/pkgs/by-name/pr/prevo/package.nix index b45d0cd1f785c1..a59c4730d80a45 100644 --- a/pkgs/by-name/pr/prevo/package.nix +++ b/pkgs/by-name/pr/prevo/package.nix @@ -22,16 +22,16 @@ symlinkJoin rec { ''; - meta = { + meta = with lib; { description = "offline version of the Esperanto dictionary Reta Vortaro"; longDescription = '' PReVo is the "portable" ReVo, i.e., the offline version of the Esperanto dictionary Reta Vortaro. ''; homepage = "https://github.com/bpeel/prevodb"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; mainProgram = "prevo"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ das-g ehmry ]; diff --git a/pkgs/by-name/pr/primitive/package.nix b/pkgs/by-name/pr/primitive/package.nix index bd66964045bae5..ce23e473c0f0db 100644 --- a/pkgs/by-name/pr/primitive/package.nix +++ b/pkgs/by-name/pr/primitive/package.nix @@ -25,12 +25,12 @@ buildGoModule { }) ]; - meta = { + meta = with lib; { description = "Reproducing images with geometric primitives"; homepage = "https://github.com/fogleman/primitive"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ stunkymonkey ]; + license = licenses.mit; + maintainers = with maintainers; [ stunkymonkey ]; mainProgram = "primitive"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/pr/prio/package.nix b/pkgs/by-name/pr/prio/package.nix index bc41616e738f0f..0bfffb4f4fe6a5 100644 --- a/pkgs/by-name/pr/prio/package.nix +++ b/pkgs/by-name/pr/prio/package.nix @@ -28,11 +28,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/letoram/prio"; description = "Plan9- Rio like Window Manager for Arcan"; - license = with lib.licenses; [ bsd3 ]; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + license = with licenses; [ bsd3 ]; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/pr/process-cpp/package.nix b/pkgs/by-name/pr/process-cpp/package.nix index eb9638e74ab1b6..fb65eb17d28fb9 100644 --- a/pkgs/by-name/pr/process-cpp/package.nix +++ b/pkgs/by-name/pr/process-cpp/package.nix @@ -64,18 +64,18 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = { + meta = with lib; { description = "Simple convenience library for handling processes in C++11"; homepage = "https://gitlab.com/ubports/development/core/lib-cpp/process-cpp"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Only lgpl3Only ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ onny OPNA2608 ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; pkgConfigModules = [ "process-cpp" ]; }; }) diff --git a/pkgs/by-name/pr/prociono/package.nix b/pkgs/by-name/pr/prociono/package.nix index 598d479909cbba..0d62481d494312 100644 --- a/pkgs/by-name/pr/prociono/package.nix +++ b/pkgs/by-name/pr/prociono/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Roman serif with blackletter elements"; longDescription = '' "Prociono" (pro-tsee-O-no) is an Esperanto word meaning either the star @@ -32,7 +32,7 @@ stdenvNoCC.mkDerivation { with blackletter elements. ''; homepage = "https://www.theleagueofmoveabletype.com/prociono"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ minijackson ]; + license = licenses.ofl; + maintainers = with maintainers; [ minijackson ]; }; } diff --git a/pkgs/by-name/pr/profile-cleaner/package.nix b/pkgs/by-name/pr/profile-cleaner/package.nix index 48b0916e9ac282..bb83de2c300a18 100644 --- a/pkgs/by-name/pr/profile-cleaner/package.nix +++ b/pkgs/by-name/pr/profile-cleaner/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { }" ''; - meta = { + meta = with lib; { description = "Reduces browser profile sizes by cleaning their sqlite databases"; longDescription = '' Use profile-cleaner to reduce the size of browser profiles by organizing @@ -44,9 +44,9 @@ stdenv.mkDerivation rec { some email clients and newsreaders too. ''; homepage = "https://github.com/graysky2/profile-cleaner"; - license = lib.licenses.mit; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.devhell ]; + license = licenses.mit; + platforms = platforms.all; + maintainers = [ maintainers.devhell ]; mainProgram = "profile-cleaner"; }; } diff --git a/pkgs/by-name/pr/progress-tracker/package.nix b/pkgs/by-name/pr/progress-tracker/package.nix index f67d334d54406d..6f06fd36e1e1f6 100644 --- a/pkgs/by-name/pr/progress-tracker/package.nix +++ b/pkgs/by-name/pr/progress-tracker/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail "/usr/share/" "${placeholder "out"}/share/" ''; - meta = { + meta = with lib; { description = "Simple kanban-style task organiser"; homepage = "https://github.com/smolBlackCat/progress-tracker"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "progress"; - maintainers = with lib.maintainers; [ Guanran928 ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ Guanran928 ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/pr/prometheus-aruba-exporter/package.nix b/pkgs/by-name/pr/prometheus-aruba-exporter/package.nix index efdcd978d4eaff..e11cdcefe1d171 100644 --- a/pkgs/by-name/pr/prometheus-aruba-exporter/package.nix +++ b/pkgs/by-name/pr/prometheus-aruba-exporter/package.nix @@ -17,11 +17,11 @@ buildGoModule { vendorHash = "sha256-1XYwrajzKoWOPg4aKE5rJVjWZ9RWBKD/kANOZHtWJCk="; - meta = { + meta = with lib; { description = "Prometheus exporter for metrics from Aruba devices including ArubaSwitchOS, ArubaOS-CX, ArubaOS (Instant AP and controllers/gateways)"; mainProgram = "aruba_exporter"; homepage = "https://github.com/slashdoom/aruba_exporter"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ netali ]; + license = licenses.mit; + maintainers = with maintainers; [ netali ]; }; } diff --git a/pkgs/by-name/pr/prometheus-jmx-javaagent/package.nix b/pkgs/by-name/pr/prometheus-jmx-javaagent/package.nix index 4c317159f55219..ac72f37e3fe3c4 100644 --- a/pkgs/by-name/pr/prometheus-jmx-javaagent/package.nix +++ b/pkgs/by-name/pr/prometheus-jmx-javaagent/package.nix @@ -24,13 +24,13 @@ stdenv.mkDerivation ( cp $src $out/lib/${jarName} ''; - meta = { + meta = with lib; { homepage = "https://github.com/prometheus/jmx_exporter"; description = "A process for exposing JMX Beans via HTTP for Prometheus consumption"; - sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.srhb ]; - platforms = lib.platforms.unix; + sourceProvenance = [ sourceTypes.binaryBytecode ]; + license = licenses.asl20; + maintainers = [ maintainers.srhb ]; + platforms = platforms.unix; }; } ) diff --git a/pkgs/by-name/pr/prometheus-nvidia-gpu-exporter/package.nix b/pkgs/by-name/pr/prometheus-nvidia-gpu-exporter/package.nix index 94ee81b1b35743..d23c34100e5d29 100644 --- a/pkgs/by-name/pr/prometheus-nvidia-gpu-exporter/package.nix +++ b/pkgs/by-name/pr/prometheus-nvidia-gpu-exporter/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { "-X=github.com/prometheus/common/version.BuildDate=1970-01-01T00:00:00Z" ]; - meta = { + meta = with lib; { description = "Nvidia GPU exporter for prometheus using nvidia-smi binary"; homepage = "https://github.com/utkuozdemir/nvidia_gpu_exporter"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ck3d ]; + license = licenses.mit; + maintainers = with maintainers; [ ck3d ]; mainProgram = "nvidia_gpu_exporter"; }; } diff --git a/pkgs/by-name/pr/prometheus-rasdaemon-exporter/package.nix b/pkgs/by-name/pr/prometheus-rasdaemon-exporter/package.nix index 2eff4095d2a358..48adf937a4c111 100644 --- a/pkgs/by-name/pr/prometheus-rasdaemon-exporter/package.nix +++ b/pkgs/by-name/pr/prometheus-rasdaemon-exporter/package.nix @@ -53,11 +53,11 @@ python3Packages.buildPythonApplication { doCheck = false; # no tests - meta = { + meta = with lib; { description = "Rasdaemon exporter for Prometheus"; homepage = "https://github.com/sanecz/prometheus-rasdaemon-exporter"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ hexa ]; + license = licenses.mit; + maintainers = with maintainers; [ hexa ]; mainProgram = "prometheus-rasdaemon-exporter"; }; } diff --git a/pkgs/by-name/pr/prometheus-squid-exporter/package.nix b/pkgs/by-name/pr/prometheus-squid-exporter/package.nix index 9073641c66e18e..4847cef436281c 100644 --- a/pkgs/by-name/pr/prometheus-squid-exporter/package.nix +++ b/pkgs/by-name/pr/prometheus-squid-exporter/package.nix @@ -17,10 +17,10 @@ buildGoModule rec { vendorHash = "sha256-0BNhjNveUDd0+X0do4Md58zJjXe3+KN27MPEviNuF3g="; - meta = { + meta = with lib; { description = "Squid Prometheus exporter"; homepage = "https://github.com/boynux/squid-exporter"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ srhb ]; + license = licenses.mit; + maintainers = with maintainers; [ srhb ]; }; } diff --git a/pkgs/by-name/pr/protege/package.nix b/pkgs/by-name/pr/protege/package.nix index 4ef2318e150d55..1ed558d4d19780 100644 --- a/pkgs/by-name/pr/protege/package.nix +++ b/pkgs/by-name/pr/protege/package.nix @@ -71,7 +71,7 @@ maven.buildMavenPackage rec { }) ]; - meta = { + meta = with lib; { homepage = "https://protege.stanford.edu/"; downloadPage = "https://protege.stanford.edu/software.php#desktop-protege"; description = "A free and open-source OWL 2 ontology editor"; @@ -80,14 +80,14 @@ maven.buildMavenPackage rec { support for the OWL 2 Web Ontology Language, and direct in-memory connections to description logic reasoners. ''; - maintainers = with lib.maintainers; [ nessdoor ]; - license = with lib.licenses; [ bsd2 ]; + maintainers = with maintainers; [ nessdoor ]; + license = with licenses; [ bsd2 ]; # TODO Protege is able to run on Darwin as well, but I (@nessdoor) had no # way of testing it nor any experience in packaging Darwin apps, so I # will leave the task to someone who has the right tools and knowledge. - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "protege"; - sourceProvenance = with lib.sourceTypes; [ + sourceProvenance = with sourceTypes; [ fromSource binaryBytecode ]; diff --git a/pkgs/by-name/pr/protoc-gen-elixir/package.nix b/pkgs/by-name/pr/protoc-gen-elixir/package.nix index 79aef256c7d0d7..2e3a43b123350f 100644 --- a/pkgs/by-name/pr/protoc-gen-elixir/package.nix +++ b/pkgs/by-name/pr/protoc-gen-elixir/package.nix @@ -34,11 +34,11 @@ beamPackages.mixRelease rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "A protoc plugin to generate Elixir code"; mainProgram = "protoc-gen-elixir"; homepage = "https://github.com/elixir-protobuf/protobuf"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ mattpolzin ]; + license = licenses.mit; + maintainers = with maintainers; [ mattpolzin ]; }; } diff --git a/pkgs/by-name/pr/protoc-gen-go-grpc/package.nix b/pkgs/by-name/pr/protoc-gen-go-grpc/package.nix index ffab717e5540d2..b2001fc947bda3 100644 --- a/pkgs/by-name/pr/protoc-gen-go-grpc/package.nix +++ b/pkgs/by-name/pr/protoc-gen-go-grpc/package.nix @@ -23,11 +23,11 @@ buildGoModule rec { "-w" ]; - meta = { + meta = with lib; { description = "Go language implementation of gRPC. HTTP/2 based RPC"; homepage = "https://grpc.io/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.asl20; + maintainers = with maintainers; [ aaronjheng ]; mainProgram = "protoc-gen-go-grpc"; }; } diff --git a/pkgs/by-name/pr/proton-pass/package.nix b/pkgs/by-name/pr/proton-pass/package.nix index e79fb1340f5524..01152c8213ccb0 100644 --- a/pkgs/by-name/pr/proton-pass/package.nix +++ b/pkgs/by-name/pr/proton-pass/package.nix @@ -52,17 +52,17 @@ stdenvNoCC.mkDerivation (finalAttrs: { --inherit-argv0 ''; - meta = { + meta = with lib; { description = "Desktop application for Proton Pass"; homepage = "https://proton.me/pass"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ luftmensch-luftmensch massimogengarelli sebtm ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; mainProgram = "proton-pass"; }; }) diff --git a/pkgs/by-name/pr/proton-vpn-local-agent/package.nix b/pkgs/by-name/pr/proton-vpn-local-agent/package.nix index 28447625151cb9..b655a99e8a1c21 100644 --- a/pkgs/by-name/pr/proton-vpn-local-agent/package.nix +++ b/pkgs/by-name/pr/proton-vpn-local-agent/package.nix @@ -26,11 +26,11 @@ rustPlatform.buildRustPackage rec { cp ./target/${stdenv.hostPlatform.rust.cargoShortTarget}/release/libpython_proton_vpn_local_agent.so $out/${python3.sitePackages}/proton/vpn/local_agent.so ''; - meta = { + meta = with lib; { description = "Proton VPN local agent written in Rust with Python bindings"; homepage = "https://github.com/ProtonVPN/python-proton-vpn-local-agent"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ sebtm ]; + license = licenses.gpl3Only; + platforms = platforms.linux; + maintainers = with maintainers; [ sebtm ]; }; } diff --git a/pkgs/by-name/pr/protoscope/package.nix b/pkgs/by-name/pr/protoscope/package.nix index 68dee6d5f4c730..28e3176a1c7855 100644 --- a/pkgs/by-name/pr/protoscope/package.nix +++ b/pkgs/by-name/pr/protoscope/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = { + meta = with lib; { description = "Simple, human-editable language for representing and emitting the Protobuf wire format"; mainProgram = "protoscope"; homepage = "https://github.com/protocolbuffers/protoscope"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.asl20; + maintainers = with maintainers; [ aaronjheng ]; }; } diff --git a/pkgs/by-name/pr/proverif/package.nix b/pkgs/by-name/pr/proverif/package.nix index 7addcf4008b596..6aea15b1fdd495 100644 --- a/pkgs/by-name/pr/proverif/package.nix +++ b/pkgs/by-name/pr/proverif/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Cryptographic protocol verifier in the formal model"; homepage = "https://bblanche.gitlabpages.inria.fr/proverif/"; - license = lib.licenses.gpl2; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.gpl2; + platforms = platforms.unix; + maintainers = with maintainers; [ thoughtpolice vbgl ]; diff --git a/pkgs/by-name/pr/prow/package.nix b/pkgs/by-name/pr/prow/package.nix index 55e138ccfcd62e..7a60506bd0c3fc 100644 --- a/pkgs/by-name/pr/prow/package.nix +++ b/pkgs/by-name/pr/prow/package.nix @@ -64,7 +64,7 @@ buildGoModule rec { nativeCheckInputs = [ git ]; - meta = { + meta = with lib; { description = "Kubernetes based CI/CD system developed to serve the Kubernetes community"; longDescription = '' Prow is a Kubernetes based CI/CD system. Jobs can be triggered by various @@ -74,8 +74,8 @@ buildGoModule rec { merging. ''; homepage = "https://github.com/kubernetes-sigs/prow"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ kalbasit ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = licenses.asl20; + maintainers = with maintainers; [ kalbasit ]; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/by-name/pr/proxmox-auto-install-assistant/package.nix b/pkgs/by-name/pr/proxmox-auto-install-assistant/package.nix index acc15ff2c81f7d..ee3de40fbf812d 100644 --- a/pkgs/by-name/pr/proxmox-auto-install-assistant/package.nix +++ b/pkgs/by-name/pr/proxmox-auto-install-assistant/package.nix @@ -42,7 +42,7 @@ rustPlatform.buildRustPackage rec { nativeInstallCheckInputs = [ versionCheckHook ]; versionCheckProgramArg = [ "--version" ]; - meta = { + meta = with lib; { description = "Tool to prepare a Proxmox installation ISO for automated installations"; longDescription = '' This tool can be used to prepare a Proxmox installation ISO for automated installations. @@ -51,9 +51,9 @@ rustPlatform.buildRustPackage rec { ''; homepage = "https://pve.proxmox.com/wiki/Automated_Installation"; changelog = "https://git.proxmox.com/?p=pve-installer.git;a=blob;f=debian/changelog"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ christoph-heiss ]; - platforms = lib.platforms.linux; + license = licenses.agpl3Only; + maintainers = with maintainers; [ christoph-heiss ]; + platforms = platforms.linux; mainProgram = "proxmox-auto-install-assistant"; }; } diff --git a/pkgs/by-name/pr/proxsuite/package.nix b/pkgs/by-name/pr/proxsuite/package.nix index 0acf7886422f43..6e730590a2881a 100644 --- a/pkgs/by-name/pr/proxsuite/package.nix +++ b/pkgs/by-name/pr/proxsuite/package.nix @@ -85,11 +85,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; pythonImportsCheck = [ "proxsuite" ]; - meta = { + meta = with lib; { description = "The Advanced Proximal Optimization Toolbox"; homepage = "https://github.com/Simple-Robotics/proxsuite"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ nim65s ]; - platforms = lib.platforms.unix; + license = licenses.bsd2; + maintainers = with maintainers; [ nim65s ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/pr/prrte/package.nix b/pkgs/by-name/pr/prrte/package.nix index 1deb96f3a6c7bf..eafebdcf184c9d 100644 --- a/pkgs/by-name/pr/prrte/package.nix +++ b/pkgs/by-name/pr/prrte/package.nix @@ -70,11 +70,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "PMIx Reference Runtime Environment"; homepage = "https://docs.prrte.org/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ markuskowa ]; - platforms = lib.platforms.unix; + license = licenses.bsd3; + maintainers = with maintainers; [ markuskowa ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/pr/pru/package.nix b/pkgs/by-name/pr/pru/package.nix index f48fc2c32069e5..09133d378ffb84 100644 --- a/pkgs/by-name/pr/pru/package.nix +++ b/pkgs/by-name/pr/pru/package.nix @@ -9,7 +9,7 @@ bundlerApp { gemdir = ./.; exes = [ "pru" ]; - meta = { + meta = with lib; { homepage = "https://github.com/grosser/pru"; description = "Pipeable Ruby"; longDescription = '' @@ -17,8 +17,8 @@ bundlerApp { higher-level replacement of typical text processing tools (like sed, awk, grep etc.). ''; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = licenses.mit; + maintainers = with maintainers; [ AndersonTorres ]; }; passthru.updateScript = bundlerUpdateScript "pru"; diff --git a/pkgs/by-name/ps/ps3-disc-dumper/package.nix b/pkgs/by-name/ps/ps3-disc-dumper/package.nix index 0a30081d05fe28..f204ec1c00fbbf 100644 --- a/pkgs/by-name/ps/ps3-disc-dumper/package.nix +++ b/pkgs/by-name/ps/ps3-disc-dumper/package.nix @@ -38,12 +38,12 @@ buildDotnetModule rec { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { description = "Handy utility to make decrypted PS3 disc dumps"; homepage = "https://github.com/13xforever/ps3-disc-dumper"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "ps3-disc-dumper"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ evanjs gepbird ]; diff --git a/pkgs/by-name/ps/ps3netsrv/package.nix b/pkgs/by-name/ps/ps3netsrv/package.nix index 4f01cfae445c49..3261cc4cc84a29 100644 --- a/pkgs/by-name/ps/ps3netsrv/package.nix +++ b/pkgs/by-name/ps/ps3netsrv/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { install -Dm644 ../LICENSE.TXT $out/usr/share/licenses/${pname}/LICENSE.TXT ''; - meta = { + meta = with lib; { description = "PS3 Net Server (mod by aldostools)"; homepage = "https://github.com/aldostools/webMAN-MOD/"; - license = lib.licenses.gpl3; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ makefu ]; + license = licenses.gpl3; + platforms = platforms.unix; + maintainers = with maintainers; [ makefu ]; mainProgram = "ps3netsrv"; }; } diff --git a/pkgs/by-name/ps/ps_mem/package.nix b/pkgs/by-name/ps/ps_mem/package.nix index 2b8365f0407749..9e76bf4975a03c 100644 --- a/pkgs/by-name/ps/ps_mem/package.nix +++ b/pkgs/by-name/ps/ps_mem/package.nix @@ -15,12 +15,12 @@ python3Packages.buildPythonApplication rec { hash = "sha256-jCfPtPSky/QFk9Xo/tq3W7609Pie1yLC4iS4dqjCa+E="; }; - meta = { + meta = with lib; { description = "Utility to accurately report the in core memory usage for a program"; homepage = "https://github.com/pixelb/ps_mem"; - license = lib.licenses.lgpl21; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.linux; + license = licenses.lgpl21; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.linux; mainProgram = "ps_mem"; }; } diff --git a/pkgs/by-name/ps/pshs/package.nix b/pkgs/by-name/ps/pshs/package.nix index a51d8bf90774e8..3e1503fcf0cc73 100644 --- a/pkgs/by-name/ps/pshs/package.nix +++ b/pkgs/by-name/ps/pshs/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Pretty small HTTP server - a command-line tool to share files"; mainProgram = "pshs"; homepage = "https://github.com/mgorny/pshs"; - sourceProvenance = [ lib.sourceTypes.fromSource ]; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; + sourceProvenance = [ sourceTypes.fromSource ]; + license = licenses.gpl2Plus; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ps/psitransfer/package.nix b/pkgs/by-name/ps/psitransfer/package.nix index 63f57bd75ac867..44ce297cfb8c52 100644 --- a/pkgs/by-name/ps/psitransfer/package.nix +++ b/pkgs/by-name/ps/psitransfer/package.nix @@ -49,11 +49,11 @@ buildNpmPackage { dontBuild = true; - meta = { + meta = with lib; { homepage = "https://github.com/psi-4ward/psitransfer"; description = "Simple open source self-hosted file sharing solution"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ hyshka ]; + license = licenses.bsd2; + maintainers = with maintainers; [ hyshka ]; mainProgram = "psitransfer"; }; } diff --git a/pkgs/by-name/ps/psutils/package.nix b/pkgs/by-name/ps/psutils/package.nix index 0bf3cfe7d3798f..f9c126ce30ddf3 100644 --- a/pkgs/by-name/ps/psutils/package.nix +++ b/pkgs/by-name/ps/psutils/package.nix @@ -31,10 +31,10 @@ stdenv.mkDerivation rec { mkdir -p $out/bin $out/share/man/man1 ''; - meta = { + meta = with lib; { description = "Collection of useful utilities for manipulating PS documents"; homepage = "http://knackered.knackered.org/angus/psutils/"; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; + license = licenses.bsd3; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/pt/ptext/package.nix b/pkgs/by-name/pt/ptext/package.nix index acd675dd5043f0..0b58a22d43537d 100644 --- a/pkgs/by-name/pt/ptext/package.nix +++ b/pkgs/by-name/pt/ptext/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation { preInstall = "mkdir -p $out/{bin,share/man/man1}"; - meta = { + meta = with lib; { description = "Nano like text editor built with pure C"; homepage = "https://github.com/proh14/ptext"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.linux; + license = licenses.bsd2; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.linux; mainProgram = "ptext"; }; } diff --git a/pkgs/by-name/pt/ptyxis/package.nix b/pkgs/by-name/pt/ptyxis/package.nix index 56676c62505d5c..84ba940db674de 100644 --- a/pkgs/by-name/pt/ptyxis/package.nix +++ b/pkgs/by-name/pt/ptyxis/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation (finalAttrs: { pcre2 ]; - meta = { + meta = with lib; { description = "Terminal for GNOME with first-class support for containers"; homepage = "https://gitlab.gnome.org/chergert/ptyxis"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "ptyxis"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/pu/puffin/package.nix b/pkgs/by-name/pu/puffin/package.nix index ac3959e111c447..2320d7d092f2b5 100644 --- a/pkgs/by-name/pu/puffin/package.nix +++ b/pkgs/by-name/pu/puffin/package.nix @@ -16,11 +16,11 @@ buildGoModule rec { vendorHash = "sha256-ZxAqR3D5VUtbntktrpnywPG3m9rq1utO4fdum0Qe6TU="; - meta = { + meta = with lib; { description = "Beautiful terminal dashboard for hledger"; homepage = "https://github.com/siddhantac/puffin"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "puffin"; - maintainers = with lib.maintainers; [ renesat ]; + maintainers = with maintainers; [ renesat ]; }; } diff --git a/pkgs/by-name/pu/pugl/package.nix b/pkgs/by-name/pu/pugl/package.nix index 2af38bb31d1b6d..30627b43b94f47 100644 --- a/pkgs/by-name/pu/pugl/package.nix +++ b/pkgs/by-name/pu/pugl/package.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation (finalAttrs: { cairo ]; - meta = { + meta = with lib; { homepage = "https://github.com/lv2/pugl"; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; - platforms = lib.platforms.unix; - license = lib.licenses.isc; + maintainers = with maintainers; [ bot-wxt1221 ]; + platforms = platforms.unix; + license = licenses.isc; description = "Minimal portable API for embeddable GUIs"; }; }) diff --git a/pkgs/by-name/pu/pulldown-cmark/package.nix b/pkgs/by-name/pu/pulldown-cmark/package.nix index f6cf4bc23c1494..d1fd6b10b84ccc 100644 --- a/pkgs/by-name/pu/pulldown-cmark/package.nix +++ b/pkgs/by-name/pu/pulldown-cmark/package.nix @@ -15,11 +15,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-siYwv14AzoQnub+Xcb3UCdEnCIOYremqNve5xyMhixc="; - meta = { + meta = with lib; { description = "Pull parser for CommonMark written in Rust"; homepage = "https://github.com/raphlinus/pulldown-cmark"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ CobaltCause ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ CobaltCause ]; mainProgram = "pulldown-cmark"; }; } diff --git a/pkgs/by-name/pu/puppet-bolt/package.nix b/pkgs/by-name/pu/puppet-bolt/package.nix index 4129e0654bda72..a06a7672a7cecb 100644 --- a/pkgs/by-name/pu/puppet-bolt/package.nix +++ b/pkgs/by-name/pu/puppet-bolt/package.nix @@ -36,17 +36,17 @@ updateScript = bundlerUpdateScript "puppet-bolt"; }; - meta = { + meta = with lib; { description = "Execute commands remotely over SSH and WinRM"; homepage = "https://github.com/puppetlabs/bolt"; changelog = "https://github.com/puppetlabs/bolt/blob/main/CHANGELOG.md"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "bolt"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ uvnikita anthonyroussel ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }).overrideAttrs (old: { diff --git a/pkgs/by-name/pu/puppet-lint/package.nix b/pkgs/by-name/pu/puppet-lint/package.nix index 588d9f0c86fad6..0cc8eb93350714 100644 --- a/pkgs/by-name/pu/puppet-lint/package.nix +++ b/pkgs/by-name/pu/puppet-lint/package.nix @@ -19,12 +19,12 @@ bundlerApp { updateScript = bundlerUpdateScript "puppet-lint"; }; - meta = { + meta = with lib; { description = "Checks Puppet code against the recommended Puppet language style guide"; homepage = "https://github.com/puppetlabs/puppet-lint"; changelog = "https://github.com/puppetlabs/puppet-lint/blob/main/CHANGELOG.md"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "puppet-lint"; - maintainers = with lib.maintainers; [ anthonyroussel ]; + maintainers = with maintainers; [ anthonyroussel ]; }; } diff --git a/pkgs/by-name/pu/puppet/package.nix b/pkgs/by-name/pu/puppet/package.nix index 9d5f738cad7e48..16f5f5b1cd2206 100644 --- a/pkgs/by-name/pu/puppet/package.nix +++ b/pkgs/by-name/pu/puppet/package.nix @@ -20,12 +20,12 @@ bundlerApp { updateScript = bundlerUpdateScript "puppet"; }; - meta = { + meta = with lib; { description = "Server automation framework and application"; homepage = "https://github.com/puppetlabs/puppet"; changelog = "https://github.com/puppetlabs/puppet/blob/main/CHANGELOG.md"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "puppet"; - maintainers = with lib.maintainers; [ baloo ]; + maintainers = with maintainers; [ baloo ]; }; } diff --git a/pkgs/by-name/pu/puppeteer-cli/package.nix b/pkgs/by-name/pu/puppeteer-cli/package.nix index 03b71b728ab597..b21915e54dd540 100644 --- a/pkgs/by-name/pu/puppeteer-cli/package.nix +++ b/pkgs/by-name/pu/puppeteer-cli/package.nix @@ -32,11 +32,11 @@ buildNpmPackage rec { --set PUPPETEER_EXECUTABLE_PATH ${chromium}/bin/chromium ''; - meta = { + meta = with lib; { description = "Command-line wrapper for generating PDF prints and PNG screenshots with Puppeteer"; homepage = "https://github.com/JarvusInnovations/puppeteer-cli"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "puppeteer"; - maintainers = with lib.maintainers; [ chessai ]; + maintainers = with maintainers; [ chessai ]; }; } diff --git a/pkgs/by-name/pu/puremapping/package.nix b/pkgs/by-name/pu/puremapping/package.nix index e0727483cee59f..0844515850661e 100644 --- a/pkgs/by-name/pu/puremapping/package.nix +++ b/pkgs/by-name/pu/puremapping/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { mv puremapping/ $out ''; - meta = { + meta = with lib; { description = "Set of externals to facilitate the use of sensors within Pure Data and to create complex relations between input and output of a dynamic system"; homepage = "http://www.chnry.net/ch/?090-Pure-Mapping&lang=en"; - license = lib.licenses.gpl1Only; - maintainers = [ lib.maintainers.magnetophon ]; - platforms = lib.platforms.linux; + license = licenses.gpl1Only; + maintainers = [ maintainers.magnetophon ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/pu/purescm/package.nix b/pkgs/by-name/pu/purescm/package.nix index 9dd16d489a0cac..4d2b817712b01e 100644 --- a/pkgs/by-name/pu/purescm/package.nix +++ b/pkgs/by-name/pu/purescm/package.nix @@ -34,11 +34,11 @@ let version = testers.testVersion { inherit package; }; }; - meta = { + meta = with lib; { description = "Chez Scheme back-end for PureScript"; homepage = "https://github.com/purescm/purescm"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ toastal ]; + license = licenses.asl20; + maintainers = with maintainers; [ toastal ]; mainProgram = "purescm"; }; }; diff --git a/pkgs/by-name/pv/pv/package.nix b/pkgs/by-name/pv/pv/package.nix index 189089dfd1c7da..c0c2d03948f3f4 100644 --- a/pkgs/by-name/pv/pv/package.nix +++ b/pkgs/by-name/pv/pv/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-FiSVqrscuEIYbLIkmV49X2Cp9SeknMvYISODzHK3w2w="; }; - meta = { + meta = with lib; { homepage = "https://www.ivarch.com/programs/pv.shtml"; description = "Tool for monitoring the progress of data through a pipeline"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ matthiasbeyer ]; - platforms = lib.platforms.all; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ matthiasbeyer ]; + platforms = platforms.all; mainProgram = "pv"; }; }) diff --git a/pkgs/by-name/pv/pvs-studio/package.nix b/pkgs/by-name/pv/pvs-studio/package.nix index d6157bab991850..4046216f997eba 100644 --- a/pkgs/by-name/pv/pvs-studio/package.nix +++ b/pkgs/by-name/pv/pvs-studio/package.nix @@ -57,15 +57,15 @@ stdenv.mkDerivation rec { tests.version = testers.testVersion { package = pvs-studio; }; }; - meta = { + meta = with lib; { description = "Static analyzer for C and C++"; homepage = "https://pvs-studio.com/en/pvs-studio"; - license = lib.licenses.unfreeRedistributable; + license = licenses.unfreeRedistributable; platforms = [ "x86_64-darwin" "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ paveloom ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ paveloom ]; }; } diff --git a/pkgs/by-name/pw/pwalarmctl/package.nix b/pkgs/by-name/pw/pwalarmctl/package.nix index 8e30f53f98c6db..7cfec70c6927a8 100644 --- a/pkgs/by-name/pw/pwalarmctl/package.nix +++ b/pkgs/by-name/pw/pwalarmctl/package.nix @@ -28,7 +28,7 @@ rustPlatform.buildRustPackage rec { buildAndTestSubdir = "pwalarmctl"; - meta = { + meta = with lib; { description = "Controller for pwalarmd"; longDescription = '' pwalarmctl is a command-line controller for pwalarmd which allows @@ -36,9 +36,9 @@ rustPlatform.buildRustPackage rec { of pwalarmd. ''; mainProgram = "pwalarmctl"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.all; - badPlatforms = lib.platforms.darwin; - maintainers = with lib.maintainers; [ amyipdev ]; + license = licenses.gpl2Only; + platforms = platforms.all; + badPlatforms = platforms.darwin; + maintainers = with maintainers; [ amyipdev ]; }; } diff --git a/pkgs/by-name/pw/pwvucontrol/package.nix b/pkgs/by-name/pw/pwvucontrol/package.nix index 1d83ecc8626204..84aec3ae81b618 100644 --- a/pkgs/by-name/pw/pwvucontrol/package.nix +++ b/pkgs/by-name/pw/pwvucontrol/package.nix @@ -74,16 +74,16 @@ stdenv.mkDerivation (finalAttrs: { wireplumber_0_4 ]; - meta = { + meta = with lib; { description = "Pipewire Volume Control"; homepage = "https://github.com/saivert/pwvucontrol"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ figsoda Guanran928 johnrtitor ]; mainProgram = "pwvucontrol"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/px/pxattr/package.nix b/pkgs/by-name/px/pxattr/package.nix index a3d0fd4e732dcc..169e3682d817c0 100644 --- a/pkgs/by-name/px/pxattr/package.nix +++ b/pkgs/by-name/px/pxattr/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { cp pxattr $out/bin ''; - meta = { + meta = with lib; { homepage = "https://www.lesbonscomptes.com/pxattr/index.html"; description = "Provides a single interface to extended file attributes"; maintainers = [ ]; - license = [ lib.licenses.mit ]; - platforms = lib.platforms.unix; + license = [ licenses.mit ]; + platforms = platforms.unix; mainProgram = "pxattr"; }; } diff --git a/pkgs/by-name/px/pxder/package.nix b/pkgs/by-name/px/pxder/package.nix index e01b261ae78154..fedb4f5d8daad3 100644 --- a/pkgs/by-name/px/pxder/package.nix +++ b/pkgs/by-name/px/pxder/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Download illusts from pixiv.net"; homepage = "https://github.com/Tsuk1ko/pxder"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "pxder"; - maintainers = with lib.maintainers; [ vanilla ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ vanilla ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/py/pyamlboot/package.nix b/pkgs/by-name/py/pyamlboot/package.nix index 08701edea6f638..68dec8f911ac84 100644 --- a/pkgs/by-name/py/pyamlboot/package.nix +++ b/pkgs/by-name/py/pyamlboot/package.nix @@ -33,15 +33,15 @@ python3Packages.buildPythonApplication rec { version = "boot.py ${lib.versions.majorMinor version}"; }; - meta = { + meta = with lib; { description = "Amlogic USB Boot Protocol Library"; homepage = "https://github.com/superna9999/pyamlboot"; - license = with lib.licenses; [ + license = with licenses; [ asl20 gpl2Only mit ]; - maintainers = with lib.maintainers; [ genga898 ]; + maintainers = with maintainers; [ genga898 ]; mainProgram = "boot.py"; }; } diff --git a/pkgs/by-name/py/pybibget/package.nix b/pkgs/by-name/py/pybibget/package.nix index 83eb642ce5b7aa..75b7b4e71536a2 100644 --- a/pkgs/by-name/py/pybibget/package.nix +++ b/pkgs/by-name/py/pybibget/package.nix @@ -34,10 +34,10 @@ python3.pkgs.buildPythonApplication { # manually tested instead doCheck = false; - meta = { + meta = with lib; { description = "Command line utility to automatically retrieve BibTeX citations from MathSciNet, arXiv, PubMed and doi.org"; homepage = "https://github.com/wirhabenzeit/pybibget"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ vasissualiyp ]; + license = licenses.mit; + maintainers = with maintainers; [ vasissualiyp ]; }; } diff --git a/pkgs/by-name/py/pycdc/package.nix b/pkgs/by-name/py/pycdc/package.nix index 718ea4eaa796ef..fd78ac18e67407 100644 --- a/pkgs/by-name/py/pycdc/package.nix +++ b/pkgs/by-name/py/pycdc/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - meta = { + meta = with lib; { description = "C++ python bytecode disassembler and decompiler"; homepage = "https://github.com/zrax/pycdc"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ msm ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ msm ]; mainProgram = "pycdc"; }; } diff --git a/pkgs/by-name/py/pychess/package.nix b/pkgs/by-name/py/pychess/package.nix index fdf109bb150a0d..9b800180f39752 100644 --- a/pkgs/by-name/py/pychess/package.nix +++ b/pkgs/by-name/py/pychess/package.nix @@ -63,12 +63,12 @@ python3Packages.buildPythonApplication rec { # No tests available. doCheck = false; - meta = { + meta = with lib; { description = "Advanced GTK chess client written in Python"; homepage = "https://pychess.github.io/"; mainProgram = "pychess"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ lgbishop ]; + license = licenses.gpl3Only; + platforms = platforms.linux; + maintainers = with maintainers; [ lgbishop ]; }; } diff --git a/pkgs/by-name/py/pyditz/package.nix b/pkgs/by-name/py/pyditz/package.nix index 4e8da8bb296bd7..003634116e0c46 100644 --- a/pkgs/by-name/py/pyditz/package.nix +++ b/pkgs/by-name/py/pyditz/package.nix @@ -23,11 +23,11 @@ python3Packages.buildPythonApplication rec { cerberus ]; - meta = { + meta = with lib; { homepage = "https://hg.sr.ht/~zondo/pyditz"; description = "Drop-in replacement for the Ditz distributed issue tracker"; - maintainers = with lib.maintainers; [ ilikeavocadoes ]; - license = lib.licenses.lgpl2Plus; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ ilikeavocadoes ]; + license = licenses.lgpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/py/pyfa/package.nix b/pkgs/by-name/py/pyfa/package.nix index 16a5d2ace96d00..fb259ee67eb504 100644 --- a/pkgs/by-name/py/pyfa/package.nix +++ b/pkgs/by-name/py/pyfa/package.nix @@ -129,16 +129,16 @@ python3Packages.buildPythonApplication rec { doCheck = true; - meta = { + meta = with lib; { description = "Python fitting assistant, cross-platform fitting tool for EVE Online"; homepage = "https://github.com/pyfa-org/Pyfa"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ toasteruwu cholli paschoal ]; mainProgram = "pyfa"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/py/pyflyby/package.nix b/pkgs/by-name/py/pyflyby/package.nix index ee3957c3248a13..361cffb9b0e510 100644 --- a/pkgs/by-name/py/pyflyby/package.nix +++ b/pkgs/by-name/py/pyflyby/package.nix @@ -33,11 +33,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "pyflyby" ]; - meta = { + meta = with lib; { description = "Set of productivity tools for Python"; homepage = "https://github.com/deshaw/pyflyby"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ jfvillablanca ]; + license = licenses.mit; + maintainers = with maintainers; [ jfvillablanca ]; mainProgram = "py"; }; } diff --git a/pkgs/by-name/py/pyload-ng/package.nix b/pkgs/by-name/py/pyload-ng/package.nix index 914b34329d8c3f..46c7be8e215a59 100644 --- a/pkgs/by-name/py/pyload-ng/package.nix +++ b/pkgs/by-name/py/pyload-ng/package.nix @@ -62,11 +62,11 @@ python3.pkgs.buildPythonApplication rec { inherit (nixosTests) pyload; }; - meta = { + meta = with lib; { description = "Free and open-source download manager with support for 1-click-hosting sites"; homepage = "https://github.com/pyload/pyload"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ ruby0b ]; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ ruby0b ]; mainProgram = "pyload"; }; } diff --git a/pkgs/by-name/py/pyprland/package.nix b/pkgs/by-name/py/pyprland/package.nix index 00fcd1b4b052ed..b89415d45bc88b 100644 --- a/pkgs/by-name/py/pyprland/package.nix +++ b/pkgs/by-name/py/pyprland/package.nix @@ -63,15 +63,15 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { mainProgram = "pypr"; description = "Hyperland plugin system"; homepage = "https://github.com/hyprland-community/pyprland"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ iliayar johnrtitor ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/py/pyrseas/package.nix b/pkgs/by-name/py/pyrseas/package.nix index b408f480b572ba..3feeaafb996a5b 100644 --- a/pkgs/by-name/py/pyrseas/package.nix +++ b/pkgs/by-name/py/pyrseas/package.nix @@ -47,10 +47,10 @@ python3Packages.buildPythonApplication rec { # The tests are impure (they try to access a PostgreSQL server) doCheck = false; - meta = { + meta = with lib; { description = "Declarative language to describe PostgreSQL databases"; homepage = "https://perseas.github.io/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ pmeunier ]; + license = licenses.bsd3; + maintainers = with maintainers; [ pmeunier ]; }; } diff --git a/pkgs/by-name/q2/q2pro/package.nix b/pkgs/by-name/q2/q2pro/package.nix index 9a3465f517f48c..fe99433fe90b99 100644 --- a/pkgs/by-name/q2/q2pro/package.nix +++ b/pkgs/by-name/q2/q2pro/package.nix @@ -98,12 +98,12 @@ stdenv.mkDerivation (finalAttrs: rec { versionCheckProgramArg = "--version"; doInstallCheck = true; - meta = { + meta = with lib; { description = "Enhanced Quake 2 client and server focused on multiplayer"; homepage = "https://github.com/skullernet/q2pro"; - license = lib.licenses.gpl2; - maintainers = with lib.maintainers; [ carlossless ]; - platforms = lib.platforms.unix; + license = licenses.gpl2; + maintainers = with maintainers; [ carlossless ]; + platforms = platforms.unix; mainProgram = "q2pro"; }; }) diff --git a/pkgs/by-name/qc/qcard/package.nix b/pkgs/by-name/qc/qcard/package.nix index 2b16fc335a705b..51fe356eb1d9d1 100644 --- a/pkgs/by-name/qc/qcard/package.nix +++ b/pkgs/by-name/qc/qcard/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { cp config-sample.json $out/share/qcard/ ''; - meta = { + meta = with lib; { description = "CLI addressbook application for CardDAV servers written in Go"; homepage = "https://git.sr.ht/~psic4t/qcard"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "qcard"; - maintainers = with lib.maintainers; [ antonmosich ]; + maintainers = with maintainers; [ antonmosich ]; }; } diff --git a/pkgs/by-name/qc/qcdnum/package.nix b/pkgs/by-name/qc/qcdnum/package.nix index 2db2f8f837c8ed..5e49a4e53fec17 100644 --- a/pkgs/by-name/qc/qcdnum/package.nix +++ b/pkgs/by-name/qc/qcdnum/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Very fast QCD evolution program written in FORTRAN77"; mainProgram = "qcdnum-config"; - license = lib.licenses.gpl3; + license = licenses.gpl3; homepage = "https://www.nikhef.nl/~h24/qcdnum/index.html"; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ veprbl ]; + platforms = platforms.unix; + maintainers = with maintainers; [ veprbl ]; }; } diff --git a/pkgs/by-name/qc/qcm/package.nix b/pkgs/by-name/qc/qcm/package.nix index 9b8d9c92caa759..63cc161ef1132c 100644 --- a/pkgs/by-name/qc/qcm/package.nix +++ b/pkgs/by-name/qc/qcm/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation (finalAttrs: { "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath cubeb.passthru.backendLibs}" ]; - meta = { + meta = with lib; { description = "Unofficial Qt client for netease cloud music"; homepage = "https://github.com/hypengw/Qcm"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "Qcm"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/qd/qdiskinfo/package.nix b/pkgs/by-name/qd/qdiskinfo/package.nix index d54085b04b51e9..ac0d6fffa174d7 100644 --- a/pkgs/by-name/qd/qdiskinfo/package.nix +++ b/pkgs/by-name/qd/qdiskinfo/package.nix @@ -105,12 +105,12 @@ stdenv.mkDerivation (finalAttrs: { ); }; - meta = { + meta = with lib; { description = "CrystalDiskInfo alternative for Linux"; homepage = "https://github.com/edisionnano/QDiskInfo"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ roydubnium ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ roydubnium ]; + platforms = platforms.linux; mainProgram = "QDiskInfo"; }; }) diff --git a/pkgs/by-name/qg/qgroundcontrol/package.nix b/pkgs/by-name/qg/qgroundcontrol/package.nix index 758642bb913071..b9c4805f533db5 100644 --- a/pkgs/by-name/qg/qgroundcontrol/package.nix +++ b/pkgs/by-name/qg/qgroundcontrol/package.nix @@ -95,13 +95,13 @@ stdenv.mkDerivation rec { ./disable-bad-message.patch ]; - meta = { + meta = with lib; { description = "Provides full ground station support and configuration for the PX4 and APM Flight Stacks"; homepage = "https://qgroundcontrol.com/"; changelog = "https://github.com/mavlink/qgroundcontrol/blob/master/ChangeLog.md"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ lopsided98 pandapip1 ]; diff --git a/pkgs/by-name/qg/qgv/package.nix b/pkgs/by-name/qg/qgv/package.nix index d9ab3c7fc437a1..5cef272e47d1df 100644 --- a/pkgs/by-name/qg/qgv/package.nix +++ b/pkgs/by-name/qg/qgv/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation (finalAttrs: { jrl-cmakemodules ]; - meta = { + meta = with lib; { description = "Interactive Qt graphViz display"; homepage = "https://github.com/gepetto/qgv"; - license = lib.licenses.lgpl3Only; - maintainers = [ lib.maintainers.nim65s ]; - platforms = lib.platforms.unix; + license = licenses.lgpl3Only; + maintainers = [ maintainers.nim65s ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/qh/qhexedit2/package.nix b/pkgs/by-name/qh/qhexedit2/package.nix index 990c227be3bad9..38f972335e5c28 100644 --- a/pkgs/by-name/qh/qhexedit2/package.nix +++ b/pkgs/by-name/qh/qhexedit2/package.nix @@ -54,13 +54,13 @@ stdenv.mkDerivation (finalAttrs: { # TODO: Debug why testVersion reports a non-zero status code in the nix sandbox }; - meta = { + meta = with lib; { description = "Hex Editor for Qt"; homepage = "https://github.com/Simsys/qhexedit2"; changelog = "https://github.com/Simsys/qhexedit2/releases"; mainProgram = "qhexedit"; - license = lib.licenses.lgpl21Only; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ pandapip1 ]; + license = licenses.lgpl21Only; + platforms = platforms.all; + maintainers = with maintainers; [ pandapip1 ]; }; }) diff --git a/pkgs/by-name/qi/qidi-slicer-bin/package.nix b/pkgs/by-name/qi/qidi-slicer-bin/package.nix index 416f4e4b22e55a..6ba0e26389cd18 100644 --- a/pkgs/by-name/qi/qidi-slicer-bin/package.nix +++ b/pkgs/by-name/qi/qidi-slicer-bin/package.nix @@ -31,17 +31,17 @@ appimageTools.wrapType2 { install -m 444 -D ${appimageContents}/usr/bin/resources/icons/QIDISlicer.svg $out/share/icons/hicolor/scalable/apps/QIDISlicer.svg ''; - meta = { + meta = with lib; { description = "Slicer for QIDI 3D Printers, based on PrusaSlicer"; longDescription = '' QIDISlicer is a 3D printer slicing software that works with all QIDI Technology printers and filaments. It is easy to use and has all the functions you need to learn 3D printing. ''; homepage = "https://github.com/QIDITECH/QIDISlicer"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ j0hax ]; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ j0hax ]; mainProgram = "qidi-slicer"; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/qm/qmplay2/package.nix b/pkgs/by-name/qm/qmplay2/package.nix index b1c87c6993f6b5..9f977e37f0a99b 100644 --- a/pkgs/by-name/qm/qmplay2/package.nix +++ b/pkgs/by-name/qm/qmplay2/package.nix @@ -96,7 +96,7 @@ stdenv.mkDerivation (finalAttrs: { inherit sources; }; - meta = { + meta = with lib; { homepage = "https://github.com/zaps166/QMPlay2/"; description = "Qt-based Multimedia player"; longDescription = '' @@ -105,12 +105,12 @@ stdenv.mkDerivation (finalAttrs: { raw files, Rayman 2 music, and chiptunes. It also contains YouTube and MyFreeMP3 browser. ''; - license = lib.licenses.lgpl3Plus; + license = licenses.lgpl3Plus; mainProgram = "qmplay2"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ AndersonTorres kashw2 ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/qn/qnial/package.nix b/pkgs/by-name/qn/qnial/package.nix index afba39d315f6cf..b6af151c8fe5a8 100644 --- a/pkgs/by-name/qn/qnial/package.nix +++ b/pkgs/by-name/qn/qnial/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation (finalAttrs: { cp -r niallib $out/lib/ ''; - meta = { + meta = with lib; { description = "Array language from Nial Systems"; homepage = "https://bitbucket.com/museoa/qnial"; - license = lib.licenses.artistic1; + license = licenses.artistic1; mainProgram = "nial"; - maintainers = [ lib.maintainers.AndersonTorres ]; - platforms = lib.platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/qp/qprint/package.nix b/pkgs/by-name/qp/qprint/package.nix index 8dba3ab67ce44c..6f81ad24f54ca8 100644 --- a/pkgs/by-name/qp/qprint/package.nix +++ b/pkgs/by-name/qp/qprint/package.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation rec { mkdir -p $out/share/man/man1 ''; - meta = { + meta = with lib; { homepage = "https://www.fourmilab.ch/webtools/qprint/"; - license = lib.licenses.publicDomain; + license = licenses.publicDomain; description = "Encode and decode Quoted-Printable files"; mainProgram = "qprint"; - maintainers = [ lib.maintainers.tv ]; - platforms = lib.platforms.all; + maintainers = [ maintainers.tv ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/qq/qq/package.nix b/pkgs/by-name/qq/qq/package.nix index b5cf57432e8be6..badbe750f06ef1 100644 --- a/pkgs/by-name/qq/qq/package.nix +++ b/pkgs/by-name/qq/qq/package.nix @@ -118,16 +118,16 @@ stdenv.mkDerivation { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { homepage = "https://im.qq.com/linuxqq/"; description = "Messaging app"; platforms = [ "x86_64-linux" "aarch64-linux" ]; - license = lib.licenses.unfree; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ + license = licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ fee1-dead bot-wxt1221 ]; diff --git a/pkgs/by-name/qq/qqwing/package.nix b/pkgs/by-name/qq/qqwing/package.nix index 9f1713bae679a8..0bdea62f1b8f5b 100644 --- a/pkgs/by-name/qq/qqwing/package.nix +++ b/pkgs/by-name/qq/qqwing/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { --replace-fail "sudo " "" ''; - meta = { + meta = with lib; { homepage = "https://qqwing.com"; description = "Sudoku generating and solving software"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ nickcao ]; + license = licenses.gpl2Plus; + platforms = platforms.unix; + maintainers = with maintainers; [ nickcao ]; mainProgram = "qqwing"; }; } diff --git a/pkgs/by-name/qr/qrcodegen/package.nix b/pkgs/by-name/qr/qrcodegen/package.nix index 118d1db277aeb8..c0a7172fc89dc7 100644 --- a/pkgs/by-name/qr/qrcodegen/package.nix +++ b/pkgs/by-name/qr/qrcodegen/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://www.nayuki.io/page/qr-code-generator-library"; description = "High-quality QR Code generator library in many languages"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) # TODO: build the other languages diff --git a/pkgs/by-name/qr/qrcp/package.nix b/pkgs/by-name/qr/qrcp/package.nix index 1e965ad41bdd79..00146b13354bb0 100644 --- a/pkgs/by-name/qr/qrcp/package.nix +++ b/pkgs/by-name/qr/qrcp/package.nix @@ -38,7 +38,7 @@ buildGoModule rec { --zsh <($out/bin/qrcp completion zsh) ''; - meta = { + meta = with lib; { homepage = "https://qrcp.sh/"; description = "Transfer files over wifi by scanning a QR code from your terminal"; longDescription = '' @@ -47,8 +47,8 @@ buildGoModule rec { handler serves the content and exits the program when the transfer is complete. ''; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fgaz ]; + license = licenses.mit; + maintainers = with maintainers; [ fgaz ]; mainProgram = "qrcp"; }; } diff --git a/pkgs/by-name/qs/qspeakers/package.nix b/pkgs/by-name/qs/qspeakers/package.nix index 8fd025250b384e..3d9ce8416e4e97 100644 --- a/pkgs/by-name/qs/qspeakers/package.nix +++ b/pkgs/by-name/qs/qspeakers/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation (finalAttrs: { libsForQt5.qttools ]; - meta = { + meta = with lib; { description = "Loudspeaker enclosure designer"; homepage = "https://github.com/be1/qspeakers"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "qspeakers"; - maintainers = with lib.maintainers; [ tomasajt ]; + maintainers = with maintainers; [ tomasajt ]; }; }) diff --git a/pkgs/by-name/qt/qtscrcpy/package.nix b/pkgs/by-name/qt/qtscrcpy/package.nix index 3b93472102d77b..384d54ea852079 100644 --- a/pkgs/by-name/qt/qtscrcpy/package.nix +++ b/pkgs/by-name/qt/qtscrcpy/package.nix @@ -115,19 +115,19 @@ stdenv.mkDerivation rec { ) ''; - meta = { + meta = with lib; { description = "Android real-time display control software"; homepage = "https://github.com/barry-ran/QtScrcpy"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ daru-san aleksana ]; mainProgram = "QtScrcpy"; - platforms = with lib.platforms; linux ++ darwin ++ windows; + platforms = with platforms; linux ++ darwin ++ windows; # needs some special handling on darwin as it generates .app bundle directly - badPlatforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ + badPlatforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ fromSource # Still includes sndcpy.apk vendored in the same repo # which will run on controlled Android device diff --git a/pkgs/by-name/qu/qualisys-cpp-sdk/package.nix b/pkgs/by-name/qu/qualisys-cpp-sdk/package.nix index 07775e42cd2be5..9257ba398efef4 100644 --- a/pkgs/by-name/qu/qualisys-cpp-sdk/package.nix +++ b/pkgs/by-name/qu/qualisys-cpp-sdk/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake ]; - meta = { + meta = with lib; { description = "C++ sdk for talking to Qualisys Track Manager software"; homepage = "https://github.com/qualisys/qualisys_cpp_sdk"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nim65s ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ nim65s ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/qu/quast/package.nix b/pkgs/by-name/qu/quast/package.nix index 773753d8fd2245..bc953b3e84c117 100644 --- a/pkgs/by-name/qu/quast/package.nix +++ b/pkgs/by-name/qu/quast/package.nix @@ -59,15 +59,15 @@ pythonPackages.buildPythonApplication rec { # Tests need to download data files, so manual run after packaging is needed doCheck = false; - meta = { + meta = with lib; { description = "Evaluates genome assemblies by computing various metrics"; homepage = "https://github.com/ablab/quast"; - sourceProvenance = with lib.sourceTypes; [ + sourceProvenance = with sourceTypes; [ fromSource binaryNativeCode # source bundles binary dependencies ]; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.bzizou ]; - platforms = lib.platforms.all; + license = licenses.gpl2; + maintainers = [ maintainers.bzizou ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/qu/quba/package.nix b/pkgs/by-name/qu/quba/package.nix index 1be9b1a481a7b2..1e96a853308709 100644 --- a/pkgs/by-name/qu/quba/package.nix +++ b/pkgs/by-name/qu/quba/package.nix @@ -25,13 +25,13 @@ appimageTools.wrapType1 { cp -r ${appimageContents}/usr/share/icons $out/share ''; - meta = { + meta = with lib; { description = "Viewer for electronic invoices"; homepage = "https://github.com/ZUGFeRD/quba-viewer"; downloadPage = "https://github.com/ZUGFeRD/quba-viewer/releases"; - license = lib.licenses.asl20; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ onny ]; + license = licenses.asl20; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ onny ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/qu/qucsator-rf/package.nix b/pkgs/by-name/qu/qucsator-rf/package.nix index f3ef6f64d18af0..493b90b3c6b835 100644 --- a/pkgs/by-name/qu/qucsator-rf/package.nix +++ b/pkgs/by-name/qu/qucsator-rf/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { (lib.cmakeBool "WITH_ADMS" withAdms) ]; - meta = { + meta = with lib; { description = "RF circuit simulation kernel for Qucs-S"; homepage = "https://github.com/ra3xdh/qucsator_rf"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "qucsator_rf"; - maintainers = with lib.maintainers; [ thomaslepoix ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ thomaslepoix ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/qu/questdb/package.nix b/pkgs/by-name/qu/questdb/package.nix index 89456d22b99e3b..6fa760411d1471 100644 --- a/pkgs/by-name/qu/questdb/package.nix +++ b/pkgs/by-name/qu/questdb/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "high-performance, open-source SQL database for applications in financial services, IoT, machine learning, DevOps and observability"; homepage = "https://questdb.io/"; - sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.jacfal ]; - platforms = lib.platforms.linux; + sourceProvenance = [ sourceTypes.binaryBytecode ]; + license = licenses.asl20; + maintainers = [ maintainers.jacfal ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/qu/quick-lookup/package.nix b/pkgs/by-name/qu/quick-lookup/package.nix index 0a463db059b08d..f7409fcc3a4b08 100644 --- a/pkgs/by-name/qu/quick-lookup/package.nix +++ b/pkgs/by-name/qu/quick-lookup/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation (finalAttrs: { glib-networking ]; - meta = { + meta = with lib; { description = "Simple GTK dictionary application powered by Wiktionary"; homepage = "https://github.com/johnfactotum/quick-lookup"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "quick-lookup"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/qu/quickjs-ng/package.nix b/pkgs/by-name/qu/quickjs-ng/package.nix index 92c0aaa57b5207..e725ce9ba763d0 100644 --- a/pkgs/by-name/qu/quickjs-ng/package.nix +++ b/pkgs/by-name/qu/quickjs-ng/package.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { homepage = "https://github.com/quickjs-ng/quickjs"; description = "Mighty JavaScript engine"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "qjs"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/qu/quicksand/package.nix b/pkgs/by-name/qu/quicksand/package.nix index 106f0bf90550f0..d10be88be3f377 100644 --- a/pkgs/by-name/qu/quicksand/package.nix +++ b/pkgs/by-name/qu/quicksand/package.nix @@ -27,7 +27,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/andrew-paglinawan/QuicksandFamily"; description = "Sans serif font designed using geometric shapes"; longDescription = '' @@ -37,8 +37,8 @@ stdenvNoCC.mkDerivation { sizes as well. Quicksand Family is available in three styles which are Light, Regular and Bold including true italics for each weight. ''; - license = with lib.licenses; [ ofl ]; - maintainers = with lib.maintainers; [ hubble ]; - platforms = lib.platforms.all; + license = with licenses; [ ofl ]; + maintainers = with maintainers; [ hubble ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/qu/quirc/package.nix b/pkgs/by-name/qu/quirc/package.nix index d85f3d3473d3ec..3f56729478fc0f 100644 --- a/pkgs/by-name/qu/quirc/package.nix +++ b/pkgs/by-name/qu/quirc/package.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation (finalAttrs: { ${stdenv.cc.targetPrefix}install_name_tool -id "$dylib" "$dylib" ''; - meta = { + meta = with lib; { description = "Small QR code decoding library"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux ++ [ + license = licenses.isc; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux ++ [ "x86_64-darwin" "aarch64-darwin" ]; diff --git a/pkgs/by-name/qu/quivira/package.nix b/pkgs/by-name/qu/quivira/package.nix index 0649c5972fa525..133d8bf45e9689 100644 --- a/pkgs/by-name/qu/quivira/package.nix +++ b/pkgs/by-name/qu/quivira/package.nix @@ -17,14 +17,14 @@ fetchurl { ''; sha256 = "Hhl+0Oc5DDohOpBbEARMunMYCpr6nn4X6RgpQeEksNo="; - meta = { + meta = with lib; { description = "Free Unicode font in the OpenType format which is supported by every usual office program or printer"; homepage = "http://www.quivira-font.com/"; - license = lib.licenses.publicDomain; - maintainers = [ lib.maintainers.nosewings ]; + license = licenses.publicDomain; + maintainers = [ maintainers.nosewings ]; # From the homepage: "If you try to install Quivira on a Mac, # you will get an error message about the 'post table # usability'." - platforms = lib.filter (platform: !lib.hasInfix "darwin" platform) lib.platforms.all; + platforms = filter (platform: !hasInfix "darwin" platform) platforms.all; }; } diff --git a/pkgs/by-name/r1/r10k/package.nix b/pkgs/by-name/r1/r10k/package.nix index 864f1ea797334f..e66ab5475a8c74 100644 --- a/pkgs/by-name/r1/r10k/package.nix +++ b/pkgs/by-name/r1/r10k/package.nix @@ -36,17 +36,17 @@ bundlerApp { updateScript = bundlerUpdateScript "r10k"; }; - meta = { + meta = with lib; { description = "Puppet environment and module deployment"; homepage = "https://github.com/puppetlabs/r10k"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ zimbatm manveru nicknovitski anthonyroussel ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "r10k"; }; } diff --git a/pkgs/by-name/ra/rabbit/package.nix b/pkgs/by-name/ra/rabbit/package.nix index 4db22b6252515c..9c6e67bebeeadb 100644 --- a/pkgs/by-name/ra/rabbit/package.nix +++ b/pkgs/by-name/ra/rabbit/package.nix @@ -38,11 +38,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "rabbit" ]; - meta = { + meta = with lib; { description = "Tool for identifying bot accounts based on their recent GitHub event history"; homepage = "https://github.com/natarajan-chidambaram/RABBIT"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "rabbit"; - maintainers = with lib.maintainers; [ drupol ]; + maintainers = with maintainers; [ drupol ]; }; } diff --git a/pkgs/by-name/ra/racer/package.nix b/pkgs/by-name/ra/racer/package.nix index 828ac2f48a2cdd..c9090f1975a4ed 100644 --- a/pkgs/by-name/ra/racer/package.nix +++ b/pkgs/by-name/ra/racer/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { patches = [ ./mkdir.patch ]; - meta = { + meta = with lib; { description = "Car racing game"; mainProgram = "racer"; homepage = "http://hippo.nipax.cz/download.en.php"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ra/radiance/package.nix b/pkgs/by-name/ra/radiance/package.nix index 7cc51249f979ec..39f01483dc0268 100644 --- a/pkgs/by-name/ra/radiance/package.nix +++ b/pkgs/by-name/ra/radiance/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation (finalAttrs: { libX11 ]; - meta = { + meta = with lib; { description = "Validated Lighting Simulation Tool"; homepage = "https://github.com/LBNL-ETA/Radiance"; - license = lib.licenses.radiance; - maintainers = with lib.maintainers; [ robwalt ]; + license = licenses.radiance; + maintainers = with maintainers; [ robwalt ]; mainProgram = "rad"; }; }) diff --git a/pkgs/by-name/ra/radicle-httpd/package.nix b/pkgs/by-name/ra/radicle-httpd/package.nix index 3cc50a87bf129f..d01acca0fa8d2e 100644 --- a/pkgs/by-name/ra/radicle-httpd/package.nix +++ b/pkgs/by-name/ra/radicle-httpd/package.nix @@ -58,7 +58,7 @@ rustPlatform.buildRustPackage rec { done ''; - meta = { + meta = with lib; { description = "Radicle JSON HTTP API Daemon"; longDescription = '' A Radicle HTTP daemon exposing a JSON HTTP API that allows someone to browse local @@ -66,13 +66,13 @@ rustPlatform.buildRustPackage rec { ''; homepage = "https://radicle.xyz"; # cargo.toml says MIT and asl20, LICENSE file says GPL3 - license = with lib.licenses; [ + license = with licenses; [ gpl3Only mit asl20 ]; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + platforms = platforms.unix; + maintainers = with maintainers; [ gador lorenzleutgeb ]; diff --git a/pkgs/by-name/ra/railway-wallet/package.nix b/pkgs/by-name/ra/railway-wallet/package.nix index 2a0c890bd63c43..43a6db17c5c3ac 100644 --- a/pkgs/by-name/ra/railway-wallet/package.nix +++ b/pkgs/by-name/ra/railway-wallet/package.nix @@ -12,11 +12,11 @@ appimageTools.wrapType2 rec { hash = "sha256-7Z/1PwmjwbvKsZXncWB60WbGnQVTlSsqcsLy8mN2CI0="; }; - meta = { + meta = with lib; { description = "Private DeFi wallet for Linux"; homepage = "https://www.railway.xyz"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ mitchmindtree ]; + license = licenses.agpl3Only; + maintainers = with maintainers; [ mitchmindtree ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/ra/rain-bittorrent/package.nix b/pkgs/by-name/ra/rain-bittorrent/package.nix index 79d62c351e562b..09bda10d3b6f45 100644 --- a/pkgs/by-name/ra/rain-bittorrent/package.nix +++ b/pkgs/by-name/ra/rain-bittorrent/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-SX686l6fsr3Gm+gyzNUZUSGXwAnxaTvUo/J57N10fmU="; - meta = { + meta = with lib; { description = "BitTorrent client and library in Go"; homepage = "https://github.com/cenkalti/rain"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "rain"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ justinrubek matthewdargan ]; diff --git a/pkgs/by-name/ra/rainbowcrack/package.nix b/pkgs/by-name/ra/rainbowcrack/package.nix index 40ddf8df89633a..f7e97df10bc0f6 100644 --- a/pkgs/by-name/ra/rainbowcrack/package.nix +++ b/pkgs/by-name/ra/rainbowcrack/package.nix @@ -41,13 +41,13 @@ stdenv.mkDerivation rec { runtimeDependencies = [ alglib ]; - meta = { + meta = with lib; { description = "Rainbow table generator used for password cracking"; homepage = "http://project-rainbowcrack.com"; - maintainers = with lib.maintainers; [ tochiaha ]; - license = lib.licenses.unfree; + maintainers = with maintainers; [ tochiaha ]; + license = licenses.unfree; mainProgram = "rcrack"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; platforms = [ "x86_64-linux64" ]; }; } diff --git a/pkgs/by-name/ra/ramfetch/package.nix b/pkgs/by-name/ra/ramfetch/package.nix index d8d1de5c66783f..a68bd73fb7d8d8 100644 --- a/pkgs/by-name/ra/ramfetch/package.nix +++ b/pkgs/by-name/ra/ramfetch/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Tool which displays memory information"; homepage = "https://codeberg.org/jahway603/ramfetch"; - platforms = lib.platforms.linux; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.markbeep ]; + platforms = platforms.linux; + license = licenses.mit; + maintainers = [ maintainers.markbeep ]; mainProgram = "ramfetch"; }; } diff --git a/pkgs/by-name/ra/rana/package.nix b/pkgs/by-name/ra/rana/package.nix index b64214298fe1ad..436981ee423f57 100644 --- a/pkgs/by-name/ra/rana/package.nix +++ b/pkgs/by-name/ra/rana/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-+3QbqAGQzGT4yuGPHmT2BJkcnNmwhLTpQERTl4Ri2bk="; - meta = { + meta = with lib; { description = "Nostr public key mining tool"; homepage = "https://github.com/grunch/rana"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ jigglycrumb ]; + license = licenses.mit; + maintainers = with maintainers; [ jigglycrumb ]; mainProgram = "rana"; }; } diff --git a/pkgs/by-name/ra/ranger/package.nix b/pkgs/by-name/ra/ranger/package.nix index 5017bbd26ac291..a80781778db560 100644 --- a/pkgs/by-name/ra/ranger/package.nix +++ b/pkgs/by-name/ra/ranger/package.nix @@ -70,12 +70,12 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = { + meta = with lib; { description = "File manager with minimalistic curses interface"; homepage = "https://ranger.github.io/"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + platforms = platforms.unix; + maintainers = with maintainers; [ toonn lucasew ]; diff --git a/pkgs/by-name/ra/rapidjson/package.nix b/pkgs/by-name/ra/rapidjson/package.nix index 887beaa630511f..fd86befe507310 100644 --- a/pkgs/by-name/ra/rapidjson/package.nix +++ b/pkgs/by-name/ra/rapidjson/package.nix @@ -74,15 +74,15 @@ stdenv.mkDerivation (finalAttrs: { valgrind ]; - meta = { + meta = with lib; { description = "Fast JSON parser/generator for C++ with both SAX/DOM style API"; homepage = "http://rapidjson.org/"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; + license = licenses.mit; + platforms = platforms.unix; maintainers = [ - lib.maintainers.dotlambda - lib.maintainers.Madouura - lib.maintainers.tobim + maintainers.dotlambda + maintainers.Madouura + maintainers.tobim ]; }; }) diff --git a/pkgs/by-name/ra/rapidsvn/package.nix b/pkgs/by-name/ra/rapidsvn/package.nix index 3d6e5a3c9e1baf..76f293caf70baa 100644 --- a/pkgs/by-name/ra/rapidsvn/package.nix +++ b/pkgs/by-name/ra/rapidsvn/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-std=c++14"; - meta = { + meta = with lib; { description = "Multi-platform GUI front-end for the Subversion revision system"; homepage = "http://rapidsvn.tigris.org/"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "rapidsvn"; }; } diff --git a/pkgs/by-name/ra/rascal/package.nix b/pkgs/by-name/ra/rascal/package.nix index 6f4683d30d2545..f27b21c03128b5 100644 --- a/pkgs/by-name/ra/rascal/package.nix +++ b/pkgs/by-name/ra/rascal/package.nix @@ -26,13 +26,13 @@ stdenv.mkDerivation rec { --add-flags "-jar ${src}" \ ''; - meta = { + meta = with lib; { homepage = "https://www.rascal-mpl.org/"; description = "Command-line REPL for the Rascal metaprogramming language"; mainProgram = "rascal"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.epl10; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.epl10; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ra/rasm/package.nix b/pkgs/by-name/ra/rasm/package.nix index 1d40233a15d951..bcee99e6c2550e 100644 --- a/pkgs/by-name/ra/rasm/package.nix +++ b/pkgs/by-name/ra/rasm/package.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation rec { install -Dt $out/bin rasm ''; - meta = { + meta = with lib; { homepage = "http://rasm.wikidot.com/english-index:home"; description = "Z80 assembler"; mainProgram = "rasm"; # use -n option to display all licenses - license = lib.licenses.mit; # expat version - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.all; + license = licenses.mit; # expat version + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ra/rathole/package.nix b/pkgs/by-name/ra/rathole/package.nix index 19754ba11cdb92..ed968de4add864 100644 --- a/pkgs/by-name/ra/rathole/package.nix +++ b/pkgs/by-name/ra/rathole/package.nix @@ -36,12 +36,12 @@ rustPlatform.buildRustPackage { inherit (nixosTests) rathole; }; - meta = { + meta = with lib; { description = "Reverse proxy for NAT traversal"; homepage = "https://github.com/rapiz1/rathole"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "rathole"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ dit7ya xokdvium ]; diff --git a/pkgs/by-name/ra/ratpoints/package.nix b/pkgs/by-name/ra/ratpoints/package.nix index 8caba2276334f3..3e279ab121c91f 100644 --- a/pkgs/by-name/ra/ratpoints/package.nix +++ b/pkgs/by-name/ra/ratpoints/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { preInstall = ''mkdir -p "$out"/{bin,share,lib,include}''; - meta = { + meta = with lib; { description = "Program to find rational points on hyperelliptic curves"; mainProgram = "ratpoints"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = [ maintainers.raskin ]; + platforms = platforms.unix; homepage = "http://www.mathe2.uni-bayreuth.de/stoll/programs/"; }; } diff --git a/pkgs/by-name/ra/raul/package.nix b/pkgs/by-name/ra/raul/package.nix index 19853fd885f993..55f61e8a57f597 100644 --- a/pkgs/by-name/ra/raul/package.nix +++ b/pkgs/by-name/ra/raul/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation { strictDeps = true; - meta = { + meta = with lib; { description = "C++ utility library primarily aimed at audio/musical applications"; homepage = "http://drobilla.net/software/raul"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ t4ccer ]; - platforms = lib.platforms.unix; + license = licenses.gpl3; + maintainers = with maintainers; [ t4ccer ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ra/raycast/package.nix b/pkgs/by-name/ra/raycast/package.nix index 828ac219fd3075..3c700a7591f405 100644 --- a/pkgs/by-name/ra/raycast/package.nix +++ b/pkgs/by-name/ra/raycast/package.nix @@ -73,11 +73,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { ''; }); - meta = { + meta = with lib; { description = "Control your tools with a few keystrokes"; homepage = "https://raycast.app/"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ + license = licenses.unfree; + maintainers = with maintainers; [ lovesegfault stepbrobd donteatoreo @@ -87,6 +87,6 @@ stdenvNoCC.mkDerivation (finalAttrs: { "aarch64-darwin" "x86_64-darwin" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/ra/raygui/package.nix b/pkgs/by-name/ra/raygui/package.nix index b60693f84e92ae..1c98ed669723c9 100644 --- a/pkgs/by-name/ra/raygui/package.nix +++ b/pkgs/by-name/ra/raygui/package.nix @@ -37,11 +37,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "A simple and easy-to-use immediate-mode gui library"; homepage = "https://github.com/raysan5/raygui"; - license = lib.licenses.zlib; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.unix; + license = licenses.zlib; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ra/raze/package.nix b/pkgs/by-name/ra/raze/package.nix index 7c3228700391d6..29194e334f246e 100644 --- a/pkgs/by-name/ra/raze/package.nix +++ b/pkgs/by-name/ra/raze/package.nix @@ -84,7 +84,7 @@ stdenv.mkDerivation (finalAttrs: { install -Dm644 ../soundfont/raze.sf2 $out/share/raze/soundfonts/raze.sf2 ''; - meta = { + meta = with lib; { description = "Build engine port backed by GZDoom tech"; longDescription = '' Raze is a fork of Build engine games backed by GZDoom tech and combines @@ -92,8 +92,8 @@ stdenv.mkDerivation (finalAttrs: { in a single package. It is also capable of playing Nam and WW2 GI. ''; homepage = "https://github.com/ZDoom/Raze"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ qubitnano ]; + license = licenses.gpl2Only; + maintainers = with maintainers; [ qubitnano ]; mainProgram = "raze"; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/ra/razer-cli/package.nix b/pkgs/by-name/ra/razer-cli/package.nix index 37bf5eedb65cb8..b3967e3f7bf281 100644 --- a/pkgs/by-name/ra/razer-cli/package.nix +++ b/pkgs/by-name/ra/razer-cli/package.nix @@ -32,12 +32,12 @@ python3.pkgs.buildPythonApplication rec { xrdb ]; - meta = { + meta = with lib; { homepage = "https://github.com/LoLei/razer-cli"; description = "Command line interface for controlling Razer devices on Linux"; mainProgram = "razer-cli"; - license = lib.licenses.gpl3Only; - maintainers = [ lib.maintainers.kaylorben ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = [ maintainers.kaylorben ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/rb/rbenv/package.nix b/pkgs/by-name/rb/rbenv/package.nix index 1e69e874f57327..34030e1798b872 100644 --- a/pkgs/by-name/rb/rbenv/package.nix +++ b/pkgs/by-name/rb/rbenv/package.nix @@ -33,16 +33,16 @@ stdenv.mkDerivation (finalAttrs: { installShellCompletion --bash completions/rbenv.bash ''; - meta = { + meta = with lib; { description = "Version manager tool for the Ruby programming language on Unix-like systems"; longDescription = '' Use rbenv to pick a Ruby version for your application and guarantee that your development environment matches production. Put rbenv to work with Bundler for painless Ruby upgrades and bulletproof deployments. ''; homepage = "https://github.com/rbenv/rbenv"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fzakaria ]; + license = licenses.mit; + maintainers = with maintainers; [ fzakaria ]; mainProgram = "rbenv"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/rc/rc/package.nix b/pkgs/by-name/rc/rc/package.nix index c4a964fc369977..7fa6c2575d4e81 100644 --- a/pkgs/by-name/rc/rc/package.nix +++ b/pkgs/by-name/rc/rc/package.nix @@ -100,12 +100,12 @@ stdenv.mkDerivation (finalAttrs: { tests.static = pkgsStatic.rc; }; - meta = { + meta = with lib; { homepage = "https://github.com/rakitzis/rc"; description = "Plan 9 shell"; - license = [ lib.licenses.zlib ]; + license = [ licenses.zlib ]; mainProgram = "rc"; - maintainers = with lib.maintainers; [ ramkromberg ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ ramkromberg ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/rc/rcshist/package.nix b/pkgs/by-name/rc/rcshist/package.nix index f22aaaf7718791..dce3ed98bb76e7 100644 --- a/pkgs/by-name/rc/rcshist/package.nix +++ b/pkgs/by-name/rc/rcshist/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation { sha256 = "01ab3xwgm934lxr8bm758am3vxwx4hxx7cc9prbgqj5nh30vdg1n"; }; - meta = { + meta = with lib; { description = "Utitity to display complete revision history of a set of RCS files"; homepage = "https://invisible-island.net/rcshist/rcshist.html"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.kaction ]; - platforms = lib.platforms.unix; + license = licenses.bsd2; + maintainers = [ maintainers.kaction ]; + platforms = platforms.unix; mainProgram = "rcshist"; }; } diff --git a/pkgs/by-name/rd/rdma-core/package.nix b/pkgs/by-name/rd/rdma-core/package.nix index 815586b35ef8d8..e5fbf4589f23ef 100644 --- a/pkgs/by-name/rd/rdma-core/package.nix +++ b/pkgs/by-name/rd/rdma-core/package.nix @@ -73,11 +73,11 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = { + meta = with lib; { description = "RDMA Core Userspace Libraries and Daemons"; homepage = "https://github.com/linux-rdma/rdma-core"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.markuskowa ]; + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = [ maintainers.markuskowa ]; }; }) diff --git a/pkgs/by-name/rd/rdup/package.nix b/pkgs/by-name/rd/rdup/package.nix index 1649ad98882a37..c6b1b9c9018b1a 100644 --- a/pkgs/by-name/rd/rdup/package.nix +++ b/pkgs/by-name/rd/rdup/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation { pcre ]; - meta = { + meta = with lib; { description = "Only backup program that doesn't make backups"; homepage = "https://github.com/miekg/rdup"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ sternenseemann ]; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/by-name/re/readarr/package.nix b/pkgs/by-name/re/readarr/package.nix index 608ce91a76a599..3852ffb0f7da3b 100644 --- a/pkgs/by-name/re/readarr/package.nix +++ b/pkgs/by-name/re/readarr/package.nix @@ -67,16 +67,16 @@ stdenv.mkDerivation rec { tests.smoke-test = nixosTests.readarr; }; - meta = { + meta = with lib; { description = "Usenet/BitTorrent ebook downloader"; homepage = "https://readarr.com"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ + license = licenses.gpl3; + maintainers = with maintainers; [ jocelynthode devusb ]; mainProgram = "Readarr"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/re/reader/package.nix b/pkgs/by-name/re/reader/package.nix index 2d9d5a16a070fc..8883c36378aae5 100644 --- a/pkgs/by-name/re/reader/package.nix +++ b/pkgs/by-name/re/reader/package.nix @@ -17,12 +17,12 @@ let vendorHash = "sha256-obYdifg3WrTyxgN/VtzgpL31ZOyPNtVT8UDQts0WodQ="; - meta = { + meta = with lib; { description = "Lightweight tool offering better readability of web pages on the CLI"; homepage = "https://github.com/mrusme/reader"; changelog = "https://github.com/mrusme/reader/releases"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ theobori ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ theobori ]; mainProgram = "reader"; }; }; diff --git a/pkgs/by-name/re/readsb/package.nix b/pkgs/by-name/re/readsb/package.nix index 45da067f9758a4..e94592b6231054 100644 --- a/pkgs/by-name/re/readsb/package.nix +++ b/pkgs/by-name/re/readsb/package.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "ADS-B decoder swiss knife"; homepage = "https://github.com/wiedehopf/readsb"; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ wucke13 ]; - platforms = lib.platforms.linux; # uses epoll, hence its linux only + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ wucke13 ]; + platforms = platforms.linux; # uses epoll, hence its linux only }; }) diff --git a/pkgs/by-name/re/readstat/package.nix b/pkgs/by-name/re/readstat/package.nix index 627788996e82bb..0e9f893d56540b 100644 --- a/pkgs/by-name/re/readstat/package.nix +++ b/pkgs/by-name/re/readstat/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "https://github.com/WizardMac/ReadStat"; description = "Command-line tool (+ C library) for converting SAS, Stata, and SPSS files"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ swflint ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ swflint ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/re/realm-studio/package.nix b/pkgs/by-name/re/realm-studio/package.nix index 99ab1e990288db..81c7a4d095a832 100644 --- a/pkgs/by-name/re/realm-studio/package.nix +++ b/pkgs/by-name/re/realm-studio/package.nix @@ -25,12 +25,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Visual tool to view, edit, and model Realm databases."; homepage = "https://www.mongodb.com/docs/atlas/device-sdks/studio/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ matteopacini ]; - platforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.asl20; + maintainers = with maintainers; [ matteopacini ]; + platforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/re/realvnc-vnc-viewer/package.nix b/pkgs/by-name/re/realvnc-vnc-viewer/package.nix index 5c769651e219e4..5c06548a305ae8 100644 --- a/pkgs/by-name/re/realvnc-vnc-viewer/package.nix +++ b/pkgs/by-name/re/realvnc-vnc-viewer/package.nix @@ -7,20 +7,20 @@ let pname = "realvnc-vnc-viewer"; version = "7.12.1"; - meta = { + meta = with lib; { description = "VNC remote desktop client software by RealVNC"; homepage = "https://www.realvnc.com/en/connect/download/viewer/"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = { fullName = "VNC Connect End User License Agreement"; url = "https://static.realvnc.com/media/documents/LICENSE-4.0a_en.pdf"; free = false; }; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ emilytrau onedragon ]; - platforms = [ "x86_64-linux" ] ++ lib.platforms.darwin; + platforms = [ "x86_64-linux" ] ++ platforms.darwin; mainProgram = "vncviewer"; }; in diff --git a/pkgs/by-name/re/reco/package.nix b/pkgs/by-name/re/reco/package.nix index 27742087dc43f5..de351b33eed1d3 100644 --- a/pkgs/by-name/re/reco/package.nix +++ b/pkgs/by-name/re/reco/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation (finalAttrs: { mesonFlags = [ (lib.mesonBool "use_submodule" false) ]; - meta = { + meta = with lib; { description = "Audio recorder focused on being concise and simple to use"; homepage = "https://github.com/ryonakano/reco"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "com.github.ryonakano.reco"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/re/recordbox/package.nix b/pkgs/by-name/re/recordbox/package.nix index 57b68097a0ee85..aaeffb15232b1a 100644 --- a/pkgs/by-name/re/recordbox/package.nix +++ b/pkgs/by-name/re/recordbox/package.nix @@ -99,12 +99,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Relatively simple music player"; homepage = "https://codeberg.org/edestcroix/Recordbox"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ getchoo ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ getchoo ]; mainProgram = "recordbox"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/re/rectangle-pro/package.nix b/pkgs/by-name/re/rectangle-pro/package.nix index bbb74cbb57fd25..e171d089e6cd0a 100644 --- a/pkgs/by-name/re/rectangle-pro/package.nix +++ b/pkgs/by-name/re/rectangle-pro/package.nix @@ -27,13 +27,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { changelog = "https://rectangleapp.com/pro/versions"; description = "Move and resize windows in macOS using keyboard shortcuts or snap areas"; homepage = "https://rectangleapp.com/pro"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ emilytrau ]; - platforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = with maintainers; [ emilytrau ]; + platforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/re/redact/package.nix b/pkgs/by-name/re/redact/package.nix index f635684222a75b..ca3becabc9752d 100644 --- a/pkgs/by-name/re/redact/package.nix +++ b/pkgs/by-name/re/redact/package.nix @@ -48,13 +48,13 @@ appimageTools.wrapType2 { fi ''; - meta = { + meta = with lib; { description = "The only platform that allows you to automatically clean up your old posts from services like Twitter, Reddit, Facebook, Discord, and more, all in one place."; homepage = "https://redact.dev/"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ reputable2772 ]; + license = licenses.unfree; + maintainers = with maintainers; [ reputable2772 ]; mainProgram = "redact"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/re/redir/package.nix b/pkgs/by-name/re/redir/package.nix index f69650db085e32..f5ee35823f47d4 100644 --- a/pkgs/by-name/re/redir/package.nix +++ b/pkgs/by-name/re/redir/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = { + meta = with lib; { description = "TCP port redirector for UNIX"; homepage = "https://github.com/troglobit/redir"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "redir"; }; } diff --git a/pkgs/by-name/re/redisinsight/package.nix b/pkgs/by-name/re/redisinsight/package.nix index 2c2f4bd345b665..bfa116d573bc53 100644 --- a/pkgs/by-name/re/redisinsight/package.nix +++ b/pkgs/by-name/re/redisinsight/package.nix @@ -158,13 +158,13 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = { + meta = with lib; { description = "RedisInsight Redis client powered by Electron"; homepage = "https://github.com/RedisInsight/RedisInsight"; - license = lib.licenses.sspl; - maintainers = with lib.maintainers; [ + license = licenses.sspl; + maintainers = with maintainers; [ tomasajt ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/re/redo/package.nix b/pkgs/by-name/re/redo/package.nix index 8e3e138501e96e..520cf770fabfff 100644 --- a/pkgs/by-name/re/redo/package.nix +++ b/pkgs/by-name/re/redo/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation { package/export $out/ ''; - meta = { + meta = with lib; { homepage = "https://github.com/jdebp/redo"; description = "System for building target files from source files"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ momeemt ]; + license = licenses.bsd2; + maintainers = with maintainers; [ momeemt ]; mainProgram = "redo"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/re/redoc-cli/package.nix b/pkgs/by-name/re/redoc-cli/package.nix index 15d3e4f84dad7d..9be0a9e4a7efb5 100644 --- a/pkgs/by-name/re/redoc-cli/package.nix +++ b/pkgs/by-name/re/redoc-cli/package.nix @@ -25,12 +25,12 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = { + meta = with lib; { description = "OpenAPI/Swagger-generated API Reference Documentation"; homepage = "https://github.com/Redocly/redoc/tree/redoc-cli/cli"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "redoc-cli"; - maintainers = with lib.maintainers; [ veehaitch ]; + maintainers = with maintainers; [ veehaitch ]; # https://github.com/NixOS/nixpkgs/issues/272217 broken = true; }; diff --git a/pkgs/by-name/re/redocly/package.nix b/pkgs/by-name/re/redocly/package.nix index 1e4f43b3b4d894..f54c7a5742a88e 100644 --- a/pkgs/by-name/re/redocly/package.nix +++ b/pkgs/by-name/re/redocly/package.nix @@ -46,12 +46,12 @@ buildNpmPackage rec { }; }; - meta = { + meta = with lib; { changelog = "https://redocly.com/docs/cli/changelog/"; description = "Makes OpenAPI easy. Lint/validate to any standard, generate beautiful docs, and more"; homepage = "https://github.com/Redocly/redocly-cli"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "redocly"; - maintainers = with lib.maintainers; [ szlend ]; + maintainers = with maintainers; [ szlend ]; }; } diff --git a/pkgs/by-name/re/redsocks/package.nix b/pkgs/by-name/re/redsocks/package.nix index cc63ba8bd3d47d..cdae2df74bb580 100644 --- a/pkgs/by-name/re/redsocks/package.nix +++ b/pkgs/by-name/re/redsocks/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { buildInputs = [ libevent ]; - meta = { + meta = with lib; { description = "Transparent redirector of any TCP connection to proxy"; homepage = "https://darkk.net.ru/redsocks/"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.ekleog ]; - platforms = lib.platforms.linux; + license = licenses.asl20; + maintainers = [ maintainers.ekleog ]; + platforms = platforms.linux; mainProgram = "redsocks"; }; } diff --git a/pkgs/by-name/re/redstore/package.nix b/pkgs/by-name/re/redstore/package.nix index 56f4b21ee8f61e..2283ef66131338 100644 --- a/pkgs/by-name/re/redstore/package.nix +++ b/pkgs/by-name/re/redstore/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { ) ''; - meta = { + meta = with lib; { description = "HTTP interface to Redland RDF store"; mainProgram = "redstore"; homepage = "https://www.aelius.com/njh/redstore/"; - maintainers = [ lib.maintainers.raskin ]; - platforms = with lib.platforms; linux ++ freebsd ++ gnu; - license = lib.licenses.gpl3Plus; + maintainers = [ maintainers.raskin ]; + platforms = with platforms; linux ++ freebsd ++ gnu; + license = licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/re/remake/package.nix b/pkgs/by-name/re/remake/package.nix index baca92f494ffe8..ed31a18bf2532c 100644 --- a/pkgs/by-name/re/remake/package.nix +++ b/pkgs/by-name/re/remake/package.nix @@ -30,13 +30,13 @@ stdenv.mkDerivation rec { # make check fails, see https://github.com/rocky/remake/issues/117 - meta = { + meta = with lib; { homepage = "https://bashdb.sourceforge.net/remake/"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; description = "GNU Make with comprehensible tracing and a debugger"; mainProgram = "remake"; - platforms = with lib.platforms; linux ++ darwin; - maintainers = with lib.maintainers; [ + platforms = with platforms; linux ++ darwin; + maintainers = with maintainers; [ bjornfor shamilton ]; diff --git a/pkgs/by-name/re/renameutils/package.nix b/pkgs/by-name/re/renameutils/package.nix index 77180071f16823..eb75c0afedd022 100644 --- a/pkgs/by-name/re/renameutils/package.nix +++ b/pkgs/by-name/re/renameutils/package.nix @@ -34,10 +34,10 @@ stdenv.mkDerivation rec { export ac_cv_func_lstat64=no ''; - meta = { + meta = with lib; { homepage = "https://www.nongnu.org/renameutils/"; description = "Set of programs to make renaming of files faster"; - platforms = lib.platforms.unix; - license = lib.licenses.gpl2Plus; + platforms = platforms.unix; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/re/renderdoc/package.nix b/pkgs/by-name/re/renderdoc/package.nix index 18fe501df5cc77..70805415a49d5a 100644 --- a/pkgs/by-name/re/renderdoc/package.nix +++ b/pkgs/by-name/re/renderdoc/package.nix @@ -126,7 +126,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://renderdoc.org/"; description = "Single-frame graphics debugger"; longDescription = '' @@ -135,9 +135,9 @@ stdenv.mkDerivation (finalAttrs: { of any application using Vulkan, D3D11, OpenGL or D3D12 across Windows 7 - 10, Linux or Android. ''; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "renderdoccmd"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.intersectLists lib.platforms.linux (lib.platforms.x86_64 ++ lib.platforms.i686); + maintainers = with maintainers; [ AndersonTorres ]; + platforms = intersectLists platforms.linux (platforms.x86_64 ++ platforms.i686); }; }) diff --git a/pkgs/by-name/re/renode/package.nix b/pkgs/by-name/re/renode/package.nix index 888f29cfb5ac77..a7f9db707822ac 100644 --- a/pkgs/by-name/re/renode/package.nix +++ b/pkgs/by-name/re/renode/package.nix @@ -89,11 +89,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Virtual development framework for complex embedded systems"; homepage = "https://renode.io"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ otavio ]; + license = licenses.bsd3; + maintainers = with maintainers; [ otavio ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/by-name/re/renpy/package.nix b/pkgs/by-name/re/renpy/package.nix index 9bba63ce1c43fc..07c95a64e5f1e7 100644 --- a/pkgs/by-name/re/renpy/package.nix +++ b/pkgs/by-name/re/renpy/package.nix @@ -126,14 +126,14 @@ stdenv.mkDerivation { env.NIX_CFLAGS_COMPILE = with python311.pkgs; "-I${pygame-sdl2}/include/${python.libPrefix}"; - meta = { + meta = with lib; { description = "Visual Novel Engine"; mainProgram = "renpy"; homepage = "https://renpy.org/"; changelog = "https://renpy.org/doc/html/changelog.html"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ shadowrz ]; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ shadowrz ]; }; passthru = { diff --git a/pkgs/by-name/re/rep-gtk/package.nix b/pkgs/by-name/re/rep-gtk/package.nix index a4aac2e74b8f72..246742a8633ea2 100644 --- a/pkgs/by-name/re/rep-gtk/package.nix +++ b/pkgs/by-name/re/rep-gtk/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation (finalAttrs: { sed -e 's|installdir=$(repexecdir)|installdir=$(libdir)/rep|g' -i Makefile.in ''; - meta = { + meta = with lib; { homepage = "http://sawfish.tuxfamily.org"; description = "GTK bindings for librep"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.AndersonTorres ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = [ maintainers.AndersonTorres ]; + platforms = platforms.unix; }; }) # TODO: investigate fetchFromGithub diff --git a/pkgs/by-name/re/reposurgeon/package.nix b/pkgs/by-name/re/reposurgeon/package.nix index aec51ab75d221e..9d9ae44a3180ca 100644 --- a/pkgs/by-name/re/reposurgeon/package.nix +++ b/pkgs/by-name/re/reposurgeon/package.nix @@ -33,11 +33,11 @@ buildGoModule rec { make install prefix=$out HTMLFILES= ''; - meta = { + meta = with lib; { description = "Tool for editing version-control repository history"; - license = lib.licenses.bsd3; + license = licenses.bsd3; homepage = "http://www.catb.org/esr/reposurgeon/"; - maintainers = with lib.maintainers; [ dfoxfranke ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ dfoxfranke ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/re/repseek/package.nix b/pkgs/by-name/re/repseek/package.nix index 90c306f66a8897..b45ef147a26cc8 100644 --- a/pkgs/by-name/re/repseek/package.nix +++ b/pkgs/by-name/re/repseek/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { substituteInPlace Makefile --replace "MACHINE = MACOSX" "MACHINE = LINUX" ''; - meta = { + meta = with lib; { description = "Tool to retrieve approximate repeats from large DNA sequences"; mainProgram = "repseek"; homepage = "https://bioinfo.mnhn.fr/abi/public/RepSeek"; - maintainers = [ lib.maintainers.bzizou ]; - license = lib.licenses.lgpl21; + maintainers = [ maintainers.bzizou ]; + license = licenses.lgpl21; }; } diff --git a/pkgs/by-name/re/reptyr/package.nix b/pkgs/by-name/re/reptyr/package.nix index 88b1b6f2e2833d..303692c319a1a6 100644 --- a/pkgs/by-name/re/reptyr/package.nix +++ b/pkgs/by-name/re/reptyr/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { "PYTHON_CMD=${python.interpreter}" ]; - meta = { + meta = with lib; { platforms = [ "i686-linux" "x86_64-linux" @@ -46,8 +46,8 @@ stdenv.mkDerivation rec { "aarch64-linux" "riscv64-linux" ]; - maintainers = with lib.maintainers; [ raskin ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ raskin ]; + license = licenses.mit; description = "Reparent a running program to a new terminal"; mainProgram = "reptyr"; homepage = "https://github.com/nelhage/reptyr"; diff --git a/pkgs/by-name/re/resnap/package.nix b/pkgs/by-name/re/resnap/package.nix index a276cc4bca2a30..0a0ae6ac2a5e26 100644 --- a/pkgs/by-name/re/resnap/package.nix +++ b/pkgs/by-name/re/resnap/package.nix @@ -44,11 +44,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { --suffix PATH : "${lib.makeBinPath finalAttrs.runtimeInputs}" ''; - meta = { + meta = with lib; { description = "Take screnshots of your reMarkable tablet over SSH"; homepage = "https://github.com/cloudsftp/reSnap"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ _404wolf ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ _404wolf ]; mainProgram = "reSnap"; }; }) diff --git a/pkgs/by-name/re/resorter/package.nix b/pkgs/by-name/re/resorter/package.nix index a575e12b1505a3..39e51073332939 100644 --- a/pkgs/by-name/re/resorter/package.nix +++ b/pkgs/by-name/re/resorter/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Tool to sort a list of items based on pairwise comparisons"; homepage = "https://github.com/hiAndrewQuinn/resorter"; - license = with lib.licenses; [ cc0 ]; + license = with licenses; [ cc0 ]; mainProgram = "resorter"; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/re/restman/package.nix b/pkgs/by-name/re/restman/package.nix index e36aa81cf31c2f..4aed1c43fbe8d8 100644 --- a/pkgs/by-name/re/restman/package.nix +++ b/pkgs/by-name/re/restman/package.nix @@ -35,11 +35,11 @@ buildGoModule rec { }; }; - meta = { + meta = with lib; { description = "CLI for streamlined RESTful API testing and management"; homepage = "https://github.com/jackMort/Restman"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ kashw2 ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ kashw2 ]; mainProgram = "restman"; }; } diff --git a/pkgs/by-name/re/reveal-md/package.nix b/pkgs/by-name/re/reveal-md/package.nix index 1489e1fe9b7070..bb57df8f851049 100644 --- a/pkgs/by-name/re/reveal-md/package.nix +++ b/pkgs/by-name/re/reveal-md/package.nix @@ -33,11 +33,11 @@ buildNpmPackage rec { runHook postCheck ''; - meta = { + meta = with lib; { description = "Get beautiful reveal.js presentations from your Markdown files"; mainProgram = "reveal-md"; homepage = "https://github.com/webpro/reveal-md"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sagikazarmark ]; + license = licenses.mit; + maintainers = with maintainers; [ sagikazarmark ]; }; } diff --git a/pkgs/by-name/re/revpfw3/package.nix b/pkgs/by-name/re/revpfw3/package.nix index 25c90f818f00bd..655eb358270475 100644 --- a/pkgs/by-name/re/revpfw3/package.nix +++ b/pkgs/by-name/re/revpfw3/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-D+9269WRCvpohyhrl6wkzalV7wPsJE38hSviTU2CNyg="; - meta = { + meta = with lib; { description = "Reverse proxy to bypass the need for port forwarding"; homepage = "https://git.tudbut.de/tudbut/revpfw3"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tudbut ]; + license = licenses.mit; + maintainers = with maintainers; [ tudbut ]; mainProgram = "revpfw3"; }; } diff --git a/pkgs/by-name/re/rewind-ai/package.nix b/pkgs/by-name/re/rewind-ai/package.nix index d1ca6ddf53898f..22d52735a3777e 100644 --- a/pkgs/by-name/re/rewind-ai/package.nix +++ b/pkgs/by-name/re/rewind-ai/package.nix @@ -70,13 +70,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { ''; }); - meta = { + meta = with lib; { changelog = "https://www.rewind.ai/changelog"; description = "Rewind is a personalized AI powered by everything you've seen, said, or heard"; homepage = "https://www.rewind.ai/"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ donteatoreo ]; + license = licenses.unfree; + maintainers = with maintainers; [ donteatoreo ]; platforms = [ "aarch64-darwin" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/re/rex/package.nix b/pkgs/by-name/re/rex/package.nix index 881a30c23f1b4d..ea8a5a8980220e 100644 --- a/pkgs/by-name/re/rex/package.nix +++ b/pkgs/by-name/re/rex/package.nix @@ -99,10 +99,10 @@ perlPackages.buildPerlPackage rec { installShellCompletion --name rex --bash ./share/rex-tab-completion.bash ''; - meta = { + meta = with lib; { homepage = "https://www.rexify.org"; description = "Friendly automation framework"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ qbit ]; + license = licenses.asl20; + maintainers = with maintainers; [ qbit ]; }; } diff --git a/pkgs/by-name/rf/rfdump/package.nix b/pkgs/by-name/rf/rfdump/package.nix index de56661d8e0ffc..2047913b443d7d 100644 --- a/pkgs/by-name/rf/rfdump/package.nix +++ b/pkgs/by-name/rf/rfdump/package.nix @@ -65,13 +65,13 @@ stdenv.mkDerivation rec { makeFlags = [ "LIBS=-lexpat" ]; - meta = { + meta = with lib; { description = "Tool to detect RFID-Tags and show their meta information"; homepage = "https://www.rfdump.org/"; changelog = "https://salsa.debian.org/pkg-security-team/rfdump/-/blob/debian/master/ChangeLog"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ tochiaha ]; + license = licenses.gpl2Only; + maintainers = with maintainers; [ tochiaha ]; mainProgram = "rfdump"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/rh/rhvoice/package.nix b/pkgs/by-name/rh/rhvoice/package.nix index cb0d6d020b6ac5..6531aa94bd7c62 100644 --- a/pkgs/by-name/rh/rhvoice/package.nix +++ b/pkgs/by-name/rh/rhvoice/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { speechd-minimal ]; - meta = { + meta = with lib; { description = "Free and open source speech synthesizer for Russian language and others"; homepage = "https://github.com/Olga-Yakovleva/RHVoice/wiki"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ berce ]; - platforms = with lib.platforms; all; + license = licenses.gpl3; + maintainers = with maintainers; [ berce ]; + platforms = with platforms; all; mainProgram = "RHVoice-test"; }; } diff --git a/pkgs/by-name/ri/rig/package.nix b/pkgs/by-name/ri/rig/package.nix index f2b5cddca3739d..285be43245952a 100644 --- a/pkgs/by-name/ri/rig/package.nix +++ b/pkgs/by-name/ri/rig/package.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { makeFlags = [ "CXX=${stdenv.cc.targetPrefix}c++" ]; - meta = { + meta = with lib; { homepage = "https://rig.sourceforge.net/"; description = "Random identity generator"; longDescription = '' @@ -30,9 +30,9 @@ stdenv.mkDerivation rec { if the Web site/BBS/person you are giving the information to tries to cross-check the city, state, zip, or area code, it will check out. ''; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ tomberek ]; - platforms = with lib.platforms; all; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ tomberek ]; + platforms = with platforms; all; mainProgram = "rig"; }; } diff --git a/pkgs/by-name/ri/rigel-engine/package.nix b/pkgs/by-name/ri/rigel-engine/package.nix index 74b0e08d35f52c..a11888f67df10a 100644 --- a/pkgs/by-name/ri/rigel-engine/package.nix +++ b/pkgs/by-name/ri/rigel-engine/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation { "-Wno-dev" ] ++ lib.optional buildOpenGLES "-DUSE_GL_ES=ON"; - meta = { + meta = with lib; { description = "Modern re-implementation of the classic DOS game Duke Nukem II"; homepage = "https://github.com/lethal-guitar/RigelEngine"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ keenanweaver ]; + license = licenses.gpl2Only; + maintainers = with maintainers; [ keenanweaver ]; mainProgram = "RigelEngine"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ri/rili/package.nix b/pkgs/by-name/ri/rili/package.nix index 73fdac61ca7e27..31e435da935f2a 100644 --- a/pkgs/by-name/ri/rili/package.nix +++ b/pkgs/by-name/ri/rili/package.nix @@ -37,17 +37,17 @@ stdenv.mkDerivation rec { SDL_mixer ]; - meta = { + meta = with lib; { homepage = "https://ri-li.sourceforge.net"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; description = "Children's train game"; longDescription = '' Ri-li is an arcade game licensed under the GPL (General Public License). You drive a toy wood engine in many levels and you must collect all the coaches to win. ''; - maintainers = with lib.maintainers; [ jcumming ]; - platforms = with lib.platforms; linux; + maintainers = with maintainers; [ jcumming ]; + platforms = with platforms; linux; mainProgram = "Ri_li"; }; } diff --git a/pkgs/by-name/ri/rime-ls/package.nix b/pkgs/by-name/ri/rime-ls/package.nix index ec6260e7b101ae..883584a67aed69 100644 --- a/pkgs/by-name/ri/rime-ls/package.nix +++ b/pkgs/by-name/ri/rime-ls/package.nix @@ -26,12 +26,12 @@ rustPlatform.buildRustPackage rec { # Set RIME_DATA_DIR to work around test_get_candidates during checkPhase env.RIME_DATA_DIR = "${rime-data}/share/rime-data"; - meta = { + meta = with lib; { description = "Language server for Rime input method engine"; homepage = "https://github.com/wlh320/rime-ls"; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ definfo ]; + license = licenses.bsd3; + platforms = platforms.linux; + maintainers = with maintainers; [ definfo ]; mainProgram = "rime_ls"; }; } diff --git a/pkgs/by-name/ri/rime-zhwiki/package.nix b/pkgs/by-name/ri/rime-zhwiki/package.nix index 95fba1f22899ea..8e8b5f527bfeff 100644 --- a/pkgs/by-name/ri/rime-zhwiki/package.nix +++ b/pkgs/by-name/ri/rime-zhwiki/package.nix @@ -21,13 +21,13 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { - maintainers = with lib.maintainers; [ xddxdd ]; + meta = with lib; { + maintainers = with maintainers; [ xddxdd ]; description = "RIME dictionary file for entries from zh.wikipedia.org"; homepage = "https://github.com/felixonmars/fcitx5-pinyin-zhwiki"; license = [ - lib.licenses.fdl13Plus - lib.licenses.cc-by-sa-40 + licenses.fdl13Plus + licenses.cc-by-sa-40 ]; }; } diff --git a/pkgs/by-name/ri/ringfairy/package.nix b/pkgs/by-name/ri/ringfairy/package.nix index 3610062207dcf7..e0cc05c2850ffb 100644 --- a/pkgs/by-name/ri/ringfairy/package.nix +++ b/pkgs/by-name/ri/ringfairy/package.nix @@ -32,11 +32,11 @@ rustPlatform.buildRustPackage { ] ); - meta = { + meta = with lib; { description = "Static webring generator in Rust"; homepage = "https://github.com/k3rs3d/ringfairy"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ uncenter ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ uncenter ]; mainProgram = "ringfairy"; }; } diff --git a/pkgs/by-name/ri/rip2/package.nix b/pkgs/by-name/ri/rip2/package.nix index ab354bbc64c56f..468e20aa3a10ef 100644 --- a/pkgs/by-name/ri/rip2/package.nix +++ b/pkgs/by-name/ri/rip2/package.nix @@ -39,11 +39,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Safe and ergonomic alternative to rm"; homepage = "https://github.com/MilesCranmer/rip2"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ milescranmer matthiasbeyer ]; diff --git a/pkgs/by-name/ri/ripasso-cursive/package.nix b/pkgs/by-name/ri/ripasso-cursive/package.nix index 445f08998c75d5..7805486fe5f7f8 100644 --- a/pkgs/by-name/ri/ripasso-cursive/package.nix +++ b/pkgs/by-name/ri/ripasso-cursive/package.nix @@ -73,12 +73,12 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Simple password manager written in Rust"; mainProgram = "ripasso-cursive"; homepage = "https://github.com/cortex/ripasso"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ sgo ]; - platforms = lib.platforms.unix; + license = licenses.gpl3; + maintainers = with maintainers; [ sgo ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ri/rippkgs/package.nix b/pkgs/by-name/ri/rippkgs/package.nix index 16025b2e159cf2..f018c4b6103d5f 100644 --- a/pkgs/by-name/ri/rippkgs/package.nix +++ b/pkgs/by-name/ri/rippkgs/package.nix @@ -27,11 +27,11 @@ rustPlatform.buildRustPackage rec { sqlite ]; - meta = { + meta = with lib; { description = "CLI for indexing and searching packages in Nix expressions"; homepage = "https://github.com/replit/rippkgs"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ cdmistman ]; + license = licenses.mit; + maintainers = with maintainers; [ cdmistman ]; mainProgram = "rippkgs"; }; } diff --git a/pkgs/by-name/ri/ripser/package.nix b/pkgs/by-name/ri/ripser/package.nix index 204f8a0f02443b..42105b6ce04ab2 100644 --- a/pkgs/by-name/ri/ripser/package.nix +++ b/pkgs/by-name/ri/ripser/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation { cp ripser $out/bin ''; - meta = { + meta = with lib; { description = "Lean C++ code for the computation of Vietoris–Rips persistence barcodes"; mainProgram = "ripser"; homepage = "https://github.com/Ripser/ripser"; - license = lib.licenses.lgpl3; - maintainers = with lib.maintainers; [ erikryb ]; - platforms = lib.platforms.linux; + license = licenses.lgpl3; + maintainers = with maintainers; [ erikryb ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ri/riscv-pk/package.nix b/pkgs/by-name/ri/riscv-pk/package.nix index 95d8d77dbe36be..0fe8584a1ee5ed 100644 --- a/pkgs/by-name/ri/riscv-pk/package.nix +++ b/pkgs/by-name/ri/riscv-pk/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation { rmdir $out/.cleanup ''; - meta = { + meta = with lib; { description = "RISC-V Proxy Kernel and Bootloader"; homepage = "https://github.com/riscv/riscv-pk"; - license = lib.licenses.bsd3; - platforms = lib.platforms.riscv; - maintainers = [ lib.maintainers.shlevy ]; + license = licenses.bsd3; + platforms = platforms.riscv; + maintainers = [ maintainers.shlevy ]; }; } diff --git a/pkgs/by-name/ri/river-bnf/package.nix b/pkgs/by-name/ri/river-bnf/package.nix index fa8f0b58c8f383..7e6cf4cf1bfae8 100644 --- a/pkgs/by-name/ri/river-bnf/package.nix +++ b/pkgs/by-name/ri/river-bnf/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Switch back'n'forth between river tags"; homepage = "https://git.sr.ht/~leon_plickat/river-bnf"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ adamcstephens ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ adamcstephens ]; mainProgram = "river-bnf"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ri/river-bsp-layout/package.nix b/pkgs/by-name/ri/river-bsp-layout/package.nix index a5c64c60fe6ab1..a62613aa468b6d 100644 --- a/pkgs/by-name/ri/river-bsp-layout/package.nix +++ b/pkgs/by-name/ri/river-bsp-layout/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-CtVyRwfIS8R48LUecKXoak+HHB5yNZ5RgguIWOhyFA8="; - meta = { + meta = with lib; { homepage = "https://github.com/areif-dev/river-bsp-layout"; description = "Binary space partition / grid layout manager for River WM"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ areif-dev ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ areif-dev ]; mainProgram = "river-bsp-layout"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/rl/rlog/package.nix b/pkgs/by-name/rl/rlog/package.nix index 22e2d659e244e0..22c94f5be0026b 100644 --- a/pkgs/by-name/rl/rlog/package.nix +++ b/pkgs/by-name/rl/rlog/package.nix @@ -13,10 +13,10 @@ stdenv.mkDerivation rec { sha256 = "0y9zg0pd7vmnskwac1qdyzl282z7kb01nmn57lsg2mjdxgnywf59"; }; - meta = { + meta = with lib; { homepage = "https://www.arg0.net/rlog"; description = "C++ logging library used in encfs"; - platforms = lib.platforms.linux; - license = lib.licenses.lgpl3; + platforms = platforms.linux; + license = licenses.lgpl3; }; } diff --git a/pkgs/by-name/rn/rnnoise/package.nix b/pkgs/by-name/rn/rnnoise/package.nix index 96127916b5ccad..cdf2f9d78bc15a 100644 --- a/pkgs/by-name/rn/rnnoise/package.nix +++ b/pkgs/by-name/rn/rnnoise/package.nix @@ -86,12 +86,12 @@ stdenv.mkDerivation (finalAttrs: { "$modelJson" | sponge "$modelJson" ''; - meta = { + meta = with lib; { description = "Recurrent neural network for audio noise reduction"; homepage = "https://people.xiph.org/~jm/demo/rnnoise/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ nh2 ]; + license = licenses.bsd3; + maintainers = with maintainers; [ nh2 ]; mainProgram = "rnnoise_demo"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ro/robotfindskitten/package.nix b/pkgs/by-name/ro/robotfindskitten/package.nix index 327b0aca626b3e..2fb177c51dca1b 100644 --- a/pkgs/by-name/ro/robotfindskitten/package.nix +++ b/pkgs/by-name/ro/robotfindskitten/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation (finalAttrs: { install -Dm644 nki/vanilla.nki -t $out/share/games/robotfindskitten/ ''; - meta = { + meta = with lib; { description = "Yet another zen simulation; A simple find-the-kitten game"; homepage = "http://robotfindskitten.org/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "robotfindskitten"; - maintainers = [ lib.maintainers.AndersonTorres ]; - platforms = lib.platforms.unix; + maintainers = [ maintainers.AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ro/roboto-flex/package.nix b/pkgs/by-name/ro/roboto-flex/package.nix index 22d0d854adaca4..d67f3c2339ad8f 100644 --- a/pkgs/by-name/ro/roboto-flex/package.nix +++ b/pkgs/by-name/ro/roboto-flex/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/googlefonts/roboto-flex"; description = "Google Roboto Flex family of fonts"; - license = lib.licenses.ofl; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.romildo ]; + license = licenses.ofl; + platforms = platforms.all; + maintainers = [ maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ro/roboto/package.nix b/pkgs/by-name/ro/roboto/package.nix index b2b7880f9726a4..da1232d93e8931 100644 --- a/pkgs/by-name/ro/roboto/package.nix +++ b/pkgs/by-name/ro/roboto/package.nix @@ -38,7 +38,7 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/google/roboto"; description = "Roboto family of fonts"; longDescription = '' @@ -46,8 +46,8 @@ stdenvNoCC.mkDerivation rec { Chrome OS, and the recommended font for Google’s visual language, Material Design. ''; - license = lib.licenses.asl20; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.romildo ]; + license = licenses.asl20; + platforms = platforms.all; + maintainers = [ maintainers.romildo ]; }; } diff --git a/pkgs/by-name/ro/roccat-tools/package.nix b/pkgs/by-name/ro/roccat-tools/package.nix index 6bf02cbf351bda..31438b39c6861e 100644 --- a/pkgs/by-name/ro/roccat-tools/package.nix +++ b/pkgs/by-name/ro/roccat-tools/package.nix @@ -68,10 +68,10 @@ stdenv.mkDerivation rec { "-fcommon" ]; - meta = { + meta = with lib; { description = "Tools to configure ROCCAT devices"; homepage = "https://roccat.sourceforge.net/"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Plus; + platforms = platforms.linux; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/ro/roddhjav-apparmor-rules/package.nix b/pkgs/by-name/ro/roddhjav-apparmor-rules/package.nix index efe2cdb64926fd..87d110fd01a74c 100644 --- a/pkgs/by-name/ro/roddhjav-apparmor-rules/package.nix +++ b/pkgs/by-name/ro/roddhjav-apparmor-rules/package.nix @@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/roddhjav/apparmor.d"; description = "Over 1500 AppArmor profiles aiming to confine most linux processes"; longDescription = '' @@ -38,9 +38,9 @@ stdenvNoCC.mkDerivation { If your DE is not listed in https://github.com/roddhjav/apparmor.d Do not use this, else it may break your system. ''; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ johnrtitor ]; }; diff --git a/pkgs/by-name/ro/rofi-obsidian/package.nix b/pkgs/by-name/ro/rofi-obsidian/package.nix index ba5da277074972..66ba78e077f31c 100644 --- a/pkgs/by-name/ro/rofi-obsidian/package.nix +++ b/pkgs/by-name/ro/rofi-obsidian/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-hAiBSAvnMRchH49bku2oPhoCK3+bcWiZW4YbcMuAiqU="; - meta = { + meta = with lib; { description = "Launch your Obsidian vaults from the comfort of rofi"; homepage = "https://github.com/Nydragon/rofi-obsidian"; - license = lib.licenses.unlicense; - maintainers = with lib.maintainers; [ nydragon ]; + license = licenses.unlicense; + maintainers = with maintainers; [ nydragon ]; mainProgram = "rofi-obsidian"; }; } diff --git a/pkgs/by-name/ro/rofi-screenshot/package.nix b/pkgs/by-name/ro/rofi-screenshot/package.nix index b37ebb5895becc..cb39038d560079 100644 --- a/pkgs/by-name/ro/rofi-screenshot/package.nix +++ b/pkgs/by-name/ro/rofi-screenshot/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { install -Dm755 ${pname} $out/bin/${pname} ''; - meta = { + meta = with lib; { description = "Use rofi to perform various types of screenshots and screen captures"; mainProgram = "rofi-screenshot"; homepage = "https://github.com/ceuk/rofi-screenshot"; - maintainers = with lib.maintainers; [ zopieux ]; - platforms = lib.platforms.all; - license = lib.licenses.wtfpl; + maintainers = with maintainers; [ zopieux ]; + platforms = platforms.all; + license = licenses.wtfpl; }; } diff --git a/pkgs/by-name/ro/rofi-systemd/package.nix b/pkgs/by-name/ro/rofi-systemd/package.nix index aa3bb741fabfe2..541282b4679658 100644 --- a/pkgs/by-name/ro/rofi-systemd/package.nix +++ b/pkgs/by-name/ro/rofi-systemd/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/rofi-systemd --prefix PATH : "${wrapperPath}" ''; - meta = { + meta = with lib; { description = "Control your systemd units using rofi"; homepage = "https://github.com/IvanMalison/rofi-systemd"; - maintainers = with lib.maintainers; [ imalison ]; - license = lib.licenses.gpl3; - platforms = with lib.platforms; linux; + maintainers = with maintainers; [ imalison ]; + license = licenses.gpl3; + platforms = with platforms; linux; mainProgram = "rofi-systemd"; }; } diff --git a/pkgs/by-name/ro/roon-tui/package.nix b/pkgs/by-name/ro/roon-tui/package.nix index a319ccad98234e..e31832e4923189 100644 --- a/pkgs/by-name/ro/roon-tui/package.nix +++ b/pkgs/by-name/ro/roon-tui/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { }; }; - meta = { + meta = with lib; { description = "Roon Remote for the terminal"; homepage = "https://github.com/TheAppgineer/roon-tui"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ MichaelCDormann ]; + license = licenses.mit; + maintainers = with maintainers; [ MichaelCDormann ]; mainProgram = "roon-tui"; }; } diff --git a/pkgs/by-name/ro/ropebwt2/package.nix b/pkgs/by-name/ro/ropebwt2/package.nix index 3ef831907e7d7d..958d34eb509eb5 100644 --- a/pkgs/by-name/ro/ropebwt2/package.nix +++ b/pkgs/by-name/ro/ropebwt2/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/lh3/ropebwt2"; description = "Incremental construction of FM-index for DNA sequences"; mainProgram = "ropebwt2"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ apraga ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ apraga ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ro/rospo/package.nix b/pkgs/by-name/ro/rospo/package.nix index 19300832cef132..6d7dd0ef9ca59f 100644 --- a/pkgs/by-name/ro/rospo/package.nix +++ b/pkgs/by-name/ro/rospo/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { --zsh <($out/bin/rospo completion zsh) ''; - meta = { + meta = with lib; { description = "Simple, reliable, persistent ssh tunnels with embedded ssh server"; homepage = "https://github.com/ferama/rospo"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sikmir ]; + license = licenses.mit; + maintainers = with maintainers; [ sikmir ]; mainProgram = "rospo"; }; } diff --git a/pkgs/by-name/rp/rpm-sequoia/package.nix b/pkgs/by-name/rp/rpm-sequoia/package.nix index 4718e8c6c8760c..0580612ff5f282 100644 --- a/pkgs/by-name/rp/rpm-sequoia/package.nix +++ b/pkgs/by-name/rp/rpm-sequoia/package.nix @@ -69,10 +69,10 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "An OpenPGP backend for rpm using Sequoia PGP"; homepage = "https://sequoia-pgp.org/"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ baloo ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ baloo ]; }; } diff --git a/pkgs/by-name/rs/rsop/package.nix b/pkgs/by-name/rs/rsop/package.nix index 8138b111ef5a5f..e3fee1e4c7430e 100644 --- a/pkgs/by-name/rs/rsop/package.nix +++ b/pkgs/by-name/rs/rsop/package.nix @@ -35,15 +35,15 @@ rustPlatform.buildRustPackage rec { }; }; - meta = { + meta = with lib; { homepage = "https://codeberg.org/heiko/rsop"; description = "Stateless OpenPGP (SOP) based on rpgp"; - license = with lib.licenses; [ + license = with licenses; [ mit apsl20 cc0 ]; - maintainers = with lib.maintainers; [ nikstur ]; + maintainers = with maintainers; [ nikstur ]; mainProgram = "rsop"; }; } diff --git a/pkgs/by-name/rs/rss-glx/package.nix b/pkgs/by-name/rs/rss-glx/package.nix index d59b6f3b2c616f..f67618b53e7f74 100644 --- a/pkgs/by-name/rs/rss-glx/package.nix +++ b/pkgs/by-name/rs/rss-glx/package.nix @@ -42,13 +42,13 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-I${imagemagick6.dev}/include/ImageMagick"; - meta = { + meta = with lib; { description = "Really Slick Screensavers Port to GLX"; longDescription = '' This package currently contains all of the screensavers from the original collection, plus a few others. ''; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/rt/rtlamr/package.nix b/pkgs/by-name/rt/rtlamr/package.nix index 95e8bc9497eef5..79ba384df8bf6c 100644 --- a/pkgs/by-name/rt/rtlamr/package.nix +++ b/pkgs/by-name/rt/rtlamr/package.nix @@ -17,15 +17,15 @@ buildGoModule rec { vendorHash = "sha256-uT6zfsWgIot0EMNqwtwJNFXN/WaAyOGfcYJjuyOXT4g="; - meta = { + meta = with lib; { description = "Rtl-sdr receiver for Itron ERT compatible smart meters"; longDescription = '' An rtl-sdr receiver for Itron ERT compatible smart meters operating in the 900MHz ISM band ''; homepage = "https://github.com/bemasher/rtlamr"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ jmendyk ]; - platforms = lib.platforms.unix; + license = licenses.agpl3Only; + maintainers = with maintainers; [ jmendyk ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/rt/rtorrent/package.nix b/pkgs/by-name/rt/rtorrent/package.nix index 60fc441ae99903..c9ca459824f92e 100644 --- a/pkgs/by-name/rt/rtorrent/package.nix +++ b/pkgs/by-name/rt/rtorrent/package.nix @@ -74,16 +74,16 @@ stdenv.mkDerivation rec { install -Dm644 doc/rtorrent.rc-example -t $out/share/doc/rtorrent/rtorrent.rc ''; - meta = { + meta = with lib; { homepage = "https://rakshasa.github.io/rtorrent/"; description = "Ncurses client for libtorrent, ideal for use with screen, tmux, or dtach"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + maintainers = with maintainers; [ ebzzry codyopel thiagokokada ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "rtorrent"; }; } diff --git a/pkgs/by-name/rt/rtptools/package.nix b/pkgs/by-name/rt/rtptools/package.nix index 2eb78c0a80bc82..1138df6d8a1890 100644 --- a/pkgs/by-name/rt/rtptools/package.nix +++ b/pkgs/by-name/rt/rtptools/package.nix @@ -10,11 +10,11 @@ stdenv.mkDerivation rec { url = "http://www.cs.columbia.edu/irt/software/rtptools/download/rtptools-${version}.tar.gz"; sha256 = "0a4c0vmhxibfc58rrxpbav2bsk546chkg50ir4h3i57v4fjb4xic"; }; - meta = { + meta = with lib; { description = "Number of small applications that can be used for processing RTP data"; homepage = "https://www.cs.columbia.edu/irt/software/rtptools/"; maintainers = [ ]; - platforms = lib.platforms.unix; - license = lib.licenses.bsd3; + platforms = platforms.unix; + license = licenses.bsd3; }; } diff --git a/pkgs/by-name/ru/ruapu/package.nix b/pkgs/by-name/ru/ruapu/package.nix index 4b688ce9fd6399..ce27fd6357c067 100644 --- a/pkgs/by-name/ru/ruapu/package.nix +++ b/pkgs/by-name/ru/ruapu/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Detect CPU ISA features with single-file"; homepage = "https://github.com/nihui/ruapu"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ aleksana ]; + license = licenses.mit; + maintainers = with maintainers; [ aleksana ]; mainProgram = "ruapu"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ru/rundeck/package.nix b/pkgs/by-name/ru/rundeck/package.nix index d1dc4e16a62ea4..ab80b3d292eed6 100644 --- a/pkgs/by-name/ru/rundeck/package.nix +++ b/pkgs/by-name/ru/rundeck/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Job scheduler and runbook automation"; longDescription = '' Rundeck is an open source automation service with a web console, @@ -70,9 +70,9 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://www.rundeck.com/"; changelog = "https://docs.rundeck.com/docs/history/"; - sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.liberodark ]; + sourceProvenance = [ sourceTypes.binaryBytecode ]; + license = licenses.asl20; + platforms = platforms.unix; + maintainers = [ maintainers.liberodark ]; }; }) diff --git a/pkgs/by-name/ru/runelite/package.nix b/pkgs/by-name/ru/runelite/package.nix index 158cc94fb9ce25..83c3d520009ad0 100644 --- a/pkgs/by-name/ru/runelite/package.nix +++ b/pkgs/by-name/ru/runelite/package.nix @@ -61,15 +61,15 @@ maven.buildMavenPackage rec { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { description = "Open source Old School RuneScape client"; homepage = "https://runelite.net/"; - sourceProvenance = with lib.sourceTypes; [ + sourceProvenance = with sourceTypes; [ binaryBytecode binaryNativeCode ]; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ + license = licenses.bsd2; + maintainers = with maintainers; [ kmeakin moody ]; diff --git a/pkgs/by-name/ru/runningx/package.nix b/pkgs/by-name/ru/runningx/package.nix index 38fbc0c551cd96..1e283c98fb0317 100644 --- a/pkgs/by-name/ru/runningx/package.nix +++ b/pkgs/by-name/ru/runningx/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation { cp -vai RunningX "$out/bin" ''; - meta = { + meta = with lib; { homepage = "http://www.fiction.net/blong/programs/mutt/"; description = "Program for testing if X is running"; - license = lib.licenses.free; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.romildo ]; + license = licenses.free; + platforms = platforms.unix; + maintainers = [ maintainers.romildo ]; mainProgram = "RunningX"; }; } diff --git a/pkgs/by-name/ru/runzip/package.nix b/pkgs/by-name/ru/runzip/package.nix index 7f196224b6763c..8d20d409f8b41f 100644 --- a/pkgs/by-name/ru/runzip/package.nix +++ b/pkgs/by-name/ru/runzip/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { sha256 = "0l5zbb5hswxczigvyal877j0aiq3fc01j3gv88bvy7ikyvw3lc07"; }; - meta = { + meta = with lib; { description = "Tool to convert filename encoding inside a ZIP archive"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.unix; + license = licenses.bsd2; + maintainers = [ maintainers.raskin ]; + platforms = platforms.unix; mainProgram = "runzip"; }; } diff --git a/pkgs/by-name/ru/russ/package.nix b/pkgs/by-name/ru/russ/package.nix index 98d460b6d43f41..653a5d25f00f92 100644 --- a/pkgs/by-name/ru/russ/package.nix +++ b/pkgs/by-name/ru/russ/package.nix @@ -30,12 +30,12 @@ rustPlatform.buildRustPackage { ] ); - meta = { + meta = with lib; { changelog = "https://github.com/ckampfe/russ/blob/master/CHANGELOG.md"; description = "TUI RSS reader with vim-like controls and a local-first, offline-first focus"; homepage = "https://github.com/ckampfe/russ"; - license = with lib.licenses; [ agpl3Only ]; - maintainers = with lib.maintainers; [ blusk ]; + license = with licenses; [ agpl3Only ]; + maintainers = with maintainers; [ blusk ]; mainProgram = "russ"; }; } diff --git a/pkgs/by-name/ru/rust-parallel/package.nix b/pkgs/by-name/ru/rust-parallel/package.nix index d4a12aa15d3143..d72af494e77cea 100644 --- a/pkgs/by-name/ru/rust-parallel/package.nix +++ b/pkgs/by-name/ru/rust-parallel/package.nix @@ -31,12 +31,12 @@ rustPlatform.buildRustPackage rec { "--skip=runs_regex_from_input_file_badline_j1" ]; - meta = { + meta = with lib; { description = "Rust shell tool to run commands in parallel with a similar interface to GNU parallel"; homepage = "https://github.com/aaronriekenberg/rust-parallel"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "rust-parallel"; - maintainers = with lib.maintainers; [ sedlund ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ sedlund ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ru/rustdesk/package.nix b/pkgs/by-name/ru/rustdesk/package.nix index a1f5b24910209d..2efa99117f109e 100644 --- a/pkgs/by-name/ru/rustdesk/package.nix +++ b/pkgs/by-name/ru/rustdesk/package.nix @@ -180,15 +180,15 @@ rustPlatform.buildRustPackage rec { ZSTD_SYS_USE_PKG_CONFIG = true; }; - meta = { + meta = with lib; { description = "Virtual / remote desktop infrastructure for everyone! Open source TeamViewer / Citrix alternative"; homepage = "https://rustdesk.com"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.agpl3Only; + maintainers = with maintainers; [ ocfox leixb ]; mainProgram = "rustdesk"; - badPlatforms = lib.platforms.darwin; + badPlatforms = platforms.darwin; }; } diff --git a/pkgs/by-name/ru/rustfinity/package.nix b/pkgs/by-name/ru/rustfinity/package.nix index c3db2c136a21e1..7c7f7688fc3edf 100644 --- a/pkgs/by-name/ru/rustfinity/package.nix +++ b/pkgs/by-name/ru/rustfinity/package.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage rec { "--skip=download::tests::download_file::test_renames_starter" ]; - meta = { + meta = with lib; { description = "CLI for Rustfinity challenges solving"; homepage = "https://github.com/dcodesdev/rustfinity.com/tree/main/crates/cli"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nartsiss ]; + license = licenses.mit; + maintainers = with maintainers; [ nartsiss ]; mainProgram = "rustfinity"; }; } diff --git a/pkgs/by-name/ru/rustlings/package.nix b/pkgs/by-name/ru/rustlings/package.nix index 80eecb46dbcd6b..21f1bf1cb58cc2 100644 --- a/pkgs/by-name/ru/rustlings/package.nix +++ b/pkgs/by-name/ru/rustlings/package.nix @@ -50,12 +50,12 @@ rustPlatform.buildRustPackage { } ''; - meta = { + meta = with lib; { description = "Explore the Rust programming language and learn more about it while doing exercises"; homepage = "https://rustlings.cool/"; changelog = "https://github.com/rust-lang/rustlings/releases"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ luftmensch-luftmensch ]; + license = licenses.mit; + maintainers = with maintainers; [ luftmensch-luftmensch ]; mainProgram = "rustlings"; }; } diff --git a/pkgs/by-name/ru/rustls-libssl/package.nix b/pkgs/by-name/ru/rustls-libssl/package.nix index 8f5745edd13b14..bcb512dbda775e 100644 --- a/pkgs/by-name/ru/rustls-libssl/package.nix +++ b/pkgs/by-name/ru/rustls-libssl/package.nix @@ -77,13 +77,13 @@ rustPlatform.buildRustPackage { passthru.tests = nixosTests.rustls-libssl; - meta = { + meta = with lib; { description = "Partial reimplementation of the OpenSSL 3 libssl ABI using rustls"; homepage = "https://github.com/rustls/rustls-openssl-compat"; changelog = "https://github.com/rustls/rustls-openssl-compat/releases"; - license = lib.licenses.asl20; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + platforms = platforms.linux; + maintainers = with maintainers; [ stephank cpu ]; diff --git a/pkgs/by-name/ru/rustpython/package.nix b/pkgs/by-name/ru/rustpython/package.nix index d7e0c177815998..b32efc06c4248d 100644 --- a/pkgs/by-name/ru/rustpython/package.nix +++ b/pkgs/by-name/ru/rustpython/package.nix @@ -36,11 +36,11 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Python 3 interpreter in written Rust"; homepage = "https://rustpython.github.io"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ prusnak ]; + license = licenses.mit; + maintainers = with maintainers; [ prusnak ]; mainProgram = "rustpython"; }; } diff --git a/pkgs/by-name/ru/rustus/package.nix b/pkgs/by-name/ru/rustus/package.nix index 7ecbdb9f8e07f4..6c074e0d8bbfd2 100644 --- a/pkgs/by-name/ru/rustus/package.nix +++ b/pkgs/by-name/ru/rustus/package.nix @@ -63,12 +63,12 @@ rustPlatform.buildRustPackage { # "--skip=util::tests::test_process_multi_addr" # ]; - meta = { + meta = with lib; { description = "TUS protocol implementation in Rust"; mainProgram = "rustus"; homepage = "https://s3rius.github.io/rustus/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ happysalada ]; - platforms = lib.platforms.all; + license = licenses.asl20; + maintainers = with maintainers; [ happysalada ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ru/rusty-bash/package.nix b/pkgs/by-name/ru/rusty-bash/package.nix index 834f15db9da8b2..3f475c718d65bd 100644 --- a/pkgs/by-name/ru/rusty-bash/package.nix +++ b/pkgs/by-name/ru/rusty-bash/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { passthru.shellPath = "/bin/sush"; - meta = { + meta = with lib; { description = "Bash written with Rust, a.k.a. sushi shell"; homepage = "https://github.com/shellgei/rusty_bash"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "sush"; - maintainers = with lib.maintainers; [ aleksana ]; + maintainers = with maintainers; [ aleksana ]; }; } diff --git a/pkgs/by-name/rv/rvz/package.nix b/pkgs/by-name/rv/rvz/package.nix index dc66ff233df4bb..bd9aa6c86ab4f2 100644 --- a/pkgs/by-name/rv/rvz/package.nix +++ b/pkgs/by-name/rv/rvz/package.nix @@ -37,11 +37,11 @@ buildGoModule rec { go test -v -short -coverprofile=cover.out ./... ''; - meta = { + meta = with lib; { description = "Golang library for reading RVZ disc images"; homepage = "https://github.com/bodgit/rvz"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ dansbandit ]; + license = licenses.bsd3; + maintainers = with maintainers; [ dansbandit ]; mainProgram = "rvz"; }; } diff --git a/pkgs/by-name/rw/rwpspread/package.nix b/pkgs/by-name/rw/rwpspread/package.nix index 84bd7da27912ae..c867d4c0745248 100644 --- a/pkgs/by-name/rw/rwpspread/package.nix +++ b/pkgs/by-name/rw/rwpspread/package.nix @@ -25,12 +25,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Multi-Monitor Wallpaper Utility"; homepage = "https://github.com/0xk1f0/rwpspread"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ fsnkty ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ fsnkty ]; + platforms = platforms.linux; mainProgram = "rwpspread"; }; } diff --git a/pkgs/by-name/rx/rxp/package.nix b/pkgs/by-name/rx/rxp/package.nix index e36b34ae67d342..3cd68791f75c3a 100644 --- a/pkgs/by-name/rx/rxp/package.nix +++ b/pkgs/by-name/rx/rxp/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=implicit-function-declaration -Wno-error=int-conversion"; - meta = { - license = lib.licenses.gpl2Plus; + meta = with lib; { + license = licenses.gpl2Plus; description = "Validating XML parser written in C"; homepage = "https://www.cogsci.ed.ac.uk/~richard/rxp.html"; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "rxp"; }; } diff --git a/pkgs/by-name/ry/ryokucha/package.nix b/pkgs/by-name/ry/ryokucha/package.nix index 35ab71b0111b27..b63e97bcf2c875 100644 --- a/pkgs/by-name/ry/ryokucha/package.nix +++ b/pkgs/by-name/ry/ryokucha/package.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { description = "GTK4 library that includes customized widgets"; homepage = "https://github.com/ryonakano/ryokucha"; - license = lib.licenses.lgpl3Plus; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.unix; + license = licenses.lgpl3Plus; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/s-/s-tar/package.nix b/pkgs/by-name/s-/s-tar/package.nix index b6782f7f14ceb6..23d06446a34563 100644 --- a/pkgs/by-name/s-/s-tar/package.nix +++ b/pkgs/by-name/s-/s-tar/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { rm -r $out/etc $out/include $out/sbin ''; - meta = { + meta = with lib; { description = "Very fast tar like tape archiver with improved functionality"; longDescription = '' Star archives and extracts multiple files to and from a single file called a tarfile. @@ -35,8 +35,8 @@ stdenv.mkDerivation rec { Note that unpacking tar archives may be a security risk because star may overwrite existing files. ''; homepage = "https://cdrtools.sourceforge.net/private/star.html"; - license = lib.licenses.cddl; - maintainers = [ lib.maintainers.wucke13 ]; + license = licenses.cddl; + maintainers = [ maintainers.wucke13 ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/s2/s2png/package.nix b/pkgs/by-name/s2/s2png/package.nix index e3b5c6cad0ef4c..0568fb0799f842 100644 --- a/pkgs/by-name/s2/s2png/package.nix +++ b/pkgs/by-name/s2/s2png/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { "DESTDIR=$(out)" ]; - meta = { + meta = with lib; { homepage = "https://github.com/dbohdan/s2png/"; description = "Store any data in PNG images"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.dbohdan ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = [ maintainers.dbohdan ]; + platforms = platforms.unix; mainProgram = "s2png"; }; } diff --git a/pkgs/by-name/sa/saber/package.nix b/pkgs/by-name/sa/saber/package.nix index 9bbd7e2c4c97c5..3007ecf12fb0b5 100644 --- a/pkgs/by-name/sa/saber/package.nix +++ b/pkgs/by-name/sa/saber/package.nix @@ -50,12 +50,12 @@ flutter327.buildFlutterApplication rec { patchelf --shrink-rpath --allowed-rpath-prefixes "$NIX_STORE" $out/app/saber/lib/lib*.so ''; - meta = { + meta = with lib; { description = "Cross-platform open-source app built for handwriting"; homepage = "https://github.com/saber-notes/saber"; mainProgram = "saber"; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ aucub ]; + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ aucub ]; platforms = [ "aarch64-linux" "x86_64-linux" diff --git a/pkgs/by-name/sa/sakura/package.nix b/pkgs/by-name/sa/sakura/package.nix index 4b2687dd98a8de..cdf109acd38279 100644 --- a/pkgs/by-name/sa/sakura/package.nix +++ b/pkgs/by-name/sa/sakura/package.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.test = nixosTests.terminal-emulators.sakura; - meta = { + meta = with lib; { homepage = "https://www.pleyades.net/david/projects/sakura"; description = "Terminal emulator based on GTK and VTE"; longDescription = '' @@ -66,12 +66,12 @@ stdenv.mkDerivation (finalAttrs: { terminals in one window and adds a contextual menu with some basic options. No more no less. ''; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Only; + maintainers = with maintainers; [ astsmtl codyopel ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "sakura"; }; }) diff --git a/pkgs/by-name/sa/salt-lint/package.nix b/pkgs/by-name/sa/salt-lint/package.nix index 712ae494afb4a1..e3e95035c7d221 100644 --- a/pkgs/by-name/sa/salt-lint/package.nix +++ b/pkgs/by-name/sa/salt-lint/package.nix @@ -33,11 +33,11 @@ python3Packages.buildPythonApplication rec { versionCheckProgramArg = [ "--version" ]; - meta = { + meta = with lib; { description = "Command-line utility that checks for best practices in SaltStack"; homepage = "https://salt-lint.readthedocs.io/en/latest/"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "salt-lint"; - maintainers = with lib.maintainers; [ genga898 ]; + maintainers = with maintainers; [ genga898 ]; }; } diff --git a/pkgs/by-name/sa/salut/package.nix b/pkgs/by-name/sa/salut/package.nix index 82d5d5960de01e..095478d6c79b27 100644 --- a/pkgs/by-name/sa/salut/package.nix +++ b/pkgs/by-name/sa/salut/package.nix @@ -39,12 +39,12 @@ rustPlatform.buildRustPackage rec { wayland ]; - meta = { + meta = with lib; { description = "Sleek notification daemon for Wayland"; homepage = "https://gitlab.com/snakedye/salut/-/wikis/Home"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ ]; + license = licenses.mpl20; + maintainers = with maintainers; [ ]; mainProgram = "salut"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sa/samplicator/package.nix b/pkgs/by-name/sa/samplicator/package.nix index 92d0c1cd362aaf..8e38e6f60dcae6 100644 --- a/pkgs/by-name/sa/samplicator/package.nix +++ b/pkgs/by-name/sa/samplicator/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { sha256 = "0fv5vldmwd6qrdv2wkk946dk9rn9nrv3c84ldvvqqn1spxfzgirm"; }; - meta = { + meta = with lib; { description = "Send copies of (UDP) datagrams to multiple receivers"; homepage = "https://github.com/sleinen/samplicator/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "samplicate"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/sa/samrewritten/package.nix b/pkgs/by-name/sa/samrewritten/package.nix index d689a1feb089bf..742c9ba14cde6d 100644 --- a/pkgs/by-name/sa/samrewritten/package.nix +++ b/pkgs/by-name/sa/samrewritten/package.nix @@ -41,13 +41,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Steam Achievement Manager For Linux. Rewritten in C++"; mainProgram = "samrewritten"; homepage = "https://github.com/PaulCombal/SamRewritten"; changelog = "https://github.com/PaulCombal/SamRewritten/releases"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ludovicopiero ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ ludovicopiero ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/by-name/sa/sarasa-gothic/package.nix b/pkgs/by-name/sa/sarasa-gothic/package.nix index 66b69ce36ae02e..dd10be3f535a0d 100644 --- a/pkgs/by-name/sa/sarasa-gothic/package.nix +++ b/pkgs/by-name/sa/sarasa-gothic/package.nix @@ -29,14 +29,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "CJK programming font based on Iosevka and Source Han Sans"; homepage = "https://github.com/be5invis/Sarasa-Gothic"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ + license = licenses.ofl; + maintainers = with maintainers; [ ChengCat wegank ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/sa/sarif-fmt/package.nix b/pkgs/by-name/sa/sarif-fmt/package.nix index a6573f41137b0c..4857842f4bddaf 100644 --- a/pkgs/by-name/sa/sarif-fmt/package.nix +++ b/pkgs/by-name/sa/sarif-fmt/package.nix @@ -39,11 +39,11 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "A CLI tool to pretty print SARIF diagnostics"; homepage = "https://psastras.github.io/sarif-rs"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ getchoo ]; + license = licenses.mit; + maintainers = with maintainers; [ getchoo ]; mainProgram = "sarif-fmt"; }; } diff --git a/pkgs/by-name/sa/satellite/package.nix b/pkgs/by-name/sa/satellite/package.nix index 6411512c8a6955..0e77be3805c1a7 100644 --- a/pkgs/by-name/sa/satellite/package.nix +++ b/pkgs/by-name/sa/satellite/package.nix @@ -42,16 +42,16 @@ python3.pkgs.buildPythonApplication rec { strictDeps = true; - meta = { + meta = with lib; { description = "Program for showing navigation satellite data"; longDescription = '' Satellite is an adaptive GTK3 / libhandy application which displays global navigation satellite system (GNSS: GPS et al.) data obtained from ModemManager or gnss-share. It can also save your position to a GPX-file. ''; homepage = "https://codeberg.org/tpikonen/satellite"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "satellite"; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ Luflosi ]; + platforms = platforms.linux; + maintainers = with maintainers; [ Luflosi ]; }; } diff --git a/pkgs/by-name/sa/sauerbraten/package.nix b/pkgs/by-name/sa/sauerbraten/package.nix index 2951641fbf5f85..9797c5faa1704e 100644 --- a/pkgs/by-name/sa/sauerbraten/package.nix +++ b/pkgs/by-name/sa/sauerbraten/package.nix @@ -76,10 +76,10 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Free multiplayer & singleplayer first person shooter, the successor of the Cube FPS"; homepage = "http://sauerbraten.org"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ raskin ajs124 ]; @@ -89,6 +89,6 @@ stdenv.mkDerivation rec { # not setting platforms because it is 0.5+ GiB of game data [ ]; license = "freeware"; # as an aggregate - data files have different licenses code is under zlib license - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sa/saw-tools/package.nix b/pkgs/by-name/sa/saw-tools/package.nix index bd0f2d31f8854c..5e9114e67dfb21 100644 --- a/pkgs/by-name/sa/saw-tools/package.nix +++ b/pkgs/by-name/sa/saw-tools/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation (finalAttrs: { command = "saw --version"; }; - meta = { + meta = with lib; { description = "Tools for software verification and analysis"; homepage = "https://saw.galois.com"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.bsd3; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.bsd3; platforms = [ "x86_64-linux" ]; - maintainers = [ lib.maintainers.thoughtpolice ]; + maintainers = [ maintainers.thoughtpolice ]; }; }) diff --git a/pkgs/by-name/sa/sawfish/package.nix b/pkgs/by-name/sa/sawfish/package.nix index 8a0ac60f5541c2..dbed3713dc35e1 100644 --- a/pkgs/by-name/sa/sawfish/package.nix +++ b/pkgs/by-name/sa/sawfish/package.nix @@ -73,7 +73,7 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = { + meta = with lib; { homepage = "http://sawfish.tuxfamily.org/"; description = "Extensible, Lisp-based window manager"; longDescription = '' @@ -83,8 +83,8 @@ stdenv.mkDerivation (finalAttrs: { possible. All high-level WM functions are implemented in Lisp for future extensibility or redefinition. ''; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/sb/sblast/package.nix b/pkgs/by-name/sb/sblast/package.nix index a9caf85253b043..f667bca7a290a4 100644 --- a/pkgs/by-name/sb/sblast/package.nix +++ b/pkgs/by-name/sb/sblast/package.nix @@ -47,14 +47,14 @@ let }; }; - meta = { + meta = with lib; { description = "Blast your Linux audio to DLNA receivers"; homepage = "https://github.com/ugjka/sblast"; # license is "MIT+NoAI": - license = lib.licenses.unfree; + license = licenses.unfree; mainProgram = "sblast"; - maintainers = with lib.maintainers; [ colinsane ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ colinsane ]; + platforms = platforms.linux; }; }; in diff --git a/pkgs/by-name/sb/sbt-extras/package.nix b/pkgs/by-name/sb/sbt-extras/package.nix index b9b38b50fbeea4..a61f58d167e233 100644 --- a/pkgs/by-name/sb/sbt-extras/package.nix +++ b/pkgs/by-name/sb/sbt-extras/package.nix @@ -87,15 +87,15 @@ stdenv.mkDerivation rec { fi ''; - meta = { + meta = with lib; { description = "A more featureful runner for sbt, the simple/scala/standard build tool"; homepage = "https://github.com/paulp/sbt-extras"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ nequissimus puffnfresh ]; mainProgram = "sbt"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/sb/sby/package.nix b/pkgs/by-name/sb/sby/package.nix index 922056fc94fba8..fc53bdba706170 100644 --- a/pkgs/by-name/sb/sby/package.nix +++ b/pkgs/by-name/sb/sby/package.nix @@ -90,15 +90,15 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "SymbiYosys, a front-end for Yosys-based formal verification flows"; homepage = "https://symbiyosys.readthedocs.io/"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ + license = licenses.isc; + maintainers = with maintainers; [ thoughtpolice rcoeurjoly ]; mainProgram = "sby"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/sc/scalp/package.nix b/pkgs/by-name/sc/scalp/package.nix index fcd0ce58c24f05..2925f8f4453d40 100644 --- a/pkgs/by-name/sc/scalp/package.nix +++ b/pkgs/by-name/sc/scalp/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation rec { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Scalable Linear Programming Library"; mainProgram = "scalp"; homepage = "https://digidev.digi.e-technik.uni-kassel.de/scalp/"; - license = lib.licenses.lgpl3Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ wegank ]; + license = licenses.lgpl3Only; + platforms = platforms.unix; + maintainers = with maintainers; [ wegank ]; }; } diff --git a/pkgs/by-name/sc/scanservjs/package.nix b/pkgs/by-name/sc/scanservjs/package.nix index e320392d2f7f44..3f48f8c56a440f 100644 --- a/pkgs/by-name/sc/scanservjs/package.nix +++ b/pkgs/by-name/sc/scanservjs/package.nix @@ -80,13 +80,13 @@ buildNpmPackage { --add-flags "'$out/lib/node_modules/scanservjs-api/src/server.js'" ''; - meta = { + meta = with lib; { description = "SANE scanner nodejs web ui"; longDescription = "scanservjs is a simple web-based UI for SANE which allows you to share a scanner on a network without the need for drivers or complicated installation."; homepage = "https://github.com/sbs20/scanservjs"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; mainProgram = "scanservjs"; - maintainers = with lib.maintainers; [ chayleaf ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ chayleaf ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sc/scarlett2/package.nix b/pkgs/by-name/sc/scarlett2/package.nix index 82d7be656f5204..938f6eea10634c 100644 --- a/pkgs/by-name/sc/scarlett2/package.nix +++ b/pkgs/by-name/sc/scarlett2/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation { ln -s ${firmwareSrc}/firmware $out/share/firmware ''; - meta = { + meta = with lib; { description = "Scarlett2 Firmware Management Utility for Scarlett 2nd, 3rd, and 4th Gen, Clarett USB, and Clarett+ interfaces"; homepage = "https://github.com/geoffreybennett/scarlett2"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ squalus ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ squalus ]; mainProgram = "scarlett2"; }; diff --git a/pkgs/by-name/sc/scenefx/package.nix b/pkgs/by-name/sc/scenefx/package.nix index 133bb70e57402f..f30525896fb665 100644 --- a/pkgs/by-name/sc/scenefx/package.nix +++ b/pkgs/by-name/sc/scenefx/package.nix @@ -56,13 +56,13 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; - meta = { + meta = with lib; { description = "Drop-in replacement for the wlroots scene API that allows wayland compositors to render surfaces with eye-candy effects"; homepage = "https://github.com/wlrfx/scenefx"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + license = licenses.mit; + maintainers = with maintainers; [ ]; mainProgram = "scenefx"; pkgConfigModules = [ "scenefx" ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/sc/schedtool/package.nix b/pkgs/by-name/sc/schedtool/package.nix index 11c4e958f05fe5..2ce941f0260a43 100644 --- a/pkgs/by-name/sc/schedtool/package.nix +++ b/pkgs/by-name/sc/schedtool/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation (finalAttrs: { "DESTPREFIX=" ]; - meta = { + meta = with lib; { description = "Query or alter a process' scheduling policy under Linux"; mainProgram = "schedtool"; homepage = "https://github.com/freequaos/schedtool"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ abbradar ]; + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = with maintainers; [ abbradar ]; }; }) diff --git a/pkgs/by-name/sc/schemaspy/package.nix b/pkgs/by-name/sc/schemaspy/package.nix index bb5cfddfd26107..a6dccf70eaa3ff 100644 --- a/pkgs/by-name/sc/schemaspy/package.nix +++ b/pkgs/by-name/sc/schemaspy/package.nix @@ -40,12 +40,12 @@ maven.buildMavenPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://schemaspy.org"; description = "Document your database simply and easily"; mainProgram = "schemaspy"; - license = lib.licenses.lgpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.lgpl3Plus; + maintainers = with maintainers; [ jraygauthier anthonyroussel ]; diff --git a/pkgs/by-name/sc/scid/package.nix b/pkgs/by-name/sc/scid/package.nix index ed1d0049b5d3fe..e991d990f8366f 100644 --- a/pkgs/by-name/sc/scid/package.nix +++ b/pkgs/by-name/sc/scid/package.nix @@ -46,11 +46,11 @@ tcl.mkTclDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Chess database with play and training functionality"; - maintainers = with lib.maintainers; [ agbrooks ]; + maintainers = with maintainers; [ agbrooks ]; homepage = "https://scid.sourceforge.net/"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.all; + license = licenses.gpl2Only; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/sc/scilab-bin/package.nix b/pkgs/by-name/sc/scilab-bin/package.nix index 243f17def1f102..cf6590b193b630 100644 --- a/pkgs/by-name/sc/scilab-bin/package.nix +++ b/pkgs/by-name/sc/scilab-bin/package.nix @@ -31,7 +31,7 @@ let src = srcs.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); - meta = { + meta = with lib; { homepage = "http://www.scilab.org/"; description = "Scientific software package for numerical computations (Matlab lookalike)"; platforms = [ @@ -39,8 +39,8 @@ let "x86_64-darwin" "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.gpl2Only; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.gpl2Only; mainProgram = "scilab"; }; diff --git a/pkgs/by-name/sc/scimark/package.nix b/pkgs/by-name/sc/scimark/package.nix index ac6e7ab458d853..6ba7e6648f7c0e 100644 --- a/pkgs/by-name/sc/scimark/package.nix +++ b/pkgs/by-name/sc/scimark/package.nix @@ -28,14 +28,14 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://math.nist.gov/scimark2/index.html"; description = "Scientific and numerical computing benchmark (ANSI C version)"; downloadPage = "https://math.nist.gov/scimark2/download_c.html"; - license = lib.licenses.publicDomain; + license = licenses.publicDomain; mainProgram = "scimark4"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; }; }) # TODO [ AndersonTorres ]: Java version diff --git a/pkgs/by-name/sc/scite/package.nix b/pkgs/by-name/sc/scite/package.nix index 9ffccd8602b2ed..d082fe0b0963a2 100644 --- a/pkgs/by-name/sc/scite/package.nix +++ b/pkgs/by-name/sc/scite/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "https://www.scintilla.org/SciTE.html"; description = "SCIntilla based Text Editor"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ rszibele aleksana ]; diff --git a/pkgs/by-name/sc/scmccid/package.nix b/pkgs/by-name/sc/scmccid/package.nix index 684c8116fc72bf..e20e62f5efc37d 100644 --- a/pkgs/by-name/sc/scmccid/package.nix +++ b/pkgs/by-name/sc/scmccid/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { cp -R proprietary/* $out/pcsc/drivers ''; - meta = { + meta = with lib; { homepage = "http://www.scmmicro.com/support/pc-security-support/downloads.html"; description = "PCSC drivers for linux, for the SCM SCR3310 v2.0 card and others"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/sc/scons/package.nix b/pkgs/by-name/sc/scons/package.nix index 14d5e993ba354c..fd29de422378a2 100644 --- a/pkgs/by-name/sc/scons/package.nix +++ b/pkgs/by-name/sc/scons/package.nix @@ -39,7 +39,7 @@ python3Packages.buildPythonApplication rec { inherit (python3Packages) python; }; - meta = { + meta = with lib; { description = "Improved, cross-platform substitute for Make"; longDescription = '' SCons is an Open Source software construction tool. Think of SCons as an @@ -49,7 +49,7 @@ python3Packages.buildPythonApplication rec { to build software. ''; homepage = "https://scons.org/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + license = licenses.mit; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/by-name/sc/scope-lite/package.nix b/pkgs/by-name/sc/scope-lite/package.nix index 130c5704ecabf6..c8ce07710f82aa 100644 --- a/pkgs/by-name/sc/scope-lite/package.nix +++ b/pkgs/by-name/sc/scope-lite/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake ]; - meta = { + meta = with lib; { description = "Migration path to C++ library extensions scope_exit, scope_fail, scope_success, unique_resource"; - license = lib.licenses.boost; - maintainers = [ lib.maintainers.shlevy ]; + license = licenses.boost; + maintainers = [ maintainers.shlevy ]; homepage = "https://github.com/martinmoene/scope-lite"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/sc/scope-tui/package.nix b/pkgs/by-name/sc/scope-tui/package.nix index 8b99e3d7c7bb22..ea2e8d0336e827 100644 --- a/pkgs/by-name/sc/scope-tui/package.nix +++ b/pkgs/by-name/sc/scope-tui/package.nix @@ -28,15 +28,15 @@ rustPlatform.buildRustPackage { doCheck = false; # no tests - meta = { + meta = with lib; { description = "Simple oscilloscope/vectorscope/spectroscope for your terminal"; homepage = "https://github.com/alemidev/scope-tui"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ iynaix aleksana ]; mainProgram = "scope-tui"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sc/scopehal-apps/package.nix b/pkgs/by-name/sc/scopehal-apps/package.nix index aa7d247526b2d1..648b4b91619293 100644 --- a/pkgs/by-name/sc/scopehal-apps/package.nix +++ b/pkgs/by-name/sc/scopehal-apps/package.nix @@ -84,15 +84,15 @@ stdenv.mkDerivation { "-DCMAKE_INSTALL_RPATH=${lib.strings.makeLibraryPath [ vulkan-loader ]}" ]; - meta = { + meta = with lib; { description = "Advanced test & measurement remote control and analysis suite"; homepage = "https://www.ngscopeclient.org/"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "ngscopeclient"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ bgamari carlossless ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/by-name/sc/scotch/package.nix b/pkgs/by-name/sc/scotch/package.nix index 89f3fb9320b501..2eb68c3320a311 100644 --- a/pkgs/by-name/sc/scotch/package.nix +++ b/pkgs/by-name/sc/scotch/package.nix @@ -46,14 +46,14 @@ stdenv.mkDerivation (finalAttrs: { zlib ]; - meta = { + meta = with lib; { description = "Graph and mesh/hypergraph partitioning, graph clustering, and sparse matrix ordering"; longDescription = '' Scotch is a software package for graph and mesh/hypergraph partitioning, graph clustering, and sparse matrix ordering. ''; homepage = "http://www.labri.fr/perso/pelegrin/scotch"; - license = lib.licenses.cecill-c; - maintainers = [ lib.maintainers.bzizou ]; + license = licenses.cecill-c; + maintainers = [ maintainers.bzizou ]; }; }) diff --git a/pkgs/by-name/sc/scowl/package.nix b/pkgs/by-name/sc/scowl/package.nix index cc129a42c8881c..77bb74c2bf00c3 100644 --- a/pkgs/by-name/sc/scowl/package.nix +++ b/pkgs/by-name/sc/scowl/package.nix @@ -120,11 +120,11 @@ stdenv.mkDerivation rec { ./mk-list ${singleWordlist} > "$out/share/dict/words.txt" ''; - meta = { + meta = with lib; { description = "Spell checker oriented word lists"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = [ maintainers.raskin ]; + platforms = platforms.unix; homepage = "http://wordlist.aspell.net/"; }; } diff --git a/pkgs/by-name/sc/screen-message/package.nix b/pkgs/by-name/sc/screen-message/package.nix index 2d5eb30aecae82..edaed63d0d0991 100644 --- a/pkgs/by-name/sc/screen-message/package.nix +++ b/pkgs/by-name/sc/screen-message/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { # screen-message installs its binary in $(prefix)/games per default makeFlags = [ "execgamesdir=$(out)/bin" ]; - meta = { + meta = with lib; { homepage = "https://www.joachim-breitner.de/en/projects#screen-message"; description = "Displays a short text fullscreen in an X11 window"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.fpletz ]; + license = licenses.gpl2Plus; + maintainers = [ maintainers.fpletz ]; mainProgram = "sm"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/sc/screenconfig/package.nix b/pkgs/by-name/sc/screenconfig/package.nix index 5c3942f080570b..6f276118f6a08a 100644 --- a/pkgs/by-name/sc/screenconfig/package.nix +++ b/pkgs/by-name/sc/screenconfig/package.nix @@ -29,12 +29,12 @@ python3.pkgs.buildPythonApplication rec { feh ]; - meta = { + meta = with lib; { description = "Automatic configuration of connected screens/monitors"; homepage = "https://github.com/jceb/screenconfig"; - platforms = lib.platforms.linux; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ jceb ]; + platforms = platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ jceb ]; mainProgram = "screenconfig"; }; } diff --git a/pkgs/by-name/sd/SDL2_image/package.nix b/pkgs/by-name/sd/SDL2_image/package.nix index a4b150858520a4..03e5499e0f0bb9 100644 --- a/pkgs/by-name/sd/SDL2_image/package.nix +++ b/pkgs/by-name/sd/SDL2_image/package.nix @@ -67,11 +67,11 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "SDL image library"; homepage = "https://github.com/libsdl-org/SDL_image"; - license = lib.licenses.zlib; - maintainers = lib.teams.sdl.members ++ (with lib.maintainers; [ ]); - platforms = lib.platforms.unix; + license = licenses.zlib; + maintainers = teams.sdl.members ++ (with maintainers; [ ]); + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/sd/SDL2_mixer/package.nix b/pkgs/by-name/sd/SDL2_mixer/package.nix index 766eab7d9b8e47..6e4e2f9a151321 100644 --- a/pkgs/by-name/sd/SDL2_mixer/package.nix +++ b/pkgs/by-name/sd/SDL2_mixer/package.nix @@ -78,11 +78,11 @@ stdenv.mkDerivation (finalAttrs: { (lib.withFeatureAs true "timidity-cfg" "${timidity}/share/timidity/timidity.cfg") ]; - meta = { + meta = with lib; { homepage = "https://github.com/libsdl-org/SDL_mixer"; description = "SDL multi-channel audio mixer library"; - license = lib.licenses.zlib; - maintainers = lib.teams.sdl.members ++ (with lib.maintainers; [ ]); - platforms = lib.platforms.unix; + license = licenses.zlib; + maintainers = teams.sdl.members ++ (with maintainers; [ ]); + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/sd/SDL_compat/package.nix b/pkgs/by-name/sd/SDL_compat/package.nix index 561ca909cbf340..f9f22599afdb90 100644 --- a/pkgs/by-name/sd/SDL_compat/package.nix +++ b/pkgs/by-name/sd/SDL_compat/package.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = { + meta = with lib; { homepage = "https://www.libsdl.org/"; description = "Cross-platform multimedia library - build SDL 1.2 applications against 2.0"; - license = lib.licenses.zlib; + license = licenses.zlib; mainProgram = "sdl-config"; - maintainers = lib.teams.sdl.members ++ (with lib.maintainers; [ peterhoeg ]); - platforms = lib.platforms.all; + maintainers = teams.sdl.members ++ (with maintainers; [ peterhoeg ]); + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/sd/SDL_sixel/package.nix b/pkgs/by-name/sd/SDL_sixel/package.nix index 5232b0080cf507..8e6d23769282a2 100644 --- a/pkgs/by-name/sd/SDL_sixel/package.nix +++ b/pkgs/by-name/sd/SDL_sixel/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation { strictDeps = true; - meta = { + meta = with lib; { homepage = "https://github.com/saitoha/SDL1.2-SIXEL"; description = "SDL 1.2 patched with libsixel support"; - license = lib.licenses.lgpl21; + license = licenses.lgpl21; mainProgram = "sdl-config"; - maintainers = lib.teams.sdl.members ++ (with lib.maintainers; [ ]); - platforms = lib.platforms.linux; + maintainers = teams.sdl.members ++ (with maintainers; [ ]); + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sd/sd/package.nix b/pkgs/by-name/sd/sd/package.nix index 5734960eb074cc..fae19cf598514d 100644 --- a/pkgs/by-name/sd/sd/package.nix +++ b/pkgs/by-name/sd/sd/package.nix @@ -27,12 +27,12 @@ rustPlatform.buildRustPackage rec { installShellCompletion --zsh gen/completions/_sd ''; - meta = { + meta = with lib; { description = "Intuitive find & replace CLI (sed alternative)"; mainProgram = "sd"; homepage = "https://github.com/chmln/sd"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ amar1729 Br1ght0ne ]; diff --git a/pkgs/by-name/sd/sdat2img/package.nix b/pkgs/by-name/sd/sdat2img/package.nix index 6ddcf6e85bbd9b..d2bf9a7c47a0a6 100644 --- a/pkgs/by-name/sd/sdat2img/package.nix +++ b/pkgs/by-name/sd/sdat2img/package.nix @@ -20,12 +20,12 @@ python3Packages.buildPythonApplication { install -D $src/sdat2img.py $out/bin/sdat2img ''; - meta = { + meta = with lib; { description = "Convert sparse Android data image (.dat) into filesystem ext4 image (.img)"; homepage = "https://github.com/xpirt/sdat2img"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.xaverdh ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = [ maintainers.xaverdh ]; + platforms = platforms.unix; mainProgram = "sdat2img"; }; } diff --git a/pkgs/by-name/se/sea-orm-cli/package.nix b/pkgs/by-name/se/sea-orm-cli/package.nix index 0b27163049bdd1..b9461666c17bb3 100644 --- a/pkgs/by-name/se/sea-orm-cli/package.nix +++ b/pkgs/by-name/se/sea-orm-cli/package.nix @@ -31,14 +31,14 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { mainProgram = "sea-orm-cli"; homepage = "https://www.sea-ql.org/SeaORM"; description = "Command line utility for SeaORM"; - license = with lib.licenses; [ + license = with licenses; [ mit # or asl20 ]; - maintainers = with lib.maintainers; [ traxys ]; + maintainers = with maintainers; [ traxys ]; }; } diff --git a/pkgs/by-name/se/seabios/package.nix b/pkgs/by-name/se/seabios/package.nix index 32ca4b294d0340..4574b5faa28315 100644 --- a/pkgs/by-name/se/seabios/package.nix +++ b/pkgs/by-name/se/seabios/package.nix @@ -95,7 +95,7 @@ stdenv.mkDerivation (finalAttrs: { firmware = "${finalAttrs.finalPackage}/share/seabios/${biosfile}"; }; - meta = { + meta = with lib; { homepage = "https://www.seabios.org"; description = "Open source implementation of a 16bit x86 BIOS"; longDescription = '' @@ -103,9 +103,9 @@ stdenv.mkDerivation (finalAttrs: { It can run in an emulator or it can run natively on x86 hardware with the use of coreboot. ''; - license = with lib.licenses; [ lgpl3Plus ]; - maintainers = with lib.maintainers; [ sigmasquadron ]; - platforms = lib.systems.inspect.patternLogicalAnd lib.systems.inspect.patterns.isUnix lib.systems.inspect.patterns.isx86; - badPlatforms = [ lib.systems.inspect.patterns.isDarwin ]; + license = with licenses; [ lgpl3Plus ]; + maintainers = with maintainers; [ sigmasquadron ]; + platforms = systems.inspect.patternLogicalAnd systems.inspect.patterns.isUnix systems.inspect.patterns.isx86; + badPlatforms = [ systems.inspect.patterns.isDarwin ]; }; }) diff --git a/pkgs/by-name/se/sealcurses/package.nix b/pkgs/by-name/se/sealcurses/package.nix index efc40858f6552e..67919f0af29993 100644 --- a/pkgs/by-name/se/sealcurses/package.nix +++ b/pkgs/by-name/se/sealcurses/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation { cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ]; - meta = { + meta = with lib; { description = "SDL Emulation and Adaptation Layer for Curses (ncursesw)"; homepage = "https://git.skyjake.fi/skyjake/sealcurses"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ sikmir ]; - platforms = lib.platforms.unix; + license = licenses.bsd2; + maintainers = with maintainers; [ sikmir ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/se/sec/package.nix b/pkgs/by-name/se/sec/package.nix index 96c9192eacf601..af6ed1200f712d 100644 --- a/pkgs/by-name/se/sec/package.nix +++ b/pkgs/by-name/se/sec/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation rec { cp sec.man $out/share/man/man1/sec.1 ''; - meta = { + meta = with lib; { homepage = "https://simple-evcorr.github.io"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; description = "Simple Event Correlator"; - maintainers = [ lib.maintainers.tv ]; - platforms = lib.platforms.all; + maintainers = [ maintainers.tv ]; + platforms = platforms.all; mainProgram = "sec"; }; } diff --git a/pkgs/by-name/se/seccure/package.nix b/pkgs/by-name/se/seccure/package.nix index 4c51a81fc34fd3..3fd757c2145fea 100644 --- a/pkgs/by-name/se/seccure/package.nix +++ b/pkgs/by-name/se/seccure/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { mkdir -p $out/bin $out/share/man/man1 ''; - meta = { + meta = with lib; { homepage = "http://point-at-infinity.org/seccure/"; description = "Zero-configuration elliptic curve cryptography utility"; - platforms = lib.platforms.unix; - license = lib.licenses.lgpl3; + platforms = platforms.unix; + license = licenses.lgpl3; }; } diff --git a/pkgs/by-name/se/see-cat/package.nix b/pkgs/by-name/se/see-cat/package.nix index c8c213272a5216..479582c5f97aaf 100644 --- a/pkgs/by-name/se/see-cat/package.nix +++ b/pkgs/by-name/se/see-cat/package.nix @@ -21,7 +21,7 @@ rustPlatform.buildRustPackage rec { pkg-config ]; - meta = { + meta = with lib; { description = "Cute cat(1) for the terminal"; longDescription = '' see is a powerful file visualization tool for the terminal, offering @@ -31,8 +31,8 @@ rustPlatform.buildRustPackage rec { various file types directly in your console. ''; homepage = "https://github.com/guilhermeprokisch/see"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "see"; - maintainers = with lib.maintainers; [ louis-thevenet ]; + maintainers = with maintainers; [ louis-thevenet ]; }; } diff --git a/pkgs/by-name/se/semantic-release/package.nix b/pkgs/by-name/se/semantic-release/package.nix index 0a384dbb962fdd..b9f5340bbc9008 100644 --- a/pkgs/by-name/se/semantic-release/package.nix +++ b/pkgs/by-name/se/semantic-release/package.nix @@ -33,11 +33,11 @@ buildNpmPackage rec { '"version": "${version}"' ''; - meta = { + meta = with lib; { description = "Fully automated version management and package publishing"; mainProgram = "semantic-release"; homepage = "https://semantic-release.gitbook.io/semantic-release/"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.sestrella ]; + license = licenses.mit; + maintainers = [ maintainers.sestrella ]; }; } diff --git a/pkgs/by-name/se/seq-cli/package.nix b/pkgs/by-name/se/seq-cli/package.nix index 4c97eab7645038..792ff500d83e67 100644 --- a/pkgs/by-name/se/seq-cli/package.nix +++ b/pkgs/by-name/se/seq-cli/package.nix @@ -31,12 +31,12 @@ buildDotnetModule (finalAttrs: { command = "seqcli version"; }; - meta = { + meta = with lib; { description = "The Seq command-line client. Administer, log, ingest, search, from any OS"; homepage = "https://github.com/datalust/seqcli"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ hausken ]; + license = licenses.asl20; + maintainers = with maintainers; [ hausken ]; mainProgram = "seqcli"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/se/sequelpro/package.nix b/pkgs/by-name/se/sequelpro/package.nix index 8ded5e56349a4f..6ef9cfb031c8c4 100644 --- a/pkgs/by-name/se/sequelpro/package.nix +++ b/pkgs/by-name/se/sequelpro/package.nix @@ -21,10 +21,10 @@ stdenv.mkDerivation { chmod +x "$out/Applications/Sequel Pro.app/Contents/MacOS/Sequel Pro" ''; - meta = { + meta = with lib; { description = "MySQL database management for macOS"; homepage = "http://www.sequelpro.com/"; - license = lib.licenses.mit; - platforms = lib.platforms.darwin; + license = licenses.mit; + platforms = platforms.darwin; }; } diff --git a/pkgs/by-name/se/sequoia-sqop/package.nix b/pkgs/by-name/se/sequoia-sqop/package.nix index 6b464de530bcdb..b29920cf7f2a75 100644 --- a/pkgs/by-name/se/sequoia-sqop/package.nix +++ b/pkgs/by-name/se/sequoia-sqop/package.nix @@ -49,11 +49,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Implementation of the Stateless OpenPGP Command Line Interface using Sequoia"; homepage = "https://docs.sequoia-pgp.org/sqop/"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ doronbehar ]; mainProgram = "sqop"; }; } diff --git a/pkgs/by-name/se/sequoia-sqv/package.nix b/pkgs/by-name/se/sequoia-sqv/package.nix index c3b7e01b709fd8..807169d1f82bcf 100644 --- a/pkgs/by-name/se/sequoia-sqv/package.nix +++ b/pkgs/by-name/se/sequoia-sqv/package.nix @@ -48,11 +48,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Command-line OpenPGP signature verification tool"; homepage = "https://docs.sequoia-pgp.org/sqv/"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ doronbehar ]; mainProgram = "sqv"; }; } diff --git a/pkgs/by-name/se/sequoia-wot/package.nix b/pkgs/by-name/se/sequoia-wot/package.nix index cd881884c365b3..b3b25c1b99732f 100644 --- a/pkgs/by-name/se/sequoia-wot/package.nix +++ b/pkgs/by-name/se/sequoia-wot/package.nix @@ -84,11 +84,11 @@ rustPlatform.buildRustPackage rec { target/*/release/build/sequoia-wot-*/out/sq-wot-path.1 ''; - meta = { + meta = with lib; { description = "Rust CLI tool for authenticating bindings and exploring a web of trust"; homepage = "https://gitlab.com/sequoia-pgp/sequoia-wot"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Only; + maintainers = with maintainers; [ doronbehar Cryolitia ]; diff --git a/pkgs/by-name/se/serd/package.nix b/pkgs/by-name/se/serd/package.nix index 750591e0f2e23e..3cb77346bec7f1 100644 --- a/pkgs/by-name/se/serd/package.nix +++ b/pkgs/by-name/se/serd/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation rec { ''; }; - meta = { + meta = with lib; { description = "Lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples"; homepage = "https://drobilla.net/software/serd"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ samueltardieu ]; + license = licenses.isc; + maintainers = with maintainers; [ samueltardieu ]; mainProgram = "serdi"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/se/serious-sans/package.nix b/pkgs/by-name/se/serious-sans/package.nix index 64159fc2d482a5..f03942d210aa7f 100644 --- a/pkgs/by-name/se/serious-sans/package.nix +++ b/pkgs/by-name/se/serious-sans/package.nix @@ -24,11 +24,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/kaBeech/serious-sans"; description = "Legible monospace font for playful professionals"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ CobaltCause ]; - platforms = lib.platforms.all; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ CobaltCause ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/se/serpl/package.nix b/pkgs/by-name/se/serpl/package.nix index 8a21f6d784327a..a1c089bdb55d89 100644 --- a/pkgs/by-name/se/serpl/package.nix +++ b/pkgs/by-name/se/serpl/package.nix @@ -31,11 +31,11 @@ rustPlatform.buildRustPackage { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { description = "Simple terminal UI for search and replace, ala VS Code"; homepage = "https://github.com/yassinebridi/serpl.git"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ NotAShelf ]; + license = licenses.mit; + maintainers = with maintainers; [ NotAShelf ]; mainProgram = "serpl"; }; } diff --git a/pkgs/by-name/se/servo/package.nix b/pkgs/by-name/se/servo/package.nix index 26bac5cf3487ae..ad93f43dc890e3 100644 --- a/pkgs/by-name/se/servo/package.nix +++ b/pkgs/by-name/se/servo/package.nix @@ -143,12 +143,12 @@ rustPlatform.buildRustPackage { --prefix LD_LIBRARY_PATH : ${runtimePaths} ''; - meta = { + meta = with lib; { description = "The embeddable, independent, memory-safe, modular, parallel web rendering engine"; homepage = "https://servo.org"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ supinie ]; + license = licenses.mpl20; + maintainers = with maintainers; [ supinie ]; mainProgram = "servo"; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/by-name/se/setserial/package.nix b/pkgs/by-name/se/setserial/package.nix index 05564384699add..ca6f7bc462a0c9 100644 --- a/pkgs/by-name/se/setserial/package.nix +++ b/pkgs/by-name/se/setserial/package.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { preInstall = ''mkdir -p "$out/bin" "$out/share/man/man8"''; - meta = { + meta = with lib; { description = "Serial port configuration utility"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Only; + platforms = platforms.linux; + license = licenses.gpl2Only; mainProgram = "setserial"; }; } diff --git a/pkgs/by-name/se/setzer/package.nix b/pkgs/by-name/se/setzer/package.nix index 17e3cd0fefd5ec..65ea260e21e366 100644 --- a/pkgs/by-name/se/setzer/package.nix +++ b/pkgs/by-name/se/setzer/package.nix @@ -71,11 +71,11 @@ python3Packages.buildPythonApplication rec { runHook postCheck ''; - meta = { + meta = with lib; { description = "LaTeX editor written in Python with Gtk"; mainProgram = "setzer"; homepage = "https://www.cvfosammmm.org/setzer/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/sf/sfeed/package.nix b/pkgs/by-name/sf/sfeed/package.nix index 87a1dd0ba2f75c..26567bda97a262 100644 --- a/pkgs/by-name/sf/sfeed/package.nix +++ b/pkgs/by-name/sf/sfeed/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation (finalAttrs: { # otherwise does not find SIGWINCH env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-D_DARWIN_C_SOURCE"; - meta = { + meta = with lib; { homepage = "https://codemadness.org/sfeed-simple-feed-parser.html"; description = "RSS and Atom parser (and some format programs)"; longDescription = '' @@ -40,8 +40,8 @@ stdenv.mkDerivation (finalAttrs: { to import and export OPML and to fetch, filter, merge and order feed items. ''; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.matthiasbeyer ]; - platforms = lib.platforms.all; + license = licenses.isc; + maintainers = [ maintainers.matthiasbeyer ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/sg/sgx-azure-dcap-client/package.nix b/pkgs/by-name/sg/sgx-azure-dcap-client/package.nix index 2ccace2d3c27f9..b3e4b6e1ae41ff 100644 --- a/pkgs/by-name/sg/sgx-azure-dcap-client/package.nix +++ b/pkgs/by-name/sg/sgx-azure-dcap-client/package.nix @@ -85,15 +85,15 @@ stdenv.mkDerivation rec { # $(nix-build -A sgx-azure-dcap-client.tests.suite)/bin/tests passthru.tests.suite = callPackage ./test-suite.nix { }; - meta = { + meta = with lib; { description = "Interfaces between SGX SDKs and the Azure Attestation SGX Certification Cache"; homepage = "https://github.com/microsoft/azure-dcap-client"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ phlip9 trundle veehaitch ]; platforms = [ "x86_64-linux" ]; - license = [ lib.licenses.mit ]; + license = [ licenses.mit ]; }; } diff --git a/pkgs/by-name/sg/sgx-ssl/package.nix b/pkgs/by-name/sg/sgx-ssl/package.nix index f67a960ace58e6..539a1506dd0397 100644 --- a/pkgs/by-name/sg/sgx-ssl/package.nix +++ b/pkgs/by-name/sg/sgx-ssl/package.nix @@ -80,16 +80,16 @@ stdenv.mkDerivation { }; }; - meta = { + meta = with lib; { description = "Cryptographic library for Intel SGX enclave applications based on OpenSSL"; homepage = "https://github.com/intel/intel-sgx-ssl"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ phlip9 trundle veehaitch ]; platforms = [ "x86_64-linux" ]; - license = with lib.licenses; [ + license = with licenses; [ bsd3 openssl ]; diff --git a/pkgs/by-name/sg/sgxs-tools/package.nix b/pkgs/by-name/sg/sgxs-tools/package.nix index 1364c2ac0689ac..150950749dce4a 100644 --- a/pkgs/by-name/sg/sgxs-tools/package.nix +++ b/pkgs/by-name/sg/sgxs-tools/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { hash = "sha256-24lUhi4IPv+asM51/BfufkOUYVellXoXsbWXWN/zoBw="; }; cargoHash = "sha256-vtuOCLo7qBOfqMynykqf9folmlETx3or35+CuTurh3s="; - meta = { + meta = with lib; { description = "Utilities for working with the SGX stream format"; homepage = "https://github.com/fortanix/rust-sgx"; - maintainers = [ lib.maintainers.ozwaldorf ]; + maintainers = [ maintainers.ozwaldorf ]; platforms = [ "x86_64-linux" ]; - license = lib.licenses.mpl20; + license = licenses.mpl20; }; } diff --git a/pkgs/by-name/sh/shader-slang/package.nix b/pkgs/by-name/sh/shader-slang/package.nix index 9c750231177725..47cb742d2c4ded 100644 --- a/pkgs/by-name/sh/shader-slang/package.nix +++ b/pkgs/by-name/sh/shader-slang/package.nix @@ -147,12 +147,12 @@ stdenv.mkDerivation (finalAttrs: { ignoredVersions = "*-draft"; }; - meta = { + meta = with lib; { description = "A shading language that makes it easier to build and maintain large shader codebases in a modular and extensible fashion"; homepage = "https://github.com/shader-slang/slang"; - license = lib.licenses.asl20-llvm; - maintainers = with lib.maintainers; [ niklaskorz ]; + license = licenses.asl20-llvm; + maintainers = with maintainers; [ niklaskorz ]; mainProgram = "slangc"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/sh/shadps4/package.nix b/pkgs/by-name/sh/shadps4/package.nix index 6c5fc826bcfc6a..d1969048333586 100644 --- a/pkgs/by-name/sh/shadps4/package.nix +++ b/pkgs/by-name/sh/shadps4/package.nix @@ -126,15 +126,15 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { description = "Early in development PS4 emulator"; homepage = "https://github.com/shadps4-emu/shadPS4"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + maintainers = with maintainers; [ ryand56 liberodark ]; mainProgram = "shadps4"; - platforms = lib.intersectLists lib.platforms.linux lib.platforms.x86_64; + platforms = intersectLists platforms.linux platforms.x86_64; }; }) diff --git a/pkgs/by-name/sh/shairport-sync/package.nix b/pkgs/by-name/sh/shairport-sync/package.nix index 30a24ea398384e..5c9597964f1e95 100644 --- a/pkgs/by-name/sh/shairport-sync/package.nix +++ b/pkgs/by-name/sh/shairport-sync/package.nix @@ -141,15 +141,15 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = { + meta = with lib; { homepage = "https://github.com/mikebrady/shairport-sync"; description = "Airtunes server and emulator with multi-room capabilities"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "shairport-sync"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ lnl7 jordanisaacs ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/sh/share-preview/package.nix b/pkgs/by-name/sh/share-preview/package.nix index 2945bd6582fecb..33bf805ca962bb 100644 --- a/pkgs/by-name/sh/share-preview/package.nix +++ b/pkgs/by-name/sh/share-preview/package.nix @@ -62,12 +62,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Preview and debug websites metadata tags for social media share"; homepage = "https://apps.gnome.org/SharePreview"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "share-preview"; - maintainers = lib.teams.gnome-circle.members; - platforms = lib.platforms.unix; + maintainers = teams.gnome-circle.members; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/sh/shark/package.nix b/pkgs/by-name/sh/shark/package.nix index 1bd6a9ab94c354..798c2d680614e7 100644 --- a/pkgs/by-name/sh/shark/package.nix +++ b/pkgs/by-name/sh/shark/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; - meta = { + meta = with lib; { description = "Fast, modular, general open-source C++ machine learning library"; homepage = "https://shark-ml.github.io/Shark/"; - license = lib.licenses.lgpl3Only; - maintainers = with lib.maintainers; [ daspk04 ]; + license = licenses.lgpl3Only; + maintainers = with maintainers; [ daspk04 ]; }; }) diff --git a/pkgs/by-name/sh/sharpsat-td/package.nix b/pkgs/by-name/sh/sharpsat-td/package.nix index 88515bc32acb65..3b6ffa5b26cb3f 100644 --- a/pkgs/by-name/sh/sharpsat-td/package.nix +++ b/pkgs/by-name/sh/sharpsat-td/package.nix @@ -77,14 +77,14 @@ stdenv.mkDerivation rec { runHook postInstallCheck ''; - meta = { + meta = with lib; { description = "Fast solver for the #SAT model counting problem"; homepage = "https://github.com/Laakeri/sharpsat-td"; - license = with lib.licenses; [ + license = with licenses; [ mit asl20 ]; - maintainers = with lib.maintainers; [ ris ]; + maintainers = with maintainers; [ ris ]; # uses clhash, which is non-portable platforms = [ "x86_64-linux" diff --git a/pkgs/by-name/sh/shavee/package.nix b/pkgs/by-name/sh/shavee/package.nix index a34066fb880059..25edb72cacec47 100644 --- a/pkgs/by-name/sh/shavee/package.nix +++ b/pkgs/by-name/sh/shavee/package.nix @@ -37,12 +37,12 @@ rustPlatform.buildRustPackage rec { "--skip=filehash::tests::get_filehash_unit_test" ]; - meta = { + meta = with lib; { homepage = "https://github.com/ashuio/shavee"; description = "Program to automatically decrypt and mount ZFS datasets using Yubikey HMAC as 2FA or any File on USB/SFTP/HTTPS"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ jasonodoom ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ jasonodoom ]; + platforms = platforms.linux; mainProgram = "shavee"; }; } diff --git a/pkgs/by-name/sh/shellcheck-sarif/package.nix b/pkgs/by-name/sh/shellcheck-sarif/package.nix index 29f12cba22e6b1..2999f2c40ccf48 100644 --- a/pkgs/by-name/sh/shellcheck-sarif/package.nix +++ b/pkgs/by-name/sh/shellcheck-sarif/package.nix @@ -23,11 +23,11 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "CLI tool to convert shellcheck diagnostics into SARIF"; homepage = "https://psastras.github.io/sarif-rs"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ getchoo ]; + license = licenses.mit; + maintainers = with maintainers; [ getchoo ]; mainProgram = "shellcheck-sarif"; }; } diff --git a/pkgs/by-name/sh/sherlock/package.nix b/pkgs/by-name/sh/sherlock/package.nix index 436066f9e30a60..8242424a38a18a 100644 --- a/pkgs/by-name/sh/sherlock/package.nix +++ b/pkgs/by-name/sh/sherlock/package.nix @@ -73,11 +73,11 @@ python3.pkgs.buildPythonApplication rec { "'not online'" ]; - meta = { + meta = with lib; { homepage = "https://sherlockproject.xyz/"; description = "Hunt down social media accounts by username across social networks"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "sherlock"; - maintainers = with lib.maintainers; [ applePrincess ]; + maintainers = with maintainers; [ applePrincess ]; }; } diff --git a/pkgs/by-name/sh/shipwright/package.nix b/pkgs/by-name/sh/shipwright/package.nix index 3c1511efdb52d7..ea5679d4c5102c 100644 --- a/pkgs/by-name/sh/shipwright/package.nix +++ b/pkgs/by-name/sh/shipwright/package.nix @@ -187,16 +187,16 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = { + meta = with lib; { homepage = "https://github.com/HarbourMasters/Shipwright"; description = "A PC port of Ocarina of Time with modern controls, widescreen, high-resolution, and more"; mainProgram = "soh"; - platforms = [ "x86_64-linux" ] ++ lib.platforms.darwin; - maintainers = with lib.maintainers; [ + platforms = [ "x86_64-linux" ] ++ platforms.darwin; + maintainers = with maintainers; [ j0lol matteopacini ]; - license = with lib.licenses; [ + license = with licenses; [ # OTRExporter, OTRGui, ZAPDTR, libultraship mit # Ship of Harkinian itself diff --git a/pkgs/by-name/sh/shittier/package.nix b/pkgs/by-name/sh/shittier/package.nix index 97cdc57b046a7e..5f9f1f5b8a047b 100644 --- a/pkgs/by-name/sh/shittier/package.nix +++ b/pkgs/by-name/sh/shittier/package.nix @@ -20,11 +20,11 @@ buildNpmPackage rec { npmDepsHash = "sha256-oC9eOpoMZLZbyx9XnC4m5zzqORQWP62uRDNVZjyVnBs="; - meta = { + meta = with lib; { description = "Unconventional code formatting tool for JavaScript"; mainProgram = "shittier"; homepage = "https://github.com/rohitdhas/shittier"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ totoroot ]; + license = licenses.mit; + maintainers = with maintainers; [ totoroot ]; }; } diff --git a/pkgs/by-name/sh/shntool/package.nix b/pkgs/by-name/sh/shntool/package.nix index a176c11ce5e2ee..36b15cf915ff58 100644 --- a/pkgs/by-name/sh/shntool/package.nix +++ b/pkgs/by-name/sh/shntool/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { patches=$(grep -v '#' ./debian/patches/series | while read patch; do echo "./debian/patches/$patch"; done | tr '\n' ' ') ''; - meta = { + meta = with lib; { description = "Multi-purpose WAVE data processing and reporting utility"; homepage = "https://packages.qa.debian.org/s/shntool.html"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ jcumming ]; + license = licenses.gpl2Plus; + platforms = platforms.all; + maintainers = with maintainers; [ jcumming ]; }; } diff --git a/pkgs/by-name/sh/shoreline/package.nix b/pkgs/by-name/sh/shoreline/package.nix index b0eac00023858a..63d69772579a16 100644 --- a/pkgs/by-name/sh/shoreline/package.nix +++ b/pkgs/by-name/sh/shoreline/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; - meta = { + meta = with lib; { description = "Very fast (200+ Gbit/s) pixelflut server written in C with full IPv6 support"; homepage = "https://github.com/TobleMiner/shoreline"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ zebreus ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ zebreus ]; + platforms = platforms.linux; mainProgram = "shoreline"; }; } diff --git a/pkgs/by-name/sh/shorewall/package.nix b/pkgs/by-name/sh/shorewall/package.nix index 8535a2dc170517..7f0b4f1afbae27 100644 --- a/pkgs/by-name/sh/shorewall/package.nix +++ b/pkgs/by-name/sh/shorewall/package.nix @@ -107,7 +107,7 @@ stdenv.mkDerivation rec { -e 's~^CONFDIR=.*~CONFDIR=/etc~' ''; - meta = { + meta = with lib; { homepage = "http://www.shorewall.net/"; description = "IP gateway/firewall configuration tool for GNU/Linux"; longDescription = '' @@ -121,7 +121,7 @@ stdenv.mkDerivation rec { not use Netfilter's ipchains compatibility mode and can thus take advantage of Netfilter's connection state tracking capabilities. ''; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sh/shortwave/package.nix b/pkgs/by-name/sh/shortwave/package.nix index e4344f09343786..dfc47d2534083b 100644 --- a/pkgs/by-name/sh/shortwave/package.nix +++ b/pkgs/by-name/sh/shortwave/package.nix @@ -82,12 +82,12 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { homepage = "https://gitlab.gnome.org/World/Shortwave"; description = "Find and listen to internet radio stations"; mainProgram = "shortwave"; - maintainers = with lib.maintainers; [ lasandell ] ++ lib.teams.gnome-circle.members; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ lasandell ] ++ teams.gnome-circle.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sh/shoutrrr/package.nix b/pkgs/by-name/sh/shoutrrr/package.nix index 1b2a16b7db1aac..a9bbca3e0e5e66 100644 --- a/pkgs/by-name/sh/shoutrrr/package.nix +++ b/pkgs/by-name/sh/shoutrrr/package.nix @@ -19,12 +19,12 @@ buildGoModule { vendorHash = "sha256-+LDA3Q6OSxHwKYoO5gtNUryB9EbLe2jJtUbLXnA2Lug="; - meta = { + meta = with lib; { description = "Notification library for gophers and their furry friends"; homepage = "https://github.com/containrrr/shoutrrr"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ JManch ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ JManch ]; + platforms = platforms.unix; mainProgram = "shoutrrr"; }; } diff --git a/pkgs/by-name/sh/showtime/package.nix b/pkgs/by-name/sh/showtime/package.nix index 68945b8c27ab78..be5f229adc92f0 100644 --- a/pkgs/by-name/sh/showtime/package.nix +++ b/pkgs/by-name/sh/showtime/package.nix @@ -67,11 +67,11 @@ python3Packages.buildPythonApplication rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Watch without distraction"; homepage = "https://apps.gnome.org/Showtime"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ getchoo ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ getchoo ]; mainProgram = "showtime"; }; } diff --git a/pkgs/by-name/sh/shpool/package.nix b/pkgs/by-name/sh/shpool/package.nix index 744c0c41d3cf42..94ac364d71766e 100644 --- a/pkgs/by-name/sh/shpool/package.nix +++ b/pkgs/by-name/sh/shpool/package.nix @@ -45,12 +45,12 @@ rustPlatform.buildRustPackage rec { package = shpool; }; - meta = { + meta = with lib; { description = "Persistent session management like tmux, but more lightweight"; homepage = "https://github.com/shell-pool/shpool"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "shpool"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/si/sic/package.nix b/pkgs/by-name/si/sic/package.nix index 0edf706b0fb6ac..071aaac6d3164c 100644 --- a/pkgs/by-name/si/sic/package.nix +++ b/pkgs/by-name/si/sic/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { description = "Simple IRC client"; mainProgram = "sic"; homepage = "https://tools.suckless.org/sic/"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; + license = licenses.mit; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/si/sidekick/package.nix b/pkgs/by-name/si/sidekick/package.nix index 3ff0b4340c4485..5641593244389b 100644 --- a/pkgs/by-name/si/sidekick/package.nix +++ b/pkgs/by-name/si/sidekick/package.nix @@ -44,11 +44,11 @@ buildGoModule rec { ]; versionCheckProgramArg = "--version"; - meta = { + meta = with lib; { description = "Command-line tool designed to simplify the process of deploying and managing applications on a VPS"; mainProgram = "sidekick"; homepage = "https://github.com/MightyMoud/sidekick"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ nipeharefa ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ nipeharefa ]; }; } diff --git a/pkgs/by-name/si/sieve-editor-gui/package.nix b/pkgs/by-name/si/sieve-editor-gui/package.nix index ee374f83516998..b244adae368d8b 100644 --- a/pkgs/by-name/si/sieve-editor-gui/package.nix +++ b/pkgs/by-name/si/sieve-editor-gui/package.nix @@ -59,12 +59,12 @@ buildNpmPackage rec { --add-flags $out/electron/resources/main_esm.js ''; - meta = { + meta = with lib; { description = "Activate, edit, delete and add Sieve scripts with a convenient interface"; homepage = "https://github.com/thsmi/sieve"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ Silver-Golden ]; - platforms = lib.platforms.linux; + license = licenses.agpl3Only; + maintainers = with maintainers; [ Silver-Golden ]; + platforms = platforms.linux; mainProgram = "sieve-editor-gui"; }; } diff --git a/pkgs/by-name/si/sig/package.nix b/pkgs/by-name/si/sig/package.nix index fa5244f9152309..4a73630f985fd0 100644 --- a/pkgs/by-name/si/sig/package.nix +++ b/pkgs/by-name/si/sig/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-afsLf/WsCShjagYWDUA3ZgpgK1XjQiZzISZngzzYybg="; - meta = { + meta = with lib; { description = "Interactive grep (for streaming)"; homepage = "https://github.com/ynqa/sig"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ qaidvoid ]; + license = licenses.mit; + maintainers = with maintainers; [ qaidvoid ]; mainProgram = "sig"; }; } diff --git a/pkgs/by-name/si/silc_client/package.nix b/pkgs/by-name/si/silc_client/package.nix index dc8405ddc89b82..3168891354d0ba 100644 --- a/pkgs/by-name/si/silc_client/package.nix +++ b/pkgs/by-name/si/silc_client/package.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { ncurses ]; - meta = { + meta = with lib; { homepage = "http://silcnet.org/"; description = "Secure Internet Live Conferencing server"; mainProgram = "silc"; - license = lib.licenses.gpl2; + license = licenses.gpl2; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/si/silc_server/package.nix b/pkgs/by-name/si/silc_server/package.nix index 22d706ce3fa4f5..d01c0e519041a3 100644 --- a/pkgs/by-name/si/silc_server/package.nix +++ b/pkgs/by-name/si/silc_server/package.nix @@ -13,12 +13,12 @@ stdenv.mkDerivation rec { sha256 = "0nr0hrwr4kbi611qazmrify7a27nzxb5n7d97f5i9cw3avxlw38s"; }; - meta = { + meta = with lib; { homepage = "http://silcnet.org/"; description = "Secure Internet Live Conferencing server"; mainProgram = "silcd"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/si/silice/package.nix b/pkgs/by-name/si/silice/package.nix index 247f9b8f3eaa67..c240b8dc0455a9 100644 --- a/pkgs/by-name/si/silice/package.nix +++ b/pkgs/by-name/si/silice/package.nix @@ -110,15 +110,15 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Open source language that simplifies prototyping and writing algorithms on FPGA architectures"; homepage = "https://github.com/sylefeb/Silice"; - license = lib.licenses.bsd2; + license = licenses.bsd2; mainProgram = "silice"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ astro pbsds ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/si/silx/package.nix b/pkgs/by-name/si/silx/package.nix index 6b80d173da79fb..caa848128e1362 100644 --- a/pkgs/by-name/si/silx/package.nix +++ b/pkgs/by-name/si/silx/package.nix @@ -30,12 +30,12 @@ python3Packages.buildPythonApplication rec { fabio ]; - meta = { + meta = with lib; { changelog = "https://github.com/silx-kit/silx/blob/main/CHANGELOG.rst"; description = "Software to support data assessment, reduction and analysis at synchrotron radiation facilities"; homepage = "https://github.com/silx-kit/silx"; - license = [ lib.licenses.mit ]; - maintainers = [ lib.maintainers.pmiddend ]; + license = [ licenses.mit ]; + maintainers = [ maintainers.pmiddend ]; mainProgram = "silx"; }; diff --git a/pkgs/by-name/si/simple-live-app/package.nix b/pkgs/by-name/si/simple-live-app/package.nix index 9186f1f6a5d68a..d88f7158029ef2 100644 --- a/pkgs/by-name/si/simple-live-app/package.nix +++ b/pkgs/by-name/si/simple-live-app/package.nix @@ -114,12 +114,12 @@ flutter324.buildFlutterApplication rec { --prefix LD_LIBRARY_PATH : "$out/app/simple-live-app/lib" ''; - meta = { + meta = with lib; { description = "Simply Watch Live"; homepage = "https://github.com/xiaoyaocz/dart_simple_live"; mainProgram = "simple_live_app"; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ aucub ]; - platforms = lib.platforms.linux; + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ aucub ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/si/simple64-netplay-server/package.nix b/pkgs/by-name/si/simple64-netplay-server/package.nix index d91a8e266dfa9f..14433f4ff51924 100644 --- a/pkgs/by-name/si/simple64-netplay-server/package.nix +++ b/pkgs/by-name/si/simple64-netplay-server/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-1gySXbp1N0lnWToVQU3N9zQxl9Z0e9ICCeAIKwSoxaY="; - meta = { + meta = with lib; { description = "Dedicated server for simple64 netplay"; homepage = "https://github.com/simple64/simple64-netplay-server"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "simple64-netplay-server"; - maintainers = with lib.maintainers; [ tomasajt ]; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/by-name/si/simple64/package.nix b/pkgs/by-name/si/simple64/package.nix index f98cc8732692ca..c1e9b973fd9649 100644 --- a/pkgs/by-name/si/simple64/package.nix +++ b/pkgs/by-name/si/simple64/package.nix @@ -112,12 +112,12 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = { + meta = with lib; { description = "Easy to use N64 emulator"; homepage = "https://simple64.github.io"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "simple64-gui"; - maintainers = with lib.maintainers; [ tomasajt ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ tomasajt ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/si/simpleini/package.nix b/pkgs/by-name/si/simpleini/package.nix index 8982c1f53a8d47..8f97d1f16f2c3a 100644 --- a/pkgs/by-name/si/simpleini/package.nix +++ b/pkgs/by-name/si/simpleini/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Cross-platform C++ library providing a simple API to read and write INI-style configuration files"; longDescription = '' A cross-platform library that provides a simple API to read and write @@ -43,11 +43,11 @@ stdenv.mkDerivation (finalAttrs: { using the MIT licence. ''; homepage = "https://github.com/brofield/simpleini"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ HeitorAugustoLN AndersonTorres ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/si/simplesamlphp/package.nix b/pkgs/by-name/si/simplesamlphp/package.nix index 35ae0774f99a0b..7a6272b680eec8 100644 --- a/pkgs/by-name/si/simplesamlphp/package.nix +++ b/pkgs/by-name/si/simplesamlphp/package.nix @@ -16,10 +16,10 @@ php.buildComposerProject (finalAttrs: { vendorHash = "sha256-FMFD0AXmD7Rq4d9+aNtGVk11YuOt40FWEqxvf+gBjmI="; - meta = { + meta = with lib; { description = "SimpleSAMLphp is an application written in native PHP that deals with authentication (SQL, .htpasswd, YubiKey, LDAP, PAPI, Radius)"; homepage = "https://simplesamlphp.org"; - license = lib.licenses.lgpl21; - maintainers = with lib.maintainers; [ nhnn ]; + license = licenses.lgpl21; + maintainers = with maintainers; [ nhnn ]; }; }) diff --git a/pkgs/by-name/si/simulide/package.nix b/pkgs/by-name/si/simulide/package.nix index 1f82243942f91e..340160637ec6ce 100644 --- a/pkgs/by-name/si/simulide/package.nix +++ b/pkgs/by-name/si/simulide/package.nix @@ -123,7 +123,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Simple real time electronic circuit simulator"; longDescription = '' SimulIDE is a simple real time electronic circuit simulator, intended for hobbyist or students @@ -131,9 +131,9 @@ stdenv.mkDerivation { It supports PIC, AVR, Arduino and other MCUs and MPUs. ''; homepage = "https://simulide.com/"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "simulide"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ carloscraveiro tomasajt ]; diff --git a/pkgs/by-name/si/single-file-cli/package.nix b/pkgs/by-name/si/single-file-cli/package.nix index 541fd9bdd95cde..904f255cc3bcf0 100644 --- a/pkgs/by-name/si/single-file-cli/package.nix +++ b/pkgs/by-name/si/single-file-cli/package.nix @@ -44,11 +44,11 @@ buildNpmPackage { runHook postCheck ''; - meta = { + meta = with lib; { description = "CLI tool for saving a faithful copy of a complete web page in a single HTML file"; homepage = "https://github.com/gildas-lormeau/single-file-cli"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ n8henrie ]; + license = licenses.agpl3Only; + maintainers = with maintainers; [ n8henrie ]; mainProgram = "single-file"; }; } diff --git a/pkgs/by-name/si/siproxd/package.nix b/pkgs/by-name/si/siproxd/package.nix index 45e3ce71eee27c..f864464ac539f5 100644 --- a/pkgs/by-name/si/siproxd/package.nix +++ b/pkgs/by-name/si/siproxd/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { sqlite ]; - meta = { + meta = with lib; { homepage = "http://siproxd.sourceforge.net/"; description = "Masquerading SIP Proxy Server"; mainProgram = "siproxd"; maintainers = [ ]; - platforms = with lib.platforms; linux; - license = lib.licenses.gpl2Plus; + platforms = with platforms; linux; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/si/sipwitch/package.nix b/pkgs/by-name/si/sipwitch/package.nix index b79edcd0848ad7..776636b28fbce1 100644 --- a/pkgs/by-name/si/sipwitch/package.nix +++ b/pkgs/by-name/si/sipwitch/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { description = "Secure peer-to-peer VoIP server that uses the SIP protocol"; homepage = "https://www.gnu.org/software/sipwitch/"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; broken = true; # Require libexosip2 < 5.0.0 which is vulnerable to CVE-2014-10375. }; } diff --git a/pkgs/by-name/si/sixpair/package.nix b/pkgs/by-name/si/sixpair/package.nix index aae35dca39438b..2f731156a33f5d 100644 --- a/pkgs/by-name/si/sixpair/package.nix +++ b/pkgs/by-name/si/sixpair/package.nix @@ -31,15 +31,15 @@ stdenv.mkDerivation { cp sixpair $out/bin/sixpair ''; - meta = { + meta = with lib; { description = "Pair with SIXAXIS controllers over USB"; longDescription = '' This command-line utility searches USB buses for SIXAXIS controllers and tells them to connect to a new Bluetooth master. ''; homepage = "http://www.pabr.org/sixlinux/"; - license = lib.licenses.gpl2Only; - maintainers = [ lib.maintainers.tomsmeets ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + maintainers = [ maintainers.tomsmeets ]; + platforms = platforms.linux; mainProgram = "sixpair"; }; } diff --git a/pkgs/by-name/sk/skeema/package.nix b/pkgs/by-name/sk/skeema/package.nix index 9b56e3028e5106..12ec8b32202df7 100644 --- a/pkgs/by-name/sk/skeema/package.nix +++ b/pkgs/by-name/sk/skeema/package.nix @@ -61,11 +61,11 @@ buildGoModule rec { package = skeema; }; - meta = { + meta = with lib; { description = "Declarative pure-SQL schema management for MySQL and MariaDB"; homepage = "https://skeema.io/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.asl20; + maintainers = with maintainers; [ aaronjheng ]; mainProgram = "skeema"; }; } diff --git a/pkgs/by-name/sk/sketchybar-app-font/package.nix b/pkgs/by-name/sk/sketchybar-app-font/package.nix index 3790f8a00b110c..00fed78c11be8e 100644 --- a/pkgs/by-name/sk/sketchybar-app-font/package.nix +++ b/pkgs/by-name/sk/sketchybar-app-font/package.nix @@ -49,14 +49,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Ligature-based symbol font and a mapping function for sketchybar"; longDescription = '' A ligature-based symbol font and a mapping function for sketchybar, inspired by simple-bar's usage of community-contributed minimalistic app icons. ''; homepage = "https://github.com/kvndrsslr/sketchybar-app-font"; - license = lib.licenses.cc0; - maintainers = with lib.maintainers; [ khaneliman ]; - platforms = lib.platforms.all; + license = licenses.cc0; + maintainers = with maintainers; [ khaneliman ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/sk/sketchybar/package.nix b/pkgs/by-name/sk/sketchybar/package.nix index 0fa7b1deeacb85..4bde03ec5d3a92 100644 --- a/pkgs/by-name/sk/sketchybar/package.nix +++ b/pkgs/by-name/sk/sketchybar/package.nix @@ -49,15 +49,15 @@ stdenv.mkDerivation (finalAttrs: { versionCheckProgramArg = "--version"; doInstallCheck = true; - meta = { + meta = with lib; { description = "Highly customizable macOS status bar replacement"; homepage = "https://github.com/FelixKratz/SketchyBar"; - license = lib.licenses.gpl3; + license = licenses.gpl3; mainProgram = "sketchybar"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ azuwis khaneliman ]; - platforms = lib.platforms.darwin; + platforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/sk/skhd/package.nix b/pkgs/by-name/sk/skhd/package.nix index ba67625484606e..f886cdc3d9ba11 100644 --- a/pkgs/by-name/sk/skhd/package.nix +++ b/pkgs/by-name/sk/skhd/package.nix @@ -32,17 +32,17 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Simple hotkey daemon for macOS"; homepage = "https://github.com/koekeishiya/skhd"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "skhd"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ cmacrae lnl7 periklis khaneliman ]; - platforms = lib.platforms.darwin; + platforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/sk/skktools/package.nix b/pkgs/by-name/sk/skktools/package.nix index 7fb5f1992a84b9..dfb552c7966d63 100644 --- a/pkgs/by-name/sk/skktools/package.nix +++ b/pkgs/by-name/sk/skktools/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { glib ]; - meta = { + meta = with lib; { description = "Collection of tools to edit SKK dictionaries"; longDescription = '' This package provides a collection of tools to manipulate @@ -48,8 +48,8 @@ stdenv.mkDerivation rec { input method. ''; homepage = "https://github.com/skk-dev/skktools"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ yuriaisaka ]; - platforms = with lib.platforms; linux ++ darwin; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ yuriaisaka ]; + platforms = with platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/sk/skypeforlinux/package.nix b/pkgs/by-name/sk/skypeforlinux/package.nix index 40d68b0bbe9565..af2069d7d81b6e 100644 --- a/pkgs/by-name/sk/skypeforlinux/package.nix +++ b/pkgs/by-name/sk/skypeforlinux/package.nix @@ -181,13 +181,13 @@ stdenv.mkDerivation { fi ''; - meta = { + meta = with lib; { description = "Linux client for Skype"; homepage = "https://www.skype.com"; changelog = "https://support.microsoft.com/en-us/skype/what-s-new-in-skype-for-windows-mac-linux-and-web-d32f674c-abb3-40a5-a0b7-ee269ca60831"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - maintainers = [ lib.maintainers.mjoerg ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = [ maintainers.mjoerg ]; platforms = [ "x86_64-linux" ]; mainProgram = "skypeforlinux"; }; diff --git a/pkgs/by-name/sk/skypilot/package.nix b/pkgs/by-name/sk/skypilot/package.nix index c7b46b56b9f656..19e6453dd78d51 100644 --- a/pkgs/by-name/sk/skypilot/package.nix +++ b/pkgs/by-name/sk/skypilot/package.nix @@ -45,7 +45,7 @@ python3Packages.buildPythonApplication rec { wheel ]; - meta = { + meta = with lib; { description = "Run LLMs and AI on any Cloud"; longDescription = '' SkyPilot is a framework for running LLMs, AI, and batch jobs on any @@ -53,8 +53,8 @@ python3Packages.buildPythonApplication rec { managed execution. ''; homepage = "https://github.com/skypilot-org/skypilot"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ seanrmurphy ]; + license = licenses.asl20; + maintainers = with maintainers; [ seanrmurphy ]; mainProgram = "sky"; }; } diff --git a/pkgs/by-name/sl/sla2pdf/package.nix b/pkgs/by-name/sl/sla2pdf/package.nix index 92138f3c998ee7..5e73f5a60dba0c 100644 --- a/pkgs/by-name/sl/sla2pdf/package.nix +++ b/pkgs/by-name/sl/sla2pdf/package.nix @@ -23,14 +23,14 @@ python3.pkgs.buildPythonApplication { "--prefix PATH : ${lib.makeBinPath [ scribus ]}" ]; - meta = { + meta = with lib; { description = "Convert Scribus SLA files to PDF from the command line"; homepage = "https://github.com/sla2pdf-team/sla2pdf"; - license = with lib.licenses; [ + license = with licenses; [ cc-by-40 mpl20 ]; - maintainers = with lib.maintainers; [ ob7 ]; + maintainers = with maintainers; [ ob7 ]; mainProgram = "sla2pdf"; }; } diff --git a/pkgs/by-name/sl/slack-cli/package.nix b/pkgs/by-name/sl/slack-cli/package.nix index 49e1543e1a25a8..e1cd9e60f334e9 100644 --- a/pkgs/by-name/sl/slack-cli/package.nix +++ b/pkgs/by-name/sl/slack-cli/package.nix @@ -58,10 +58,10 @@ stdenv.mkDerivation rec { chmod +x "$out/bin/slack" ''; - meta = { - license = lib.licenses.mit; + meta = with lib; { + license = licenses.mit; maintainers = [ ]; mainProgram = "slack"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/sl/sleek-grub-theme/package.nix b/pkgs/by-name/sl/sleek-grub-theme/package.nix index f9814c485842ac..f06439b800a7de 100644 --- a/pkgs/by-name/sl/sleek-grub-theme/package.nix +++ b/pkgs/by-name/sl/sleek-grub-theme/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Grub bootloader themes, contains light/dark/orange/bigSur styles"; homepage = "https://github.com/sandesh236/sleek--themes"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ luochen1990 ]; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ luochen1990 ]; }; } diff --git a/pkgs/by-name/sl/sleek-todo/package.nix b/pkgs/by-name/sl/sleek-todo/package.nix index 84436b9a732a70..044f29e0e9e76a 100644 --- a/pkgs/by-name/sl/sleek-todo/package.nix +++ b/pkgs/by-name/sl/sleek-todo/package.nix @@ -26,11 +26,11 @@ let } .${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.system}"); - meta = { + meta = with lib; { description = "Todo manager based on todo.txt syntax"; homepage = "https://github.com/ransome1/sleek"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ByteSudoer ]; + license = licenses.mit; + maintainers = with maintainers; [ ByteSudoer ]; mainProgram = "sleek-todo"; platforms = [ "x86_64-linux" diff --git a/pkgs/by-name/sl/slimevr-server/package.nix b/pkgs/by-name/sl/slimevr-server/package.nix index 2cc03b62f7942f..3d04af1d4ed1d8 100644 --- a/pkgs/by-name/sl/slimevr-server/package.nix +++ b/pkgs/by-name/sl/slimevr-server/package.nix @@ -86,18 +86,18 @@ stdenv.mkDerivation (finalAttrs: { # `slimevr-server` is updated by the `slimevr` update script. }; - meta = { + meta = with lib; { homepage = "https://docs.slimevr.dev/"; description = "App for facilitating full-body tracking in virtual reality"; - license = with lib.licenses; [ + license = with licenses; [ mit asl20 ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ gale-username imurx ]; - platforms = with lib.platforms; darwin ++ linux; + platforms = with platforms; darwin ++ linux; mainProgram = "slimevr-server"; }; }) diff --git a/pkgs/by-name/sl/sloth-app/package.nix b/pkgs/by-name/sl/sloth-app/package.nix index 1b9a2bbb8934c8..152f2d414d4b13 100644 --- a/pkgs/by-name/sl/sloth-app/package.nix +++ b/pkgs/by-name/sl/sloth-app/package.nix @@ -32,13 +32,13 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Mac app that shows all open files, directories, sockets, pipes and devices"; homepage = "https://sveinbjorn.org/sloth"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "Sloth"; - maintainers = with lib.maintainers; [ emilytrau ]; - platforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ emilytrau ]; + platforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/sl/sloth/package.nix b/pkgs/by-name/sl/sloth/package.nix index 8258994e546fe1..f486c1f725ae9e 100644 --- a/pkgs/by-name/sl/sloth/package.nix +++ b/pkgs/by-name/sl/sloth/package.nix @@ -19,12 +19,12 @@ buildGoModule rec { subPackages = [ "cmd/sloth" ]; - meta = { + meta = with lib; { description = "Easy and simple Prometheus SLO (service level objectives) generator"; homepage = "https://sloth.dev/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ nrhtr ]; - platforms = lib.platforms.unix; + license = licenses.asl20; + maintainers = with maintainers; [ nrhtr ]; + platforms = platforms.unix; mainProgram = "sloth"; }; } diff --git a/pkgs/by-name/sl/slsnif/package.nix b/pkgs/by-name/sl/slsnif/package.nix index 579cd311b80397..cc30a564e41cc0 100644 --- a/pkgs/by-name/sl/slsnif/package.nix +++ b/pkgs/by-name/sl/slsnif/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "0gn8c5hj8m3sywpwdgn6w5xl4rzsvg0z7d2w8dxi6p152j5b0pii"; }; - meta = { + meta = with lib; { description = "Serial line sniffer"; homepage = "http://slsnif.sourceforge.net/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; mainProgram = "slsnif"; }; } diff --git a/pkgs/by-name/sl/slweb/package.nix b/pkgs/by-name/sl/slweb/package.nix index 337d8a8e454d9e..1813a737c430a8 100644 --- a/pkgs/by-name/sl/slweb/package.nix +++ b/pkgs/by-name/sl/slweb/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation (finalAttrs: { ]; doInstallCheck = true; - meta = { + meta = with lib; { description = "Static website generator which aims at being simplistic"; homepage = "https://strahinja.srht.site/slweb/"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ GaetanLepage ]; mainProgram = "slweb"; }; }) diff --git a/pkgs/by-name/sl/sly/package.nix b/pkgs/by-name/sl/sly/package.nix index 82fd9823285f61..49009d45202108 100644 --- a/pkgs/by-name/sl/sly/package.nix +++ b/pkgs/by-name/sl/sly/package.nix @@ -23,12 +23,12 @@ flutter.buildFlutterApplication { install -Dm0644 ./packaging/linux/page.kramo.Sly.desktop $out/share/applications/page.kramo.Sly.desktop ''; - meta = { + meta = with lib; { description = "Friendly image editor"; homepage = "https://github.com/kra-mo/sly"; mainProgram = "sly"; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ aucub ]; - platforms = lib.platforms.linux; + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ aucub ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sm/sm64ex/package.nix b/pkgs/by-name/sm/sm64ex/package.nix index 7a2ea046d59aa2..896910a8512c2d 100644 --- a/pkgs/by-name/sm/sm64ex/package.nix +++ b/pkgs/by-name/sm/sm64ex/package.nix @@ -70,7 +70,7 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/sm64pc/sm64ex"; description = "Super Mario 64 port based off of decompilation"; longDescription = '' @@ -79,8 +79,8 @@ stdenv.mkDerivation (finalAttrs: { If you would like to use patches sm64ex distributes as makeflags, add them to the "compileFlags" attribute. ''; mainProgram = "sm64ex"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ qubitnano ]; - platforms = lib.platforms.unix; + license = licenses.unfree; + maintainers = with maintainers; [ qubitnano ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/sm/smack/package.nix b/pkgs/by-name/sm/smack/package.nix index 08c66c2a15d93e..9dea952f52779f 100644 --- a/pkgs/by-name/sm/smack/package.nix +++ b/pkgs/by-name/sm/smack/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "XMPP (Jabber) client library for instant messaging and presence"; homepage = "http://www.igniterealtime.org/projects/smack/"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - platforms = lib.platforms.unix; - license = lib.licenses.asl20; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + platforms = platforms.unix; + license = licenses.asl20; }; } diff --git a/pkgs/by-name/sm/smc-manjari/package.nix b/pkgs/by-name/sm/smc-manjari/package.nix index 1038167b8346f3..841185cf0e4501 100644 --- a/pkgs/by-name/sm/smc-manjari/package.nix +++ b/pkgs/by-name/sm/smc-manjari/package.nix @@ -39,11 +39,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://smc.org.in/fonts/manjari"; description = "Manjari Malayalam Typeface"; - license = lib.licenses.ofl; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ adtya ]; + license = licenses.ofl; + platforms = platforms.all; + maintainers = with maintainers; [ adtya ]; }; } diff --git a/pkgs/by-name/sm/smem/package.nix b/pkgs/by-name/sm/smem/package.nix index 70ef87692d0c70..0a3bee4a8b7e54 100644 --- a/pkgs/by-name/sm/smem/package.nix +++ b/pkgs/by-name/sm/smem/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { install -Dm444 -t $out/share/man/man8/ smem.8 ''; - meta = { + meta = with lib; { homepage = "https://www.selenic.com/smem/"; description = "Memory usage reporting tool that takes shared memory into account"; - platforms = lib.platforms.linux; + platforms = platforms.linux; maintainers = [ ]; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/sm/smile/package.nix b/pkgs/by-name/sm/smile/package.nix index e3921824a8f862..ffdd73277162bb 100644 --- a/pkgs/by-name/sm/smile/package.nix +++ b/pkgs/by-name/sm/smile/package.nix @@ -58,14 +58,14 @@ python3.pkgs.buildPythonApplication rec { ) ''; - meta = { + meta = with lib; { changelog = "https://smile.mijorus.it/changelog"; description = "Emoji picker for linux, with custom tags support and localization"; downloadPage = "https://github.com/mijorus/smile"; homepage = "https://mijorus.it/projects/smile/"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "smile"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ koppor aleksana ]; diff --git a/pkgs/by-name/sm/smokeping/package.nix b/pkgs/by-name/sm/smokeping/package.nix index a2668529c6902c..e93b8fc246fa7f 100644 --- a/pkgs/by-name/sm/smokeping/package.nix +++ b/pkgs/by-name/sm/smokeping/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { passthru.tests.smokeping = nixosTests.smokeping; - meta = { + meta = with lib; { description = "Network latency collector"; homepage = "https://oss.oetiker.ch/smokeping"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.all; + license = licenses.gpl2Plus; + platforms = platforms.all; maintainers = [ ]; }; } diff --git a/pkgs/by-name/sm/smpeg/package.nix b/pkgs/by-name/sm/smpeg/package.nix index 0d4a67d36631ae..929c45d967f559 100644 --- a/pkgs/by-name/sm/smpeg/package.nix +++ b/pkgs/by-name/sm/smpeg/package.nix @@ -95,10 +95,10 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = "-lX11"; - meta = { + meta = with lib; { homepage = "http://icculus.org/smpeg/"; description = "MPEG decoding library"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/sm/smpq/package.nix b/pkgs/by-name/sm/smpq/package.nix index e32f27e6fd6342..656d9541e1e62e 100644 --- a/pkgs/by-name/sm/smpq/package.nix +++ b/pkgs/by-name/sm/smpq/package.nix @@ -25,15 +25,15 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { homepage = "https://launchpad.net/smpq"; description = "StormLib MPQ archiving utility"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "smpq"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ aanderse karolchmist ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/sm/smtp4dev/package.nix b/pkgs/by-name/sm/smtp4dev/package.nix index a06d57f026de30..7311e50100765b 100644 --- a/pkgs/by-name/sm/smtp4dev/package.nix +++ b/pkgs/by-name/sm/smtp4dev/package.nix @@ -44,15 +44,15 @@ buildDotnetModule { mv $out/bin/Rnwood.Smtp4dev $out/bin/smtp4dev ''; - meta = { + meta = with lib; { description = "Fake smtp email server for development and testing"; homepage = "https://github.com/rnwood/smtp4dev"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "smtp4dev"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ rucadi jchw ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/sn/snapmaker-luban/package.nix b/pkgs/by-name/sn/snapmaker-luban/package.nix index f4adab052c1782..386e2b9e03b4a1 100644 --- a/pkgs/by-name/sn/snapmaker-luban/package.nix +++ b/pkgs/by-name/sn/snapmaker-luban/package.nix @@ -144,12 +144,12 @@ stdenv.mkDerivation rec { }) ]; - meta = { + meta = with lib; { description = "Snapmaker Luban is an easy-to-use 3-in-1 software tailor-made for Snapmaker machines"; homepage = "https://github.com/Snapmaker/Luban"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ simonkampe ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.gpl3; + maintainers = with maintainers; [ simonkampe ]; platforms = [ "x86_64-linux" ]; knownVulnerabilities = [ "CVE-2023-5217" ]; }; diff --git a/pkgs/by-name/sn/snapper/package.nix b/pkgs/by-name/sn/snapper/package.nix index 478c7f53afb98f..3097ce0a3fefb4 100644 --- a/pkgs/by-name/sn/snapper/package.nix +++ b/pkgs/by-name/sn/snapper/package.nix @@ -96,12 +96,12 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with lib; { description = "Tool for Linux filesystem snapshot management"; homepage = "http://snapper.io"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; mainProgram = "snapper"; - maintainers = with lib.maintainers; [ markuskowa ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ markuskowa ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sn/snapraid/package.nix b/pkgs/by-name/sn/snapraid/package.nix index 0eae0f1a899ddb..f63f008bd6b8ef 100644 --- a/pkgs/by-name/sn/snapraid/package.nix +++ b/pkgs/by-name/sn/snapraid/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { --prefix PATH : ${lib.makeBinPath [ smartmontools ]} ''; - meta = { + meta = with lib; { homepage = "http://www.snapraid.it/"; description = "Backup program for disk arrays"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.makefu ]; - platforms = lib.platforms.unix; + license = licenses.gpl3; + maintainers = [ maintainers.makefu ]; + platforms = platforms.unix; mainProgram = "snapraid"; }; } diff --git a/pkgs/by-name/sn/sndio/package.nix b/pkgs/by-name/sn/sndio/package.nix index aa5ba4e85abda4..a92d3fb09a8302 100644 --- a/pkgs/by-name/sn/sndio/package.nix +++ b/pkgs/by-name/sn/sndio/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation (finalAttrs: { rev-prefix = "v"; }; - meta = { + meta = with lib; { homepage = "https://www.sndio.org"; description = "Small audio and MIDI framework part of the OpenBSD project"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ Madouura ]; - platforms = lib.platforms.all; + license = licenses.isc; + maintainers = with maintainers; [ Madouura ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/sn/snekim/package.nix b/pkgs/by-name/sn/snekim/package.nix index 5591b97234baf2..6ce32478e026e4 100644 --- a/pkgs/by-name/sn/snekim/package.nix +++ b/pkgs/by-name/sn/snekim/package.nix @@ -26,11 +26,11 @@ buildNimPackage (finalAttrs: { install -D icons/hicolor/48x48/snekim.svg -t $out/share/icons/hicolor/48x48/apps ''; - meta = { + meta = with lib; { homepage = "https://codeberg.org/annaaurora/snekim"; description = "Simple implementation of the classic snake game"; mainProgram = "snekim"; - license = lib.licenses.lgpl3Only; - maintainers = [ lib.maintainers.annaaurora ]; + license = licenses.lgpl3Only; + maintainers = [ maintainers.annaaurora ]; }; }) diff --git a/pkgs/by-name/sn/snet/package.nix b/pkgs/by-name/sn/snet/package.nix index 6b58ee56338b43..24cca1f0f4b0f3 100644 --- a/pkgs/by-name/sn/snet/package.nix +++ b/pkgs/by-name/sn/snet/package.nix @@ -20,11 +20,11 @@ buildGoModule { # flaky test, random failures checkFlags = [ "-skip=TestBloomfilter" ]; - meta = { + meta = with lib; { description = "Transparent proxy works on linux desktop, MacOS, router"; homepage = "https://github.com/monsterxx03/snet"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ azuwis ]; + license = licenses.mit; + maintainers = with maintainers; [ azuwis ]; mainProgram = "snet"; }; } diff --git a/pkgs/by-name/sn/sng/package.nix b/pkgs/by-name/sn/sng/package.nix index 544a07165d2de7..634aeb9e60ebae 100644 --- a/pkgs/by-name/sn/sng/package.nix +++ b/pkgs/by-name/sn/sng/package.nix @@ -33,15 +33,15 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { homepage = "https://sng.sourceforge.net/"; description = "Minilanguage designed to represent the entire contents of a PNG file in an editable form"; - license = lib.licenses.zlib; + license = licenses.zlib; mainProgram = "sng"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ dezgeg AndersonTorres ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/sn/sniglet/package.nix b/pkgs/by-name/sn/sniglet/package.nix index 5f12432be069bc..4b23dc91b81e7b 100644 --- a/pkgs/by-name/sn/sniglet/package.nix +++ b/pkgs/by-name/sn/sniglet/package.nix @@ -24,14 +24,14 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Fun rounded display face that’s great for headlines"; longDescription = '' A rounded display face that’s great for headlines. It comes with a full character set, so you can type in Icelandic or even French! ''; homepage = "https://www.theleagueofmoveabletype.com/sniglet"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ minijackson ]; + license = licenses.ofl; + maintainers = with maintainers; [ minijackson ]; }; } diff --git a/pkgs/by-name/sn/snipaste/package.nix b/pkgs/by-name/sn/snipaste/package.nix index c45dc3b0167f24..2e5496476d9afa 100644 --- a/pkgs/by-name/sn/snipaste/package.nix +++ b/pkgs/by-name/sn/snipaste/package.nix @@ -23,16 +23,16 @@ appimageTools.wrapType2 { substituteInPlace $out/share/applications/*.desktop --replace-warn 'Exec=Snipaste' 'Exec=${pname}' ''; - meta = { + meta = with lib; { description = "Screenshot tools"; homepage = "https://www.snipaste.com/"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ + license = licenses.unfree; + maintainers = with maintainers; [ luftmensch-luftmensch ltrump ]; mainProgram = "snipaste"; platforms = [ "x86_64-linux" ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/by-name/sn/snippetexpander/package.nix b/pkgs/by-name/sn/snippetexpander/package.nix index 3112747257ad81..11eacf5d24b0b3 100644 --- a/pkgs/by-name/sn/snippetexpander/package.nix +++ b/pkgs/by-name/sn/snippetexpander/package.nix @@ -52,12 +52,12 @@ buildGoModule rec { } ''; - meta = { + meta = with lib; { description = "Your little expandable text snippet helper CLI"; homepage = "https://snippetexpander.org"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ ]; + platforms = platforms.linux; mainProgram = "snippetexpander"; }; } diff --git a/pkgs/by-name/sn/snippetexpanderd/package.nix b/pkgs/by-name/sn/snippetexpanderd/package.nix index dbab53d5041670..683328a124156e 100644 --- a/pkgs/by-name/sn/snippetexpanderd/package.nix +++ b/pkgs/by-name/sn/snippetexpanderd/package.nix @@ -65,12 +65,12 @@ buildGoModule rec { } ''; - meta = { + meta = with lib; { description = "Your little expandable text snippet helper daemon"; homepage = "https://snippetexpander.org"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ ]; + platforms = platforms.linux; mainProgram = "snippetexpanderd"; }; } diff --git a/pkgs/by-name/sn/snippetexpandergui/package.nix b/pkgs/by-name/sn/snippetexpandergui/package.nix index 4926187910469d..fc3927e55faa93 100644 --- a/pkgs/by-name/sn/snippetexpandergui/package.nix +++ b/pkgs/by-name/sn/snippetexpandergui/package.nix @@ -67,12 +67,12 @@ buildGoModule rec { ) ''; - meta = { + meta = with lib; { description = "Your little expandable text snippet helper GUI"; homepage = "https://snippetexpander.org"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ ]; + platforms = platforms.linux; mainProgram = "snippetexpandergui"; }; } diff --git a/pkgs/by-name/sn/snippetexpanderx/package.nix b/pkgs/by-name/sn/snippetexpanderx/package.nix index 2596a255a159a3..b97c3f7c80b4ed 100644 --- a/pkgs/by-name/sn/snippetexpanderx/package.nix +++ b/pkgs/by-name/sn/snippetexpanderx/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { # There are no tests. doCheck = false; - meta = { + meta = with lib; { description = "Your little expandable text snippet helper auto expander daemon"; homepage = "https://snippetexpander.org"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ ]; + platforms = platforms.linux; mainProgram = "snippetexpanderx"; }; } diff --git a/pkgs/by-name/sn/snips-sh/package.nix b/pkgs/by-name/sn/snips-sh/package.nix index 93931e2bc4e77e..5bb5574aedeb90 100644 --- a/pkgs/by-name/sn/snips-sh/package.nix +++ b/pkgs/by-name/sn/snips-sh/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { buildInputs = [ sqlite ] ++ (lib.optional withTensorflow libtensorflow); - meta = { + meta = with lib; { description = "passwordless, anonymous SSH-powered pastebin with a human-friendly TUI and web UI"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; + license = licenses.mit; + platforms = platforms.linux; homepage = "https://snips.sh"; - maintainers = with lib.maintainers; [ jeremiahs ]; + maintainers = with maintainers; [ jeremiahs ]; mainProgram = "snips.sh"; }; } diff --git a/pkgs/by-name/sn/snort/package.nix b/pkgs/by-name/sn/snort/package.nix index 5fd3607b5d83c2..4198fa606ed393 100644 --- a/pkgs/by-name/sn/snort/package.nix +++ b/pkgs/by-name/sn/snort/package.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/snort --add-flags "--daq-dir ${daq}/lib/daq --dynamic-preprocessor-lib-dir $out/lib/snort_dynamicpreprocessor/ --dynamic-engine-lib-dir $out/lib/snort_dynamicengine" ''; - meta = { + meta = with lib; { description = "Network intrusion prevention and detection system (IDS/IPS)"; homepage = "https://www.snort.org"; - maintainers = with lib.maintainers; [ aycanirican ]; - license = lib.licenses.gpl2; - platforms = with lib.platforms; linux; + maintainers = with maintainers; [ aycanirican ]; + license = licenses.gpl2; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/sn/snowflake-cli/package.nix b/pkgs/by-name/sn/snowflake-cli/package.nix index 13f87306232b08..e7d7c84e9462de 100644 --- a/pkgs/by-name/sn/snowflake-cli/package.nix +++ b/pkgs/by-name/sn/snowflake-cli/package.nix @@ -97,12 +97,12 @@ python3Packages.buildPythonApplication rec { --zsh <($out/bin/snow --show-completion zsh) ''; - meta = { + meta = with lib; { changelog = "https://github.com/snowflakedb/snowflake-cli/blob/main/RELEASE-NOTES.md"; homepage = "https://docs.snowflake.com/en/developer-guide/snowflake-cli-v2/index"; description = "Command-line tool explicitly designed for developer-centric workloads in addition to SQL operations"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ vtimofeenko ]; + license = licenses.asl20; + maintainers = with maintainers; [ vtimofeenko ]; mainProgram = "snow"; }; } diff --git a/pkgs/by-name/so/so/package.nix b/pkgs/by-name/so/so/package.nix index a5493b3c76b3bc..709a4e7ea5e7b7 100644 --- a/pkgs/by-name/so/so/package.nix +++ b/pkgs/by-name/so/so/package.nix @@ -52,13 +52,13 @@ let }; }; - meta = { + meta = with lib; { homepage = "https://github.com/samtay/so"; description = "TUI to StackExchange network"; changelog = "https://github.com/samtay/so/blob/main/CHANGELOG.md"; mainProgram = "so"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ unsolvedcypher ]; }; diff --git a/pkgs/by-name/so/soco-cli/package.nix b/pkgs/by-name/so/soco-cli/package.nix index 437d2cd92b5336..6588a675a0ae13 100644 --- a/pkgs/by-name/so/soco-cli/package.nix +++ b/pkgs/by-name/so/soco-cli/package.nix @@ -33,11 +33,11 @@ python3.pkgs.buildPythonApplication rec { "soco_cli" ]; - meta = { + meta = with lib; { description = "Command-line interface to control Sonos sound systems"; homepage = "https://github.com/avantrec/soco-cli"; - license = with lib.licenses; [ asl20 ]; + license = with licenses; [ asl20 ]; mainProgram = "sonos"; - maintainers = with lib.maintainers; [ fab ]; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/so/softether/package.nix b/pkgs/by-name/so/softether/package.nix index abd112ce5e19a4..8e34091ec84421 100644 --- a/pkgs/by-name/so/softether/package.nix +++ b/pkgs/by-name/so/softether/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation (finalAttrs: { Makefile ''; - meta = { + meta = with lib; { description = "Open-Source Free Cross-platform Multi-protocol VPN Program"; homepage = "https://www.softether.org/"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.rick68 ]; + license = licenses.asl20; + maintainers = [ maintainers.rick68 ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/so/sonar-scanner-cli/package.nix b/pkgs/by-name/so/sonar-scanner-cli/package.nix index 7eebc2693c9d1b..efe22ea6ba455a 100644 --- a/pkgs/by-name/so/sonar-scanner-cli/package.nix +++ b/pkgs/by-name/so/sonar-scanner-cli/package.nix @@ -70,12 +70,12 @@ maven.buildMavenPackage rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Scanner CLI for SonarQube and SonarCloud"; homepage = "https://github.com/SonarSource/sonar-scanner-cli"; - license = lib.licenses.lgpl3Only; + license = licenses.lgpl3Only; mainProgram = "sonar-scanner"; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ peterromfeldhk ]; + platforms = platforms.unix; + maintainers = with maintainers; [ peterromfeldhk ]; }; } diff --git a/pkgs/by-name/so/sonarlint-ls/package.nix b/pkgs/by-name/so/sonarlint-ls/package.nix index 5ffc83975d5367..e5ddda185223fa 100644 --- a/pkgs/by-name/so/sonarlint-ls/package.nix +++ b/pkgs/by-name/so/sonarlint-ls/package.nix @@ -113,11 +113,11 @@ maven.buildMavenPackage rec { }); }; - meta = { + meta = with lib; { description = "Sonarlint language server"; mainProgram = "sonarlint-ls"; homepage = "https://github.com/SonarSource/sonarlint-language-server"; - license = lib.licenses.lgpl3; - maintainers = with lib.maintainers; [ tricktron ]; + license = licenses.lgpl3; + maintainers = with maintainers; [ tricktron ]; }; } diff --git a/pkgs/by-name/so/sonusmix/package.nix b/pkgs/by-name/so/sonusmix/package.nix index ea9b7de4951948..f1d7f157fb5e10 100644 --- a/pkgs/by-name/so/sonusmix/package.nix +++ b/pkgs/by-name/so/sonusmix/package.nix @@ -44,11 +44,11 @@ rustPlatform.buildRustPackage rec { dbus ]; - meta = { + meta = with lib; { description = "Next-gen Pipewire audio routing tool"; homepage = "https://codeberg.org/sonusmix/sonusmix"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ aucub ]; - platforms = lib.platforms.linux; + license = licenses.mpl20; + maintainers = with maintainers; [ aucub ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/so/sophus/package.nix b/pkgs/by-name/so/sophus/package.nix index 69e59195e7acad..5c9c5e98e5ad17 100644 --- a/pkgs/by-name/so/sophus/package.nix +++ b/pkgs/by-name/so/sophus/package.nix @@ -32,14 +32,14 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeBool "BUILD_SOPHUS_EXAMPLES" false) ]; - meta = { + meta = with lib; { description = "C++ implementation of Lie Groups using Eigen"; homepage = "https://github.com/strasdat/Sophus"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ locochoco acowley ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/so/soplex/package.nix b/pkgs/by-name/so/soplex/package.nix index 2ee0976e6c9d96..2e6796c877f022 100644 --- a/pkgs/by-name/so/soplex/package.nix +++ b/pkgs/by-name/so/soplex/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { homepage = "https://scipopt.org"; description = "Sequential object-oriented simPlex"; - license = with lib.licenses; [ asl20 ]; + license = with licenses; [ asl20 ]; mainProgram = "soplex"; - maintainers = with lib.maintainers; [ david-r-cox ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ david-r-cox ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/so/sorts-mill-goudy/package.nix b/pkgs/by-name/so/sorts-mill-goudy/package.nix index b568ddc87d6f12..a70cd49aa69c8c 100644 --- a/pkgs/by-name/so/sorts-mill-goudy/package.nix +++ b/pkgs/by-name/so/sorts-mill-goudy/package.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "‘revival’ of Goudy Oldstyle and Italic"; longDescription = '' A 'revival' of Goudy Oldstyle and Italic, with features including small @@ -34,7 +34,7 @@ stdenvNoCC.mkDerivation { latin scripts. ''; homepage = "https://www.theleagueofmoveabletype.com/sorts-mill-goudy"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ minijackson ]; + license = licenses.ofl; + maintainers = with maintainers; [ minijackson ]; }; } diff --git a/pkgs/by-name/so/soundconverter/package.nix b/pkgs/by-name/so/soundconverter/package.nix index 450555e2212058..45394c9fd8647e 100644 --- a/pkgs/by-name/so/soundconverter/package.nix +++ b/pkgs/by-name/so/soundconverter/package.nix @@ -98,7 +98,7 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = { + meta = with lib; { homepage = "https://soundconverter.org/"; description = "Leading audio file converter for the GNOME Desktop"; mainProgram = "soundconverter"; @@ -107,9 +107,9 @@ python3Packages.buildPythonApplication rec { and writes WAV, FLAC, MP3, AAC and Ogg Vorbis files. Uses Python and GTK+ GUI toolkit, and runs on X Window System. ''; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + platforms = platforms.linux; + maintainers = with maintainers; [ jakubgs aleksana ]; diff --git a/pkgs/by-name/so/soundsource/package.nix b/pkgs/by-name/so/soundsource/package.nix index 94e1e1bd566868..d2330bf9ed567a 100644 --- a/pkgs/by-name/so/soundsource/package.nix +++ b/pkgs/by-name/so/soundsource/package.nix @@ -26,16 +26,16 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { changelog = "https://rogueamoeba.com/support/releasenotes/?product=SoundSource"; description = "Sound controller for macOS"; homepage = "https://rogueamoeba.com/soundsource"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ + license = licenses.unfree; + maintainers = with maintainers; [ emilytrau donteatoreo ]; - platforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + platforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/so/soupault/package.nix b/pkgs/by-name/so/soupault/package.nix index 74a42cc54af40d..6170093c80579e 100644 --- a/pkgs/by-name/so/soupault/package.nix +++ b/pkgs/by-name/so/soupault/package.nix @@ -53,12 +53,12 @@ ocamlPackages.buildDunePackage rec { command = "soupault --version-number"; }; - meta = { + meta = with lib; { description = "Tool that helps you create and manage static websites"; homepage = "https://soupault.app/"; changelog = "https://codeberg.org/PataphysicalSociety/soupault/src/branch/main/CHANGELOG.md"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ toastal ]; + license = licenses.mit; + maintainers = with maintainers; [ toastal ]; mainProgram = "soupault"; }; } diff --git a/pkgs/by-name/so/source-code-pro/package.nix b/pkgs/by-name/so/source-code-pro/package.nix index dd6b4130afa6b5..9ae63ae801d9aa 100644 --- a/pkgs/by-name/so/source-code-pro/package.nix +++ b/pkgs/by-name/so/source-code-pro/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Monospaced font family for user interface and coding environments"; - maintainers = with lib.maintainers; [ relrod ]; - platforms = with lib.platforms; all; + maintainers = with maintainers; [ relrod ]; + platforms = with platforms; all; homepage = "https://adobe-fonts.github.io/source-code-pro/"; - license = lib.licenses.ofl; + license = licenses.ofl; }; } diff --git a/pkgs/by-name/so/source-han-code-jp/package.nix b/pkgs/by-name/so/source-han-code-jp/package.nix index ea1501750176a0..8e39fa42a645ea 100644 --- a/pkgs/by-name/so/source-han-code-jp/package.nix +++ b/pkgs/by-name/so/source-han-code-jp/package.nix @@ -21,11 +21,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Monospaced Latin font suitable for coding"; - maintainers = with lib.maintainers; [ mt-caret ]; - platforms = with lib.platforms; all; + maintainers = with maintainers; [ mt-caret ]; + platforms = with platforms; all; homepage = "https://blogs.adobe.com/CCJKType/2015/06/source-han-code-jp.html"; - license = lib.licenses.ofl; + license = licenses.ofl; }; } diff --git a/pkgs/by-name/so/sourcery/package.nix b/pkgs/by-name/so/sourcery/package.nix index 6c35b807790b90..f45c1959b5bad8 100644 --- a/pkgs/by-name/so/sourcery/package.nix +++ b/pkgs/by-name/so/sourcery/package.nix @@ -36,14 +36,14 @@ python3Packages.buildPythonApplication rec { buildInputs = [ zlib ]; - meta = { + meta = with lib; { changelog = "https://sourcery.ai/changelog/"; description = "AI-powered code review and pair programming tool for Python"; downloadPage = "https://pypi.org/project/sourcery/"; homepage = "https://sourcery.ai"; - license = lib.licenses.unfree; + license = licenses.unfree; mainProgram = "sourcery"; - maintainers = with lib.maintainers; [ tomasajt ]; + maintainers = with maintainers; [ tomasajt ]; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/by-name/so/sozi/package.nix b/pkgs/by-name/so/sozi/package.nix index 6492cb32e6c1bf..978b421f07aca5 100644 --- a/pkgs/by-name/so/sozi/package.nix +++ b/pkgs/by-name/so/sozi/package.nix @@ -32,13 +32,13 @@ appimageTools.wrapType2 { --replace 'Exec=AppRun' 'Exec=sozi' ''; - meta = { + meta = with lib; { description = "Zooming presentation editor and player"; homepage = "https://sozi.baierouge.fr/"; - license = lib.licenses.mpl20; + license = licenses.mpl20; mainProgram = "sozi"; - maintainers = with lib.maintainers; [ srghma ]; + maintainers = with maintainers; [ srghma ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/sp/sp800-90b-entropyassessment/package.nix b/pkgs/by-name/sp/sp800-90b-entropyassessment/package.nix index 65387e27669974..9e0d6234f45379 100644 --- a/pkgs/by-name/sp/sp800-90b-entropyassessment/package.nix +++ b/pkgs/by-name/sp/sp800-90b-entropyassessment/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/usnistgov/SP800-90B_EntropyAssessment"; description = "Implementation of min-entropy assessment methods included in Special Publication 800-90B"; - platforms = lib.platforms.linux; - license = lib.licenses.nistSoftware; - maintainers = with lib.maintainers; [ + platforms = platforms.linux; + license = licenses.nistSoftware; + maintainers = with maintainers; [ orichter thillux ]; diff --git a/pkgs/by-name/sp/space-cadet-pinball/package.nix b/pkgs/by-name/sp/space-cadet-pinball/package.nix index 32777f439b80a3..1e30ec210ec8e2 100644 --- a/pkgs/by-name/sp/space-cadet-pinball/package.nix +++ b/pkgs/by-name/sp/space-cadet-pinball/package.nix @@ -68,19 +68,19 @@ stdenv.mkDerivation rec { ${assets}/Sounds/*.WAV -t ${assetsDest} ''; - meta = { + meta = with lib; { description = "Reverse engineering of 3D Pinball for Windows – Space Cadet, a game bundled with Windows"; homepage = "https://github.com/k4zmu2a/SpaceCadetPinball"; # The assets are unfree while the code is labeled as MIT - license = with lib.licenses; [ + license = with licenses; [ unfree mit ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ hqurve nadiaholmquist ]; - platforms = lib.platforms.all; + platforms = platforms.all; mainProgram = "SpaceCadetPinball"; }; } diff --git a/pkgs/by-name/sp/spacevim/package.nix b/pkgs/by-name/sp/spacevim/package.nix index 104e30e50d1c6b..484336394c9f72 100644 --- a/pkgs/by-name/sp/spacevim/package.nix +++ b/pkgs/by-name/sp/spacevim/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Modular Vim/Neovim configuration"; longDescription = '' SpaceVim is a modular configuration of Vim and Neovim. It's inspired by @@ -74,9 +74,9 @@ stdenv.mkDerivation rec { by keeping them from having to think about what packages to install. ''; homepage = "https://spacevim.org/"; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.perchun ]; - platforms = lib.platforms.all; + license = licenses.gpl3Plus; + maintainers = [ maintainers.perchun ]; + platforms = platforms.all; mainProgram = "spacevim"; }; } diff --git a/pkgs/by-name/sp/spamassassin/package.nix b/pkgs/by-name/sp/spamassassin/package.nix index 790980da20753f..212b15b81948d0 100644 --- a/pkgs/by-name/sp/spamassassin/package.nix +++ b/pkgs/by-name/sp/spamassassin/package.nix @@ -132,12 +132,12 @@ perlPackages.buildPerlPackage rec { done ''; - meta = { + meta = with lib; { homepage = "https://spamassassin.apache.org/"; description = "Open-Source Spam Filter"; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + platforms = platforms.unix; + maintainers = with maintainers; [ qknight qyliss ]; diff --git a/pkgs/by-name/sp/span-lite/package.nix b/pkgs/by-name/sp/span-lite/package.nix index 50940924f3ab59..0c7969ff8a1631 100644 --- a/pkgs/by-name/sp/span-lite/package.nix +++ b/pkgs/by-name/sp/span-lite/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cmake ]; - meta = { + meta = with lib; { description = "C++20-like span for C++98, C++11 and later in a single-file header-only library"; homepage = "https://github.com/martinmoene/span-lite"; - license = lib.licenses.bsd1; - maintainers = with lib.maintainers; [ icewind1991 ]; - platforms = lib.platforms.all; + license = licenses.bsd1; + maintainers = with maintainers; [ icewind1991 ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/sp/sparkleshare/package.nix b/pkgs/by-name/sp/sparkleshare/package.nix index 62606d12dc97e8..0982dc9fc5cd77 100644 --- a/pkgs/by-name/sp/sparkleshare/package.nix +++ b/pkgs/by-name/sp/sparkleshare/package.nix @@ -91,11 +91,11 @@ stdenv.mkDerivation rec { } ''; - meta = { + meta = with lib; { description = "Share and collaborate by syncing with any Git repository instantly. Linux, macOS, and Windows"; homepage = "https://sparkleshare.org"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ kevincox ]; + license = licenses.gpl3; + maintainers = with maintainers; [ kevincox ]; mainProgram = "sparkleshare"; }; } diff --git a/pkgs/by-name/sp/sparrow3d/package.nix b/pkgs/by-name/sp/sparrow3d/package.nix index 6a430bff6fe62a..60d45ed47d36a4 100644 --- a/pkgs/by-name/sp/sparrow3d/package.nix +++ b/pkgs/by-name/sp/sparrow3d/package.nix @@ -92,11 +92,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postCheck ''; - meta = { + meta = with lib; { homepage = "https://github.com/theZiz/sparrow3d"; description = "A software renderer for different open handhelds like the gp2x, wiz, caanoo and pandora"; - license = lib.licenses.lgpl21; - maintainers = with lib.maintainers; [ colinsane ]; - platforms = lib.platforms.linux; + license = licenses.lgpl21; + maintainers = with maintainers; [ colinsane ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/sp/spectre-meltdown-checker/package.nix b/pkgs/by-name/sp/spectre-meltdown-checker/package.nix index 976647ff3e2591..b0c4b0803098b3 100644 --- a/pkgs/by-name/sp/spectre-meltdown-checker/package.nix +++ b/pkgs/by-name/sp/spectre-meltdown-checker/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Spectre & Meltdown vulnerability/mitigation checker for Linux"; mainProgram = "spectre-meltdown-checker"; homepage = "https://github.com/speed47/spectre-meltdown-checker"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.dotlambda ]; - platforms = lib.platforms.linux; + license = licenses.gpl3; + maintainers = [ maintainers.dotlambda ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/sp/spectrojack/package.nix b/pkgs/by-name/sp/spectrojack/package.nix index c3346f675d40fe..602a163dfeb143 100644 --- a/pkgs/by-name/sp/spectrojack/package.nix +++ b/pkgs/by-name/sp/spectrojack/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { install -Dm644 -t $out/usr/share/spectrojack/colormaps colormaps/* ''; - meta = { + meta = with lib; { description = "Little spectrogram/audiogram/sonogram/whatever for JACK"; homepage = "http://sed.free.fr/spectrojack"; - license = lib.licenses.publicDomain; - maintainers = with lib.maintainers; [ sleexyz ]; - platforms = with lib.platforms; linux; + license = licenses.publicDomain; + maintainers = with maintainers; [ sleexyz ]; + platforms = with platforms; linux; mainProgram = "spectrojack"; }; } diff --git a/pkgs/by-name/sp/speedtest/package.nix b/pkgs/by-name/sp/speedtest/package.nix index 034b830b66bf6c..714612de80edbb 100644 --- a/pkgs/by-name/sp/speedtest/package.nix +++ b/pkgs/by-name/sp/speedtest/package.nix @@ -58,12 +58,12 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs = [ "\${gappsWrapperArgs[@]}" ]; - meta = { + meta = with lib; { description = "Graphical librespeed client written using GTK4 + libadwaita"; homepage = "https://github.com/Ketok4321/speedtest"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ getchoo ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ getchoo ]; mainProgram = "speedtest"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sp/sphinxsearch/package.nix b/pkgs/by-name/sp/sphinxsearch/package.nix index 6b60200ec4a1e3..f393efb1479a32 100644 --- a/pkgs/by-name/sp/sphinxsearch/package.nix +++ b/pkgs/by-name/sp/sphinxsearch/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation rec { CXXFLAGS = "-std=c++98"; - meta = { + meta = with lib; { description = "Open source full text search server"; homepage = "http://sphinxsearch.com"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + platforms = platforms.all; + maintainers = with maintainers; [ ederoyd46 valodim ]; diff --git a/pkgs/by-name/sp/spideroak/package.nix b/pkgs/by-name/sp/spideroak/package.nix index e89cfeffe78972..4d353cb16914d6 100644 --- a/pkgs/by-name/sp/spideroak/package.nix +++ b/pkgs/by-name/sp/spideroak/package.nix @@ -73,13 +73,13 @@ stdenv.mkDerivation { makeWrapper ]; - meta = { + meta = with lib; { homepage = "https://spideroak.com"; description = "Secure online backup and sychronization"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ amorsillo ]; - platforms = lib.platforms.linux; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = with maintainers; [ amorsillo ]; + platforms = platforms.linux; mainProgram = "spideroak"; }; } diff --git a/pkgs/by-name/sp/spigot/package.nix b/pkgs/by-name/sp/spigot/package.nix index fa873ab257b103..ec02683d127fcc 100644 --- a/pkgs/by-name/sp/spigot/package.nix +++ b/pkgs/by-name/sp/spigot/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { homepage = "https://www.chiark.greenend.org.uk/~sgtatham/spigot/"; description = "Command-line exact real calculator"; mainProgram = "spigot"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/sp/spiped/package.nix b/pkgs/by-name/sp/spiped/package.nix index 021549e4f10efe..ccc97384b9ff41 100644 --- a/pkgs/by-name/sp/spiped/package.nix +++ b/pkgs/by-name/sp/spiped/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { passthru.tests.spiped = nixosTests.spiped; - meta = { + meta = with lib; { description = "Utility for secure encrypted channels between sockets"; homepage = "https://www.tarsnap.com/spiped.html"; - license = lib.licenses.bsd2; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.thoughtpolice ]; + license = licenses.bsd2; + platforms = platforms.unix; + maintainers = [ maintainers.thoughtpolice ]; }; } diff --git a/pkgs/by-name/sp/spirit/package.nix b/pkgs/by-name/sp/spirit/package.nix index cbdeae8968d2d5..2d251ea39e6ede 100644 --- a/pkgs/by-name/sp/spirit/package.nix +++ b/pkgs/by-name/sp/spirit/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-w" ]; - meta = { + meta = with lib; { homepage = "https://github.com/cashapp/spirit"; description = "Online schema change tool for MySQL"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.asl20; + maintainers = with maintainers; [ aaronjheng ]; mainProgram = "spirit"; }; } diff --git a/pkgs/by-name/sp/spl/package.nix b/pkgs/by-name/sp/spl/package.nix index 43b6e24a9b8f90..5770c88f7cb94b 100644 --- a/pkgs/by-name/sp/spl/package.nix +++ b/pkgs/by-name/sp/spl/package.nix @@ -18,11 +18,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-AWkyh3MRtnK+IzXu+h6jurNVMLDQVlBs2RsS2jn9lrA="; - meta = { + meta = with lib; { description = "Simple, concise, concatenative scripting language"; homepage = "https://git.tudbut.de/tudbut/spl"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tudbut ]; + license = licenses.mit; + maintainers = with maintainers; [ tudbut ]; mainProgram = "spl"; }; } diff --git a/pkgs/by-name/sp/splitcode/package.nix b/pkgs/by-name/sp/splitcode/package.nix index 5e59f7c88be97d..a7087a96726c5d 100644 --- a/pkgs/by-name/sp/splitcode/package.nix +++ b/pkgs/by-name/sp/splitcode/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Tool for flexible, efficient parsing, interpreting, and editing of technical sequences in sequencing reads"; homepage = "https://github.com/pachterlab/splitcode"; - license = lib.licenses.bsd2; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ zimward ]; + license = licenses.bsd2; + platforms = platforms.all; + maintainers = with maintainers; [ zimward ]; mainProgram = "splitcode"; badPlatforms = [ # Test hangs indefinitely. See https://github.com/pachterlab/splitcode/issues/31 diff --git a/pkgs/by-name/sp/spoof/package.nix b/pkgs/by-name/sp/spoof/package.nix index a9af358d968b43..54e0b5ac6ddae6 100644 --- a/pkgs/by-name/sp/spoof/package.nix +++ b/pkgs/by-name/sp/spoof/package.nix @@ -25,11 +25,11 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = { + meta = with lib; { description = "Easily spoof your MAC address in OS X & Linux"; homepage = "https://github.com/feross/spoof"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "spoof"; - maintainers = with lib.maintainers; [ modderme123 ]; + maintainers = with maintainers; [ modderme123 ]; }; } diff --git a/pkgs/by-name/sp/spoofdpi/package.nix b/pkgs/by-name/sp/spoofdpi/package.nix index 1b7d67f8cd3647..28ce554056fa91 100644 --- a/pkgs/by-name/sp/spoofdpi/package.nix +++ b/pkgs/by-name/sp/spoofdpi/package.nix @@ -18,10 +18,10 @@ buildGoModule rec { vendorHash = "sha256-47Gt5SI6VXq4+1T0LxFvQoYNk+JqTt3DonDXLfmFBzw="; - meta = { + meta = with lib; { homepage = "https://github.com/xvzc/SpoofDPI"; description = "Simple and fast anti-censorship tool written in Go"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ s0me1newithhand7s ]; + license = licenses.asl20; + maintainers = with maintainers; [ s0me1newithhand7s ]; }; } diff --git a/pkgs/by-name/sp/spotifywm/package.nix b/pkgs/by-name/sp/spotifywm/package.nix index eb15fdc1da6862..4509046cc8aef3 100644 --- a/pkgs/by-name/sp/spotifywm/package.nix +++ b/pkgs/by-name/sp/spotifywm/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/dasJ/spotifywm"; description = "Wrapper around Spotify that correctly sets class name before opening the window"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ jqueiroz the-argus ]; diff --git a/pkgs/by-name/sp/spotlight-downloader/package.nix b/pkgs/by-name/sp/spotlight-downloader/package.nix index 96e8d8b89b462d..71d830fbef3c49 100644 --- a/pkgs/by-name/sp/spotlight-downloader/package.nix +++ b/pkgs/by-name/sp/spotlight-downloader/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Retrieve Windows Spotlight images from the Microsoft Spotlight API"; - license = lib.licenses.cddl; - maintainers = with lib.maintainers; [ ulysseszhan ]; + license = licenses.cddl; + maintainers = with maintainers; [ ulysseszhan ]; homepage = "https://github.com/ORelio/Spotlight-Downloader"; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "SpotlightDownloader"; }; } diff --git a/pkgs/by-name/sp/spread/package.nix b/pkgs/by-name/sp/spread/package.nix index 51fbc76bc7088f..f4903da49b0ae6 100644 --- a/pkgs/by-name/sp/spread/package.nix +++ b/pkgs/by-name/sp/spread/package.nix @@ -55,12 +55,12 @@ buildGoModule { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { mainProgram = "spread"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; description = "Convenient full-system test (task) distribution"; homepage = "https://github.com/snapcore/spread"; - maintainers = with lib.maintainers; [ jnsgruk ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ jnsgruk ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/sq/sql-formatter/package.nix b/pkgs/by-name/sq/sql-formatter/package.nix index aff70b2e08969b..ca89820bf6e0ef 100644 --- a/pkgs/by-name/sq/sql-formatter/package.nix +++ b/pkgs/by-name/sq/sql-formatter/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Whitespace formatter for different query languages"; homepage = "https://sql-formatter-org.github.io/sql-formatter"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "sql-formatter"; - maintainers = with lib.maintainers; [ pyrox0 ]; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/by-name/sq/sqlc/package.nix b/pkgs/by-name/sq/sqlc/package.nix index c605faf4335af8..733fccdf5d57eb 100644 --- a/pkgs/by-name/sq/sqlc/package.nix +++ b/pkgs/by-name/sq/sqlc/package.nix @@ -47,11 +47,11 @@ buildGoModule { version = "v${version}"; }; - meta = { + meta = with lib; { description = "Generate type-safe code from SQL"; homepage = "https://sqlc.dev/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.mit; + maintainers = with maintainers; [ aaronjheng ]; mainProgram = "sqlc"; }; } diff --git a/pkgs/by-name/sq/sqld/package.nix b/pkgs/by-name/sq/sqld/package.nix index 79c52798c6b843..1928a724c4201f 100644 --- a/pkgs/by-name/sq/sqld/package.nix +++ b/pkgs/by-name/sq/sqld/package.nix @@ -58,10 +58,10 @@ rustPlatform.buildRustPackage rec { # requires a complex setup with podman for the end-to-end tests doCheck = false; - meta = { + meta = with lib; { description = "LibSQL with extended capabilities like HTTP protocol, replication, and more"; homepage = "https://github.com/tursodatabase/libsql"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dit7ya ]; + license = licenses.mit; + maintainers = with maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/sq/sqlite3-to-mysql/package.nix b/pkgs/by-name/sq/sqlite3-to-mysql/package.nix index 5ec42ba23d1d2b..eca86c17c1c908 100644 --- a/pkgs/by-name/sq/sqlite3-to-mysql/package.nix +++ b/pkgs/by-name/sq/sqlite3-to-mysql/package.nix @@ -60,11 +60,11 @@ python3Packages.buildPythonApplication rec { }; }; - meta = { + meta = with lib; { description = "Simple Python tool to transfer data from SQLite 3 to MySQL"; homepage = "https://github.com/techouse/sqlite3-to-mysql"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ gador ]; + license = licenses.mit; + maintainers = with maintainers; [ gador ]; mainProgram = "sqlite3mysql"; }; } diff --git a/pkgs/by-name/sq/sqlitestudio/package.nix b/pkgs/by-name/sq/sqlitestudio/package.nix index 6b6533a6073648..e3a27ee1410af1 100644 --- a/pkgs/by-name/sq/sqlitestudio/package.nix +++ b/pkgs/by-name/sq/sqlitestudio/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Free, open source, multi-platform SQLite database manager"; homepage = "https://sqlitestudio.pl/"; - license = lib.licenses.gpl3; + license = licenses.gpl3; mainProgram = "sqlitestudio"; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ asterismono ]; + platforms = platforms.linux; + maintainers = with maintainers; [ asterismono ]; }; } diff --git a/pkgs/by-name/sq/sqlline/package.nix b/pkgs/by-name/sq/sqlline/package.nix index 440187d1f0601b..48a6e340c551cf 100644 --- a/pkgs/by-name/sq/sqlline/package.nix +++ b/pkgs/by-name/sq/sqlline/package.nix @@ -45,11 +45,11 @@ maven.buildMavenPackage rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Shell for issuing SQL to relational databases via JDBC"; homepage = "https://github.com/julianhyde/sqlline"; mainProgram = "sqlline"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ taranarmo ]; + license = licenses.bsd3; + maintainers = with maintainers; [ taranarmo ]; }; } diff --git a/pkgs/by-name/sr/sratoolkit/package.nix b/pkgs/by-name/sr/sratoolkit/package.nix index d244acdfd0d22f..31295953dae436 100644 --- a/pkgs/by-name/sr/sratoolkit/package.nix +++ b/pkgs/by-name/sr/sratoolkit/package.nix @@ -44,14 +44,14 @@ stdenv.mkDerivation (finalAttrs: { openjdk ]; - meta = { + meta = with lib; { homepage = "https://github.com/ncbi/sra-tools"; description = "Collection of tools and libraries for using data in the INSDC Sequence Read Archives"; - license = lib.licenses.ncbiPd; - maintainers = with lib.maintainers; [ + license = licenses.ncbiPd; + maintainers = with maintainers; [ thyol t4ccer ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/sr/srht-gen-oauth-tok/package.nix b/pkgs/by-name/sr/srht-gen-oauth-tok/package.nix index 5c4db959a6a425..e186177d5c94f2 100644 --- a/pkgs/by-name/sr/srht-gen-oauth-tok/package.nix +++ b/pkgs/by-name/sr/srht-gen-oauth-tok/package.nix @@ -32,17 +32,17 @@ stdenv.mkDerivation rec { passthru.tests.sourcehut = nixosTests.sourcehut; - meta = { + meta = with lib; { description = "Script to register a new Sourcehut OAuth token for a given user"; longDescription = '' srht-gen-oauth-tok is a Perl script for automating the generation of user OAuth tokens for Sourcehut-based code forges. This is done by emulating a browser and interacting with the Web interface. ''; - maintainers = with lib.maintainers; [ nessdoor ]; + maintainers = with maintainers; [ nessdoor ]; mainProgram = "srht-gen-oauth-tok"; - license = lib.licenses.gpl3; - platforms = lib.platforms.all; - sourceProvenance = [ lib.sourceTypes.fromSource ]; + license = licenses.gpl3; + platforms = platforms.all; + sourceProvenance = [ sourceTypes.fromSource ]; }; } diff --git a/pkgs/by-name/ss/sscep/package.nix b/pkgs/by-name/ss/sscep/package.nix index 52e97fe18f7ef0..f0f205e92799bd 100644 --- a/pkgs/by-name/ss/sscep/package.nix +++ b/pkgs/by-name/ss/sscep/package.nix @@ -27,14 +27,14 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Client-only implementation of the SCEP (Cisco System's Simple Certificate Enrollment Protocol)"; homepage = "https://github.com/certnanny/sscep"; - maintainers = [ lib.maintainers.stv0g ]; + maintainers = [ maintainers.stv0g ]; license = [ - lib.licenses.bsd2 - lib.licenses.openssl + licenses.bsd2 + licenses.openssl ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ss/ssdeep/package.nix b/pkgs/by-name/ss/ssdeep/package.nix index 7e5e2298602c6a..34ba581897a500 100644 --- a/pkgs/by-name/ss/ssdeep/package.nix +++ b/pkgs/by-name/ss/ssdeep/package.nix @@ -23,12 +23,12 @@ stdenv.mkDerivation rec { patchelf --shrink-rpath --allowed-rpath-prefixes "$NIX_STORE" "$out"/bin/* ''; - meta = { + meta = with lib; { description = "Program for calculating fuzzy hashes"; mainProgram = "ssdeep"; homepage = "http://www.ssdeep.sf.net"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.thoughtpolice ]; + license = licenses.gpl2Plus; + platforms = platforms.unix; + maintainers = [ maintainers.thoughtpolice ]; }; } diff --git a/pkgs/by-name/ss/sse2neon/package.nix b/pkgs/by-name/ss/sse2neon/package.nix index fc5ec88908dc22..60207b00481a5a 100644 --- a/pkgs/by-name/ss/sse2neon/package.nix +++ b/pkgs/by-name/ss/sse2neon/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation (finalAttrs: { install -m444 sse2neon.h $out/lib/ ''; - meta = { + meta = with lib; { description = "Mono library that provides a GDI+-compatible API on non-Windows operating systems"; homepage = "https://www.mono-project.com/docs/gui/libgdiplus/"; - platforms = lib.platforms.unix; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.gador ]; + platforms = platforms.unix; + license = licenses.mit; + maintainers = [ maintainers.gador ]; }; }) diff --git a/pkgs/by-name/ss/sselp/package.nix b/pkgs/by-name/ss/sselp/package.nix index 87e29597f151f3..e7347252581024 100644 --- a/pkgs/by-name/ss/sselp/package.nix +++ b/pkgs/by-name/ss/sselp/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { sed -i "s@/usr/X11R6/lib@${libX11}/lib@g" config.mk ''; - meta = { + meta = with lib; { homepage = "https://tools.suckless.org/sselp"; description = "Prints the X selection to stdout, useful in scripts"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.magnetophon ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = [ maintainers.magnetophon ]; + platforms = platforms.linux; mainProgram = "sselp"; }; } diff --git a/pkgs/by-name/ss/sshesame/package.nix b/pkgs/by-name/ss/sshesame/package.nix index 5006d7e7901f6b..56b89f36289536 100644 --- a/pkgs/by-name/ss/sshesame/package.nix +++ b/pkgs/by-name/ss/sshesame/package.nix @@ -28,7 +28,7 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Easy to set up and use SSH honeypot"; longDescription = '' A fake SSH server that lets anyone in and logs their activity. @@ -36,8 +36,8 @@ buildGoModule rec { without doing anything on the host (e.g. executing commands, making network requests). ''; homepage = "https://github.com/jaksi/sshesame"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + license = licenses.asl20; + maintainers = with maintainers; [ ]; mainProgram = "sshesame"; }; } diff --git a/pkgs/by-name/ss/sshs/package.nix b/pkgs/by-name/ss/sshs/package.nix index 3f4757d47c01c5..35a62c23f434a6 100644 --- a/pkgs/by-name/ss/sshs/package.nix +++ b/pkgs/by-name/ss/sshs/package.nix @@ -21,11 +21,11 @@ rustPlatform.buildRustPackage rec { passthru.tests.version = testers.testVersion { package = sshs; }; - meta = { + meta = with lib; { description = "Terminal user interface for SSH"; homepage = "https://github.com/quantumsheep/sshs"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ not-my-segfault ]; + license = licenses.mit; + maintainers = with maintainers; [ not-my-segfault ]; mainProgram = "sshs"; }; } diff --git a/pkgs/by-name/ss/ssm-session-manager-plugin/package.nix b/pkgs/by-name/ss/ssm-session-manager-plugin/package.nix index a15ca65be19dc1..f34c61f183ff7c 100644 --- a/pkgs/by-name/ss/ssm-session-manager-plugin/package.nix +++ b/pkgs/by-name/ss/ssm-session-manager-plugin/package.nix @@ -67,12 +67,12 @@ buildGoModule rec { fi ''; - meta = { + meta = with lib; { homepage = "https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-working-with-install-plugin.html"; description = "Amazon SSM Session Manager Plugin"; mainProgram = "session-manager-plugin"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ amarshall mbaillie ]; diff --git a/pkgs/by-name/st/st-snazzy/package.nix b/pkgs/by-name/st/st-snazzy/package.nix index 2a947e1a81cd4a..44ab40f6e0771b 100644 --- a/pkgs/by-name/st/st-snazzy/package.nix +++ b/pkgs/by-name/st/st-snazzy/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=${placeholder "out"}" ]; env.TERMINFO = "${placeholder "out"}/share/terminfo"; - meta = { + meta = with lib; { homepage = "https://github.com/siduck/st"; description = "snazzy terminal (suckless + beautiful)"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pouya ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ pouya ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/st/stac-validator/package.nix b/pkgs/by-name/st/stac-validator/package.nix index 90d77f4d2e2781..971c3d855c2317 100644 --- a/pkgs/by-name/st/stac-validator/package.nix +++ b/pkgs/by-name/st/stac-validator/package.nix @@ -27,10 +27,10 @@ python3Packages.buildPythonPackage rec { pythonImportsCheck = [ "stac_validator" ]; - meta = { + meta = with lib; { description = "Validator for the SpatioTemporal Asset Catalog (STAC) specification"; homepage = "https://github.com/stac-utils/stac-validator"; - license = lib.licenses.asl20; - maintainers = lib.teams.geospatial.members; + license = licenses.asl20; + maintainers = teams.geospatial.members; }; } diff --git a/pkgs/by-name/st/stackblur-go/package.nix b/pkgs/by-name/st/stackblur-go/package.nix index eb97f4d513049a..34e2cbf90f5a76 100644 --- a/pkgs/by-name/st/stackblur-go/package.nix +++ b/pkgs/by-name/st/stackblur-go/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { "-w" ]; - meta = { + meta = with lib; { description = "Fast, almost Gaussian Blur implementation in Go"; homepage = "https://github.com/esimov/stackblur-go"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sodiboo ]; + license = licenses.mit; + maintainers = with maintainers; [ sodiboo ]; mainProgram = "stackblur"; }; } diff --git a/pkgs/by-name/st/stacks/package.nix b/pkgs/by-name/st/stacks/package.nix index bdc5e929bb1117..8ca935cddd1db0 100644 --- a/pkgs/by-name/st/stacks/package.nix +++ b/pkgs/by-name/st/stacks/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { buildInputs = [ zlib ]; - meta = { + meta = with lib; { description = "Software pipeline for building loci from short-read sequences"; homepage = "http://catchenlab.life.illinois.edu/stacks/"; - maintainers = [ lib.maintainers.bzizou ]; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; + maintainers = [ maintainers.bzizou ]; + license = licenses.gpl3Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/st/stacktile/package.nix b/pkgs/by-name/st/stacktile/package.nix index 87579d3caba129..3e97f2c97938e1 100644 --- a/pkgs/by-name/st/stacktile/package.nix +++ b/pkgs/by-name/st/stacktile/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { homepage = "https://sr.ht/~leon_plickat/stacktile/"; description = "Layout generator for the river Wayland compositor"; - license = with lib.licenses; [ gpl3Plus ]; + license = with licenses; [ gpl3Plus ]; mainProgram = "stacktile"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/st/stalwart-mail/package.nix b/pkgs/by-name/st/stalwart-mail/package.nix index 5ad612ab29bd90..cbf36ac5e9f266 100644 --- a/pkgs/by-name/st/stalwart-mail/package.nix +++ b/pkgs/by-name/st/stalwart-mail/package.nix @@ -155,12 +155,12 @@ rustPlatform.buildRustPackage { tests.stalwart-mail = nixosTests.stalwart-mail; }; - meta = { + meta = with lib; { description = "Secure & Modern All-in-One Mail Server (IMAP, JMAP, SMTP)"; homepage = "https://github.com/stalwartlabs/mail-server"; changelog = "https://github.com/stalwartlabs/mail-server/blob/main/CHANGELOG.md"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.agpl3Only; + maintainers = with maintainers; [ happysalada onny oddlama diff --git a/pkgs/by-name/st/starc/package.nix b/pkgs/by-name/st/starc/package.nix index cfbd52ee10297b..b2fd83b43c211c 100644 --- a/pkgs/by-name/st/starc/package.nix +++ b/pkgs/by-name/st/starc/package.nix @@ -43,12 +43,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Intuitive screenwriting app that streamlines the writing process"; homepage = "https://starc.app/"; mainProgram = "starc"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ pancaek ]; + license = licenses.unfree; + maintainers = with maintainers; [ pancaek ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/by-name/st/stardust-xr-atmosphere/package.nix b/pkgs/by-name/st/stardust-xr-atmosphere/package.nix index ca6df5a18cc235..c245d144eeb425 100644 --- a/pkgs/by-name/st/stardust-xr-atmosphere/package.nix +++ b/pkgs/by-name/st/stardust-xr-atmosphere/package.nix @@ -37,15 +37,15 @@ rustPlatform.buildRustPackage rec { }; }; - meta = { + meta = with lib; { description = "Environment, homespace, and setup client for Stardust XR"; homepage = "https://stardustxr.org"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "atmosphere"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ pandapip1 technobaboo ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/st/stardust-xr-flatland/package.nix b/pkgs/by-name/st/stardust-xr-flatland/package.nix index 214c5636dfd957..d5b68b1cacbeeb 100644 --- a/pkgs/by-name/st/stardust-xr-flatland/package.nix +++ b/pkgs/by-name/st/stardust-xr-flatland/package.nix @@ -30,15 +30,15 @@ rustPlatform.buildRustPackage rec { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "A flat window for Stardust XR"; homepage = "https://stardustxr.org"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "flatland"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ pandapip1 technobaboo ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/st/stardust-xr-gravity/package.nix b/pkgs/by-name/st/stardust-xr-gravity/package.nix index a4b8bb615dc083..c7e554897e1d49 100644 --- a/pkgs/by-name/st/stardust-xr-gravity/package.nix +++ b/pkgs/by-name/st/stardust-xr-gravity/package.nix @@ -28,15 +28,15 @@ rustPlatform.buildRustPackage rec { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "Utility to launch apps and stardust clients at an offet"; homepage = "https://stardustxr.org"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "gravity"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ pandapip1 technobaboo ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/st/stardust-xr-kiara/package.nix b/pkgs/by-name/st/stardust-xr-kiara/package.nix index 1cc87ecca8a614..db249e85eb18aa 100644 --- a/pkgs/by-name/st/stardust-xr-kiara/package.nix +++ b/pkgs/by-name/st/stardust-xr-kiara/package.nix @@ -50,15 +50,15 @@ rustPlatform.buildRustPackage rec { STARDUST_RES_PREFIXES = "${src}/res"; }; - meta = { + meta = with lib; { description = "A 360-degree app shell / DE for Stardust XR using Niri"; homepage = "https://stardustxr.org/"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "kiara"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ pandapip1 technobaboo ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/st/stardust-xr-magnetar/package.nix b/pkgs/by-name/st/stardust-xr-magnetar/package.nix index e6803e4da4a06e..de0c5b7c6be797 100644 --- a/pkgs/by-name/st/stardust-xr-magnetar/package.nix +++ b/pkgs/by-name/st/stardust-xr-magnetar/package.nix @@ -28,15 +28,15 @@ rustPlatform.buildRustPackage rec { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "Workspaces client for Stardust"; homepage = "https://stardustxr.org"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "magnetar"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ pandapip1 technobaboo ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/st/stardust-xr-phobetor/package.nix b/pkgs/by-name/st/stardust-xr-phobetor/package.nix index 819ddcfce37a39..fbbabbee9d9f62 100644 --- a/pkgs/by-name/st/stardust-xr-phobetor/package.nix +++ b/pkgs/by-name/st/stardust-xr-phobetor/package.nix @@ -30,15 +30,15 @@ rustPlatform.buildRustPackage rec { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "Handheld panel shell for Stardust XR"; homepage = "https://stardustxr.org"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "phobetor"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ pandapip1 technobaboo ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/st/stardust-xr-protostar/package.nix b/pkgs/by-name/st/stardust-xr-protostar/package.nix index 5f5dc13a71b18d..ce7398787c764b 100644 --- a/pkgs/by-name/st/stardust-xr-protostar/package.nix +++ b/pkgs/by-name/st/stardust-xr-protostar/package.nix @@ -49,14 +49,14 @@ rustPlatform.buildRustPackage rec { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "Prototype application launchers for Stardust XR"; homepage = "https://stardustxr.org"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ pandapip1 technobaboo ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/st/stardust-xr-server/package.nix b/pkgs/by-name/st/stardust-xr-server/package.nix index 680668a6e2e051..c4e93bf6ece0cb 100644 --- a/pkgs/by-name/st/stardust-xr-server/package.nix +++ b/pkgs/by-name/st/stardust-xr-server/package.nix @@ -57,16 +57,16 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Wayland compositor and display server for 3D applications"; homepage = "https://stardustxr.org/"; changelog = "https://github.com/StardustXR/server/releases"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "stardust-xr-server"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ pandapip1 technobaboo ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/st/stardust-xr-sphereland/package.nix b/pkgs/by-name/st/stardust-xr-sphereland/package.nix index 0ac18891aab22e..8af61da57ba875 100644 --- a/pkgs/by-name/st/stardust-xr-sphereland/package.nix +++ b/pkgs/by-name/st/stardust-xr-sphereland/package.nix @@ -34,15 +34,15 @@ rustPlatform.buildRustPackage rec { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "Pointer/keyboard operated window manager for Stardust XR"; homepage = "https://stardustxr.org"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "sphereland"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ pandapip1 technobaboo ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/st/starlark/package.nix b/pkgs/by-name/st/starlark/package.nix index 6101803f35002a..69efcd92f2b9f3 100644 --- a/pkgs/by-name/st/starlark/package.nix +++ b/pkgs/by-name/st/starlark/package.nix @@ -26,11 +26,11 @@ buildGoModule { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { homepage = "https://github.com/google/starlark-go"; description = "Interpreter for Starlark, implemented in Go"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.bsd3; + maintainers = with maintainers; [ aaronjheng ]; mainProgram = "starlark"; }; } diff --git a/pkgs/by-name/st/stats/package.nix b/pkgs/by-name/st/stats/package.nix index 71f6b098561f17..b5e7d27095ea39 100644 --- a/pkgs/by-name/st/stats/package.nix +++ b/pkgs/by-name/st/stats/package.nix @@ -30,15 +30,15 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "macOS system monitor in your menu bar"; homepage = "https://github.com/exelban/stats"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ donteatoreo emilytrau ]; - platforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + platforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/st/stduuid/package.nix b/pkgs/by-name/st/stduuid/package.nix index a0a2ce6d9faed6..bb4feefce78861 100644 --- a/pkgs/by-name/st/stduuid/package.nix +++ b/pkgs/by-name/st/stduuid/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation { }) ]; - meta = { + meta = with lib; { description = "C++17 cross-platform implementation for UUIDs"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.shlevy ]; + license = licenses.mit; + maintainers = [ maintainers.shlevy ]; homepage = "https://github.com/mariusbancila/stduuid"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/st/stellar-core/package.nix b/pkgs/by-name/st/stellar-core/package.nix index 930efaa35dc6d7..32d91825a8d30a 100644 --- a/pkgs/by-name/st/stellar-core/package.nix +++ b/pkgs/by-name/st/stellar-core/package.nix @@ -78,10 +78,10 @@ stdenv.mkDerivation (finalAttrs: { ./autogen.sh ''; - meta = { + meta = with lib; { description = "Implements the Stellar Consensus Protocol, a federated consensus protocol"; homepage = "https://www.stellar.org/"; - license = lib.licenses.asl20; + license = licenses.asl20; longDescription = '' Stellar-core is the backbone of the Stellar network. It maintains a local copy of the ledger, communicating and staying in sync with other @@ -89,7 +89,7 @@ stdenv.mkDerivation (finalAttrs: { store historical records of the ledger and participate in consensus. ''; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "stellar-core"; }; }) diff --git a/pkgs/by-name/st/stenc/package.nix b/pkgs/by-name/st/stenc/package.nix index 58c82ca15e547f..461e8cb5aed108 100644 --- a/pkgs/by-name/st/stenc/package.nix +++ b/pkgs/by-name/st/stenc/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { description = "SCSI Tape Encryption Manager"; mainProgram = "stenc"; homepage = "https://github.com/scsitape/stenc"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ woffs ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + maintainers = with maintainers; [ woffs ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/st/stfl/package.nix b/pkgs/by-name/st/stfl/package.nix index 8a3079fbf67978..ccfd4404aea5b3 100644 --- a/pkgs/by-name/st/stfl/package.nix +++ b/pkgs/by-name/st/stfl/package.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { ln -s $out/lib/libstfl.so.0.24 $out/lib/libstfl.so.0 ''; - meta = { + meta = with lib; { homepage = "https://web.archive.org/web/20211113222004/http://www.clifford.at/stfl/"; description = "Library which implements a curses-based widget set for text terminals"; - maintainers = with lib.maintainers; [ lovek323 ]; - license = lib.licenses.lgpl3; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ lovek323 ]; + license = licenses.lgpl3; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/st/stl-to-obj/package.nix b/pkgs/by-name/st/stl-to-obj/package.nix index 47f584d3029790..9d5c8233a17068 100644 --- a/pkgs/by-name/st/stl-to-obj/package.nix +++ b/pkgs/by-name/st/stl-to-obj/package.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation (finalAttrs: { cmake ]; - meta = { + meta = with lib; { description = "C++ stl to obj file converter and vice versa"; homepage = "https://github.com/Neizvestnyj/stl-to-obj"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ nim65s ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ nim65s ]; mainProgram = "stl2obj"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/st/storeBackup/package.nix b/pkgs/by-name/st/storeBackup/package.nix index 8a58698c0cdfb2..d04ffd0e7e9934 100644 --- a/pkgs/by-name/st/storeBackup/package.nix +++ b/pkgs/by-name/st/storeBackup/package.nix @@ -123,11 +123,11 @@ stdenv.mkDerivation rec { } ''; - meta = { + meta = with lib; { description = "Backup suite that stores files on other disks"; homepage = "https://savannah.nongnu.org/projects/storebackup"; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.marcweber ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = [ maintainers.marcweber ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/st/stract/package.nix b/pkgs/by-name/st/stract/package.nix index ac809562dd9f73..933dceacddfdd5 100644 --- a/pkgs/by-name/st/stract/package.nix +++ b/pkgs/by-name/st/stract/package.nix @@ -27,10 +27,10 @@ rustPlatform.buildRustPackage rec { curl ]; - meta = { + meta = with lib; { description = "Open source web search engine hosted at stract.com targeted towards tinkerers and developers."; homepage = "https://github.com/StractOrg/stract"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ ailsa-sun ]; + license = licenses.agpl3Only; + maintainers = with maintainers; [ ailsa-sun ]; }; } diff --git a/pkgs/by-name/st/stricat/package.nix b/pkgs/by-name/st/stricat/package.nix index bfd6397657b77a..26eaf7ea03374b 100644 --- a/pkgs/by-name/st/stricat/package.nix +++ b/pkgs/by-name/st/stricat/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { mv stricat $out/bin ''; - meta = { + meta = with lib; { description = "Multi-use cryptographic tool based on the STRIBOB algorithm"; homepage = "https://www.stribob.com/stricat/"; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.thoughtpolice ]; + license = licenses.bsd3; + platforms = platforms.unix; + maintainers = [ maintainers.thoughtpolice ]; mainProgram = "stricat"; }; } diff --git a/pkgs/by-name/st/stunnel/package.nix b/pkgs/by-name/st/stunnel/package.nix index 5201716af9cee8..1d7446e4edaae2 100644 --- a/pkgs/by-name/st/stunnel/package.nix +++ b/pkgs/by-name/st/stunnel/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation (finalAttrs: { stunnel = nixosTests.stunnel; }; - meta = { + meta = with lib; { description = "Universal tls/ssl wrapper"; homepage = "https://www.stunnel.org/"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.thoughtpolice ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = [ maintainers.thoughtpolice ]; + platforms = platforms.unix; mainProgram = "stunnel"; }; }) diff --git a/pkgs/by-name/st/sturmflut/package.nix b/pkgs/by-name/st/sturmflut/package.nix index ad5ee4fbefdc30..2040a1995dc0c7 100644 --- a/pkgs/by-name/st/sturmflut/package.nix +++ b/pkgs/by-name/st/sturmflut/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Fast (80+ Gbit/s) pixelflut client with full IPv6 and animation support"; homepage = "https://github.com/TobleMiner/sturmflut"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ zebreus ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ zebreus ]; + platforms = platforms.linux; mainProgram = "sturmflut"; }; } diff --git a/pkgs/by-name/st/stylelint-lsp/package.nix b/pkgs/by-name/st/stylelint-lsp/package.nix index 14a565d5e33e20..f515d15d0fc4f5 100644 --- a/pkgs/by-name/st/stylelint-lsp/package.nix +++ b/pkgs/by-name/st/stylelint-lsp/package.nix @@ -59,14 +59,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "A stylelint Language Server"; homepage = "https://github.com/bmatcuk/stylelint-lsp"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "stylelint-lsp"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ gepbird ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/st/stylelint/package.nix b/pkgs/by-name/st/stylelint/package.nix index cf159a31e3f0a6..e3f450fa1f4674 100644 --- a/pkgs/by-name/st/stylelint/package.nix +++ b/pkgs/by-name/st/stylelint/package.nix @@ -22,11 +22,11 @@ buildNpmPackage { dontNpmBuild = true; - meta = { + meta = with lib; { description = "Mighty CSS linter that helps you avoid errors and enforce conventions"; mainProgram = "stylelint"; homepage = "https://stylelint.io"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ momeemt ]; + license = licenses.mit; + maintainers = with maintainers; [ momeemt ]; }; } diff --git a/pkgs/by-name/su/subdl/package.nix b/pkgs/by-name/su/subdl/package.nix index 95272e63b05417..edc10f4a6474f3 100644 --- a/pkgs/by-name/su/subdl/package.nix +++ b/pkgs/by-name/su/subdl/package.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation { install -vD subdl $out/bin/subdl ''; - meta = { + meta = with lib; { homepage = "https://github.com/alexanderwink/subdl"; description = "Command-line tool to download subtitles from opensubtitles.org"; - platforms = lib.platforms.all; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.exfalso ]; + platforms = platforms.all; + license = licenses.gpl3; + maintainers = [ maintainers.exfalso ]; mainProgram = "subdl"; }; } diff --git a/pkgs/by-name/su/sublime/package.nix b/pkgs/by-name/su/sublime/package.nix index 3f8137f7a783e5..30e089e67e9c86 100644 --- a/pkgs/by-name/su/sublime/package.nix +++ b/pkgs/by-name/su/sublime/package.nix @@ -76,10 +76,10 @@ stdenv.mkDerivation rec { icon = "sublime_text"; }; - meta = { + meta = with lib; { description = "Sophisticated text editor for code, markup and prose"; - license = lib.licenses.unfree; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/su/sublime_syntax_convertor/package.nix b/pkgs/by-name/su/sublime_syntax_convertor/package.nix index 869498bfb4ed37..8bda1e827e8750 100644 --- a/pkgs/by-name/su/sublime_syntax_convertor/package.nix +++ b/pkgs/by-name/su/sublime_syntax_convertor/package.nix @@ -4,10 +4,10 @@ bundlerApp { gemdir = ./.; exes = [ "sublime_syntax_convertor" ]; - meta = { + meta = with lib; { description = "Converts tmLanguage to sublime-syntax"; homepage = "https://github.com/aziz/SublimeSyntaxConvertor/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ laalsaas ]; + license = licenses.mit; + maintainers = with maintainers; [ laalsaas ]; }; } diff --git a/pkgs/by-name/su/subnetcalc/package.nix b/pkgs/by-name/su/subnetcalc/package.nix index b3655666855938..267d4434fbcec5 100644 --- a/pkgs/by-name/su/subnetcalc/package.nix +++ b/pkgs/by-name/su/subnetcalc/package.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation (finalAttrs: { ninja ]; - meta = { + meta = with lib; { description = "SubNetCalc is an IPv4/IPv6 subnet address calculator"; homepage = "https://www.uni-due.de/~be0001/subnetcalc/"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; longDescription = '' SubNetCalc is an IPv4/IPv6 subnet address calculator. For given IPv4 or IPv6 address and netmask or prefix length, it calculates network address, @@ -35,7 +35,7 @@ stdenv.mkDerivation (finalAttrs: { type, scope, interface ID, etc.). ''; mainProgram = "subnetcalc"; - maintainers = with lib.maintainers; [ atila ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ atila ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/su/sums/package.nix b/pkgs/by-name/su/sums/package.nix index a719de19ae9287..1caa8ff40dc4e4 100644 --- a/pkgs/by-name/su/sums/package.nix +++ b/pkgs/by-name/su/sums/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation (finalAttrs: { mpfr ]; - meta = { + meta = with lib; { description = "Simple GTK postfix calculator for GNOME"; homepage = "https://gitlab.com/leesonwai/sums"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "sums"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/su/sunpaper/package.nix b/pkgs/by-name/su/sunpaper/package.nix index 9dccc07a5e1930..36cd3dbaacb970 100644 --- a/pkgs/by-name/su/sunpaper/package.nix +++ b/pkgs/by-name/su/sunpaper/package.nix @@ -46,12 +46,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { $out/bin/sunpaper --help > /dev/null ''; - meta = { + meta = with lib; { description = "Utility to change wallpaper based on local weather, sunrise and sunset times"; homepage = "https://github.com/hexive/sunpaper"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "sunpaper"; - maintainers = with lib.maintainers; [ jevy ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ jevy ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/su/sunwait/package.nix b/pkgs/by-name/su/sunwait/package.nix index 770e67b9f73cb0..deeb4ff4ee0e08 100644 --- a/pkgs/by-name/su/sunwait/package.nix +++ b/pkgs/by-name/su/sunwait/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation (finalAttrs: { install -Dm755 sunwait -t $out/bin ''; - meta = { + meta = with lib; { description = "Calculates sunrise or sunset times with civil, nautical, astronomical and custom twilights"; homepage = "https://github.com/risacher/sunwait"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ ]; mainProgram = "sunwait"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/su/supergee/package.nix b/pkgs/by-name/su/supergee/package.nix index 47e9fb429bf783..df886f5ffcee50 100644 --- a/pkgs/by-name/su/supergee/package.nix +++ b/pkgs/by-name/su/supergee/package.nix @@ -73,12 +73,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; }; - meta = { + meta = with lib; { description = "Vala based UI for beets"; homepage = "https://github.com/DannyGB/SuperGee"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + platforms = platforms.linux; mainProgram = "SuperG"; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; + maintainers = with maintainers; [ bot-wxt1221 ]; }; }) diff --git a/pkgs/by-name/su/supergfxctl-plasmoid/package.nix b/pkgs/by-name/su/supergfxctl-plasmoid/package.nix index 2b5ce59fd608ed..11ffc095d8e24b 100644 --- a/pkgs/by-name/su/supergfxctl-plasmoid/package.nix +++ b/pkgs/by-name/su/supergfxctl-plasmoid/package.nix @@ -26,14 +26,14 @@ stdenv.mkDerivation rec { kdePackages.libplasma ]; - meta = { + meta = with lib; { description = "KDE Plasma plasmoid for supergfxctl"; longDescription = '' KDE Plasma plasmoid for supergfxctl Built as a C++/QML Plasmoid ''; - license = lib.licenses.mpl20; + license = licenses.mpl20; homepage = "https://gitlab.com/Jhyub/supergfxctl-plasmoid"; - maintainers = with lib.maintainers; [ johnylpm ]; + maintainers = with maintainers; [ johnylpm ]; }; } diff --git a/pkgs/by-name/su/surelog/package.nix b/pkgs/by-name/su/surelog/package.nix index 75511f68e8462c..d448eb9bf8310d 100644 --- a/pkgs/by-name/su/surelog/package.nix +++ b/pkgs/by-name/su/surelog/package.nix @@ -68,15 +68,15 @@ stdenv.mkDerivation (finalAttrs: { runHook postCheck ''; - meta = { + meta = with lib; { description = "SystemVerilog 2017 Pre-processor, Parser, Elaborator, UHDM Compiler"; homepage = "https://github.com/chipsalliance/Surelog"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "surelog"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ matthuszagh hzeller ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/su/surfraw/package.nix b/pkgs/by-name/su/surfraw/package.nix index 6e4fb9265e5157..fe5b84970f23c1 100644 --- a/pkgs/by-name/su/surfraw/package.nix +++ b/pkgs/by-name/su/surfraw/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ perl ]; - meta = { + meta = with lib; { description = "Provides a fast unix command line interface to a variety of popular WWW search engines and other artifacts of power"; homepage = "https://gitlab.com/surfraw/Surfraw"; maintainers = [ ]; - platforms = lib.platforms.all; - license = lib.licenses.publicDomain; + platforms = platforms.all; + license = licenses.publicDomain; }; } diff --git a/pkgs/by-name/su/sus-compiler/package.nix b/pkgs/by-name/su/sus-compiler/package.nix index c7f38a8fe4f313..ab0d8e68340c26 100644 --- a/pkgs/by-name/su/sus-compiler/package.nix +++ b/pkgs/by-name/su/sus-compiler/package.nix @@ -32,11 +32,11 @@ rustPlatform.buildRustPackage rec { nativeInstallCheckInputs = [ versionCheckHook ]; versionCheckProgram = "${placeholder "out"}/bin/sus_compiler"; - meta = { + meta = with lib; { description = "A new Hardware Design Language that keeps you in the driver's seat"; homepage = "https://github.com/pc2/sus-compiler"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ pbsds ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ pbsds ]; mainProgram = "sus_compiler"; }; } diff --git a/pkgs/by-name/su/sutils/package.nix b/pkgs/by-name/su/sutils/package.nix index 1ea0e1c22b1659..8b78e34a989794 100644 --- a/pkgs/by-name/su/sutils/package.nix +++ b/pkgs/by-name/su/sutils/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { prePatch = ''sed -i "s@/usr/local@$out@" Makefile''; - meta = { + meta = with lib; { description = "Small command-line utilities"; homepage = "https://github.com/baskerville/sutils"; - maintainers = [ lib.maintainers.meisternu ]; - license = lib.licenses.unlicense; - platforms = lib.platforms.linux; + maintainers = [ maintainers.meisternu ]; + license = licenses.unlicense; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/su/suyu/package.nix b/pkgs/by-name/su/suyu/package.nix index ea19a06ecf2ddb..c58e83ad2266e6 100644 --- a/pkgs/by-name/su/suyu/package.nix +++ b/pkgs/by-name/su/suyu/package.nix @@ -220,13 +220,13 @@ stdenv.mkDerivation (finalAttrs: { install -Dm444 $src/dist/72-suyu-input.rules $out/lib/udev/rules.d/72-suyu-input.rules "; - meta = { + meta = with lib; { description = "Experimental Nintendo Switch emulator written in C++"; homepage = "https://suyu.dev"; mainProgram = "suyu"; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ liberodark ]; - license = with lib.licenses; [ + platforms = platforms.linux; + maintainers = with maintainers; [ liberodark ]; + license = with licenses; [ gpl3Plus # Icons asl20 diff --git a/pkgs/by-name/sv/svnfs/package.nix b/pkgs/by-name/sv/svnfs/package.nix index a8f0e51facde24..2df9b84274ce4f 100644 --- a/pkgs/by-name/sv/svnfs/package.nix +++ b/pkgs/by-name/sv/svnfs/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-I ${subversion.dev}/include/subversion-1 -fcommon"; NIX_LDFLAGS = "-lsvn_client-1 -lsvn_subr-1"; - meta = { + meta = with lib; { description = "FUSE filesystem for accessing Subversion repositories"; homepage = "https://www.jmadden.eu/index.php/svnfs/"; - license = lib.licenses.gpl2Only; - maintainers = [ lib.maintainers.marcweber ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Only; + maintainers = [ maintainers.marcweber ]; + platforms = platforms.unix; mainProgram = "svnfs"; }; } diff --git a/pkgs/by-name/sv/svtplay-dl/package.nix b/pkgs/by-name/sv/svtplay-dl/package.nix index c39b98f1627d4f..7824a274e2deee 100644 --- a/pkgs/by-name/sv/svtplay-dl/package.nix +++ b/pkgs/by-name/sv/svtplay-dl/package.nix @@ -76,11 +76,11 @@ buildPythonApplication { $out/bin/svtplay-dl --help > /dev/null ''; - meta = { + meta = with lib; { homepage = "https://github.com/spaam/svtplay-dl"; description = "Command-line tool to download videos from svtplay.se and other sites"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; + license = licenses.mit; + platforms = platforms.unix; mainProgram = "svtplay-dl"; }; } diff --git a/pkgs/by-name/sw/sway-easyfocus/package.nix b/pkgs/by-name/sw/sway-easyfocus/package.nix index dd4082764a29c0..ca00c4d45c286b 100644 --- a/pkgs/by-name/sw/sway-easyfocus/package.nix +++ b/pkgs/by-name/sw/sway-easyfocus/package.nix @@ -41,11 +41,11 @@ rustPlatform.buildRustPackage rec { pango ]; - meta = { + meta = with lib; { description = "Tool to help efficiently focus windows in Sway, inspired by i3-easyfocus"; homepage = "https://github.com/edzdez/sway-easyfocus"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + license = licenses.mit; + maintainers = with maintainers; [ ]; mainProgram = "sway-easyfocus"; }; } diff --git a/pkgs/by-name/sw/swayest-workstyle/package.nix b/pkgs/by-name/sw/swayest-workstyle/package.nix index c42f0007ed27af..13826905ba80d2 100644 --- a/pkgs/by-name/sw/swayest-workstyle/package.nix +++ b/pkgs/by-name/sw/swayest-workstyle/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage { # No tests doCheck = false; - meta = { + meta = with lib; { description = "Map sway workspace names to icons defined depending on the windows inside of the workspace"; homepage = "https://github.com/Lyr-7D1h/swayest_workstyle"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "sworkstyle"; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sw/swayr/package.nix b/pkgs/by-name/sw/swayr/package.nix index 36adeddd31393d..26e976f8e29a96 100644 --- a/pkgs/by-name/sw/swayr/package.nix +++ b/pkgs/by-name/sw/swayr/package.nix @@ -28,12 +28,12 @@ rustPlatform.buildRustPackage rec { export HOME=$TMPDIR ''; - meta = { + meta = with lib; { description = "Window switcher (and more) for sway"; homepage = "https://git.sr.ht/~tsdh/swayr"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "swayr"; - maintainers = with lib.maintainers; [ artturin ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ artturin ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sw/swfmill/package.nix b/pkgs/by-name/sw/swfmill/package.nix index 3beae68dfefb31..2593880a2a6915 100644 --- a/pkgs/by-name/sw/swfmill/package.nix +++ b/pkgs/by-name/sw/swfmill/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { # fatal error: 'libxml/xpath.h' file not found env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-I${libxml2.dev}/include/libxml2"; - meta = { + meta = with lib; { description = "Xml2swf and swf2xml processor with import functionalities"; homepage = "http://swfmill.org"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.unix; + license = licenses.gpl2Only; + platforms = platforms.unix; mainProgram = "swfmill"; }; } diff --git a/pkgs/by-name/sw/swift-quit/package.nix b/pkgs/by-name/sw/swift-quit/package.nix index 80b7ef5f89a2a0..2b345aeb8d3ba2 100644 --- a/pkgs/by-name/sw/swift-quit/package.nix +++ b/pkgs/by-name/sw/swift-quit/package.nix @@ -25,12 +25,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Automatic quitting of macOS apps when closing their windows."; homepage = "https://swiftquit.com/"; - license = lib.licenses.gpl3; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ Enzime ]; - platforms = lib.platforms.darwin; + license = licenses.gpl3; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ Enzime ]; + platforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/sw/swiftformat/package.nix b/pkgs/by-name/sw/swiftformat/package.nix index fa4c303ae66ac2..ab9b067c4f9f7b 100644 --- a/pkgs/by-name/sw/swiftformat/package.nix +++ b/pkgs/by-name/sw/swiftformat/package.nix @@ -39,14 +39,14 @@ swift.stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Code formatting and linting tool for Swift"; homepage = "https://github.com/nicklockwood/SwiftFormat"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ bdesham DimitarNestorov ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/by-name/sw/swiftlint/package.nix b/pkgs/by-name/sw/swiftlint/package.nix index cf2d6dcc76ef5e..b078eaac8668b3 100644 --- a/pkgs/by-name/sw/swiftlint/package.nix +++ b/pkgs/by-name/sw/swiftlint/package.nix @@ -34,16 +34,16 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "A tool to enforce Swift style and conventions"; homepage = "https://realm.github.io/SwiftLint/"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "swiftlint"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ matteopacini DimitarNestorov ]; - platforms = lib.platforms.darwin; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + platforms = platforms.darwin; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/by-name/sw/swipe-guess/package.nix b/pkgs/by-name/sw/swipe-guess/package.nix index 26273fb1101034..ed0ca55e00058c 100644 --- a/pkgs/by-name/sw/swipe-guess/package.nix +++ b/pkgs/by-name/sw/swipe-guess/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { install -Dm555 swipeGuess -t $out/bin ''; - meta = { + meta = with lib; { description = "Completion plugin for touchscreen-keyboards on mobile devices"; homepage = "https://git.sr.ht/~earboxer/swipeGuess/"; - license = lib.licenses.agpl3Only; + license = licenses.agpl3Only; mainProgram = "swipeGuess"; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/sw/switch-to-configuration-ng/package.nix b/pkgs/by-name/sw/switch-to-configuration-ng/package.nix index e3ea53792406a1..759e07c3a6b725 100644 --- a/pkgs/by-name/sw/switch-to-configuration-ng/package.nix +++ b/pkgs/by-name/sw/switch-to-configuration-ng/package.nix @@ -32,10 +32,10 @@ rustPlatform.buildRustPackage { cargo clippy -- -Dwarnings ''; - meta = { + meta = with lib; { description = "NixOS switch-to-configuration program"; mainProgram = "switch-to-configuration"; - maintainers = with lib.maintainers; [ jmbaur ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ jmbaur ]; + license = licenses.mit; }; } diff --git a/pkgs/by-name/sw/switchaudio-osx/package.nix b/pkgs/by-name/sw/switchaudio-osx/package.nix index e359da554d7b09..7559f5ff43b84d 100644 --- a/pkgs/by-name/sw/switchaudio-osx/package.nix +++ b/pkgs/by-name/sw/switchaudio-osx/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Command-line utility to manage audio input/output devices on macOS"; homepage = "https://github.com/deweller/switchaudio-osx"; mainProgram = "SwitchAudioSource"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ taranarmo ]; - platforms = lib.platforms.darwin; + license = licenses.mit; + maintainers = with maintainers; [ taranarmo ]; + platforms = platforms.darwin; }; } diff --git a/pkgs/by-name/sw/sword/package.nix b/pkgs/by-name/sw/sword/package.nix index 7ee1646ad2277e..df69c56938ae44 100644 --- a/pkgs/by-name/sw/sword/package.nix +++ b/pkgs/by-name/sw/sword/package.nix @@ -103,7 +103,7 @@ stdenv.mkDerivation ( ); }; - meta = { + meta = with lib; { description = "Software framework that allows research manipulation of Biblical texts"; homepage = "https://www.crosswire.org/sword/"; longDescription = '' @@ -115,11 +115,11 @@ stdenv.mkDerivation ( translators of the Bible, and have a growing collection of many hundred texts in around 100 languages. ''; - license = lib.licenses.gpl2; - maintainers = with lib.maintainers; [ + license = licenses.gpl2; + maintainers = with maintainers; [ greg ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; } ) diff --git a/pkgs/by-name/sw/swww/package.nix b/pkgs/by-name/sw/swww/package.nix index e2a07e705fc011..ba34d55f163a41 100644 --- a/pkgs/by-name/sw/swww/package.nix +++ b/pkgs/by-name/sw/swww/package.nix @@ -53,15 +53,15 @@ rustPlatform.buildRustPackage rec { --zsh completions/_swww ''; - meta = { + meta = with lib; { description = "Efficient animated wallpaper daemon for wayland, controlled at runtime"; homepage = "https://github.com/LGFae/swww"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ + license = licenses.gpl3; + maintainers = with maintainers; [ mateodd25 donovanglover ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "swww"; }; } diff --git a/pkgs/by-name/sx/sx/package.nix b/pkgs/by-name/sx/sx/package.nix index 5bbb60e52ababf..c6e62f85e5682a 100644 --- a/pkgs/by-name/sx/sx/package.nix +++ b/pkgs/by-name/sx/sx/package.nix @@ -48,15 +48,15 @@ stdenvNoCC.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { description = "Simple alternative to both xinit and startx for starting a Xorg server"; homepage = "https://github.com/earnestly/sx"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "sx"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ figsoda thiagokokada ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/sx/sxcs/package.nix b/pkgs/by-name/sx/sxcs/package.nix index b4dd0b871573a9..29d98daf350dcf 100644 --- a/pkgs/by-name/sx/sxcs/package.nix +++ b/pkgs/by-name/sx/sxcs/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Minimal X11 Color Picker and Magnifier"; homepage = "https://codeberg.org/NRK/sxcs"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/sy/sylk/package.nix b/pkgs/by-name/sy/sylk/package.nix index e124556188fac3..2a89db3a37d0bc 100644 --- a/pkgs/by-name/sy/sylk/package.nix +++ b/pkgs/by-name/sy/sylk/package.nix @@ -17,16 +17,16 @@ appimageTools.wrapType2 rec { export LC_ALL=C.UTF-8 ''; - meta = { + meta = with lib; { description = "Desktop client for SylkServer, a multiparty conferencing tool"; homepage = "https://sylkserver.com/"; - license = lib.licenses.agpl3Plus; + license = licenses.agpl3Plus; mainProgram = "Sylk"; - maintainers = with lib.maintainers; [ zimbatm ]; + maintainers = with maintainers; [ zimbatm ]; platforms = [ "i386-linux" "x86_64-linux" ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/by-name/sy/symcc/package.nix b/pkgs/by-name/sy/symcc/package.nix index fca634adcad8f8..a7a44b9306e51f 100644 --- a/pkgs/by-name/sy/symcc/package.nix +++ b/pkgs/by-name/sy/symcc/package.nix @@ -58,12 +58,12 @@ stdenv.mkDerivation { z3 ]; - meta = { + meta = with lib; { description = "Efficient compiler-based symbolic execution"; homepage = "https://www.s3.eurecom.fr/tools/symbolic_execution/symcc.html"; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.dump_stack ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = [ maintainers.dump_stack ]; + platforms = platforms.linux; mainProgram = "symcc"; }; } diff --git a/pkgs/by-name/sy/sympow/package.nix b/pkgs/by-name/sy/sympow/package.nix index ea2ed2e83ddd7f..84d1560e330ca9 100644 --- a/pkgs/by-name/sy/sympow/package.nix +++ b/pkgs/by-name/sy/sympow/package.nix @@ -71,7 +71,7 @@ stdenv.mkDerivation rec { "$out/bin/sympow" -sp 2p16 -curve "[1,2,3,4,5]" | grep '8.3705' ''; - meta = { + meta = with lib; { description = "Compute special values of symmetric power elliptic curve L-functions"; mainProgram = "sympow"; license = { @@ -79,7 +79,7 @@ stdenv.mkDerivation rec { fullName = "Custom, BSD-like. See COPYING file."; free = true; }; - maintainers = lib.teams.sage.members; - platforms = lib.platforms.unix; + maintainers = teams.sage.members; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/sy/syn2mas/package.nix b/pkgs/by-name/sy/syn2mas/package.nix index c39aa512aa43a1..c5af17918c050d 100644 --- a/pkgs/by-name/sy/syn2mas/package.nix +++ b/pkgs/by-name/sy/syn2mas/package.nix @@ -21,11 +21,11 @@ buildNpmPackage rec { dontBuild = true; - meta = { + meta = with lib; { description = "Tool to help with the migration of a Matrix Synapse installation to the Matrix Authentication Service"; homepage = "https://github.com/element-hq/matrix-authentication-service/tree/main/tools/syn2mas"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ teutat3s ]; + license = licenses.agpl3Only; + maintainers = with maintainers; [ teutat3s ]; mainProgram = "syn2mas"; }; } diff --git a/pkgs/by-name/sy/synaesthesia/package.nix b/pkgs/by-name/sy/synaesthesia/package.nix index 24cbbb65d8ddd3..6011b2bc620620 100644 --- a/pkgs/by-name/sy/synaesthesia/package.nix +++ b/pkgs/by-name/sy/synaesthesia/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { libSM ]; - meta = { + meta = with lib; { homepage = "https://logarithmic.net/pfh/synaesthesia"; description = "Program for representing sounds visually"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + platforms = platforms.linux; maintainers = [ ]; mainProgram = "synaesthesia"; }; diff --git a/pkgs/by-name/sy/syncthing-tray/package.nix b/pkgs/by-name/sy/syncthing-tray/package.nix index 0f429fd36c24b4..070d2203d94912 100644 --- a/pkgs/by-name/sy/syncthing-tray/package.nix +++ b/pkgs/by-name/sy/syncthing-tray/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ libappindicator-gtk3 ]; - meta = { + meta = with lib; { description = "Simple application tray for syncthing"; homepage = "https://github.com/alex2108/syncthing-tray"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ luftmensch-luftmensch nickhu ]; diff --git a/pkgs/by-name/sy/syndicate-server/package.nix b/pkgs/by-name/sy/syndicate-server/package.nix index efca2c5ca5ddd3..6ceeb7323384ca 100644 --- a/pkgs/by-name/sy/syndicate-server/package.nix +++ b/pkgs/by-name/sy/syndicate-server/package.nix @@ -28,12 +28,12 @@ rustPlatform.buildRustPackage rec { doInstallCheck = true; - meta = { + meta = with lib; { description = "Syndicate broker server"; homepage = "http://synit.org/"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "syndicate-server"; - maintainers = with lib.maintainers; [ ehmry ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ ehmry ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sy/syndication-domination/package.nix b/pkgs/by-name/sy/syndication-domination/package.nix index 6bb68402dc95c6..0e0332d15cd33f 100644 --- a/pkgs/by-name/sy/syndication-domination/package.nix +++ b/pkgs/by-name/sy/syndication-domination/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation { (lib.mesonBool "PYTHON_BINDINGS" enablePython) ]; - meta = { + meta = with lib; { description = "RSS/Atom parser written in C++ with Python binding"; homepage = "https://gitlab.com/gabmus/syndication-domination"; - license = lib.licenses.agpl3Only; + license = licenses.agpl3Only; mainProgram = "SyndicationDomination"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/sy/syntex/package.nix b/pkgs/by-name/sy/syntex/package.nix index 196825716ba0d1..dca8a7901b4a34 100644 --- a/pkgs/by-name/sy/syntex/package.nix +++ b/pkgs/by-name/sy/syntex/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { chmod a+x "$out/bin/syntex" ''; buildInputs = [ mono ]; - meta = { + meta = with lib; { description = "Texture synthesis from examples"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sy/sysfsutils/package.nix b/pkgs/by-name/sy/sysfsutils/package.nix index 2935c5b04a64be..57af308146cf52 100644 --- a/pkgs/by-name/sy/sysfsutils/package.nix +++ b/pkgs/by-name/sy/sysfsutils/package.nix @@ -13,17 +13,17 @@ stdenv.mkDerivation rec { sha256 = "e865de2c1f559fff0d3fc936e660c0efaf7afe662064f2fb97ccad1ec28d208a"; }; - meta = { + meta = with lib; { homepage = "https://linux-diag.sourceforge.net/Sysfsutils.html"; longDescription = '' These are a set of utilites built upon sysfs, a new virtual filesystem in Linux kernel versions 2.5+ that exposes a system's device tree. ''; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus lgpl21 ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sy/syshud/package.nix b/pkgs/by-name/sy/syshud/package.nix index 8702978a8602d3..3b4badbd03f36e 100644 --- a/pkgs/by-name/sy/syshud/package.nix +++ b/pkgs/by-name/sy/syshud/package.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation (finalAttrs: { ]; }; - meta = { + meta = with lib; { description = "simple heads up display written in gtkmm 4"; mainProgram = "syshud"; homepage = "https://github.com/System64fumo/syshud"; - license = lib.licenses.wtfpl; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ colinsane ]; + license = licenses.wtfpl; + platforms = platforms.linux; + maintainers = with maintainers; [ colinsane ]; }; }) diff --git a/pkgs/by-name/sy/syslogng/package.nix b/pkgs/by-name/sy/syslogng/package.nix index 055b5a2b906260..764ebd7e9f250d 100644 --- a/pkgs/by-name/sy/syslogng/package.nix +++ b/pkgs/by-name/sy/syslogng/package.nix @@ -141,14 +141,14 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "https://www.syslog-ng.com"; description = "Next-generation syslogd with advanced networking and filtering capabilities"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus lgpl21Plus ]; - maintainers = with lib.maintainers; [ vifino ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ vifino ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/sy/sysmenu/package.nix b/pkgs/by-name/sy/sysmenu/package.nix index 1c7f86aea499f4..78d06961891542 100644 --- a/pkgs/by-name/sy/sysmenu/package.nix +++ b/pkgs/by-name/sy/sysmenu/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Simple program launcher using GTK4"; homepage = "https://github.com/System64fumo/sysmenu"; - license = lib.licenses.wtfpl; + license = licenses.wtfpl; mainProgram = "sysmenu"; - maintainers = with lib.maintainers; [ matteopacini ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ matteopacini ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sy/syspower/package.nix b/pkgs/by-name/sy/syspower/package.nix index d7a01b8b387b4a..94fe1a947783c1 100644 --- a/pkgs/by-name/sy/syspower/package.nix +++ b/pkgs/by-name/sy/syspower/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation { wrapProgram $out/bin/syspower --prefix LD_LIBRARY_PATH : $out/lib ''; - meta = { + meta = with lib; { description = "Simple power menu/shutdown screen for Hyprland"; homepage = "https://gihub.com/System64fumo/syspower"; - license = lib.licenses.wtfpl; - maintainers = with lib.maintainers; [ justdeeevin ]; + license = licenses.wtfpl; + maintainers = with maintainers; [ justdeeevin ]; mainProgram = "syspower"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sy/sysstat/package.nix b/pkgs/by-name/sy/sysstat/package.nix index a2f59f04fe4aae..b17873f28f80e8 100644 --- a/pkgs/by-name/sy/sysstat/package.nix +++ b/pkgs/by-name/sy/sysstat/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { patches = [ ./install.patch ]; - meta = { + meta = with lib; { mainProgram = "iostat"; homepage = "http://sebastien.godard.pagesperso-orange.fr/"; description = "Collection of performance monitoring tools for Linux (such as sar, iostat and pidstat)"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.hensoko ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = [ maintainers.hensoko ]; }; } diff --git a/pkgs/by-name/sy/system76-power/package.nix b/pkgs/by-name/sy/system76-power/package.nix index 6b12959a91c770..72290a7578e358 100644 --- a/pkgs/by-name/sy/system76-power/package.nix +++ b/pkgs/by-name/sy/system76-power/package.nix @@ -37,17 +37,17 @@ rustPlatform.buildRustPackage rec { install -D -m 0644 data/com.system76.PowerDaemon.xml $out/share/dbus-1/interfaces/com.system76.PowerDaemon.xml ''; - meta = { + meta = with lib; { description = "System76 Power Management"; mainProgram = "system76-power"; homepage = "https://github.com/pop-os/system76-power"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ smonson ahoneybun ]; diff --git a/pkgs/by-name/sy/systemd-wait/package.nix b/pkgs/by-name/sy/systemd-wait/package.nix index d1a7e0c1f92f5d..cb8d06570361f0 100644 --- a/pkgs/by-name/sy/systemd-wait/package.nix +++ b/pkgs/by-name/sy/systemd-wait/package.nix @@ -20,12 +20,12 @@ python3Packages.buildPythonApplication rec { pygobject3 ]; - meta = { + meta = with lib; { homepage = "https://github.com/Stebalien/systemd-wait"; - license = lib.licenses.gpl3; + license = licenses.gpl3; description = "Wait for a systemd unit to enter a specific state"; mainProgram = "systemd-wait"; - maintainers = [ lib.maintainers.benley ]; - platforms = lib.platforms.linux; + maintainers = [ maintainers.benley ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/sy/systemfd/package.nix b/pkgs/by-name/sy/systemfd/package.nix index 6c4e59cca31308..138ef0b9a12975 100644 --- a/pkgs/by-name/sy/systemfd/package.nix +++ b/pkgs/by-name/sy/systemfd/package.nix @@ -22,13 +22,13 @@ rustPlatform.buildRustPackage { cargoHash = "sha256-k8FgdNVjFYO/lflVzRQUwHvdy4+eCNTnTYImdfy1GaQ="; - meta = { + meta = with lib; { description = "Convenient helper for passing sockets into another process"; mainProgram = "systemfd"; homepage = "https://github.com/mitsuhiko/systemfd"; - license = lib.licenses.asl20; + license = licenses.asl20; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/sy/sysvinit/package.nix b/pkgs/by-name/sy/sysvinit/package.nix index 546187c7a31481..f25502b8b04a46 100644 --- a/pkgs/by-name/sy/sysvinit/package.nix +++ b/pkgs/by-name/sy/sysvinit/package.nix @@ -46,10 +46,10 @@ stdenv.mkDerivation rec { rm $out/bin/wall $out/share/man/man1/wall.1 ''; - meta = { + meta = with lib; { homepage = "https://www.nongnu.org/sysvinit/"; description = "Utilities related to booting and shutdown"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Plus; + platforms = platforms.linux; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/ta/taco/package.nix b/pkgs/by-name/ta/taco/package.nix index e80d2b7e3b1b96..b7efc9838b7ca5 100644 --- a/pkgs/by-name/ta/taco/package.nix +++ b/pkgs/by-name/ta/taco/package.nix @@ -64,11 +64,11 @@ stdenv.mkDerivation (finalAttrs: { # However, the python module works flawlessly. dontFixup = enablePython; - meta = { + meta = with lib; { description = "Computes sparse tensor expressions on CPUs and GPUs"; mainProgram = "taco"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/tensor-compiler/taco"; - maintainers = [ lib.maintainers.sheepforce ]; + maintainers = [ maintainers.sheepforce ]; }; }) diff --git a/pkgs/by-name/ta/taisei/package.nix b/pkgs/by-name/ta/taisei/package.nix index 452fbf04d0dbac..b7eeb9561ec4ec 100644 --- a/pkgs/by-name/ta/taisei/package.nix +++ b/pkgs/by-name/ta/taisei/package.nix @@ -82,7 +82,7 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { description = "Free and open-source Touhou Project clone and fangame"; mainProgram = "taisei"; longDescription = '' @@ -91,14 +91,14 @@ stdenv.mkDerivation (finalAttrs: { folklore. ''; homepage = "https://taisei-project.org/"; - license = with lib.licenses; [ + license = with licenses; [ mit cc-by-40 ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ lambda-11235 Gliczy ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ta/taktuk/package.nix b/pkgs/by-name/ta/taktuk/package.nix index bc4f95d1e4b31d..ed631b67ccae6f 100644 --- a/pkgs/by-name/ta/taktuk/package.nix +++ b/pkgs/by-name/ta/taktuk/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { substituteInPlace ./taktuk --replace-fail "${lib.getExe buildPackages.perl}" "/usr/bin/env perl" ''; - meta = { + meta = with lib; { description = "Efficient, large scale, parallel remote execution of commands"; mainProgram = "taktuk"; longDescription = '' @@ -49,8 +49,8 @@ stdenv.mkDerivation rec { algorithm.''; homepage = "https://taktuk.gitlabpages.inria.fr/"; changelog = "https://gitlab.inria.fr/taktuk/taktuk/-/blob/HEAD/ChangeLog"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.bzizou ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = [ maintainers.bzizou ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ta/talecast/package.nix b/pkgs/by-name/ta/talecast/package.nix index de9ee864b9d3f1..1b70d720362092 100644 --- a/pkgs/by-name/ta/talecast/package.nix +++ b/pkgs/by-name/ta/talecast/package.nix @@ -33,12 +33,12 @@ rustPlatform.buildRustPackage rec { tests.version = testers.testVersion { package = talecast; }; }; - meta = { + meta = with lib; { description = "Simple CLI podcatcher"; homepage = "https://github.com/TBS1996/TaleCast"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "talecast"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ confusedalex getchoo ]; diff --git a/pkgs/by-name/ta/taler-challenger/package.nix b/pkgs/by-name/ta/taler-challenger/package.nix index ad4accab593a85..911b2177ff8e3c 100644 --- a/pkgs/by-name/ta/taler-challenger/package.nix +++ b/pkgs/by-name/ta/taler-challenger/package.nix @@ -71,11 +71,11 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail "/bin/bash" "${runtimeShell}" ''; - meta = { + meta = with lib; { description = "OAuth 2.0-based authentication service that validates user can receive messages at a certain address"; homepage = "https://git.taler.net/challenger.git"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ wegank ]; - platforms = lib.platforms.linux; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ wegank ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ta/taler-depolymerization/package.nix b/pkgs/by-name/ta/taler-depolymerization/package.nix index 1189a6eebcaaf3..c21b5b00113717 100644 --- a/pkgs/by-name/ta/taler-depolymerization/package.nix +++ b/pkgs/by-name/ta/taler-depolymerization/package.nix @@ -44,10 +44,10 @@ rustPlatform.buildRustPackage { ] ); - meta = { + meta = with lib; { description = "Wire gateway for Bitcoin/Ethereum"; homepage = "https://git.taler.net/depolymerization.git/"; - license = lib.licenses.agpl3Only; - maintainers = lib.teams.ngi.members; + license = licenses.agpl3Only; + maintainers = teams.ngi.members; }; } diff --git a/pkgs/by-name/ta/taler-exchange/package.nix b/pkgs/by-name/ta/taler-exchange/package.nix index 99d917a7ed5708..0a1c14fd52da1f 100644 --- a/pkgs/by-name/ta/taler-exchange/package.nix +++ b/pkgs/by-name/ta/taler-exchange/package.nix @@ -101,7 +101,7 @@ stdenv.mkDerivation (finalAttrs: { checkTarget = "check"; - meta = { + meta = with lib; { description = "Exchange component for the GNU Taler electronic payment system"; longDescription = '' Taler is an electronic payment system providing the ability to pay @@ -115,8 +115,8 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://taler.net/"; changelog = "https://git.taler.net/exchange.git/tree/ChangeLog"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ astro ]; - platforms = lib.platforms.linux; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ astro ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ta/taler-merchant/package.nix b/pkgs/by-name/ta/taler-merchant/package.nix index 2cf1f7de6cf525..440022628cf403 100644 --- a/pkgs/by-name/ta/taler-merchant/package.nix +++ b/pkgs/by-name/ta/taler-merchant/package.nix @@ -79,7 +79,7 @@ stdenv.mkDerivation (finalAttrs: { checkTarget = "check"; - meta = { + meta = with lib; { description = "Merchant component for the GNU Taler electronic payment system"; longDescription = '' This is the GNU Taler merchant backend. It provides the logic that should run @@ -91,8 +91,8 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://taler.net/"; changelog = "https://git.taler.net/merchant.git/tree/ChangeLog"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ astro ]; - platforms = lib.platforms.linux; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ astro ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ta/taler-sync/package.nix b/pkgs/by-name/ta/taler-sync/package.nix index 931bf33c836bd5..fcd0e190ac9f4c 100644 --- a/pkgs/by-name/ta/taler-sync/package.nix +++ b/pkgs/by-name/ta/taler-sync/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail "/bin/bash" "${runtimeShell}" ''; - meta = { + meta = with lib; { description = "Backup and synchronization service"; homepage = "https://git.taler.net/sync.git"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ wegank ]; - platforms = lib.platforms.linux; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ wegank ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ta/taler-wallet-core/package.nix b/pkgs/by-name/ta/taler-wallet-core/package.nix index 0d2330553fb2ba..eec6b117a82882 100644 --- a/pkgs/by-name/ta/taler-wallet-core/package.nix +++ b/pkgs/by-name/ta/taler-wallet-core/package.nix @@ -97,12 +97,12 @@ stdenv.mkDerivation (finalAttrs: { env.ESBUILD_BINARY_PATH = lib.getExe esbuild'; - meta = { + meta = with lib; { homepage = "https://git.taler.net/wallet-core.git/"; description = "CLI wallet for GNU Taler written in TypeScript and Anastasis Web UI"; - license = lib.licenses.gpl3Plus; - maintainers = lib.teams.ngi.members; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = teams.ngi.members; + platforms = platforms.linux; mainProgram = "taler-wallet-cli"; }; }) diff --git a/pkgs/by-name/ta/talkfilters/package.nix b/pkgs/by-name/ta/talkfilters/package.nix index 6222b80b159f0e..7b2838c212c71c 100644 --- a/pkgs/by-name/ta/talkfilters/package.nix +++ b/pkgs/by-name/ta/talkfilters/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation { hardeningDisable = [ "format" ]; - meta = { + meta = with lib; { description = "Converts English text into text that mimics a stereotyped or humorous dialect"; homepage = "https://www.hyperrealm.com/talkfilters/talkfilters.html"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ikervagyok ]; - platforms = with lib.platforms; unix; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ ikervagyok ]; + platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/ta/tangara-cli/package.nix b/pkgs/by-name/ta/tangara-cli/package.nix index ba360e09cd0f1c..2672ee3d325af5 100644 --- a/pkgs/by-name/ta/tangara-cli/package.nix +++ b/pkgs/by-name/ta/tangara-cli/package.nix @@ -31,12 +31,12 @@ rustPlatform.buildRustPackage rec { buildAndTestSubdir = "crates/tangara-cli"; - meta = { + meta = with lib; { description = "Command-line tool for managing the Cool Tech Zone Tangara"; mainProgram = "tangara"; homepage = "https://github.com/haileys/tangara-companion"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ stevestreza ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ stevestreza ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ta/tanidvr/package.nix b/pkgs/by-name/ta/tanidvr/package.nix index 396e76224cfd0e..97484a91c84073 100644 --- a/pkgs/by-name/ta/tanidvr/package.nix +++ b/pkgs/by-name/ta/tanidvr/package.nix @@ -13,11 +13,11 @@ stdenv.mkDerivation rec { sha256 = "0irwwf6mb72n3y4xcrl3s081nbnldvdlc6ypjqxa4p32c1d0g6ql"; }; - meta = { + meta = with lib; { description = "CLI tool for managing and capturing video from DVRs which use the DVR-IP protocol"; homepage = "https://tanidvr.sourceforge.net/"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ pho ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ pho ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ta/tap-plugins/package.nix b/pkgs/by-name/ta/tap-plugins/package.nix index aeb56d3375b5c2..e0d7988d4891c0 100644 --- a/pkgs/by-name/ta/tap-plugins/package.nix +++ b/pkgs/by-name/ta/tap-plugins/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation (finalAttrs: { substituteInPlace Makefile --replace /usr/local "$out" ''; - meta = { + meta = with lib; { homepage = "https://tomscii.sig7.se/tap-plugins/"; description = "Tom's Audio Processing plugins"; longDescription = '' @@ -35,8 +35,8 @@ stdenv.mkDerivation (finalAttrs: { Limiter, TAP Sigmoid Booster, TAP Stereo Echo, TAP Tremolo, TAP TubeWarmth, TAP Vibrato. ''; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.AndersonTorres ]; - platforms = lib.platforms.unix; + license = licenses.gpl3Plus; + maintainers = [ maintainers.AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ta/tarsnap/package.nix b/pkgs/by-name/ta/tarsnap/package.nix index ddc121ad7ed9f8..5544d0f02034f1 100644 --- a/pkgs/by-name/ta/tarsnap/package.nix +++ b/pkgs/by-name/ta/tarsnap/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { ++ lib.optional stdenv.hostPlatform.isLinux e2fsprogs ++ lib.optional stdenv.hostPlatform.isDarwin bzip2; - meta = { + meta = with lib; { description = "Online backups for the truly paranoid"; homepage = "http://www.tarsnap.com/"; - license = lib.licenses.unfree; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.unfree; + platforms = platforms.unix; + maintainers = with maintainers; [ thoughtpolice roconnor ]; diff --git a/pkgs/by-name/ta/task-keeper/package.nix b/pkgs/by-name/ta/task-keeper/package.nix index 098ae263619f53..b4893180697374 100644 --- a/pkgs/by-name/ta/task-keeper/package.nix +++ b/pkgs/by-name/ta/task-keeper/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage rec { # tests depend on many packages (java, node, python, sbt, ...) - which I'm not currently willing to set up 😅 doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/linux-china/task-keeper"; description = "CLI to manage tasks from different task runners or package managers"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ tennox ]; + license = licenses.asl20; + maintainers = with maintainers; [ tennox ]; mainProgram = "tk"; }; } diff --git a/pkgs/by-name/ta/taskchampion-sync-server/package.nix b/pkgs/by-name/ta/taskchampion-sync-server/package.nix index 7782f7b38694b6..fa2ef270900d5f 100644 --- a/pkgs/by-name/ta/taskchampion-sync-server/package.nix +++ b/pkgs/by-name/ta/taskchampion-sync-server/package.nix @@ -19,11 +19,11 @@ rustPlatform.buildRustPackage rec { # cargo tests fail when checkType="release" (default) checkType = "debug"; - meta = { + meta = with lib; { description = "Sync server for Taskwarrior 3"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/GothenburgBitFactory/taskchampion-sync-server"; - maintainers = with lib.maintainers; [ mlaradji ]; + maintainers = with maintainers; [ mlaradji ]; mainProgram = "taskchampion-sync-server"; }; } diff --git a/pkgs/by-name/tb/tbump/package.nix b/pkgs/by-name/tb/tbump/package.nix index 820f4b5b31389f..3c2ba0c64a45f5 100644 --- a/pkgs/by-name/tb/tbump/package.nix +++ b/pkgs/by-name/tb/tbump/package.nix @@ -29,11 +29,11 @@ python3Packages.buildPythonApplication rec { cli-ui ]; - meta = { + meta = with lib; { description = "Bump software releases"; homepage = "https://github.com/your-tools/tbump"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "tbump"; - maintainers = with lib.maintainers; [ slashformotion ]; + maintainers = with maintainers; [ slashformotion ]; }; } diff --git a/pkgs/by-name/tc/tcl2048/package.nix b/pkgs/by-name/tc/tcl2048/package.nix index 523a04c612efcb..4e3c61090c7428 100644 --- a/pkgs/by-name/tc/tcl2048/package.nix +++ b/pkgs/by-name/tc/tcl2048/package.nix @@ -23,12 +23,12 @@ tcl.mkTclDerivation rec { install -m 755 $src $out/bin/2048 ''; - meta = { + meta = with lib; { homepage = "https://github.com/dbohdan/2048.tcl"; description = "Game of 2048 implemented in Tcl"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dbohdan ]; + license = licenses.mit; + maintainers = with maintainers; [ dbohdan ]; mainProgram = "2048"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/tc/tcount/package.nix b/pkgs/by-name/tc/tcount/package.nix index 747e34c7a879b1..048db4e5a122d3 100644 --- a/pkgs/by-name/tc/tcount/package.nix +++ b/pkgs/by-name/tc/tcount/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "Count your code by tokens and patterns in the syntax tree. A tokei/scc/cloc alternative"; homepage = "https://github.com/rrethy/tcount"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ phanirithvij ]; + license = licenses.mit; + maintainers = with maintainers; [ phanirithvij ]; mainProgram = "tcount"; }; } diff --git a/pkgs/by-name/tc/tcptrace/package.nix b/pkgs/by-name/tc/tcptrace/package.nix index 146b15e67368fa..381836469f49eb 100644 --- a/pkgs/by-name/tc/tcptrace/package.nix +++ b/pkgs/by-name/tc/tcptrace/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation (final: { "MANDIR=${placeholder "man"}/share/man" ]; - meta = { + meta = with lib; { description = "Tool for analysis of TCP dump files"; homepage = "http://www.tcptrace.org/"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.gmacon ]; + license = licenses.gpl2Plus; + maintainers = [ maintainers.gmacon ]; mainProgram = "tcptrace"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/td/tdf/package.nix b/pkgs/by-name/td/tdf/package.nix index 26514d2d130586..c12cfe11d3ba05 100644 --- a/pkgs/by-name/td/tdf/package.nix +++ b/pkgs/by-name/td/tdf/package.nix @@ -38,15 +38,15 @@ rustPlatform.buildRustPackage { # requires nightly features (feature(portable_simd)) RUSTC_BOOTSTRAP = true; - meta = { + meta = with lib; { description = "Tui-based PDF viewer"; homepage = "https://github.com/itsjunetime/tdf"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ + license = licenses.mpl20; + maintainers = with maintainers; [ luftmensch-luftmensch DieracDelta ]; mainProgram = "tdf"; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/by-name/te/teams-for-linux/package.nix b/pkgs/by-name/te/teams-for-linux/package.nix index 938d56a4086e13..38346830d98b13 100644 --- a/pkgs/by-name/te/teams-for-linux/package.nix +++ b/pkgs/by-name/te/teams-for-linux/package.nix @@ -111,17 +111,17 @@ buildNpmPackage rec { versionCheckProgramArg = [ "--version" ]; - meta = { + meta = with lib; { description = "Unofficial Microsoft Teams client for Linux"; mainProgram = "teams-for-linux"; homepage = "https://github.com/IsmaelMartinez/teams-for-linux"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ muscaln qjoly chvp khaneliman ]; - platforms = with lib.platforms; darwin ++ linux; + platforms = with platforms; darwin ++ linux; }; } diff --git a/pkgs/by-name/te/teamspeak3/package.nix b/pkgs/by-name/te/teamspeak3/package.nix index 01e5739b169f73..95f483b11299ec 100644 --- a/pkgs/by-name/te/teamspeak3/package.nix +++ b/pkgs/by-name/te/teamspeak3/package.nix @@ -122,17 +122,17 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "TeamSpeak voice communication tool"; homepage = "https://teamspeak.com/"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = { # See distribution-permit.txt for a confirmation that nixpkgs is allowed to distribute TeamSpeak. fullName = "Teamspeak client license"; url = "https://www.teamspeak.com/en/privacy-and-terms/"; free = false; }; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ lhvwb lukegb atemu diff --git a/pkgs/by-name/te/technitium-dns-server-library/package.nix b/pkgs/by-name/te/technitium-dns-server-library/package.nix index 5645de4321b5b7..cc7f7f1ac57f09 100644 --- a/pkgs/by-name/te/technitium-dns-server-library/package.nix +++ b/pkgs/by-name/te/technitium-dns-server-library/package.nix @@ -28,13 +28,13 @@ buildDotnetModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { changelog = "https://github.com/TechnitiumSoftware/DnsServer/blob/master/CHANGELOG.md"; description = "Library for Authorative and Recursive DNS server for Privacy and Security"; homepage = "https://github.com/TechnitiumSoftware/DnsServer"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "technitium-dns-server-library"; - maintainers = with lib.maintainers; [ fabianrig ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ fabianrig ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/te/technitium-dns-server/package.nix b/pkgs/by-name/te/technitium-dns-server/package.nix index 60b6090621e4c6..5eb9464a328a55 100644 --- a/pkgs/by-name/te/technitium-dns-server/package.nix +++ b/pkgs/by-name/te/technitium-dns-server/package.nix @@ -42,13 +42,13 @@ buildDotnetModule rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { changelog = "https://github.com/TechnitiumSoftware/DnsServer/blob/master/CHANGELOG.md"; description = "Authorative and Recursive DNS server for Privacy and Security"; homepage = "https://github.com/TechnitiumSoftware/DnsServer"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "technitium-dns-server"; - maintainers = with lib.maintainers; [ fabianrig ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ fabianrig ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/te/teetertorture/package.nix b/pkgs/by-name/te/teetertorture/package.nix index ca697191d19a5a..ad2c8652f1bd69 100644 --- a/pkgs/by-name/te/teetertorture/package.nix +++ b/pkgs/by-name/te/teetertorture/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { cp -R data/* $out/share/teetertorture ''; - meta = { + meta = with lib; { homepage = "http://www.newbreedsoftware.com/teetertorture/"; description = "Simple shooting game with your cannon is sitting atop a teeter totter"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; mainProgram = "teetertorture"; }; } diff --git a/pkgs/by-name/te/tegola/package.nix b/pkgs/by-name/te/tegola/package.nix index 5ec1f983e343fe..f891484e89ba74 100644 --- a/pkgs/by-name/te/tegola/package.nix +++ b/pkgs/by-name/te/tegola/package.nix @@ -47,11 +47,11 @@ buildGoModule { go generate ./server ''; - meta = { + meta = with lib; { homepage = "https://www.tegola.io/"; description = "Mapbox Vector Tile server"; mainProgram = "tegola"; - maintainers = lib.teams.geospatial.members ++ (with lib.maintainers; [ ingenieroariel ]); - license = lib.licenses.mit; + maintainers = teams.geospatial.members ++ (with maintainers; [ ingenieroariel ]); + license = licenses.mit; }; } diff --git a/pkgs/by-name/te/telegram-bot-api/package.nix b/pkgs/by-name/te/telegram-bot-api/package.nix index 608a1104570e8c..90c012f83b8802 100644 --- a/pkgs/by-name/te/telegram-bot-api/package.nix +++ b/pkgs/by-name/te/telegram-bot-api/package.nix @@ -29,16 +29,16 @@ stdenv.mkDerivation { zlib ]; - meta = { + meta = with lib; { description = "Telegram Bot API server"; homepage = "https://github.com/tdlib/telegram-bot-api"; - license = lib.licenses.boost; - maintainers = with lib.maintainers; [ + license = licenses.boost; + maintainers = with maintainers; [ Anillc Forden nartsiss ]; - platforms = lib.platforms.all; + platforms = platforms.all; mainProgram = "telegram-bot-api"; }; } diff --git a/pkgs/by-name/te/telepathy-haze/package.nix b/pkgs/by-name/te/telepathy-haze/package.nix index 56ff4ef9c29362..e2dfefe055aadf 100644 --- a/pkgs/by-name/te/telepathy-haze/package.nix +++ b/pkgs/by-name/te/telepathy-haze/package.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation rec { python3 ]; - meta = { + meta = with lib; { description = "Telepathy connection manager based on libpurple"; homepage = "https://telepathy.freedesktop.org/components/telepathy-haze/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/te/telepathy-idle/package.nix b/pkgs/by-name/te/telepathy-idle/package.nix index 52559e1202704b..70457fe897d633 100644 --- a/pkgs/by-name/te/telepathy-idle/package.nix +++ b/pkgs/by-name/te/telepathy-idle/package.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation rec { --prefix GIO_EXTRA_MODULES : "${lib.getLib dconf}/lib/gio/modules" ''; - meta = { + meta = with lib; { description = "IRC connection manager for the Telepathy framework"; homepage = "https://telepathy.freedesktop.org/components/telepathy-idle/"; - license = lib.licenses.lgpl21Plus; - platforms = lib.platforms.unix; + license = licenses.lgpl21Plus; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/te/templ/package.nix b/pkgs/by-name/te/templ/package.nix index c537e95b398860..023794d13d4b78 100644 --- a/pkgs/by-name/te/templ/package.nix +++ b/pkgs/by-name/te/templ/package.nix @@ -27,11 +27,11 @@ buildGoModule rec { "-extldflags -static" ]; - meta = { + meta = with lib; { description = "Language for writing HTML user interfaces in Go"; homepage = "https://github.com/a-h/templ"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "templ"; - maintainers = with lib.maintainers; [ luleyleo ]; + maintainers = with maintainers; [ luleyleo ]; }; } diff --git a/pkgs/by-name/te/tenere/package.nix b/pkgs/by-name/te/tenere/package.nix index fd2a56b74331e0..234f05737f33dd 100644 --- a/pkgs/by-name/te/tenere/package.nix +++ b/pkgs/by-name/te/tenere/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { requiredSystemFeatures = [ "big-parallel" ]; # for fat LTO from upstream - meta = { + meta = with lib; { description = "Terminal interface for large language models (LLMs)"; homepage = "https://github.com/pythops/tenere"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ob7 ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ ob7 ]; mainProgram = "tenere"; }; } diff --git a/pkgs/by-name/te/termcap/package.nix b/pkgs/by-name/te/termcap/package.nix index a0cf6eaadeb679..bc79270a804531 100644 --- a/pkgs/by-name/te/termcap/package.nix +++ b/pkgs/by-name/te/termcap/package.nix @@ -69,11 +69,11 @@ stdenv.mkDerivation rec { '' ); - meta = { + meta = with lib; { description = "Terminal feature database"; homepage = "https://www.gnu.org/software/termutils/"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ wegank ]; - platforms = lib.platforms.all; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ wegank ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/te/termpaint/package.nix b/pkgs/by-name/te/termpaint/package.nix index 217d2795519209..3863c7bda5bc9a 100644 --- a/pkgs/by-name/te/termpaint/package.nix +++ b/pkgs/by-name/te/termpaint/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation (final: { doCheck = true; - meta = { + meta = with lib; { description = "Low level terminal interface library"; homepage = "https://github.com/termpaint/termpaint"; - platforms = lib.platforms.unix; - license = lib.licenses.boost; - maintainers = with lib.maintainers; [ + platforms = platforms.unix; + license = licenses.boost; + maintainers = with maintainers; [ istoph textshell ]; diff --git a/pkgs/by-name/te/termusic/package.nix b/pkgs/by-name/te/termusic/package.nix index a1f7c3beddcd08..801b35fa0c45f1 100644 --- a/pkgs/by-name/te/termusic/package.nix +++ b/pkgs/by-name/te/termusic/package.nix @@ -73,11 +73,11 @@ rustPlatform.buildRustPackage rec { alsa-lib ]; - meta = { + meta = with lib; { description = "Terminal Music Player TUI written in Rust"; homepage = "https://github.com/tramhao/termusic"; - license = with lib.licenses; [ gpl3Only ]; - maintainers = with lib.maintainers; [ devhell ]; + license = with licenses; [ gpl3Only ]; + maintainers = with maintainers; [ devhell ]; mainProgram = "termusic"; }; } diff --git a/pkgs/by-name/te/ternimal/package.nix b/pkgs/by-name/te/ternimal/package.nix index 726d6638864a9e..803925a300369f 100644 --- a/pkgs/by-name/te/ternimal/package.nix +++ b/pkgs/by-name/te/ternimal/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Simulate a lifeform in the terminal"; homepage = "https://github.com/p-e-w/ternimal"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ anomalocaris ]; - platforms = with lib.platforms; linux ++ darwin; + license = licenses.gpl3Only; + maintainers = with maintainers; [ anomalocaris ]; + platforms = with platforms; linux ++ darwin; mainProgram = "ternimal"; }; } diff --git a/pkgs/by-name/te/testkube/package.nix b/pkgs/by-name/te/testkube/package.nix index d23c403e49774b..8db01456528983 100644 --- a/pkgs/by-name/te/testkube/package.nix +++ b/pkgs/by-name/te/testkube/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { subPackages = [ "cmd/kubectl-testkube" ]; - meta = { + meta = with lib; { description = "Kubernetes-native framework for test definition and execution"; homepage = "https://github.com/kubeshop/testkube/"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "kubectl-testkube"; - maintainers = with lib.maintainers; [ mathstlouis ]; + maintainers = with maintainers; [ mathstlouis ]; }; } diff --git a/pkgs/by-name/te/tet/package.nix b/pkgs/by-name/te/tet/package.nix index 017e57547d72d5..c81ff5e3ee5203 100644 --- a/pkgs/by-name/te/tet/package.nix +++ b/pkgs/by-name/te/tet/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation ({ installPhase = "cd src; make install; cd -; cp -vr $PWD $out"; - meta = { + meta = with lib; { description = "Test Environment Toolkit is used in test applications like The Open Group's UNIX Certification program and the Free Standards Group's LSB Certification program"; homepage = "http://tetworks.opengroup.org/Products/tet.htm"; - license = lib.licenses.artistic1; - platforms = lib.platforms.unix; + license = licenses.artistic1; + platforms = platforms.unix; maintainers = [ ]; }; }) diff --git a/pkgs/by-name/te/tetrio-desktop/package.nix b/pkgs/by-name/te/tetrio-desktop/package.nix index ad945a5bddcf2b..18654fc33da62a 100644 --- a/pkgs/by-name/te/tetrio-desktop/package.nix +++ b/pkgs/by-name/te/tetrio-desktop/package.nix @@ -50,22 +50,22 @@ stdenv.mkDerivation (finalAttrs: { --add-flags $out/share/TETR.IO/app.asar ''; - meta = { + meta = with lib; { changelog = "https://tetr.io/about/desktop/history/"; description = "Desktop client for TETR.IO, an online stacker game"; downloadPage = "https://tetr.io/about/desktop/"; homepage = "https://tetr.io"; - license = lib.licenses.unfree; + license = licenses.unfree; longDescription = '' TETR.IO is a free-to-win modern yet familiar online stacker. Play multiplayer games against friends and foes all over the world, or claim a spot on the leaderboards - the stacker future is yours! ''; mainProgram = "tetrio"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ wackbyte huantian ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; + sourceProvenance = [ sourceTypes.binaryBytecode ]; }; }) diff --git a/pkgs/by-name/te/textpieces/package.nix b/pkgs/by-name/te/textpieces/package.nix index 2dfb547531ce80..27d3ff46c5a80c 100644 --- a/pkgs/by-name/te/textpieces/package.nix +++ b/pkgs/by-name/te/textpieces/package.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Swiss knife of text processing"; longDescription = '' A small tool for quick text transformations such as @@ -65,17 +65,17 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://gitlab.com/liferooter/textpieces"; mainProgram = "textpieces"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Plus # and cc0 ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; maintainers = - with lib.maintainers; + with maintainers; [ zendo ] - ++ lib.teams.gnome-circle.members; + ++ teams.gnome-circle.members; }; }) diff --git a/pkgs/by-name/te/texturepacker/package.nix b/pkgs/by-name/te/texturepacker/package.nix index c9fbd2efd2af8a..ede640bd5afe31 100644 --- a/pkgs/by-name/te/texturepacker/package.nix +++ b/pkgs/by-name/te/texturepacker/package.nix @@ -35,13 +35,13 @@ stdenv.mkDerivation (finalAttrs: { cp -r usr/share $out ''; - meta = { + meta = with lib; { changelog = "https://www.codeandweb.com/texturepacker/download"; description = "Sprite sheet creator and game graphics optimizer"; homepage = "https://www.codeandweb.com/texturepacker"; - license = lib.licenses.unfree; + license = licenses.unfree; mainProgram = "TexturePacker"; - maintainers = with lib.maintainers; [ tomasajt ]; + maintainers = with maintainers; [ tomasajt ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/by-name/te/tezos-rust-libs/package.nix b/pkgs/by-name/te/tezos-rust-libs/package.nix index 2bbed03999a388..ce828cf7979c14 100644 --- a/pkgs/by-name/te/tezos-rust-libs/package.nix +++ b/pkgs/by-name/te/tezos-rust-libs/package.nix @@ -59,10 +59,10 @@ stdenv.mkDerivation rec { cargoVendorDir = "./vendor"; - meta = { + meta = with lib; { homepage = "https://gitlab.com/tezos/tezos-rust-libs"; description = "Tezos: all rust dependencies and their dependencies"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.mit; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/by-name/tg/tg-archive/package.nix b/pkgs/by-name/tg/tg-archive/package.nix index 6246b24b89fe00..47223868dc0edc 100644 --- a/pkgs/by-name/tg/tg-archive/package.nix +++ b/pkgs/by-name/tg/tg-archive/package.nix @@ -38,11 +38,11 @@ python3.pkgs.buildPythonApplication { "tgarchive" ]; - meta = { + meta = with lib; { description = "A tool for exporting Telegram group chats into static websites like mailing list archives"; homepage = "https://github.com/knadh/tg-archive"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ euxane ]; + license = licenses.mit; + maintainers = with maintainers; [ euxane ]; mainProgram = "tg-archive"; }; } diff --git a/pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix b/pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix index ff1aa917abae12..2195acc6df11ab 100644 --- a/pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix +++ b/pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation { } ''; - meta = { + meta = with lib; { description = "Wrapper script for launching the official Touhou games on Steam with patches through Proton on GNU/Linux"; homepage = "https://github.com/tactikauan/thcrap-steam-proton-wrapper"; - license = lib.licenses.unlicense; - maintainers = with lib.maintainers; [ ashuramaruzxc ]; + license = licenses.unlicense; + maintainers = with maintainers; [ ashuramaruzxc ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/th/the-foundation/package.nix b/pkgs/by-name/th/the-foundation/package.nix index e5f0309dfa6e75..87b09dffddff70 100644 --- a/pkgs/by-name/th/the-foundation/package.nix +++ b/pkgs/by-name/th/the-foundation/package.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation (finalAttrs: { --replace '="''${prefix}//' '="/' ''; - meta = { + meta = with lib; { description = "Opinionated C11 library for low-level functionality"; homepage = "https://git.skyjake.fi/skyjake/the_Foundation"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ sikmir ]; - platforms = lib.platforms.unix; + license = licenses.bsd2; + maintainers = with maintainers; [ sikmir ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/th/the-neue-black/package.nix b/pkgs/by-name/th/the-neue-black/package.nix index 3b1bfb589d45ab..9b1d3b13b11b19 100644 --- a/pkgs/by-name/th/the-neue-black/package.nix +++ b/pkgs/by-name/th/the-neue-black/package.nix @@ -22,7 +22,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Tré Seals’ first open-source font, a typeface based on the Chicago Freedom Movement"; longDescription = '' The open-source release of The Neue Black is in partnership with designer @@ -31,7 +31,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { alternates. ''; homepage = "https://www.theleagueofmoveabletype.com/the-neue-black"; - license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ minijackson ]; + license = licenses.ofl; + maintainers = with maintainers; [ minijackson ]; }; }) diff --git a/pkgs/by-name/th/thefuck/package.nix b/pkgs/by-name/th/thefuck/package.nix index 69214db315cc3e..b1cd68b58f4458 100644 --- a/pkgs/by-name/th/thefuck/package.nix +++ b/pkgs/by-name/th/thefuck/package.nix @@ -50,10 +50,10 @@ python311Packages.buildPythonApplication rec { "test_when_successfully_configured" ]; - meta = { + meta = with lib; { homepage = "https://github.com/nvbn/thefuck"; description = "Magnificent app which corrects your previous console command"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ marcusramberg ]; + license = licenses.mit; + maintainers = with maintainers; [ marcusramberg ]; }; } diff --git a/pkgs/by-name/th/themix-gui/package.nix b/pkgs/by-name/th/themix-gui/package.nix index 91bf3f3bf02752..a83f8afc91aef8 100644 --- a/pkgs/by-name/th/themix-gui/package.nix +++ b/pkgs/by-name/th/themix-gui/package.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Graphical application for designing themes and exporting them using plugins"; longDescription = '' Graphical application for generating different color variations of @@ -71,9 +71,9 @@ stdenv.mkDerivation { KDE, VIM and many more. ''; homepage = "https://github.com/themix-project/themix-gui"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "themix-gui"; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/th/thinkfan/package.nix b/pkgs/by-name/th/thinkfan/package.nix index 6d7360a69f3069..4d66259402135b 100644 --- a/pkgs/by-name/th/thinkfan/package.nix +++ b/pkgs/by-name/th/thinkfan/package.nix @@ -49,20 +49,20 @@ stdenv.mkDerivation rec { buildInputs = [ yaml-cpp ] ++ lib.optional smartSupport libatasmart; - meta = { + meta = with lib; { description = "Simple, lightweight fan control program"; longDescription = '' Thinkfan is a minimalist fan control program. Originally designed specifically for IBM/Lenovo Thinkpads, it now supports any kind of system via the sysfs hwmon interface (/sys/class/hwmon). ''; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; homepage = "https://github.com/vmatare/thinkfan"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ domenkozar rnhmjoj ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "thinkfan"; }; } diff --git a/pkgs/by-name/th/thonny/package.nix b/pkgs/by-name/th/thonny/package.nix index e47e8d6d16ed9f..bf27e8e513db21 100644 --- a/pkgs/by-name/th/thonny/package.nix +++ b/pkgs/by-name/th/thonny/package.nix @@ -70,7 +70,7 @@ buildPythonApplication rec { # Tests need a DISPLAY doCheck = false; - meta = { + meta = with lib; { description = "Python IDE for beginners"; longDescription = '' Thonny is a Python IDE for beginners. It supports different ways @@ -79,9 +79,9 @@ buildPythonApplication rec { for explaining the concepts of references and heap. ''; homepage = "https://www.thonny.org/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ leenaars ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ leenaars ]; + platforms = platforms.unix; mainProgram = "thonny"; }; } diff --git a/pkgs/by-name/th/thrift-ls/package.nix b/pkgs/by-name/th/thrift-ls/package.nix index 3b97e030594ddf..8a58c8a27f2b21 100644 --- a/pkgs/by-name/th/thrift-ls/package.nix +++ b/pkgs/by-name/th/thrift-ls/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { "-w" ]; - meta = { + meta = with lib; { description = "Thrift Language Server"; homepage = "https://github.com/joyme123/thrift-ls"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ callumio hughmandalidis ]; diff --git a/pkgs/by-name/th/thttpd/package.nix b/pkgs/by-name/th/thttpd/package.nix index 66ccfe04bad89b..82696d2054548e 100644 --- a/pkgs/by-name/th/thttpd/package.nix +++ b/pkgs/by-name/th/thttpd/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { sed -i -e '/chgrp/d' extras/Makefile ''; - meta = { + meta = with lib; { description = "Tiny/turbo/throttling HTTP server"; homepage = "http://www.acme.com/software/thttpd/"; - license = lib.licenses.bsd2; - platforms = lib.platforms.linux; + license = licenses.bsd2; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/th/thunderbolt/package.nix b/pkgs/by-name/th/thunderbolt/package.nix index 9ed40b0d474165..876c1f9fcf26fb 100644 --- a/pkgs/by-name/th/thunderbolt/package.nix +++ b/pkgs/by-name/th/thunderbolt/package.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation rec { "-DUDEV_RULES_DIR=${placeholder "out"}/etc/udev/rules.d" ]; - meta = { + meta = with lib; { description = "Thunderbolt(TM) user-space components"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.ryantrinkle ]; + license = licenses.bsd3; + maintainers = [ maintainers.ryantrinkle ]; homepage = "https://01.org/thunderbolt-sw"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ti/tiddit/package.nix b/pkgs/by-name/ti/tiddit/package.nix index 18dd004dd0c854..5e7c66d6a18efd 100644 --- a/pkgs/by-name/ti/tiddit/package.nix +++ b/pkgs/by-name/ti/tiddit/package.nix @@ -40,12 +40,12 @@ python3Packages.buildPythonApplication rec { }" ]; - meta = { + meta = with lib; { homepage = "https://github.com/SciLifeLab/TIDDIT"; description = "Identify chromosomal rearrangements using Mate Pair or Paired End sequencing data"; mainProgram = "tiddit"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ apraga ]; - platforms = lib.platforms.unix; + license = licenses.gpl3Only; + maintainers = with maintainers; [ apraga ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ti/tigerbeetle/package.nix b/pkgs/by-name/ti/tigerbeetle/package.nix index b6b00d786f1c75..5e1ef73278c1ee 100644 --- a/pkgs/by-name/ti/tigerbeetle/package.nix +++ b/pkgs/by-name/ti/tigerbeetle/package.nix @@ -45,19 +45,19 @@ stdenvNoCC.mkDerivation (finalAttrs: { updateScript = ./update.sh; }; - meta = { + meta = with lib; { homepage = "https://tigerbeetle.com/"; description = "Financial accounting database designed to be distributed and fast"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ danielsidhion nwjsmith ]; platforms = [ "x86_64-linux" "aarch64-linux" - ] ++ lib.platforms.darwin; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + ] ++ platforms.darwin; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; mainProgram = "tigerbeetle"; }; }) diff --git a/pkgs/by-name/ti/tigerjython/package.nix b/pkgs/by-name/ti/tigerjython/package.nix index 6d85a7c04f47d7..64a9616e4cb742 100644 --- a/pkgs/by-name/ti/tigerjython/package.nix +++ b/pkgs/by-name/ti/tigerjython/package.nix @@ -81,7 +81,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { install -Dm444 ${icon} $out/share/icons/hicolor/64x64/apps/tigerjython.png ''; - meta = { + meta = with lib; { homepage = "https://www.tigerjython.ch"; downloadPage = "https://tigerjython.ch/en/products/download"; description = "Simple development environment for programming in Python"; @@ -91,9 +91,9 @@ stdenvNoCC.mkDerivation (finalAttrs: { You will find a wide variety of tutorials and can get started right away in programming environments specially developed for you. ''; - license = lib.licenses.unfreeRedistributable; - maintainers = with lib.maintainers; [ rcmlz ]; - platforms = lib.platforms.all; + license = licenses.unfreeRedistributable; + maintainers = with maintainers; [ rcmlz ]; + platforms = platforms.all; mainProgram = "tigerjython"; }; }) diff --git a/pkgs/by-name/ti/tigervnc/package.nix b/pkgs/by-name/ti/tigervnc/package.nix index 617d901ed5475f..d1f5c5add55ce7 100644 --- a/pkgs/by-name/ti/tigervnc/package.nix +++ b/pkgs/by-name/ti/tigervnc/package.nix @@ -186,12 +186,12 @@ stdenv.mkDerivation rec { passthru.tests.tigervnc = nixosTests.tigervnc; - meta = { + meta = with lib; { homepage = "https://tigervnc.org/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; description = "Fork of tightVNC, made in cooperation with VirtualGL"; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; # Prevent a store collision. priority = 4; }; diff --git a/pkgs/by-name/ti/tilda/package.nix b/pkgs/by-name/ti/tilda/package.nix index b2b503b9eb5a80..d752af4a8602cf 100644 --- a/pkgs/by-name/ti/tilda/package.nix +++ b/pkgs/by-name/ti/tilda/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.test = nixosTests.terminal-emulators.tilda; - meta = { + meta = with lib; { homepage = "https://github.com/lanoxx/tilda/"; description = "Gtk based drop down terminal for Linux and Unix"; mainProgram = "tilda"; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.AndersonTorres ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = [ maintainers.AndersonTorres ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ti/tilt/binary.nix b/pkgs/by-name/ti/tilt/binary.nix index 4c5e70520927f1..4090842f376847 100644 --- a/pkgs/by-name/ti/tilt/binary.nix +++ b/pkgs/by-name/ti/tilt/binary.nix @@ -26,11 +26,11 @@ buildGoModule rec { cp -r ${tilt-assets}/* pkg/assets/build/ ''; - meta = { + meta = with lib; { description = "Local development tool to manage your developer instance when your team deploys to Kubernetes in production"; mainProgram = "tilt"; homepage = "https://tilt.dev/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ anton-dessiatov ]; + license = licenses.asl20; + maintainers = with maintainers; [ anton-dessiatov ]; }; } diff --git a/pkgs/by-name/ti/timemachine/package.nix b/pkgs/by-name/ti/timemachine/package.nix index c1781aed817192..6ccf73c7c37a4d 100644 --- a/pkgs/by-name/ti/timemachine/package.nix +++ b/pkgs/by-name/ti/timemachine/package.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = "-lm"; - meta = { + meta = with lib; { description = "JACK audio recorder"; homepage = "http://plugin.org.uk/timemachine/"; - license = lib.licenses.lgpl2; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.nico202 ]; + license = licenses.lgpl2; + platforms = platforms.linux; + maintainers = [ maintainers.nico202 ]; mainProgram = "timemachine"; }; } diff --git a/pkgs/by-name/ti/timew-sync-client/package.nix b/pkgs/by-name/ti/timew-sync-client/package.nix index 1635865e33f056..f8f2f52e2010b2 100644 --- a/pkgs/by-name/ti/timew-sync-client/package.nix +++ b/pkgs/by-name/ti/timew-sync-client/package.nix @@ -28,12 +28,12 @@ python3Packages.buildPythonApplication { colorama ]; - meta = { + meta = with lib; { description = "Client component of timewarrior synchronization application"; mainProgram = "timew-sync-client"; homepage = "https://github.com/timewarrior-synchronize/timew-sync-client"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ evris99 errnoh ]; diff --git a/pkgs/by-name/ti/timg/package.nix b/pkgs/by-name/ti/timg/package.nix index 70d9c4557a5425..50122ccdbde3e3 100644 --- a/pkgs/by-name/ti/timg/package.nix +++ b/pkgs/by-name/ti/timg/package.nix @@ -57,12 +57,12 @@ stdenv.mkDerivation (finalAttrs: { "-DWITH_LIBSIXEL=On" ]; - meta = { + meta = with lib; { description = "Terminal image and video viewer"; homepage = "https://timg.sh/"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; mainProgram = "timg"; - maintainers = with lib.maintainers; [ hzeller ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ hzeller ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ti/tinyfetch/package.nix b/pkgs/by-name/ti/tinyfetch/package.nix index 06b54e128383e5..12a9910c75f60a 100644 --- a/pkgs/by-name/ti/tinyfetch/package.nix +++ b/pkgs/by-name/ti/tinyfetch/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Simple fetch in C which is tiny and fast"; homepage = "https://github.com/abrik1/tinyfetch"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "tinyfetch"; - maintainers = with lib.maintainers; [ pagedMov ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ pagedMov ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/tk/tkrev/package.nix b/pkgs/by-name/tk/tkrev/package.nix index d440bc9693c7aa..a799094ecba7da 100644 --- a/pkgs/by-name/tk/tkrev/package.nix +++ b/pkgs/by-name/tk/tkrev/package.nix @@ -31,10 +31,10 @@ stdenv.mkDerivation rec { ./doinstall.tcl $out ''; - meta = { + meta = with lib; { homepage = "https://tkcvs.sourceforge.io"; description = "TCL/TK GUI for cvs and subversion"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/tm/tmsu/package.nix b/pkgs/by-name/tm/tmsu/package.nix index fb7e1fec4a6e87..5a2b89f1f1f93e 100644 --- a/pkgs/by-name/tm/tmsu/package.nix +++ b/pkgs/by-name/tm/tmsu/package.nix @@ -30,15 +30,15 @@ buildGoModule { installShellCompletion --zsh misc/zsh/_tmsu ''; - meta = { + meta = with lib; { homepage = "https://www.tmsu.org"; description = "Tool for tagging your files using a virtual filesystem"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ luftmensch-luftmensch pSub ]; mainProgram = "tmsu"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.unix; + license = licenses.gpl3Plus; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/tn/tnt/package.nix b/pkgs/by-name/tn/tnt/package.nix index a2accb895dcd3c..b484d7d2b89af4 100644 --- a/pkgs/by-name/tn/tnt/package.nix +++ b/pkgs/by-name/tn/tnt/package.nix @@ -21,10 +21,10 @@ stdenv.mkDerivation { cp *.h $out/include ''; - meta = { + meta = with lib; { homepage = "https://math.nist.gov/tnt/"; description = "Template Numerical Toolkit: C++ headers for array and matrices"; - license = lib.licenses.publicDomain; - platforms = lib.platforms.unix; + license = licenses.publicDomain; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/to/todesk/package.nix b/pkgs/by-name/to/todesk/package.nix index 7891ca6e656e87..efb70dfa57ef96 100644 --- a/pkgs/by-name/to/todesk/package.nix +++ b/pkgs/by-name/to/todesk/package.nix @@ -132,13 +132,13 @@ buildFHSEnv { substituteInPlace "$out/share/applications/todesk.desktop" \ --replace-fail '/opt/todesk/bin' "${todesk-unwrapped}/lib" ''; - meta = { + meta = with lib; { description = "Remote Desktop Application"; homepage = "https://www.todesk.com/linux.html"; - license = lib.licenses.unfree; + license = licenses.unfree; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ bot-wxt1221 ]; mainProgram = "todesk"; }; } diff --git a/pkgs/by-name/to/todo-txt-cli/package.nix b/pkgs/by-name/to/todo-txt-cli/package.nix index 29c2d2487f6e48..9ac74e946a2764 100644 --- a/pkgs/by-name/to/todo-txt-cli/package.nix +++ b/pkgs/by-name/to/todo-txt-cli/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation { install -vm 644 todo.cfg $out/etc/todo/config ''; - meta = { + meta = with lib; { description = "Simple plaintext todo list manager"; homepage = "http://todotxt.com"; - license = lib.licenses.gpl3; + license = licenses.gpl3; mainProgram = "todo.sh"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/to/tokyonight-gtk-theme/package.nix b/pkgs/by-name/to/tokyonight-gtk-theme/package.nix index 346b4d69a03d90..47734a17bb74ce 100644 --- a/pkgs/by-name/to/tokyonight-gtk-theme/package.nix +++ b/pkgs/by-name/to/tokyonight-gtk-theme/package.nix @@ -114,15 +114,15 @@ lib.checkListOfEnum "${pname}: colorVariants" colorVariantList colorVariants lib runHook postInstall ''; - meta = { + meta = with lib; { description = "GTK theme based on the Tokyo Night colour palette"; homepage = "https://github.com/Fausto-Korpsvart/Tokyonight-GTK-Theme"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ garaiza-93 Madouura d3vil0p3r ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/to/tomato-c/package.nix b/pkgs/by-name/to/tomato-c/package.nix index 613dcfec4b51f9..775c8637ebffc1 100644 --- a/pkgs/by-name/to/tomato-c/package.nix +++ b/pkgs/by-name/to/tomato-c/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { homepage = "https://github.com/gabrielzschmitz/Tomato.C"; description = " A pomodoro timer written in pure C"; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ AndersonTorres ]; mainProgram = "tomato"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/to/tomboy-ng/package.nix b/pkgs/by-name/to/tomboy-ng/package.nix index 83edbf65cfa5b4..31fa3dea2c8c61 100644 --- a/pkgs/by-name/to/tomboy-ng/package.nix +++ b/pkgs/by-name/to/tomboy-ng/package.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation (finalAttrs: { LAZ_DIR = "${lazarus}/share/lazarus"; }; - meta = { + meta = with lib; { description = "Note taking app that works and synchronises between Linux, Windows and macOS"; homepage = "https://github.com/tomboy-notes/tomboy-ng"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ pluiedev ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ pluiedev ]; mainProgram = "tomboy-ng"; - platforms = lib.platforms.unix ++ lib.platforms.windows; + platforms = platforms.unix ++ platforms.windows; }; }) diff --git a/pkgs/by-name/to/toml-cli/package.nix b/pkgs/by-name/to/toml-cli/package.nix index 8cb7aacce5cb3a..4a62be6c4b88a9 100644 --- a/pkgs/by-name/to/toml-cli/package.nix +++ b/pkgs/by-name/to/toml-cli/package.nix @@ -29,11 +29,11 @@ rustPlatform.buildRustPackage rec { version = testers.testVersion { package = toml-cli; }; }; - meta = { + meta = with lib; { description = "Simple CLI for editing and querying TOML files"; homepage = "https://github.com/gnprice/toml-cli"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ phlip9 ]; + license = licenses.mit; + maintainers = with maintainers; [ phlip9 ]; mainProgram = "toml"; }; } diff --git a/pkgs/by-name/to/toml-sort/package.nix b/pkgs/by-name/to/toml-sort/package.nix index 291a5c942e1845..44237d44408af2 100644 --- a/pkgs/by-name/to/toml-sort/package.nix +++ b/pkgs/by-name/to/toml-sort/package.nix @@ -29,11 +29,11 @@ python3Packages.buildPythonApplication { --replace-fail "toml-sort" "$out/bin/toml-sort" ''; - meta = { + meta = with lib; { mainProgram = "toml-sort"; homepage = "https://github.com/pappasam/toml-sort"; description = "Command line utility to sort and format your toml files"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ isabelroses ]; + license = licenses.mit; + maintainers = with maintainers; [ isabelroses ]; }; } diff --git a/pkgs/by-name/to/tomlcpp/package.nix b/pkgs/by-name/to/tomlcpp/package.nix index b98b9c6198e80e..7cf56e380f6814 100644 --- a/pkgs/by-name/to/tomlcpp/package.nix +++ b/pkgs/by-name/to/tomlcpp/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { "prefix=${placeholder "out"}" ]; - meta = { + meta = with lib; { homepage = "https://github.com/cktan/tomlcpp"; description = "No fanfare TOML C++ Library"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = with lib.platforms; unix; + license = licenses.mit; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/to/tomlq/package.nix b/pkgs/by-name/to/tomlq/package.nix index 1b526c1844c276..939b0dd5da3715 100644 --- a/pkgs/by-name/to/tomlq/package.nix +++ b/pkgs/by-name/to/tomlq/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-/cepTVJoBM1LYZkFpH9UCvE74cSszHDaeThsZksQ1P8="; - meta = { + meta = with lib; { description = "Tool for getting data from TOML files on the command line"; homepage = "https://github.com/cryptaliagy/tomlq"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ kinzoku ]; + license = licenses.mit; + maintainers = with maintainers; [ kinzoku ]; mainProgram = "tq"; }; } diff --git a/pkgs/by-name/to/tootik/package.nix b/pkgs/by-name/to/tootik/package.nix index a551d674785d70..7d9eb60437bf26 100644 --- a/pkgs/by-name/to/tootik/package.nix +++ b/pkgs/by-name/to/tootik/package.nix @@ -31,11 +31,11 @@ buildGoModule rec { doCheck = !(stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64); - meta = { + meta = with lib; { description = "Federated nanoblogging service with a Gemini frontend"; homepage = "https://github.com/dimkr/tootik"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ sikmir ]; + license = licenses.asl20; + maintainers = with maintainers; [ sikmir ]; mainProgram = "tootik"; }; } diff --git a/pkgs/by-name/to/torcs/package.nix b/pkgs/by-name/to/torcs/package.nix index 4a5b46a7e722e0..507bf328486529 100644 --- a/pkgs/by-name/to/torcs/package.nix +++ b/pkgs/by-name/to/torcs/package.nix @@ -85,12 +85,12 @@ stdenv.mkDerivation rec { installTargets = "install datainstall"; - meta = { + meta = with lib; { description = "Car racing game"; homepage = "https://torcs.sourceforge.net/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; hydraPlatforms = [ ]; }; } diff --git a/pkgs/by-name/to/torrentstream/package.nix b/pkgs/by-name/to/torrentstream/package.nix index 8d9a9044eeb76c..416b82a9bd5a45 100644 --- a/pkgs/by-name/to/torrentstream/package.nix +++ b/pkgs/by-name/to/torrentstream/package.nix @@ -34,12 +34,12 @@ buildDotnetModule rec { ./0001-display-the-message-of-caught-exceptions.patch ]; - meta = { + meta = with lib; { homepage = "https://github.com/trueromanus/TorrentStream"; description = "Simple web server for streaming torrent files in video players"; - license = lib.licenses.bsd2; - platforms = lib.platforms.all; + license = licenses.bsd2; + platforms = platforms.all; mainProgram = "TorrentStream"; - maintainers = with lib.maintainers; [ _3JlOy-PYCCKUi ]; + maintainers = with maintainers; [ _3JlOy-PYCCKUi ]; }; } diff --git a/pkgs/by-name/to/tortoisehg/package.nix b/pkgs/by-name/to/tortoisehg/package.nix index d1d333cf4519ef..f8b0f1dddcf7a4 100644 --- a/pkgs/by-name/to/tortoisehg/package.nix +++ b/pkgs/by-name/to/tortoisehg/package.nix @@ -61,12 +61,12 @@ python3Packages.buildPythonApplication rec { inherit mercurial; }; - meta = { + meta = with lib; { description = "Qt based graphical tool for working with Mercurial"; homepage = "https://tortoisehg.bitbucket.io/"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = with maintainers; [ danbst gbtb ]; diff --git a/pkgs/by-name/to/torzu/package.nix b/pkgs/by-name/to/torzu/package.nix index 06cd23badc4e6f..4e71ce997f5107 100644 --- a/pkgs/by-name/to/torzu/package.nix +++ b/pkgs/by-name/to/torzu/package.nix @@ -223,17 +223,17 @@ stdenv.mkDerivation (finalAttrs: { install -Dm444 $src/dist/72-yuzu-input.rules $out/lib/udev/rules.d/72-yuzu-input.rules "; - meta = { + meta = with lib; { description = "Fork of yuzu, an open-source Nintendo Switch emulator"; homepage = "https://notabug.org/litucks/torzu"; mainProgram = "yuzu"; - platforms = lib.platforms.linux; + platforms = platforms.linux; badPlatforms = [ # Several conversion errors, probably caused by the update to GCC 14 "aarch64-linux" ]; - maintainers = with lib.maintainers; [ liberodark ]; - license = with lib.licenses; [ + maintainers = with maintainers; [ liberodark ]; + license = with licenses; [ gpl3Plus # Icons asl20 diff --git a/pkgs/by-name/to/totp-cli/package.nix b/pkgs/by-name/to/totp-cli/package.nix index be1de60008ca62..b568ade7aee7d3 100644 --- a/pkgs/by-name/to/totp-cli/package.nix +++ b/pkgs/by-name/to/totp-cli/package.nix @@ -27,12 +27,12 @@ buildGoModule { installShellCompletion --zsh autocomplete/zsh_autocomplete ''; - meta = { + meta = with lib; { description = "Authy/Google Authenticator like TOTP CLI tool written in Go"; changelog = "https://github.com/yitsushi/totp-cli/releases/"; homepage = "https://yitsushi.github.io/totp-cli/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ luftmensch-luftmensch ]; + license = licenses.mit; + maintainers = with maintainers; [ luftmensch-luftmensch ]; mainProgram = "totp-cli"; }; } diff --git a/pkgs/by-name/tp/tpacpi-bat/package.nix b/pkgs/by-name/tp/tpacpi-bat/package.nix index 8a5f8d32e534b9..40ca252e78b7d9 100644 --- a/pkgs/by-name/tp/tpacpi-bat/package.nix +++ b/pkgs/by-name/tp/tpacpi-bat/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { --replace cat ${coreutils}/bin/cat ''; - meta = { - maintainers = [ lib.maintainers.orbekk ]; - platforms = lib.platforms.linux; + meta = with lib; { + maintainers = [ maintainers.orbekk ]; + platforms = platforms.linux; description = "Tool to set battery charging thresholds on Lenovo Thinkpad"; mainProgram = "tpacpi-bat"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; }; } diff --git a/pkgs/by-name/tp/tparse/package.nix b/pkgs/by-name/tp/tparse/package.nix index 5441a1413cc8ed..acdb3e0d4102da 100644 --- a/pkgs/by-name/tp/tparse/package.nix +++ b/pkgs/by-name/tp/tparse/package.nix @@ -25,11 +25,11 @@ buildGoModule { "-X main.version=${version}" ]; - meta = { + meta = with lib; { description = "CLI tool for summarizing go test output. Pipe friendly. CI/CD friendly"; mainProgram = "tparse"; homepage = "https://github.com/mfridman/tparse"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ obreitwi ]; + license = licenses.mit; + maintainers = with maintainers; [ obreitwi ]; }; } diff --git a/pkgs/by-name/tp/tpi/package.nix b/pkgs/by-name/tp/tpi/package.nix index 7ccd26716664f0..c38b196ee5516d 100644 --- a/pkgs/by-name/tp/tpi/package.nix +++ b/pkgs/by-name/tp/tpi/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-5TfLAMPl3I9gkd3SSjPlBeBJzANK9u5XjY0ReHVSTJw="; - meta = { + meta = with lib; { description = "CLI tool to control your Turing Pi 2 board"; homepage = "https://github.com/turing-machines/tpi"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ WoutSwinkels ]; + license = licenses.asl20; + maintainers = with maintainers; [ WoutSwinkels ]; mainProgram = "tpi"; }; } diff --git a/pkgs/by-name/tp/tplay/package.nix b/pkgs/by-name/tp/tplay/package.nix index e3ef32f488691a..f91cf8d69027d5 100644 --- a/pkgs/by-name/tp/tplay/package.nix +++ b/pkgs/by-name/tp/tplay/package.nix @@ -50,12 +50,12 @@ rustPlatform.buildRustPackage rec { --prefix PATH : "${lib.makeBinPath [ ffmpeg ]}" ''; - meta = { + meta = with lib; { description = "Terminal Media Player"; homepage = "https://github.com/maxcurzi/tplay"; - platforms = lib.platforms.linux; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + platforms = platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ demine colemickens ]; diff --git a/pkgs/by-name/tp/tpm-fido/package.nix b/pkgs/by-name/tp/tpm-fido/package.nix index 8fd67b27d92072..338299955ce62e 100644 --- a/pkgs/by-name/tp/tpm-fido/package.nix +++ b/pkgs/by-name/tp/tpm-fido/package.nix @@ -27,11 +27,11 @@ buildGoModule { "-w" ]; - meta = { + meta = with lib; { description = "WebAuthn/U2F token protected by a TPM"; homepage = "https://github.com/psanford/tpm-fido"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ genga898 ]; + license = licenses.mit; + maintainers = with maintainers; [ genga898 ]; mainProgram = "tpm-fido"; }; } diff --git a/pkgs/by-name/tp/tpsecore/package.nix b/pkgs/by-name/tp/tpsecore/package.nix index 6d87efd6ec369a..7e4a4dfe67a83f 100644 --- a/pkgs/by-name/tp/tpsecore/package.nix +++ b/pkgs/by-name/tp/tpsecore/package.nix @@ -55,14 +55,14 @@ rustPlatform.buildRustPackage { doCheck = false; - meta = { + meta = with lib; { description = "Self contained toolkit for creating, editing, and previewing TPSE files"; homepage = "https://gitlab.com/UniQMG/tpsecore"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ huantian wackbyte ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/tr/trak/package.nix b/pkgs/by-name/tr/trak/package.nix index 27340965ce88f3..f801af18b594a4 100644 --- a/pkgs/by-name/tr/trak/package.nix +++ b/pkgs/by-name/tr/trak/package.nix @@ -25,11 +25,11 @@ python3Packages.buildPythonApplication rec { build-system = [ python3Packages.poetry-core ]; - meta = { + meta = with lib; { description = "Keep a record of the time you dedicate to your projects"; homepage = "https://github.com/lcfd/trak"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ buurro ]; + license = licenses.agpl3Only; + maintainers = with maintainers; [ buurro ]; mainProgram = "trak"; }; } diff --git a/pkgs/by-name/tr/transgui/package.nix b/pkgs/by-name/tr/transgui/package.nix index 23286a131448c2..70a265e6965461 100644 --- a/pkgs/by-name/tr/transgui/package.nix +++ b/pkgs/by-name/tr/transgui/package.nix @@ -104,11 +104,11 @@ stdenv.mkDerivation rec { tagPrefix = "v"; }; - meta = { + meta = with lib; { description = "A cross platform front-end for the Transmission BitTorrent client"; homepage = "https://sourceforge.net/p/transgui"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ramkromberg ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ ramkromberg ]; mainProgram = "transgui"; platforms = [ "x86_64-linux" diff --git a/pkgs/by-name/tr/tre/package.nix b/pkgs/by-name/tr/tre/package.nix index e016e510e8415e..031de236d22007 100644 --- a/pkgs/by-name/tr/tre/package.nix +++ b/pkgs/by-name/tr/tre/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { }) ]; - meta = { + meta = with lib; { description = "Lightweight and robust POSIX compliant regexp matching library"; homepage = "https://laurikari.net/tre/"; - license = lib.licenses.bsd2; + license = licenses.bsd2; mainProgram = "agrep"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/tr/treefmt1/package.nix b/pkgs/by-name/tr/treefmt1/package.nix index 738ae4ef986b38..12a0eb433a9bb6 100644 --- a/pkgs/by-name/tr/treefmt1/package.nix +++ b/pkgs/by-name/tr/treefmt1/package.nix @@ -16,11 +16,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-bpNIGuh74nwEmHPeXtPmsML9vJOb00xkdjK0Nd7esAc="; - meta = { + meta = with lib; { description = "one CLI to format the code tree"; homepage = "https://github.com/numtide/treefmt"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.zimbatm ]; + license = licenses.mit; + maintainers = [ maintainers.zimbatm ]; mainProgram = "treefmt"; }; } diff --git a/pkgs/by-name/tr/treefmt2/package.nix b/pkgs/by-name/tr/treefmt2/package.nix index 0aca91e20c5c91..0069679a57674c 100644 --- a/pkgs/by-name/tr/treefmt2/package.nix +++ b/pkgs/by-name/tr/treefmt2/package.nix @@ -27,13 +27,13 @@ buildGoModule rec { "-X github.com/numtide/treefmt/v2/build.Version=v${version}" ]; - meta = { + meta = with lib; { description = "one CLI to format the code tree"; homepage = "https://github.com/numtide/treefmt"; - license = lib.licenses.mit; + license = licenses.mit; maintainers = [ - lib.maintainers.brianmcgee - lib.maintainers.zimbatm + maintainers.brianmcgee + maintainers.zimbatm ]; mainProgram = "treefmt"; }; diff --git a/pkgs/by-name/tr/treegen/package.nix b/pkgs/by-name/tr/treegen/package.nix index 040fa27fec1606..b7328b7180346b 100644 --- a/pkgs/by-name/tr/treegen/package.nix +++ b/pkgs/by-name/tr/treegen/package.nix @@ -37,13 +37,13 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { changelog = "https://github.com/bilbilak/treegen/blob/main/CHANGELOG.md"; description = "ASCII Tree Directory and File Structure Generator"; homepage = "https://github.com/bilbilak/treegen"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "treegen"; - maintainers = with lib.maintainers; [ _4r7if3x ]; - platforms = with lib.platforms; unix ++ windows; + maintainers = with maintainers; [ _4r7if3x ]; + platforms = with platforms; unix ++ windows; }; } diff --git a/pkgs/by-name/tr/tremor/package.nix b/pkgs/by-name/tr/tremor/package.nix index e8fb12f8ab9ed5..62341b08ad393b 100644 --- a/pkgs/by-name/tr/tremor/package.nix +++ b/pkgs/by-name/tr/tremor/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation { sed -i /XIPH_PATH_OGG/d configure ''; - meta = { + meta = with lib; { homepage = "https://xiph.org/tremor/"; description = "Fixed-point version of the Ogg Vorbis decoder"; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; + license = licenses.bsd3; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/tr/trickle/package.nix b/pkgs/by-name/tr/trickle/package.nix index 2ade49893aca4c..4c11a23594b2b2 100644 --- a/pkgs/by-name/tr/trickle/package.nix +++ b/pkgs/by-name/tr/trickle/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = { + meta = with lib; { description = "Lightweight userspace bandwidth shaper"; - license = lib.licenses.bsd3; + license = licenses.bsd3; homepage = "https://monkey.org/~marius/pages/?page=trickle"; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "trickle"; }; } diff --git a/pkgs/by-name/tr/trigger/package.nix b/pkgs/by-name/tr/trigger/package.nix index 1352e9df786d4e..6ecab67931ed07 100644 --- a/pkgs/by-name/tr/trigger/package.nix +++ b/pkgs/by-name/tr/trigger/package.nix @@ -82,12 +82,12 @@ stdenv.mkDerivation rec { }) ]; - meta = { + meta = with lib; { description = "Fast-paced single-player racing game"; mainProgram = "trigger-rally"; homepage = "http://trigger-rally.sourceforge.net/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/tr/trimage/package.nix b/pkgs/by-name/tr/trimage/package.nix index 594930775a1c62..4f342ed1ebf958 100644 --- a/pkgs/by-name/tr/trimage/package.nix +++ b/pkgs/by-name/tr/trimage/package.nix @@ -61,11 +61,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Cross-platform tool for optimizing PNG and JPG files"; homepage = "https://github.com/Kilian/Trimage"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "trimage"; - maintainers = with lib.maintainers; [ tomasajt ]; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/by-name/tr/trinity/package.nix b/pkgs/by-name/tr/trinity/package.nix index ba745c5252ddcd..4ee6a8ee87b049 100644 --- a/pkgs/by-name/tr/trinity/package.nix +++ b/pkgs/by-name/tr/trinity/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { tagPrefix = "v"; }; - meta = { + meta = with lib; { description = "Linux System call fuzz tester"; mainProgram = "trinity"; homepage = "https://github.com/kernelslacker/trinity"; - license = lib.licenses.gpl2Only; - maintainers = [ lib.maintainers.dezgeg ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + maintainers = [ maintainers.dezgeg ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/tr/trlib/package.nix b/pkgs/by-name/tr/trlib/package.nix index a3770293dd026f..ec404d29ca8e85 100644 --- a/pkgs/by-name/tr/trlib/package.nix +++ b/pkgs/by-name/tr/trlib/package.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = [ (lib.cmakeBool "TRLIB_BUILD_PYTHON3" pythonSupport) ]; - meta = { + meta = with lib; { description = "Trust Region Subproblem Solver Library"; homepage = "https://github.com/felixlen/trlib"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nim65s ]; + license = licenses.mit; + maintainers = with maintainers; [ nim65s ]; }; }) diff --git a/pkgs/by-name/tr/trojan-rs/package.nix b/pkgs/by-name/tr/trojan-rs/package.nix index a748e7687aaa01..c87704c8d0ff83 100644 --- a/pkgs/by-name/tr/trojan-rs/package.nix +++ b/pkgs/by-name/tr/trojan-rs/package.nix @@ -24,11 +24,11 @@ rustPlatform.buildRustPackage { env.RUSTC_BOOTSTRAP = true; env.RUSTFLAGS = "--cfg tokio_unstable"; - meta = { + meta = with lib; { homepage = "https://github.com/lazytiger/trojan-rs"; description = "Trojan server and proxy programs written in Rust"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "trojan"; - maintainers = with lib.maintainers; [ oluceps ]; + maintainers = with maintainers; [ oluceps ]; }; } diff --git a/pkgs/by-name/tr/trunk-io/package.nix b/pkgs/by-name/tr/trunk-io/package.nix index 6e965dc48b1e0f..7c1d93ff36e52e 100644 --- a/pkgs/by-name/tr/trunk-io/package.nix +++ b/pkgs/by-name/tr/trunk-io/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { homepage = "https://trunk.io/"; description = "Developer experience toolkit used to check, test, merge, and monitor code"; - license = lib.licenses.unfree; - platforms = lib.platforms.linux ++ lib.platforms.darwin; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.unfree; + platforms = platforms.linux ++ platforms.darwin; + maintainers = with maintainers; [ aaronjheng ]; }; }) diff --git a/pkgs/by-name/tt/tt/package.nix b/pkgs/by-name/tt/tt/package.nix index 480b9f245c0538..2dc091f59ca432 100644 --- a/pkgs/by-name/tt/tt/package.nix +++ b/pkgs/by-name/tt/tt/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { installManPage tt.1.gz ''; - meta = { + meta = with lib; { description = "Typing test in the terminal written in Go"; homepage = "https://github.com/lemnos/tt"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "tt"; - maintainers = with lib.maintainers; [ vinetos ]; + maintainers = with maintainers; [ vinetos ]; }; } diff --git a/pkgs/by-name/tt/ttaenc/package.nix b/pkgs/by-name/tt/ttaenc/package.nix index 51fc8e26593e30..138efaff1273a6 100644 --- a/pkgs/by-name/tt/ttaenc/package.nix +++ b/pkgs/by-name/tt/ttaenc/package.nix @@ -30,15 +30,15 @@ stdenv.mkDerivation (finalAttrs: { install -m644 "ChangeLog-${finalAttrs.version}" README "$out/share/doc/${finalAttrs.pname}" ''; - meta = { + meta = with lib; { description = "Lossless compressor for multichannel 8, 16 and 24 bits audio data, with the ability of password data protection"; homepage = "https://sourceforge.net/projects/tta/"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Only lgpl3Only ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "ttaenc"; - maintainers = with lib.maintainers; [ natsukagami ]; + maintainers = with maintainers; [ natsukagami ]; }; }) diff --git a/pkgs/by-name/tt/ttf-indic/package.nix b/pkgs/by-name/tt/ttf-indic/package.nix index 52c980660c89a3..8694cec81ea360 100644 --- a/pkgs/by-name/tt/ttf-indic/package.nix +++ b/pkgs/by-name/tt/ttf-indic/package.nix @@ -21,11 +21,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://www.indlinux.org/wiki/index.php/Downloads"; description = "Indic Opentype Fonts collection"; - license = lib.licenses.gpl2Only; - maintainers = [ lib.maintainers.akssri ]; - platforms = lib.platforms.all; + license = licenses.gpl2Only; + maintainers = [ maintainers.akssri ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/tt/ttyd/package.nix b/pkgs/by-name/tt/ttyd/package.nix index 9a35f4b1f5b434..91889a213739f0 100644 --- a/pkgs/by-name/tt/ttyd/package.nix +++ b/pkgs/by-name/tt/ttyd/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { inherit (nixosTests) ttyd; }; - meta = { + meta = with lib; { description = "Share your terminal over the web"; homepage = "https://github.com/tsl0922/ttyd"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.thoughtpolice ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = [ maintainers.thoughtpolice ]; + platforms = platforms.all; mainProgram = "ttyd"; }; } diff --git a/pkgs/by-name/tu/tuifimanager/package.nix b/pkgs/by-name/tu/tuifimanager/package.nix index 3f48912d6056b1..7a8178b9a1a9aa 100644 --- a/pkgs/by-name/tu/tuifimanager/package.nix +++ b/pkgs/by-name/tu/tuifimanager/package.nix @@ -72,7 +72,7 @@ lib.throwIf (enableDragAndDrop && !hasDndSupport) pythonImportsCheck = [ "TUIFIManager" ]; - meta = { + meta = with lib; { description = "Cross-platform terminal-based termux-oriented file manager"; longDescription = '' A cross-platform terminal-based termux-oriented file manager (and component), @@ -80,8 +80,8 @@ lib.throwIf (enableDragAndDrop && !hasDndSupport) attempt to get more attention to the Uni-Curses project. ''; homepage = "https://github.com/GiorgosXou/TUIFIManager"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + maintainers = with maintainers; [ michaelBelsanti sigmanificient ]; diff --git a/pkgs/by-name/tu/tuleap-cli/package.nix b/pkgs/by-name/tu/tuleap-cli/package.nix index daffbbda7cce23..77acf1975a1583 100644 --- a/pkgs/by-name/tu/tuleap-cli/package.nix +++ b/pkgs/by-name/tu/tuleap-cli/package.nix @@ -34,11 +34,11 @@ buildGoModule rec { --zsh <($out/bin/tuleap-cli -s tuleap.example.com completion zsh) ''; - meta = { + meta = with lib; { description = "Command-line interface for the Tuleap API"; homepage = "https://gitlab.com/csgroup-oss/tuleap-cli"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ lesuisse ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ lesuisse ]; mainProgram = "tuleap-cli"; }; } diff --git a/pkgs/by-name/tu/tunctl/package.nix b/pkgs/by-name/tu/tunctl/package.nix index bc1b965f4618e2..2739ef27a3f10a 100644 --- a/pkgs/by-name/tu/tunctl/package.nix +++ b/pkgs/by-name/tu/tunctl/package.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { cp tunctl $out/bin ''; - meta = { + meta = with lib; { homepage = "https://tunctl.sourceforge.net/"; description = "Utility to set up and maintain TUN/TAP network interfaces"; mainProgram = "tunctl"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/tu/tunnelx/package.nix b/pkgs/by-name/tu/tunnelx/package.nix index 1abab58ca5b6e4..371a146d086b9d 100644 --- a/pkgs/by-name/tu/tunnelx/package.nix +++ b/pkgs/by-name/tu/tunnelx/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Program for drawing cave surveys in 2D"; homepage = "https://github.com/CaveSurveying/tunnelx/"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ goatchurchprime ]; - platforms = lib.platforms.linux; + license = licenses.gpl3; + maintainers = with maintainers; [ goatchurchprime ]; + platforms = platforms.linux; mainProgram = "tunnelx"; }; }) diff --git a/pkgs/by-name/tu/turbocase/package.nix b/pkgs/by-name/tu/turbocase/package.nix index cfc46e3c5a2731..8d90ececffd9ca 100644 --- a/pkgs/by-name/tu/turbocase/package.nix +++ b/pkgs/by-name/tu/turbocase/package.nix @@ -23,11 +23,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "turbocase" ]; - meta = { + meta = with lib; { description = "Generate an OpenSCAD case template from a KiCAD PCB"; homepage = "https://turbocase.org"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ MayNiklas ]; + license = licenses.mit; + maintainers = with maintainers; [ MayNiklas ]; mainProgram = "turbocase"; }; } diff --git a/pkgs/by-name/tu/turnon/package.nix b/pkgs/by-name/tu/turnon/package.nix index aba0ff47ae1945..0ecf989f68940a 100644 --- a/pkgs/by-name/tu/turnon/package.nix +++ b/pkgs/by-name/tu/turnon/package.nix @@ -41,12 +41,12 @@ rustPlatform.buildRustPackage rec { blueprint-compiler format resources/**/*.blp ''; - meta = { + meta = with lib; { description = "Turn on devices in your local network"; homepage = "https://github.com/swsnr/turnon"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ mksafavi ]; + license = licenses.mpl20; + maintainers = with maintainers; [ mksafavi ]; mainProgram = "turnon"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/tu/turtle/package.nix b/pkgs/by-name/tu/turtle/package.nix index 77a4e279558e02..649bddd096a31f 100644 --- a/pkgs/by-name/tu/turtle/package.nix +++ b/pkgs/by-name/tu/turtle/package.nix @@ -69,12 +69,12 @@ python3Packages.buildPythonApplication rec { done ''; - meta = { + meta = with lib; { description = "Graphical interface for version control intended to run on gnome and nautilus"; homepage = "https://gitlab.gnome.org/philippun1/turtle"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "turtle_cli"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/tu/tuxguitar/package.nix b/pkgs/by-name/tu/tuxguitar/package.nix index f5ea260fe73df8..1a28a7a3e8c9ce 100644 --- a/pkgs/by-name/tu/tuxguitar/package.nix +++ b/pkgs/by-name/tu/tuxguitar/package.nix @@ -67,16 +67,16 @@ stdenv.mkDerivation (finalAttrs: { nixos = nixosTests.tuxguitar; }; - meta = { + meta = with lib; { description = "Multitrack guitar tablature editor"; longDescription = '' TuxGuitar is a multitrack guitar tablature editor and player written in Java-SWT. It can open GuitarPro, PowerTab and TablEdit files. ''; homepage = "https://github.com/helge17/tuxguitar"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.lgpl2; - maintainers = with lib.maintainers; [ ardumont ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.lgpl2; + maintainers = with maintainers; [ ardumont ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/by-name/tu/tuxpaint/package.nix b/pkgs/by-name/tu/tuxpaint/package.nix index 3063332535c759..6ae09c1f71f8db 100644 --- a/pkgs/by-name/tu/tuxpaint/package.nix +++ b/pkgs/by-name/tu/tuxpaint/package.nix @@ -106,12 +106,12 @@ stdenv.mkDerivation (finalAttrs: { --prefix PATH : ${lib.makeBinPath [ netpbm ]} ''; - meta = { + meta = with lib; { description = "Open Source Drawing Software for Children"; homepage = "http://www.tuxpaint.org/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ woffs ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ woffs ]; + platforms = platforms.linux; mainProgram = "tuxpaint"; }; }) diff --git a/pkgs/by-name/tw/tweego/package.nix b/pkgs/by-name/tw/tweego/package.nix index f0e77b801d9de8..a875518a99784e 100644 --- a/pkgs/by-name/tw/tweego/package.nix +++ b/pkgs/by-name/tw/tweego/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { go mod tidy ''; - meta = { + meta = with lib; { description = "Free (gratis and libre) command line compiler for Twine/Twee story formats, written in Go"; homepage = "https://www.motoslave.net/tweego"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ chrispwill ]; + license = licenses.bsd2; + maintainers = with maintainers; [ chrispwill ]; mainProgram = "tweego"; }; } diff --git a/pkgs/by-name/tw/twilight-kde/package.nix b/pkgs/by-name/tw/twilight-kde/package.nix index 5f0330d16fbf83..efdefc225527d7 100644 --- a/pkgs/by-name/tw/twilight-kde/package.nix +++ b/pkgs/by-name/tw/twilight-kde/package.nix @@ -34,11 +34,11 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Light, clean theme for KDE Plasma desktop"; homepage = "https://github.com/yeyushengfan258/Twilight-kde"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ dretyuiop ]; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ dretyuiop ]; }; } diff --git a/pkgs/by-name/tx/txtpbfmt/package.nix b/pkgs/by-name/tx/txtpbfmt/package.nix index 3e2dba38d41296..265b11d4be1075 100644 --- a/pkgs/by-name/tx/txtpbfmt/package.nix +++ b/pkgs/by-name/tx/txtpbfmt/package.nix @@ -27,11 +27,11 @@ buildGoModule { extraArgs = [ "--version=branch" ]; }; - meta = { + meta = with lib; { description = "Formatter for text proto files"; homepage = "https://github.com/protocolbuffers/txtpbfmt"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.asl20; + maintainers = with maintainers; [ aaronjheng ]; mainProgram = "txtpbfmt"; }; } diff --git a/pkgs/by-name/ty/tygo/package.nix b/pkgs/by-name/ty/tygo/package.nix index af5f690fcfe18b..3fe387a7f6d89d 100644 --- a/pkgs/by-name/ty/tygo/package.nix +++ b/pkgs/by-name/ty/tygo/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { "-extldflags -static" ]; - meta = { + meta = with lib; { description = "Generate Typescript types from Golang source code"; homepage = "https://github.com/gzuidhof/tygo"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ alexymantha ]; + license = licenses.mit; + maintainers = with maintainers; [ alexymantha ]; mainProgram = "tygo"; }; } diff --git a/pkgs/by-name/ty/typodermic-free-fonts/package.nix b/pkgs/by-name/ty/typodermic-free-fonts/package.nix index 7be932eba9db73..6987215d388572 100644 --- a/pkgs/by-name/ty/typodermic-free-fonts/package.nix +++ b/pkgs/by-name/ty/typodermic-free-fonts/package.nix @@ -27,11 +27,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://typodermicfonts.com/"; description = "Typodermic fonts"; - maintainers = with lib.maintainers; [ ehmry ]; - license = lib.licenses.unfree // { + maintainers = with maintainers; [ ehmry ]; + license = licenses.unfree // { fullName = "Font Software for Desktop End User License Agreement"; url = "https://typodermicfonts.com/end-user-license-agreement/"; }; # Font is fine for use in printing and display but cannot be embbeded. diff --git a/pkgs/by-name/ty/typodermic-public-domain/package.nix b/pkgs/by-name/ty/typodermic-public-domain/package.nix index 201dd0a64a7504..79336583235528 100644 --- a/pkgs/by-name/ty/typodermic-public-domain/package.nix +++ b/pkgs/by-name/ty/typodermic-public-domain/package.nix @@ -27,11 +27,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://typodermicfonts.com/"; description = "Vintage Typodermic fonts"; - maintainers = with lib.maintainers; [ ehmry ]; - license = lib.licenses.cc0; - platforms = lib.platforms.all; + maintainers = with maintainers; [ ehmry ]; + license = licenses.cc0; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/tz/tzupdate/package.nix b/pkgs/by-name/tz/tzupdate/package.nix index 64efcc84ac7c54..fa7da6223cf9b3 100644 --- a/pkgs/by-name/tz/tzupdate/package.nix +++ b/pkgs/by-name/tz/tzupdate/package.nix @@ -17,15 +17,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-5+lp5xlwJxFDqzVxptJPX7z0iLoMkgdwHxvRVIXHF7Y="; - meta = { + meta = with lib; { description = "Set the system timezone based on IP geolocation"; homepage = "https://github.com/cdown/tzupdate"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ camillemndn doronbehar ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "tzupdate"; }; } diff --git a/pkgs/by-name/u-/u-config/package.nix b/pkgs/by-name/u-/u-config/package.nix index 578c2990cda20d..8c02dc6c24c67f 100644 --- a/pkgs/by-name/u-/u-config/package.nix +++ b/pkgs/by-name/u-/u-config/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Smaller, simpler, portable pkg-config clone"; homepage = "https://github.com/skeeto/u-config"; - license = lib.licenses.unlicense; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.all; + license = licenses.unlicense; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/u3/u3-tool/package.nix b/pkgs/by-name/u3/u3-tool/package.nix index dc59600c2601ef..eb0352a1da4560 100644 --- a/pkgs/by-name/u3/u3-tool/package.nix +++ b/pkgs/by-name/u3/u3-tool/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation (finalAttrs: { autoreconfHook ]; - meta = { + meta = with lib; { description = "Tool for controlling the special features of a 'U3 smart drive' USB Flash disk"; homepage = "https://sourceforge.net/projects/u3-tool/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ makefu ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ makefu ]; mainProgram = "u3-tool"; }; }) diff --git a/pkgs/by-name/ua/uade/package.nix b/pkgs/by-name/ua/uade/package.nix index 8b539d25056af6..36f152c658dda9 100644 --- a/pkgs/by-name/ua/uade/package.nix +++ b/pkgs/by-name/ua/uade/package.nix @@ -82,16 +82,16 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { rev-prefix = "uade-"; }; - meta = { + meta = with lib; { description = "Plays old Amiga tunes through UAE emulation and cloned m68k-assembler Eagleplayer API"; homepage = "https://zakalwe.fi/uade/"; # It's a mix of licenses. "GPL", Public Domain, "LGPL", GPL2+, BSD, LGPL21+ and source code with unknown licenses. E.g. # - hippel-coso player is "[not] under any Open Source certified license" # - infogrames player is disassembled from Andi Silvas player, unknown license # Let's make it easy and flag the whole package as unfree. - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ OPNA2608 ]; + license = licenses.unfree; + maintainers = with maintainers; [ OPNA2608 ]; mainProgram = "uade123"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ua/uae/package.nix b/pkgs/by-name/ua/uae/package.nix index 9ef978a25e7a24..49ce990a05d1b0 100644 --- a/pkgs/by-name/ua/uae/package.nix +++ b/pkgs/by-name/ua/uae/package.nix @@ -38,12 +38,12 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-fcommon"; LDFLAGS = [ "-lm" ]; - meta = { + meta = with lib; { description = "Ultimate/Unix/Unusable Amiga Emulator"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; homepage = "https://web.archive.org/web/20130901222855/http://www.amigaemulator.org/"; - maintainers = [ lib.maintainers.sander ]; - platforms = lib.platforms.linux; + maintainers = [ maintainers.sander ]; + platforms = platforms.linux; mainProgram = "uae"; }; } diff --git a/pkgs/by-name/ub/ubi_reader/package.nix b/pkgs/by-name/ub/ubi_reader/package.nix index 20c3782e90623f..a17f3ae89955b7 100644 --- a/pkgs/by-name/ub/ubi_reader/package.nix +++ b/pkgs/by-name/ub/ubi_reader/package.nix @@ -23,10 +23,10 @@ python3.pkgs.buildPythonApplication rec { # There are no tests in the source doCheck = false; - meta = { + meta = with lib; { description = "Python scripts capable of extracting and analyzing the contents of UBI and UBIFS images"; homepage = "https://github.com/onekey-sec/ubi_reader"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ vlaci ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ vlaci ]; }; } diff --git a/pkgs/by-name/uc/ucl/package.nix b/pkgs/by-name/uc/ucl/package.nix index fed243d117a286..2bd0d40f84c479 100644 --- a/pkgs/by-name/uc/ucl/package.nix +++ b/pkgs/by-name/uc/ucl/package.nix @@ -17,10 +17,10 @@ stdenv.mkDerivation rec { # `-Wimplicit-function-declaration` is otherwise on and errors by default env.CFLAGS = "-std=c89"; - meta = { + meta = with lib; { homepage = "http://www.oberhumer.com/opensource/ucl/"; description = "Portable lossless data compression library"; - license = lib.licenses.gpl2; - platforms = lib.platforms.unix; + license = licenses.gpl2; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/uc/ucommon/package.nix b/pkgs/by-name/uc/ucommon/package.nix index b91c0461ed0941..690a38c058e279 100644 --- a/pkgs/by-name/uc/ucommon/package.nix +++ b/pkgs/by-name/uc/ucommon/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { description = "C++ library to facilitate using C++ design patterns"; homepage = "https://www.gnu.org/software/commoncpp/"; - license = lib.licenses.lgpl3Plus; + license = licenses.lgpl3Plus; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ud/udev-block-notify/package.nix b/pkgs/by-name/ud/udev-block-notify/package.nix index 9578fa83402d1b..d556242a7db126 100644 --- a/pkgs/by-name/ud/udev-block-notify/package.nix +++ b/pkgs/by-name/ud/udev-block-notify/package.nix @@ -43,12 +43,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/eworm-de/udev-block-notify"; description = "Notify about udev block events"; mainProgram = "udev-block-notify"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ danbulant ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ danbulant ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ud/udptunnel/package.nix b/pkgs/by-name/ud/udptunnel/package.nix index 1bc9c190e7f8b5..ae12d25b1d8a16 100644 --- a/pkgs/by-name/ud/udptunnel/package.nix +++ b/pkgs/by-name/ud/udptunnel/package.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation rec { cp README COPYING* $out/share/udptunnel ''; - meta = { + meta = with lib; { homepage = "https://code.google.com/archive/p/udptunnel/"; description = "Tunnels TCP over UDP packets"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; mainProgram = "udptunnel"; }; } diff --git a/pkgs/by-name/ue/uefi-firmware-parser/package.nix b/pkgs/by-name/ue/uefi-firmware-parser/package.nix index 3f8e4cfc193d4f..e3bc6763de348c 100644 --- a/pkgs/by-name/ue/uefi-firmware-parser/package.nix +++ b/pkgs/by-name/ue/uefi-firmware-parser/package.nix @@ -28,12 +28,12 @@ python3.pkgs.buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Tool for parsing, extracting, and recreating UEFI firmware volumes"; homepage = "https://github.com/theopolis/uefi-firmware-parser"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ KSJ2000 ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ KSJ2000 ]; mainProgram = "uefi-firmware-parser"; }; } diff --git a/pkgs/by-name/ue/uesave/package.nix b/pkgs/by-name/ue/uesave/package.nix index ce4d23fb138df6..0577f83b974acf 100644 --- a/pkgs/by-name/ue/uesave/package.nix +++ b/pkgs/by-name/ue/uesave/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage rec { doInstallCheck = true; versionCheckProgram = "${placeholder "out"}/bin/${meta.mainProgram}"; - meta = { - maintainers = with lib.maintainers; [ xddxdd ]; + meta = with lib; { + maintainers = with maintainers; [ xddxdd ]; description = "Reading and writing Unreal Engine save files (commonly referred to as GVAS)"; homepage = "https://github.com/trumank/uesave-rs"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "uesave"; }; } diff --git a/pkgs/by-name/uf/ufetch/package.nix b/pkgs/by-name/uf/ufetch/package.nix index 7241450b9cc418..58d0bf5e33c432 100644 --- a/pkgs/by-name/uf/ufetch/package.nix +++ b/pkgs/by-name/uf/ufetch/package.nix @@ -34,12 +34,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Tiny system info for Unix-like operating systems"; homepage = "https://gitlab.com/jschx/ufetch"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; + license = licenses.mit; + platforms = platforms.linux; mainProgram = "ufetch"; - maintainers = with lib.maintainers; [ mrtnvgr ]; + maintainers = with maintainers; [ mrtnvgr ]; }; }) diff --git a/pkgs/by-name/uf/ufoai/package.nix b/pkgs/by-name/uf/ufoai/package.nix index 54097f40af1158..ce4a7958935b2f 100644 --- a/pkgs/by-name/uf/ufoai/package.nix +++ b/pkgs/by-name/uf/ufoai/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation rec { "-lm" ]; - meta = { + meta = with lib; { homepage = "http://ufoai.org"; description = "Squad-based tactical strategy game in the tradition of X-Com"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; hydraPlatforms = [ ]; }; } diff --git a/pkgs/by-name/uf/uftp/package.nix b/pkgs/by-name/uf/uftp/package.nix index 831493a3c622dd..eed96e07a15f4a 100644 --- a/pkgs/by-name/uf/uftp/package.nix +++ b/pkgs/by-name/uf/uftp/package.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { cp {uftp.1,uftpd.1,uftp_keymgt.1,uftpproxyd.1} $man/share/man/man1 ''; - meta = { + meta = with lib; { description = "Encrypted UDP based FTP with multicast"; homepage = "https://uftp-multicast.sourceforge.net/"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.fadenb ]; - platforms = with lib.platforms; linux ++ darwin; + license = licenses.gpl3; + maintainers = [ maintainers.fadenb ]; + platforms = with platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/ug/ugit/package.nix b/pkgs/by-name/ug/ugit/package.nix index b34d6a767f5595..7548fecb1c91de 100644 --- a/pkgs/by-name/ug/ugit/package.nix +++ b/pkgs/by-name/ug/ugit/package.nix @@ -65,13 +65,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Tool that helps undoing the last git command with grace"; homepage = "https://github.com/Bhupesh-V/ugit"; downloadPage = "https://github.com/Bhupesh-V/ugit/releases"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "ugit"; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ d-brasher ]; + platforms = platforms.unix; + maintainers = with maintainers; [ d-brasher ]; }; }) diff --git a/pkgs/by-name/uh/uhdm/package.nix b/pkgs/by-name/uh/uhdm/package.nix index 2bb3722cb2664f..a479e449a05229 100644 --- a/pkgs/by-name/uh/uhdm/package.nix +++ b/pkgs/by-name/uh/uhdm/package.nix @@ -40,14 +40,14 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; checkPhase = "make test"; - meta = { + meta = with lib; { description = "Universal Hardware Data Model"; homepage = "https://github.com/chipsalliance/UHDM"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ matthuszagh hzeller ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ui/uif2iso/package.nix b/pkgs/by-name/ui/uif2iso/package.nix index fb236b36b3b3de..fb8b1b88aa6a8f 100644 --- a/pkgs/by-name/ui/uif2iso/package.nix +++ b/pkgs/by-name/ui/uif2iso/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { make -C . prefix="$out" install; ''; - meta = { + meta = with lib; { description = "Tool for converting single/multi part UIF image files to ISO"; homepage = "http://aluigi.org/mytoolz.htm#uif2iso"; - license = lib.licenses.gpl1Plus; - platforms = lib.platforms.linux; + license = licenses.gpl1Plus; + platforms = platforms.linux; mainProgram = "uif2iso"; }; } diff --git a/pkgs/by-name/ui/uisp/package.nix b/pkgs/by-name/ui/uisp/package.nix index c87b916eed3875..5681294ff905c0 100644 --- a/pkgs/by-name/ui/uisp/package.nix +++ b/pkgs/by-name/ui/uisp/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-Wno-error"; - meta = { + meta = with lib; { description = "Tool for AVR microcontrollers which can interface to many hardware in-system programmers"; mainProgram = "uisp"; - license = lib.licenses.gpl2; + license = licenses.gpl2; homepage = "https://savannah.nongnu.org/projects/uisp"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ui/uiua386/package.nix b/pkgs/by-name/ui/uiua386/package.nix index f06d10f15635e9..c1739853a5406a 100644 --- a/pkgs/by-name/ui/uiua386/package.nix +++ b/pkgs/by-name/ui/uiua386/package.nix @@ -17,11 +17,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Uiua font"; homepage = "https://uiua.org/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ skykanin ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ skykanin ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ul/ultimatestunts/package.nix b/pkgs/by-name/ul/ultimatestunts/package.nix index 49396e3c34f392..338fbb633b774f 100644 --- a/pkgs/by-name/ul/ultimatestunts/package.nix +++ b/pkgs/by-name/ul/ultimatestunts/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { sed -e '1i#include ' -i $(find . -name '*.c' -o -name '*.cpp') ''; - meta = { + meta = with lib; { homepage = "http://www.ultimatestunts.nl/"; description = "Remake of the popular racing DOS-game Stunts"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/um/ums/package.nix b/pkgs/by-name/um/ums/package.nix index 43a52adbab86c9..62abf4b49bc17d 100644 --- a/pkgs/by-name/um/ums/package.nix +++ b/pkgs/by-name/um/ums/package.nix @@ -52,11 +52,11 @@ stdenv.mkDerivation rec { --set JAVA_HOME "${jre8}" ''; - meta = { + meta = with lib; { description = "Universal Media Server: a DLNA-compliant UPnP Media Server"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = with maintainers; [ thall snicket2100 ]; diff --git a/pkgs/by-name/un/unblob/package.nix b/pkgs/by-name/un/unblob/package.nix index 0dc24850b9ae11..7311fc919b6bd0 100644 --- a/pkgs/by-name/un/unblob/package.nix +++ b/pkgs/by-name/un/unblob/package.nix @@ -118,12 +118,12 @@ python3.pkgs.buildPythonApplication rec { inherit runtimeDeps; }; - meta = { + meta = with lib; { description = "Extract files from any kind of container formats"; homepage = "https://unblob.org"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; + license = licenses.mit; + platforms = platforms.unix; mainProgram = "unblob"; - maintainers = with lib.maintainers; [ vlaci ]; + maintainers = with maintainers; [ vlaci ]; }; } diff --git a/pkgs/by-name/un/undaemonize/package.nix b/pkgs/by-name/un/undaemonize/package.nix index a0978214441257..aa00219a7732de 100644 --- a/pkgs/by-name/un/undaemonize/package.nix +++ b/pkgs/by-name/un/undaemonize/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation { installPhase = '' install -D undaemonize $out/bin/undaemonize ''; - meta = { + meta = with lib; { description = "Tiny helper utility to force programs which insist on daemonizing themselves to run in the foreground"; homepage = "https://github.com/nickstenning/undaemonize"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.canndrew ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = [ maintainers.canndrew ]; + platforms = platforms.linux; mainProgram = "undaemonize"; }; } diff --git a/pkgs/by-name/un/undmg/package.nix b/pkgs/by-name/un/undmg/package.nix index a2b0bf006c83a8..3a2f13791941ea 100644 --- a/pkgs/by-name/un/undmg/package.nix +++ b/pkgs/by-name/un/undmg/package.nix @@ -33,15 +33,15 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { description = "Extract a DMG file"; homepage = "https://github.com/matthewbauer/undmg"; - license = lib.licenses.gpl3; + license = licenses.gpl3; mainProgram = "undmg"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ matthewbauer lnl7 ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/un/unigine-heaven/package.nix b/pkgs/by-name/un/unigine-heaven/package.nix index 54557ca0631df6..44fbd3f8735317 100644 --- a/pkgs/by-name/un/unigine-heaven/package.nix +++ b/pkgs/by-name/un/unigine-heaven/package.nix @@ -93,12 +93,12 @@ stdenv.mkDerivation { dontUnpack = true; - meta = { + meta = with lib; { description = "Unigine Heaven GPU benchmarking tool"; homepage = "https://benchmark.unigine.com/heaven"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - maintainers = [ lib.maintainers.BarinovMaxim ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = [ maintainers.BarinovMaxim ]; platforms = [ "x86_64-linux" "i686-linux" diff --git a/pkgs/by-name/un/unigine-valley/package.nix b/pkgs/by-name/un/unigine-valley/package.nix index 1d6625cbc727ad..d4184d0177b152 100644 --- a/pkgs/by-name/un/unigine-valley/package.nix +++ b/pkgs/by-name/un/unigine-valley/package.nix @@ -131,11 +131,11 @@ stdenv.mkDerivation rec { stripDebugList = [ "${instPath}/bin" ]; - meta = { + meta = with lib; { description = "Unigine Valley GPU benchmarking tool"; homepage = "https://unigine.com/products/benchmarks/valley/"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; # see also: $out/$instPath/documentation/License.pdf + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; # see also: $out/$instPath/documentation/License.pdf maintainers = [ ]; platforms = [ "x86_64-linux" diff --git a/pkgs/by-name/un/unipicker/package.nix b/pkgs/by-name/un/unipicker/package.nix index 9549c30f781503..8fe668de2c2684 100644 --- a/pkgs/by-name/un/unipicker/package.nix +++ b/pkgs/by-name/un/unipicker/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation (finalAttrs: { "DESTDIR=${placeholder "out"}" ]; - meta = { + meta = with lib; { description = "CLI utility for searching unicode characters by description and optionally copying them to clipboard"; homepage = "https://github.com/jeremija/unipicker"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.unix; mainProgram = "unipicker"; }; }) diff --git a/pkgs/by-name/un/unison-fsmonitor/package.nix b/pkgs/by-name/un/unison-fsmonitor/package.nix index c784772fb70e84..74d436c2852383 100644 --- a/pkgs/by-name/un/unison-fsmonitor/package.nix +++ b/pkgs/by-name/un/unison-fsmonitor/package.nix @@ -21,12 +21,12 @@ rustPlatform.buildRustPackage rec { "--skip=test_follow_link" ]; - meta = { + meta = with lib; { homepage = "https://github.com/autozimu/unison-fsmonitor"; description = "fsmonitor implementation for darwin"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nevivurn ]; - platforms = lib.platforms.darwin; + license = licenses.mit; + maintainers = with maintainers; [ nevivurn ]; + platforms = platforms.darwin; mainProgram = "unison-fsmonitor"; }; } diff --git a/pkgs/by-name/un/unittest-cpp/package.nix b/pkgs/by-name/un/unittest-cpp/package.nix index 58f859ae43eabf..1d3f3cb4392746 100644 --- a/pkgs/by-name/un/unittest-cpp/package.nix +++ b/pkgs/by-name/un/unittest-cpp/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/unittest-cpp/unittest-cpp"; description = "Lightweight unit testing framework for C++"; - license = lib.licenses.mit; + license = licenses.mit; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/un/unnamed-sdvx-clone/package.nix b/pkgs/by-name/un/unnamed-sdvx-clone/package.nix index 5324043fb5d179..5b6b10b06339ee 100644 --- a/pkgs/by-name/un/unnamed-sdvx-clone/package.nix +++ b/pkgs/by-name/un/unnamed-sdvx-clone/package.nix @@ -98,11 +98,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "A game based on K-Shoot MANIA and Sound Voltex"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sako ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ sako ]; + platforms = platforms.linux; mainProgram = "usc-game-wrapped"; }; }) diff --git a/pkgs/by-name/un/unstick/package.nix b/pkgs/by-name/un/unstick/package.nix index 91eb9616a2c6a4..39496c4f81c85a 100644 --- a/pkgs/by-name/un/unstick/package.nix +++ b/pkgs/by-name/un/unstick/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { ]; buildInputs = [ libseccomp ]; - meta = { + meta = with lib; { homepage = "https://github.com/kwohlfahrt/unstick"; description = "Silently eats chmod commands forbidden by Nix"; mainProgram = "unstick"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ kwohlfahrt ]; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ kwohlfahrt ]; }; } diff --git a/pkgs/by-name/un/unyaffs/package.nix b/pkgs/by-name/un/unyaffs/package.nix index b5f8e0269ab8b7..15f8387d18f395 100644 --- a/pkgs/by-name/un/unyaffs/package.nix +++ b/pkgs/by-name/un/unyaffs/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation (finalAttrs: { doInstallCheck = true; versionCheckProgramArg = "-V"; - meta = { + meta = with lib; { description = "Tool to extract files from a YAFFS2 file system image"; homepage = "https://github.com/whataday/unyaffs"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ KSJ2000 ]; + license = licenses.gpl2Only; + platforms = platforms.unix; + maintainers = with maintainers; [ KSJ2000 ]; mainProgram = "unyaffs"; }; }) diff --git a/pkgs/by-name/un/unzip/package.nix b/pkgs/by-name/un/unzip/package.nix index a5b84b81353828..6ac56e7104869d 100644 --- a/pkgs/by-name/un/unzip/package.nix +++ b/pkgs/by-name/un/unzip/package.nix @@ -110,12 +110,12 @@ stdenv.mkDerivation rec { setupHook = ./setup-hook.sh; - meta = { + meta = with lib; { homepage = "http://www.info-zip.org"; description = "Extraction utility for archives compressed in .zip format"; - license = lib.licenses.info-zip; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ RossComputerGuy ]; + license = licenses.info-zip; + platforms = platforms.all; + maintainers = with maintainers; [ RossComputerGuy ]; mainProgram = "unzip"; }; } diff --git a/pkgs/by-name/up/upgrade-assistant/package.nix b/pkgs/by-name/up/upgrade-assistant/package.nix index 06e361d7426767..d8fd4542b9e2ae 100644 --- a/pkgs/by-name/up/upgrade-assistant/package.nix +++ b/pkgs/by-name/up/upgrade-assistant/package.nix @@ -5,12 +5,12 @@ buildDotnetGlobalTool { nugetHash = "sha256-N0xEmPQ88jfirGPLJykeAJQYGwELFzKwUWdFxIgiwhY="; - meta = { + meta = with lib; { homepage = "https://github.com/dotnet/upgrade-assistant"; description = "Tool to assist developers in upgrading .NET Framework applications to .NET 6 and beyond"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ khaneliman ]; + license = licenses.mit; + maintainers = with maintainers; [ khaneliman ]; mainProgram = "ugprade-assistant"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/up/upscaler/package.nix b/pkgs/by-name/up/upscaler/package.nix index 8fc336d9b205cf..3346284a79d04d 100644 --- a/pkgs/by-name/up/upscaler/package.nix +++ b/pkgs/by-name/up/upscaler/package.nix @@ -77,16 +77,16 @@ python3Packages.buildPythonApplication rec { makeWrapperArgs = [ "\${gappsWrapperArgs[@]}" ]; - meta = { + meta = with lib; { description = "Upscale and enhance images"; homepage = "https://tesk.page/upscaler"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + maintainers = with maintainers; [ grimmauld getchoo aleksana ]; mainProgram = "upscaler"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/up/upsun/package.nix b/pkgs/by-name/up/upsun/package.nix index 7b177fa84b5956..06334cff3eaf8d 100644 --- a/pkgs/by-name/up/upsun/package.nix +++ b/pkgs/by-name/up/upsun/package.nix @@ -59,18 +59,18 @@ stdenvNoCC.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { description = "Unified tool for managing your Upsun services from the command line"; homepage = "https://github.com/platformsh/cli"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "upsun"; - maintainers = with lib.maintainers; [ spk ]; + maintainers = with maintainers; [ spk ]; platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/uq/uqm/package.nix b/pkgs/by-name/uq/uqm/package.nix index 03ac250257f759..958472a36ef717 100644 --- a/pkgs/by-name/uq/uqm/package.nix +++ b/pkgs/by-name/uq/uqm/package.nix @@ -130,7 +130,7 @@ stdenv.mkDerivation rec { sed -i $out/bin/uqm -e "s%/usr/local/games/%$out%g" ''; - meta = { + meta = with lib; { description = "Remake of Star Control II"; mainProgram = "uqm"; longDescription = '' @@ -142,11 +142,11 @@ stdenv.mkDerivation rec { spin-offs, thereby making zillions more people happy! ''; homepage = "https://sc2.sourceforge.net/"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + maintainers = with maintainers; [ jcumming aszlig ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/ur/urban-cli/package.nix b/pkgs/by-name/ur/urban-cli/package.nix index fb05c8e7686e3b..9d70183e281119 100644 --- a/pkgs/by-name/ur/urban-cli/package.nix +++ b/pkgs/by-name/ur/urban-cli/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = { + meta = with lib; { description = "Blazingly fast command line interface for Urban Dictionary"; homepage = "https://github.com/tfkhdyt/urban-cli"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ tfkhdyt ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ tfkhdyt ]; mainProgram = "urban-cli"; }; } diff --git a/pkgs/by-name/ur/urbanterror/package.nix b/pkgs/by-name/ur/urbanterror/package.nix index fc54bcfc090181..98f9a796243c9a 100644 --- a/pkgs/by-name/ur/urbanterror/package.nix +++ b/pkgs/by-name/ur/urbanterror/package.nix @@ -103,10 +103,10 @@ stdenv.mkDerivation { }) ]; - meta = { + meta = with lib; { description = "Multiplayer tactical FPS on top of Quake 3 engine"; homepage = "https://www.urbanterror.info"; - license = lib.licenses.unfreeRedistributable; + license = licenses.unfreeRedistributable; longDescription = '' Urban Terror is a free multiplayer first person shooter developed by FrozenSand, that (thanks to the ioquake3-code) does not require @@ -115,10 +115,10 @@ stdenv.mkDerivation { realism". This results in a very unique, enjoyable and addictive game. ''; mainProgram = "urbanterror"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ astsmtl drupol ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/us/usbguard-notifier/package.nix b/pkgs/by-name/us/usbguard-notifier/package.nix index d9507d159d9aa0..faa8edcc99c932 100644 --- a/pkgs/by-name/us/usbguard-notifier/package.nix +++ b/pkgs/by-name/us/usbguard-notifier/package.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { 'systemd_unit_dir="$out/lib/systemd/user"' ''; - meta = { + meta = with lib; { description = "Notifications for detecting usbguard policy and device presence changes"; homepage = "https://github.com/Cropi/usbguard-notifier"; - maintainers = with lib.maintainers; [ fpletz ]; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Plus; + maintainers = with maintainers; [ fpletz ]; + platforms = platforms.linux; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/us/usbutils/package.nix b/pkgs/by-name/us/usbutils/package.nix index 3ffd5fe88a6608..a3590174fbc0f8 100644 --- a/pkgs/by-name/us/usbutils/package.nix +++ b/pkgs/by-name/us/usbutils/package.nix @@ -50,15 +50,15 @@ stdenv.mkDerivation rec { install -Dm555 usbreset -t $out/bin ''; - meta = { + meta = with lib; { homepage = "http://www.linux-usb.org/"; description = "Tools for working with USB devices, such as lsusb"; - maintainers = with lib.maintainers; [ cafkafk ]; - license = with lib.licenses; [ + maintainers = with maintainers; [ cafkafk ]; + license = with licenses; [ gpl2Only # manpages, usbreset gpl2Plus # most of the code ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "lsusb"; }; } diff --git a/pkgs/by-name/us/usermount/package.nix b/pkgs/by-name/us/usermount/package.nix index 3c847800003712..ebb26d8e18cd9b 100644 --- a/pkgs/by-name/us/usermount/package.nix +++ b/pkgs/by-name/us/usermount/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation { mv usermount $out/bin/ ''; - meta = { + meta = with lib; { homepage = "https://github.com/tom5760/usermount"; description = "Simple tool to automatically mount removable drives using UDisks2 and D-Bus"; mainProgram = "usermount"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; + license = licenses.mit; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/us/ustr/package.nix b/pkgs/by-name/us/ustr/package.nix index 776f82103cb118..d664f2152a75ad 100644 --- a/pkgs/by-name/us/ustr/package.nix +++ b/pkgs/by-name/us/ustr/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation (finalAttrs: { find $out/lib -name \*debug\* -delete ''; - meta = { + meta = with lib; { homepage = "http://www.and.org/ustr/"; description = "Micro String API for C language"; mainProgram = "ustr-import"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.linux; + license = licenses.bsd2; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ut/utpm/package.nix b/pkgs/by-name/ut/utpm/package.nix index b474203e5435d0..2a8e9f3ec7ac81 100644 --- a/pkgs/by-name/ut/utpm/package.nix +++ b/pkgs/by-name/ut/utpm/package.nix @@ -30,7 +30,7 @@ rustPlatform.buildRustPackage rec { doCheck = false; # no tests - meta = { + meta = with lib; { description = "Package manager for typst"; longDescription = '' UTPM is a package manager for local and remote packages. Create quickly @@ -38,8 +38,8 @@ rustPlatform.buildRustPackage rec { to Typst! ''; homepage = "https://github.com/Thumuss/utpm"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "utpm"; - maintainers = with lib.maintainers; [ louis-thevenet ]; + maintainers = with maintainers; [ louis-thevenet ]; }; } diff --git a/pkgs/by-name/uu/uudeview/package.nix b/pkgs/by-name/uu/uudeview/package.nix index 511ccd0efd1be8..d3478db844742c 100644 --- a/pkgs/by-name/uu/uudeview/package.nix +++ b/pkgs/by-name/uu/uudeview/package.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { substituteInPlace tcl/xdeview --replace "exec uuwish" "exec $out/bin/uuwish" ''; - meta = { + meta = with lib; { description = "Nice and Friendly Decoder"; homepage = "http://www.fpx.de/fp/Software/UUDeview/"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ woffs ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ woffs ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/uu/uutils-coreutils/package.nix b/pkgs/by-name/uu/uutils-coreutils/package.nix index bc86e816607737..3b186433cc109c 100644 --- a/pkgs/by-name/uu/uutils-coreutils/package.nix +++ b/pkgs/by-name/uu/uutils-coreutils/package.nix @@ -62,15 +62,15 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Cross-platform Rust rewrite of the GNU coreutils"; longDescription = '' uutils is an attempt at writing universal (as in cross-platform) CLI utils in Rust. This repo is to aggregate the GNU coreutils rewrites. ''; homepage = "https://github.com/uutils/coreutils"; - maintainers = with lib.maintainers; [ siraben ]; - license = lib.licenses.mit; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ siraben ]; + license = licenses.mit; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/uw/uwsgi/package.nix b/pkgs/by-name/uw/uwsgi/package.nix index 2bd995ad5a4aea..d441f02a99d8fa 100644 --- a/pkgs/by-name/uw/uwsgi/package.nix +++ b/pkgs/by-name/uw/uwsgi/package.nix @@ -186,16 +186,16 @@ stdenv.mkDerivation (finalAttrs: { wrapProgram $out/bin/uwsgi --set PHP_INI_SCAN_DIR ${php-embed}/lib ''; - meta = { + meta = with lib; { description = "Fast, self-healing and developer/sysadmin-friendly application container server coded in pure C"; homepage = "https://uwsgi-docs.readthedocs.org/en/latest/"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + maintainers = with maintainers; [ abbradar schneefux globin ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "uwsgi"; }; }) diff --git a/pkgs/by-name/v2/v2ray/package.nix b/pkgs/by-name/v2/v2ray/package.nix index 6d2ddf71be9c81..0fec7f11db496b 100644 --- a/pkgs/by-name/v2/v2ray/package.nix +++ b/pkgs/by-name/v2/v2ray/package.nix @@ -65,11 +65,11 @@ buildGoModule rec { tests.simple-vmess-proxy-test = nixosTests.v2ray; }; - meta = { + meta = with lib; { homepage = "https://www.v2fly.org/en_US/"; description = "Platform for building proxies to bypass network restrictions"; mainProgram = "v2ray"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ servalcatty ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ servalcatty ]; }; } diff --git a/pkgs/by-name/v2/v2raya/package.nix b/pkgs/by-name/v2/v2raya/package.nix index 2d54d427122595..0b46b0b3ceb6a5 100644 --- a/pkgs/by-name/v2/v2raya/package.nix +++ b/pkgs/by-name/v2/v2raya/package.nix @@ -87,12 +87,12 @@ buildGoModule { --prefix XDG_DATA_DIRS ":" ${assetsDir}/share ''; - meta = { + meta = with lib; { description = "Linux web GUI client of Project V which supports V2Ray, Xray, SS, SSR, Trojan and Pingtunnel"; homepage = "https://github.com/v2rayA/v2rayA"; mainProgram = "v2rayA"; - license = lib.licenses.agpl3Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ChaosAttractor ]; + license = licenses.agpl3Only; + platforms = platforms.linux; + maintainers = with maintainers; [ ChaosAttractor ]; }; } diff --git a/pkgs/by-name/v2/v2rayn/package.nix b/pkgs/by-name/v2/v2rayn/package.nix index e0a13d03aeddc8..9318492959ea2a 100644 --- a/pkgs/by-name/v2/v2rayn/package.nix +++ b/pkgs/by-name/v2/v2rayn/package.nix @@ -104,12 +104,12 @@ buildDotnetModule rec { magick "v2rayN/v2rayN.Desktop/Assets/v2rayN.ico[11]" $out/share/pixmaps/v2rayn.png ''; - meta = { + meta = with lib; { description = "GUI client for Windows and Linux, support Xray core and sing-box-core and others"; homepage = "https://github.com/2dust/v2rayN"; mainProgram = "v2rayN"; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ aucub ]; + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ aucub ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/va/validator-nu/package.nix b/pkgs/by-name/va/validator-nu/package.nix index 45450844e09d18..6b78fc3fa94605 100644 --- a/pkgs/by-name/va/validator-nu/package.nix +++ b/pkgs/by-name/va/validator-nu/package.nix @@ -83,17 +83,17 @@ stdenvNoCC.mkDerivation (finalAttrs: { package = finalAttrs.finalPackage; }; - meta = { + meta = with lib; { description = "Helps you catch problems in your HTML/CSS/SVG"; homepage = "https://validator.github.io/validator/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ andersk ivan ]; mainProgram = "vnu"; - platforms = lib.platforms.all; - sourceProvenance = with lib.sourceTypes; [ + platforms = platforms.all; + sourceProvenance = with sourceTypes; [ binaryBytecode fromSource ]; diff --git a/pkgs/by-name/va/vanillatd/passthru-packages.nix b/pkgs/by-name/va/vanillatd/passthru-packages.nix index 145871ef806e8b..c54d47f1e7ee91 100644 --- a/pkgs/by-name/va/vanillatd/passthru-packages.nix +++ b/pkgs/by-name/va/vanillatd/passthru-packages.nix @@ -13,11 +13,11 @@ builtins.mapAttrs inherit name buildPhase; phases = [ "buildPhase" ]; nativeBuildInputs = [ unar ]; - meta = { - sourceProvenance = with lib.sourceTypes; [ + meta = with lib; { + sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = with lib.licenses; [ + license = with licenses; [ unfree ]; }; diff --git a/pkgs/by-name/va/vapoursynth-bestsource/package.nix b/pkgs/by-name/va/vapoursynth-bestsource/package.nix index 843baf11eaa225..2487c230ddd072 100644 --- a/pkgs/by-name/va/vapoursynth-bestsource/package.nix +++ b/pkgs/by-name/va/vapoursynth-bestsource/package.nix @@ -46,15 +46,15 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail "vapoursynth_dep.get_variable(pkgconfig: 'libdir')" "get_option('libdir')" ''; - meta = { + meta = with lib; { description = "Wrapper library around FFmpeg that ensures sample and frame accurate access to audio and video"; homepage = "https://github.com/vapoursynth/bestsource"; - license = with lib.licenses; [ + license = with licenses; [ mit wtfpl gpl2Plus ]; - maintainers = with lib.maintainers; [ snaki ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ snaki ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/va/vapoursynth-eedi3/package.nix b/pkgs/by-name/va/vapoursynth-eedi3/package.nix index 3a5f8b5de6a48a..8647acf3af8d24 100644 --- a/pkgs/by-name/va/vapoursynth-eedi3/package.nix +++ b/pkgs/by-name/va/vapoursynth-eedi3/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation { mesonFlags = [ (lib.mesonBool "opencl" openclSupport) ]; - meta = { + meta = with lib; { description = "Filter for VapourSynth"; homepage = "https://github.com/HomeOfVapourSynthEvolution/VapourSynth-EEDI3"; - license = with lib.licenses; [ gpl2Plus ]; - maintainers = with lib.maintainers; [ snaki ]; - platforms = lib.platforms.x86_64; + license = with licenses; [ gpl2Plus ]; + maintainers = with maintainers; [ snaki ]; + platforms = platforms.x86_64; }; } diff --git a/pkgs/by-name/va/vapoursynth-nnedi3/package.nix b/pkgs/by-name/va/vapoursynth-nnedi3/package.nix index 3bbe4056766c0e..b81139e2ac30f6 100644 --- a/pkgs/by-name/va/vapoursynth-nnedi3/package.nix +++ b/pkgs/by-name/va/vapoursynth-nnedi3/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation (finalAttrs: { rm -f $out/lib/vapoursynth/*.la ''; - meta = { + meta = with lib; { description = "Filter for VapourSynth"; homepage = "https://github.com/dubhater/vapoursynth-nnedi3"; - license = with lib.licenses; [ gpl2Plus ]; - maintainers = with lib.maintainers; [ snaki ]; - platforms = with lib.platforms; x86_64 ++ aarch64; + license = with licenses; [ gpl2Plus ]; + maintainers = with maintainers; [ snaki ]; + platforms = with platforms; x86_64 ++ aarch64; }; }) diff --git a/pkgs/by-name/va/vapoursynth-nnedi3cl/package.nix b/pkgs/by-name/va/vapoursynth-nnedi3cl/package.nix index e64ae74b9d7072..8cd546f3b10982 100644 --- a/pkgs/by-name/va/vapoursynth-nnedi3cl/package.nix +++ b/pkgs/by-name/va/vapoursynth-nnedi3cl/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail "vapoursynth_dep.get_pkgconfig_variable('libdir')" "get_option('libdir')" ''; - meta = { + meta = with lib; { description = "Filter for VapourSynth"; homepage = "https://github.com/HomeOfVapourSynthEvolution/VapourSynth-NNEDI3CL"; - license = with lib.licenses; [ gpl2Plus ]; - maintainers = with lib.maintainers; [ snaki ]; - platforms = lib.platforms.x86_64; + license = with licenses; [ gpl2Plus ]; + maintainers = with maintainers; [ snaki ]; + platforms = platforms.x86_64; }; }) diff --git a/pkgs/by-name/va/vatprism/package.nix b/pkgs/by-name/va/vatprism/package.nix index ab750965c4c260..2ede589f2247f6 100644 --- a/pkgs/by-name/va/vatprism/package.nix +++ b/pkgs/by-name/va/vatprism/package.nix @@ -85,7 +85,7 @@ maven.buildMavenPackage rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "VATSIM map and data explorer"; longDescription = '' VATprism is a VATSIM Map and VATSIM Data Explorer, VATSIM being the @@ -95,8 +95,8 @@ maven.buildMavenPackage rec { ''; homepage = "https://vatprism.org/"; mainProgram = "vatprism"; - license = lib.licenses.agpl3Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ thepuzzlemaker ]; + license = licenses.agpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ thepuzzlemaker ]; }; } diff --git a/pkgs/by-name/va/vault-tasks/package.nix b/pkgs/by-name/va/vault-tasks/package.nix index c7f2e53309eef4..931d763436896d 100644 --- a/pkgs/by-name/va/vault-tasks/package.nix +++ b/pkgs/by-name/va/vault-tasks/package.nix @@ -22,15 +22,15 @@ rustPlatform.buildRustPackage { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "TUI Markdown Task Manager"; longDescription = '' vault-tasks is a TUI Markdown task manager. It will parse any Markdown file or vault and display the tasks it contains. ''; homepage = "https://github.com/louis-thevenet/vault-tasks"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "vault-tasks"; - maintainers = with lib.maintainers; [ louis-thevenet ]; + maintainers = with maintainers; [ louis-thevenet ]; }; } diff --git a/pkgs/by-name/vb/vbindiff/package.nix b/pkgs/by-name/vb/vbindiff/package.nix index 57aa940b41eb67..8ca2076bacac20 100644 --- a/pkgs/by-name/vb/vbindiff/package.nix +++ b/pkgs/by-name/vb/vbindiff/package.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { sha256 = "1f1kj4jki08bnrwpzi663mjfkrx4wnfpzdfwd2qgijlkx5ysjkgh"; }; - meta = { + meta = with lib; { description = "Terminal visual binary diff viewer"; homepage = "https://www.cjmweb.net/vbindiff/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + platforms = platforms.unix; mainProgram = "vbindiff"; }; } diff --git a/pkgs/by-name/vc/vcpkg/package.nix b/pkgs/by-name/vc/vcpkg/package.nix index 14bc32e5cc2c08..2f27a9de523d2c 100644 --- a/pkgs/by-name/vc/vcpkg/package.nix +++ b/pkgs/by-name/vc/vcpkg/package.nix @@ -67,16 +67,16 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "C++ Library Manager for Windows, Linux, and macOS"; mainProgram = "vcpkg"; homepage = "https://vcpkg.io/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ guekka gracicot h7x4 ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ve/vectoroids/package.nix b/pkgs/by-name/ve/vectoroids/package.nix index 9d3bc9f943ff29..4cb14bddd8ec37 100644 --- a/pkgs/by-name/ve/vectoroids/package.nix +++ b/pkgs/by-name/ve/vectoroids/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { mkdir -p $out/bin ''; - meta = { + meta = with lib; { homepage = "http://www.newbreedsoftware.com/vectoroids/"; description = "Clone of the classic arcade game Asteroids by Atari"; mainProgram = "vectoroids"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ve/venera/package.nix b/pkgs/by-name/ve/venera/package.nix index 4bed65e0223809..df3eee209ed549 100644 --- a/pkgs/by-name/ve/venera/package.nix +++ b/pkgs/by-name/ve/venera/package.nix @@ -67,12 +67,12 @@ flutter327.buildFlutterApplication rec { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { description = "Comic reader that support reading local and network comics"; homepage = "https://github.com/venera-app/venera"; mainProgram = "venera"; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ aucub ]; - platforms = lib.platforms.linux; + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ aucub ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ve/vep/package.nix b/pkgs/by-name/ve/vep/package.nix index 576b4c9b35fbf1..36b2e8db07a752 100644 --- a/pkgs/by-name/ve/vep/package.nix +++ b/pkgs/by-name/ve/vep/package.nix @@ -123,12 +123,12 @@ perlPackages.buildPerlModule rec { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://www.ensembl.org/info/docs/tools/vep/index.html"; description = "Annotate genetics variants based on genes, transcripts, and protein sequence, as well as regulatory regions"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "vep"; - maintainers = with lib.maintainers; [ apraga ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ apraga ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ve/veracrypt/package.nix b/pkgs/by-name/ve/veracrypt/package.nix index 4f2c08feb3580a..eb39f4f2a38527 100644 --- a/pkgs/by-name/ve/veracrypt/package.nix +++ b/pkgs/by-name/ve/veracrypt/package.nix @@ -64,17 +64,17 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail "Icon=veracrypt" "Icon=veracrypt.xpm" ''; - meta = { + meta = with lib; { description = "Free Open-Source filesystem on-the-fly encryption"; homepage = "https://www.veracrypt.fr/"; - license = with lib.licenses; [ + license = with licenses; [ asl20 # and unfree # TrueCrypt License version 3.0 ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ dsferruzza ryand56 ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ve/verapdf/package.nix b/pkgs/by-name/ve/verapdf/package.nix index 77e3185e5818cd..fc9a6613d9e52e 100644 --- a/pkgs/by-name/ve/verapdf/package.nix +++ b/pkgs/by-name/ve/verapdf/package.nix @@ -63,18 +63,18 @@ maven.buildMavenPackage rec { }) ]; - meta = { + meta = with lib; { description = "Command line and GUI industry supported PDF/A and PDF/UA Validation"; homepage = "https://github.com/veraPDF/veraPDF-apps"; license = [ - lib.licenses.gpl3Plus + licenses.gpl3Plus # or - lib.licenses.mpl20 + licenses.mpl20 ]; mainProgram = "verapdf-gui"; maintainers = [ - lib.maintainers.mohe2015 - lib.maintainers.kilianar + maintainers.mohe2015 + maintainers.kilianar ]; }; } diff --git a/pkgs/by-name/ve/vercel-pkg/package.nix b/pkgs/by-name/ve/vercel-pkg/package.nix index ab8f4fbb0498a9..eb653b835f69ee 100644 --- a/pkgs/by-name/ve/vercel-pkg/package.nix +++ b/pkgs/by-name/ve/vercel-pkg/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Package your Node.js project into an executable"; homepage = "https://github.com/vercel/pkg"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "pkg"; - maintainers = with lib.maintainers; [ cmcdragonkai ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ cmcdragonkai ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ve/verifpal/package.nix b/pkgs/by-name/ve/verifpal/package.nix index 95fa4763a0f9cb..23ee3b3461663a 100644 --- a/pkgs/by-name/ve/verifpal/package.nix +++ b/pkgs/by-name/ve/verifpal/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { go generate verifpal.com/cmd/verifpal ''; - meta = { + meta = with lib; { homepage = "https://verifpal.com/"; description = "Cryptographic protocol analysis for students and engineers"; mainProgram = "verifpal"; - maintainers = with lib.maintainers; [ zimbatm ]; - license = with lib.licenses; [ gpl3 ]; + maintainers = with maintainers; [ zimbatm ]; + license = with licenses; [ gpl3 ]; }; } diff --git a/pkgs/by-name/ve/veryfasttree/package.nix b/pkgs/by-name/ve/veryfasttree/package.nix index 3f493f01dcbb19..9c46cbd8df1dfa 100644 --- a/pkgs/by-name/ve/veryfasttree/package.nix +++ b/pkgs/by-name/ve/veryfasttree/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Speeding up the estimation of phylogenetic trees for large alignments through parallelization and vectorization strategies"; mainProgram = "VeryFastTree"; homepage = "https://github.com/citiususc/veryfasttree"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ thyol ]; - platforms = lib.platforms.all; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ thyol ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/vg/vgm2x/package.nix b/pkgs/by-name/vg/vgm2x/package.nix index 3afea59c59ac87..c569bf5a31033a 100644 --- a/pkgs/by-name/vg/vgm2x/package.nix +++ b/pkgs/by-name/vg/vgm2x/package.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = unstableGitUpdater { }; }; - meta = { + meta = with lib; { description = "VGM file extraction tools"; homepage = "https://github.com/vampirefrog/vgm2x"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "vgm2x"; - maintainers = with lib.maintainers; [ OPNA2608 ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ OPNA2608 ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/vg/vgmtrans/package.nix b/pkgs/by-name/vg/vgmtrans/package.nix index 33fb25677e7e0e..0041b5d10e4432 100644 --- a/pkgs/by-name/vg/vgmtrans/package.nix +++ b/pkgs/by-name/vg/vgmtrans/package.nix @@ -52,10 +52,10 @@ stdenv.mkDerivation (finalAttrs: { ln -s ${minizip-ng.src} lib/minizip-ng ''; - meta = { + meta = with lib; { description = "Tool to convert proprietary, sequenced videogame music to industry-standard formats"; homepage = "https://github.com/vgmtrans/vgmtrans"; - license = with lib.licenses; [ + license = with licenses; [ zlib libpng bsd3 # oki_adpcm_state @@ -68,7 +68,7 @@ stdenv.mkDerivation (finalAttrs: { "x86_64-windows" "aarch64-windows" ]; - maintainers = with lib.maintainers; [ pluiedev ]; + maintainers = with maintainers; [ pluiedev ]; mainProgram = "vgmtrans"; }; }) diff --git a/pkgs/by-name/vh/vhdl-ls/package.nix b/pkgs/by-name/vh/vhdl-ls/package.nix index 84c83a51c843f0..03da125f5a3add 100644 --- a/pkgs/by-name/vh/vhdl-ls/package.nix +++ b/pkgs/by-name/vh/vhdl-ls/package.nix @@ -27,11 +27,11 @@ rustPlatform.buildRustPackage rec { cp -r vhdl_libraries $out/lib/rust_hdl ''; - meta = { + meta = with lib; { description = "Fast VHDL language server"; homepage = "https://github.com/VHDL-LS/rust_hdl"; - license = lib.licenses.mpl20; + license = licenses.mpl20; mainProgram = "vhdl_ls"; - maintainers = with lib.maintainers; [ doronbehar ]; + maintainers = with maintainers; [ doronbehar ]; }; } diff --git a/pkgs/by-name/vi/vial/package.nix b/pkgs/by-name/vi/vial/package.nix index 327da518da95d3..68bcc999d6caff 100644 --- a/pkgs/by-name/vi/vial/package.nix +++ b/pkgs/by-name/vi/vial/package.nix @@ -25,13 +25,13 @@ appimageTools.wrapType2 { echo 'KERNEL=="hidraw*", SUBSYSTEM=="hidraw", MODE="0666", TAG+="uaccess", TAG+="udev-acl"' > $out/etc/udev/rules.d/92-viia.rules ''; - meta = { + meta = with lib; { description = "Open-source GUI and QMK fork for configuring your keyboard in real time"; homepage = "https://get.vial.today"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "Vial"; - maintainers = with lib.maintainers; [ kranzes ]; + maintainers = with maintainers; [ kranzes ]; platforms = [ "x86_64-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/vi/viber/package.nix b/pkgs/by-name/vi/viber/package.nix index dc12285fcf3ae4..002d03b0175951 100644 --- a/pkgs/by-name/vi/viber/package.nix +++ b/pkgs/by-name/vi/viber/package.nix @@ -148,13 +148,13 @@ stdenv.mkDerivation { dontStrip = true; dontPatchELF = true; - meta = { + meta = with lib; { homepage = "https://www.viber.com"; description = "Instant messaging and Voice over IP (VoIP) app"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ jagajaga ]; + maintainers = with maintainers; [ jagajaga ]; }; } diff --git a/pkgs/by-name/vi/vice/package.nix b/pkgs/by-name/vi/vice/package.nix index 349bc4cb798b3e..fc43658ff3cbf9 100644 --- a/pkgs/by-name/vi/vice/package.nix +++ b/pkgs/by-name/vi/vice/package.nix @@ -79,11 +79,11 @@ stdenv.mkDerivation rec { cp src/arch/gtk3/data/unix/vice-org-*.desktop $out/share/applications ''; - meta = { + meta = with lib; { description = "Emulators for a variety of 8-bit Commodore computers"; homepage = "https://vice-emu.sourceforge.io/"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.sander ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = [ maintainers.sander ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/vi/vidcutter/package.nix b/pkgs/by-name/vi/vidcutter/package.nix index f35658fb5e2d8e..476d559a9b7dcd 100644 --- a/pkgs/by-name/vi/vidcutter/package.nix +++ b/pkgs/by-name/vi/vidcutter/package.nix @@ -51,7 +51,7 @@ python3Packages.buildPythonApplication { }" ]; - meta = { + meta = with lib; { description = "Modern yet simple multi-platform video cutter and joiner"; longDescription = '' A modern, simple to use, constantly evolving and hella fast MEDIA CUTTER + JOINER @@ -60,8 +60,8 @@ python3Packages.buildPythonApplication { ''; homepage = "https://vidcutter.ozmartians.com/"; changelog = "https://github.com/ozmartian/vidcutter/blob/master/CHANGELOG"; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.zi3m5f ]; + license = licenses.gpl3Plus; + maintainers = [ maintainers.zi3m5f ]; mainProgram = "vidcutter"; }; } diff --git a/pkgs/by-name/vi/viddy/package.nix b/pkgs/by-name/vi/viddy/package.nix index d1f6e6abcb281c..c017b7456f4563 100644 --- a/pkgs/by-name/vi/viddy/package.nix +++ b/pkgs/by-name/vi/viddy/package.nix @@ -25,12 +25,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript.command = [ ./update.sh ]; - meta = { + meta = with lib; { description = "Modern watch command, time machine and pager etc."; changelog = "https://github.com/sachaos/viddy/releases"; homepage = "https://github.com/sachaos/viddy"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ j-hui phanirithvij ]; diff --git a/pkgs/by-name/vi/video-downloader/package.nix b/pkgs/by-name/vi/video-downloader/package.nix index 75b56041f32b3c..0d8335ec0698ff 100644 --- a/pkgs/by-name/vi/video-downloader/package.nix +++ b/pkgs/by-name/vi/video-downloader/package.nix @@ -61,12 +61,12 @@ python3Packages.buildPythonApplication rec { ) ''; - meta = { + meta = with lib; { homepage = "https://github.com/Unrud/video-downloader"; changelog = "https://github.com/Unrud/video-downloader/releases"; description = "GUI application based on yt-dlp"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ fliegendewurst ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ fliegendewurst ]; mainProgram = "video-downloader"; }; } diff --git a/pkgs/by-name/vi/video-trimmer/package.nix b/pkgs/by-name/vi/video-trimmer/package.nix index 766d59a4f72cfe..82855062693997 100644 --- a/pkgs/by-name/vi/video-trimmer/package.nix +++ b/pkgs/by-name/vi/video-trimmer/package.nix @@ -74,17 +74,17 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { homepage = "https://gitlab.gnome.org/YaLTeR/video-trimmer"; description = "Trim videos quickly"; maintainers = - with lib.maintainers; + with maintainers; [ doronbehar ] - ++ lib.teams.gnome-circle.members; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; + ++ teams.gnome-circle.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; mainProgram = "video-trimmer"; }; }) diff --git a/pkgs/by-name/vi/villain/package.nix b/pkgs/by-name/vi/villain/package.nix index 6bf8494bdc2f10..33a39c38d6654d 100644 --- a/pkgs/by-name/vi/villain/package.nix +++ b/pkgs/by-name/vi/villain/package.nix @@ -39,12 +39,12 @@ python3Packages.buildPythonApplication rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "High level stage 0/1 C2 framework that can handle multiple TCP socket & HoaxShell-based reverse shells"; homepage = "https://github.com/t3l3machus/Villain"; - license = lib.licenses.cc-by-nc-nd-40; + license = licenses.cc-by-nc-nd-40; mainProgram = "villain"; - maintainers = with lib.maintainers; [ d3vil0p3r ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ d3vil0p3r ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/vi/vimb-unwrapped/package.nix b/pkgs/by-name/vi/vimb-unwrapped/package.nix index 21436d224e98ca..9f8c6f219a18a2 100644 --- a/pkgs/by-name/vi/vimb-unwrapped/package.nix +++ b/pkgs/by-name/vi/vimb-unwrapped/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = { + meta = with lib; { description = "Vim-like browser"; mainProgram = "vimb"; longDescription = '' @@ -50,8 +50,8 @@ stdenv.mkDerivation rec { keyboard driven and does not detract you from your daily work. ''; homepage = "https://fanglingsu.github.io/vimb/"; - license = lib.licenses.gpl3; + license = licenses.gpl3; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/vi/violet/package.nix b/pkgs/by-name/vi/violet/package.nix index a50d1ad9d68c38..4771a4e6cfc006 100644 --- a/pkgs/by-name/vi/violet/package.nix +++ b/pkgs/by-name/vi/violet/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation (finalAttrs: { tests = testers.testVersion { package = finalAttrs.finalPackage; }; }; - meta = { + meta = with lib; { description = "Lightweight STUN/TURN server"; homepage = "https://github.com/paullouisageneau/violet"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; mainProgram = "violet"; - maintainers = with lib.maintainers; [ oluceps ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ oluceps ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/vi/virt-v2v/package.nix b/pkgs/by-name/vi/virt-v2v/package.nix index 4d6ce4e63f54e0..dbb5b430f093d8 100644 --- a/pkgs/by-name/vi/virt-v2v/package.nix +++ b/pkgs/by-name/vi/virt-v2v/package.nix @@ -95,12 +95,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; - meta = { + meta = with lib; { homepage = "https://github.com/libguestfs/virt-v2v"; description = "Convert guests from foreign hypervisors to run on KVM"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ lukts30 ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + maintainers = with maintainers; [ lukts30 ]; + platforms = platforms.linux; mainProgram = "virt-v2v"; }; }) diff --git a/pkgs/by-name/vi/virter/package.nix b/pkgs/by-name/vi/virter/package.nix index b645ec2746913d..a6cb8dae73dc74 100644 --- a/pkgs/by-name/vi/virter/package.nix +++ b/pkgs/by-name/vi/virter/package.nix @@ -28,11 +28,11 @@ buildGoModule rec { # requires network access doCheck = false; - meta = { + meta = with lib; { description = "Command line tool for simple creation and cloning of virtual machines based on libvirt"; homepage = "https://github.com/LINBIT/virter"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ dit7ya ]; + license = licenses.asl20; + maintainers = with maintainers; [ dit7ya ]; mainProgram = "virter"; }; } diff --git a/pkgs/by-name/vk/vkdevicechooser/package.nix b/pkgs/by-name/vk/vkdevicechooser/package.nix index 2af58ec8842403..ad2334377262e7 100644 --- a/pkgs/by-name/vk/vkdevicechooser/package.nix +++ b/pkgs/by-name/vk/vkdevicechooser/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with lib; { description = "Vulkan layer to force a specific device to be used"; homepage = "https://github.com/aejsmith/vkdevicechooser"; - platforms = lib.platforms.unix; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.sigmike ]; + platforms = platforms.unix; + license = licenses.mit; + maintainers = [ maintainers.sigmike ]; }; } diff --git a/pkgs/by-name/vl/vlc/package.nix b/pkgs/by-name/vl/vlc/package.nix index 4b9269bf4b90b8..1d9c44ad2e0219 100644 --- a/pkgs/by-name/vl/vlc/package.nix +++ b/pkgs/by-name/vl/vlc/package.nix @@ -328,12 +328,12 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = { + meta = with lib; { description = "Cross-platform media player and streaming server"; homepage = "https://www.videolan.org/vlc/"; - license = lib.licenses.lgpl21Plus; - maintainers = with lib.maintainers; [ alois31 ]; - platforms = lib.platforms.linux; + license = licenses.lgpl21Plus; + maintainers = with maintainers; [ alois31 ]; + platforms = platforms.linux; mainProgram = "vlc"; }; }) diff --git a/pkgs/by-name/vm/vmctl/package.nix b/pkgs/by-name/vm/vmctl/package.nix index 910ecd5f9d6d66..04dfeaf5b3190c 100644 --- a/pkgs/by-name/vm/vmctl/package.nix +++ b/pkgs/by-name/vm/vmctl/package.nix @@ -57,11 +57,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Command line tool focused on NVMe testing in QEMU"; homepage = "https://github.com/SamsungDS/vmctl"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ panky ]; + license = licenses.gpl3; + maintainers = with maintainers; [ panky ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/vm/vmime/package.nix b/pkgs/by-name/vm/vmime/package.nix index b67aed419d5c20..980cea4a3a3704 100644 --- a/pkgs/by-name/vm/vmime/package.nix +++ b/pkgs/by-name/vm/vmime/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { "-DVMIME_SENDMAIL_PATH=${sendmailPath}" ]; - meta = { + meta = with lib; { homepage = "https://www.vmime.org/"; description = "Free mail library for C++"; - license = lib.licenses.gpl3; + license = licenses.gpl3; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/vm/vms-empire/package.nix b/pkgs/by-name/vm/vms-empire/package.nix index d0d8bc5e47e76e..68be333cc6f9e1 100644 --- a/pkgs/by-name/vm/vms-empire/package.nix +++ b/pkgs/by-name/vm/vms-empire/package.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "http://catb.org/~esr/vms-empire/"; description = "Ancestor of all expand/explore/exploit/exterminate games"; longDescription = '' @@ -64,9 +64,9 @@ stdenv.mkDerivation (finalAttrs: { expand/explore/exploit/exterminate games, including Civilization and Master of Orion. ''; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; mainProgram = "vms-empire"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/vm/vmtouch/package.nix b/pkgs/by-name/vm/vmtouch/package.nix index a49750e59ffd2f..8aa380b0bf621a 100644 --- a/pkgs/by-name/vm/vmtouch/package.nix +++ b/pkgs/by-name/vm/vmtouch/package.nix @@ -20,13 +20,13 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { description = "Portable file system cache diagnostics and control"; longDescription = "vmtouch is a tool for learning about and controlling the file system cache of unix and unix-like systems."; homepage = "https://hoytech.com/vmtouch/"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.garrison ]; - platforms = lib.platforms.all; + license = licenses.bsd3; + maintainers = [ maintainers.garrison ]; + platforms = platforms.all; mainProgram = "vmtouch"; }; } diff --git a/pkgs/by-name/vn/vncrec/package.nix b/pkgs/by-name/vn/vncrec/package.nix index 8b20aeb546d91b..c0add0ac1a27a2 100644 --- a/pkgs/by-name/vn/vncrec/package.nix +++ b/pkgs/by-name/vn/vncrec/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation { "install.man" ]; - meta = { + meta = with lib; { description = "VNC recorder"; homepage = "http://ronja.twibright.com/utils/vncrec/"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Plus; + platforms = platforms.linux; + license = licenses.gpl2Plus; mainProgram = "vncrec"; }; } diff --git a/pkgs/by-name/vn/vndr/package.nix b/pkgs/by-name/vn/vndr/package.nix index 1633baf9f29127..fd9e31107be1de 100644 --- a/pkgs/by-name/vn/vndr/package.nix +++ b/pkgs/by-name/vn/vndr/package.nix @@ -24,14 +24,14 @@ buildGoModule { # Tests rely on the 'vndr' binary being in the PATH already. doCheck = false; - meta = { + meta = with lib; { description = "Stupid golang vendoring tool, inspired by docker vendor script"; mainProgram = "vndr"; homepage = "https://github.com/LK4D4/vndr"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ vdemeester rvolosatovs ]; - license = lib.licenses.asl20; + license = licenses.asl20; }; } diff --git a/pkgs/by-name/vo/vo-amrwbenc/package.nix b/pkgs/by-name/vo/vo-amrwbenc/package.nix index 4fcf5c2b1fe3fb..dac9b7bf1cfb1c 100644 --- a/pkgs/by-name/vo/vo-amrwbenc/package.nix +++ b/pkgs/by-name/vo/vo-amrwbenc/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = { + meta = with lib; { homepage = "https://sourceforge.net/projects/opencore-amr/"; description = "VisualOn Adaptive Multi Rate Wideband (AMR-WB) encoder"; - license = lib.licenses.asl20; + license = licenses.asl20; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/vo/vobsub2srt/package.nix b/pkgs/by-name/vo/vobsub2srt/package.nix index 3fdd398bd5fe9d..e4ccc542182fcc 100644 --- a/pkgs/by-name/vo/vobsub2srt/package.nix +++ b/pkgs/by-name/vo/vobsub2srt/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { buildInputs = [ libtiff ]; propagatedBuildInputs = [ tesseract3 ]; - meta = { + meta = with lib; { homepage = "https://github.com/ruediger/VobSub2SRT"; description = "Converts VobSub subtitles into SRT subtitles"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.ttuegel ]; + license = licenses.gpl3Plus; + platforms = platforms.unix; + maintainers = [ maintainers.ttuegel ]; mainProgram = "vobsub2srt"; }; } diff --git a/pkgs/by-name/vo/voicevox-engine/pyopenjtalk.nix b/pkgs/by-name/vo/voicevox-engine/pyopenjtalk.nix index 01ef7ec6ee8400..b818273915e3b7 100644 --- a/pkgs/by-name/vo/voicevox-engine/pyopenjtalk.nix +++ b/pkgs/by-name/vo/voicevox-engine/pyopenjtalk.nix @@ -66,10 +66,10 @@ buildPythonPackage { ln -s ${dic-src} $out/${python.sitePackages}/pyopenjtalk/${dic-dirname} ''; - meta = { + meta = with lib; { description = "VOICEVOX's fork of the pyopenjtalk text-to-speech library"; homepage = "https://github.com/VOICEVOX/pyopenjtalk"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tomasajt ]; + license = licenses.mit; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/by-name/vo/voidmap/package.nix b/pkgs/by-name/vo/voidmap/package.nix index f55a2ddf8811ef..73775a22191812 100644 --- a/pkgs/by-name/vo/voidmap/package.nix +++ b/pkgs/by-name/vo/voidmap/package.nix @@ -22,12 +22,12 @@ rustPlatform.buildRustPackage rec { "--skip=screen::qc_input_events_dont_crash_void" ]; - meta = { + meta = with lib; { description = "Terminal-based personal organizer"; homepage = "https://github.com/void-rs/void"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "void"; - maintainers = with lib.maintainers; [ poptart ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ poptart ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/vo/volk_2/package.nix b/pkgs/by-name/vo/volk_2/package.nix index 57b849fcc28b97..c0e2e2ce653386 100644 --- a/pkgs/by-name/vo/volk_2/package.nix +++ b/pkgs/by-name/vo/volk_2/package.nix @@ -58,10 +58,10 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { homepage = "http://libvolk.org/"; description = "Vector Optimized Library of Kernels (version 2.5.0 - for GR 3.8)"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ doronbehar ]; }; }) diff --git a/pkgs/by-name/vr/vrcadvert/package.nix b/pkgs/by-name/vr/vrcadvert/package.nix index 95b9ac8b99d6f8..48c6084f424af4 100644 --- a/pkgs/by-name/vr/vrcadvert/package.nix +++ b/pkgs/by-name/vr/vrcadvert/package.nix @@ -40,12 +40,12 @@ buildDotnetModule rec { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { description = "Advertise your OSC app through OSCQuery"; homepage = "https://github.com/galister/VrcAdvert"; - license = lib.licenses.unlicense; - maintainers = with lib.maintainers; [ Scrumplex ]; + license = licenses.unlicense; + maintainers = with maintainers; [ Scrumplex ]; mainProgram = "VrcAdvert"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/vs/vsce/package.nix b/pkgs/by-name/vs/vsce/package.nix index 1e490328cfe26f..7d38d08daa6920 100644 --- a/pkgs/by-name/vs/vsce/package.nix +++ b/pkgs/by-name/vs/vsce/package.nix @@ -49,11 +49,11 @@ buildNpmPackage rec { }; }; - meta = { + meta = with lib; { homepage = "https://github.com/microsoft/vscode-vsce"; description = "Visual Studio Code Extension Manager"; - maintainers = with lib.maintainers; [ aaronjheng ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ aaronjheng ]; + license = licenses.mit; mainProgram = "vsce"; }; } diff --git a/pkgs/by-name/vt/vtm/package.nix b/pkgs/by-name/vt/vtm/package.nix index e4d46372b5e862..3d050cf7f190ce 100644 --- a/pkgs/by-name/vt/vtm/package.nix +++ b/pkgs/by-name/vt/vtm/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation (finalAttrs: { cmake ]; - meta = { + meta = with lib; { description = "Terminal multiplexer with window manager and session sharing"; homepage = "https://vtm.netxs.online/"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "vtm"; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/vt/vtsls/package.nix b/pkgs/by-name/vt/vtsls/package.nix index 2ffe125b0378d3..b42408b7c77578 100644 --- a/pkgs/by-name/vt/vtsls/package.nix +++ b/pkgs/by-name/vt/vtsls/package.nix @@ -82,12 +82,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "LSP wrapper for typescript extension of vscode."; homepage = "https://github.com/yioneko/vtsls"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ kuglimon ]; + license = licenses.mit; + maintainers = with maintainers; [ kuglimon ]; mainProgram = "vtsls"; - platforms = lib.platforms.all; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/vu/vue/package.nix b/pkgs/by-name/vu/vue/package.nix index fc4b9bb4556469..a411b8b732b623 100644 --- a/pkgs/by-name/vu/vue/package.nix +++ b/pkgs/by-name/vu/vue/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { chmod a+x "$out/bin/vue" ''; - meta = { + meta = with lib; { description = "Visual Understanding Environment - mind mapping software"; - maintainers = with lib.maintainers; [ raskin ]; - platforms = with lib.platforms; linux; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.ecl20; + maintainers = with maintainers; [ raskin ]; + platforms = with platforms; linux; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.ecl20; mainProgram = "vue"; }; } diff --git a/pkgs/by-name/vu/vulkan-hdr-layer-kwin6/package.nix b/pkgs/by-name/vu/vulkan-hdr-layer-kwin6/package.nix index d698760dbf223a..608537522a6fd8 100644 --- a/pkgs/by-name/vu/vulkan-hdr-layer-kwin6/package.nix +++ b/pkgs/by-name/vu/vulkan-hdr-layer-kwin6/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { fetchSubmodules = true; }; - meta = { + meta = with lib; { description = "Vulkan Wayland HDR WSI Layer (Xaver Hugl's fork for KWin 6)"; homepage = "https://github.com/Zamundaaa/VK_hdr_layer"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ d4rk ]; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ d4rk ]; }; } diff --git a/pkgs/by-name/vv/vvenc/package.nix b/pkgs/by-name/vv/vvenc/package.nix index 51bcd961d412ef..9cd54f722e2ff0 100644 --- a/pkgs/by-name/vv/vvenc/package.nix +++ b/pkgs/by-name/vv/vvenc/package.nix @@ -46,13 +46,13 @@ stdenv.mkDerivation (finalAttrs: { tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = { + meta = with lib; { homepage = "https://github.com/fraunhoferhhi/vvenc"; description = "Fraunhofer Versatile Video Encoder"; - license = lib.licenses.bsd3Clear; + license = licenses.bsd3Clear; mainProgram = "vvencapp"; pkgConfigModules = [ "libvvenc" ]; - maintainers = with lib.maintainers; [ jopejoe1 ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ jopejoe1 ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/vx/vxl/package.nix b/pkgs/by-name/vx/vxl/package.nix index 66b394e582b594..c416e2f162c03f 100644 --- a/pkgs/by-name/vx/vxl/package.nix +++ b/pkgs/by-name/vx/vxl/package.nix @@ -41,13 +41,13 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { description = "C++ Libraries for Computer Vision Research and Implementation"; homepage = "https://vxl.sourceforge.net"; # license appears contradictory; see https://github.com/vxl/vxl/issues/752 # (and see https://github.com/InsightSoftwareConsortium/ITK/pull/1920/files for potential patch) - license = [ lib.licenses.unfree ]; + license = [ licenses.unfree ]; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; }) diff --git a/pkgs/by-name/w_/w_scan/package.nix b/pkgs/by-name/w_/w_scan/package.nix index 8e55ea37627756..76acf20540caee 100644 --- a/pkgs/by-name/w_/w_scan/package.nix +++ b/pkgs/by-name/w_/w_scan/package.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { # `service_t'; countries.o:/build/w_scan-20170107/si_types.h:117: first defined here env.NIX_CFLAGS_COMPILE = "-fcommon"; - meta = { + meta = with lib; { description = "Small CLI utility to scan DVB and ATSC transmissions"; homepage = "http://wirbel.htpc-forum.de/w_scan/index_en.html"; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.nico202 ]; - license = lib.licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.nico202 ]; + license = licenses.gpl2; mainProgram = "w_scan"; }; } diff --git a/pkgs/by-name/w_/w_scan2/package.nix b/pkgs/by-name/w_/w_scan2/package.nix index d852059bc19e3a..654099a0b97d12 100644 --- a/pkgs/by-name/w_/w_scan2/package.nix +++ b/pkgs/by-name/w_/w_scan2/package.nix @@ -15,12 +15,12 @@ stdenv.mkDerivation rec { hash = "sha256-ToD02W9H9HqddhpZsQm2Uzy/cVtv4KnfYmpCl2KEGSY="; }; - meta = { + meta = with lib; { description = "Small channel scan tool which generates ATSC, DVB-C, DVB-S/S2 and DVB-T/T2 channels.conf files"; homepage = "https://github.com/stefantalpalaru/w_scan2"; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ _0x4A6F ]; - license = lib.licenses.gpl2Only; + platforms = platforms.linux; + maintainers = with maintainers; [ _0x4A6F ]; + license = licenses.gpl2Only; mainProgram = "w_scan2"; }; } diff --git a/pkgs/by-name/wa/waagent/package.nix b/pkgs/by-name/wa/waagent/package.nix index 9b21d6a53a8f85..a04f5591cca619 100644 --- a/pkgs/by-name/wa/waagent/package.nix +++ b/pkgs/by-name/wa/waagent/package.nix @@ -74,7 +74,7 @@ python.pkgs.buildPythonApplication rec { }; }; - meta = { + meta = with lib; { description = "Microsoft Azure Linux Agent (waagent)"; mainProgram = "waagent"; longDescription = '' @@ -82,8 +82,8 @@ python.pkgs.buildPythonApplication rec { manages Linux provisioning and VM interaction with the Azure Fabric Controller''; homepage = "https://github.com/Azure/WALinuxAgent"; - maintainers = with lib.maintainers; [ codgician ]; - license = with lib.licenses; [ asl20 ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ codgician ]; + license = with licenses; [ asl20 ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/wa/wakatime-cli/package.nix b/pkgs/by-name/wa/wakatime-cli/package.nix index c678e5764feba9..66dae22a428f9c 100644 --- a/pkgs/by-name/wa/wakatime-cli/package.nix +++ b/pkgs/by-name/wa/wakatime-cli/package.nix @@ -47,11 +47,11 @@ buildGoModule rec { command = "HOME=$(mktemp -d) wakatime-cli --version"; }; - meta = { + meta = with lib; { homepage = "https://wakatime.com/"; description = "WakaTime command line interface"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.bsd3; + maintainers = with maintainers; [ sigmanificient ]; mainProgram = "wakatime-cli"; }; } diff --git a/pkgs/by-name/wa/wakelan/package.nix b/pkgs/by-name/wa/wakelan/package.nix index 674c8270004ac8..c8c3bebaa9b3ae 100644 --- a/pkgs/by-name/wa/wakelan/package.nix +++ b/pkgs/by-name/wa/wakelan/package.nix @@ -20,16 +20,16 @@ stdenv.mkDerivation rec { mkdir -p $out/man/man1 $out/bin ''; - meta = { + meta = with lib; { description = "Send a wake-on-lan packet"; longDescription = '' WakeLan sends a properly formatted UDP packet across the network which will cause a wake-on-lan enabled computer to power on. ''; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "wakelan"; }; } diff --git a/pkgs/by-name/wa/wal-listener/package.nix b/pkgs/by-name/wa/wal-listener/package.nix index 8768d6eccab2c1..6357ae3a015403 100644 --- a/pkgs/by-name/wa/wal-listener/package.nix +++ b/pkgs/by-name/wa/wal-listener/package.nix @@ -20,10 +20,10 @@ buildGoModule rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = { + meta = with lib; { description = "PostgreSQL WAL listener"; homepage = "https://github.com/ihippik/wal-listener"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ bbigras ]; + license = licenses.asl20; + maintainers = with maintainers; [ bbigras ]; }; } diff --git a/pkgs/by-name/wa/wangle/package.nix b/pkgs/by-name/wa/wangle/package.nix index d5d83869bfabd2..10877c62441832 100644 --- a/pkgs/by-name/wa/wangle/package.nix +++ b/pkgs/by-name/wa/wangle/package.nix @@ -119,7 +119,7 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Open-source C++ networking library"; longDescription = '' Wangle is a framework providing a set of common client/server @@ -127,9 +127,9 @@ stdenv.mkDerivation (finalAttrs: { composable way. ''; homepage = "https://github.com/facebook/wangle"; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + platforms = platforms.unix; + maintainers = with maintainers; [ pierreis kylesferrazza emily diff --git a/pkgs/by-name/wa/warp-plus/package.nix b/pkgs/by-name/wa/warp-plus/package.nix index ec80044aae4f4d..826e41af092818 100644 --- a/pkgs/by-name/wa/warp-plus/package.nix +++ b/pkgs/by-name/wa/warp-plus/package.nix @@ -42,11 +42,11 @@ buildGoModule rec { tests.version = testers.testVersion { package = warp-plus; }; }; - meta = { + meta = with lib; { description = "Warp + Psiphon, an anti censorship utility for Iran"; homepage = "https://github.com/bepass-org/warp-plus"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ paveloom ]; + license = licenses.mit; + maintainers = with maintainers; [ paveloom ]; mainProgram = "warp-plus"; }; } diff --git a/pkgs/by-name/wa/wasm-bindgen-cli/package.nix b/pkgs/by-name/wa/wasm-bindgen-cli/package.nix index e705a77dd1345b..0fd78ad2e9e500 100644 --- a/pkgs/by-name/wa/wasm-bindgen-cli/package.nix +++ b/pkgs/by-name/wa/wasm-bindgen-cli/package.nix @@ -36,14 +36,14 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://rustwasm.github.io/docs/wasm-bindgen/"; - license = with lib.licenses; [ + license = with licenses; [ asl20 # or mit ]; description = "Facilitating high-level interactions between wasm modules and JavaScript"; - maintainers = with lib.maintainers; [ rizary ]; + maintainers = with maintainers; [ rizary ]; mainProgram = "wasm-bindgen"; }; } diff --git a/pkgs/by-name/wa/watchdog/package.nix b/pkgs/by-name/wa/watchdog/package.nix index 3f94879716aee0..07f295652f53aa 100644 --- a/pkgs/by-name/wa/watchdog/package.nix +++ b/pkgs/by-name/wa/watchdog/package.nix @@ -14,12 +14,12 @@ stdenv.mkDerivation (finalAttrs: { "CONFIG_FILENAME:=${placeholder "out"}/etc/watchdog.conf" ]; - meta = { + meta = with lib; { description = "Software watchdog for Linux"; homepage = "https://sourceforge.net/projects/watchdog/"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ n8henrie ]; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ n8henrie ]; mainProgram = "watchdog"; }; }) diff --git a/pkgs/by-name/wa/watchman/package.nix b/pkgs/by-name/wa/watchman/package.nix index b4a1902f031071..781490d7bf9eec 100644 --- a/pkgs/by-name/wa/watchman/package.nix +++ b/pkgs/by-name/wa/watchman/package.nix @@ -102,15 +102,15 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Watches files and takes action when they change"; homepage = "https://facebook.github.io/watchman"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ kylesferrazza emily techknowlogick ]; - platforms = lib.platforms.unix; - license = lib.licenses.mit; + platforms = platforms.unix; + license = licenses.mit; }; }) diff --git a/pkgs/by-name/wa/watchyourlan/package.nix b/pkgs/by-name/wa/watchyourlan/package.nix index f7ab4f9022c655..b8026253eb283a 100644 --- a/pkgs/by-name/wa/watchyourlan/package.nix +++ b/pkgs/by-name/wa/watchyourlan/package.nix @@ -30,11 +30,11 @@ buildGoModule rec { --prefix PATH : '${lib.makeBinPath [ arp-scan ]}' ''; - meta = { + meta = with lib; { description = "Lightweight network IP scanner with web GUI"; homepage = "https://github.com/aceberg/WatchYourLAN"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "WatchYourLAN"; - maintainers = [ lib.maintainers.iv-nn ]; + maintainers = [ maintainers.iv-nn ]; }; } diff --git a/pkgs/by-name/wa/wavebox/package.nix b/pkgs/by-name/wa/wavebox/package.nix index 94d6390c7db358..bb05610930adab 100644 --- a/pkgs/by-name/wa/wavebox/package.nix +++ b/pkgs/by-name/wa/wavebox/package.nix @@ -235,12 +235,12 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = { + meta = with lib; { description = "Wavebox Productivity Browser"; homepage = "https://wavebox.io"; - license = lib.licenses.unfree; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ flexiondotorg ]; + license = licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ flexiondotorg ]; platforms = [ "x86_64-linux" ]; mainProgram = "wavebox"; }; diff --git a/pkgs/by-name/wa/wavefunctioncollapse/package.nix b/pkgs/by-name/wa/wavefunctioncollapse/package.nix index 82e289116149f5..62cdab64d10f89 100644 --- a/pkgs/by-name/wa/wavefunctioncollapse/package.nix +++ b/pkgs/by-name/wa/wavefunctioncollapse/package.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { chmod a+x "$out/bin/wavefunctioncollapse" ''; buildInputs = [ mono ]; - meta = { + meta = with lib; { description = "Generator of bitmaps that are locally similar to the input bitmap"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/wa/waycheck/package.nix b/pkgs/by-name/wa/waycheck/package.nix index ba6f9242bf227a..c07d4953a3d22b 100644 --- a/pkgs/by-name/wa/waycheck/package.nix +++ b/pkgs/by-name/wa/waycheck/package.nix @@ -52,15 +52,15 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Simple GUI that displays the protocols implemented by a Wayland compositor"; homepage = "https://gitlab.freedesktop.org/serebit/waycheck"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ julienmalka pandapip1 ]; mainProgram = "waycheck"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/wa/waydroid/package.nix b/pkgs/by-name/wa/waydroid/package.nix index 63a9a03435181b..7fcb9c05bfeea5 100644 --- a/pkgs/by-name/wa/waydroid/package.nix +++ b/pkgs/by-name/wa/waydroid/package.nix @@ -103,12 +103,12 @@ python3Packages.buildPythonApplication rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Container-based approach to boot a full Android system on a regular GNU/Linux system"; mainProgram = "waydroid"; homepage = "https://github.com/waydroid/waydroid"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + license = licenses.gpl3Only; + platforms = platforms.linux; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/by-name/wa/wayneko/package.nix b/pkgs/by-name/wa/wayneko/package.nix index 07adf3e83a5849..4810f3fb11e742 100644 --- a/pkgs/by-name/wa/wayneko/package.nix +++ b/pkgs/by-name/wa/wayneko/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation { makeFlags = [ "PREFIX=${placeholder "out"}" ]; - meta = { + meta = with lib; { description = "Neko on Wayland"; homepage = "https://sr.ht/~leon_plickat/wayneko"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ fgaz ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ fgaz ]; mainProgram = "wayneko"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/wa/wayprompt/package.nix b/pkgs/by-name/wa/wayprompt/package.nix index 6079149de5ae79..6ffe12898e6193 100644 --- a/pkgs/by-name/wa/wayprompt/package.nix +++ b/pkgs/by-name/wa/wayprompt/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail wayprompt $out/bin/wayprompt ''; - meta = { + meta = with lib; { homepage = "https://git.sr.ht/~leon_plickat/wayprompt"; description = "Multi-purpose (password-)prompt tool for Wayland"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ sg-qwt ]; + license = licenses.gpl3; + maintainers = with maintainers; [ sg-qwt ]; mainProgram = "pinentry-wayprompt"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/wa/wayv/package.nix b/pkgs/by-name/wa/wayv/package.nix index 55a58681a2462e..367af6198a3a83 100644 --- a/pkgs/by-name/wa/wayv/package.nix +++ b/pkgs/by-name/wa/wayv/package.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { cp doc/*.jpg "$out"/share/doc/wayv ''; - meta = { + meta = with lib; { description = "Gesture control for X11"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; homepage = "https://github.com/mikemb/wayV"; mainProgram = "wayv"; }; diff --git a/pkgs/by-name/wb/wbox/package.nix b/pkgs/by-name/wb/wbox/package.nix index 80785d4c4d9d12..f7b3cb722dcb2a 100644 --- a/pkgs/by-name/wb/wbox/package.nix +++ b/pkgs/by-name/wb/wbox/package.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { sha256 = "06daxwbysppvbh1mwprw8fgsp6mbd3kqj7a978w7ivn8hdgdi28m"; }; - meta = { + meta = with lib; { description = "Simple HTTP benchmarking tool"; homepage = "http://www.hping.org/wbox/"; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; + license = licenses.bsd3; + platforms = platforms.unix; mainProgram = "wbox"; }; } diff --git a/pkgs/by-name/wc/wch-isp/package.nix b/pkgs/by-name/wc/wch-isp/package.nix index 9161e960cbf829..39038ece37370d 100644 --- a/pkgs/by-name/wc/wch-isp/package.nix +++ b/pkgs/by-name/wc/wch-isp/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation rec { "install-rules" ]; - meta = { + meta = with lib; { description = "Firmware programmer for WCH microcontrollers over USB"; mainProgram = "wch-isp"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; homepage = "https://git.sr.ht/~jmaselbas/wch-isp"; - maintainers = with lib.maintainers; [ lesuisse ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ lesuisse ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/wc/wcurl/package.nix b/pkgs/by-name/wc/wcurl/package.nix index 8f4b81325a8e4c..f69c2f54610e35 100644 --- a/pkgs/by-name/wc/wcurl/package.nix +++ b/pkgs/by-name/wc/wcurl/package.nix @@ -70,12 +70,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://curl.se/wcurl"; description = "Simple wrapper around curl to easily download files"; mainProgram = "wcurl"; - license = lib.licenses.curl; - maintainers = with lib.maintainers; [ deejayem ]; - platforms = lib.platforms.all; + license = licenses.curl; + maintainers = with maintainers; [ deejayem ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/we/wealthfolio/package.nix b/pkgs/by-name/we/wealthfolio/package.nix index bdb44f343fdde4..6d9f9164774d00 100644 --- a/pkgs/by-name/we/wealthfolio/package.nix +++ b/pkgs/by-name/we/wealthfolio/package.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "A Beautiful Private and Secure Desktop Investment Tracking Application"; homepage = "https://wealthfolio.app/"; - license = lib.licenses.agpl3Only; + license = licenses.agpl3Only; mainProgram = "wealthfolio"; - maintainers = with lib.maintainers; [ kilianar ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ kilianar ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/we/weaver/package.nix b/pkgs/by-name/we/weaver/package.nix index 0b6c27a36499f1..1ee0e146f5ef89 100644 --- a/pkgs/by-name/we/weaver/package.nix +++ b/pkgs/by-name/we/weaver/package.nix @@ -28,11 +28,11 @@ rustPlatform.buildRustPackage rec { package = weaver; }; - meta = { + meta = with lib; { description = "OpenTelemetry tool for dealing with semantic conventions and application telemetry schemas"; homepage = "https://github.com/open-telemetry/weaver"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ aaronjheng ]; + license = licenses.asl20; + maintainers = with maintainers; [ aaronjheng ]; mainProgram = "weaver"; }; } diff --git a/pkgs/by-name/we/web-archives/package.nix b/pkgs/by-name/we/web-archives/package.nix index d59c456cc2c9e9..70061d1b226421 100644 --- a/pkgs/by-name/we/web-archives/package.nix +++ b/pkgs/by-name/we/web-archives/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs) web-archive-darkreader; }; - meta = { + meta = with lib; { description = "Web archives reader offering the ability to browse offline millions of articles"; homepage = "https://github.com/birros/web-archives"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "web-archives"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ aleksana ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/we/websurfx/package.nix b/pkgs/by-name/we/websurfx/package.nix index 936cbb19aac871..328e863e4cf02f 100644 --- a/pkgs/by-name/we/websurfx/package.nix +++ b/pkgs/by-name/we/websurfx/package.nix @@ -45,7 +45,7 @@ rustPlatform.buildRustPackage { cp -r public $out/opt/websurfx/ ''; - meta = { + meta = with lib; { description = "Open source alternative to searx"; longDescription = '' An open source alternative to searx which provides a modern-looking, @@ -53,8 +53,8 @@ rustPlatform.buildRustPackage { ''; homepage = "https://github.com/neon-mmd/websurfx"; changelog = "https://github.com/neon-mmd/websurfx/releases"; - license = lib.licenses.agpl3Plus; - maintainers = with lib.maintainers; [ theobori ]; + license = licenses.agpl3Plus; + maintainers = with maintainers; [ theobori ]; mainProgram = "websurfx"; }; } diff --git a/pkgs/by-name/we/webtunnel/package.nix b/pkgs/by-name/we/webtunnel/package.nix index a0dea74b358faa..2af8e510a0e40a 100644 --- a/pkgs/by-name/we/webtunnel/package.nix +++ b/pkgs/by-name/we/webtunnel/package.nix @@ -17,12 +17,12 @@ buildGoModule { vendorHash = "sha256-3AAPySLAoMimXUOiy8Ctl+ghG5q+3dWRNGXHpl9nfG0="; - meta = { + meta = with lib; { description = "Pluggable Transport based on HTTP Upgrade(HTTPT)"; homepage = "https://community.torproject.org/relay/setup/webtunnel/"; - maintainers = [ lib.maintainers.gbtb ]; - license = lib.licenses.mit; - platforms = lib.platforms.linux; + maintainers = [ maintainers.gbtb ]; + license = licenses.mit; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/we/welkin/package.nix b/pkgs/by-name/we/welkin/package.nix index 8ccb5fb7de7da5..4b2e42dafc678f 100644 --- a/pkgs/by-name/we/welkin/package.nix +++ b/pkgs/by-name/we/welkin/package.nix @@ -31,14 +31,14 @@ stdenv.mkDerivation rec { chmod a+x $out/bin/welkin ''; - meta = { + meta = with lib; { description = "RDF visualizer"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ raskin ]; hydraPlatforms = [ ]; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.bsd3; - platforms = with lib.platforms; unix; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.bsd3; + platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/wf/wf-touch/package.nix b/pkgs/by-name/wf/wf-touch/package.nix index 2c32f563db2d96..df502ff923080c 100644 --- a/pkgs/by-name/wf/wf-touch/package.nix +++ b/pkgs/by-name/wf/wf-touch/package.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Touchscreen gesture library"; homepage = "https://github.com/WayfireWM/wf-touch"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ donovanglover ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ donovanglover ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/wg/wget/package.nix b/pkgs/by-name/wg/wget/package.nix index 69eebc4f1d4192..2d3da5047b35a2 100644 --- a/pkgs/by-name/wg/wget/package.nix +++ b/pkgs/by-name/wg/wget/package.nix @@ -113,10 +113,10 @@ stdenv.mkDerivation rec { perlPackages.IOSocketSSL ]; - meta = { + meta = with lib; { description = "Tool for retrieving files using HTTP, HTTPS, and FTP"; homepage = "https://www.gnu.org/software/wget/"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; longDescription = '' GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols. It is a @@ -124,7 +124,7 @@ stdenv.mkDerivation rec { scripts, cron jobs, terminals without X-Windows support, etc. ''; mainProgram = "wget"; - maintainers = with lib.maintainers; [ fpletz ]; - platforms = lib.platforms.all; + maintainers = with maintainers; [ fpletz ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/wg/wgetpaste/package.nix b/pkgs/by-name/wg/wgetpaste/package.nix index e08de62dd14ab7..40ccdbf83531d1 100644 --- a/pkgs/by-name/wg/wgetpaste/package.nix +++ b/pkgs/by-name/wg/wgetpaste/package.nix @@ -26,15 +26,15 @@ stdenv.mkDerivation rec { cp wgetpaste $out/bin; ''; - meta = { + meta = with lib; { description = "Command-line interface to various pastebins"; mainProgram = "wgetpaste"; homepage = "https://github.com/zlin/wgetpaste"; - license = lib.licenses.publicDomain; - maintainers = with lib.maintainers; [ + license = licenses.publicDomain; + maintainers = with maintainers; [ qknight domenkozar ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/wg/wgpu-native/package.nix b/pkgs/by-name/wg/wgpu-native/package.nix index 09f99cbb2fa153..5d3721638387c3 100644 --- a/pkgs/by-name/wg/wgpu-native/package.nix +++ b/pkgs/by-name/wg/wgpu-native/package.nix @@ -50,13 +50,13 @@ rustPlatform.buildRustPackage rec { }; }; - meta = { + meta = with lib; { description = "Native WebGPU implementation based on wgpu-core"; homepage = "https://github.com/gfx-rs/wgpu-native"; - license = with lib.licenses; [ + license = with licenses; [ mit asl20 ]; - maintainers = with lib.maintainers; [ niklaskorz ]; + maintainers = with maintainers; [ niklaskorz ]; }; } diff --git a/pkgs/by-name/wh/whatsapp-emoji-font/package.nix b/pkgs/by-name/wh/whatsapp-emoji-font/package.nix index 38ea43b16e0657..af28129f5b9d7d 100644 --- a/pkgs/by-name/wh/whatsapp-emoji-font/package.nix +++ b/pkgs/by-name/wh/whatsapp-emoji-font/package.nix @@ -37,11 +37,11 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "WhatsApp Emoji for GNU/Linux"; homepage = "https://github.com/dmlls/whatsapp-emoji-linux"; - maintainers = [ lib.maintainers.lucasew ]; - sourceProvenance = [ lib.sourceTypes.fromSource ]; - license = lib.licenses.unfree; + maintainers = [ maintainers.lucasew ]; + sourceProvenance = [ sourceTypes.fromSource ]; + license = licenses.unfree; }; } diff --git a/pkgs/by-name/wh/whatsapp-for-linux/package.nix b/pkgs/by-name/wh/whatsapp-for-linux/package.nix index b7bd51e94a111f..4b0df01ca4eae8 100644 --- a/pkgs/by-name/wh/whatsapp-for-linux/package.nix +++ b/pkgs/by-name/wh/whatsapp-for-linux/package.nix @@ -69,12 +69,12 @@ stdenv.mkDerivation (finalAttrs: { xorg.libXtst ]; - meta = { + meta = with lib; { homepage = "https://github.com/eneshecan/whatsapp-for-linux"; description = "Whatsapp desktop messaging app"; mainProgram = "whatsapp-for-linux"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ bartuka ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ bartuka ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/wh/whatsie/package.nix b/pkgs/by-name/wh/whatsie/package.nix index 7c1b5cd6c95d2c..70fa6672a4ad61 100644 --- a/pkgs/by-name/wh/whatsie/package.nix +++ b/pkgs/by-name/wh/whatsie/package.nix @@ -61,12 +61,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/keshavbhatt/whatsie"; description = "Feature rich WhatsApp Client for Desktop Linux"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "whatsie"; - maintainers = with lib.maintainers; [ ajgon ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ ajgon ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/wh/when-cli/package.nix b/pkgs/by-name/wh/when-cli/package.nix index a15a99edf8e681..fdfb012cbaa854 100644 --- a/pkgs/by-name/wh/when-cli/package.nix +++ b/pkgs/by-name/wh/when-cli/package.nix @@ -14,11 +14,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-9emY0yhAKVzuk1Tlzi0kW8oR9jRqLdg8wbTcJMBrxMw="; - meta = { + meta = with lib; { description = "Command line tool for converting between timezones"; homepage = "https://github.com/mitsuhiko/when"; mainProgram = "when"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ loicreynier ]; + license = licenses.asl20; + maintainers = with maintainers; [ loicreynier ]; }; } diff --git a/pkgs/by-name/wh/where-is-my-sddm-theme/package.nix b/pkgs/by-name/wh/where-is-my-sddm-theme/package.nix index 10887e1e6cb2d7..50e1e5a890ba09 100644 --- a/pkgs/by-name/wh/where-is-my-sddm-theme/package.nix +++ b/pkgs/by-name/wh/where-is-my-sddm-theme/package.nix @@ -72,11 +72,11 @@ lib.checkListOfEnum "where-is-my-sddm-theme: variant" validVariants variants '' ); - meta = { + meta = with lib; { description = "Most minimalistic SDDM theme among all themes"; homepage = "https://github.com/stepanzubkov/where-is-my-sddm-theme"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ name-snrl ]; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ name-snrl ]; }; }) diff --git a/pkgs/by-name/wh/which/package.nix b/pkgs/by-name/wh/which/package.nix index ae9deecdec54a8..59c205e19d2a82 100644 --- a/pkgs/by-name/wh/which/package.nix +++ b/pkgs/by-name/wh/which/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { lib.optional stdenv.hostPlatform.is32bit "-D_FILE_OFFSET_BITS=64" ); - meta = { + meta = with lib; { homepage = "https://www.gnu.org/software/which/"; description = "Shows the full path of (shell) commands"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "which"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/wh/whisparr/package.nix b/pkgs/by-name/wh/whisparr/package.nix index b2db8c9e0f458d..dffb2965d654e9 100644 --- a/pkgs/by-name/wh/whisparr/package.nix +++ b/pkgs/by-name/wh/whisparr/package.nix @@ -78,19 +78,19 @@ stdenv.mkDerivation rec { tests.smoke-test = nixosTests.whisparr; }; - meta = { + meta = with lib; { description = "Adult movie collection manager for Usenet and BitTorrent users"; homepage = "https://wiki.servarr.com/en/whisparr"; changelog = "https://whisparr.servarr.com/v1/update/nightly/changes"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; platforms = [ "aarch64-darwin" "aarch64-linux" "x86_64-darwin" "x86_64-linux" ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; mainProgram = "Whisparr"; - maintainers = [ lib.maintainers.paveloom ]; + maintainers = [ maintainers.paveloom ]; }; } diff --git a/pkgs/by-name/wh/whitesur-cursors/package.nix b/pkgs/by-name/wh/whitesur-cursors/package.nix index a6d522dadee3ce..bb8494151f9cee 100644 --- a/pkgs/by-name/wh/whitesur-cursors/package.nix +++ b/pkgs/by-name/wh/whitesur-cursors/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "X-cursor theme inspired by macOS and based on capitaine-cursors"; homepage = "https://github.com/vinceliuice/WhiteSur-cursors"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ tomasajt ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = with maintainers; [ tomasajt ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/wh/whoogle-search/package.nix b/pkgs/by-name/wh/whoogle-search/package.nix index 7f1ceb8bd8012e..5d801e99a3a52d 100644 --- a/pkgs/by-name/wh/whoogle-search/package.nix +++ b/pkgs/by-name/wh/whoogle-search/package.nix @@ -67,11 +67,11 @@ python3Packages.buildPythonApplication rec { inherit (nixosTests) whoogle-search; }; - meta = { + meta = with lib; { homepage = "https://github.com/benbusby/whoogle-search"; description = "A self-hosted, ad-free, privacy-respecting metasearch engine"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ malte-v ]; + license = licenses.mit; + maintainers = with maintainers; [ malte-v ]; mainProgram = "whoogle-search"; }; } diff --git a/pkgs/by-name/wi/wideriver/package.nix b/pkgs/by-name/wi/wideriver/package.nix index 496aa561e8ca51..051f3b733ff95b 100644 --- a/pkgs/by-name/wi/wideriver/package.nix +++ b/pkgs/by-name/wi/wideriver/package.nix @@ -29,12 +29,12 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { description = "Tiling window manager for the river wayland compositor, inspired by dwm and xmonad"; homepage = "https://github.com/alex-courtis/wideriver"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "wideriver"; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ clebs ]; + platforms = platforms.linux; + maintainers = with maintainers; [ clebs ]; }; }) diff --git a/pkgs/by-name/wi/wifi-password/package.nix b/pkgs/by-name/wi/wifi-password/package.nix index 83c9d79371391c..a8692f13526977 100644 --- a/pkgs/by-name/wi/wifi-password/package.nix +++ b/pkgs/by-name/wi/wifi-password/package.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { cp wifi-password.sh $out/bin/wifi-password ''; - meta = { + meta = with lib; { homepage = "https://github.com/rauchg/wifi-password"; description = "Get the password of the wifi you're on"; - platforms = lib.platforms.darwin; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.nikitavoloboev ]; + platforms = platforms.darwin; + license = licenses.mit; + maintainers = [ maintainers.nikitavoloboev ]; }; } diff --git a/pkgs/by-name/wi/wikiman/package.nix b/pkgs/by-name/wi/wikiman/package.nix index 4d93ca8ee1c071..054241a0b4667a 100644 --- a/pkgs/by-name/wi/wikiman/package.nix +++ b/pkgs/by-name/wi/wikiman/package.nix @@ -57,12 +57,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Offline search engine for manual pages, Arch Wiki, Gentoo Wiki and other documentation"; homepage = "https://github.com/filiparag/wikiman"; - license = with lib.licenses; [ mit ]; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ pluiedev ]; + license = with licenses; [ mit ]; + platforms = platforms.unix; + maintainers = with maintainers; [ pluiedev ]; mainProgram = "wikiman"; }; }) diff --git a/pkgs/by-name/wi/wiliwili/package.nix b/pkgs/by-name/wi/wiliwili/package.nix index 29bb44015ec0fc..fe43f0cd0c18dc 100644 --- a/pkgs/by-name/wi/wiliwili/package.nix +++ b/pkgs/by-name/wi/wiliwili/package.nix @@ -65,16 +65,16 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeBool "CPR_FORCE_USE_SYSTEM_CURL" true) ]; - meta = { + meta = with lib; { description = "Third-party Bilibili client with a switch-like UI"; homepage = "https://xfangfang.github.io/wiliwili"; # https://github.com/xfangfang/wiliwili/discussions/355 - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "wiliwili"; - maintainers = with lib.maintainers; [ aleksana ]; - platforms = with lib.platforms; unix ++ windows; + maintainers = with maintainers; [ aleksana ]; + platforms = with platforms; unix ++ windows; # Testing on darwin was blocked due to broken swift # buildInputs should still need some tweaking, but can't be sure - badPlatforms = lib.platforms.darwin; + badPlatforms = platforms.darwin; }; }) diff --git a/pkgs/by-name/wi/win-disk-writer/package.nix b/pkgs/by-name/wi/win-disk-writer/package.nix index 667a91968a057b..39ed592a26032c 100644 --- a/pkgs/by-name/wi/win-disk-writer/package.nix +++ b/pkgs/by-name/wi/win-disk-writer/package.nix @@ -25,12 +25,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Windows Bootable USB creator for macOS"; homepage = "https://github.com/TechUnRestricted/WinDiskWriter"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ donteatoreo ]; - platforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.gpl3; + maintainers = with maintainers; [ donteatoreo ]; + platforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/by-name/wi/windowmaker/dockapps/cputnik.nix b/pkgs/by-name/wi/windowmaker/dockapps/cputnik.nix index 206d3eba4d3a12..0a582db39d1af8 100644 --- a/pkgs/by-name/wi/windowmaker/dockapps/cputnik.nix +++ b/pkgs/by-name/wi/windowmaker/dockapps/cputnik.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Calendar clock with antialiased text"; homepage = "https://www.dockapps.net/wmcalclock"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/wi/windowmaker/dockapps/wmCalClock.nix b/pkgs/by-name/wi/windowmaker/dockapps/wmCalClock.nix index de423fc01ff178..12bf9b1cf90391 100644 --- a/pkgs/by-name/wi/windowmaker/dockapps/wmCalClock.nix +++ b/pkgs/by-name/wi/windowmaker/dockapps/wmCalClock.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation (finalAttrs: { installFlags = [ "DESTDIR=${placeholder "out"}" ]; - meta = { + meta = with lib; { description = "Calendar clock with antialiased text"; homepage = "https://www.dockapps.net/wmcalclock"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/wi/windowmaker/dockapps/wmsystemtray.nix b/pkgs/by-name/wi/windowmaker/dockapps/wmsystemtray.nix index 4d59166b2c8ce1..fd372f9973cd87 100644 --- a/pkgs/by-name/wi/windowmaker/dockapps/wmsystemtray.nix +++ b/pkgs/by-name/wi/windowmaker/dockapps/wmsystemtray.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation (finalAttrs: { libXpm ]; - meta = { + meta = with lib; { description = "System tray for Windowmaker"; homepage = "http://wmsystemtray.sourceforge.net"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/wi/windowmaker/package.nix b/pkgs/by-name/wi/windowmaker/package.nix index 57490959f0f7b2..1b81347b0d1024 100644 --- a/pkgs/by-name/wi/windowmaker/package.nix +++ b/pkgs/by-name/wi/windowmaker/package.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation (finalAttrs: { dockapps = callPackage ./dockapps { }; }; - meta = { + meta = with lib; { homepage = "http://windowmaker.org/"; description = "NeXTSTEP-like window manager"; longDescription = '' @@ -80,9 +80,9 @@ stdenv.mkDerivation (finalAttrs: { programmers from around the world. ''; changelog = "https://www.windowmaker.org/news/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "wmaker"; - maintainers = [ lib.maintainers.AndersonTorres ]; - platforms = lib.platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/wi/windterm/package.nix b/pkgs/by-name/wi/windterm/package.nix index ad142c977a3f4d..65dad0dba81988 100644 --- a/pkgs/by-name/wi/windterm/package.nix +++ b/pkgs/by-name/wi/windterm/package.nix @@ -92,13 +92,13 @@ stdenv.mkDerivation rec { ''${qtWrapperArgs[@]} ''; - meta = { + meta = with lib; { description = "Professional cross-platform SSH/Sftp/Shell/Telnet/Serial terminal"; homepage = "https://github.com/kingToolbox/WindTerm"; mainProgram = "windterm"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ aucub ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = with maintainers; [ aucub ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/wi/wipeout-rewrite/package.nix b/pkgs/by-name/wi/wipeout-rewrite/package.nix index 17f70e0ac69228..ba9228ba10a16c 100644 --- a/pkgs/by-name/wi/wipeout-rewrite/package.nix +++ b/pkgs/by-name/wi/wipeout-rewrite/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { mainProgram = "wipegame"; description = "Re-implementation of the 1995 PSX game wipEout"; homepage = "https://github.com/phoboslab/wipeout-rewrite"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ OPNA2608 ]; - platforms = lib.platforms.all; + license = licenses.unfree; + maintainers = with maintainers; [ OPNA2608 ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/wi/wired/package.nix b/pkgs/by-name/wi/wired/package.nix index c89c875a7e262b..51a644c07c63c4 100644 --- a/pkgs/by-name/wi/wired/package.nix +++ b/pkgs/by-name/wi/wired/package.nix @@ -42,12 +42,12 @@ rustPlatform.buildRustPackage rec { install -Dm444 -t $out/etc/wired wired.ron wired_multilayout.ron ''; - meta = { + meta = with lib; { description = "Lightweight notification daemon written in Rust"; homepage = "https://github.com/Toqozz/wired-notify"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fccapria ]; - badPlatforms = lib.platforms.darwin; + license = licenses.mit; + maintainers = with maintainers; [ fccapria ]; + badPlatforms = platforms.darwin; mainProgram = "wired"; }; } diff --git a/pkgs/by-name/wi/wirelesstools/package.nix b/pkgs/by-name/wi/wirelesstools/package.nix index e95eb87ce59822..44fa66f6b0268f 100644 --- a/pkgs/by-name/wi/wirelesstools/package.nix +++ b/pkgs/by-name/wi/wirelesstools/package.nix @@ -21,10 +21,10 @@ stdenv.mkDerivation rec { "LDCONFIG=:" ]; - meta = { + meta = with lib; { description = "Wireless tools for Linux"; homepage = "https://hewlettpackard.github.io/wireless-tools/Tools.html"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Only; + platforms = platforms.linux; + license = licenses.gpl2Only; }; } diff --git a/pkgs/by-name/wl/wl-crosshair/package.nix b/pkgs/by-name/wl/wl-crosshair/package.nix index 1c993efa089847..438edf600cd42e 100644 --- a/pkgs/by-name/wl/wl-crosshair/package.nix +++ b/pkgs/by-name/wl/wl-crosshair/package.nix @@ -26,12 +26,12 @@ rustPlatform.buildRustPackage { --set-default WL_CROSSHAIR_IMAGE_PATH $out/share/cursors/inverse-v.png ''; - meta = { + meta = with lib; { description = "A crosshair overlay for wlroots compositor"; homepage = "https://github.com/lelgenio/wl-crosshair"; - license = lib.licenses.unfree; # didn't found a license + license = licenses.unfree; # didn't found a license mainProgram = "wl-crosshair"; - maintainers = with lib.maintainers; [ Guanran928 ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ Guanran928 ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/wl/wl-gammarelay-applet/package.nix b/pkgs/by-name/wl/wl-gammarelay-applet/package.nix index 7da62ca22f8718..423ea7360f1565 100644 --- a/pkgs/by-name/wl/wl-gammarelay-applet/package.nix +++ b/pkgs/by-name/wl/wl-gammarelay-applet/package.nix @@ -38,7 +38,7 @@ rustPlatform.buildRustPackage { fontconfig.lib ]; - meta = { + meta = with lib; { description = "Control wl-gammarelay-rs via applet"; longDescription = '' wl-gammarelay-applet is a small desktop applet for controlling @@ -47,8 +47,8 @@ rustPlatform.buildRustPackage { ''; homepage = "https://github.com/lgbishop/wl-gammarelay-applet"; mainProgram = "wl-gammarelay-applet"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ lgbishop ]; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ lgbishop ]; }; } diff --git a/pkgs/by-name/wl/wl-gammarelay-rs/package.nix b/pkgs/by-name/wl/wl-gammarelay-rs/package.nix index e569ff58dfc873..e7c11f6dc5363f 100644 --- a/pkgs/by-name/wl/wl-gammarelay-rs/package.nix +++ b/pkgs/by-name/wl/wl-gammarelay-rs/package.nix @@ -22,13 +22,13 @@ rustPlatform.buildRustPackage rec { }; }; - meta = { + meta = with lib; { description = "Simple program that provides DBus interface to control display temperature and brightness under wayland without flickering"; homepage = "https://github.com/MaxVerevkin/wl-gammarelay-rs"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "wl-gammarelay-rs"; - maintainers = with lib.maintainers; [ quantenzitrone ]; - platforms = lib.platforms.unix; - badPlatforms = lib.platforms.darwin; + maintainers = with maintainers; [ quantenzitrone ]; + platforms = platforms.unix; + badPlatforms = platforms.darwin; }; } diff --git a/pkgs/by-name/wl/wldash/package.nix b/pkgs/by-name/wl/wldash/package.nix index 5b2aa6b6825af9..06104344750898 100644 --- a/pkgs/by-name/wl/wldash/package.nix +++ b/pkgs/by-name/wl/wldash/package.nix @@ -64,13 +64,13 @@ rustPlatform.buildRustPackage { patchelf --set-rpath ${libraryPath}:$(patchelf --print-rpath $out/bin/wldash) $out/bin/wldash ''; - meta = { + meta = with lib; { description = "Wayland launcher/dashboard"; homepage = "https://github.com/kennylevinsen/wldash"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ bbenno ]; + license = licenses.gpl3; + maintainers = with maintainers; [ bbenno ]; mainProgram = "wldash"; - platforms = lib.platforms.linux; - sourceProvenance = with lib.sourceTypes; [ fromSource ]; + platforms = platforms.linux; + sourceProvenance = with sourceTypes; [ fromSource ]; }; } diff --git a/pkgs/by-name/wl/wlinhibit/package.nix b/pkgs/by-name/wl/wlinhibit/package.nix index 1d787f7871937a..4e90d74c742648 100644 --- a/pkgs/by-name/wl/wlinhibit/package.nix +++ b/pkgs/by-name/wl/wlinhibit/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { wayland-scanner ]; - meta = { + meta = with lib; { description = "simple, stupid idle inhibitor for wayland"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/0x5a4/wlinhibit"; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ _0x5a4 ]; + platforms = platforms.linux; + maintainers = with maintainers; [ _0x5a4 ]; }; } diff --git a/pkgs/by-name/wl/wlock/package.nix b/pkgs/by-name/wl/wlock/package.nix index bb0712485abf9e..af66e982c9597f 100644 --- a/pkgs/by-name/wl/wlock/package.nix +++ b/pkgs/by-name/wl/wlock/package.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { wayland-scanner ]; - meta = { + meta = with lib; { description = "Sessionlocker for Wayland compositors that support the ext-session-lock-v1 protocol"; - license = lib.licenses.gpl3; + license = licenses.gpl3; homepage = "https://codeberg.org/sewn/wlock"; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ fliegendewurst ]; + platforms = platforms.linux; + maintainers = with maintainers; [ fliegendewurst ]; }; } diff --git a/pkgs/by-name/wm/wmctrl/package.nix b/pkgs/by-name/wm/wmctrl/package.nix index 3d115059ffd777..bf259b7f0fcbd1 100644 --- a/pkgs/by-name/wm/wmctrl/package.nix +++ b/pkgs/by-name/wm/wmctrl/package.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { patches = [ ./64-bit-data.patch ]; - meta = { + meta = with lib; { homepage = "https://sites.google.com/site/tstyblo/wmctrl"; description = "CLI tool to interact with EWMH/NetWM compatible X Window Managers"; - license = lib.licenses.gpl2Plus; - platforms = with lib.platforms; all; - maintainers = [ lib.maintainers.Anton-Latukha ]; + license = licenses.gpl2Plus; + platforms = with platforms; all; + maintainers = [ maintainers.Anton-Latukha ]; mainProgram = "wmctrl"; }; diff --git a/pkgs/by-name/wm/wmii/package.nix b/pkgs/by-name/wm/wmii/package.nix index 4cdb8371e12bfc..4487be3c22ca96 100644 --- a/pkgs/by-name/wm/wmii/package.nix +++ b/pkgs/by-name/wm/wmii/package.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { which ]; - meta = { + meta = with lib; { homepage = "https://github.com/0intro/wmii"; description = "Small, scriptable window manager, with a 9P filesystem interface and an acme-like layout"; - maintainers = with lib.maintainers; [ kovirobi ]; - license = lib.licenses.mit; - platforms = with lib.platforms; linux; + maintainers = with maintainers; [ kovirobi ]; + license = licenses.mit; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/wm/wmname/package.nix b/pkgs/by-name/wm/wmname/package.nix index 6b33f04f9dd2f4..87684778b63341 100644 --- a/pkgs/by-name/wm/wmname/package.nix +++ b/pkgs/by-name/wm/wmname/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { description = "Prints or set the window manager name property of the root window"; homepage = "https://tools.suckless.org/wmname"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; + license = licenses.mit; + platforms = platforms.unix; mainProgram = "wmname"; }; } diff --git a/pkgs/by-name/wo/wofi-emoji/package.nix b/pkgs/by-name/wo/wofi-emoji/package.nix index cef2eb0f4780a3..ac6e552399f2a6 100644 --- a/pkgs/by-name/wo/wofi-emoji/package.nix +++ b/pkgs/by-name/wo/wofi-emoji/package.nix @@ -59,15 +59,15 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Simple emoji selector for Wayland using wofi and wl-clipboard"; homepage = "https://github.com/Zeioth/wofi-emoji"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ johnrtitor ymarkus ]; - platforms = lib.platforms.all; + platforms = platforms.all; mainProgram = "wofi-emoji"; }; } diff --git a/pkgs/by-name/wo/wootility/package.nix b/pkgs/by-name/wo/wootility/package.nix index 568a72abb47d46..c97567bef5d17c 100644 --- a/pkgs/by-name/wo/wootility/package.nix +++ b/pkgs/by-name/wo/wootility/package.nix @@ -43,12 +43,12 @@ appimageTools.wrapType2 { xorg.libxkbfile ]); - meta = { + meta = with lib; { homepage = "https://wooting.io/wootility"; description = "Customization and management software for Wooting keyboards"; - platforms = lib.platforms.linux; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ + platforms = platforms.linux; + license = licenses.unfree; + maintainers = with maintainers; [ davidtwco sodiboo returntoreality diff --git a/pkgs/by-name/wo/wordbook/package.nix b/pkgs/by-name/wo/wordbook/package.nix index 479ec385e70f07..b348bb7cdfc050 100644 --- a/pkgs/by-name/wo/wordbook/package.nix +++ b/pkgs/by-name/wo/wordbook/package.nix @@ -54,12 +54,12 @@ python3.pkgs.buildPythonApplication rec { ) ''; - meta = { + meta = with lib; { description = "Offline English-English dictionary application built for GNOME"; mainProgram = "wordbook"; homepage = "https://github.com/fushinari/Wordbook"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ zendo ]; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ zendo ]; }; } diff --git a/pkgs/by-name/wo/workcraft/package.nix b/pkgs/by-name/wo/workcraft/package.nix index cb6a6b6c8e82fc..e4fde6c0a5af4f 100644 --- a/pkgs/by-name/wo/workcraft/package.nix +++ b/pkgs/by-name/wo/workcraft/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { --set _JAVA_OPTIONS '-Dawt.useSystemAAFontSettings=gasp'; ''; - meta = { + meta = with lib; { homepage = "https://workcraft.org/"; description = "Framework for interpreted graph modeling, verification and synthesis"; mainProgram = "workcraft"; - platforms = lib.platforms.linux; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ timor ]; + platforms = platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ timor ]; }; } diff --git a/pkgs/by-name/wo/workshop-runner/package.nix b/pkgs/by-name/wo/workshop-runner/package.nix index 82f2eccb505341..d0c70d6ff02a6e 100644 --- a/pkgs/by-name/wo/workshop-runner/package.nix +++ b/pkgs/by-name/wo/workshop-runner/package.nix @@ -17,15 +17,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-VoIAwPrkhrRl48czXtKWmLTktsZ/U4TVV924wx0DL+A="; - meta = { + meta = with lib; { description = "CLI tool to drive test-driven Rust workshops"; homepage = "https://github.com/mainmatter/rust-workshop-runner"; - license = with lib.licenses; [ + license = with licenses; [ mit asl20 ]; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ RaghavSood ]; + platforms = platforms.unix; + maintainers = with maintainers; [ RaghavSood ]; mainProgram = "wr"; }; } diff --git a/pkgs/by-name/wq/wqy_microhei/package.nix b/pkgs/by-name/wq/wqy_microhei/package.nix index aa2569ec0e456f..e6c5d9d7358d53 100644 --- a/pkgs/by-name/wq/wqy_microhei/package.nix +++ b/pkgs/by-name/wq/wqy_microhei/package.nix @@ -21,11 +21,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "(mainly) Chinese Unicode font"; homepage = "http://wenq.org"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.pkmx ]; - platforms = lib.platforms.all; + license = licenses.asl20; + maintainers = [ maintainers.pkmx ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/wq/wqy_zenhei/package.nix b/pkgs/by-name/wq/wqy_zenhei/package.nix index e03ec3aa4d63ec..662264977240c8 100644 --- a/pkgs/by-name/wq/wqy_zenhei/package.nix +++ b/pkgs/by-name/wq/wqy_zenhei/package.nix @@ -21,11 +21,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "(mainly) Chinese Unicode font"; homepage = "http://wenq.org"; - license = lib.licenses.gpl2; # with font embedding exceptions - maintainers = [ lib.maintainers.pkmx ]; - platforms = lib.platforms.all; + license = licenses.gpl2; # with font embedding exceptions + maintainers = [ maintainers.pkmx ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ws/wsjtz/package.nix b/pkgs/by-name/ws/wsjtz/package.nix index a58b8fda01a55f..e78cec9d31933f 100644 --- a/pkgs/by-name/ws/wsjtz/package.nix +++ b/pkgs/by-name/ws/wsjtz/package.nix @@ -18,12 +18,12 @@ wsjtx.overrideAttrs (old: rec { mv $out/bin/wsjtx_app_version $out/bin/wsjtz_app_version ''; - meta = { + meta = with lib; { description = "WSJT-X fork, primarily focused on automation and enhanced functionality"; homepage = "https://sourceforge.net/projects/wsjt-z/"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ scd31 ]; mainProgram = "wsjtz"; diff --git a/pkgs/by-name/wt/wtk/package.nix b/pkgs/by-name/wt/wtk/package.nix index a66ab691fd091d..0b77cedb19fc07 100644 --- a/pkgs/by-name/wt/wtk/package.nix +++ b/pkgs/by-name/wt/wtk/package.nix @@ -29,11 +29,11 @@ stdenv.mkDerivation rec { stdenv.cc.cc ]; - meta = { + meta = with lib; { homepage = "http://java.sun.com/products/sjwtoolkit/download.html"; description = "Sun Java Wireless Toolkit 2.5.2_01 for CLDC"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; platforms = [ "i686-linux" ]; }; } diff --git a/pkgs/by-name/wt/wttrbar/package.nix b/pkgs/by-name/wt/wttrbar/package.nix index b1f9abc8f1e0cd..d2417b00075b11 100644 --- a/pkgs/by-name/wt/wttrbar/package.nix +++ b/pkgs/by-name/wt/wttrbar/package.nix @@ -30,11 +30,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Simple but detailed weather indicator for Waybar using wttr.in"; homepage = "https://github.com/bjesus/wttrbar"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ khaneliman ]; + license = licenses.mit; + maintainers = with maintainers; [ khaneliman ]; mainProgram = "wttrbar"; }; } diff --git a/pkgs/by-name/wv/wv/package.nix b/pkgs/by-name/wv/wv/package.nix index befbfe6a22e67f..b82a582d6d8b6b 100644 --- a/pkgs/by-name/wv/wv/package.nix +++ b/pkgs/by-name/wv/wv/package.nix @@ -59,10 +59,10 @@ stdenv.mkDerivation (finalAttrs: { mv CHANGELOG ChangeLog~ && mv ChangeLog~ ChangeLog ''; - meta = { + meta = with lib; { homepage = "https://github.com/AbiWord/wv"; description = "Converter from Microsoft Word formats to human-editable ones"; - platforms = lib.platforms.unix; - license = lib.licenses.gpl2Plus; + platforms = platforms.unix; + license = licenses.gpl2Plus; }; }) diff --git a/pkgs/by-name/wv/wvdial/package.nix b/pkgs/by-name/wv/wvdial/package.nix index c71addca1a9bd7..f5dc1921edf1d1 100644 --- a/pkgs/by-name/wv/wvdial/package.nix +++ b/pkgs/by-name/wv/wvdial/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation { "PPPDIR=${placeholder "out"}/etc/ppp/peers" ]; - meta = { + meta = with lib; { description = "A dialer that automatically recognises the modem"; homepage = "https://gitea.osmocom.org/retronetworking/wvdial"; - license = lib.licenses.lgpl2; - maintainers = with lib.maintainers; [ flokli ]; - platforms = lib.platforms.linux; + license = licenses.lgpl2; + maintainers = with maintainers; [ flokli ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/wv/wvstreams/package.nix b/pkgs/by-name/wv/wvstreams/package.nix index 347b6731304846..58875f9a52c997 100644 --- a/pkgs/by-name/wv/wvstreams/package.nix +++ b/pkgs/by-name/wv/wvstreams/package.nix @@ -100,11 +100,11 @@ stdenv.mkDerivation { perl ]; - meta = { + meta = with lib; { description = "Network programming library in C++"; homepage = "http://alumnit.ca/wiki/index.php?page=WvStreams"; - license = lib.licenses.lgpl2; - maintainers = [ lib.maintainers.flokli ]; - platforms = lib.platforms.linux; + license = licenses.lgpl2; + maintainers = [ maintainers.flokli ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/wx/wxhexeditor/package.nix b/pkgs/by-name/wx/wxhexeditor/package.nix index e581b8c50ba8fe..34f17cbe333483 100644 --- a/pkgs/by-name/wx/wxhexeditor/package.nix +++ b/pkgs/by-name/wx/wxhexeditor/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { "OPTFLAGS=-fopenmp" ]; - meta = { + meta = with lib; { description = "Hex Editor / Disk Editor for Huge Files or Devices"; longDescription = '' This is not an ordinary hex editor, but could work as low level disk editor too. @@ -77,9 +77,9 @@ stdenv.mkDerivation rec { wxHexEditor could edit HDD/SDD disk devices or partitions in raw up to exabyte sizes. ''; homepage = "http://www.wxhexeditor.org/"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ wegank ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ wegank ]; mainProgram = "wxHexEditor"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/x1/x11docker/package.nix b/pkgs/by-name/x1/x11docker/package.nix index 56bedfc7e5e627..61bbd5f02c22a4 100644 --- a/pkgs/by-name/x1/x11docker/package.nix +++ b/pkgs/by-name/x1/x11docker/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { }" ''; - meta = { + meta = with lib; { description = "Run graphical applications with Docker"; homepage = "https://github.com/mviereck/x11docker"; - license = lib.licenses.mit; + license = licenses.mit; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; mainProgram = "x11docker"; }; } diff --git a/pkgs/by-name/x8/x86info/package.nix b/pkgs/by-name/x8/x86info/package.nix index c15f58de92494e..696c3d0f3bd9dd 100644 --- a/pkgs/by-name/x8/x86info/package.nix +++ b/pkgs/by-name/x8/x86info/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { cp lsmsr/lsmsr $out/bin ''; - meta = { + meta = with lib; { description = "Identification utility for the x86 series of processors"; longDescription = '' x86info will identify all Intel/AMD/Centaur/Cyrix/VIA CPUs. It leverages @@ -53,8 +53,8 @@ stdenv.mkDerivation rec { "i686-linux" "x86_64-linux" ]; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; homepage = "https://github.com/kernelslacker/x86info"; - maintainers = with lib.maintainers; [ jcumming ]; + maintainers = with maintainers; [ jcumming ]; }; } diff --git a/pkgs/by-name/xa/xalanc/package.nix b/pkgs/by-name/xa/xalanc/package.nix index aaaa0779305456..a49e796221b7b1 100644 --- a/pkgs/by-name/xa/xalanc/package.nix +++ b/pkgs/by-name/xa/xalanc/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { getopt ]; - meta = { + meta = with lib; { homepage = "https://xalan.apache.org/"; description = "XSLT processor for transforming XML documents"; mainProgram = "Xalan"; - license = lib.licenses.asl20; - platforms = lib.platforms.linux ++ lib.platforms.darwin; - maintainers = [ lib.maintainers.jagajaga ]; + license = licenses.asl20; + platforms = platforms.linux ++ platforms.darwin; + maintainers = [ maintainers.jagajaga ]; }; } diff --git a/pkgs/by-name/xa/xannotate/package.nix b/pkgs/by-name/xa/xannotate/package.nix index 8b580b66ea5eea..0c700d19627f52 100644 --- a/pkgs/by-name/xa/xannotate/package.nix +++ b/pkgs/by-name/xa/xannotate/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { buildInputs = [ libX11 ]; - meta = { + meta = with lib; { description = "Tool to scribble over X windows"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; homepage = "https://github.com/blais/xannotate"; mainProgram = "xannotate"; }; diff --git a/pkgs/by-name/xa/xarcan/package.nix b/pkgs/by-name/xa/xarcan/package.nix index cabe1dffadae52..dfa914aa4eb463 100644 --- a/pkgs/by-name/xa/xarcan/package.nix +++ b/pkgs/by-name/xa/xarcan/package.nix @@ -111,7 +111,7 @@ stdenv.mkDerivation (finalPackages: { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/letoram/letoram"; description = "Patched Xserver that bridges connections to Arcan"; mainProgram = "Xarcan"; @@ -120,8 +120,8 @@ stdenv.mkDerivation (finalPackages: { arcan-shmif to map Xlib/Xcb/X clients to a running arcan instance. It allows running an X session as a window under Arcan. ''; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/xa/xautocfg/package.nix b/pkgs/by-name/xa/xautocfg/package.nix index c03ac7c28ac203..f7bb69f7dec6cd 100644 --- a/pkgs/by-name/xa/xautocfg/package.nix +++ b/pkgs/by-name/xa/xautocfg/package.nix @@ -27,12 +27,12 @@ stdenv.mkDerivation (finalAttrs: { "MANPREFIX=${placeholder "out"}" ]; - meta = { + meta = with lib; { homepage = "https://github.com/SFTtech/xautocfg"; description = "Automatic keyboard repeat rate configuration for new keyboards"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ jceb ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ jceb ]; mainProgram = "xautocfg"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/xa/xawtv/package.nix b/pkgs/by-name/xa/xawtv/package.nix index 3a4da5eb0eaa2f..bce0b0603a6bbe 100644 --- a/pkgs/by-name/xa/xawtv/package.nix +++ b/pkgs/by-name/xa/xawtv/package.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { "resdir=${placeholder "out"}/share/X11" ]; - meta = { + meta = with lib; { description = "TV application for Linux with apps and tools such as a teletext browser"; - license = lib.licenses.gpl2; + license = licenses.gpl2; homepage = "https://www.kraxel.org/blog/linux/xawtv/"; - maintainers = with lib.maintainers; [ domenkozar ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ domenkozar ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/xb/xbar/package.nix b/pkgs/by-name/xb/xbar/package.nix index 72cae27c5b8d45..cdaeed32f48157 100644 --- a/pkgs/by-name/xb/xbar/package.nix +++ b/pkgs/by-name/xb/xbar/package.nix @@ -27,12 +27,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Put the output from any script or program into your macOS Menu Bar (the BitBar reboot)"; homepage = "https://xbarapp.com/"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - platforms = lib.platforms.darwin; - maintainers = with lib.maintainers; [ r17x ]; - license = lib.licenses.mit; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + platforms = platforms.darwin; + maintainers = with maintainers; [ r17x ]; + license = licenses.mit; }; }) diff --git a/pkgs/by-name/xb/xbindkeys/package.nix b/pkgs/by-name/xb/xbindkeys/package.nix index 1dd877e85d0ea5..995a3ee27fcf77 100644 --- a/pkgs/by-name/xb/xbindkeys/package.nix +++ b/pkgs/by-name/xb/xbindkeys/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation rec { guile ]; - meta = { + meta = with lib; { homepage = "https://www.nongnu.org/xbindkeys/xbindkeys.html"; description = "Launch shell commands with your keyboard or your mouse under X Window"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/xb/xbrightness/package.nix b/pkgs/by-name/xb/xbrightness/package.nix index 33aec02c43fefa..dec465aba4a233 100644 --- a/pkgs/by-name/xb/xbrightness/package.nix +++ b/pkgs/by-name/xb/xbrightness/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { "install.man" ]; - meta = { + meta = with lib; { description = "X11 brigthness and gamma software control"; homepage = "http://shallowsky.com/software"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; + license = licenses.mit; + platforms = platforms.linux; mainProgram = "xbrightness"; }; } diff --git a/pkgs/by-name/xc/xcbeautify/package.nix b/pkgs/by-name/xc/xcbeautify/package.nix index c5eaecb4917ed4..14b39eae2e7cd2 100644 --- a/pkgs/by-name/xc/xcbeautify/package.nix +++ b/pkgs/by-name/xc/xcbeautify/package.nix @@ -31,13 +31,13 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Little beautifier tool for xcodebuild"; homepage = "https://github.com/cpisciotta/xcbeautify"; - license = lib.licenses.mit; - platforms = lib.platforms.darwin; + license = licenses.mit; + platforms = platforms.darwin; mainProgram = "xcbeautify"; - maintainers = with lib.maintainers; [ siddarthkay ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with maintainers; [ siddarthkay ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; } diff --git a/pkgs/by-name/xc/xcbuild/package.nix b/pkgs/by-name/xc/xcbuild/package.nix index fc5e7983066405..a52b0899bce066 100644 --- a/pkgs/by-name/xc/xcbuild/package.nix +++ b/pkgs/by-name/xc/xcbuild/package.nix @@ -150,14 +150,14 @@ stdenv.mkDerivation (finalAttrs: { finalAttrs.finalPackage; }; - meta = { + meta = with lib; { description = "Xcode-compatible build tool"; homepage = "https://github.com/facebook/xcbuild"; - license = with lib.licenses; [ + license = with licenses; [ bsd2 bsd3 ]; - maintainers = lib.teams.darwin.members; - platforms = lib.platforms.unix; + maintainers = teams.darwin.members; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/xc/xchainkeys/package.nix b/pkgs/by-name/xc/xchainkeys/package.nix index dfe0c036e4b20c..755a7da5930030 100644 --- a/pkgs/by-name/xc/xchainkeys/package.nix +++ b/pkgs/by-name/xc/xchainkeys/package.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { buildInputs = [ libX11 ]; - meta = { + meta = with lib; { homepage = "http://henning-bekel.de/xchainkeys/"; description = "Standalone X11 program to create chained key bindings"; - license = lib.licenses.gpl3; - platforms = lib.platforms.unix; + license = licenses.gpl3; + platforms = platforms.unix; mainProgram = "xchainkeys"; }; } diff --git a/pkgs/by-name/xc/xclip/package.nix b/pkgs/by-name/xc/xclip/package.nix index 5b3383dae99c7b..28936654e8e272 100644 --- a/pkgs/by-name/xc/xclip/package.nix +++ b/pkgs/by-name/xc/xclip/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { buildInputs = [ libXmu ]; - meta = { + meta = with lib; { description = "Tool to access the X clipboard from a console application"; homepage = "https://github.com/astrand/xclip"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.all; + license = licenses.gpl2Plus; + platforms = platforms.all; mainProgram = "xclip"; }; } diff --git a/pkgs/by-name/xc/xcursor-pro/package.nix b/pkgs/by-name/xc/xcursor-pro/package.nix index b14879d067ac49..98fcd03065d045 100644 --- a/pkgs/by-name/xc/xcursor-pro/package.nix +++ b/pkgs/by-name/xc/xcursor-pro/package.nix @@ -41,12 +41,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { homepage = "https://github.com/ful1e5/XCursor-pro"; description = "Modern XCursors"; - license = lib.licenses.gpl3; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.gpl3; + platforms = platforms.unix; + maintainers = with maintainers; [ lactose midirhee12 ]; diff --git a/pkgs/by-name/xc/xcwd/package.nix b/pkgs/by-name/xc/xcwd/package.nix index 58808c9ec96270..c5960647e4f856 100644 --- a/pkgs/by-name/xc/xcwd/package.nix +++ b/pkgs/by-name/xc/xcwd/package.nix @@ -24,14 +24,14 @@ stdenv.mkDerivation (finalAttrs: { mkdir -p $out/bin ''; - meta = { + meta = with lib; { description = '' A simple tool which prints the current working directory of the currently focused window ''; homepage = "https://github.com/schischi/xcwd"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "xcwd"; - maintainers = [ lib.maintainers.grburst ]; - platforms = lib.platforms.linux; + maintainers = [ maintainers.grburst ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/xd/xdg-dbus-proxy/package.nix b/pkgs/by-name/xd/xdg-dbus-proxy/package.nix index 9c661cd0dc0b59..9468541da5e57b 100644 --- a/pkgs/by-name/xd/xdg-dbus-proxy/package.nix +++ b/pkgs/by-name/xd/xdg-dbus-proxy/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation (finalAttrs: { # dbus[2345]: Failed to start message bus: Failed to open "/etc/dbus-1/session.conf": No such file or directory doCheck = false; - meta = { + meta = with lib; { description = "DBus proxy for Flatpak and others"; homepage = "https://github.com/flatpak/xdg-dbus-proxy"; - license = lib.licenses.lgpl21Plus; + license = licenses.lgpl21Plus; mainProgram = "xdg-dbus-proxy"; - maintainers = with lib.maintainers; [ jtojnar ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ jtojnar ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/xd/xdg-terminal-exec-mkhl/package.nix b/pkgs/by-name/xd/xdg-terminal-exec-mkhl/package.nix index 1d6e61edb6b0a3..bdae1f2d1f459b 100644 --- a/pkgs/by-name/xd/xdg-terminal-exec-mkhl/package.nix +++ b/pkgs/by-name/xd/xdg-terminal-exec-mkhl/package.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-x2oEPFx2KRhnKPX3QjGBM16nkYGclxR5mELGYvxjtMA="; - meta = { + meta = with lib; { description = "Alternative rust-based implementation of the proposed XDG Default Terminal Execution Specification"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "xdg-terminal-exec"; - maintainers = with lib.maintainers; [ quantenzitrone ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ quantenzitrone ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/xd/xdg-terminal-exec/package.nix b/pkgs/by-name/xd/xdg-terminal-exec/package.nix index 4aff0dafa0d129..36309d4c7862d8 100644 --- a/pkgs/by-name/xd/xdg-terminal-exec/package.nix +++ b/pkgs/by-name/xd/xdg-terminal-exec/package.nix @@ -37,12 +37,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { --replace-fail '#!/bin/sh' '#!${lib.getExe dash}' ''; - meta = { + meta = with lib; { description = "Reference implementation of the proposed XDG Default Terminal Execution Specification"; homepage = "https://github.com/Vladimir-csp/xdg-terminal-exec"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "xdg-terminal-exec"; - maintainers = with lib.maintainers; [ quantenzitrone ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ quantenzitrone ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/xd/xdg-user-dirs-gtk/package.nix b/pkgs/by-name/xd/xdg-user-dirs-gtk/package.nix index f0ac6e12eb084d..ffc708a5777706 100644 --- a/pkgs/by-name/xd/xdg-user-dirs-gtk/package.nix +++ b/pkgs/by-name/xd/xdg-user-dirs-gtk/package.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation (finalAttrs: { packageName = "xdg-user-dirs-gtk"; }; - meta = { + meta = with lib; { homepage = "https://gitlab.gnome.org/GNOME/xdg-user-dirs-gtk"; description = "Companion to xdg-user-dirs that integrates it into the GNOME desktop and GTK applications"; - license = lib.licenses.gpl2Only; - maintainers = lib.teams.gnome.members; - platforms = lib.platforms.unix; + license = licenses.gpl2Only; + maintainers = teams.gnome.members; + platforms = platforms.unix; mainProgram = "xdg-user-dirs-gtk-update"; }; }) diff --git a/pkgs/by-name/xd/xdiskusage/package.nix b/pkgs/by-name/xd/xdiskusage/package.nix index e5f2ded9efb770..1bd923e51d02d2 100644 --- a/pkgs/by-name/xd/xdiskusage/package.nix +++ b/pkgs/by-name/xd/xdiskusage/package.nix @@ -16,12 +16,12 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ fltk ]; - meta = { + meta = with lib; { description = "Program to show you what is using up all your disk space"; homepage = "https://xdiskusage.sourceforge.net/"; - license = with lib.licenses; [ gpl2Plus ]; - maintainers = with lib.maintainers; [ fuzzdk ]; - platforms = with lib.platforms; linux; + license = with licenses; [ gpl2Plus ]; + maintainers = with maintainers; [ fuzzdk ]; + platforms = with platforms; linux; mainProgram = "xdiskusage"; }; }) diff --git a/pkgs/by-name/xd/xdotool/package.nix b/pkgs/by-name/xd/xdotool/package.nix index d6b44562a4f174..76b8cc99db921c 100644 --- a/pkgs/by-name/xd/xdotool/package.nix +++ b/pkgs/by-name/xd/xdotool/package.nix @@ -44,12 +44,12 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { homepage = "https://www.semicomplete.com/projects/xdotool/"; description = "Fake keyboard/mouse input, window management, and more"; - license = lib.licenses.bsd3; + license = licenses.bsd3; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; mainProgram = "xdotool"; }; } diff --git a/pkgs/by-name/xe/xe-guest-utilities/package.nix b/pkgs/by-name/xe/xe-guest-utilities/package.nix index 4d63c8660ac39d..a226e940017578 100644 --- a/pkgs/by-name/xe/xe-guest-utilities/package.nix +++ b/pkgs/by-name/xe/xe-guest-utilities/package.nix @@ -41,11 +41,11 @@ buildGoModule rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "XenServer guest utilities"; homepage = "https://github.com/xenserver/xe-guest-utilities"; - license = lib.licenses.bsd2; + license = licenses.bsd2; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/xe/xen-guest-agent/package.nix b/pkgs/by-name/xe/xen-guest-agent/package.nix index 07226a396fb86e..35900e2e2bfa84 100644 --- a/pkgs/by-name/xe/xen-guest-agent/package.nix +++ b/pkgs/by-name/xe/xen-guest-agent/package.nix @@ -38,12 +38,12 @@ rustPlatform.buildRustPackage rec { # Add the Xen libraries in the runpath so the guest agent can find libxenstore. "patchelf $out/bin/xen-guest-agent --add-rpath ${xen}/lib"; - meta = { + meta = with lib; { description = "Xen agent running in Linux/BSDs (POSIX) VMs"; homepage = "https://gitlab.com/xen-project/xen-guest-agent"; - license = lib.licenses.agpl3Only; - platforms = lib.platforms.unix; - maintainers = lib.teams.xen.members; + license = licenses.agpl3Only; + platforms = platforms.unix; + maintainers = teams.xen.members; mainProgram = "xen-guest-agent"; }; } diff --git a/pkgs/by-name/xe/xeus-zmq/package.nix b/pkgs/by-name/xe/xeus-zmq/package.nix index ae437416345813..a145b476bb6b35 100644 --- a/pkgs/by-name/xe/xeus-zmq/package.nix +++ b/pkgs/by-name/xe/xeus-zmq/package.nix @@ -36,11 +36,11 @@ clangStdenv.mkDerivation rec { propagatedBuildInputs = [ nlohmann_json ]; - meta = { + meta = with lib; { description = "ZeroMQ-based middleware for xeus"; homepage = "https://github.com/jupyter-xeus/xeus-zmq"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ thomasjm ]; - platforms = lib.platforms.all; + license = licenses.bsd3; + maintainers = with maintainers; [ thomasjm ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/xf/xfractint/package.nix b/pkgs/by-name/xf/xfractint/package.nix index bd3c45d299b237..9b6ba4e6c333af 100644 --- a/pkgs/by-name/xf/xfractint/package.nix +++ b/pkgs/by-name/xf/xfractint/package.nix @@ -25,13 +25,13 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { description = ""; # Code cannot be used in commercial programs # Looks like the definition hinges on the price, not license - license = lib.licenses.unfree; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.unfree; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; homepage = "https://www.fractint.net/"; mainProgram = "xfractint"; }; diff --git a/pkgs/by-name/xi/xine-lib/package.nix b/pkgs/by-name/xi/xine-lib/package.nix index f0e26e4fe02037..8bc372dd692162 100644 --- a/pkgs/by-name/xi/xine-lib/package.nix +++ b/pkgs/by-name/xi/xine-lib/package.nix @@ -90,15 +90,15 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { homepage = "https://xine.sourceforge.net/"; description = "High-performance, portable and reusable multimedia playback engine"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus lgpl2Plus ]; # No useful mainProgram - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/xi/xine-ui/package.nix b/pkgs/by-name/xi/xine-ui/package.nix index ddbd29be94c131..86b86d300c2baf 100644 --- a/pkgs/by-name/xi/xine-ui/package.nix +++ b/pkgs/by-name/xi/xine-ui/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { homepage = "https://xine.sourceforge.net/"; description = "Xlib-based frontend for Xine video player"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "xine"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/xi/xinetd/package.nix b/pkgs/by-name/xi/xinetd/package.nix index 9deff58cf1d21f..2d0f2fa16318f4 100644 --- a/pkgs/by-name/xi/xinetd/package.nix +++ b/pkgs/by-name/xi/xinetd/package.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation (finalAttrs: { libtirpc ]; - meta = { + meta = with lib; { description = "Secure replacement for inetd"; - platforms = lib.platforms.linux; + platforms = platforms.linux; homepage = "https://github.com/openSUSE/xinetd"; - license = lib.licenses.xinetd; - maintainers = with lib.maintainers; [ fgaz ]; + license = licenses.xinetd; + maintainers = with maintainers; [ fgaz ]; }; }) diff --git a/pkgs/by-name/xi/xinput_calibrator/package.nix b/pkgs/by-name/xi/xinput_calibrator/package.nix index e54ab099c87493..f65f121a97945b 100644 --- a/pkgs/by-name/xi/xinput_calibrator/package.nix +++ b/pkgs/by-name/xi/xinput_calibrator/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { xorg.libXext ]; - meta = { + meta = with lib; { homepage = "https://github.com/tias/xinput_calibrator"; description = "Generic touchscreen calibration program for X.Org"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.flosse ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = [ maintainers.flosse ]; + platforms = platforms.linux; mainProgram = "xinput_calibrator"; }; } diff --git a/pkgs/by-name/xk/xkbvalidate/package.nix b/pkgs/by-name/xk/xkbvalidate/package.nix index b12390c1baa295..f90bbe985b4628 100644 --- a/pkgs/by-name/xk/xkbvalidate/package.nix +++ b/pkgs/by-name/xk/xkbvalidate/package.nix @@ -7,11 +7,11 @@ runCommandCC "xkbvalidate" { buildInputs = [ libxkbcommon ]; - meta = { + meta = with lib; { description = "NixOS tool to validate X keyboard configuration"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.aszlig ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = [ maintainers.aszlig ]; mainProgram = "xkbvalidate"; }; } diff --git a/pkgs/by-name/xl/xld/package.nix b/pkgs/by-name/xl/xld/package.nix index 54941de427c3d2..bf40e740e69c66 100644 --- a/pkgs/by-name/xl/xld/package.nix +++ b/pkgs/by-name/xl/xld/package.nix @@ -51,13 +51,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { ''; }); - meta = { + meta = with lib; { description = "Lossless audio decoder"; homepage = "https://tmkk.undo.jp/xld/index_e.html"; - license = lib.licenses.osl3; - maintainers = with lib.maintainers; [ iivusly ]; - platforms = lib.platforms.darwin; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.osl3; + maintainers = with maintainers; [ iivusly ]; + platforms = platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; mainProgram = "xld"; }; }) diff --git a/pkgs/by-name/xl/xlights/package.nix b/pkgs/by-name/xl/xlights/package.nix index 10585522ef4a15..6e66821a22bc99 100644 --- a/pkgs/by-name/xl/xlights/package.nix +++ b/pkgs/by-name/xl/xlights/package.nix @@ -13,12 +13,12 @@ appimageTools.wrapType2 rec { hash = "sha256-pq+Xe2PRmQ1XpxH1gQi2zTpJlFABTer3g52PNgSOFnw="; }; - meta = { + meta = with lib; { description = "xLights is a sequencer for Lights. xLights has usb and E1.31 drivers. You can create sequences in this object oriented program. You can create playlists, schedule them, test your hardware, convert between different sequencers"; homepage = "https://xlights.org"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ kashw2 ]; - platforms = lib.platforms.linux; + license = licenses.gpl3; + maintainers = with maintainers; [ kashw2 ]; + platforms = platforms.linux; mainProgram = "xlights"; }; } diff --git a/pkgs/by-name/xm/xmacro/package.nix b/pkgs/by-name/xm/xmacro/package.nix index abfa4fca97e924..0b366b1b3a270e 100644 --- a/pkgs/by-name/xm/xmacro/package.nix +++ b/pkgs/by-name/xm/xmacro/package.nix @@ -26,8 +26,8 @@ stdenv.mkDerivation rec { libXi ]; - meta = { - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Plus; + meta = with lib; { + platforms = platforms.linux; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/xm/xml-security-c/package.nix b/pkgs/by-name/xm/xml-security-c/package.nix index e198848d0fa260..2d020a36ecd25a 100644 --- a/pkgs/by-name/xm/xml-security-c/package.nix +++ b/pkgs/by-name/xm/xml-security-c/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation (finalAttrs: { SystemConfiguration ]; - meta = { + meta = with lib; { homepage = "https://shibboleth.atlassian.net/wiki/spaces/DEV/pages/3726671873/Santuario"; description = "C++ Implementation of W3C security standards for XML"; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.jagajaga ]; + license = licenses.asl20; + platforms = platforms.unix; + maintainers = [ maintainers.jagajaga ]; }; }) diff --git a/pkgs/by-name/xm/xml-tooling-c/package.nix b/pkgs/by-name/xm/xml-tooling-c/package.nix index 118b087dba8a11..3371b72c4e2079 100644 --- a/pkgs/by-name/xm/xml-tooling-c/package.nix +++ b/pkgs/by-name/xm/xml-tooling-c/package.nix @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Low-level library that provides a high level interface to XML processing for OpenSAML 2"; - platforms = lib.platforms.unix; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.sigmanificient ]; + platforms = platforms.unix; + license = licenses.asl20; + maintainers = [ maintainers.sigmanificient ]; }; } diff --git a/pkgs/by-name/xm/xmlcopyeditor/package.nix b/pkgs/by-name/xm/xmlcopyeditor/package.nix index 6e614460b8b6c5..dac97d541f5861 100644 --- a/pkgs/by-name/xm/xmlcopyeditor/package.nix +++ b/pkgs/by-name/xm/xmlcopyeditor/package.nix @@ -52,12 +52,12 @@ stdenv.mkDerivation (finalAttrs: { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Fast, free, validating XML editor"; homepage = "https://xml-copy-editor.sourceforge.io/"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + platforms = platforms.unix; + maintainers = with maintainers; [ candeira wegank ]; diff --git a/pkgs/by-name/xm/xmldiff/package.nix b/pkgs/by-name/xm/xmldiff/package.nix index 20c03ad733e41e..312c1303a3c513 100644 --- a/pkgs/by-name/xm/xmldiff/package.nix +++ b/pkgs/by-name/xm/xmldiff/package.nix @@ -22,7 +22,7 @@ python3.pkgs.buildPythonApplication { setuptools ]; - meta = { + meta = with lib; { homepage = "https://xmldiff.readthedocs.io/en/stable/"; description = "Library and command line utility for diffing xml"; longDescription = '' @@ -36,7 +36,7 @@ python3.pkgs.buildPythonApplication { would not be readable by a human. xmldiff provides tools to make human readable diffs in those situations. ''; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ anpryl ]; + license = licenses.mit; + maintainers = with maintainers; [ anpryl ]; }; } diff --git a/pkgs/by-name/xm/xmlformat/package.nix b/pkgs/by-name/xm/xmlformat/package.nix index c42d0c60b7f601..e9737c53b88f39 100644 --- a/pkgs/by-name/xm/xmlformat/package.nix +++ b/pkgs/by-name/xm/xmlformat/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { cp ./LICENSE $out/ ''; - meta = { + meta = with lib; { description = "Configurable formatter (or 'pretty-printer') for XML documents"; mainProgram = "xmlformat"; homepage = "http://www.kitebird.com/software/xmlformat/"; - license = lib.licenses.bsd3; - platforms = lib.platforms.all; + license = licenses.bsd3; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/xm/xmlindent/package.nix b/pkgs/by-name/xm/xmlindent/package.nix index 1040d74c4e2df9..d50a7caf63e883 100644 --- a/pkgs/by-name/xm/xmlindent/package.nix +++ b/pkgs/by-name/xm/xmlindent/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation rec { substituteInPlace Makefile --replace "PREFIX=/usr/local" "PREFIX=$out" ''; - meta = { + meta = with lib; { description = "XML stream reformatter"; mainProgram = "xmlindent"; homepage = "https://xmlindent.sourceforge.net/"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; + license = licenses.gpl3; + platforms = platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/by-name/xm/xmlstarlet/package.nix b/pkgs/by-name/xm/xmlstarlet/package.nix index 574b2d87c7381b..a5cba7d2b4eaad 100644 --- a/pkgs/by-name/xm/xmlstarlet/package.nix +++ b/pkgs/by-name/xm/xmlstarlet/package.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { ln -s xml $out/bin/xmlstarlet ''; - meta = { + meta = with lib; { description = "Command line tool for manipulating and querying XML data"; homepage = "https://xmlstar.sourceforge.net/"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "xmlstarlet"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/xm/xmoji/package.nix b/pkgs/by-name/xm/xmoji/package.nix index f1152d912ad831..e33d20fb3a5813 100644 --- a/pkgs/by-name/xm/xmoji/package.nix +++ b/pkgs/by-name/xm/xmoji/package.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation (finalAttrs: { makeFlags = [ "prefix=${placeholder "out"}" ]; - meta = { + meta = with lib; { description = "Plain X11 emoji keyboard"; homepage = "https://github.com/Zirias/xmoji"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ sigmanificient ]; - platforms = lib.platforms.linux; + license = licenses.bsd2; + maintainers = with maintainers; [ sigmanificient ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/xn/xnbd/package.nix b/pkgs/by-name/xn/xnbd/package.nix index a78ea536eb6032..ea6a534f948e3a 100644 --- a/pkgs/by-name/xn/xnbd/package.nix +++ b/pkgs/by-name/xn/xnbd/package.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { substituteInPlace Makefile.am --replace "lib doc ." "lib ." ''; - meta = { + meta = with lib; { homepage = "https://bitbucket.org/hirofuchi/xnbd"; description = "Yet another NBD (Network Block Device) server program"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/xn/xnee/package.nix b/pkgs/by-name/xn/xnee/package.nix index adccf198f2ac8f..df613e6e376f17 100644 --- a/pkgs/by-name/xn/xnee/package.nix +++ b/pkgs/by-name/xn/xnee/package.nix @@ -92,7 +92,7 @@ stdenv.mkDerivation (finalAttrs: { # XXX: Actually tests require an X server. doCheck = true; - meta = { + meta = with lib; { description = "X11 event recording and replay tool"; longDescription = '' Xnee is a suite of programs that can record, replay and distribute @@ -102,8 +102,8 @@ stdenv.mkDerivation (finalAttrs: { "macros", retype a file. ''; homepage = "https://www.gnu.org/software/xnee/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ wegank ]; - platforms = lib.platforms.unix; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ wegank ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/xo/xonsh/unwrapped.nix b/pkgs/by-name/xo/xonsh/unwrapped.nix index b98d12137850b7..326ba9656ab506 100644 --- a/pkgs/by-name/xo/xonsh/unwrapped.nix +++ b/pkgs/by-name/xo/xonsh/unwrapped.nix @@ -115,13 +115,13 @@ let updateScript = gitUpdater { }; }; - meta = { + meta = with lib; { homepage = "https://xon.sh/"; description = "Python-ish, BASHwards-compatible shell"; changelog = "https://github.com/xonsh/xonsh/raw/main/CHANGELOG.rst"; - license = with lib.licenses; [ bsd3 ]; + license = with licenses; [ bsd3 ]; mainProgram = "xonsh"; - maintainers = with lib.maintainers; [ samlukeyes123 ]; + maintainers = with maintainers; [ samlukeyes123 ]; }; }; in diff --git a/pkgs/by-name/xo/xoscope/package.nix b/pkgs/by-name/xo/xoscope/package.nix index d911f997cd76ae..a0ef7d29e1998c 100644 --- a/pkgs/by-name/xo/xoscope/package.nix +++ b/pkgs/by-name/xo/xoscope/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { alsa-lib ]; - meta = { + meta = with lib; { description = "Oscilloscope through the sound card"; mainProgram = "xoscope"; homepage = "https://xoscope.sourceforge.net"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/xo/xosview/package.nix b/pkgs/by-name/xo/xosview/package.nix index 5969717355c405..4ba30069c7aed2 100644 --- a/pkgs/by-name/xo/xosview/package.nix +++ b/pkgs/by-name/xo/xosview/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation (finalAttrs: { "PLATFORM=linux" ]; - meta = { + meta = with lib; { homepage = "http://www.pogo.org.uk/~mark/xosview/"; description = "Classic system monitoring tool"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "xosview"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = with lib.platforms; linux; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = with platforms; linux; }; }) diff --git a/pkgs/by-name/xr/xray/package.nix b/pkgs/by-name/xr/xray/package.nix index 64ef30b9ad8665..d49aedbd0b5b13 100644 --- a/pkgs/by-name/xr/xray/package.nix +++ b/pkgs/by-name/xr/xray/package.nix @@ -57,11 +57,11 @@ buildGoModule rec { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Platform for building proxies to bypass network restrictions. A replacement for v2ray-core, with XTLS support and fully compatible configuration"; mainProgram = "xray"; homepage = "https://github.com/XTLS/Xray-core"; - license = with lib.licenses; [ mpl20 ]; - maintainers = with lib.maintainers; [ iopq ]; + license = with licenses; [ mpl20 ]; + maintainers = with maintainers; [ iopq ]; }; } diff --git a/pkgs/by-name/xr/xrizer/package.nix b/pkgs/by-name/xr/xrizer/package.nix index b37e42f483fc73..9d241d2e2c8b87 100644 --- a/pkgs/by-name/xr/xrizer/package.nix +++ b/pkgs/by-name/xr/xrizer/package.nix @@ -47,11 +47,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "XR-ize your favorite OpenVR games"; homepage = "https://github.com/Supreeeme/xrizer"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ Scrumplex ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ Scrumplex ]; # TODO: support more systems # To do so, we need to map systems to the format openvr expects. # i.e. x86_64-linux -> linux64, aarch64-linux -> linuxarm64 diff --git a/pkgs/by-name/xr/xrq/package.nix b/pkgs/by-name/xr/xrq/package.nix index 2b2cba3f9c2440..4ecd465d8df93c 100644 --- a/pkgs/by-name/xr/xrq/package.nix +++ b/pkgs/by-name/xr/xrq/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation { buildInputs = [ libX11 ]; - meta = { + meta = with lib; { description = "X utility for querying xrdb"; homepage = "https://github.com/arianon/xrq"; - license = lib.licenses.mit; - platforms = with lib.platforms; unix; + license = licenses.mit; + platforms = with platforms; unix; mainProgram = "xrq"; }; } diff --git a/pkgs/by-name/xs/xscreensaver/package.nix b/pkgs/by-name/xs/xscreensaver/package.nix index f3528d816090b4..69dc2ce513ff1c 100644 --- a/pkgs/by-name/xs/xscreensaver/package.nix +++ b/pkgs/by-name/xs/xscreensaver/package.nix @@ -130,15 +130,15 @@ stdenv.mkDerivation (finalAttrs: { xscreensaver = nixosTests.xscreensaver; }; - meta = { + meta = with lib; { homepage = "https://www.jwz.org/xscreensaver/"; description = "Set of screensavers"; downloadPage = "https://www.jwz.org/xscreensaver/download.html"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ raskin AndersonTorres ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/xs/xsok/package.nix b/pkgs/by-name/xs/xsok/package.nix index 90f312db099011..ece810ae18eaae 100644 --- a/pkgs/by-name/xs/xsok/package.nix +++ b/pkgs/by-name/xs/xsok/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { echo Nethack > "$out/share/games/lib/xsok/gametypes" ''; - meta = { + meta = with lib; { description = "Generic Sokoban game for X11"; mainProgram = "xsok"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = [ maintainers.raskin ]; + platforms = platforms.unix; homepage = "https://tracker.debian.org/pkg/xsok"; }; } diff --git a/pkgs/by-name/xs/xssproxy/package.nix b/pkgs/by-name/xs/xssproxy/package.nix index cf80c18f1c0df4..3fe59b8ad3c7d7 100644 --- a/pkgs/by-name/xs/xssproxy/package.nix +++ b/pkgs/by-name/xs/xssproxy/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { "man1dir=$(out)/share/man/man1" ]; - meta = { + meta = with lib; { description = "Forward freedesktop.org Idle Inhibition Service calls to Xss"; mainProgram = "xssproxy"; homepage = "https://github.com/vincentbernat/xssproxy"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ benley ]; - platforms = lib.platforms.unix; + license = licenses.gpl3; + maintainers = with maintainers; [ benley ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/xt/xtermcontrol/package.nix b/pkgs/by-name/xt/xtermcontrol/package.nix index eb0cfbf743297b..e928a490a32fda 100644 --- a/pkgs/by-name/xt/xtermcontrol/package.nix +++ b/pkgs/by-name/xt/xtermcontrol/package.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { sha256 = "sha256-Vh6GNiDkjNhaD9U/3fG2LpMLN39L3jRUgG/FQeG1z40="; }; - meta = { + meta = with lib; { description = "Enables dynamic control of xterm properties"; longDescription = '' Enables dynamic control of xterm properties. @@ -22,9 +22,9 @@ stdenv.mkDerivation rec { To complete the feature set; xtermcontrol lets advanced users issue any xterm control sequence of their choosing. ''; homepage = "http://thrysoee.dk/xtermcontrol"; - license = lib.licenses.gpl2; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.derchris ]; + license = licenses.gpl2; + platforms = platforms.unix; + maintainers = [ maintainers.derchris ]; mainProgram = "xtermcontrol"; }; } diff --git a/pkgs/by-name/xt/xtf/package.nix b/pkgs/by-name/xt/xtf/package.nix index b4712af35a727d..1e2723b64ae5e7 100644 --- a/pkgs/by-name/xt/xtf/package.nix +++ b/pkgs/by-name/xt/xtf/package.nix @@ -67,12 +67,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Xen Test Framework and Suite for creating microkernel-based tests"; homepage = "https://xenbits.xenproject.org/docs/xtf/index.html"; - license = lib.licenses.bsd2; - maintainers = lib.teams.xen.members; + license = licenses.bsd2; + maintainers = teams.xen.members; mainProgram = "xtf-runner"; - platforms = lib.lists.intersectLists lib.platforms.linux lib.platforms.x86_64; + platforms = lists.intersectLists platforms.linux platforms.x86_64; }; } diff --git a/pkgs/by-name/xt/xtrlock-pam/package.nix b/pkgs/by-name/xt/xtrlock-pam/package.nix index 0136fbc5c287b6..ffd524806ea2e7 100644 --- a/pkgs/by-name/xt/xtrlock-pam/package.nix +++ b/pkgs/by-name/xt/xtrlock-pam/package.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation { python configure --prefix=$out ''; - meta = { + meta = with lib; { homepage = "https://github.com/aanatoly/xtrlock-pam"; description = "PAM based X11 screen locker"; license = "unknown"; - maintainers = with lib.maintainers; [ ondt ]; - platforms = with lib.platforms; linux; + maintainers = with maintainers; [ ondt ]; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/xu/xunit-viewer/package.nix b/pkgs/by-name/xu/xunit-viewer/package.nix index 4e3ccd52d7bae4..8c1149d8d26b54 100644 --- a/pkgs/by-name/xu/xunit-viewer/package.nix +++ b/pkgs/by-name/xu/xunit-viewer/package.nix @@ -33,11 +33,11 @@ buildNpmPackage { example = callPackage ./test/example.nix { }; }; - meta = { + meta = with lib; { description = "View your xunit results using JavaScript"; homepage = "https://lukejpreston.github.io/xunit-viewer"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ pluiedev ]; - platforms = lib.platforms.all; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ pluiedev ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/xv/xva-img/package.nix b/pkgs/by-name/xv/xva-img/package.nix index 64b3c36e9212c6..5b9891735297d3 100644 --- a/pkgs/by-name/xv/xva-img/package.nix +++ b/pkgs/by-name/xv/xva-img/package.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { buildInputs = [ openssl ]; - meta = { - maintainers = with lib.maintainers; [ willibutz ]; + meta = with lib; { + maintainers = with maintainers; [ willibutz ]; description = "Tool for converting Xen images to raw and back"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + platforms = platforms.unix; mainProgram = "xva-img"; }; } diff --git a/pkgs/by-name/xw/xwiimote/package.nix b/pkgs/by-name/xw/xwiimote/package.nix index 0114dba7140055..4a999508cd30cb 100644 --- a/pkgs/by-name/xw/xwiimote/package.nix +++ b/pkgs/by-name/xw/xwiimote/package.nix @@ -36,12 +36,12 @@ stdenv.mkDerivation { cp "res/50-xorg-fix-xwiimote.conf" "$out/etc/X11/xorg.conf.d/50-fix-xwiimote.conf" ''; - meta = { + meta = with lib; { homepage = "https://xwiimote.github.io/xwiimote/"; description = "Userspace utilities to control connected Nintendo Wii Remotes"; mainProgram = "xwiishow"; - platforms = lib.platforms.linux; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pyrox0 ]; + platforms = platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/by-name/xw/xwinmosaic/package.nix b/pkgs/by-name/xw/xwinmosaic/package.nix index e833fcb82efc42..356eb6cf83648a 100644 --- a/pkgs/by-name/xw/xwinmosaic/package.nix +++ b/pkgs/by-name/xw/xwinmosaic/package.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { libXdamage ]; - meta = { + meta = with lib; { description = "X window switcher drawing a colourful grid"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.bsd2; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; mainProgram = "xwinmosaic"; }; } diff --git a/pkgs/by-name/xz/xzoom/package.nix b/pkgs/by-name/xz/xzoom/package.nix index 5cd13fc5a71295..1541bbaafae1fc 100644 --- a/pkgs/by-name/xz/xzoom/package.nix +++ b/pkgs/by-name/xz/xzoom/package.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { "install.man" ]; - meta = { + meta = with lib; { description = "X11 screen zoom tool"; - license = lib.licenses.free; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.free; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; mainProgram = "xzoom"; }; } diff --git a/pkgs/by-name/ya/yabasic/package.nix b/pkgs/by-name/ya/yabasic/package.nix index 677ac5be4b749c..a5738958cdc803 100644 --- a/pkgs/by-name/ya/yabasic/package.nix +++ b/pkgs/by-name/ya/yabasic/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation (finalAttrs: { ncurses ]; - meta = { + meta = with lib; { homepage = "http://2484.de/yabasic/"; description = "Yet another BASIC"; mainProgram = "yabasic"; @@ -39,8 +39,8 @@ stdenv.mkDerivation (finalAttrs: { and free. ''; changelog = "https://2484.de/yabasic/whatsnew.html"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ya/yaffshiv/package.nix b/pkgs/by-name/ya/yaffshiv/package.nix index 2b319ad44d0a96..7e7e1dec0329d8 100644 --- a/pkgs/by-name/ya/yaffshiv/package.nix +++ b/pkgs/by-name/ya/yaffshiv/package.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation { install -D -m755 src/yaffshiv $out/bin/yaffshiv ''; - meta = { + meta = with lib; { description = "Simple YAFFS file system parser and extractor"; homepage = "https://github.com/devttys0/yaffshiv"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sgo ]; + license = licenses.mit; + maintainers = with maintainers; [ sgo ]; mainProgram = "yaffshiv"; }; } diff --git a/pkgs/by-name/ya/yaft/package.nix b/pkgs/by-name/ya/yaft/package.nix index ceab3d6d8610d8..80bc2785a9351f 100644 --- a/pkgs/by-name/ya/yaft/package.nix +++ b/pkgs/by-name/ya/yaft/package.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { echo "$terminfo" >> $out/nix-support/propagated-user-env-packages ''; - meta = { + meta = with lib; { homepage = "https://github.com/uobikiemukot/yaft"; description = "Yet another framebuffer terminal"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.matthiasbeyer ]; - platforms = with lib.platforms; linux; + license = licenses.mit; + maintainers = [ maintainers.matthiasbeyer ]; + platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/ya/yajl/package.nix b/pkgs/by-name/ya/yajl/package.nix index e665ae8e662677..d6061c1d8b8341 100644 --- a/pkgs/by-name/ya/yajl/package.nix +++ b/pkgs/by-name/ya/yajl/package.nix @@ -27,16 +27,16 @@ stdenv.mkDerivation (finalAttrs: { tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; }; - meta = { + meta = with lib; { description = "Yet Another JSON Library"; longDescription = '' YAJL is a small event-driven (SAX-style) JSON parser written in ANSI C, and a small validating JSON generator. ''; homepage = "http://lloyd.github.com/yajl/"; - license = lib.licenses.isc; + license = licenses.isc; pkgConfigModules = [ "yajl" ]; - platforms = with lib.platforms; linux ++ darwin; - maintainers = with lib.maintainers; [ maggesi ]; + platforms = with platforms; linux ++ darwin; + maintainers = with maintainers; [ maggesi ]; }; }) diff --git a/pkgs/by-name/ya/yajsv/package.nix b/pkgs/by-name/ya/yajsv/package.nix index 6d08a5d87f269f..3e9e8dbfef20c1 100644 --- a/pkgs/by-name/ya/yajsv/package.nix +++ b/pkgs/by-name/ya/yajsv/package.nix @@ -31,11 +31,11 @@ buildGoModule { $out/bin/yajsv -v > /dev/null ''; - meta = { + meta = with lib; { description = "Yet Another JSON Schema Validator"; homepage = "https://github.com/neilpa/yajsv"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ rycee ]; + license = licenses.mit; + maintainers = with maintainers; [ rycee ]; mainProgram = "yajsv"; }; } diff --git a/pkgs/by-name/ya/yalc/package.nix b/pkgs/by-name/ya/yalc/package.nix index 5e9fe9c5fbfdfe..cc86c16ebbb04b 100644 --- a/pkgs/by-name/ya/yalc/package.nix +++ b/pkgs/by-name/ya/yalc/package.nix @@ -36,11 +36,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Work with yarn/npm packages locally like a boss"; mainProgram = "yalc"; homepage = "https://github.com/wclr/yalc"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pyrox0 ]; + license = licenses.mit; + maintainers = with maintainers; [ pyrox0 ]; }; }) diff --git a/pkgs/by-name/ya/yambar-hyprland-wses/package.nix b/pkgs/by-name/ya/yambar-hyprland-wses/package.nix index 871c4cecf5f49b..c1728e1933e0c6 100644 --- a/pkgs/by-name/ya/yambar-hyprland-wses/package.nix +++ b/pkgs/by-name/ya/yambar-hyprland-wses/package.nix @@ -17,15 +17,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-/ewEgrBxRw5Xii5PX1GLKzBrZjgnzYc/Hz+M1pJpncQ="; - meta = { + meta = with lib; { description = "Enable Yambar to show Hyprland workspaces"; homepage = "https://github.com/jonhoo/yambar-hyprland-wses"; - license = with lib.licenses; [ + license = with licenses; [ asl20 mit ]; - maintainers = with lib.maintainers; [ ludovicopiero ]; + maintainers = with maintainers; [ ludovicopiero ]; mainProgram = "yambar-hyprland-wses"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ya/yaml-filter/package.nix b/pkgs/by-name/ya/yaml-filter/package.nix index 1f7f19b9ddef79..1f2ef0919dd2b6 100644 --- a/pkgs/by-name/ya/yaml-filter/package.nix +++ b/pkgs/by-name/ya/yaml-filter/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { buildInputs = [ libyaml ]; - meta = { + meta = with lib; { description = "YAML document filtering for libyaml"; homepage = "https://github.com/OpenSCAP/yaml-filter"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tochiaha ]; + license = licenses.mit; + maintainers = with maintainers; [ tochiaha ]; mainProgram = "yamlp"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/ya/yanone-kaffeesatz/package.nix b/pkgs/by-name/ya/yanone-kaffeesatz/package.nix index 0c68556eb0123c..265952405c65a7 100644 --- a/pkgs/by-name/ya/yanone-kaffeesatz/package.nix +++ b/pkgs/by-name/ya/yanone-kaffeesatz/package.nix @@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Free font classic"; - maintainers = with lib.maintainers; [ mt-caret ]; - platforms = with lib.platforms; all; + maintainers = with maintainers; [ mt-caret ]; + platforms = with platforms; all; homepage = "https://yanone.de/fonts/kaffeesatz/"; - license = lib.licenses.ofl; + license = licenses.ofl; }; } diff --git a/pkgs/by-name/ya/yarp/package.nix b/pkgs/by-name/ya/yarp/package.nix index f14e40f931fa85..f35448735b179f 100644 --- a/pkgs/by-name/ya/yarp/package.nix +++ b/pkgs/by-name/ya/yarp/package.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { postInstall = "mv ./$out/lib/*.so $out/lib/"; - meta = { + meta = with lib; { description = "Yet Another Robot Platform"; homepage = "http://yarp.it"; - license = lib.licenses.lgpl21; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.nico202 ]; + license = licenses.lgpl21; + platforms = platforms.linux; + maintainers = [ maintainers.nico202 ]; }; } diff --git a/pkgs/by-name/ya/yasr/package.nix b/pkgs/by-name/ya/yasr/package.nix index 604bb3691a2ed8..17bc57a156f496 100644 --- a/pkgs/by-name/ya/yasr/package.nix +++ b/pkgs/by-name/ya/yasr/package.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { ./40_dectalk_extended_chars.patch ]; # taken from the debian yasr package - meta = { + meta = with lib; { homepage = "https://yasr.sourceforge.net"; description = "General-purpose console screen reader"; longDescription = "Yasr is a general-purpose console screen reader for GNU/Linux and other Unix-like operating systems."; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2; + platforms = platforms.linux; + license = licenses.gpl2; maintainers = [ ]; mainProgram = "yasr"; }; diff --git a/pkgs/by-name/ya/yate/package.nix b/pkgs/by-name/ya/yate/package.nix index afa83f56807356..e5b372dc7b6bd3 100644 --- a/pkgs/by-name/ya/yate/package.nix +++ b/pkgs/by-name/ya/yate/package.nix @@ -35,13 +35,13 @@ stdenv.mkDerivation rec { -e 's@-Wl,--retain-symbols-file@@' ''; - meta = { + meta = with lib; { description = "Yet another telephony engine"; homepage = "https://yate.ro/"; # Yate's license is GPL with an exception for linking with # OpenH323 and PWlib (licensed under MPL). - license = lib.licenses.gpl2Only; - maintainers = [ lib.maintainers.marcweber ]; + license = licenses.gpl2Only; + maintainers = [ maintainers.marcweber ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/ya/yazi-unwrapped/package.nix b/pkgs/by-name/ya/yazi-unwrapped/package.nix index a092cbb7601704..99202689b9413c 100644 --- a/pkgs/by-name/ya/yazi-unwrapped/package.nix +++ b/pkgs/by-name/ya/yazi-unwrapped/package.nix @@ -41,11 +41,11 @@ rustPlatform.buildRustPackage rec { passthru.updateScript.command = [ ./update.sh ]; - meta = { + meta = with lib; { description = "Blazing fast terminal file manager written in Rust, based on async I/O"; homepage = "https://github.com/sxyazi/yazi"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ eljamm khaneliman linsui diff --git a/pkgs/by-name/yd/ydotool/package.nix b/pkgs/by-name/yd/ydotool/package.nix index 137a701d87a363..fd8c95e937f040 100644 --- a/pkgs/by-name/yd/ydotool/package.nix +++ b/pkgs/by-name/yd/ydotool/package.nix @@ -35,15 +35,15 @@ stdenv.mkDerivation (finalAttrs: { passthru.tests.basic = nixosTests.ydotool; - meta = { + meta = with lib; { description = "Generic Linux command-line automation tool"; homepage = "https://github.com/ReimuNotMoe/ydotool"; - license = lib.licenses.agpl3Plus; + license = licenses.agpl3Plus; mainProgram = "ydotool"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ willibutz kraem ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ye/yeahconsole/package.nix b/pkgs/by-name/ye/yeahconsole/package.nix index 9cf2ec38ecc3c7..54c0e981bb0ae9 100644 --- a/pkgs/by-name/ye/yeahconsole/package.nix +++ b/pkgs/by-name/ye/yeahconsole/package.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { sed -i "s@PREFIX = /usr/local@PREFIX = $out@g" Makefile ''; - meta = { + meta = with lib; { description = "Turns an xterm into a gamelike console"; homepage = "https://github.com/jceb/yeahconsole"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ jceb ]; - platforms = lib.platforms.all; + license = licenses.gpl2Only; + maintainers = with maintainers; [ jceb ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/yo/yofi/package.nix b/pkgs/by-name/yo/yofi/package.nix index ecd4c9976ff0a7..9aecee7b9a8bdd 100644 --- a/pkgs/by-name/yo/yofi/package.nix +++ b/pkgs/by-name/yo/yofi/package.nix @@ -53,12 +53,12 @@ rustPlatform.buildRustPackage rec { "--skip=screen::context::test" ]; - meta = { + meta = with lib; { description = "Minimalist app launcher in Rust"; homepage = "https://github.com/l4l/yofi"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ rayslash ]; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ rayslash ]; mainProgram = "yofi"; }; } diff --git a/pkgs/by-name/yo/yoink/package.nix b/pkgs/by-name/yo/yoink/package.nix index 8a816e104506de..f70fc1e289e7b6 100644 --- a/pkgs/by-name/yo/yoink/package.nix +++ b/pkgs/by-name/yo/yoink/package.nix @@ -20,10 +20,10 @@ buildGoModule { vendorHash = "sha256-cnfh2D/k4JP9BNlI+6FVLBFyk5XMIYG/DotUdAZaY0Q="; - meta = { + meta = with lib; { homepage = "https://github.com/MrMarble/yoink"; description = "Automatically download freeleech torrents"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ hogcycle ]; + license = licenses.mit; + maintainers = with maintainers; [ hogcycle ]; }; } diff --git a/pkgs/by-name/yo/you-have-mail-cli/package.nix b/pkgs/by-name/yo/you-have-mail-cli/package.nix index bab211d788dfce..b7a049e0358f90 100644 --- a/pkgs/by-name/yo/you-have-mail-cli/package.nix +++ b/pkgs/by-name/yo/you-have-mail-cli/package.nix @@ -51,11 +51,11 @@ rustPlatform.buildRustPackage { }; }; - meta = { + meta = with lib; { description = "Small application to notify you when you receive an email in your email account"; homepage = "https://github.com/LeanderBB/you-have-mail-cli"; - license = lib.licenses.agpl3Only; + license = licenses.agpl3Only; mainProgram = "you-have-mail-cli"; - maintainers = with lib.maintainers; [ baksa ]; + maintainers = with maintainers; [ baksa ]; }; } diff --git a/pkgs/by-name/yo/youtrack/package.nix b/pkgs/by-name/yo/youtrack/package.nix index 8cfc4c27347d41..8486ed03d884d0 100644 --- a/pkgs/by-name/yo/youtrack/package.nix +++ b/pkgs/by-name/yo/youtrack/package.nix @@ -41,11 +41,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { description = "Issue tracking and project management tool for developers"; - maintainers = lib.teams.serokell.members ++ [ lib.maintainers.leona ]; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + maintainers = teams.serokell.members ++ [ maintainers.leona ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; # https://www.jetbrains.com/youtrack/buy/license.html - license = lib.licenses.unfree; + license = licenses.unfree; }; }) diff --git a/pkgs/by-name/yp/ypbind-mt/package.nix b/pkgs/by-name/yp/ypbind-mt/package.nix index 68db0f4aa9b0bf..b8234f2eeb1415 100644 --- a/pkgs/by-name/yp/ypbind-mt/package.nix +++ b/pkgs/by-name/yp/ypbind-mt/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation rec { systemdLibs ]; - meta = { + meta = with lib; { description = "Multithreaded daemon maintaining the NIS binding informations."; homepage = "https://github.com/thkukuk/ypbind-mt"; changelog = "https://github.com/thkukuk/ypbind-mt/blob/master/NEWS"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "ypbind"; - maintainers = with lib.maintainers; [ BarrOff ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ BarrOff ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/yt/yt-dlg/package.nix b/pkgs/by-name/yt/yt-dlg/package.nix index a5ba63307be0dc..89b4348c9c427d 100644 --- a/pkgs/by-name/yt/yt-dlg/package.nix +++ b/pkgs/by-name/yt/yt-dlg/package.nix @@ -30,11 +30,11 @@ python3Packages.buildPythonApplication rec { cp -r youtube_dl_gui/data/* $out/share ''; - meta = { + meta = with lib; { description = "Cross platform front-end GUI of the popular youtube-dl written in wxPython"; homepage = "https://oleksis.github.io/youtube-dl-gui"; - license = lib.licenses.unlicense; + license = licenses.unlicense; mainProgram = "yt-dlg"; - maintainers = with lib.maintainers; [ quantenzitrone ]; + maintainers = with maintainers; [ quantenzitrone ]; }; } diff --git a/pkgs/by-name/yt/ytalk/package.nix b/pkgs/by-name/yt/ytalk/package.nix index 28840545b50682..bde3c12efe7f4a 100644 --- a/pkgs/by-name/yt/ytalk/package.nix +++ b/pkgs/by-name/yt/ytalk/package.nix @@ -16,12 +16,12 @@ stdenv.mkDerivation rec { buildInputs = [ ncurses ]; - meta = { + meta = with lib; { homepage = "http://ytalk.ourproject.org"; description = "Terminal based talk client"; mainProgram = "ytalk"; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ taeer ]; - license = lib.licenses.gpl2Plus; + platforms = platforms.unix; + maintainers = with maintainers; [ taeer ]; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/by-name/yt/ytcc/package.nix b/pkgs/by-name/yt/ytcc/package.nix index 4fb2f6db939948..92d63495e8ea16 100644 --- a/pkgs/by-name/yt/ytcc/package.nix +++ b/pkgs/by-name/yt/ytcc/package.nix @@ -59,10 +59,10 @@ python3Packages.buildPythonApplication rec { --zsh scripts/completions/zsh/_ytcc ''; - meta = { + meta = with lib; { description = "Command Line tool to keep track of your favourite YouTube channels without signing up for a Google account"; homepage = "https://github.com/woefe/ytcc"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ marius851000 ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ marius851000 ]; }; } diff --git a/pkgs/by-name/yt/ytdownloader/package.nix b/pkgs/by-name/yt/ytdownloader/package.nix index 0d831a9b011a40..fb46c3421171ef 100644 --- a/pkgs/by-name/yt/ytdownloader/package.nix +++ b/pkgs/by-name/yt/ytdownloader/package.nix @@ -71,12 +71,12 @@ buildNpmPackage rec { install -Dm444 assets/images/icon.png $out/share/pixmaps/ytdownloader.png ''; - meta = { + meta = with lib; { description = "Modern GUI video and audio downloader"; homepage = "https://github.com/aandrew-me/ytDownloader"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ chewblacka ]; - platforms = lib.platforms.all; + license = licenses.gpl3Only; + maintainers = with maintainers; [ chewblacka ]; + platforms = platforms.all; mainProgram = "ytdownloader"; }; } diff --git a/pkgs/by-name/yt/ytree/package.nix b/pkgs/by-name/yt/ytree/package.nix index 6e8846302e5886..1cc6a5ca7fc198 100644 --- a/pkgs/by-name/yt/ytree/package.nix +++ b/pkgs/by-name/yt/ytree/package.nix @@ -35,13 +35,13 @@ stdenv.mkDerivation (finalAttrs: { mkdir -p $out/bin $out/share/man/man1 ''; - meta = { + meta = with lib; { homepage = "https://www.han.de/~werner/ytree.html"; description = "Curses-based file manager similar to DOS Xtree(TM)"; - license = with lib.licenses; [ gpl2Plus ]; + license = with licenses; [ gpl2Plus ]; mainProgram = "ytree"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) # TODO: X11 support diff --git a/pkgs/by-name/yu/yubico-piv-tool/package.nix b/pkgs/by-name/yu/yubico-piv-tool/package.nix index ed8ef956b590c1..3bdf41b83ccc48 100644 --- a/pkgs/by-name/yu/yubico-piv-tool/package.nix +++ b/pkgs/by-name/yu/yubico-piv-tool/package.nix @@ -78,7 +78,7 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { homepage = "https://developers.yubico.com/yubico-piv-tool/"; changelog = "https://developers.yubico.com/yubico-piv-tool/Release_Notes.html"; description = '' @@ -92,9 +92,9 @@ stdenv.mkDerivation (finalAttrs: { certificates, and create certificate requests, and other operations. A shared library and a command-line tool is included. ''; - license = lib.licenses.bsd2; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + license = licenses.bsd2; + platforms = platforms.all; + maintainers = with maintainers; [ viraptor anthonyroussel ]; diff --git a/pkgs/by-name/yu/yudit/package.nix b/pkgs/by-name/yu/yudit/package.nix index e7131c8c54d094..57fd76b8c96700 100644 --- a/pkgs/by-name/yu/yudit/package.nix +++ b/pkgs/by-name/yu/yudit/package.nix @@ -18,15 +18,15 @@ stdenv.mkDerivation (finalAttrs: { xorg.libX11 ]; - meta = { + meta = with lib; { description = "Free Unicode plain-text editor for Unix-like systems"; homepage = "https://www.yudit.org/"; changelog = "https://www.yudit.org/download/CHANGELOG.TXT"; mainProgram = "yudit"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ doronbehar ]; # Might work on Darwin but currently fails, and upstream doesn't officially # supports it. - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/za/zammad/update.nix b/pkgs/by-name/za/zammad/update.nix index a0c436566f7544..548a9abedb0a99 100644 --- a/pkgs/by-name/za/zammad/update.nix +++ b/pkgs/by-name/za/zammad/update.nix @@ -32,9 +32,9 @@ stdenvNoCC.mkDerivation rec { yarn2nix ]; - meta = { - maintainers = with lib.maintainers; [ ]; + meta = with lib; { + maintainers = with maintainers; [ ]; description = "Utility to generate Nix expressions for Zammad's dependencies"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/zd/zd1211fw/package.nix b/pkgs/by-name/zd/zd1211fw/package.nix index 632a5c60ff883a..f9c266e2f99ab8 100644 --- a/pkgs/by-name/zd/zd1211fw/package.nix +++ b/pkgs/by-name/zd/zd1211fw/package.nix @@ -22,10 +22,10 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Firmware for the ZyDAS ZD1211(b) 802.11a/b/g USB WLAN chip"; homepage = "https://sourceforge.net/projects/zd1211/"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ze/zegrapher/package.nix b/pkgs/by-name/ze/zegrapher/package.nix index d4794550eddf9e..b43fc44d8ce9bc 100644 --- a/pkgs/by-name/ze/zegrapher/package.nix +++ b/pkgs/by-name/ze/zegrapher/package.nix @@ -31,16 +31,16 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { homepage = "https://zegrapher.com/en/"; description = "Open source math plotter"; longDescription = '' An open source, free and easy to use math plotter. It can plot functions, sequences, parametric equations and data on the plane. ''; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "ZeGrapher"; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/ze/zenoh-backend-filesystem/package.nix b/pkgs/by-name/ze/zenoh-backend-filesystem/package.nix index 0717a38b084b0e..1d9e95da4c7459 100644 --- a/pkgs/by-name/ze/zenoh-backend-filesystem/package.nix +++ b/pkgs/by-name/ze/zenoh-backend-filesystem/package.nix @@ -37,14 +37,14 @@ rustPlatform.buildRustPackage rec { ZSTD_SYS_USE_PKG_CONFIG = true; }; - meta = { + meta = with lib; { description = "Backend and Storages for zenoh using the file system"; homepage = "https://github.com/eclipse-zenoh/zenoh-backend-filesystem"; - license = with lib.licenses; [ + license = with licenses; [ epl20 asl20 ]; - maintainers = with lib.maintainers; [ markuskowa ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ markuskowa ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ze/zenoh-backend-influxdb/package.nix b/pkgs/by-name/ze/zenoh-backend-influxdb/package.nix index 0da5f92644e211..54b38f2edf8a00 100644 --- a/pkgs/by-name/ze/zenoh-backend-influxdb/package.nix +++ b/pkgs/by-name/ze/zenoh-backend-influxdb/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-kaaOcRDqqZvVNfCuIKYJAPK+KLUE41/1R/Cih4cpVjw="; - meta = { + meta = with lib; { description = "Backend and Storages for zenoh using InfluxDB"; homepage = "https://github.com/eclipse-zenoh/zenoh-backend-influxdb"; - license = with lib.licenses; [ + license = with licenses; [ epl20 asl20 ]; - maintainers = with lib.maintainers; [ markuskowa ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ markuskowa ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ze/zenoh-backend-rocksdb/package.nix b/pkgs/by-name/ze/zenoh-backend-rocksdb/package.nix index f47ab1cd931b4b..becf23d5eb0201 100644 --- a/pkgs/by-name/ze/zenoh-backend-rocksdb/package.nix +++ b/pkgs/by-name/ze/zenoh-backend-rocksdb/package.nix @@ -37,14 +37,14 @@ rustPlatform.buildRustPackage rec { ZSTD_SYS_USE_PKG_CONFIG = true; }; - meta = { + meta = with lib; { description = "Backend and Storages for zenoh using RocksDB"; homepage = "https://github.com/eclipse-zenoh/zenoh-backend-rocksdb"; - license = with lib.licenses; [ + license = with licenses; [ epl20 asl20 ]; - maintainers = with lib.maintainers; [ markuskowa ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ markuskowa ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ze/zenoh-plugin-mqtt/package.nix b/pkgs/by-name/ze/zenoh-plugin-mqtt/package.nix index 55caabff898dd3..d44952831c2067 100644 --- a/pkgs/by-name/ze/zenoh-plugin-mqtt/package.nix +++ b/pkgs/by-name/ze/zenoh-plugin-mqtt/package.nix @@ -17,15 +17,15 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-8q8pMUMciB8cPSpkeu9sjGJm6DxXicd0k/NJ+1uz4VU="; - meta = { + meta = with lib; { description = "A Zenoh plug-in that allows to integrate and/or route MQTT pub/sub with Eclipse Zenoh"; homepage = "https://github.com/eclipse-zenoh/zenoh-plugin-mqtt"; - license = with lib.licenses; [ + license = with licenses; [ epl20 asl20 ]; - maintainers = with lib.maintainers; [ markuskowa ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ markuskowa ]; + platforms = platforms.linux; mainProgram = "zenoh-bridge-mqtt"; }; } diff --git a/pkgs/by-name/ze/zenoh-plugin-webserver/package.nix b/pkgs/by-name/ze/zenoh-plugin-webserver/package.nix index 551b9d048148ed..2f6908d686f3c2 100644 --- a/pkgs/by-name/ze/zenoh-plugin-webserver/package.nix +++ b/pkgs/by-name/ze/zenoh-plugin-webserver/package.nix @@ -17,14 +17,14 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-YckyHArQG/mYmDdA2qt4Wmw7Agx/CItjIgajJD0O5WA="; - meta = { + meta = with lib; { description = "Implements an HTTP server mapping URLs to zenoh paths"; homepage = "https://github.com/eclipse-zenoh/zenoh-plugin-webserver"; - license = with lib.licenses; [ + license = with licenses; [ epl20 asl20 ]; - maintainers = with lib.maintainers; [ markuskowa ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ markuskowa ]; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ze/zepp-simulator/package.nix b/pkgs/by-name/ze/zepp-simulator/package.nix index f8d4503660f9dc..313faba251d04e 100644 --- a/pkgs/by-name/ze/zepp-simulator/package.nix +++ b/pkgs/by-name/ze/zepp-simulator/package.nix @@ -160,17 +160,17 @@ stdenv.mkDerivation { chmod +x $out/opt/simulator/resources/firmware/qemu_linux/qemu-system-arm ''; - meta = { + meta = with lib; { description = "Zepp OS Simulator"; homepage = "https://developer.zepp.com/os/home"; - license = lib.licenses.unfree; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; # TODO Darwin platforms = [ "x86_64-linux" "aarch64-linux" ]; - maintainers = with lib.maintainers; [ griffi-gh ]; + maintainers = with maintainers; [ griffi-gh ]; mainProgram = "simulator"; }; } diff --git a/pkgs/by-name/ze/zerofree/package.nix b/pkgs/by-name/ze/zerofree/package.nix index e85c947b4618f6..d78cac9bc0a294 100644 --- a/pkgs/by-name/ze/zerofree/package.nix +++ b/pkgs/by-name/ze/zerofree/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { installManPage ${manpage} ''; - meta = { + meta = with lib; { homepage = "https://frippery.org/uml/"; description = "Zero free blocks from ext2, ext3 and ext4 file-systems"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Only; - maintainers = [ lib.maintainers.theuni ]; + platforms = platforms.linux; + license = licenses.gpl2Only; + maintainers = [ maintainers.theuni ]; mainProgram = "zerofree"; }; } diff --git a/pkgs/by-name/ze/zesarux/package.nix b/pkgs/by-name/ze/zesarux/package.nix index a06d19251b4012..f6c1a011e9585f 100644 --- a/pkgs/by-name/ze/zesarux/package.nix +++ b/pkgs/by-name/ze/zesarux/package.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/chernandezba/zesarux"; description = "ZX Second-Emulator And Released for UniX"; mainProgram = "zesarux"; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ AndersonTorres ]; - platforms = lib.platforms.unix; + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/zf/zfp/package.nix b/pkgs/by-name/zf/zfp/package.nix index 01919156fc805e..c078acc7f23236 100644 --- a/pkgs/by-name/zf/zfp/package.nix +++ b/pkgs/by-name/zf/zfp/package.nix @@ -70,13 +70,13 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { homepage = "https://computing.llnl.gov/projects/zfp"; description = "Library for random-access compression of floating-point arrays"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.spease ]; + license = licenses.bsd3; + maintainers = [ maintainers.spease ]; # 64-bit only - platforms = lib.platforms.aarch64 ++ lib.platforms.x86_64; + platforms = platforms.aarch64 ++ platforms.x86_64; mainProgram = "zfp"; }; }) diff --git a/pkgs/by-name/zg/zgrviewer/package.nix b/pkgs/by-name/zg/zgrviewer/package.nix index 2acac587ebc569..108130313028ec 100644 --- a/pkgs/by-name/zg/zgrviewer/package.nix +++ b/pkgs/by-name/zg/zgrviewer/package.nix @@ -27,14 +27,14 @@ stdenv.mkDerivation rec { echo "${jre}/bin/java -jar '$out/share/java/zvtm/zgrviewer-${version}.jar' \"\$@\"" >> "$out/bin/zgrviewer" chmod a+x "$out/bin/zgrviewer" ''; - meta = { + meta = with lib; { # Quicker to unpack locally than load Hydra hydraPlatforms = [ ]; - maintainers = with lib.maintainers; [ raskin ]; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.lgpl21Plus; + maintainers = with maintainers; [ raskin ]; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.lgpl21Plus; description = "GraphViz graph viewer/navigator"; - platforms = with lib.platforms; unix; + platforms = with platforms; unix; mainProgram = "zgrviewer"; }; } diff --git a/pkgs/by-name/zi/zig-shell-completions/package.nix b/pkgs/by-name/zi/zig-shell-completions/package.nix index 54839e16eddc1b..7f5ee668e5e1e1 100644 --- a/pkgs/by-name/zi/zig-shell-completions/package.nix +++ b/pkgs/by-name/zi/zig-shell-completions/package.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/ziglang/shell-completions"; description = "Shell completions for the Zig compiler"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ aaronjheng ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ aaronjheng ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/zi/zim-tools/package.nix b/pkgs/by-name/zi/zim-tools/package.nix index b4eef262ce543b..f81e50ab0db698 100644 --- a/pkgs/by-name/zi/zim-tools/package.nix +++ b/pkgs/by-name/zi/zim-tools/package.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { nativeCheckInputs = [ gtest ]; doCheck = true; - meta = { + meta = with lib; { description = "Various ZIM command line tools"; homepage = "https://github.com/openzim/zim-tools"; - maintainers = with lib.maintainers; [ robbinch ]; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.all; + maintainers = with maintainers; [ robbinch ]; + license = licenses.gpl3Plus; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/zi/zinit/package.nix b/pkgs/by-name/zi/zinit/package.nix index dc0eccdfad25a5..a2409086efc6c2 100644 --- a/pkgs/by-name/zi/zinit/package.nix +++ b/pkgs/by-name/zi/zinit/package.nix @@ -57,11 +57,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { homepage = "https://github.com/zdharma-continuum/zinit"; description = "Flexible zsh plugin manager"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ pasqui23 sei40kr moraxyc diff --git a/pkgs/by-name/zm/zmusic/package.nix b/pkgs/by-name/zm/zmusic/package.nix index 6c7c04f4a64826..5adb4891af97e6 100644 --- a/pkgs/by-name/zm/zmusic/package.nix +++ b/pkgs/by-name/zm/zmusic/package.nix @@ -53,17 +53,17 @@ stdenv.mkDerivation rec { zlib ]; - meta = { + meta = with lib; { description = "GZDoom's music system as a standalone library"; homepage = "https://github.com/ZDoom/ZMusic"; - license = with lib.licenses; [ + license = with licenses; [ free gpl3Plus lgpl21Plus lgpl3Plus ]; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + platforms = platforms.unix; + maintainers = with maintainers; [ azahi lassulus Gliczy diff --git a/pkgs/by-name/zo/zotero/package.nix b/pkgs/by-name/zo/zotero/package.nix index a56aef7d3ae770..a2f6c92dc3dbc5 100644 --- a/pkgs/by-name/zo/zotero/package.nix +++ b/pkgs/by-name/zo/zotero/package.nix @@ -7,18 +7,18 @@ let pname = "zotero"; version = "7.0.10"; - meta = { + meta = with lib; { homepage = "https://www.zotero.org"; description = "Collect, organize, cite, and share your research sources"; mainProgram = "zotero"; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; - license = lib.licenses.agpl3Only; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; + license = licenses.agpl3Only; platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ atila justanotherariel ]; diff --git a/pkgs/by-name/zo/zotify/package.nix b/pkgs/by-name/zo/zotify/package.nix index 5e82bff7969529..8ca00096a1f14d 100644 --- a/pkgs/by-name/zo/zotify/package.nix +++ b/pkgs/by-name/zo/zotify/package.nix @@ -35,12 +35,12 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "zotify" ]; - meta = { + meta = with lib; { description = "Fast and customizable music and podcast downloader"; homepage = "https://github.com/zotify-dev/zotify"; changelog = "https://github.com/zotify-dev/zotify/blob/main/CHANGELOG.md"; - license = lib.licenses.zlib; + license = licenses.zlib; mainProgram = "zotify"; - maintainers = with lib.maintainers; [ bwkam ]; + maintainers = with maintainers; [ bwkam ]; }; } diff --git a/pkgs/by-name/zs/zsh-autosuggestions-abbreviations-strategy/package.nix b/pkgs/by-name/zs/zsh-autosuggestions-abbreviations-strategy/package.nix index f4fe40c75ba55c..dec66c9e002b52 100644 --- a/pkgs/by-name/zs/zsh-autosuggestions-abbreviations-strategy/package.nix +++ b/pkgs/by-name/zs/zsh-autosuggestions-abbreviations-strategy/package.nix @@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Have zsh-autosuggestions suggest your zsh-abbr abbreviations"; homepage = "https://github.com/olets/zsh-autosuggestions-abbreviations-strategy"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ llakala ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ llakala ]; + platforms = platforms.all; }; }) diff --git a/pkgs/by-name/zs/zsh-completions/package.nix b/pkgs/by-name/zs/zsh-completions/package.nix index 193c78210bdfd9..c0b91365cd70c9 100644 --- a/pkgs/by-name/zs/zsh-completions/package.nix +++ b/pkgs/by-name/zs/zsh-completions/package.nix @@ -23,17 +23,17 @@ stdenv.mkDerivation rec { rm $out/share/zsh/site-functions/_tmuxp ''; - meta = { + meta = with lib; { description = "Additional completion definitions for zsh"; homepage = "https://github.com/zsh-users/zsh-completions"; - license = with lib.licenses; [ + license = with licenses; [ asl20 bsd3 isc mit mit-modern ]; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.olejorgenb ]; + platforms = platforms.unix; + maintainers = [ maintainers.olejorgenb ]; }; } diff --git a/pkgs/by-name/zs/zsh-fzf-history-search/package.nix b/pkgs/by-name/zs/zsh-fzf-history-search/package.nix index c852da674a9b4d..b5a7010e759835 100644 --- a/pkgs/by-name/zs/zsh-fzf-history-search/package.nix +++ b/pkgs/by-name/zs/zsh-fzf-history-search/package.nix @@ -27,11 +27,11 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Simple zsh plugin that replaces Ctrl+R with an fzf-driven select which includes date/times"; homepage = "https://github.com/joshskidmore/zsh-fzf-history-search"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; + license = licenses.mit; + platforms = platforms.unix; maintainers = [ ]; }; } diff --git a/pkgs/by-name/zs/zsh-fzf-tab/package.nix b/pkgs/by-name/zs/zsh-fzf-tab/package.nix index 5822953a30a2e6..4a5415660992ef 100644 --- a/pkgs/by-name/zs/zsh-fzf-tab/package.nix +++ b/pkgs/by-name/zs/zsh-fzf-tab/package.nix @@ -93,11 +93,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://github.com/Aloxaf/fzf-tab"; description = "Replace zsh's default completion selection menu with fzf!"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ diredocks ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = with maintainers; [ diredocks ]; + platforms = platforms.unix; }; } diff --git a/pkgs/by-name/zs/zsh-zhooks/package.nix b/pkgs/by-name/zs/zsh-zhooks/package.nix index 047cd75ef61e30..d35980fb20a328 100644 --- a/pkgs/by-name/zs/zsh-zhooks/package.nix +++ b/pkgs/by-name/zs/zsh-zhooks/package.nix @@ -22,15 +22,15 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "A tool for displaying the code for all Zsh hook functions"; homepage = "https://github.com/agkozak/zhooks"; - license = lib.licenses.mit; + license = licenses.mit; longDescription = '' This Zsh plugin is a tool for displaying the code for all Zsh hook functions (such as precmd), as well as the contents of hook arrays (such as precmd_functions). ''; - maintainers = [ lib.maintainers.fidgetingbits ]; - platforms = lib.platforms.all; + maintainers = [ maintainers.fidgetingbits ]; + platforms = platforms.all; }; } diff --git a/pkgs/by-name/zs/zssh/package.nix b/pkgs/by-name/zs/zssh/package.nix index 3720976f055f61..cd75228192d63e 100644 --- a/pkgs/by-name/zs/zssh/package.nix +++ b/pkgs/by-name/zs/zssh/package.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation rec { install -dm755 "$out"/{bin,man/man1} ''; - meta = { + meta = with lib; { description = "SSH and Telnet client with ZMODEM file transfer capability"; homepage = "https://zssh.sourceforge.net/"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; maintainers = [ ]; # required by deepin-terminal - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/by-name/zs/zsync/package.nix b/pkgs/by-name/zs/zsync/package.nix index 359707c0731f41..86de9908c054b9 100644 --- a/pkgs/by-name/zs/zsync/package.nix +++ b/pkgs/by-name/zs/zsync/package.nix @@ -41,14 +41,14 @@ stdenv.mkDerivation rec { autoreconfHook ]; - meta = { + meta = with lib; { homepage = "https://github.com/cph6/zsync"; description = "File distribution system using the rsync algorithm"; - license = lib.licenses.artistic2; - maintainers = with lib.maintainers; [ + license = licenses.artistic2; + maintainers = with maintainers; [ viric ryand56 ]; - platforms = with lib.platforms; all; + platforms = with platforms; all; }; } diff --git a/pkgs/by-name/zs/zsync2/package.nix b/pkgs/by-name/zs/zsync2/package.nix index 70a204eafab67e..24c5347a495fe8 100644 --- a/pkgs/by-name/zs/zsync2/package.nix +++ b/pkgs/by-name/zs/zsync2/package.nix @@ -53,14 +53,14 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeBool "USE_SYSTEM_ARGS" true) ]; - meta = { + meta = with lib; { description = "Rewrite of the advanced file download/sync tool zsync"; homepage = "https://github.com/AppImageCommunity/zsync2"; - license = lib.licenses.artistic2; + license = licenses.artistic2; mainProgram = "zsync2"; - maintainers = with lib.maintainers; [ aleksana ]; + maintainers = with maintainers; [ aleksana ]; # macro only supports linux as of now # src/zsclient.cpp#L460 - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/zu/zutty/package.nix b/pkgs/by-name/zu/zutty/package.nix index 4c493483df5773..6f42d888d21965 100644 --- a/pkgs/by-name/zu/zutty/package.nix +++ b/pkgs/by-name/zu/zutty/package.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = { + meta = with lib; { homepage = "https://tomscii.sig7.se/zutty/"; description = "X terminal emulator rendering through OpenGL ES Compute Shaders"; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.rolfschr ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = [ maintainers.rolfschr ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/zx/zxing/package.nix b/pkgs/by-name/zx/zxing/package.nix index eae4b10a7be436..ea8cd042b82b63 100644 --- a/pkgs/by-name/zx/zxing/package.nix +++ b/pkgs/by-name/zx/zxing/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { chmod a+x "$out/bin"/* cd "$out/lib/java"; for i in *.jar; do mv "$i" "''${i#*-}"; done ''; - meta = { + meta = with lib; { description = "1D and 2D code reading library"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.asl20; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; homepage = "https://github.com/zxing/zxing"; }; } diff --git a/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix b/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix index 8d839427a2fe70..af912e92fe2a52 100644 --- a/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix +++ b/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix @@ -84,12 +84,12 @@ let exec -a dbtoepub ${ruby}/bin/ruby ${self}/share/xml/${pname}/epub/bin/dbtoepub "$@" ''; - meta = { + meta = with lib; { homepage = "https://github.com/docbook/wiki/wiki/DocBookXslStylesheets"; description = "XSL stylesheets for transforming DocBook documents into HTML and various other formats"; - license = lib.licenses.mit; + license = licenses.mit; maintainers = [ ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; }; in diff --git a/pkgs/data/themes/nordic/default.nix b/pkgs/data/themes/nordic/default.nix index 5281f455ca1181..0a9726ee4d09e4 100644 --- a/pkgs/data/themes/nordic/default.nix +++ b/pkgs/data/themes/nordic/default.nix @@ -155,11 +155,11 @@ stdenvNoCC.mkDerivation rec { >> $sddm/nix-support/propagated-user-env-packages ''; - meta = { + meta = with lib; { description = "Gtk and KDE themes using the Nord color pallete"; homepage = "https://github.com/EliverLara/Nordic"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.romildo ]; + license = licenses.gpl3Only; + platforms = platforms.all; + maintainers = [ maintainers.romildo ]; }; } diff --git a/pkgs/data/themes/qogir-kde/default.nix b/pkgs/data/themes/qogir-kde/default.nix index a80feee8e2f243..a854ad0f0ed45b 100644 --- a/pkgs/data/themes/qogir-kde/default.nix +++ b/pkgs/data/themes/qogir-kde/default.nix @@ -63,11 +63,11 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Flat Design theme for KDE Plasma desktop"; homepage = "https://github.com/vinceliuice/Qogir-kde"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.romildo ]; + license = licenses.gpl3Only; + platforms = platforms.all; + maintainers = [ maintainers.romildo ]; }; } diff --git a/pkgs/data/themes/whitesur-kde/default.nix b/pkgs/data/themes/whitesur-kde/default.nix index 3c42179c86a0a5..50b091112ac538 100644 --- a/pkgs/data/themes/whitesur-kde/default.nix +++ b/pkgs/data/themes/whitesur-kde/default.nix @@ -68,11 +68,11 @@ stdenvNoCC.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { description = "MacOS big sur like theme for KDE Plasma desktop"; homepage = "https://github.com/vinceliuice/WhiteSur-kde"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.romildo ]; + license = licenses.gpl3Only; + platforms = platforms.all; + maintainers = [ maintainers.romildo ]; }; } diff --git a/pkgs/desktops/deepin/apps/deepin-calculator/default.nix b/pkgs/desktops/deepin/apps/deepin-calculator/default.nix index 128fd3b88ee0ca..bccce60f1a4ab0 100644 --- a/pkgs/desktops/deepin/apps/deepin-calculator/default.nix +++ b/pkgs/desktops/deepin/apps/deepin-calculator/default.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DVERSION=${version}" ]; - meta = { + meta = with lib; { description = "Easy to use calculator for ordinary users"; mainProgram = "deepin-calculator"; homepage = "https://github.com/linuxdeepin/deepin-calculator"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/apps/deepin-camera/default.nix b/pkgs/desktops/deepin/apps/deepin-camera/default.nix index 750696aee61a15..4b9cb3dab28b63 100644 --- a/pkgs/desktops/deepin/apps/deepin-camera/default.nix +++ b/pkgs/desktops/deepin/apps/deepin-camera/default.nix @@ -101,11 +101,11 @@ stdenv.mkDerivation rec { qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0") ''; - meta = { + meta = with lib; { description = "Tool to view camera, take photo and video"; homepage = "https://github.com/linuxdeepin/deepin-camera"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/apps/deepin-draw/default.nix b/pkgs/desktops/deepin/apps/deepin-draw/default.nix index 50db4ec7095b7c..32bbeeda415de8 100644 --- a/pkgs/desktops/deepin/apps/deepin-draw/default.nix +++ b/pkgs/desktops/deepin/apps/deepin-draw/default.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = { + meta = with lib; { description = "Lightweight drawing tool for users to freely draw and simply edit images"; mainProgram = "deepin-draw"; homepage = "https://github.com/linuxdeepin/deepin-draw"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/apps/deepin-editor/default.nix b/pkgs/desktops/deepin/apps/deepin-editor/default.nix index 28ec4b9600e225..c6c446e7b64302 100644 --- a/pkgs/desktops/deepin/apps/deepin-editor/default.nix +++ b/pkgs/desktops/deepin/apps/deepin-editor/default.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DVERSION=${version}" ]; - meta = { + meta = with lib; { description = "Desktop text editor that supports common text editing features"; homepage = "https://github.com/linuxdeepin/deepin-editor"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/apps/deepin-music/default.nix b/pkgs/desktops/deepin/apps/deepin-music/default.nix index 95cd7cf4664d8d..60045de371ebf7 100644 --- a/pkgs/desktops/deepin/apps/deepin-music/default.nix +++ b/pkgs/desktops/deepin/apps/deepin-music/default.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation rec { qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0") ''; - meta = { + meta = with lib; { description = "Awesome music player with brilliant and tweakful UI Deepin-UI based"; mainProgram = "deepin-music"; homepage = "https://github.com/linuxdeepin/deepin-music"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/apps/deepin-picker/default.nix b/pkgs/desktops/deepin/apps/deepin-picker/default.nix index d70c24b38883b7..b83f56f796b615 100644 --- a/pkgs/desktops/deepin/apps/deepin-picker/default.nix +++ b/pkgs/desktops/deepin/apps/deepin-picker/default.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { "DOCDIR=${placeholder "out"}/share/dman/deepin-picker" ]; - meta = { + meta = with lib; { description = "Color picker application"; mainProgram = "deepin-picker"; homepage = "https://github.com/linuxdeepin/deepin-picker"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/apps/deepin-screen-recorder/default.nix b/pkgs/desktops/deepin/apps/deepin-screen-recorder/default.nix index 33d514f48c256a..9f26301fa498c6 100644 --- a/pkgs/desktops/deepin/apps/deepin-screen-recorder/default.nix +++ b/pkgs/desktops/deepin/apps/deepin-screen-recorder/default.nix @@ -94,12 +94,12 @@ stdenv.mkDerivation rec { qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0") ''; - meta = { + meta = with lib; { description = "Screen recorder application for dde"; homepage = "https://github.com/linuxdeepin/deepin-screen-recorder"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; broken = true; }; } diff --git a/pkgs/desktops/deepin/apps/deepin-terminal/default.nix b/pkgs/desktops/deepin/apps/deepin-terminal/default.nix index ffd4df4eae8855..f8d7e4e3bb217d 100644 --- a/pkgs/desktops/deepin/apps/deepin-terminal/default.nix +++ b/pkgs/desktops/deepin/apps/deepin-terminal/default.nix @@ -50,12 +50,12 @@ stdenv.mkDerivation rec { passthru.tests.test = nixosTests.terminal-emulators.deepin-terminal; - meta = { + meta = with lib; { description = "Terminal emulator with workspace, multiple windows, remote management, quake mode and other features"; mainProgram = "deepin-terminal"; homepage = "https://github.com/linuxdeepin/deepin-terminal"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/apps/deepin-voice-note/default.nix b/pkgs/desktops/deepin/apps/deepin-voice-note/default.nix index 46a35db365c282..ffe580ddd28734 100644 --- a/pkgs/desktops/deepin/apps/deepin-voice-note/default.nix +++ b/pkgs/desktops/deepin/apps/deepin-voice-note/default.nix @@ -78,12 +78,12 @@ stdenv.mkDerivation rec { qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0") ''; - meta = { + meta = with lib; { description = "Simple memo software with texts and voice recordings"; mainProgram = "deepin-voice-note"; homepage = "https://github.com/linuxdeepin/deepin-voice-note"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-api-proxy/default.nix b/pkgs/desktops/deepin/core/dde-api-proxy/default.nix index a46ead0f6e7c86..96e0708dfcac4e 100644 --- a/pkgs/desktops/deepin/core/dde-api-proxy/default.nix +++ b/pkgs/desktops/deepin/core/dde-api-proxy/default.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { libsForQt5.qtbase ]; - meta = { + meta = with lib; { description = "Proxy service for dde"; homepage = "https://github.com/linuxdeepin/dde-api-proxy"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-control-center/default.nix b/pkgs/desktops/deepin/core/dde-control-center/default.nix index 6600df5b796408..088972453af8b6 100644 --- a/pkgs/desktops/deepin/core/dde-control-center/default.nix +++ b/pkgs/desktops/deepin/core/dde-control-center/default.nix @@ -78,12 +78,12 @@ stdenv.mkDerivation rec { "dev" ]; - meta = { + meta = with lib; { description = "Control panel of Deepin Desktop Environment"; mainProgram = "dde-control-center"; homepage = "https://github.com/linuxdeepin/dde-control-center"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-grand-search/default.nix b/pkgs/desktops/deepin/core/dde-grand-search/default.nix index 89e22adcd0fe1b..3772348880b63a 100644 --- a/pkgs/desktops/deepin/core/dde-grand-search/default.nix +++ b/pkgs/desktops/deepin/core/dde-grand-search/default.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DVERSION=${version}" ]; - meta = { + meta = with lib; { description = "System-wide desktop search for DDE"; homepage = "https://github.com/linuxdeepin/dde-grand-search"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-launchpad/default.nix b/pkgs/desktops/deepin/core/dde-launchpad/default.nix index 63b625fe90aa2c..cadba10b938389 100644 --- a/pkgs/desktops/deepin/core/dde-launchpad/default.nix +++ b/pkgs/desktops/deepin/core/dde-launchpad/default.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DSYSTEMD_USER_UNIT_DIR=${placeholder "out"}/lib/systemd/user" ]; - meta = { + meta = with lib; { description = "'launcher' or 'start menu' component for DDE"; mainProgram = "dde-launchpad"; homepage = "https://github.com/linuxdeepin/dde-launchpad"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-network-core/default.nix b/pkgs/desktops/deepin/core/dde-network-core/default.nix index 9d5272df72663a..bbdffde6579419 100644 --- a/pkgs/desktops/deepin/core/dde-network-core/default.nix +++ b/pkgs/desktops/deepin/core/dde-network-core/default.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = { + meta = with lib; { description = "DDE network library framework"; homepage = "https://github.com/linuxdeepin/dde-network-core"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/core/dde-shell/default.nix b/pkgs/desktops/deepin/core/dde-shell/default.nix index 62663f6756e99f..cdbcd80929ec7e 100644 --- a/pkgs/desktops/deepin/core/dde-shell/default.nix +++ b/pkgs/desktops/deepin/core/dde-shell/default.nix @@ -84,11 +84,11 @@ stdenv.mkDerivation (finalAttrs: { "--suffix DDE_SHELL_PACKAGE_PATH : /run/current-system/sw/share/dde-shell" ]; - meta = { + meta = with lib; { description = "A plugin system that integrates plugins developed on DDE"; homepage = "https://github.com/linuxdeepin/dde-shell"; - license = with lib.licenses; [ gpl3Plus ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ rewine ]; + license = with licenses; [ gpl3Plus ]; + platforms = platforms.linux; + maintainers = with maintainers; [ rewine ]; }; }) diff --git a/pkgs/desktops/deepin/core/dde-tray-loader/default.nix b/pkgs/desktops/deepin/core/dde-tray-loader/default.nix index 6c3b7febf80be2..0a8ea6af73d57d 100644 --- a/pkgs/desktops/deepin/core/dde-tray-loader/default.nix +++ b/pkgs/desktops/deepin/core/dde-tray-loader/default.nix @@ -59,11 +59,11 @@ stdenv.mkDerivation (finalAttrs: { xorg.libXtst ]; - meta = { + meta = with lib; { description = "Tray plugins that integrated into task bar"; homepage = "https://github.com/linuxdeepin/dde-tray-loader"; - license = with lib.licenses; [ gpl3Plus ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ rewine ]; + license = with licenses; [ gpl3Plus ]; + platforms = platforms.linux; + maintainers = with maintainers; [ rewine ]; }; }) diff --git a/pkgs/desktops/deepin/core/deepin-kwin/default.nix b/pkgs/desktops/deepin/core/deepin-kwin/default.nix index 49e1ec49d76973..f695d24113aae5 100644 --- a/pkgs/desktops/deepin/core/deepin-kwin/default.nix +++ b/pkgs/desktops/deepin/core/deepin-kwin/default.nix @@ -89,11 +89,11 @@ stdenv.mkDerivation rec { "dev" ]; - meta = { + meta = with lib; { description = "Fork of kwin, an easy to use, but flexible, composited Window Manager"; homepage = "https://github.com/linuxdeepin/deepin-kwin"; - license = lib.licenses.lgpl21Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.lgpl21Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/go-package/deepin-desktop-schemas/default.nix b/pkgs/desktops/deepin/go-package/deepin-desktop-schemas/default.nix index 34577db77ed8c8..f88cb0df99371f 100644 --- a/pkgs/desktops/deepin/go-package/deepin-desktop-schemas/default.nix +++ b/pkgs/desktops/deepin/go-package/deepin-desktop-schemas/default.nix @@ -47,11 +47,11 @@ buildGoModule rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "GSettings deepin desktop-wide schemas"; homepage = "https://github.com/linuxdeepin/deepin-desktop-schemas"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/dde-qt-dbus-factory/default.nix b/pkgs/desktops/deepin/library/dde-qt-dbus-factory/default.nix index bcfcef845b6e76..8f7c5a2b439e02 100644 --- a/pkgs/desktops/deepin/library/dde-qt-dbus-factory/default.nix +++ b/pkgs/desktops/deepin/library/dde-qt-dbus-factory/default.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { --replace-fail "/usr/include" "$out/include" ''; - meta = { + meta = with lib; { description = "Repo of auto-generated D-Bus source code which DDE used"; homepage = "https://github.com/linuxdeepin/dde-qt-dbus-factory"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/docparser/default.nix b/pkgs/desktops/deepin/library/docparser/default.nix index c1462f135d947b..df0dc0ea898d26 100644 --- a/pkgs/desktops/deepin/library/docparser/default.nix +++ b/pkgs/desktops/deepin/library/docparser/default.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { qmakeFlags = [ "VERSION=${version}" ]; - meta = { + meta = with lib; { description = "Document parser library ported from document2html"; homepage = "https://github.com/linuxdeepin/docparser"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/dtk6core/default.nix b/pkgs/desktops/deepin/library/dtk6core/default.nix index 97ac2fb5843f7a..d9892e7de36763 100644 --- a/pkgs/desktops/deepin/library/dtk6core/default.nix +++ b/pkgs/desktops/deepin/library/dtk6core/default.nix @@ -82,11 +82,11 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = { + meta = with lib; { description = "Deepin tool kit core library"; homepage = "https://github.com/linuxdeepin/dtk6core"; - license = lib.licenses.lgpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.lgpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; }) diff --git a/pkgs/desktops/deepin/library/dtk6declarative/default.nix b/pkgs/desktops/deepin/library/dtk6declarative/default.nix index 9092cafdac513a..1a5dc41da817c9 100644 --- a/pkgs/desktops/deepin/library/dtk6declarative/default.nix +++ b/pkgs/desktops/deepin/library/dtk6declarative/default.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation (finalAttrs: { "doc" ]; - meta = { + meta = with lib; { description = "Widget development toolkit based on QtQuick/QtQml"; mainProgram = "dtk-exhibition"; homepage = "https://github.com/linuxdeepin/dtk6declarative"; - license = lib.licenses.lgpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.lgpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; }) diff --git a/pkgs/desktops/deepin/library/dtk6gui/default.nix b/pkgs/desktops/deepin/library/dtk6gui/default.nix index 4204ad9f235606..ec53d7d42e8feb 100644 --- a/pkgs/desktops/deepin/library/dtk6gui/default.nix +++ b/pkgs/desktops/deepin/library/dtk6gui/default.nix @@ -75,11 +75,11 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = { + meta = with lib; { description = "Deepin Toolkit, gui module for DDE look and feel"; homepage = "https://github.com/linuxdeepin/dtk6gui"; - license = lib.licenses.lgpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.lgpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; }) diff --git a/pkgs/desktops/deepin/library/dtk6log/default.nix b/pkgs/desktops/deepin/library/dtk6log/default.nix index ac47ad7a2be971..34beb2891d559c 100644 --- a/pkgs/desktops/deepin/library/dtk6log/default.nix +++ b/pkgs/desktops/deepin/library/dtk6log/default.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeFeature "CMAKE_INSTALL_INCLUDEDIR" "include") ]; - meta = { + meta = with lib; { description = "Simple, convinient and thread safe logger for Qt-based C++ apps"; homepage = "https://github.com/linuxdeepin/dtk6log"; - license = lib.licenses.lgpl21Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.lgpl21Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; }) diff --git a/pkgs/desktops/deepin/library/dtk6systemsettings/default.nix b/pkgs/desktops/deepin/library/dtk6systemsettings/default.nix index a3048cbd2b222c..328795c885b996 100644 --- a/pkgs/desktops/deepin/library/dtk6systemsettings/default.nix +++ b/pkgs/desktops/deepin/library/dtk6systemsettings/default.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation rec { "doc" ]; - meta = { + meta = with lib; { description = "Qt-based development library for system settings"; homepage = "https://github.com/linuxdeepin/dtk6systemsettings"; - license = lib.licenses.lgpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.lgpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/dtk6widget/default.nix b/pkgs/desktops/deepin/library/dtk6widget/default.nix index b1400c9cf9c83a..3e37d29bd7e407 100644 --- a/pkgs/desktops/deepin/library/dtk6widget/default.nix +++ b/pkgs/desktops/deepin/library/dtk6widget/default.nix @@ -79,11 +79,11 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = { + meta = with lib; { description = "Deepin graphical user interface library"; homepage = "https://github.com/linuxdeepin/dtk6widget"; - license = lib.licenses.lgpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.lgpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; }) diff --git a/pkgs/desktops/deepin/library/dtklog/default.nix b/pkgs/desktops/deepin/library/dtklog/default.nix index 043999f614a903..92907a3ec8193d 100644 --- a/pkgs/desktops/deepin/library/dtklog/default.nix +++ b/pkgs/desktops/deepin/library/dtklog/default.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeFeature "CMAKE_INSTALL_INCLUDEDIR" "include") ]; - meta = { + meta = with lib; { description = "Simple, convinient and thread safe logger for Qt-based C++ apps"; homepage = "https://github.com/linuxdeepin/dtklog"; - license = lib.licenses.lgpl21Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.lgpl21Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; }) diff --git a/pkgs/desktops/deepin/library/qt6integration/default.nix b/pkgs/desktops/deepin/library/qt6integration/default.nix index 1383ef81e07e68..04f52e3c754263 100644 --- a/pkgs/desktops/deepin/library/qt6integration/default.nix +++ b/pkgs/desktops/deepin/library/qt6integration/default.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = { + meta = with lib; { description = "Qt platform theme integration plugins for DDE"; homepage = "https://github.com/linuxdeepin/qt6integration"; - license = lib.licenses.lgpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.lgpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/qt6mpris/default.nix b/pkgs/desktops/deepin/library/qt6mpris/default.nix index 71a17256d6c14a..6e6971981f47ab 100644 --- a/pkgs/desktops/deepin/library/qt6mpris/default.nix +++ b/pkgs/desktops/deepin/library/qt6mpris/default.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation (finalAttrs: { qt6Packages.qtdeclarative ]; - meta = { + meta = with lib; { description = "Qt and QML MPRIS interface and adaptor"; homepage = "https://github.com/deepin-community/qt6mpris"; - license = lib.licenses.lgpl21Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.lgpl21Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; }) diff --git a/pkgs/desktops/deepin/library/qt6platform-plugins/default.nix b/pkgs/desktops/deepin/library/qt6platform-plugins/default.nix index 2befb9219bd32e..71cbfc353e697d 100644 --- a/pkgs/desktops/deepin/library/qt6platform-plugins/default.nix +++ b/pkgs/desktops/deepin/library/qt6platform-plugins/default.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { dontWrapQtApps = true; - meta = { + meta = with lib; { description = "Qt platform plugins for DDE"; homepage = "https://github.com/linuxdeepin/qt6platform-plugins"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/library/treeland-protocols/default.nix b/pkgs/desktops/deepin/library/treeland-protocols/default.nix index f1b8016bb978eb..a5d97996490042 100644 --- a/pkgs/desktops/deepin/library/treeland-protocols/default.nix +++ b/pkgs/desktops/deepin/library/treeland-protocols/default.nix @@ -20,15 +20,15 @@ stdenv.mkDerivation rec { cmake ]; - meta = { + meta = with lib; { description = "Wayland protocol extensions for treeland"; homepage = "https://github.com/linuxdeepin/treeland-protocols"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Only lgpl3Only asl20 ]; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/tools/dde-device-formatter/default.nix b/pkgs/desktops/deepin/tools/dde-device-formatter/default.nix index 2b13bd66ab0c2c..a419e0ea071e0e 100644 --- a/pkgs/desktops/deepin/tools/dde-device-formatter/default.nix +++ b/pkgs/desktops/deepin/tools/dde-device-formatter/default.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DVERSION=${version}" ]; - meta = { + meta = with lib; { description = "Simple graphical interface for creating file system in a block device"; mainProgram = "dde-device-formatter"; homepage = "https://github.com/linuxdeepin/dde-device-formatter"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/deepin/tools/deepin-anything/default.nix b/pkgs/desktops/deepin/tools/deepin-anything/default.nix index 441003d522b305..e0623f50a5a43d 100644 --- a/pkgs/desktops/deepin/tools/deepin-anything/default.nix +++ b/pkgs/desktops/deepin/tools/deepin-anything/default.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation rec { pcre ]; - meta = { + meta = with lib; { description = "Deepin Anything file search tool"; homepage = "https://github.com/linuxdeepin/deepin-anything"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.deepin.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; }; } diff --git a/pkgs/desktops/gnome/extensions/guillotine/default.nix b/pkgs/desktops/gnome/extensions/guillotine/default.nix index 947317b1fe93ac..78dd66dc6e54fa 100644 --- a/pkgs/desktops/gnome/extensions/guillotine/default.nix +++ b/pkgs/desktops/gnome/extensions/guillotine/default.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "A gnome extension designed for efficiently carrying out executions of commands from a customizable menu"; homepage = "https://gitlab.com/ente76/guillotine/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ husky ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ husky ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/desktops/gnustep/gorm/default.nix b/pkgs/desktops/gnustep/gorm/default.nix index 59c9c729f8bef4..cadcddd005d71b 100644 --- a/pkgs/desktops/gnustep/gorm/default.nix +++ b/pkgs/desktops/gnustep/gorm/default.nix @@ -28,16 +28,16 @@ stdenv.mkDerivation (finalAttrs: { gui ]; - meta = { + meta = with lib; { description = "Graphical Object Relationship Modeller is an easy-to-use interface designer for GNUstep"; homepage = "https://gnustep.github.io/"; - license = lib.licenses.lgpl2Plus; + license = licenses.lgpl2Plus; mainProgram = "Gorm"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ ashalkhakov matthewbauer dblsaiko ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/desktops/gnustep/gworkspace/default.nix b/pkgs/desktops/gnustep/gworkspace/default.nix index 92f60105d1c8f4..72cc89ecb70444 100644 --- a/pkgs/desktops/gnustep/gworkspace/default.nix +++ b/pkgs/desktops/gnustep/gworkspace/default.nix @@ -34,16 +34,16 @@ stdenv.mkDerivation (finalAttrs: { ]; configureFlags = [ "--with-inotify" ]; - meta = { + meta = with lib; { description = "Workspace manager for GNUstep"; homepage = "https://gnustep.github.io/"; - license = lib.licenses.lgpl2Plus; + license = licenses.lgpl2Plus; mainProgram = "GWorkspace"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ ashalkhakov matthewbauer dblsaiko ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/desktops/gnustep/projectcenter/default.nix b/pkgs/desktops/gnustep/projectcenter/default.nix index b93b5f073b6a5f..e1b32caed6c09f 100644 --- a/pkgs/desktops/gnustep/projectcenter/default.nix +++ b/pkgs/desktops/gnustep/projectcenter/default.nix @@ -40,16 +40,16 @@ stdenv.mkDerivation (finalAttrs: { gorm ]; - meta = { + meta = with lib; { description = "GNUstep's integrated development environment"; homepage = "https://gnustep.github.io/"; - license = lib.licenses.lgpl2Plus; + license = licenses.lgpl2Plus; mainProgram = "ProjectCenter"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ ashalkhakov matthewbauer dblsaiko ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/desktops/gnustep/systempreferences/default.nix b/pkgs/desktops/gnustep/systempreferences/default.nix index d9262af3619186..47f556c97c5508 100644 --- a/pkgs/desktops/gnustep/systempreferences/default.nix +++ b/pkgs/desktops/gnustep/systempreferences/default.nix @@ -28,16 +28,16 @@ stdenv.mkDerivation (finalAttrs: { gui ]; - meta = { + meta = with lib; { description = "Settings manager for the GNUstep environment and its applications"; homepage = "https://gnustep.github.io/"; - license = lib.licenses.lgpl2Plus; + license = licenses.lgpl2Plus; mainProgram = "SystemPreferences"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ ashalkhakov matthewbauer dblsaiko ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/desktops/lomiri/applications/teleports/default.nix b/pkgs/desktops/lomiri/applications/teleports/default.nix index 8a9d318f4b2c26..22a14bf5765c80 100644 --- a/pkgs/desktops/lomiri/applications/teleports/default.nix +++ b/pkgs/desktops/lomiri/applications/teleports/default.nix @@ -116,10 +116,10 @@ stdenv.mkDerivation (finalAttrs: { tests.vm = nixosTests.teleports; }; - meta = { + meta = with lib; { description = "Ubuntu Touch Telegram client"; homepage = "https://gitlab.com/ubports/development/apps/teleports"; - license = with lib.licenses; [ + license = with licenses; [ mit # main asl20 # benlau/asyncfuture in qtdlib bsd3 # FastScroll.js from Meego? maybe? @@ -127,7 +127,7 @@ stdenv.mkDerivation (finalAttrs: { lgpl3Only # components ]; mainProgram = "teleports"; - maintainers = lib.teams.lomiri.members; - platforms = lib.platforms.linux; + maintainers = teams.lomiri.members; + platforms = platforms.linux; }; }) diff --git a/pkgs/desktops/lomiri/services/lomiri-polkit-agent/default.nix b/pkgs/desktops/lomiri/services/lomiri-polkit-agent/default.nix index 710792e3a81391..b05e963b0a3953 100644 --- a/pkgs/desktops/lomiri/services/lomiri-polkit-agent/default.nix +++ b/pkgs/desktops/lomiri/services/lomiri-polkit-agent/default.nix @@ -94,11 +94,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { description = "Policy kit agent for the Lomiri desktop"; homepage = "https://gitlab.com/ubports/development/core/lomiri-polkit-agent"; - license = lib.licenses.gpl3Only; - maintainers = lib.teams.lomiri.members; - platforms = lib.platforms.linux; + license = licenses.gpl3Only; + maintainers = teams.lomiri.members; + platforms = platforms.linux; }; }) diff --git a/pkgs/desktops/lomiri/services/lomiri-url-dispatcher/default.nix b/pkgs/desktops/lomiri/services/lomiri-url-dispatcher/default.nix index f94b6f971f8b59..6b3651e77b8d89 100644 --- a/pkgs/desktops/lomiri/services/lomiri-url-dispatcher/default.nix +++ b/pkgs/desktops/lomiri/services/lomiri-url-dispatcher/default.nix @@ -166,7 +166,7 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = { + meta = with lib; { description = "Lomiri operating environment service for requesting URLs to be opened"; longDescription = '' Allows applications to request a URL to be opened and handled by another @@ -174,12 +174,12 @@ stdenv.mkDerivation (finalAttrs: { starting them inside its own Application Confinement. ''; homepage = "https://gitlab.com/ubports/development/core/lomiri-url-dispatcher"; - license = with lib.licenses; [ + license = with licenses; [ lgpl3Only gpl3Only ]; - maintainers = lib.teams.lomiri.members; - platforms = lib.platforms.linux; + maintainers = teams.lomiri.members; + platforms = platforms.linux; pkgConfigModules = [ "lomiri-url-dispatcher" ]; diff --git a/pkgs/desktops/lomiri/services/mediascanner2/default.nix b/pkgs/desktops/lomiri/services/mediascanner2/default.nix index 3a1fbe01221a7c..d533e067ea597b 100644 --- a/pkgs/desktops/lomiri/services/mediascanner2/default.nix +++ b/pkgs/desktops/lomiri/services/mediascanner2/default.nix @@ -103,13 +103,13 @@ stdenv.mkDerivation (finalAttrs: { updateScript = gitUpdater { }; }; - meta = { + meta = with lib; { description = "Media scanner service & access library"; homepage = "https://gitlab.com/ubports/development/core/mediascanner2"; - license = lib.licenses.gpl3Only; - maintainers = lib.teams.lomiri.members; + license = licenses.gpl3Only; + maintainers = teams.lomiri.members; mainProgram = "mediascanner-service-2.0"; - platforms = lib.platforms.linux; + platforms = platforms.linux; pkgConfigModules = [ "mediascanner-2.0" ]; }; }) diff --git a/pkgs/desktops/lxde/core/lxmenu-data/default.nix b/pkgs/desktops/lxde/core/lxmenu-data/default.nix index a53885f33ed744..7628db06c30b38 100644 --- a/pkgs/desktops/lxde/core/lxmenu-data/default.nix +++ b/pkgs/desktops/lxde/core/lxmenu-data/default.nix @@ -16,10 +16,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ intltool ]; - meta = { + meta = with lib; { homepage = "https://lxde.org/"; - license = lib.licenses.gpl2; + license = licenses.gpl2; description = "Freedesktop.org desktop menus for LXDE"; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/desktops/lxqt/lxqt-wayland-session/default.nix b/pkgs/desktops/lxqt/lxqt-wayland-session/default.nix index 430cde7762c5fe..9f62bbbadb0a04 100644 --- a/pkgs/desktops/lxqt/lxqt-wayland-session/default.nix +++ b/pkgs/desktops/lxqt/lxqt-wayland-session/default.nix @@ -60,10 +60,10 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/lxqt/lxqt-wayland-session"; description = "Files needed for the LXQt Wayland Session"; - license = with lib.licenses; [ + license = with licenses; [ bsd3 cc-by-sa-40 gpl2Only @@ -71,7 +71,7 @@ stdenv.mkDerivation rec { lgpl21Only mit ]; - platforms = lib.platforms.linux; - maintainers = lib.teams.lxqt.members; + platforms = platforms.linux; + maintainers = teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/obconf-qt/default.nix b/pkgs/desktops/lxqt/obconf-qt/default.nix index 7ab69bbdd9738f..96c1c25154ac18 100644 --- a/pkgs/desktops/lxqt/obconf-qt/default.nix +++ b/pkgs/desktops/lxqt/obconf-qt/default.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/lxqt/obconf-qt"; description = "Qt port of obconf, the Openbox configuration tool"; mainProgram = "obconf-qt"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; - maintainers = lib.teams.lxqt.members; + license = licenses.gpl2Plus; + platforms = platforms.unix; + maintainers = teams.lxqt.members; }; } diff --git a/pkgs/desktops/lxqt/pavucontrol-qt/default.nix b/pkgs/desktops/lxqt/pavucontrol-qt/default.nix index 0244300f3ed2f9..4095e60703cd0c 100644 --- a/pkgs/desktops/lxqt/pavucontrol-qt/default.nix +++ b/pkgs/desktops/lxqt/pavucontrol-qt/default.nix @@ -42,12 +42,12 @@ stdenv.mkDerivation rec { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/lxqt/pavucontrol-qt"; description = "Pulseaudio mixer in Qt (port of pavucontrol)"; mainProgram = "pavucontrol-qt"; - license = lib.licenses.gpl2Plus; - platforms = with lib.platforms; linux; - maintainers = lib.teams.lxqt.members; + license = licenses.gpl2Plus; + platforms = with platforms; linux; + maintainers = teams.lxqt.members; }; } diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/quick-settings/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/quick-settings/default.nix index 1d895f11887b60..76e44cba2d0e2c 100644 --- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/quick-settings/default.nix +++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/quick-settings/default.nix @@ -57,11 +57,11 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Quick settings menu for Wingpanel"; homepage = "https://github.com/elementary/quick-settings"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.pantheon.members; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.pantheon.members; }; }) diff --git a/pkgs/desktops/pantheon/libraries/pantheon-wayland/default.nix b/pkgs/desktops/pantheon/libraries/pantheon-wayland/default.nix index e3977713aa1ed8..3c30dba7d4f1ae 100644 --- a/pkgs/desktops/pantheon/libraries/pantheon-wayland/default.nix +++ b/pkgs/desktops/pantheon/libraries/pantheon-wayland/default.nix @@ -49,11 +49,11 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Wayland integration library to the Pantheon Desktop"; homepage = "https://github.com/elementary/pantheon-wayland"; - license = lib.licenses.lgpl3Plus; - maintainers = lib.teams.pantheon.members; - platforms = lib.platforms.linux; + license = licenses.lgpl3Plus; + maintainers = teams.pantheon.members; + platforms = platforms.linux; }; }) diff --git a/pkgs/desktops/pantheon/services/elementary-bluetooth-daemon/default.nix b/pkgs/desktops/pantheon/services/elementary-bluetooth-daemon/default.nix index 5945fa4c798e92..18a2321e672b4f 100644 --- a/pkgs/desktops/pantheon/services/elementary-bluetooth-daemon/default.nix +++ b/pkgs/desktops/pantheon/services/elementary-bluetooth-daemon/default.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Send and receive files via bluetooth"; homepage = "https://github.com/elementary/bluetooth-daemon"; - license = lib.licenses.gpl3Plus; - maintainers = lib.teams.pantheon.members; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = teams.pantheon.members; + platforms = platforms.linux; mainProgram = "io.elementary.bluetooth"; }; }) diff --git a/pkgs/development/beam-modules/hex/default.nix b/pkgs/development/beam-modules/hex/default.nix index 74de36b9269eb3..ce6ea7f9849d74 100644 --- a/pkgs/development/beam-modules/hex/default.nix +++ b/pkgs/development/beam-modules/hex/default.nix @@ -53,11 +53,11 @@ let runHook postInstall ''; - meta = { + meta = with lib; { description = "Package manager for the Erlang VM https://hex.pm"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/hexpm/hex"; - maintainers = with lib.maintainers; [ ericbmerritt ]; + maintainers = with maintainers; [ ericbmerritt ]; }; passthru = { diff --git a/pkgs/development/beam-modules/pgsql/default.nix b/pkgs/development/beam-modules/pgsql/default.nix index a6bd2e955e81a2..1156d4c8429da6 100644 --- a/pkgs/development/beam-modules/pgsql/default.nix +++ b/pkgs/development/beam-modules/pgsql/default.nix @@ -28,11 +28,11 @@ let dontStrip = true; - meta = { + meta = with lib; { description = "Erlang PostgreSQL Driver"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/semiocast/pgsql"; - maintainers = with lib.maintainers; [ ericbmerritt ]; + maintainers = with maintainers; [ ericbmerritt ]; }; passthru = { diff --git a/pkgs/development/beam-modules/rebar3-nix/default.nix b/pkgs/development/beam-modules/rebar3-nix/default.nix index f4c19515987369..95a69e2808a45d 100644 --- a/pkgs/development/beam-modules/rebar3-nix/default.nix +++ b/pkgs/development/beam-modules/rebar3-nix/default.nix @@ -13,11 +13,11 @@ buildRebar3 rec { sha256 = "10ijc06qvv5hqv0qy3w7mbv9pshdb8bvy0f3phr1vd5hksbk731y"; }; - meta = { + meta = with lib; { description = "nix integration for rebar3"; - license = lib.licenses.bsd3; + license = licenses.bsd3; homepage = "https://github.com/erlang-nix/rebar3_nix"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ dlesl gleber ]; diff --git a/pkgs/development/beam-modules/webdriver/default.nix b/pkgs/development/beam-modules/webdriver/default.nix index f8abc24c14eddd..c5c7784ec1fadf 100644 --- a/pkgs/development/beam-modules/webdriver/default.nix +++ b/pkgs/development/beam-modules/webdriver/default.nix @@ -35,11 +35,11 @@ let installFlags = [ "PREFIX=$(out)/lib/erlang/lib" ]; - meta = { + meta = with lib; { description = "WebDriver implementation in Erlang"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/Quviq/webdrv"; - maintainers = with lib.maintainers; [ ericbmerritt ]; + maintainers = with maintainers; [ ericbmerritt ]; }; passthru = { diff --git a/pkgs/development/compilers/abcl/default.nix b/pkgs/development/compilers/abcl/default.nix index a90e948926a29d..8e9eb93cf6953b 100644 --- a/pkgs/development/compilers/abcl/default.nix +++ b/pkgs/development/compilers/abcl/default.nix @@ -56,12 +56,12 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { description = "JVM-based Common Lisp implementation"; homepage = "https://common-lisp.net/project/armedbear/"; - license = lib.licenses.gpl2Classpath; + license = licenses.gpl2Classpath; mainProgram = "abcl"; - maintainers = lib.teams.lisp.members; - platforms = lib.platforms.darwin ++ lib.platforms.linux; + maintainers = teams.lisp.members; + platforms = platforms.darwin ++ platforms.linux; }; }) diff --git a/pkgs/development/compilers/arocc/package.nix b/pkgs/development/compilers/arocc/package.nix index edd3316fa63890..62235a7f066c1b 100644 --- a/pkgs/development/compilers/arocc/package.nix +++ b/pkgs/development/compilers/arocc/package.nix @@ -20,14 +20,14 @@ stdenv.mkDerivation (finalAttrs: { stdenv = overrideCC stdenv finalAttrs.passthru.wrapped; }; - meta = { + meta = with lib; { description = "C compiler written in Zig."; homepage = "http://aro.vexu.eu/"; - license = with lib.licenses; [ + license = with licenses; [ mit unicode-30 ]; - maintainers = with lib.maintainers; [ RossComputerGuy ]; + maintainers = with maintainers; [ RossComputerGuy ]; mainProgram = "arocc"; }; }) diff --git a/pkgs/development/compilers/chicken/4/chicken.nix b/pkgs/development/compilers/chicken/4/chicken.nix index 3ac84e1fdbe0e5..88c8e7d2561847 100644 --- a/pkgs/development/compilers/chicken/4/chicken.nix +++ b/pkgs/development/compilers/chicken/4/chicken.nix @@ -97,11 +97,11 @@ stdenv.mkDerivation { # TODO: Assert csi -R files -p '(pathname-file (repository-path))' == binaryVersion - meta = { + meta = with lib; { homepage = "http://www.call-cc.org/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ corngood ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; # Maybe other Unix + license = licenses.bsd3; + maintainers = with maintainers; [ corngood ]; + platforms = platforms.linux ++ platforms.darwin; # Maybe other Unix description = "Portable compiler for the Scheme programming language"; longDescription = '' CHICKEN is a compiler for the Scheme programming language. diff --git a/pkgs/development/compilers/chicken/4/egg2nix.nix b/pkgs/development/compilers/chicken/4/egg2nix.nix index 2adb096e209970..0dedc6b1017fde 100644 --- a/pkgs/development/compilers/chicken/4/egg2nix.nix +++ b/pkgs/development/compilers/chicken/4/egg2nix.nix @@ -24,12 +24,12 @@ eggDerivation rec { http-client ]; - meta = { + meta = with lib; { description = "Generate nix-expression from CHICKEN scheme eggs"; mainProgram = "egg2nix"; homepage = "https://github.com/the-kenny/egg2nix"; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ corngood ]; + license = licenses.bsd3; + platforms = platforms.unix; + maintainers = with maintainers; [ corngood ]; }; } diff --git a/pkgs/development/compilers/chicken/5/chicken.nix b/pkgs/development/compilers/chicken/5/chicken.nix index 8ef82e0e7d5efc..b3595bafd1e124 100644 --- a/pkgs/development/compilers/chicken/5/chicken.nix +++ b/pkgs/development/compilers/chicken/5/chicken.nix @@ -82,15 +82,15 @@ stdenv.mkDerivation (finalAttrs: { command = "csi -version"; }; - meta = { + meta = with lib; { homepage = "https://call-cc.org/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ corngood nagy konst-aa ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; description = "Portable compiler for the Scheme programming language"; longDescription = '' CHICKEN is a compiler for the Scheme programming language. diff --git a/pkgs/development/compilers/chicken/5/egg2nix.nix b/pkgs/development/compilers/chicken/5/egg2nix.nix index 64393bff217328..3e89a798834431 100644 --- a/pkgs/development/compilers/chicken/5/egg2nix.nix +++ b/pkgs/development/compilers/chicken/5/egg2nix.nix @@ -25,12 +25,12 @@ eggDerivation { matchable ]; - meta = { + meta = with lib; { description = "Generate nix-expression from CHICKEN scheme eggs"; mainProgram = "egg2nix"; homepage = "https://github.com/the-kenny/egg2nix"; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ corngood ]; + license = licenses.bsd3; + platforms = platforms.unix; + maintainers = with maintainers; [ corngood ]; }; } diff --git a/pkgs/development/compilers/clasp/default.nix b/pkgs/development/compilers/clasp/default.nix index cae4fa08e4e772..9f027f49dd96c4 100644 --- a/pkgs/development/compilers/clasp/default.nix +++ b/pkgs/development/compilers/clasp/default.nix @@ -67,10 +67,10 @@ stdenv.mkDerivation rec { --share-path=$out/share ''; - meta = { + meta = with lib; { description = "Common Lisp implementation based on LLVM with C++ integration"; - license = lib.licenses.lgpl21Plus; - maintainers = lib.teams.lisp.members; + license = licenses.lgpl21Plus; + maintainers = teams.lisp.members; platforms = [ "x86_64-linux" "x86_64-darwin" diff --git a/pkgs/development/compilers/codon/default.nix b/pkgs/development/compilers/codon/default.nix index 491f38f2606af2..1fa9af88167eaa 100644 --- a/pkgs/development/compilers/codon/default.nix +++ b/pkgs/development/compilers/codon/default.nix @@ -132,12 +132,12 @@ stdenv.mkDerivation { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "High-performance, zero-overhead, extensible Python compiler using LLVM"; homepage = "https://docs.exaloop.io/codon"; maintainers = [ ]; - license = lib.licenses.bsl11; - platforms = lib.platforms.all; + license = licenses.bsl11; + platforms = platforms.all; broken = true; # `codon-llvm` build fails on darwin and linux }; } diff --git a/pkgs/development/compilers/djgpp/default.nix b/pkgs/development/compilers/djgpp/default.nix index 9b901b9beecac0..de24e90bf6d24f 100644 --- a/pkgs/development/compilers/djgpp/default.nix +++ b/pkgs/development/compilers/djgpp/default.nix @@ -97,11 +97,11 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with lib; { description = "Complete 32-bit GNU-based development system for Intel x86 PCs running DOS"; homepage = "https://www.delorie.com/djgpp/"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ hughobrien ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ hughobrien ]; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/development/compilers/elm/packages/elm-test-rs/default.nix b/pkgs/development/compilers/elm/packages/elm-test-rs/default.nix index e655fdcdbf0486..adcf466c4da941 100644 --- a/pkgs/development/compilers/elm/packages/elm-test-rs/default.nix +++ b/pkgs/development/compilers/elm/packages/elm-test-rs/default.nix @@ -37,12 +37,12 @@ rustPlatform.buildRustPackage rec { # Tests perform networking and therefore can't work in sandbox doCheck = false; - meta = { + meta = with lib; { description = "Fast and portable executable to run your Elm tests"; mainProgram = "elm-test-rs"; homepage = "https://github.com/mpizenberg/elm-test-rs"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ jpagex zupo ]; diff --git a/pkgs/development/compilers/fasm/bin.nix b/pkgs/development/compilers/fasm/bin.nix index d7d83405a5fe05..45f08388f45d44 100644 --- a/pkgs/development/compilers/fasm/bin.nix +++ b/pkgs/development/compilers/fasm/bin.nix @@ -21,12 +21,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "x86(-64) macro assembler to binary, MZ, PE, COFF, and ELF"; homepage = "https://flatassembler.net/download.php"; - license = lib.licenses.bsd2; + license = licenses.bsd2; mainProgram = "fasm"; - maintainers = with lib.maintainers; [ orivej ]; + maintainers = with maintainers; [ orivej ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/development/compilers/gerbil/build.nix b/pkgs/development/compilers/gerbil/build.nix index 26808377b1ac50..75a806e71fcaae 100644 --- a/pkgs/development/compilers/gerbil/build.nix +++ b/pkgs/development/compilers/gerbil/build.nix @@ -129,14 +129,14 @@ stdenv.mkDerivation rec { dontStrip = true; - meta = { + meta = with lib; { description = "Gerbil Scheme"; homepage = "https://github.com/vyzo/gerbil"; - license = lib.licenses.lgpl21Only; # dual, also asl20, like Gambit + license = licenses.lgpl21Only; # dual, also asl20, like Gambit # NB regarding platforms: regularly tested on Linux and on macOS. # Please report success and/or failure to fare. - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ fare ]; + platforms = platforms.unix; + maintainers = with maintainers; [ fare ]; }; outputsToInstall = [ "out" ]; diff --git a/pkgs/development/compilers/gwt/2.4.0.nix b/pkgs/development/compilers/gwt/2.4.0.nix index 03ef01b78f0fe0..cfc1a89b39c6bc 100644 --- a/pkgs/development/compilers/gwt/2.4.0.nix +++ b/pkgs/development/compilers/gwt/2.4.0.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { mv gwt-2.4.0 $out/bin ''; - meta = { + meta = with lib; { homepage = "https://www.gwtproject.org/"; description = "Development toolkit for building and optimizing complex browser-based applications"; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; + license = licenses.asl20; + platforms = platforms.unix; }; } diff --git a/pkgs/development/compilers/julia/generic-bin.nix b/pkgs/development/compilers/julia/generic-bin.nix index a7c9d323b7a8a2..4667fa9c774efe 100644 --- a/pkgs/development/compilers/julia/generic-bin.nix +++ b/pkgs/development/compilers/julia/generic-bin.nix @@ -130,12 +130,12 @@ stdenv.mkDerivation { runHook postInstallCheck ''; - meta = { + meta = with lib; { description = "High-level, high-performance, dynamic language for technical computing"; homepage = "https://julialang.org"; # Bundled and linked with various GPL code, although Julia itself is MIT. - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + maintainers = with maintainers; [ raskin nickcao wegank diff --git a/pkgs/development/compilers/kotlin/native.nix b/pkgs/development/compilers/kotlin/native.nix index 82e31e579fae1b..041e175a4b258c 100644 --- a/pkgs/development/compilers/kotlin/native.nix +++ b/pkgs/development/compilers/kotlin/native.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/run_konan --prefix PATH ":" ${lib.makeBinPath [ jre ]} ''; - meta = { + meta = with lib; { homepage = "https://kotlinlang.org/"; description = "Modern programming language that makes developers happier"; longDescription = '' @@ -65,9 +65,9 @@ stdenv.mkDerivation rec { backend for the Kotlin compiler and native implementation of the Kotlin standard library. ''; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ fabianhjr ]; - platforms = [ "x86_64-linux" ] ++ lib.platforms.darwin; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.asl20; + maintainers = with maintainers; [ fabianhjr ]; + platforms = [ "x86_64-linux" ] ++ platforms.darwin; }; } diff --git a/pkgs/development/compilers/mono/llvm.nix b/pkgs/development/compilers/mono/llvm.nix index 27ddb96d9b05ed..46d3c2b8031054 100644 --- a/pkgs/development/compilers/mono/llvm.nix +++ b/pkgs/development/compilers/mono/llvm.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation { ] ++ lib.optional (!isDarwin) "-DBUILD_SHARED_LIBS=ON"; - meta = { + meta = with lib; { description = "Collection of modular and reusable compiler and toolchain technologies - Mono build"; homepage = "http://llvm.org/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ thoughtpolice ]; - platforms = lib.platforms.all; + license = licenses.bsd3; + maintainers = with maintainers; [ thoughtpolice ]; + platforms = platforms.all; }; } diff --git a/pkgs/development/compilers/obliv-c/default.nix b/pkgs/development/compilers/obliv-c/default.nix index 5c453974ac0e16..8aa278b24ec35b 100644 --- a/pkgs/development/compilers/obliv-c/default.nix +++ b/pkgs/development/compilers/obliv-c/default.nix @@ -53,10 +53,10 @@ stdenv.mkDerivation rec { cp _build/lib*.a _build/lib*.so* "$out/lib" ''; - meta = { + meta = with lib; { description = "GCC wrapper that makes it easy to embed secure computation protocols inside regular C programs"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.bsd3; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; }; } diff --git a/pkgs/development/compilers/p4c/default.nix b/pkgs/development/compilers/p4c/default.nix index 3fd3aa022c07ae..ef1bc7ecbedfa2 100644 --- a/pkgs/development/compilers/p4c/default.nix +++ b/pkgs/development/compilers/p4c/default.nix @@ -98,15 +98,15 @@ stdenv.mkDerivation (finalAttrs: { flex ]; - meta = { + meta = with lib; { changelog = "https://github.com/p4lang/p4c/releases"; description = "Reference compiler for the P4 programming language"; homepage = "https://github.com/p4lang/p4c"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ raitobezarius govanify ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; }) diff --git a/pkgs/development/compilers/polyml/5.6.nix b/pkgs/development/compilers/polyml/5.6.nix index 1601669673ebe4..1003eb96c4c813 100644 --- a/pkgs/development/compilers/polyml/5.6.nix +++ b/pkgs/development/compilers/polyml/5.6.nix @@ -33,17 +33,17 @@ stdenv.mkDerivation { sha256 = "05d6l2a5m9jf32a8kahwg2p2ph4x9rjf1nsl83331q3gwn5bkmr0"; }; - meta = { + meta = with lib; { description = "Standard ML compiler and interpreter"; longDescription = '' Poly/ML is a full implementation of Standard ML. ''; homepage = "https://www.polyml.org/"; - license = lib.licenses.lgpl21; - platforms = with lib.platforms; linux; + license = licenses.lgpl21; + platforms = with platforms; linux; maintainers = [ # Add your name here! - lib.maintainers.maggesi + maintainers.maggesi ]; }; } diff --git a/pkgs/development/compilers/smlnj/bootstrap.nix b/pkgs/development/compilers/smlnj/bootstrap.nix index ec9db0755fdc4a..ba02ba6e051e90 100644 --- a/pkgs/development/compilers/smlnj/bootstrap.nix +++ b/pkgs/development/compilers/smlnj/bootstrap.nix @@ -49,12 +49,12 @@ stdenv.mkDerivation rec { wrapProgram "$out/bin/sml" --set "SMLNJ_HOME" "$out" ''; - meta = { + meta = with lib; { description = "Compiler for the Standard ML '97 programming language"; homepage = "http://www.smlnj.org"; - license = lib.licenses.free; - platforms = lib.platforms.darwin; - maintainers = [ lib.maintainers.jwiegley ]; + license = licenses.free; + platforms = platforms.darwin; + maintainers = [ maintainers.jwiegley ]; mainProgram = "sml"; }; } diff --git a/pkgs/development/compilers/swift/foundation/default.nix b/pkgs/development/compilers/swift/foundation/default.nix index c1836607eb11f5..783d5598395593 100644 --- a/pkgs/development/compilers/swift/foundation/default.nix +++ b/pkgs/development/compilers/swift/foundation/default.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation { substituteAll ${./glue.cmake} $dev/lib/cmake/Foundation/FoundationConfig.cmake ''; - meta = { + meta = with lib; { description = "Core utilities, internationalization, and OS independence for Swift"; mainProgram = "plutil"; homepage = "https://github.com/apple/swift-corelibs-foundation"; - platforms = lib.platforms.linux; - license = lib.licenses.asl20; - maintainers = lib.teams.swift.members; + platforms = platforms.linux; + license = licenses.asl20; + maintainers = teams.swift.members; }; } diff --git a/pkgs/development/compilers/swift/libdispatch/default.nix b/pkgs/development/compilers/swift/libdispatch/default.nix index 0b326af1b33bdc..7cfe6e672d20c5 100644 --- a/pkgs/development/compilers/swift/libdispatch/default.nix +++ b/pkgs/development/compilers/swift/libdispatch/default.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation { substituteAll ${./glue.cmake} $dev/lib/cmake/dispatch/dispatchConfig.cmake ''; - meta = { + meta = with lib; { description = "Grand Central Dispatch"; homepage = "https://github.com/apple/swift-corelibs-libdispatch"; - platforms = lib.platforms.linux; - license = lib.licenses.asl20; - maintainers = lib.teams.swift.members ++ (with lib.maintainers; [ cmm ]); + platforms = platforms.linux; + license = licenses.asl20; + maintainers = teams.swift.members ++ (with maintainers; [ cmm ]); }; } diff --git a/pkgs/development/compilers/swift/sourcekit-lsp/default.nix b/pkgs/development/compilers/swift/sourcekit-lsp/default.nix index 8d425bcc6f5cca..d4ea4c0a413ccf 100644 --- a/pkgs/development/compilers/swift/sourcekit-lsp/default.nix +++ b/pkgs/development/compilers/swift/sourcekit-lsp/default.nix @@ -84,12 +84,12 @@ stdenv.mkDerivation { # compiler itself. (Only its 'lib' output.) disallowedRequisites = [ swift.swift ]; - meta = { + meta = with lib; { description = "Language Server Protocol implementation for Swift and C-based languages"; mainProgram = "sourcekit-lsp"; homepage = "https://github.com/apple/sourcekit-lsp"; - platforms = with lib.platforms; linux ++ darwin; - license = lib.licenses.asl20; - maintainers = lib.teams.swift.members; + platforms = with platforms; linux ++ darwin; + license = licenses.asl20; + maintainers = teams.swift.members; }; } diff --git a/pkgs/development/compilers/swift/swift-docc/default.nix b/pkgs/development/compilers/swift/swift-docc/default.nix index f1c1ee2dcd684e..2ff6ad95fe9bdd 100644 --- a/pkgs/development/compilers/swift/swift-docc/default.nix +++ b/pkgs/development/compilers/swift/swift-docc/default.nix @@ -60,12 +60,12 @@ stdenv.mkDerivation { # compiler itself. (Only its 'lib' output.) disallowedRequisites = [ swift.swift ]; - meta = { + meta = with lib; { description = "Documentation compiler for Swift"; mainProgram = "docc"; homepage = "https://github.com/apple/swift-docc"; - platforms = with lib.platforms; linux ++ darwin; - license = lib.licenses.asl20; - maintainers = lib.teams.swift.members; + platforms = with platforms; linux ++ darwin; + license = licenses.asl20; + maintainers = teams.swift.members; }; } diff --git a/pkgs/development/compilers/swift/swift-driver/default.nix b/pkgs/development/compilers/swift/swift-driver/default.nix index 52567304af3162..deeb0e9c42869d 100644 --- a/pkgs/development/compilers/swift/swift-driver/default.nix +++ b/pkgs/development/compilers/swift/swift-driver/default.nix @@ -82,11 +82,11 @@ stdenv.mkDerivation { done ''; - meta = { + meta = with lib; { description = "Swift compiler driver"; homepage = "https://github.com/apple/swift-driver"; - platforms = with lib.platforms; linux ++ darwin; - license = lib.licenses.asl20; - maintainers = lib.teams.swift.members; + platforms = with platforms; linux ++ darwin; + license = licenses.asl20; + maintainers = teams.swift.members; }; } diff --git a/pkgs/development/compilers/swift/swift-format/default.nix b/pkgs/development/compilers/swift/swift-format/default.nix index eee7dd931026f8..9b6a66ac370a29 100644 --- a/pkgs/development/compilers/swift/swift-format/default.nix +++ b/pkgs/development/compilers/swift/swift-format/default.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation { cp $binPath/swift-format $out/bin/ ''; - meta = { + meta = with lib; { description = "Formatting technology for Swift source code"; homepage = "https://github.com/apple/swift-format"; - platforms = with lib.platforms; linux ++ darwin; - license = lib.licenses.asl20; - maintainers = lib.teams.swift.members; + platforms = with platforms; linux ++ darwin; + license = licenses.asl20; + maintainers = teams.swift.members; mainProgram = "swift-format"; }; } diff --git a/pkgs/development/compilers/swift/swiftpm/default.nix b/pkgs/development/compilers/swift/swiftpm/default.nix index 53fd9fcb8ac996..8b38aff83d0b4c 100644 --- a/pkgs/development/compilers/swift/swiftpm/default.nix +++ b/pkgs/development/compilers/swift/swiftpm/default.nix @@ -477,12 +477,12 @@ stdenv.mkDerivation ( setupHook = ./setup-hook.sh; - meta = { + meta = with lib; { description = "Package Manager for the Swift Programming Language"; homepage = "https://github.com/apple/swift-package-manager"; - platforms = with lib.platforms; linux ++ darwin; - license = lib.licenses.asl20; - maintainers = lib.teams.swift.members; + platforms = with platforms; linux ++ darwin; + license = licenses.asl20; + maintainers = teams.swift.members; }; } ) diff --git a/pkgs/development/compilers/swift/swiftpm2nix/default.nix b/pkgs/development/compilers/swift/swiftpm2nix/default.nix index 5f87f4b1f00639..dd28d851e03566 100644 --- a/pkgs/development/compilers/swift/swiftpm2nix/default.nix +++ b/pkgs/development/compilers/swift/swiftpm2nix/default.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation { passthru = callPackage ./support.nix { }; - meta = { + meta = with lib; { description = "Generate a Nix expression to fetch swiftpm dependencies"; mainProgram = "swiftpm2nix"; - maintainers = lib.teams.swift.members; - platforms = lib.platforms.all; + maintainers = teams.swift.members; + platforms = platforms.all; }; } diff --git a/pkgs/development/compilers/swift/xctest/default.nix b/pkgs/development/compilers/swift/xctest/default.nix index 59390318c6c4d8..50235ec7870a9b 100644 --- a/pkgs/development/compilers/swift/xctest/default.nix +++ b/pkgs/development/compilers/swift/xctest/default.nix @@ -50,11 +50,11 @@ stdenv.mkDerivation { mv $out/lib/swift/darwin $out/lib/swift/${swift.swiftOs} ''; - meta = { + meta = with lib; { description = "Framework for writing unit tests in Swift"; homepage = "https://github.com/apple/swift-corelibs-xctest"; - platforms = lib.platforms.all; - license = lib.licenses.asl20; - maintainers = lib.teams.swift.members; + platforms = platforms.all; + license = licenses.asl20; + maintainers = teams.swift.members; }; } diff --git a/pkgs/development/compilers/urweb/default.nix b/pkgs/development/compilers/urweb/default.nix index f916e0285dfafa..7955d55ee170ce 100644 --- a/pkgs/development/compilers/urweb/default.nix +++ b/pkgs/development/compilers/urweb/default.nix @@ -57,15 +57,15 @@ stdenv.mkDerivation rec { # Be sure to keep the statically linked libraries dontDisableStatic = true; - meta = { + meta = with lib; { description = "Advanced purely-functional web programming language"; mainProgram = "urweb"; homepage = "http://www.impredicative.com/ur/"; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = licenses.bsd3; + platforms = platforms.linux ++ platforms.darwin; maintainers = [ - lib.maintainers.thoughtpolice - lib.maintainers.sheganinans + maintainers.thoughtpolice + maintainers.sheganinans ]; }; } diff --git a/pkgs/development/coq-modules/Ordinal/default.nix b/pkgs/development/coq-modules/Ordinal/default.nix index 1a3571589d6120..e35e388e146cbb 100644 --- a/pkgs/development/coq-modules/Ordinal/default.nix +++ b/pkgs/development/coq-modules/Ordinal/default.nix @@ -26,10 +26,10 @@ mkCoqDerivation { installPhase = '' make -f Makefile.coq COQMF_COQLIB=$out/lib/coq/${coq.coq-version}/ install ''; - meta = { + meta = with lib; { homepage = "https://github.com/snu-sf/Ordinal"; description = "Ordinal Numbers in Coq"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ damhiya ]; + license = licenses.mit; + maintainers = with maintainers; [ damhiya ]; }; } diff --git a/pkgs/development/coq-modules/Vpl/default.nix b/pkgs/development/coq-modules/Vpl/default.nix index 7a6b9d2ec3d68e..ef169bff614ff8 100644 --- a/pkgs/development/coq-modules/Vpl/default.nix +++ b/pkgs/development/coq-modules/Vpl/default.nix @@ -16,10 +16,10 @@ mkCoqDerivation { sourceRoot = "source/coq"; - meta = { + meta = with lib; { description = "Coq interface to VPL abstract domain of convex polyhedra"; homepage = "https://amarechal.gitlab.io/home/projects/vpl/"; - license = lib.licenses.lgpl3Only; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.lgpl3Only; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/coq-modules/coq-elpi/default.nix b/pkgs/development/coq-modules/coq-elpi/default.nix index b4aa7727d6ab41..14de45cd688b83 100644 --- a/pkgs/development/coq-modules/coq-elpi/default.nix +++ b/pkgs/development/coq-modules/coq-elpi/default.nix @@ -171,10 +171,10 @@ in make elpi/dune || true ''; - meta = { + meta = with lib; { description = "Coq plugin embedding ELPI"; - maintainers = [ lib.maintainers.cohencyril ]; - license = lib.licenses.lgpl21Plus; + maintainers = [ maintainers.cohencyril ]; + license = licenses.lgpl21Plus; }; }).overrideAttrs ( diff --git a/pkgs/development/coq-modules/coq-hammer/tactics.nix b/pkgs/development/coq-modules/coq-hammer/tactics.nix index 893c8eb81b1abd..faae4598000a01 100644 --- a/pkgs/development/coq-modules/coq-hammer/tactics.nix +++ b/pkgs/development/coq-modules/coq-hammer/tactics.nix @@ -69,10 +69,10 @@ mkCoqDerivation { buildFlags = [ "tactics" ]; installTargets = [ "install-tactics" ]; - meta = { + meta = with lib; { description = "Reconstruction tactics for the hammer for Coq"; homepage = "https://github.com/lukaszcz/coqhammer"; - license = lib.licenses.lgpl21; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.lgpl21; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/coq-modules/coq-tactical/default.nix b/pkgs/development/coq-modules/coq-tactical/default.nix index 55254fc86a3ec3..851285cbce4f1c 100644 --- a/pkgs/development/coq-modules/coq-tactical/default.nix +++ b/pkgs/development/coq-modules/coq-tactical/default.nix @@ -31,9 +31,9 @@ mkCoqDerivation { cp -pR src/* $COQLIB/user-contrib/Tactical ''; - meta = { + meta = with lib; { description = "Library of Coq proof automation"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ stepbrobd ]; + license = licenses.mit; + maintainers = with maintainers; [ stepbrobd ]; }; } diff --git a/pkgs/development/coq-modules/coqutil/default.nix b/pkgs/development/coq-modules/coqutil/default.nix index 53aff2a614db25..5d0d2a1675ef96 100644 --- a/pkgs/development/coq-modules/coqutil/default.nix +++ b/pkgs/development/coq-modules/coqutil/default.nix @@ -30,9 +30,9 @@ mkCoqDerivation { nativeBuildInputs = [ findutils ]; - meta = { + meta = with lib; { description = "Coq library for tactics, basic definitions, sets, maps"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ stepbrobd ]; + license = licenses.mit; + maintainers = with maintainers; [ stepbrobd ]; }; } diff --git a/pkgs/development/coq-modules/metacoq/default.nix b/pkgs/development/coq-modules/metacoq/default.nix index 15c83514cce248..f7b427d0e451e9 100644 --- a/pkgs/development/coq-modules/metacoq/default.nix +++ b/pkgs/development/coq-modules/metacoq/default.nix @@ -192,10 +192,10 @@ let cd ${pkgpath} ''; - meta = { + meta = with lib; { homepage = "https://metacoq.github.io/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ cohencyril ]; + license = licenses.mit; + maintainers = with maintainers; [ cohencyril ]; }; } // lib.optionalAttrs (package != "single") { diff --git a/pkgs/development/coq-modules/vcfloat/default.nix b/pkgs/development/coq-modules/vcfloat/default.nix index 7e9aca3ea7d910..ffbcdccba2b111 100644 --- a/pkgs/development/coq-modules/vcfloat/default.nix +++ b/pkgs/development/coq-modules/vcfloat/default.nix @@ -41,10 +41,10 @@ let bignums ]; - meta = { + meta = with lib; { description = "Tool for Coq proofs about floating-point round-off error"; - maintainers = with lib.maintainers; [ quinn-dougherty ]; - license = lib.licenses.lgpl3Plus; + maintainers = with maintainers; [ quinn-dougherty ]; + license = licenses.lgpl3Plus; }; }; in diff --git a/pkgs/development/cuda-modules/cuda-library-samples/generic.nix b/pkgs/development/cuda-modules/cuda-library-samples/generic.nix index 43d2bece88c900..5293a713eec708 100644 --- a/pkgs/development/cuda-modules/cuda-library-samples/generic.nix +++ b/pkgs/development/cuda-modules/cuda-library-samples/generic.nix @@ -28,16 +28,16 @@ let addDriverRunpath $exe done ''; - meta = { + meta = with lib; { description = "examples of using libraries using CUDA"; longDescription = '' CUDA Library Samples contains examples demonstrating the use of features in the math and image processing libraries cuBLAS, cuTENSOR, cuSPARSE, cuSOLVER, cuFFT, cuRAND, NPP and nvJPEG. ''; - license = lib.licenses.bsd3; + license = licenses.bsd3; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ obsidian-systems-maintenance ] ++ lib.teams.cuda.members; + maintainers = with maintainers; [ obsidian-systems-maintenance ] ++ teams.cuda.members; }; }; in diff --git a/pkgs/development/cuda-modules/cuda-samples/generic.nix b/pkgs/development/cuda-modules/cuda-samples/generic.nix index 97e05957d3ed53..3739586a7587a1 100644 --- a/pkgs/development/cuda-modules/cuda-samples/generic.nix +++ b/pkgs/development/cuda-modules/cuda-samples/generic.nix @@ -69,11 +69,11 @@ backendStdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Samples for CUDA Developers which demonstrates features in CUDA Toolkit"; # CUDA itself is proprietary, but these sample apps are not. - license = lib.licenses.bsd3; + license = licenses.bsd3; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ obsidian-systems-maintenance ] ++ lib.teams.cuda.members; + maintainers = with maintainers; [ obsidian-systems-maintenance ] ++ teams.cuda.members; }; }) diff --git a/pkgs/development/gnuradio-modules/bladeRF/default.nix b/pkgs/development/gnuradio-modules/bladeRF/default.nix index 6251784b3a4ce0..340a2b5208c6cf 100644 --- a/pkgs/development/gnuradio-modules/bladeRF/default.nix +++ b/pkgs/development/gnuradio-modules/bladeRF/default.nix @@ -54,11 +54,11 @@ mkDerivation { python.pkgs.pygccxml ]; - meta = { + meta = with lib; { description = "GNU Radio source and sink blocks for bladeRF devices"; homepage = "https://github.com/Nuand/gr-bladeRF"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ wucke13 ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ wucke13 ]; + platforms = platforms.linux; }; } diff --git a/pkgs/development/gnuradio-modules/fosphor/default.nix b/pkgs/development/gnuradio-modules/fosphor/default.nix index d6334cf9d11662..754cfd2597370b 100644 --- a/pkgs/development/gnuradio-modules/fosphor/default.nix +++ b/pkgs/development/gnuradio-modules/fosphor/default.nix @@ -79,15 +79,15 @@ mkDerivation { (lib.cmakeBool "ENABLE_PNG" enablePNG) ]; - meta = { + meta = with lib; { description = "GNU Radio block for RTSA-like spectrum visualization using OpenCL and OpenGL acceleration"; longDescription = '' You'll need to install an OpenCL ICD for it to work. See https://nixos.org/manual/nixos/stable/#sec-gpu-accel-opencl ''; homepage = "https://projects.osmocom.org/projects/sdr/wiki/Fosphor"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ chuangzhu ]; - platforms = lib.platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ chuangzhu ]; + platforms = platforms.linux; }; } diff --git a/pkgs/development/idris-modules/array.nix b/pkgs/development/idris-modules/array.nix index a35b9c5be36ad9..69e1f9d5b06285 100644 --- a/pkgs/development/idris-modules/array.nix +++ b/pkgs/development/idris-modules/array.nix @@ -14,10 +14,10 @@ build-idris-package { sha256 = "148dnyd664vnxi04zjsyjbs1y51dq0zz98005q9c042k4jcfpfjh"; }; - meta = { + meta = with lib; { description = "Primitive flat arrays containing Idris values"; homepage = "https://github.com/idris-hackers/idris-array"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/bi.nix b/pkgs/development/idris-modules/bi.nix index 9ea6004049d769..52865a059f4a62 100644 --- a/pkgs/development/idris-modules/bi.nix +++ b/pkgs/development/idris-modules/bi.nix @@ -22,10 +22,10 @@ build-idris-package { sha256 = "1px550spigl8k1m1r64mjrw7qjvipa43xy95kz1pb5ibmy84d6r3"; }; - meta = { + meta = with lib; { description = "Idris Binary Integer Arithmetic, porting PArith, NArith, and ZArith from Coq"; homepage = "https://github.com/sbp/idris-bi"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/coda.nix b/pkgs/development/idris-modules/coda.nix index 9fde026cee7c0d..be4946427c05d3 100644 --- a/pkgs/development/idris-modules/coda.nix +++ b/pkgs/development/idris-modules/coda.nix @@ -16,10 +16,10 @@ build-idris-package { sha256 = "07wps3pyp4ph0vj3640x561gkjkbcdq1if9h6sjjb30924sbdxfg"; }; - meta = { + meta = with lib; { description = "Some Idris libraries including nodejs bindings and ISO8601 Date and Time"; homepage = "https://github.com/ostera/idris-coda"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/comonad.nix b/pkgs/development/idris-modules/comonad.nix index 517f934a6d64ba..b4a2041df2559f 100644 --- a/pkgs/development/idris-modules/comonad.nix +++ b/pkgs/development/idris-modules/comonad.nix @@ -14,10 +14,10 @@ build-idris-package { sha256 = "0iiknx6gj4wr9s59iz439c63h3887pilymxrc80v79lj1lsk03ac"; }; - meta = { + meta = with lib; { description = "Comonads for Idris"; homepage = "https://github.com/vmchale/comonad"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/composition.nix b/pkgs/development/idris-modules/composition.nix index 834e135a81e2ca..d48750bb2384b0 100644 --- a/pkgs/development/idris-modules/composition.nix +++ b/pkgs/development/idris-modules/composition.nix @@ -17,10 +17,10 @@ build-idris-package { sha256 = "05424xzxx6f3ig0ravib15nr34nqvaq8spcj6b1512raqrvkkay8"; }; - meta = { + meta = with lib; { description = "Composition extras for Idris"; homepage = "https://github.com/vmchale/composition"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/config.nix b/pkgs/development/idris-modules/config.nix index 9e22601f081e73..63082eb943eba1 100644 --- a/pkgs/development/idris-modules/config.nix +++ b/pkgs/development/idris-modules/config.nix @@ -25,10 +25,10 @@ build-idris-package { sha256 = "1w2w2l4drvkf8mdzh3lwn6l5lnkbxlx9p22s7spw82n5s4wib6c9"; }; - meta = { + meta = with lib; { description = "Parsers for various configuration files written in Idris"; homepage = "https://github.com/benclifford/idris-config"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/console.nix b/pkgs/development/idris-modules/console.nix index c3cc91eedc9557..7f11b4484de209 100644 --- a/pkgs/development/idris-modules/console.nix +++ b/pkgs/development/idris-modules/console.nix @@ -23,10 +23,10 @@ build-idris-package { sha256 = "0cn4fwnf3sg6269pbfbhnmsvyaya4d8479n2hy039idxzzkxw0yb"; }; - meta = { + meta = with lib; { description = "Idris library to interact with the browser console"; homepage = "https://github.com/pierrebeaucamp/idris-console"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.asl20; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/containers.nix b/pkgs/development/idris-modules/containers.nix index d0b016d3e249ab..aaa7e9936cb468 100644 --- a/pkgs/development/idris-modules/containers.nix +++ b/pkgs/development/idris-modules/containers.nix @@ -21,10 +21,10 @@ build-idris-package { sha256 = "0vyjadd9sb8qcbzvzhnqwc8wa7ma770c10xhn96jsqsnzr81k52d"; }; - meta = { + meta = with lib; { description = "Various data structures for use in the Idris Language"; homepage = "https://github.com/jfdm/idris-containers"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/cube.nix b/pkgs/development/idris-modules/cube.nix index 23934471dcb2e6..ee200b08a096e8 100644 --- a/pkgs/development/idris-modules/cube.nix +++ b/pkgs/development/idris-modules/cube.nix @@ -14,10 +14,10 @@ build-idris-package { sha256 = "11k45j0b4qabj6zhwjvynyj56nmssf7d4fnkv66bd2w1pxnshzxg"; }; - meta = { + meta = with lib; { description = "Implementation of the Lambda Cube in Idris"; homepage = "https://github.com/aatxe/cube.idr"; - license = lib.licenses.agpl3Only; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.agpl3Only; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/derive.nix b/pkgs/development/idris-modules/derive.nix index 7a36001be9ded4..6643e2bff51639 100644 --- a/pkgs/development/idris-modules/derive.nix +++ b/pkgs/development/idris-modules/derive.nix @@ -21,10 +21,10 @@ build-idris-package { sha256 = "06za15m1kv9mijzll5712crry4iwx3b0fjv76gy9vv1p10gy2g4m"; }; - meta = { + meta = with lib; { description = "Type class deriving with elaboration reflection"; homepage = "https://github.com/davlum/derive-all-the-instances"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/descncrunch.nix b/pkgs/development/idris-modules/descncrunch.nix index 6ec4c9a4d7087b..5bf31f968b6465 100644 --- a/pkgs/development/idris-modules/descncrunch.nix +++ b/pkgs/development/idris-modules/descncrunch.nix @@ -17,11 +17,11 @@ build-idris-package { sha256 = "09fh334aga1z1hbw79507rdv7qsh0mqzb89lvpznn7vzi9zkl8fx"; }; - meta = { + meta = with lib; { description = "Descriptions, levitation, and reflecting the elaborator"; homepage = "https://github.com/ahmadsalim/desc-n-crunch"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.gpl3; + maintainers = [ maintainers.brainrape ]; broken = true; }; } diff --git a/pkgs/development/idris-modules/dict.nix b/pkgs/development/idris-modules/dict.nix index f803f7f3fe3347..464260d8a4683d 100644 --- a/pkgs/development/idris-modules/dict.nix +++ b/pkgs/development/idris-modules/dict.nix @@ -21,10 +21,10 @@ build-idris-package { sed -i 's/\"//g' source/dict.ipkg ''; - meta = { + meta = with lib; { description = "Dict k v in Idris"; homepage = "https://github.com/be5invis/idris-dict"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/dom.nix b/pkgs/development/idris-modules/dom.nix index bcc28b5dba6a38..b0f66f157e733d 100644 --- a/pkgs/development/idris-modules/dom.nix +++ b/pkgs/development/idris-modules/dom.nix @@ -23,10 +23,10 @@ build-idris-package { sha256 = "16z9mykw2d9rjikn07kd6igb53jgaqi8zby4nc4n0gmplmhwdx4x"; }; - meta = { + meta = with lib; { description = "Idris library to interact with the DOM"; homepage = "https://github.com/pierrebeaucamp/idris-dom"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.asl20; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/electron.nix b/pkgs/development/idris-modules/electron.nix index a94526d6b0d2a4..e9b5816c34b17f 100644 --- a/pkgs/development/idris-modules/electron.nix +++ b/pkgs/development/idris-modules/electron.nix @@ -23,10 +23,10 @@ build-idris-package { sha256 = "1rpa7yjvfpzl06h0qbk54jd2n52nmgpf7nq5aamcinqh7h5gbiwn"; }; - meta = { + meta = with lib; { description = "Electron bindings for Idris"; homepage = "https://github.com/jheiling/idris-electron"; - license = lib.licenses.unlicense; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.unlicense; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/eternal.nix b/pkgs/development/idris-modules/eternal.nix index de52277821ce2c..52da64cef8791b 100644 --- a/pkgs/development/idris-modules/eternal.nix +++ b/pkgs/development/idris-modules/eternal.nix @@ -24,10 +24,10 @@ build-idris-package { sed -i 's/\/usr\/local\/idris\/readProcess.o/readProcess.o/g' source/Control/Eternal/System/Process.idr ''; - meta = { + meta = with lib; { description = "Infix pipe operators and some Nat, Float, String conversions"; homepage = "https://github.com/Heather/Control.Eternal.Idris"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/farrp.nix b/pkgs/development/idris-modules/farrp.nix index 19e3edd3bb9001..916fb67313dbc1 100644 --- a/pkgs/development/idris-modules/farrp.nix +++ b/pkgs/development/idris-modules/farrp.nix @@ -17,10 +17,10 @@ build-idris-package { sha256 = "1zrf750d7x1cz7kkgcx4ipa87hkg10adwii4qqvz9vpjap7vh7h0"; }; - meta = { + meta = with lib; { description = "Arrowized FRP library for Idris with static safety guarantees"; homepage = "https://github.com/lambda-11235/FarRP"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/free.nix b/pkgs/development/idris-modules/free.nix index 38a71bdc116ec4..46a4ce6ce8ee8c 100644 --- a/pkgs/development/idris-modules/free.nix +++ b/pkgs/development/idris-modules/free.nix @@ -16,10 +16,10 @@ build-idris-package { sha256 = "1n4daf1acjkd73an4m31yp9g616crjb7h5z02f1gj29wm3dbx5s7"; }; - meta = { + meta = with lib; { description = "Free Monads and useful constructions to work with them"; homepage = "https://github.com/idris-hackers/idris-free"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd2; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/fsm.nix b/pkgs/development/idris-modules/fsm.nix index 047b2f3d513bf8..a4713d5a7273d8 100644 --- a/pkgs/development/idris-modules/fsm.nix +++ b/pkgs/development/idris-modules/fsm.nix @@ -14,10 +14,10 @@ build-idris-package { sha256 = "0n1kqpxysl3dji0zd8c47ir4144s0n3pb8i1mqp6ylma3r7rlg1l"; }; - meta = { + meta = with lib; { description = "Comonads for Idris"; homepage = "https://github.com/ctford/flying-spaghetti-monster"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/glfw.nix b/pkgs/development/idris-modules/glfw.nix index 359ba66f9f50a5..c608332da14c96 100644 --- a/pkgs/development/idris-modules/glfw.nix +++ b/pkgs/development/idris-modules/glfw.nix @@ -26,10 +26,10 @@ build-idris-package { sha256 = "045ylaj66g5m4syzhqxlaxmivy8y7jznkcf1y7w4awa4y5znyqqd"; }; - meta = { + meta = with lib; { description = "GLFW bindings for Idris"; homepage = "https://github.com/eckart/glfw-idris"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/graphviz.nix b/pkgs/development/idris-modules/graphviz.nix index 2df9e62e3e8439..62c2d12ce07da4 100644 --- a/pkgs/development/idris-modules/graphviz.nix +++ b/pkgs/development/idris-modules/graphviz.nix @@ -21,10 +21,10 @@ build-idris-package { sed -i "/^author /cauthor = Merlin Goettlinger" source/graphviz.ipkg ''; - meta = { + meta = with lib; { description = "Parser and library for graphviz dot files"; homepage = "https://gitlab.com/mgttlinger/idris-graphviz"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.gpl3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/hamt.nix b/pkgs/development/idris-modules/hamt.nix index 4fb2db977a3188..a496f95073f072 100644 --- a/pkgs/development/idris-modules/hamt.nix +++ b/pkgs/development/idris-modules/hamt.nix @@ -21,10 +21,10 @@ build-idris-package { sha256 = "0m2yjr20dxkfmn3nzc68l6vh0rdaw6b637yijwl4c83b5xiac1mi"; }; - meta = { + meta = with lib; { description = "Idris Hash Array Mapped Trie"; homepage = "https://github.com/bamboo/idris-hamt"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/hezarfen.nix b/pkgs/development/idris-modules/hezarfen.nix index 66f61651a0c9a4..566ab5f9cffa4d 100644 --- a/pkgs/development/idris-modules/hezarfen.nix +++ b/pkgs/development/idris-modules/hezarfen.nix @@ -14,10 +14,10 @@ build-idris-package { sha256 = "0z4150gavpx64m3l0xbjjz9dcir7zij9hvd69k98zvhw7i27b1xp"; }; - meta = { + meta = with lib; { description = "Theorem prover for intuitionistic propositional logic in Idris, with metaprogramming features"; homepage = "https://github.com/joom/hezarfen"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/hrtime.nix b/pkgs/development/idris-modules/hrtime.nix index f373c613407427..758eafae63ac9f 100644 --- a/pkgs/development/idris-modules/hrtime.nix +++ b/pkgs/development/idris-modules/hrtime.nix @@ -18,10 +18,10 @@ build-idris-package { sha256 = "0rmmpi1kp1h7ficmcxbxkny9lq9pjli2qhwy17vgbgx8fx60m8l0"; }; - meta = { + meta = with lib; { description = "Idris library for high resolution time"; homepage = "https://github.com/pierrebeaucamp/idris-hrtime"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.asl20; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/html.nix b/pkgs/development/idris-modules/html.nix index 66c97ee4671e00..a1ee6fe9795619 100644 --- a/pkgs/development/idris-modules/html.nix +++ b/pkgs/development/idris-modules/html.nix @@ -27,10 +27,10 @@ build-idris-package { sed -i "s/hrTime/hrtime/g" source/html.ipkg ''; - meta = { + meta = with lib; { description = "Idris library to interact with HTML"; homepage = "https://github.com/pierrebeaucamp/idris-html"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.asl20; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/http.nix b/pkgs/development/idris-modules/http.nix index 63e0dfa46c3cbd..049b931cf2c5cf 100644 --- a/pkgs/development/idris-modules/http.nix +++ b/pkgs/development/idris-modules/http.nix @@ -23,10 +23,10 @@ build-idris-package { sha256 = "1abrwi5ikymff4g7a0g5wskycvhpnn895z1z1bz9r71ks554ypl8"; }; - meta = { + meta = with lib; { description = "HTTP library for idris"; homepage = "https://github.com/uwap/idris-http"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd2; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/http4idris.nix b/pkgs/development/idris-modules/http4idris.nix index 0d5f8c3c7c4770..b12f91036d5ca4 100644 --- a/pkgs/development/idris-modules/http4idris.nix +++ b/pkgs/development/idris-modules/http4idris.nix @@ -17,10 +17,10 @@ build-idris-package { sha256 = "16bs7rxbsq7m7jm96zkqiq8hj68l907m8xgmjrcxzl158qvzhw1w"; }; - meta = { + meta = with lib; { description = "Experimental HTTP framework for Idris"; homepage = "https://github.com/A1kmm/http4idris"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/iaia.nix b/pkgs/development/idris-modules/iaia.nix index 6b8777fe9f9dd4..d50982a9ca86ae 100644 --- a/pkgs/development/idris-modules/iaia.nix +++ b/pkgs/development/idris-modules/iaia.nix @@ -17,10 +17,10 @@ build-idris-package { sha256 = "0209fhv8x3sw6ijrwc8a85pch97z821ygaz78va3l274xam4l659"; }; - meta = { + meta = with lib; { description = "Recursion scheme library for Idris"; homepage = "https://github.com/sellout/Iaia"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/idrishighlighter.nix b/pkgs/development/idris-modules/idrishighlighter.nix index febdda3005a433..ceb713319f3bce 100644 --- a/pkgs/development/idris-modules/idrishighlighter.nix +++ b/pkgs/development/idris-modules/idrishighlighter.nix @@ -22,10 +22,10 @@ build-idris-package { sha256 = "16ahzf2jzh7wzi4jjq94s5z9nzkgnj2962dy13s1crim53csjgw5"; }; - meta = { + meta = with lib; { description = "Semantic highlighter for Idris code"; homepage = "https://github.com/david-christiansen/idris-code-highlighter"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/idrisscript.nix b/pkgs/development/idris-modules/idrisscript.nix index dbd467743dd7d4..1601803eefcdfd 100644 --- a/pkgs/development/idris-modules/idrisscript.nix +++ b/pkgs/development/idris-modules/idrisscript.nix @@ -14,10 +14,10 @@ build-idris-package { sha256 = "074ignh2hqwq4ng5nk7dswga4lm7342w7h4bmx4n03ygrn7w89ff"; }; - meta = { + meta = with lib; { description = "FFI Bindings to interact with the unsafe world of JavaScript"; homepage = "https://github.com/idris-hackers/IdrisScript"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd2; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/jheiling-extras.nix b/pkgs/development/idris-modules/jheiling-extras.nix index 8da4d38ffc1be3..624adb7aca1a02 100644 --- a/pkgs/development/idris-modules/jheiling-extras.nix +++ b/pkgs/development/idris-modules/jheiling-extras.nix @@ -17,10 +17,10 @@ build-idris-package { sha256 = "0j34a7vawrkc7nkwwnv6lsjjdcr00d85csjw06nnbh8rj4vj5ps0"; }; - meta = { + meta = with lib; { description = "Some useful functions for Idris"; homepage = "https://github.com/jheiling/idris-extras"; - license = lib.licenses.unlicense; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.unlicense; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/jheiling-js.nix b/pkgs/development/idris-modules/jheiling-js.nix index 27a7dfc876d880..84208777e4ed50 100644 --- a/pkgs/development/idris-modules/jheiling-js.nix +++ b/pkgs/development/idris-modules/jheiling-js.nix @@ -22,10 +22,10 @@ build-idris-package { sha256 = "1mvpxwszh56cfrf509qiadn7gp2l4syanhvdq6v1br0y03g8wk9v"; }; - meta = { + meta = with lib; { description = "Js library for Idris"; homepage = "https://github.com/jheiling/idris-js"; - license = lib.licenses.unlicense; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.unlicense; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/js.nix b/pkgs/development/idris-modules/js.nix index 51ac7f4da9a76a..f7c3b4b1f4fbf7 100644 --- a/pkgs/development/idris-modules/js.nix +++ b/pkgs/development/idris-modules/js.nix @@ -21,10 +21,10 @@ build-idris-package { sha256 = "13whhccb7yjq10hnngdc8bc9z9vvyir1wjkclpz006cr4cd266ca"; }; - meta = { + meta = with lib; { description = "Js libraries for idris"; homepage = "https://github.com/rbarreiro/idrisjs"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/lens.nix b/pkgs/development/idris-modules/lens.nix index 50996e783575aa..9a011c5581dd16 100644 --- a/pkgs/development/idris-modules/lens.nix +++ b/pkgs/development/idris-modules/lens.nix @@ -17,10 +17,10 @@ build-idris-package { sha256 = "1q6lmhrwd1qg18s253sim4hg2a2wk5439p3izy1f9ygi6pv4a6mk"; }; - meta = { + meta = with lib; { description = "van Laarhoven lenses for Idris"; homepage = "https://github.com/HuwCampbell/idris-lens"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/lightyear.nix b/pkgs/development/idris-modules/lightyear.nix index b021a1b73236a8..91ded9df22b504 100644 --- a/pkgs/development/idris-modules/lightyear.nix +++ b/pkgs/development/idris-modules/lightyear.nix @@ -17,11 +17,11 @@ build-idris-package { sha256 = "05x66abhpbdm6yr0afbwfk6w04ysdk78gylj5alhgwhy4jqakv29"; }; - meta = { + meta = with lib; { description = "Parser combinators for Idris"; homepage = "https://github.com/ziman/lightyear"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ + license = licenses.bsd2; + maintainers = with maintainers; [ siddharthist brainrape ]; diff --git a/pkgs/development/idris-modules/logic.nix b/pkgs/development/idris-modules/logic.nix index 41fe075318618b..421dba36e647bb 100644 --- a/pkgs/development/idris-modules/logic.nix +++ b/pkgs/development/idris-modules/logic.nix @@ -20,10 +20,10 @@ build-idris-package { # tests fail doCheck = false; - meta = { + meta = with lib; { description = "Propositional logic tools, inspired by the Coq standard library"; homepage = "https://github.com/yurrriq/idris-logic"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/mapping.nix b/pkgs/development/idris-modules/mapping.nix index a333166c308ca7..17e01a7bf8cbb9 100644 --- a/pkgs/development/idris-modules/mapping.nix +++ b/pkgs/development/idris-modules/mapping.nix @@ -14,10 +14,10 @@ build-idris-package { sha256 = "1skkb7jz2lv0xg4n5m0vd9xddg3x01459dwx1jxnpc7ifask4cda"; }; - meta = { + meta = with lib; { description = "Idris mapping library"; homepage = "https://github.com/zaoqi/Mapping.idr"; - license = lib.licenses.agpl3Plus; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.agpl3Plus; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/mhd.nix b/pkgs/development/idris-modules/mhd.nix index f41191b20da8c0..aa12de91b32150 100644 --- a/pkgs/development/idris-modules/mhd.nix +++ b/pkgs/development/idris-modules/mhd.nix @@ -25,10 +25,10 @@ build-idris-package { sha256 = "0wvp1qi3bn4hk52vsid6acfwvwbs58sggylbpjvkxzycsbhz4nx4"; }; - meta = { + meta = with lib; { description = "Binding of the GNU libmicrohttpd library to the Idris C backend"; homepage = "https://github.com/colin-adams/idris-libmicrohttpd"; - license = lib.licenses.lgpl21; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.lgpl21; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/patricia.nix b/pkgs/development/idris-modules/patricia.nix index ccc3f3bc0c13a5..65c6d1f53dd5b3 100644 --- a/pkgs/development/idris-modules/patricia.nix +++ b/pkgs/development/idris-modules/patricia.nix @@ -17,10 +17,10 @@ build-idris-package { sha256 = "093q3qjmr93wv8pqwk0zfm3hzf14c235k9c9ip53rhg6yzcm0yqz"; }; - meta = { + meta = with lib; { description = "Immutable map from integer keys to values based on patricia tree. Basically persistent array"; homepage = "https://github.com/ChShersh/idris-patricia"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/permutations.nix b/pkgs/development/idris-modules/permutations.nix index 0f448aef8e4c50..350faede646622 100644 --- a/pkgs/development/idris-modules/permutations.nix +++ b/pkgs/development/idris-modules/permutations.nix @@ -14,10 +14,10 @@ build-idris-package { sha256 = "1dirzqy40fczbw7gp2jr51lzqsnq5vcx9z5l6194lcrq2vxgzv1s"; }; - meta = { + meta = with lib; { description = "Type-safe way of working with permutations in Idris"; homepage = "https://github.com/vmchale/permutations"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/pfds.nix b/pkgs/development/idris-modules/pfds.nix index c5711d53388629..f0ef8bdeaa25a0 100644 --- a/pkgs/development/idris-modules/pfds.nix +++ b/pkgs/development/idris-modules/pfds.nix @@ -17,10 +17,10 @@ build-idris-package { sha256 = "0jbrwdpzg5hgmkfk2kj5y8lgaynl79h48qdvkl1glypfh392w35f"; }; - meta = { + meta = with lib; { description = "Purely functional data structures in Idris"; homepage = "https://github.com/timjb/idris-pfds"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/pipes.nix b/pkgs/development/idris-modules/pipes.nix index e99d81bc6f6755..b72b270a23d571 100644 --- a/pkgs/development/idris-modules/pipes.nix +++ b/pkgs/development/idris-modules/pipes.nix @@ -14,10 +14,10 @@ build-idris-package { sha256 = "1dxbqzg0qy7lkabmkj0qypywdjz5751g7h2ql8b2253dy3v0ndbs"; }; - meta = { + meta = with lib; { description = "Composable and effectful production, transformation and consumption of streams of data"; homepage = "https://github.com/QuentinDuval/IdrisPipes"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/quantities.nix b/pkgs/development/idris-modules/quantities.nix index e4b2fa88449d87..fad2d1780821aa 100644 --- a/pkgs/development/idris-modules/quantities.nix +++ b/pkgs/development/idris-modules/quantities.nix @@ -14,10 +14,10 @@ build-idris-package { sha256 = "0fv12kdi9089b4kkr6inhqvs2s8x62nv5vqj76wzk8hy0lrzylzj"; }; - meta = { + meta = with lib; { description = "Type-safe physical computations and unit conversions in Idris"; homepage = "https://github.com/timjb/quantities"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ imuli ]; + license = licenses.mit; + maintainers = with maintainers; [ imuli ]; }; } diff --git a/pkgs/development/idris-modules/recursion_schemes.nix b/pkgs/development/idris-modules/recursion_schemes.nix index 9fee3953018eec..aaf21dda3c3a27 100644 --- a/pkgs/development/idris-modules/recursion_schemes.nix +++ b/pkgs/development/idris-modules/recursion_schemes.nix @@ -27,10 +27,10 @@ build-idris-package { sha256 = "0rbx0yqa0fb7h7qfsvqvirc5q85z51rcwbivn6351jgn3a0inmhf"; }; - meta = { + meta = with lib; { description = "Recursion schemes for Idris"; homepage = "https://github.com/vmchale/recursion_schemes"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/refined.nix b/pkgs/development/idris-modules/refined.nix index 24f8a8c4899d62..587116ea93d116 100644 --- a/pkgs/development/idris-modules/refined.nix +++ b/pkgs/development/idris-modules/refined.nix @@ -16,10 +16,10 @@ build-idris-package { sha256 = "1am7kfc51p2zlml954v8cl9xvx0g0f1caq7ni3z36xvsd7fh47yh"; }; - meta = { + meta = with lib; { description = "Port of Scala/Haskell Refined library to Idris"; homepage = "https://github.com/janschultecom/idris-refined"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.asl20; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/smproc.nix b/pkgs/development/idris-modules/smproc.nix index 28ab452d12cfaa..ab6d2829fac446 100644 --- a/pkgs/development/idris-modules/smproc.nix +++ b/pkgs/development/idris-modules/smproc.nix @@ -17,10 +17,10 @@ build-idris-package { sha256 = "02gqa2a32dwrvgz6pwsg8bniszbzwxlkzm53fq81sz3l9ja8ax1n"; }; - meta = { + meta = with lib; { description = "Well-typed symmetric-monoidal category of concurrent processes"; homepage = "https://github.com/jameshaydon/smproc"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/snippets.nix b/pkgs/development/idris-modules/snippets.nix index e3b6ced720395d..56994060faf7b4 100644 --- a/pkgs/development/idris-modules/snippets.nix +++ b/pkgs/development/idris-modules/snippets.nix @@ -18,10 +18,10 @@ build-idris-package { sha256 = "1vwyzck6yan3wifsyj02ji9l6x9rs2r02aybm90gl676s2x4mhjn"; }; - meta = { + meta = with lib; { description = "Collection of Idris snippets"; homepage = "https://github.com/palladin/idris-snippets"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/tap.nix b/pkgs/development/idris-modules/tap.nix index 69428159d76713..474a36fc205e02 100644 --- a/pkgs/development/idris-modules/tap.nix +++ b/pkgs/development/idris-modules/tap.nix @@ -18,10 +18,10 @@ build-idris-package { sha256 = "0fhlmmivq9xv89r7plrnhmvay1j7bapz3wh7y8lygwvcrllh9zxs"; }; - meta = { + meta = with lib; { description = "Simple TAP producer and consumer/reporter for Idris"; homepage = "https://github.com/ostera/tap-idris"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/test.nix b/pkgs/development/idris-modules/test.nix index efe069a958ed36..8bf23167a0ee38 100644 --- a/pkgs/development/idris-modules/test.nix +++ b/pkgs/development/idris-modules/test.nix @@ -19,10 +19,10 @@ build-idris-package { doCheck = false; - meta = { + meta = with lib; { description = "Testing Utilities for Idris programs"; homepage = "https://github.com/jfdm/idris-testing"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/tfrandom.nix b/pkgs/development/idris-modules/tfrandom.nix index bca0a7aa2b8565..dbcc90a3b2f69a 100644 --- a/pkgs/development/idris-modules/tfrandom.nix +++ b/pkgs/development/idris-modules/tfrandom.nix @@ -15,10 +15,10 @@ build-idris-package { sha256 = "1z8pyrsm1kdsspcs3h96k38h44ss0mv39lcz7xvwg8ickys3kqxl"; }; - meta = { + meta = with lib; { description = "Port of Haskell tf-random"; homepage = "https://github.com/david-christiansen/idris-tf-random"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.mikesperber ]; + license = licenses.bsd3; + maintainers = [ maintainers.mikesperber ]; }; } diff --git a/pkgs/development/idris-modules/tomladris.nix b/pkgs/development/idris-modules/tomladris.nix index 1d754988a1ecc9..5974c9319fd82d 100644 --- a/pkgs/development/idris-modules/tomladris.nix +++ b/pkgs/development/idris-modules/tomladris.nix @@ -21,11 +21,11 @@ build-idris-package { sha256 = "0a0fc0bsr356plgzsr5sr4qmqx4838998wjwmflz10qwsv1j3zsw"; }; - meta = { + meta = with lib; { description = "TOML parser for Idris"; homepage = "https://github.com/emptyflash/tomladris"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ siddharthist brainrape ]; diff --git a/pkgs/development/idris-modules/tp.nix b/pkgs/development/idris-modules/tp.nix index 17352a1bc9cbfa..5553f3dd5c5501 100644 --- a/pkgs/development/idris-modules/tp.nix +++ b/pkgs/development/idris-modules/tp.nix @@ -17,10 +17,10 @@ build-idris-package { # tests fail with permission error doCheck = false; - meta = { + meta = with lib; { description = "Strongly Typed Paths for Idris"; homepage = "https://github.com/superfunc/tp"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/tparsec.nix b/pkgs/development/idris-modules/tparsec.nix index 5009f1a8de20f8..11943d7cff5f8b 100644 --- a/pkgs/development/idris-modules/tparsec.nix +++ b/pkgs/development/idris-modules/tparsec.nix @@ -19,10 +19,10 @@ build-idris-package { sha256 = "0pyhkafhx2pwim91ada6qrgacvahl9bpv5m486y8fph4qzf4z6mx"; }; - meta = { + meta = with lib; { description = "TParsec - Total Parser Combinators in Idris"; homepage = "https://github.com/gallais/idris-tparsec"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.gpl3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/transducers.nix b/pkgs/development/idris-modules/transducers.nix index 06afdc6dc60efa..2f3bf8f5079fdf 100644 --- a/pkgs/development/idris-modules/transducers.nix +++ b/pkgs/development/idris-modules/transducers.nix @@ -14,10 +14,10 @@ build-idris-package { sha256 = "0wzbbp5n113mva99mqr119zwp5pgj4l6wq9033z4f0kbm2nhmcfr"; }; - meta = { + meta = with lib; { description = "Composable algorithmic transformation"; homepage = "https://github.com/QuentinDuval/IdrisReducers"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.bsd3; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/union_type.nix b/pkgs/development/idris-modules/union_type.nix index 29aa772f094ccf..932d8bca3977a4 100644 --- a/pkgs/development/idris-modules/union_type.nix +++ b/pkgs/development/idris-modules/union_type.nix @@ -14,10 +14,10 @@ build-idris-package { sha256 = "1ky0h03kja2y1fjg18j46akw03wi5ng80pghh2j3ib6hxlg1rbs7"; }; - meta = { + meta = with lib; { description = "UnionType in Idris"; homepage = "https://github.com/berewt/UnionType"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/vdom.nix b/pkgs/development/idris-modules/vdom.nix index da1fb7b9443435..a188a69464143a 100644 --- a/pkgs/development/idris-modules/vdom.nix +++ b/pkgs/development/idris-modules/vdom.nix @@ -16,10 +16,10 @@ build-idris-package { sha256 = "0aila1qdpmhrp556dzaxk7yn7vgkwcnbp9jhw8f8pl51xs3s2kvf"; }; - meta = { + meta = with lib; { description = "Virtual DOM in pure Idris"; homepage = "https://github.com/brandondyck/idris-vdom"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/webgl.nix b/pkgs/development/idris-modules/webgl.nix index 39bb9342847a3b..54e763f283df00 100644 --- a/pkgs/development/idris-modules/webgl.nix +++ b/pkgs/development/idris-modules/webgl.nix @@ -17,10 +17,10 @@ build-idris-package { sha256 = "097l2pj8p33d0n3ryb8y2vp0n5isnc8bkdnad3y6raa9z1xjn3d6"; }; - meta = { + meta = with lib; { description = "Idris library to interact with WebGL"; homepage = "https://github.com/pierrebeaucamp/idris-webgl"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.asl20; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/wyvern.nix b/pkgs/development/idris-modules/wyvern.nix index 32c6b0331b7655..4665ae8ef91a4f 100644 --- a/pkgs/development/idris-modules/wyvern.nix +++ b/pkgs/development/idris-modules/wyvern.nix @@ -25,10 +25,10 @@ build-idris-package { sed -i "s/Wyvern.Core/Wyvern.Main/g" source/src/Wyvern.idr ''; - meta = { + meta = with lib; { description = "Little web server written in Idris"; homepage = "https://github.com/ericqweinstein/wyvern"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/xhr.nix b/pkgs/development/idris-modules/xhr.nix index bd43bc7adbb034..41f56070d7e1cc 100644 --- a/pkgs/development/idris-modules/xhr.nix +++ b/pkgs/development/idris-modules/xhr.nix @@ -17,10 +17,10 @@ build-idris-package { sha256 = "0l07mnarvrb4xdw0b2xqgyxq4rljw1axz5mc9w4gmhvcrzxnyfnr"; }; - meta = { + meta = with lib; { description = "Idris library to interact with xhr"; homepage = "https://github.com/pierrebeaucamp/idris-xhr"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.asl20; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/idris-modules/yaml.nix b/pkgs/development/idris-modules/yaml.nix index eb4aa037de617e..e4e8f502e564af 100644 --- a/pkgs/development/idris-modules/yaml.nix +++ b/pkgs/development/idris-modules/yaml.nix @@ -22,10 +22,10 @@ build-idris-package { sha256 = "1g4pi0swmg214kndj85hj50ccmckni7piprsxfdzdfhg87s0avw7"; }; - meta = { + meta = with lib; { description = "Idris YAML lib"; homepage = "https://github.com/Heather/Idris.Yaml"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.brainrape ]; + license = licenses.mit; + maintainers = [ maintainers.brainrape ]; }; } diff --git a/pkgs/development/interpreters/bqn/cbqn/default.nix b/pkgs/development/interpreters/bqn/cbqn/default.nix index 1c7a394a043175..f109ebfbed827d 100644 --- a/pkgs/development/interpreters/bqn/cbqn/default.nix +++ b/pkgs/development/interpreters/bqn/cbqn/default.nix @@ -132,10 +132,10 @@ stdenv.mkDerivation rec { runHook postInstallCheck ''; - meta = { + meta = with lib; { homepage = "https://github.com/dzaima/CBQN/"; description = "BQN implementation in C"; - license = with lib.licenses; [ + license = with licenses; [ # https://github.com/dzaima/CBQN?tab=readme-ov-file#licensing asl20 boost @@ -145,13 +145,13 @@ stdenv.mkDerivation rec { mpl20 ]; mainProgram = "cbqn"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ AndersonTorres detegr shnarazk sternenseemann synthetica ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/development/interpreters/clisp/default.nix b/pkgs/development/interpreters/clisp/default.nix index 555bfc45beff34..b9b93788497635 100644 --- a/pkgs/development/interpreters/clisp/default.nix +++ b/pkgs/development/interpreters/clisp/default.nix @@ -161,12 +161,12 @@ stdenv.mkDerivation { if stdenv.hostPlatform.is64bit then "8" else "4" }"; - meta = { + meta = with lib; { description = "ANSI Common Lisp Implementation"; homepage = "http://clisp.org"; mainProgram = "clisp"; - maintainers = lib.teams.lisp.members; - license = lib.licenses.gpl2Plus; - platforms = with lib.platforms; linux ++ darwin; + maintainers = teams.lisp.members; + license = licenses.gpl2Plus; + platforms = with platforms; linux ++ darwin; }; } diff --git a/pkgs/development/interpreters/clojure/clooj.nix b/pkgs/development/interpreters/clojure/clooj.nix index d723a12be42405..375b44d609b6ad 100644 --- a/pkgs/development/interpreters/clojure/clooj.nix +++ b/pkgs/development/interpreters/clojure/clooj.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { makeWrapper ${jre}/bin/java $out/bin/clooj --add-flags "-jar $out/share/java/clooj.jar" ''; - meta = { + meta = with lib; { description = "Lightweight IDE for Clojure"; mainProgram = "clooj"; homepage = "https://github.com/arthuredelstein/clooj"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.bsd3; - platforms = lib.platforms.all; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.bsd3; + platforms = platforms.all; }; } diff --git a/pkgs/development/interpreters/love/0.10.nix b/pkgs/development/interpreters/love/0.10.nix index 2120ac516a3fa5..9242ebacb16de7 100644 --- a/pkgs/development/interpreters/love/0.10.nix +++ b/pkgs/development/interpreters/love/0.10.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-DluaL_reg=luaL_Reg"; # needed since luajit-2.1.0-beta3 - meta = { + meta = with lib; { homepage = "https://love2d.org"; description = "Lua-based 2D game engine/scripting language"; mainProgram = "love"; - license = lib.licenses.zlib; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.raskin ]; + license = licenses.zlib; + platforms = platforms.linux; + maintainers = [ maintainers.raskin ]; }; } diff --git a/pkgs/development/interpreters/love/11.nix b/pkgs/development/interpreters/love/11.nix index 785db5e9939caf..540b4117d9bd4d 100644 --- a/pkgs/development/interpreters/love/11.nix +++ b/pkgs/development/interpreters/love/11.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-DluaL_reg=luaL_Reg"; # needed since luajit-2.1.0-beta3 - meta = { + meta = with lib; { homepage = "https://love2d.org"; description = "Lua-based 2D game engine/scripting language"; mainProgram = "love"; - license = lib.licenses.zlib; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.raskin ]; + license = licenses.zlib; + platforms = platforms.linux; + maintainers = [ maintainers.raskin ]; }; } diff --git a/pkgs/development/interpreters/lua-5/interpreter.nix b/pkgs/development/interpreters/lua-5/interpreter.nix index 54435308d1c186..5e8a32d2d2f27c 100644 --- a/pkgs/development/interpreters/lua-5/interpreter.nix +++ b/pkgs/development/interpreters/lua-5/interpreter.nix @@ -214,7 +214,7 @@ stdenv.mkDerivation ( ); }; - meta = { + meta = with lib; { homepage = "https://www.lua.org"; description = "Powerful, fast, lightweight, embeddable scripting language"; longDescription = '' @@ -226,8 +226,8 @@ stdenv.mkDerivation ( for configuration, scripting, and rapid prototyping. ''; mainProgram = "lua"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; + license = licenses.mit; + platforms = platforms.unix; }; } ) diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix index 204b96fb0712ee..da75765388a65b 100644 --- a/pkgs/development/interpreters/octave/default.nix +++ b/pkgs/development/interpreters/octave/default.nix @@ -230,10 +230,10 @@ stdenv.mkDerivation (finalAttrs: { interpreter = "${finalAttrs.finalPackage}/bin/octave"; }; - meta = { + meta = with lib; { homepage = "https://www.gnu.org/software/octave/"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + maintainers = with maintainers; [ raskin doronbehar ]; diff --git a/pkgs/development/interpreters/rakudo/zef.nix b/pkgs/development/interpreters/rakudo/zef.nix index 927c59d9bb239a..1c64c22aba7825 100644 --- a/pkgs/development/interpreters/rakudo/zef.nix +++ b/pkgs/development/interpreters/rakudo/zef.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation (finalAttrs: { wrapProgram $out/bin/zef --prefix RAKUDOLIB , "inst#$out" ''; - meta = { + meta = with lib; { description = "Raku / Perl6 Module Management"; homepage = "https://github.com/ugexe/zef"; - license = lib.licenses.artistic2; + license = licenses.artistic2; mainProgram = "zef"; - maintainers = with lib.maintainers; [ sgo ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ sgo ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/development/libraries/accounts-qml-module/default.nix b/pkgs/development/libraries/accounts-qml-module/default.nix index 2ac4663652f92f..733126379a2ba1 100644 --- a/pkgs/development/libraries/accounts-qml-module/default.nix +++ b/pkgs/development/libraries/accounts-qml-module/default.nix @@ -96,11 +96,11 @@ stdenv.mkDerivation (finalAttrs: { tagPrefix = "VERSION_"; }; - meta = { + meta = with lib; { description = "QML bindings for libaccounts-qt + libsignon-qt"; homepage = "https://gitlab.com/accounts-sso/accounts-qml-module"; - license = lib.licenses.lgpl21Only; - maintainers = with lib.maintainers; [ OPNA2608 ]; - platforms = lib.platforms.linux; + license = licenses.lgpl21Only; + maintainers = with maintainers; [ OPNA2608 ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/development/libraries/agda/cubical-mini/default.nix b/pkgs/development/libraries/agda/cubical-mini/default.nix index 385d99b96ada60..d27e653ef01838 100644 --- a/pkgs/development/libraries/agda/cubical-mini/default.nix +++ b/pkgs/development/libraries/agda/cubical-mini/default.nix @@ -33,11 +33,11 @@ mkDerivation rec { runHook postBuild ''; - meta = { + meta = with lib; { homepage = "https://github.com/cmcmA20/cubical-mini"; description = "A nonstandard library for Cubical Agda"; - license = lib.licenses.agpl3Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ thelissimus ]; + license = licenses.agpl3Only; + platforms = platforms.unix; + maintainers = with maintainers; [ thelissimus ]; }; } diff --git a/pkgs/development/libraries/agda/iowa-stdlib/default.nix b/pkgs/development/libraries/agda/iowa-stdlib/default.nix index 55505f0edf42df..4bd9598d3c4cd8 100644 --- a/pkgs/development/libraries/agda/iowa-stdlib/default.nix +++ b/pkgs/development/libraries/agda/iowa-stdlib/default.nix @@ -23,14 +23,14 @@ mkDerivation (rec { make ''; - meta = { + meta = with lib; { homepage = "https://github.com/cedille/ial"; description = "Agda standard library developed at Iowa"; - license = lib.licenses.free; - platforms = lib.platforms.unix; + license = licenses.free; + platforms = platforms.unix; # broken since Agda 2.6.1 broken = true; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ alexarice turion ]; diff --git a/pkgs/development/libraries/aspell/default.nix b/pkgs/development/libraries/aspell/default.nix index 997a4d1b0e9147..49eb94335d1ba2 100644 --- a/pkgs/development/libraries/aspell/default.nix +++ b/pkgs/development/libraries/aspell/default.nix @@ -87,11 +87,11 @@ stdenv.mkDerivation rec { ''; }; - meta = { + meta = with lib; { description = "Spell checker for many languages"; homepage = "http://aspell.net/"; - license = lib.licenses.lgpl2Plus; + license = licenses.lgpl2Plus; maintainers = [ ]; - platforms = with lib.platforms; all; + platforms = with platforms; all; }; } diff --git a/pkgs/development/libraries/atkmm/2.36.nix b/pkgs/development/libraries/atkmm/2.36.nix index 609c56331b0472..418c265f3d6679 100644 --- a/pkgs/development/libraries/atkmm/2.36.nix +++ b/pkgs/development/libraries/atkmm/2.36.nix @@ -47,10 +47,10 @@ stdenv.mkDerivation rec { }; }; - meta = { + meta = with lib; { description = "C++ wrappers for ATK accessibility toolkit"; - license = lib.licenses.lgpl21Plus; + license = licenses.lgpl21Plus; homepage = "https://gtkmm.org"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/atkmm/default.nix b/pkgs/development/libraries/atkmm/default.nix index 3858fd287adf0a..d695aee961c7e9 100644 --- a/pkgs/development/libraries/atkmm/default.nix +++ b/pkgs/development/libraries/atkmm/default.nix @@ -47,10 +47,10 @@ stdenv.mkDerivation rec { }; }; - meta = { + meta = with lib; { description = "C++ wrappers for ATK accessibility toolkit"; - license = lib.licenses.lgpl21Plus; + license = licenses.lgpl21Plus; homepage = "https://gtkmm.org"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/capstone/4.nix b/pkgs/development/libraries/capstone/4.nix index d16356dc274d39..d97ca9e7893063 100644 --- a/pkgs/development/libraries/capstone/4.nix +++ b/pkgs/development/libraries/capstone/4.nix @@ -27,15 +27,15 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { description = "Advanced disassembly library"; homepage = "http://www.capstone-engine.org"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ thoughtpolice ris ]; mainProgram = "cstool"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/capstone/default.nix b/pkgs/development/libraries/capstone/default.nix index d4490dce441e70..71a6042dff48f8 100644 --- a/pkgs/development/libraries/capstone/default.nix +++ b/pkgs/development/libraries/capstone/default.nix @@ -33,15 +33,15 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { description = "Advanced disassembly library"; homepage = "http://www.capstone-engine.org"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ thoughtpolice ris ]; mainProgram = "cstool"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/dxflib/default.nix b/pkgs/development/libraries/dxflib/default.nix index acee812f5e8baf..b89645cfbe59dd 100644 --- a/pkgs/development/libraries/dxflib/default.nix +++ b/pkgs/development/libraries/dxflib/default.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation rec { ''; doCheck = true; - meta = { + meta = with lib; { homepage = "https://qcad.org/en/90-dxflib"; - maintainers = with lib.maintainers; [ raskin ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ raskin ]; + platforms = platforms.unix; description = "DXF file format library"; }; } diff --git a/pkgs/development/libraries/fplll/20160331.nix b/pkgs/development/libraries/fplll/20160331.nix index 3936797241d673..264008b0296f52 100644 --- a/pkgs/development/libraries/fplll/20160331.nix +++ b/pkgs/development/libraries/fplll/20160331.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { gmp mpfr ]; - meta = { + meta = with lib; { description = "Lattice algorithms using floating-point arithmetic"; - license = lib.licenses.lgpl21Plus; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.lgpl21Plus; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; }; } diff --git a/pkgs/development/libraries/freenect/default.nix b/pkgs/development/libraries/freenect/default.nix index 08c6b5a3a810ca..fec7db2e54888e 100644 --- a/pkgs/development/libraries/freenect/default.nix +++ b/pkgs/development/libraries/freenect/default.nix @@ -55,14 +55,14 @@ stdenv.mkDerivation rec { "wrappers/cpp/CMakeLists.txt" ]; - meta = { + meta = with lib; { description = "Drivers and libraries for the Xbox Kinect device on Windows, Linux, and macOS"; homepage = "http://openkinect.org"; - license = with lib.licenses; [ + license = with licenses; [ gpl2 asl20 ]; - maintainers = with lib.maintainers; [ bennofs ]; - platforms = with lib.platforms; linux ++ darwin; + maintainers = with maintainers; [ bennofs ]; + platforms = with platforms; linux ++ darwin; }; } diff --git a/pkgs/development/libraries/givaro/3.7.nix b/pkgs/development/libraries/givaro/3.7.nix index e3472d2d0bf75c..5754e2087a76ba 100644 --- a/pkgs/development/libraries/givaro/3.7.nix +++ b/pkgs/development/libraries/givaro/3.7.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { libtool gmpxx ]; - meta = { + meta = with lib; { description = "C++ library for arithmetic and algebraic computations"; - license = lib.licenses.cecill-b; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.cecill-b; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; }; } diff --git a/pkgs/development/libraries/givaro/3.nix b/pkgs/development/libraries/givaro/3.nix index 605ce04e7d2a78..d7b0c3ac76c63a 100644 --- a/pkgs/development/libraries/givaro/3.nix +++ b/pkgs/development/libraries/givaro/3.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { libtool gmpxx ]; - meta = { + meta = with lib; { description = "C++ library for arithmetic and algebraic computations"; - license = lib.licenses.cecill-b; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.cecill-b; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; }; } diff --git a/pkgs/development/libraries/givaro/default.nix b/pkgs/development/libraries/givaro/default.nix index 7bd18824b89d50..340730d5ae4fa6 100644 --- a/pkgs/development/libraries/givaro/default.nix +++ b/pkgs/development/libraries/givaro/default.nix @@ -78,11 +78,11 @@ stdenv.mkDerivation rec { installCheckTarget = "check"; doCheck = false; - meta = { + meta = with lib; { description = "C++ library for arithmetic and algebraic computations"; mainProgram = "givaro-config"; - license = lib.licenses.cecill-b; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.unix; + license = licenses.cecill-b; + maintainers = [ maintainers.raskin ]; + platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/gmime/3.nix b/pkgs/development/libraries/gmime/3.nix index f21dd724c95eb2..2dc8aa18c4e37c 100644 --- a/pkgs/development/libraries/gmime/3.nix +++ b/pkgs/development/libraries/gmime/3.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "https://github.com/jstedfast/gmime/"; description = "C/C++ library for creating, editing and parsing MIME messages and structures"; - license = lib.licenses.lgpl21Plus; + license = licenses.lgpl21Plus; maintainers = [ ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/hpx/default.nix b/pkgs/development/libraries/hpx/default.nix index 2e13c016433e87..822dc47824c472 100644 --- a/pkgs/development/libraries/hpx/default.nix +++ b/pkgs/development/libraries/hpx/default.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = { + meta = with lib; { description = "C++ standard library for concurrency and parallelism"; homepage = "https://github.com/STEllAR-GROUP/hpx"; - license = lib.licenses.boost; - platforms = [ "x86_64-linux" ]; # lib.platforms.linux; - maintainers = with lib.maintainers; [ bobakker ]; + license = licenses.boost; + platforms = [ "x86_64-linux" ]; # platforms.linux; + maintainers = with maintainers; [ bobakker ]; }; } diff --git a/pkgs/development/libraries/irrlicht/default.nix b/pkgs/development/libraries/irrlicht/default.nix index c1113514a7cf60..280de68cc6d76e 100644 --- a/pkgs/development/libraries/irrlicht/default.nix +++ b/pkgs/development/libraries/irrlicht/default.nix @@ -52,10 +52,10 @@ stdenv.mkDerivation rec { libXxf86vm ] ++ lib.optional stdenv.hostPlatform.isAarch64 zlib; - meta = { + meta = with lib; { homepage = "https://irrlicht.sourceforge.io/"; - license = lib.licenses.zlib; + license = licenses.zlib; description = "Open source high performance realtime 3D engine written in C++"; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/development/libraries/irrlicht/mac.nix b/pkgs/development/libraries/irrlicht/mac.nix index 62ff5042a772c2..c2209fd6cad090 100644 --- a/pkgs/development/libraries/irrlicht/mac.nix +++ b/pkgs/development/libraries/irrlicht/mac.nix @@ -47,10 +47,10 @@ stdenv.mkDerivation rec { IOKit ]; - meta = { + meta = with lib; { homepage = "https://irrlicht.sourceforge.net/"; - license = lib.licenses.zlib; + license = licenses.zlib; description = "Open source high performance realtime 3D engine written in C++"; - platforms = lib.platforms.darwin; + platforms = platforms.darwin; }; } diff --git a/pkgs/development/libraries/java/cup/default.nix b/pkgs/development/libraries/java/cup/default.nix index 219bbd5908c572..9b571550d56094 100644 --- a/pkgs/development/libraries/java/cup/default.nix +++ b/pkgs/development/libraries/java/cup/default.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "LALR parser generator for Java"; homepage = "http://www2.cs.tum.edu/projects/cup/"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "javacup"; - maintainers = [ lib.maintainers.romildo ]; - platforms = lib.platforms.all; + maintainers = [ maintainers.romildo ]; + platforms = platforms.all; }; }) diff --git a/pkgs/development/libraries/kde-frameworks/kholidays.nix b/pkgs/development/libraries/kde-frameworks/kholidays.nix index 2b88650322a0d0..9b158edc0a1c56 100644 --- a/pkgs/development/libraries/kde-frameworks/kholidays.nix +++ b/pkgs/development/libraries/kde-frameworks/kholidays.nix @@ -10,13 +10,13 @@ mkDerivation { pname = "kholidays"; - meta = { - license = with lib.licenses; [ + meta = with lib; { + license = with licenses; [ gpl2Plus lgpl21Plus fdl12Plus ]; - maintainers = with lib.maintainers; [ bkchr ]; + maintainers = with maintainers; [ bkchr ]; }; nativeBuildInputs = [ extra-cmake-modules diff --git a/pkgs/development/libraries/libdvdread/4.9.9.nix b/pkgs/development/libraries/libdvdread/4.9.9.nix index c1b1e9b3f967ac..130b7125eb2ecf 100644 --- a/pkgs/development/libraries/libdvdread/4.9.9.nix +++ b/pkgs/development/libraries/libdvdread/4.9.9.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { ln -s dvdread $out/include/libdvdread ''; - meta = { + meta = with lib; { homepage = "http://dvdnav.mplayerhq.hu/"; description = "Library for reading DVDs"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.wmertens ]; - platforms = lib.platforms.linux; + license = licenses.gpl2; + maintainers = [ maintainers.wmertens ]; + platforms = platforms.linux; }; } diff --git a/pkgs/development/libraries/libdvdread/default.nix b/pkgs/development/libraries/libdvdread/default.nix index 07ab45310504da..b78e578eb7e322 100644 --- a/pkgs/development/libraries/libdvdread/default.nix +++ b/pkgs/development/libraries/libdvdread/default.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { ln -s dvdread $out/include/libdvdread ''; - meta = { + meta = with lib; { homepage = "http://dvdnav.mplayerhq.hu/"; description = "Library for reading DVDs"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.wmertens ]; - platforms = with lib.platforms; linux ++ darwin; + license = licenses.gpl2; + maintainers = [ maintainers.wmertens ]; + platforms = with platforms; linux ++ darwin; }; } diff --git a/pkgs/development/libraries/libftdi/default.nix b/pkgs/development/libraries/libftdi/default.nix index 0bd3e6e1432545..24cbebaff26943 100644 --- a/pkgs/development/libraries/libftdi/default.nix +++ b/pkgs/development/libraries/libftdi/default.nix @@ -47,10 +47,10 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with lib; { description = "Library to talk to FTDI chips using libusb"; homepage = "https://www.intra2net.com/en/developer/libftdi/"; - license = lib.licenses.lgpl21; - platforms = lib.platforms.all; + license = licenses.lgpl21; + platforms = platforms.all; }; } diff --git a/pkgs/development/libraries/libint/default.nix b/pkgs/development/libraries/libint/default.nix index 04510dc5bca013..44f02ea97f07c5 100644 --- a/pkgs/development/libraries/libint/default.nix +++ b/pkgs/development/libraries/libint/default.nix @@ -130,14 +130,14 @@ let pname = "libint"; version = "2.9.0"; - meta = { + meta = with lib; { description = "Library for the evaluation of molecular integrals of many-body operators over Gaussian functions"; homepage = "https://github.com/evaleev/libint"; - license = with lib.licenses; [ + license = with licenses; [ lgpl3Only gpl3Only ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ markuskowa sheepforce ]; diff --git a/pkgs/development/libraries/libopenshot-audio/default.nix b/pkgs/development/libraries/libopenshot-audio/default.nix index 4a63de87e643af..ca8095d5af7c81 100644 --- a/pkgs/development/libraries/libopenshot-audio/default.nix +++ b/pkgs/development/libraries/libopenshot-audio/default.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = { + meta = with lib; { homepage = "http://openshot.org/"; description = "High-quality sound editing library"; mainProgram = "openshot-audio-demo"; @@ -78,8 +78,8 @@ stdenv.mkDerivation (finalAttrs: { high-quality editing and playback of audio, and is based on the amazing JUCE library. ''; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.unix; + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/development/libraries/libopenshot/default.nix b/pkgs/development/libraries/libopenshot/default.nix index 478e5e50ade89a..08ce45b0ee217e 100644 --- a/pkgs/development/libraries/libopenshot/default.nix +++ b/pkgs/development/libraries/libopenshot/default.nix @@ -76,7 +76,7 @@ stdenv.mkDerivation (finalAttrs: { inherit libopenshot-audio; }; - meta = { + meta = with lib; { homepage = "http://openshot.org/"; description = "Free, open-source video editor library"; longDescription = '' @@ -84,8 +84,8 @@ stdenv.mkDerivation (finalAttrs: { delivering high quality video editing, animation, and playback solutions to the world. API currently supports C++, Python, and Ruby. ''; - license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.unix; + license = with licenses; [ gpl3Plus ]; + maintainers = with maintainers; [ ]; + platforms = platforms.unix; }; }) diff --git a/pkgs/development/libraries/librdf/raptor.nix b/pkgs/development/libraries/librdf/raptor.nix index 1225af7f67e424..959085d3e17d80 100644 --- a/pkgs/development/libraries/librdf/raptor.nix +++ b/pkgs/development/libraries/librdf/raptor.nix @@ -24,14 +24,14 @@ stdenv.mkDerivation rec { sed -e '/curl\/types/d' -i src/*.c src/*.h ''; - meta = { + meta = with lib; { description = "RDF Parser Toolkit"; homepage = "https://librdf.org/raptor"; - license = with lib.licenses; [ + license = with licenses; [ lgpl21 asl20 ]; - maintainers = [ lib.maintainers.marcweber ]; - platforms = lib.platforms.linux; + maintainers = [ maintainers.marcweber ]; + platforms = platforms.linux; }; } diff --git a/pkgs/development/libraries/librdf/raptor2.nix b/pkgs/development/libraries/librdf/raptor2.nix index baad5320b2508e..fe22efb8c5833a 100644 --- a/pkgs/development/libraries/librdf/raptor2.nix +++ b/pkgs/development/libraries/librdf/raptor2.nix @@ -54,15 +54,15 @@ stdenv.mkDerivation rec { libxslt ]; - meta = { + meta = with lib; { description = "RDF Parser Toolkit"; mainProgram = "rapper"; homepage = "https://librdf.org/raptor"; - license = with lib.licenses; [ + license = with licenses; [ lgpl21 asl20 ]; - maintainers = with lib.maintainers; [ marcweber ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ marcweber ]; + platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/librdf/rasqal.nix b/pkgs/development/libraries/librdf/rasqal.nix index f8af85bfb50eb0..56cdd76be27771 100644 --- a/pkgs/development/libraries/librdf/rasqal.nix +++ b/pkgs/development/libraries/librdf/rasqal.nix @@ -35,14 +35,14 @@ stdenv.mkDerivation rec { doCheck = false; # fails with "No testsuite plan file sparql-query-plan.ttl could be created in build/..." doInstallCheck = false; # fails with "rasqal-config does not support (--help|--version)" - meta = { + meta = with lib; { description = "Library that handles Resource Description Framework (RDF)"; homepage = "https://librdf.org/rasqal"; - license = with lib.licenses; [ + license = with licenses; [ lgpl21 asl20 ]; - maintainers = with lib.maintainers; [ marcweber ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ marcweber ]; + platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/libunique/3.x.nix b/pkgs/development/libraries/libunique/3.x.nix index 56c2db308652f8..b32d454dc8cef3 100644 --- a/pkgs/development/libraries/libunique/3.x.nix +++ b/pkgs/development/libraries/libunique/3.x.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { libxml2 ]; - meta = { + meta = with lib; { homepage = "https://gitlab.gnome.org/Archive/unique"; description = "Library for writing single instance applications"; - license = lib.licenses.lgpl21; + license = licenses.lgpl21; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/development/libraries/libunique/default.nix b/pkgs/development/libraries/libunique/default.nix index a8fa987f673afe..67f1f5a4d2c682 100644 --- a/pkgs/development/libraries/libunique/default.nix +++ b/pkgs/development/libraries/libunique/default.nix @@ -42,10 +42,10 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with lib; { homepage = "https://gitlab.gnome.org/Archive/unique"; description = "Library for writing single instance applications"; - license = lib.licenses.lgpl21; - platforms = with lib.platforms; linux ++ darwin; + license = licenses.lgpl21; + platforms = with platforms; linux ++ darwin; }; } diff --git a/pkgs/development/libraries/liquid-dsp/default.nix b/pkgs/development/libraries/liquid-dsp/default.nix index 2540eb9520f7f0..a0607001be3760 100644 --- a/pkgs/development/libraries/liquid-dsp/default.nix +++ b/pkgs/development/libraries/liquid-dsp/default.nix @@ -29,10 +29,10 @@ stdenv.mkDerivation rec { fixDarwinDylibNames ]; - meta = { + meta = with lib; { homepage = "https://liquidsdr.org/"; description = "Digital signal processing library for software-defined radios"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; + license = licenses.mit; + platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/luabind/default.nix b/pkgs/development/libraries/luabind/default.nix index e498602061c537..4e07fe8954437a 100644 --- a/pkgs/development/libraries/luabind/default.nix +++ b/pkgs/development/libraries/luabind/default.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { patches = [ ./0.9.1-discover-luajit.patch ]; - meta = { + meta = with lib; { homepage = "https://github.com/Oberon00/luabind"; description = "Library that helps you create bindings between C++ and Lua"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; + license = licenses.mit; + platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/luksmeta/default.nix b/pkgs/development/libraries/luksmeta/default.nix index 0968c5374a8f1f..8b675f258f3ef5 100644 --- a/pkgs/development/libraries/luksmeta/default.nix +++ b/pkgs/development/libraries/luksmeta/default.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { ]; buildInputs = [ cryptsetup ]; - meta = { + meta = with lib; { description = "Simple library for storing metadata in the LUKSv1 header"; mainProgram = "luksmeta"; homepage = "https://github.com/latchset/luksmeta/"; - maintainers = with lib.maintainers; [ fpletz ]; - license = lib.licenses.lgpl21Plus; + maintainers = with maintainers; [ fpletz ]; + license = licenses.lgpl21Plus; }; } diff --git a/pkgs/development/libraries/nlopt/default.nix b/pkgs/development/libraries/nlopt/default.nix index 1e1f5f01c3821f..23de692666e7bc 100644 --- a/pkgs/development/libraries/nlopt/default.nix +++ b/pkgs/development/libraries/nlopt/default.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { 'INTERFACE_INCLUDE_DIRECTORIES "''${_IMPORT_PREFIX}/' 'INTERFACE_INCLUDE_DIRECTORIES "' ''; - meta = { + meta = with lib; { homepage = "https://nlopt.readthedocs.io/en/latest/"; description = "Free open-source library for nonlinear optimization"; - license = lib.licenses.lgpl21Plus; - hydraPlatforms = lib.platforms.linux; + license = licenses.lgpl21Plus; + hydraPlatforms = platforms.linux; }; } diff --git a/pkgs/development/libraries/ogre/default.nix b/pkgs/development/libraries/ogre/default.nix index 9a74cf86576c53..149f1385988e66 100644 --- a/pkgs/development/libraries/ogre/default.nix +++ b/pkgs/development/libraries/ogre/default.nix @@ -114,15 +114,15 @@ let (lib.cmakeBool "OGRE_BUILD_LIBS_AS_FRAMEWORKS" false) ]; - meta = { + meta = with lib; { description = "3D Object-Oriented Graphics Rendering Engine"; homepage = "https://www.ogre3d.org/"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ raskin wegank ]; - platforms = lib.platforms.unix; - license = lib.licenses.mit; + platforms = platforms.unix; + license = licenses.mit; }; }; in diff --git a/pkgs/development/libraries/pangolin/default.nix b/pkgs/development/libraries/pangolin/default.nix index c53c31e32c1eb4..8e74300bfd9ac2 100644 --- a/pkgs/development/libraries/pangolin/default.nix +++ b/pkgs/development/libraries/pangolin/default.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { doCheck = false; cmakeFlags = [ "-DBUILD_TESTS=OFF" ]; - meta = { + meta = with lib; { description = "Lightweight portable rapid development library for managing OpenGL display / interaction and abstracting video input"; longDescription = '' Pangolin is a lightweight portable rapid development library for managing @@ -68,8 +68,8 @@ stdenv.mkDerivation rec { graphical data. ''; homepage = "https://github.com/stevenlovegrove/Pangolin"; - license = lib.licenses.mit; + license = licenses.mit; maintainers = [ ]; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/development/libraries/pcl/default.nix b/pkgs/development/libraries/pcl/default.nix index 7f2b0e9f1c9e0a..98d2980c64b9b0 100644 --- a/pkgs/development/libraries/pcl/default.nix +++ b/pkgs/development/libraries/pcl/default.nix @@ -75,11 +75,11 @@ stdenv.mkDerivation rec { ] ++ lib.optionals cudaSupport [ "-DWITH_CUDA=true" ]; - meta = { + meta = with lib; { homepage = "https://pointclouds.org/"; description = "Open project for 2D/3D image and point cloud processing"; - license = lib.licenses.bsd3; + license = licenses.bsd3; maintainers = [ ]; - platforms = with lib.platforms; linux ++ darwin; + platforms = with platforms; linux ++ darwin; }; } diff --git a/pkgs/development/libraries/phonon/default.nix b/pkgs/development/libraries/phonon/default.nix index 2e04bf90440cc8..4dfa2c2fe20418 100644 --- a/pkgs/development/libraries/phonon/default.nix +++ b/pkgs/development/libraries/phonon/default.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation rec { pname = "phonon"; version = "4.11.1"; - meta = { + meta = with lib; { homepage = "https://community.kde.org/Phonon"; description = "Multimedia API for Qt"; mainProgram = "phononsettings"; - license = lib.licenses.lgpl2; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ ttuegel ]; + license = licenses.lgpl2; + platforms = platforms.unix; + maintainers = with maintainers; [ ttuegel ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/podofo/0.10.x.nix b/pkgs/development/libraries/podofo/0.10.x.nix index a1d2022325446d..28204eb7106cd3 100644 --- a/pkgs/development/libraries/podofo/0.10.x.nix +++ b/pkgs/development/libraries/podofo/0.10.x.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation (finalAttrs: { "-DCMAKE_BUILD_WITH_INSTALL_NAME_DIR=ON" ]; - meta = { + meta = with lib; { homepage = "https://github.com/podofo/podofo"; description = "Library to work with the PDF file format"; - platforms = lib.platforms.all; - license = with lib.licenses; [ + platforms = platforms.all; + license = with licenses; [ gpl2Plus lgpl2Plus ]; diff --git a/pkgs/development/libraries/protobuf/generic.nix b/pkgs/development/libraries/protobuf/generic.nix index f8cfa4daff0363..d4c29d05bd29ed 100644 --- a/pkgs/development/libraries/protobuf/generic.nix +++ b/pkgs/development/libraries/protobuf/generic.nix @@ -108,17 +108,17 @@ stdenv.mkDerivation (finalAttrs: { inherit abseil-cpp; }; - meta = { + meta = with lib; { description = "Google's data interchange format"; longDescription = '' Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats. ''; - license = lib.licenses.bsd3; - platforms = lib.platforms.all; + license = licenses.bsd3; + platforms = platforms.all; homepage = "https://protobuf.dev/"; - maintainers = with lib.maintainers; [ GaetanLepage ]; + maintainers = with maintainers; [ GaetanLepage ]; mainProgram = "protoc"; }; }) diff --git a/pkgs/development/libraries/qmltermwidget/default.nix b/pkgs/development/libraries/qmltermwidget/default.nix index e496a537c92683..52b1ff2bf16203 100644 --- a/pkgs/development/libraries/qmltermwidget/default.nix +++ b/pkgs/development/libraries/qmltermwidget/default.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation { dontWrapQtApps = true; - meta = { + meta = with lib; { description = "QML port of qtermwidget"; homepage = "https://github.com/Swordfish90/qmltermwidget"; - license = lib.licenses.gpl2Plus; - platforms = with lib.platforms; linux ++ darwin; - maintainers = with lib.maintainers; [ OPNA2608 ]; + license = licenses.gpl2Plus; + platforms = with platforms; linux ++ darwin; + maintainers = with maintainers; [ OPNA2608 ]; }; } diff --git a/pkgs/development/libraries/qt-6/modules/qtwayland.nix b/pkgs/development/libraries/qt-6/modules/qtwayland.nix index d9da2026079c8f..5f79e39b1b345c 100644 --- a/pkgs/development/libraries/qt-6/modules/qtwayland.nix +++ b/pkgs/development/libraries/qt-6/modules/qtwayland.nix @@ -43,8 +43,8 @@ qtModule { cp ${wayland-scanner}/share/wayland/wayland.xml src/3rdparty/protocol/wayland/wayland.xml ''; - meta = { - platforms = lib.platforms.unix; - badPlatforms = lib.platforms.darwin; + meta = with lib; { + platforms = platforms.unix; + badPlatforms = platforms.darwin; }; } diff --git a/pkgs/development/libraries/qt-jdenticon/default.nix b/pkgs/development/libraries/qt-jdenticon/default.nix index 9c746fe7550b57..57f6997e29a206 100644 --- a/pkgs/development/libraries/qt-jdenticon/default.nix +++ b/pkgs/development/libraries/qt-jdenticon/default.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation (finalAttrs: { --replace "\$\$[QT_INSTALL_PLUGINS]" "$out/$qtPluginPrefix" ''; - meta = { + meta = with lib; { description = "Qt plugin for generating highly recognizable identicons"; homepage = "https://github.com/Nheko-Reborn/qt-jdenticon"; - license = lib.licenses.mit; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ unclechu ]; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ unclechu ]; }; }) diff --git a/pkgs/development/libraries/qtkeychain/default.nix b/pkgs/development/libraries/qtkeychain/default.nix index d865b183f9cafa..9967b319c52682 100644 --- a/pkgs/development/libraries/qtkeychain/default.nix +++ b/pkgs/development/libraries/qtkeychain/default.nix @@ -56,10 +56,10 @@ stdenv.mkDerivation rec { runHook postInstallCheck ''; - meta = { + meta = with lib; { description = "Platform-independent Qt API for storing passwords securely"; homepage = "https://github.com/frankosterfeld/qtkeychain"; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; + license = licenses.bsd3; + platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/qtmpris/default.nix b/pkgs/development/libraries/qtmpris/default.nix index 6bc94edeb30e4c..3c427796ae603d 100644 --- a/pkgs/development/libraries/qtmpris/default.nix +++ b/pkgs/development/libraries/qtmpris/default.nix @@ -32,10 +32,10 @@ mkDerivation rec { qtbase ]; - meta = { + meta = with lib; { description = "Qt and QML MPRIS interface and adaptor"; homepage = "https://github.com/sailfishos/qtmpris"; - license = lib.licenses.lgpl21Plus; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.lgpl21Plus; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/libraries/qtstyleplugin-kvantum/default.nix b/pkgs/development/libraries/qtstyleplugin-kvantum/default.nix index 20b8ea9b43db1f..2e799f9f53826a 100644 --- a/pkgs/development/libraries/qtstyleplugin-kvantum/default.nix +++ b/pkgs/development/libraries/qtstyleplugin-kvantum/default.nix @@ -83,12 +83,12 @@ stdenv.mkDerivation (finalAttrs: { rev-prefix = "V"; }; - meta = { + meta = with lib; { description = "SVG-based Qt5 theme engine plus a config tool and extra themes"; homepage = "https://github.com/tsujan/Kvantum"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ romildo Scrumplex ]; diff --git a/pkgs/development/libraries/rure/default.nix b/pkgs/development/libraries/rure/default.nix index 58cce26b19ea3c..b234edccb8bf8e 100644 --- a/pkgs/development/libraries/rure/default.nix +++ b/pkgs/development/libraries/rure/default.nix @@ -38,13 +38,13 @@ rustPlatform.buildRustPackage { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { description = "C API for Rust's regular expression library"; homepage = "https://crates.io/crates/rure"; license = [ - lib.licenses.mit - lib.licenses.asl20 + licenses.mit + licenses.asl20 ]; - maintainers = [ lib.maintainers.sternenseemann ]; + maintainers = [ maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/libraries/science/math/faiss/default.nix b/pkgs/development/libraries/science/math/faiss/default.nix index 2f635fa7bd5333..871d6a6b0f2547 100644 --- a/pkgs/development/libraries/science/math/faiss/default.nix +++ b/pkgs/development/libraries/science/math/faiss/default.nix @@ -109,12 +109,12 @@ stdenv.mkDerivation { inherit cudaSupport cudaPackages pythonSupport; }; - meta = { + meta = with lib; { description = "Library for efficient similarity search and clustering of dense vectors by Facebook Research"; mainProgram = "demo_ivfpq_indexing"; homepage = "https://github.com/facebookresearch/faiss"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ SomeoneSerge ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ SomeoneSerge ]; }; } diff --git a/pkgs/development/libraries/science/math/p4est/default.nix b/pkgs/development/libraries/science/math/p4est/default.nix index 4f2e1bcc159c47..071a6ec4d67b18 100644 --- a/pkgs/development/libraries/science/math/p4est/default.nix +++ b/pkgs/development/libraries/science/math/p4est/default.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation { doCheck ; - meta = { + meta = with lib; { branch = "prev3-develop"; description = "Parallel AMR on Forests of Octrees"; longDescription = '' @@ -66,7 +66,7 @@ stdenv.mkDerivation { ''; homepage = "https://www.p4est.org/"; downloadPage = "https://github.com/cburstedde/p4est.git"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.cburstedde ]; + license = licenses.gpl2Plus; + maintainers = [ maintainers.cburstedde ]; }; } diff --git a/pkgs/development/libraries/spandsp/common.nix b/pkgs/development/libraries/spandsp/common.nix index 7abfee0668c5d3..0e8a844385cb61 100644 --- a/pkgs/development/libraries/spandsp/common.nix +++ b/pkgs/development/libraries/spandsp/common.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation (finalAttrs: { strictDeps = true; - meta = { + meta = with lib; { description = "Portable and modular SIP User-Agent with audio and video support"; homepage = "https://github.com/freeswitch/spandsp"; - platforms = with lib.platforms; unix; - maintainers = with lib.maintainers; [ misuzu ]; - license = lib.licenses.gpl2; + platforms = with platforms; unix; + maintainers = with maintainers; [ misuzu ]; + license = licenses.gpl2; downloadPage = "http://www.soft-switch.org/downloads/spandsp/"; }; }) diff --git a/pkgs/development/libraries/tachyon/default.nix b/pkgs/development/libraries/tachyon/default.nix index e006abaef21882..77c68cbadbcb1a 100644 --- a/pkgs/development/libraries/tachyon/default.nix +++ b/pkgs/development/libraries/tachyon/default.nix @@ -89,12 +89,12 @@ stdenv.mkDerivation rec { cp Changes Copyright README "$out/share/doc/tachyon" cp -r scenes "$out/share/tachyon/scenes" ''; - meta = { + meta = with lib; { description = "Parallel / Multiprocessor Ray Tracing System"; mainProgram = "tachyon"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.raskin ]; - platforms = with lib.platforms; linux ++ cygwin ++ darwin; + license = licenses.bsd3; + maintainers = [ maintainers.raskin ]; + platforms = with platforms; linux ++ cygwin ++ darwin; homepage = "http://jedi.ks.uiuc.edu/~johns/tachyon/"; }; } diff --git a/pkgs/development/libraries/tinyxml/2.6.2.nix b/pkgs/development/libraries/tinyxml/2.6.2.nix index f70142b6b2d4fd..6b10af0be5c641 100644 --- a/pkgs/development/libraries/tinyxml/2.6.2.nix +++ b/pkgs/development/libraries/tinyxml/2.6.2.nix @@ -90,10 +90,10 @@ stdenv.mkDerivation { install_name_tool -id $out/lib/libtinyxml.dylib $out/lib/libtinyxml.dylib ''; - meta = { + meta = with lib; { description = "Simple, small, C++ XML parser that can be easily integrating into other programs"; homepage = "http://www.grinninglizard.com/tinyxml/index.html"; - license = lib.licenses.zlib; - platforms = lib.platforms.unix; + license = licenses.zlib; + platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/wayland/protocols.nix b/pkgs/development/libraries/wayland/protocols.nix index 57138294db31cd..aa5ce81f726092 100644 --- a/pkgs/development/libraries/wayland/protocols.nix +++ b/pkgs/development/libraries/wayland/protocols.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation (finalAttrs: { mesonFlags = [ "-Dtests=${lib.boolToString finalAttrs.doCheck}" ]; - meta = { + meta = with lib; { description = "Wayland protocol extensions"; longDescription = '' wayland-protocols contains Wayland protocols that add functionality not @@ -57,9 +57,9 @@ stdenv.mkDerivation (finalAttrs: { wayland-protocols. ''; homepage = "https://gitlab.freedesktop.org/wayland/wayland-protocols"; - license = lib.licenses.mit; # Expat version - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ primeos ]; + license = licenses.mit; # Expat version + platforms = platforms.all; + maintainers = with maintainers; [ primeos ]; pkgConfigModules = [ "wayland-protocols" ]; }; diff --git a/pkgs/development/libraries/waylib/default.nix b/pkgs/development/libraries/waylib/default.nix index bc8d9025dbfdf7..a42a5fbd06274f 100644 --- a/pkgs/development/libraries/waylib/default.nix +++ b/pkgs/development/libraries/waylib/default.nix @@ -60,15 +60,15 @@ stdenv.mkDerivation (finalAttrs: { "dev" ]; - meta = { + meta = with lib; { description = "Wrapper for wlroots based on Qt"; homepage = "https://github.com/vioken/waylib"; - license = with lib.licenses; [ + license = with licenses; [ gpl3Only lgpl3Only asl20 ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ rewine ]; + platforms = platforms.linux; + maintainers = with maintainers; [ rewine ]; }; }) diff --git a/pkgs/development/libraries/wayqt/default.nix b/pkgs/development/libraries/wayqt/default.nix index 86fa6cd2032580..22f4b695ecfc26 100644 --- a/pkgs/development/libraries/wayqt/default.nix +++ b/pkgs/development/libraries/wayqt/default.nix @@ -55,11 +55,11 @@ stdenv.mkDerivation (finalAttrs: { "dev" ]; - meta = { + meta = with lib; { homepage = "https://gitlab.com/desktop-frameworks/wayqt"; description = "Qt-based library to handle Wayland and Wlroots protocols to be used with any Qt project"; - maintainers = with lib.maintainers; [ rewine ]; - platforms = lib.platforms.linux; - license = lib.licenses.mit; + maintainers = with maintainers; [ rewine ]; + platforms = platforms.linux; + license = licenses.mit; }; }) diff --git a/pkgs/development/libraries/webkit2-sharp/default.nix b/pkgs/development/libraries/webkit2-sharp/default.nix index 78b89397b76dab..7303632e8a16c3 100644 --- a/pkgs/development/libraries/webkit2-sharp/default.nix +++ b/pkgs/development/libraries/webkit2-sharp/default.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation rec { inherit webkitgtk; }; - meta = { + meta = with lib; { description = "C# bindings for WebKit 2 with GTK+ 3"; homepage = "https://github.com/hbons/webkit2-sharp"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ kevincox ]; + license = licenses.mit; + maintainers = with maintainers; [ kevincox ]; }; } diff --git a/pkgs/development/libraries/xsd/default.nix b/pkgs/development/libraries/xsd/default.nix index 14600a773bf8c2..6528cc45057ba7 100644 --- a/pkgs/development/libraries/xsd/default.nix +++ b/pkgs/development/libraries/xsd/default.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { buildInputs = [ xercesc ]; - meta = { + meta = with lib; { homepage = "http://www.codesynthesis.com/products/xsd"; description = "Open-source, cross-platform W3C XML Schema to C++ data binding compiler"; mainProgram = "xsd"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.jagajaga ]; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.jagajaga ]; }; } diff --git a/pkgs/development/libraries/zeromq/4.x.nix b/pkgs/development/libraries/zeromq/4.x.nix index 6801eddc178f01..209e71e584e5d7 100644 --- a/pkgs/development/libraries/zeromq/4.x.nix +++ b/pkgs/development/libraries/zeromq/4.x.nix @@ -85,12 +85,12 @@ stdenv.mkDerivation (finalAttrs: { ffmpeg = ffmpeg.override { withZmq = true; }; }; - meta = { + meta = with lib; { branch = "4"; homepage = "http://www.zeromq.org"; description = "Intelligent Transport Layer"; - license = lib.licenses.mpl20; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ fpletz ]; + license = licenses.mpl20; + platforms = platforms.all; + maintainers = with maintainers; [ fpletz ]; }; }) diff --git a/pkgs/development/mobile/gomobile/default.nix b/pkgs/development/mobile/gomobile/default.nix index 4b00da7f414b98..f265486d4562c7 100644 --- a/pkgs/development/mobile/gomobile/default.nix +++ b/pkgs/development/mobile/gomobile/default.nix @@ -68,10 +68,10 @@ buildGoModule { done ''; - meta = { + meta = with lib; { description = "Tool for building and running mobile apps written in Go"; homepage = "https://pkg.go.dev/golang.org/x/mobile/cmd/gomobile"; - license = with lib.licenses; [ bsd3 ]; - maintainers = with lib.maintainers; [ jakubgs ]; + license = with licenses; [ bsd3 ]; + maintainers = with maintainers; [ jakubgs ]; }; } diff --git a/pkgs/development/ocaml-modules/aches/default.nix b/pkgs/development/ocaml-modules/aches/default.nix index 63f814baf6c2dd..588f78a5490855 100644 --- a/pkgs/development/ocaml-modules/aches/default.nix +++ b/pkgs/development/ocaml-modules/aches/default.nix @@ -12,9 +12,9 @@ buildDunePackage { ringo ]; - meta = { + meta = with lib; { description = "Caches (bounded-size stores) for in-memory values and for resources"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.mit; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/aches/lwt.nix b/pkgs/development/ocaml-modules/aches/lwt.nix index e0bc45820ba6e9..594743a5423308 100644 --- a/pkgs/development/ocaml-modules/aches/lwt.nix +++ b/pkgs/development/ocaml-modules/aches/lwt.nix @@ -15,9 +15,9 @@ buildDunePackage { lwt ]; - meta = { + meta = with lib; { description = "Caches (bounded-size stores) for Lwt promises"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.mit; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/algaeff/default.nix b/pkgs/development/ocaml-modules/algaeff/default.nix index 0e867f8a0838d2..c037c68dbf81c5 100644 --- a/pkgs/development/ocaml-modules/algaeff/default.nix +++ b/pkgs/development/ocaml-modules/algaeff/default.nix @@ -25,10 +25,10 @@ buildDunePackage rec { qcheck-core ]; - meta = { + meta = with lib; { description = "Reusable Effects-Based Components"; homepage = "https://github.com/RedPRL/algaeff"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.asl20; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/angstrom/default.nix b/pkgs/development/ocaml-modules/angstrom/default.nix index 423267fb2b1bdb..1a407b0203ac95 100644 --- a/pkgs/development/ocaml-modules/angstrom/default.nix +++ b/pkgs/development/ocaml-modules/angstrom/default.nix @@ -33,10 +33,10 @@ buildDunePackage rec { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/inhabitedtype/angstrom"; description = "OCaml parser combinators built for speed and memory efficiency"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ sternenseemann ]; + license = licenses.bsd3; + maintainers = with maintainers; [ sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/asai/default.nix b/pkgs/development/ocaml-modules/asai/default.nix index 2f58276684ab82..183f9d4958ad69 100644 --- a/pkgs/development/ocaml-modules/asai/default.nix +++ b/pkgs/development/ocaml-modules/asai/default.nix @@ -21,10 +21,10 @@ buildDunePackage rec { bwd ]; - meta = { + meta = with lib; { description = "Library for constructing and printing compiler diagnostics"; homepage = "https://redprl.org/asai/asai/"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.asl20; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix b/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix index 494b8bcb35175b..1243012a1fc109 100644 --- a/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix +++ b/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix @@ -13,10 +13,10 @@ buildDunePackage rec { hash = "sha256-ukJ5vtVNE9zz9nA6SzF0TbgV3yLAUC2ZZdbGdM4IOTM="; }; - meta = { + meta = with lib; { description = "Runtime for atdgen generated bucklescript converters"; homepage = "https://github.com/ahrefs/atd"; - maintainers = [ lib.maintainers.vbgl ]; - license = lib.licenses.mit; + maintainers = [ maintainers.vbgl ]; + license = licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/backoff/default.nix b/pkgs/development/ocaml-modules/backoff/default.nix index a623ece4d2309e..00e37ab5bca481 100644 --- a/pkgs/development/ocaml-modules/backoff/default.nix +++ b/pkgs/development/ocaml-modules/backoff/default.nix @@ -18,11 +18,11 @@ buildDunePackage rec { checkInputs = [ alcotest ]; - meta = { + meta = with lib; { description = "Exponential backoff mechanism for OCaml"; homepage = "https://github.com/ocaml-multicore/backoff"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; minimalOCamlVersion = "4.12"; diff --git a/pkgs/development/ocaml-modules/base64/default.nix b/pkgs/development/ocaml-modules/base64/default.nix index 64fcbf8f93a8b8..2e82cb9a9713d7 100644 --- a/pkgs/development/ocaml-modules/base64/default.nix +++ b/pkgs/development/ocaml-modules/base64/default.nix @@ -31,10 +31,10 @@ buildDunePackage rec { rresult ]; - meta = { + meta = with lib; { homepage = "https://github.com/mirage/ocaml-base64"; description = "Base64 encoding and decoding in OCaml"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ vbgl ]; + license = licenses.isc; + maintainers = with maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/batteries/default.nix b/pkgs/development/ocaml-modules/batteries/default.nix index 3b2da021c2127d..0c8f61af122fbd 100644 --- a/pkgs/development/ocaml-modules/batteries/default.nix +++ b/pkgs/development/ocaml-modules/batteries/default.nix @@ -33,7 +33,7 @@ buildDunePackage rec { inherit doCheck; checkTarget = "test"; - meta = { + meta = with lib; { homepage = "https://ocaml-batteries-team.github.io/batteries-included/hdoc2/"; description = "OCaml Batteries Included"; longDescription = '' @@ -41,9 +41,9 @@ buildDunePackage rec { and comprehensive development platform for the OCaml programming language. ''; - license = lib.licenses.lgpl21Plus; + license = licenses.lgpl21Plus; maintainers = [ - lib.maintainers.maggesi + maintainers.maggesi ]; }; } diff --git a/pkgs/development/ocaml-modules/biniou/default.nix b/pkgs/development/ocaml-modules/biniou/default.nix index 4dfc9496fb8ae8..ebb16e2e261d73 100644 --- a/pkgs/development/ocaml-modules/biniou/default.nix +++ b/pkgs/development/ocaml-modules/biniou/default.nix @@ -20,11 +20,11 @@ buildDunePackage rec { easy-format ]; - meta = { + meta = with lib; { description = "Binary data format designed for speed, safety, ease of use and backward compatibility as protocols evolve"; homepage = "https://github.com/ocaml-community/biniou"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.bsd3; + maintainers = [ maintainers.vbgl ]; mainProgram = "bdump"; }; } diff --git a/pkgs/development/ocaml-modules/binning/default.nix b/pkgs/development/ocaml-modules/binning/default.nix index e97db4daddaee5..560dd955113043 100644 --- a/pkgs/development/ocaml-modules/binning/default.nix +++ b/pkgs/development/ocaml-modules/binning/default.nix @@ -15,10 +15,10 @@ buildDunePackage rec { hash = "sha256-eG+xctsbc7lQ5pFOUtJ8rjNW/06gygwLADq7yc8Yf/c="; }; - meta = { + meta = with lib; { description = "Datastructure to accumulate values in bins"; - license = lib.licenses.cecill-b; + license = licenses.cecill-b; homepage = "https://github.com/pveber/binning/"; - maintainers = [ lib.maintainers.vbgl ]; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/bisect_ppx/default.nix b/pkgs/development/ocaml-modules/bisect_ppx/default.nix index a2ecd17f418e71..976de836602ffc 100644 --- a/pkgs/development/ocaml-modules/bisect_ppx/default.nix +++ b/pkgs/development/ocaml-modules/bisect_ppx/default.nix @@ -24,11 +24,11 @@ buildDunePackage rec { ppxlib ]; - meta = { + meta = with lib; { description = "Bisect_ppx is a code coverage tool for OCaml and Reason. It helps you test thoroughly by showing what's not tested"; homepage = "https://github.com/aantron/bisect_ppx"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ momeemt ]; + license = licenses.mit; + maintainers = with maintainers; [ momeemt ]; mainProgram = "bisect-ppx-report"; }; } diff --git a/pkgs/development/ocaml-modules/bls12-381-signature/default.nix b/pkgs/development/ocaml-modules/bls12-381-signature/default.nix index cfb03c5e6d0ba6..47a2505a07f55b 100644 --- a/pkgs/development/ocaml-modules/bls12-381-signature/default.nix +++ b/pkgs/development/ocaml-modules/bls12-381-signature/default.nix @@ -30,10 +30,10 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { description = "Implementation of BLS signatures for the pairing-friendly curve BLS12-381"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://gitlab.com/nomadic-labs/cryptography/ocaml-bls12-381-signature"; - maintainers = [ lib.maintainers.ulrikstrid ]; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/bls12-381/default.nix b/pkgs/development/ocaml-modules/bls12-381/default.nix index 9d23c94e4b6fd5..4b5fb9f4da5e0a 100644 --- a/pkgs/development/ocaml-modules/bls12-381/default.nix +++ b/pkgs/development/ocaml-modules/bls12-381/default.nix @@ -40,10 +40,10 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { homepage = " https://nomadic-labs.gitlab.io/cryptography/ocaml-bls12-381/bls12-381/"; description = "Implementation of BLS12-381 and some cryptographic primitives built on top of it"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.mit; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/bls12-381/gen.nix b/pkgs/development/ocaml-modules/bls12-381/gen.nix index 36bc1c1e2e6d00..9099279b24090c 100644 --- a/pkgs/development/ocaml-modules/bls12-381/gen.nix +++ b/pkgs/development/ocaml-modules/bls12-381/gen.nix @@ -28,10 +28,10 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { homepage = "https://gitlab.com/dannywillems/ocaml-bls12-381"; description = "Functors to generate BLS12-381 primitives based on stubs"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.mit; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/callipyge/default.nix b/pkgs/development/ocaml-modules/callipyge/default.nix index 40a3caaa61cee1..744adb61b8b027 100644 --- a/pkgs/development/ocaml-modules/callipyge/default.nix +++ b/pkgs/development/ocaml-modules/callipyge/default.nix @@ -28,10 +28,10 @@ buildDunePackage rec { doCheck = true; checkInputs = [ alcotest ]; - meta = { + meta = with lib; { homepage = "https://github.com/oklm-wsh/Callipyge"; description = "Curve25519 in OCaml"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fufexan ]; + license = licenses.mit; + maintainers = with maintainers; [ fufexan ]; }; } diff --git a/pkgs/development/ocaml-modules/camlp-streams/default.nix b/pkgs/development/ocaml-modules/camlp-streams/default.nix index cabccf89e7fc4f..7775590d2656b9 100644 --- a/pkgs/development/ocaml-modules/camlp-streams/default.nix +++ b/pkgs/development/ocaml-modules/camlp-streams/default.nix @@ -15,10 +15,10 @@ buildDunePackage rec { sha256 = "sha256-kHuFBqu0mjFv53sOtmFZcX2reo5ToaOpItP7P53bfGQ="; }; - meta = { + meta = with lib; { description = "Stream and Genlex libraries for use with Camlp4 and Camlp5"; - license = lib.licenses.lgpl21Only; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.lgpl21Only; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/camomile/default.nix b/pkgs/development/ocaml-modules/camomile/default.nix index 3bb9677e7442ea..0955b85ec2aecf 100644 --- a/pkgs/development/ocaml-modules/camomile/default.nix +++ b/pkgs/development/ocaml-modules/camomile/default.nix @@ -62,10 +62,10 @@ buildDunePackage ( pname = "camomile"; inherit version; - meta = { + meta = with lib; { homepage = "https://github.com/ocaml-community/Camomile"; - maintainers = [ lib.maintainers.vbgl ]; - license = lib.licenses.lgpl21; + maintainers = [ maintainers.vbgl ]; + license = licenses.lgpl21; description = "Unicode library for OCaml"; }; } diff --git a/pkgs/development/ocaml-modules/caqti/default.nix b/pkgs/development/ocaml-modules/caqti/default.nix index 5e04b4258bbee0..d3ab130d41da02 100644 --- a/pkgs/development/ocaml-modules/caqti/default.nix +++ b/pkgs/development/ocaml-modules/caqti/default.nix @@ -41,13 +41,13 @@ buildDunePackage rec { # Checks depend on caqti-driver-sqlite3 (circural dependency) doCheck = false; - meta = { + meta = with lib; { description = "Unified interface to relational database libraries"; - license = with lib.licenses; [ + license = with licenses; [ lgpl3Plus ocamlLgplLinkingException ]; - maintainers = with lib.maintainers; [ bcc32 ]; + maintainers = with maintainers; [ bcc32 ]; homepage = "https://github.com/paurkedal/ocaml-caqti"; }; } diff --git a/pkgs/development/ocaml-modules/chacha/default.nix b/pkgs/development/ocaml-modules/chacha/default.nix index f5d6c4c1008b27..58500fa924769e 100644 --- a/pkgs/development/ocaml-modules/chacha/default.nix +++ b/pkgs/development/ocaml-modules/chacha/default.nix @@ -38,7 +38,7 @@ buildDunePackage rec { doCheck = lib.versionAtLeast ocaml.version "4.05"; checkInputs = [ alcotest ]; - meta = { + meta = with lib; { homepage = "https://github.com/abeaumont/ocaml-chacha"; description = "ChaCha20, ChaCha12 and ChaCha8 encryption functions, in OCaml"; longDescription = '' @@ -46,8 +46,8 @@ buildDunePackage rec { ChaCha8 and ChaCha12 functions. The hot loop is implemented in C for efficiency reasons. ''; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ fufexan ]; + license = licenses.bsd2; + maintainers = with maintainers; [ fufexan ]; broken = true; # Not compatible with mirage-crypto ≥ 1.0 }; } diff --git a/pkgs/development/ocaml-modules/checkseum/default.nix b/pkgs/development/ocaml-modules/checkseum/default.nix index e72edc46e4f743..f15a4e6617eebf 100644 --- a/pkgs/development/ocaml-modules/checkseum/default.nix +++ b/pkgs/development/ocaml-modules/checkseum/default.nix @@ -40,11 +40,11 @@ buildDunePackage rec { doCheck = lib.versionAtLeast ocaml.version "4.08"; - meta = { + meta = with lib; { description = "ADLER-32 and CRC32C Cyclic Redundancy Check"; homepage = "https://github.com/mirage/checkseum"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; mainProgram = "checkseum.checkseum"; }; } diff --git a/pkgs/development/ocaml-modules/class_group_vdf/default.nix b/pkgs/development/ocaml-modules/class_group_vdf/default.nix index e36c3463491997..367436adab5006 100644 --- a/pkgs/development/ocaml-modules/class_group_vdf/default.nix +++ b/pkgs/development/ocaml-modules/class_group_vdf/default.nix @@ -49,11 +49,11 @@ buildDunePackage ( doCheck = true; - meta = { + meta = with lib; { description = "Verifiable Delay Functions bindings to Chia's VDF"; homepage = "https://gitlab.com/nomadic-labs/tezos"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.mit; + maintainers = [ maintainers.ulrikstrid ]; }; } # Darwin sdk on intel target 10.12 (2016) at the time of writing. It is likely that host will be at least 10.14 (2018). This fix allow it to build and run on 10.14 and build on 10.12 (but don't run). diff --git a/pkgs/development/ocaml-modules/cohttp/default.nix b/pkgs/development/ocaml-modules/cohttp/default.nix index 8a3d0bd88f2336..b2cae191dba9b1 100644 --- a/pkgs/development/ocaml-modules/cohttp/default.nix +++ b/pkgs/development/ocaml-modules/cohttp/default.nix @@ -47,10 +47,10 @@ buildDunePackage rec { crowbar ]; - meta = { + meta = with lib; { description = "HTTP(S) library for Lwt, Async and Mirage"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; homepage = "https://github.com/mirage/ocaml-cohttp"; }; } diff --git a/pkgs/development/ocaml-modules/conduit/default.nix b/pkgs/development/ocaml-modules/conduit/default.nix index 333dcfaa72262d..65fd6c1725e904 100644 --- a/pkgs/development/ocaml-modules/conduit/default.nix +++ b/pkgs/development/ocaml-modules/conduit/default.nix @@ -30,10 +30,10 @@ buildDunePackage rec { ppx_sexp_conv ]; - meta = { + meta = with lib; { description = "Network connection establishment library"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ + license = licenses.isc; + maintainers = with maintainers; [ alexfmpe vbgl ]; diff --git a/pkgs/development/ocaml-modules/cpuid/default.nix b/pkgs/development/ocaml-modules/cpuid/default.nix index eccb5aa9f026e4..d187268f84a9c3 100644 --- a/pkgs/development/ocaml-modules/cpuid/default.nix +++ b/pkgs/development/ocaml-modules/cpuid/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { sha256 = "08ng4mva6qblb5ipkrxbr0my7ndkc4qwcbswkqgbgir864s74m93"; }; - meta = { + meta = with lib; { homepage = "https://github.com/pqwy/cpuid"; description = "Detect CPU features from OCaml"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/cryptokit/default.nix b/pkgs/development/ocaml-modules/cryptokit/default.nix index 1de4fd6c0fd9e7..4752777e959354 100644 --- a/pkgs/development/ocaml-modules/cryptokit/default.nix +++ b/pkgs/development/ocaml-modules/cryptokit/default.nix @@ -34,12 +34,12 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { homepage = "http://pauillac.inria.fr/~xleroy/software.html"; description = "Library of cryptographic primitives for OCaml"; - license = lib.licenses.lgpl2Only; + license = licenses.lgpl2Only; maintainers = [ - lib.maintainers.maggesi + maintainers.maggesi ]; }; } diff --git a/pkgs/development/ocaml-modules/cstruct/default.nix b/pkgs/development/ocaml-modules/cstruct/default.nix index 8fac97fde6c9c3..77f9e7fa5316a7 100644 --- a/pkgs/development/ocaml-modules/cstruct/default.nix +++ b/pkgs/development/ocaml-modules/cstruct/default.nix @@ -27,10 +27,10 @@ buildDunePackage rec { crowbar ]; - meta = { + meta = with lib; { description = "Access C-like structures directly from OCaml"; - license = lib.licenses.isc; + license = licenses.isc; homepage = "https://github.com/mirage/ocaml-cstruct"; - maintainers = [ lib.maintainers.vbgl ]; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/csv/default.nix b/pkgs/development/ocaml-modules/csv/default.nix index f3aa531ddefe23..0a3495b15a0135 100644 --- a/pkgs/development/ocaml-modules/csv/default.nix +++ b/pkgs/development/ocaml-modules/csv/default.nix @@ -19,10 +19,10 @@ buildDunePackage rec { duneVersion = "3"; - meta = { + meta = with lib; { description = "Pure OCaml library to read and write CSV files"; - license = lib.licenses.lgpl21; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.lgpl21; + maintainers = [ maintainers.vbgl ]; homepage = "https://github.com/Chris00/ocaml-csv"; }; } diff --git a/pkgs/development/ocaml-modules/ctypes_stubs_js/default.nix b/pkgs/development/ocaml-modules/ctypes_stubs_js/default.nix index 2b4ce1472e94fb..ca1fcc84f1390c 100644 --- a/pkgs/development/ocaml-modules/ctypes_stubs_js/default.nix +++ b/pkgs/development/ocaml-modules/ctypes_stubs_js/default.nix @@ -35,10 +35,10 @@ buildDunePackage rec { ]; doCheck = !(stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); - meta = { + meta = with lib; { description = "Js_of_ocaml Javascript stubs for the OCaml ctypes library"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ bezmuth ]; + license = licenses.mit; + maintainers = with maintainers; [ bezmuth ]; homepage = "https://gitlab.com/nomadic-labs/ctypes_stubs_js"; }; } diff --git a/pkgs/development/ocaml-modules/data-encoding/default.nix b/pkgs/development/ocaml-modules/data-encoding/default.nix index 0a893686fe91d6..9fc8a599fb5bf6 100644 --- a/pkgs/development/ocaml-modules/data-encoding/default.nix +++ b/pkgs/development/ocaml-modules/data-encoding/default.nix @@ -35,10 +35,10 @@ buildDunePackage rec { ppx_expect ]; - meta = { + meta = with lib; { homepage = "https://gitlab.com/nomadic-labs/data-encoding"; description = "Library of JSON and binary encoding combinators"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.mit; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/dates_calc/default.nix b/pkgs/development/ocaml-modules/dates_calc/default.nix index 4cfeeb34956ff4..af830636c0fd31 100644 --- a/pkgs/development/ocaml-modules/dates_calc/default.nix +++ b/pkgs/development/ocaml-modules/dates_calc/default.nix @@ -28,10 +28,10 @@ buildDunePackage rec { qcheck ]; - meta = { + meta = with lib; { description = "Date calculation library"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.niols ]; + license = licenses.asl20; + maintainers = [ maintainers.niols ]; homepage = "https://github.com/catalalang/dates-calc"; }; } diff --git a/pkgs/development/ocaml-modules/decompress/default.nix b/pkgs/development/ocaml-modules/decompress/default.nix index 470d357997b56c..c5fe3bc61e7ba9 100644 --- a/pkgs/development/ocaml-modules/decompress/default.nix +++ b/pkgs/development/ocaml-modules/decompress/default.nix @@ -47,11 +47,11 @@ buildDunePackage rec { ]; doCheck = true; - meta = { + meta = with lib; { description = "Pure OCaml implementation of Zlib"; homepage = "https://github.com/mirage/decompress"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; mainProgram = "decompress.pipe"; }; } diff --git a/pkgs/development/ocaml-modules/digestif/default.nix b/pkgs/development/ocaml-modules/digestif/default.nix index 2512e2a7364df8..9fa75668a9be2b 100644 --- a/pkgs/development/ocaml-modules/digestif/default.nix +++ b/pkgs/development/ocaml-modules/digestif/default.nix @@ -38,10 +38,10 @@ buildDunePackage rec { ocaml -I ${findlib}/lib/ocaml/${ocaml.version}/site-lib/ test/test_runes.ml ''; - meta = { + meta = with lib; { description = "Simple hash algorithms in OCaml"; homepage = "https://github.com/mirage/digestif"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/dns/default.nix b/pkgs/development/ocaml-modules/dns/default.nix index 3d6fb07fb35be2..1beee3ccc2022e 100644 --- a/pkgs/development/ocaml-modules/dns/default.nix +++ b/pkgs/development/ocaml-modules/dns/default.nix @@ -44,11 +44,11 @@ buildDunePackage rec { doCheck = true; checkInputs = [ alcotest ]; - meta = { + meta = with lib; { description = "Domain Name System (DNS) library"; homepage = "https://github.com/mirage/ocaml-dns"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.bsd2; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/dolmen/default.nix b/pkgs/development/ocaml-modules/dolmen/default.nix index 5bb495f8335a7b..97db089d4fe8b9 100644 --- a/pkgs/development/ocaml-modules/dolmen/default.nix +++ b/pkgs/development/ocaml-modules/dolmen/default.nix @@ -31,10 +31,10 @@ buildDunePackage rec { checkInputs = [ qcheck ]; - meta = { + meta = with lib; { description = "OCaml library providing clean and flexible parsers for input languages"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.bsd2; + maintainers = [ maintainers.vbgl ]; homepage = "https://github.com/Gbury/dolmen"; }; } diff --git a/pkgs/development/ocaml-modules/dolog/default.nix b/pkgs/development/ocaml-modules/dolog/default.nix index c5c9323de4e076..036f5eca6ce662 100644 --- a/pkgs/development/ocaml-modules/dolog/default.nix +++ b/pkgs/development/ocaml-modules/dolog/default.nix @@ -15,10 +15,10 @@ buildDunePackage rec { hash = "sha256-g68260mcb4G4wX8y4T0MTaXsYnM9wn2d0V1VCdSFZjY="; }; - meta = { + meta = with lib; { homepage = "https://github.com/UnixJunkie/dolog"; description = "Minimalistic lazy logger in OCaml"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ vbgl ]; + license = licenses.bsd3; + maintainers = with maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/domain-local-timeout/default.nix b/pkgs/development/ocaml-modules/domain-local-timeout/default.nix index 50d33a063d8185..46982ceea38e45 100644 --- a/pkgs/development/ocaml-modules/domain-local-timeout/default.nix +++ b/pkgs/development/ocaml-modules/domain-local-timeout/default.nix @@ -36,10 +36,10 @@ buildDunePackage rec { mdx ]; - meta = { + meta = with lib; { homepage = "https://github.com/ocaml-multicore/domain-local-timeout"; description = "Scheduler independent timeout mechanism"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/domain-name/default.nix b/pkgs/development/ocaml-modules/domain-name/default.nix index 745550691c4a2d..5996308a45bfbc 100644 --- a/pkgs/development/ocaml-modules/domain-name/default.nix +++ b/pkgs/development/ocaml-modules/domain-name/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { doCheck = lib.versionAtLeast ocaml.version "4.08"; - meta = { + meta = with lib; { homepage = "https://github.com/hannesm/domain-name"; description = "RFC 1035 Internet domain names"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/domain_shims/default.nix b/pkgs/development/ocaml-modules/domain_shims/default.nix index 32373e0fb4071c..bef0cee46c2356 100644 --- a/pkgs/development/ocaml-modules/domain_shims/default.nix +++ b/pkgs/development/ocaml-modules/domain_shims/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { minimalOCamlVersion = "4.12"; - meta = { + meta = with lib; { homepage = "https://gitlab.com/gasche/domain-shims/"; description = "Non-parallel implementation of Domains compatible with OCaml 4"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/domainslib/default.nix b/pkgs/development/ocaml-modules/domainslib/default.nix index aa3cd5e5be1dae..654c1df8331b34 100644 --- a/pkgs/development/ocaml-modules/domainslib/default.nix +++ b/pkgs/development/ocaml-modules/domainslib/default.nix @@ -32,11 +32,11 @@ buildDunePackage rec { qcheck-stm ]; - meta = { + meta = with lib; { homepage = "https://github.com/ocaml-multicore/domainslib"; description = "Nested-parallel programming"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; broken = true; # Not compatible with saturn > 0.4.0 }; } diff --git a/pkgs/development/ocaml-modules/dscheck/default.nix b/pkgs/development/ocaml-modules/dscheck/default.nix index e5ef2ea3549e5c..48019c5f18fb2c 100644 --- a/pkgs/development/ocaml-modules/dscheck/default.nix +++ b/pkgs/development/ocaml-modules/dscheck/default.nix @@ -26,10 +26,10 @@ buildDunePackage rec { doCheck = true; checkInputs = [ alcotest ]; - meta = { + meta = with lib; { description = "Traced atomics"; homepage = "https://github.com/ocaml-multicore/dscheck"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/duff/default.nix b/pkgs/development/ocaml-modules/duff/default.nix index 2713991617575d..495e3e64914fee 100644 --- a/pkgs/development/ocaml-modules/duff/default.nix +++ b/pkgs/development/ocaml-modules/duff/default.nix @@ -31,10 +31,10 @@ buildDunePackage rec { bigstringaf ]; - meta = { + meta = with lib; { description = "Pure OCaml implementation of libXdiff (Rabin’s fingerprint)"; homepage = "https://github.com/mirage/duff"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/duration/default.nix b/pkgs/development/ocaml-modules/duration/default.nix index 137edf6f8d2ae7..47759ffbb9862a 100644 --- a/pkgs/development/ocaml-modules/duration/default.nix +++ b/pkgs/development/ocaml-modules/duration/default.nix @@ -20,11 +20,11 @@ buildDunePackage rec { doCheck = lib.versionAtLeast ocaml.version "4.08"; checkInputs = [ alcotest ]; - meta = { + meta = with lib; { homepage = "https://github.com/hannesm/duration"; description = "Conversions to various time units"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/earley/default.nix b/pkgs/development/ocaml-modules/earley/default.nix index 7154c055405500..bb48ea95f04a11 100644 --- a/pkgs/development/ocaml-modules/earley/default.nix +++ b/pkgs/development/ocaml-modules/earley/default.nix @@ -22,11 +22,11 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { description = "Parser combinators based on Earley Algorithm"; homepage = "https://github.com/rlepigre/ocaml-earley"; - license = lib.licenses.cecill-b; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.cecill-b; + maintainers = [ maintainers.vbgl ]; mainProgram = "pa_ocaml"; }; } diff --git a/pkgs/development/ocaml-modules/earlybird/default.nix b/pkgs/development/ocaml-modules/earlybird/default.nix index 4d07d9a35d9133..3ef215caeb0ccf 100644 --- a/pkgs/development/ocaml-modules/earlybird/default.nix +++ b/pkgs/development/ocaml-modules/earlybird/default.nix @@ -50,10 +50,10 @@ buildDunePackage rec { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { homepage = "https://github.com/hackwaly/ocamlearlybird"; description = "OCaml debug adapter"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.romildo ]; + license = licenses.mit; + maintainers = [ maintainers.romildo ]; }; } diff --git a/pkgs/development/ocaml-modules/encore/default.nix b/pkgs/development/ocaml-modules/encore/default.nix index e360b0004a6a22..e1cb4d3aa03ce0 100644 --- a/pkgs/development/ocaml-modules/encore/default.nix +++ b/pkgs/development/ocaml-modules/encore/default.nix @@ -29,10 +29,10 @@ buildDunePackage rec { checkInputs = [ alcotest ]; doCheck = true; - meta = { + meta = with lib; { homepage = "https://github.com/mirage/encore"; description = "Library to generate encoder/decoder which ensure isomorphism"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/eqaf/default.nix b/pkgs/development/ocaml-modules/eqaf/default.nix index 1833f44518a2af..ce480271aa28d9 100644 --- a/pkgs/development/ocaml-modules/eqaf/default.nix +++ b/pkgs/development/ocaml-modules/eqaf/default.nix @@ -14,11 +14,11 @@ buildDunePackage rec { hash = "sha256-Z9E2nFfE0tFKENAmMtReNVIkq+uYrsCJecC65YQwku4="; }; - meta = { + meta = with lib; { description = "Constant time equal function to avoid timing attacks in OCaml"; homepage = "https://github.com/mirage/eqaf"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/extlib/default.nix b/pkgs/development/ocaml-modules/extlib/default.nix index 9be2ca711fd7db..5f967ac7c61b94 100644 --- a/pkgs/development/ocaml-modules/extlib/default.nix +++ b/pkgs/development/ocaml-modules/extlib/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { homepage = "https://github.com/ygrek/ocaml-extlib"; description = "Enhancements to the OCaml Standard Library modules"; - license = lib.licenses.lgpl21Only; - maintainers = [ lib.maintainers.sternenseemann ]; + license = licenses.lgpl21Only; + maintainers = [ maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/ocaml-modules/ezjsonm-encoding/default.nix b/pkgs/development/ocaml-modules/ezjsonm-encoding/default.nix index 26423ea1999560..5dfdb82da346b3 100644 --- a/pkgs/development/ocaml-modules/ezjsonm-encoding/default.nix +++ b/pkgs/development/ocaml-modules/ezjsonm-encoding/default.nix @@ -16,10 +16,10 @@ buildDunePackage rec { propagatedBuildInputs = [ ezjsonm ]; - meta = { + meta = with lib; { description = "Encoding combinators a la Data_encoding for Ezjsonm"; homepage = "https://github.com/lthms/ezjsonmi-encoding"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ fgaz ]; + license = licenses.mpl20; + maintainers = with maintainers; [ fgaz ]; }; } diff --git a/pkgs/development/ocaml-modules/ezjsonm/default.nix b/pkgs/development/ocaml-modules/ezjsonm/default.nix index 1f468bb2a3bcef..d511d4eaac7e90 100644 --- a/pkgs/development/ocaml-modules/ezjsonm/default.nix +++ b/pkgs/development/ocaml-modules/ezjsonm/default.nix @@ -24,10 +24,10 @@ buildDunePackage rec { sexplib0 ]; - meta = { + meta = with lib; { description = "Easy interface on top of the Jsonm library"; homepage = "https://github.com/mirage/ezjsonm"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ vbgl ]; + license = licenses.isc; + maintainers = with maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/gapi-ocaml/default.nix b/pkgs/development/ocaml-modules/gapi-ocaml/default.nix index 3cce4f30823c70..ed1412800a5518 100644 --- a/pkgs/development/ocaml-modules/gapi-ocaml/default.nix +++ b/pkgs/development/ocaml-modules/gapi-ocaml/default.nix @@ -35,10 +35,10 @@ buildDunePackage rec { doCheck = true; checkInputs = [ ounit2 ]; - meta = { + meta = with lib; { description = "OCaml client for google services"; homepage = "https://github.com/astrada/gapi-ocaml"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ bennofs ]; + license = licenses.mit; + maintainers = with maintainers; [ bennofs ]; }; } diff --git a/pkgs/development/ocaml-modules/getopt/default.nix b/pkgs/development/ocaml-modules/getopt/default.nix index 9de42e3d8bae4d..8e4a8160e3d630 100644 --- a/pkgs/development/ocaml-modules/getopt/default.nix +++ b/pkgs/development/ocaml-modules/getopt/default.nix @@ -19,10 +19,10 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { homepage = "https://github.com/scemama/ocaml-getopt"; description = "Parsing of command line arguments (similar to GNU GetOpt) for OCaml"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.mit; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/git/default.nix b/pkgs/development/ocaml-modules/git/default.nix index 71fc943fadec3e..91717e88d484ad 100644 --- a/pkgs/development/ocaml-modules/git/default.nix +++ b/pkgs/development/ocaml-modules/git/default.nix @@ -92,10 +92,10 @@ buildDunePackage rec { ]; doCheck = !stdenv.hostPlatform.isAarch64; - meta = { + meta = with lib; { description = "Git format and protocol in pure OCaml"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ + license = licenses.isc; + maintainers = with maintainers; [ sternenseemann vbgl ]; diff --git a/pkgs/development/ocaml-modules/gluten/default.nix b/pkgs/development/ocaml-modules/gluten/default.nix index 689c7a05f6596f..74f0216cad7f53 100644 --- a/pkgs/development/ocaml-modules/gluten/default.nix +++ b/pkgs/development/ocaml-modules/gluten/default.nix @@ -24,10 +24,10 @@ buildDunePackage rec { doCheck = false; # No tests - meta = { + meta = with lib; { description = "Implementation of a platform specific runtime code for driving network libraries based on state machines, such as http/af, h2 and websocketaf"; - license = lib.licenses.bsd3; + license = licenses.bsd3; homepage = "https://github.com/anmonteiro/gluten"; - maintainers = with lib.maintainers; [ anmonteiro ]; + maintainers = with maintainers; [ anmonteiro ]; }; } diff --git a/pkgs/development/ocaml-modules/gmap/default.nix b/pkgs/development/ocaml-modules/gmap/default.nix index 5b5fc7ecafff43..da2f3cc95ce936 100644 --- a/pkgs/development/ocaml-modules/gmap/default.nix +++ b/pkgs/development/ocaml-modules/gmap/default.nix @@ -27,10 +27,10 @@ buildDunePackage rec { doCheck = lib.versionAtLeast ocaml.version "4.08"; - meta = { + meta = with lib; { description = "Heterogenous maps over a GADT"; homepage = "https://github.com/hannesm/gmap"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/graphql/parser.nix b/pkgs/development/ocaml-modules/graphql/parser.nix index 23fbd366f955ff..255fc36f0fe93f 100644 --- a/pkgs/development/ocaml-modules/graphql/parser.nix +++ b/pkgs/development/ocaml-modules/graphql/parser.nix @@ -30,11 +30,11 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { homepage = "https://github.com/andreas/ocaml-graphql-server"; description = "Library for parsing GraphQL queries"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/graphql_ppx/default.nix b/pkgs/development/ocaml-modules/graphql_ppx/default.nix index 08ae3343d06254..2373b138de84e4 100644 --- a/pkgs/development/ocaml-modules/graphql_ppx/default.nix +++ b/pkgs/development/ocaml-modules/graphql_ppx/default.nix @@ -41,11 +41,11 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { homepage = "https://github.com/reasonml-community/graphql_ppx"; description = "GraphQL PPX rewriter for Bucklescript/ReasonML"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ Zimmi48 jtcoolen ]; diff --git a/pkgs/development/ocaml-modules/happy-eyeballs/default.nix b/pkgs/development/ocaml-modules/happy-eyeballs/default.nix index ea092ac66afde8..aa0c9af65c4ca1 100644 --- a/pkgs/development/ocaml-modules/happy-eyeballs/default.nix +++ b/pkgs/development/ocaml-modules/happy-eyeballs/default.nix @@ -28,11 +28,11 @@ buildDunePackage rec { logs ]; - meta = { + meta = with lib; { description = "Connecting to a remote host via IP version 4 or 6"; homepage = "https://github.com/roburio/happy-eyeballs"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ + license = licenses.isc; + maintainers = with maintainers; [ vbgl ulrikstrid ]; diff --git a/pkgs/development/ocaml-modules/hashcons/default.nix b/pkgs/development/ocaml-modules/hashcons/default.nix index 72f81ca051dede..edc24be7a77859 100644 --- a/pkgs/development/ocaml-modules/hashcons/default.nix +++ b/pkgs/development/ocaml-modules/hashcons/default.nix @@ -19,9 +19,9 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { description = "OCaml hash-consing library"; - license = lib.licenses.lgpl21; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.lgpl21; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/hex/default.nix b/pkgs/development/ocaml-modules/hex/default.nix index 1d7850b96b0304..d4c4376fa0baed 100644 --- a/pkgs/development/ocaml-modules/hex/default.nix +++ b/pkgs/development/ocaml-modules/hex/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { propagatedBuildInputs = [ cstruct ]; doCheck = true; - meta = { + meta = with lib; { description = "Mininal OCaml library providing hexadecimal converters"; homepage = "https://github.com/mirage/ocaml-hex"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ vbgl ]; + license = licenses.isc; + maintainers = with maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/hmap/default.nix b/pkgs/development/ocaml-modules/hmap/default.nix index 61892116d6e936..e14d064a6e45b1 100644 --- a/pkgs/development/ocaml-modules/hmap/default.nix +++ b/pkgs/development/ocaml-modules/hmap/default.nix @@ -41,10 +41,10 @@ stdenv.mkDerivation rec { checkPhase = "${topkg.run} test"; - meta = { + meta = with lib; { description = "Heterogeneous value maps for OCaml"; homepage = "https://erratique.ch/software/hmap"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.pmahoney ]; + license = licenses.isc; + maintainers = [ maintainers.pmahoney ]; }; } diff --git a/pkgs/development/ocaml-modules/hpack/default.nix b/pkgs/development/ocaml-modules/hpack/default.nix index 8a865415e3381f..bc2b9e40352654 100644 --- a/pkgs/development/ocaml-modules/hpack/default.nix +++ b/pkgs/development/ocaml-modules/hpack/default.nix @@ -25,11 +25,11 @@ buildDunePackage rec { # circular dependency doCheck = false; - meta = { - license = lib.licenses.bsd3; + meta = with lib; { + license = licenses.bsd3; description = "HPACK (Header Compression for HTTP/2) implementation in OCaml"; homepage = "https://github.com/anmonteiro/ocaml-h2"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ sternenseemann anmonteiro ]; diff --git a/pkgs/development/ocaml-modules/http-mirage-client/default.nix b/pkgs/development/ocaml-modules/http-mirage-client/default.nix index 86450b2311a099..ccf4c03a7014a7 100644 --- a/pkgs/development/ocaml-modules/http-mirage-client/default.nix +++ b/pkgs/development/ocaml-modules/http-mirage-client/default.nix @@ -44,11 +44,11 @@ buildDunePackage rec { mirage-time-unix ]; - meta = { + meta = with lib; { description = "HTTP client for MirageOS"; homepage = "https://github.com/roburio/http-mirage-client"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/httpun-ws/default.nix b/pkgs/development/ocaml-modules/httpun-ws/default.nix index 0e199d7168e7f6..bc6a8449787e2f 100644 --- a/pkgs/development/ocaml-modules/httpun-ws/default.nix +++ b/pkgs/development/ocaml-modules/httpun-ws/default.nix @@ -32,10 +32,10 @@ buildDunePackage rec { doCheck = true; checkInputs = [ alcotest ]; - meta = { + meta = with lib; { description = "Websocket implementation for httpun"; - license = lib.licenses.bsd3; + license = licenses.bsd3; homepage = "https://github.com/anmonteiro/httpun-ws"; - maintainers = [ lib.maintainers.vbgl ]; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/httpun/types.nix b/pkgs/development/ocaml-modules/httpun/types.nix index 260903504967fa..17355b53068266 100644 --- a/pkgs/development/ocaml-modules/httpun/types.nix +++ b/pkgs/development/ocaml-modules/httpun/types.nix @@ -16,10 +16,10 @@ buildDunePackage rec { propagatedBuildInputs = [ faraday ]; - meta = { + meta = with lib; { description = "Common HTTP/1.x types"; homepage = "https://github.com/anmonteiro/httpun"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.bsd3; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/imagelib/default.nix b/pkgs/development/ocaml-modules/imagelib/default.nix index d63ea0cd4dc57d..f327cdc3cf5332 100644 --- a/pkgs/development/ocaml-modules/imagelib/default.nix +++ b/pkgs/development/ocaml-modules/imagelib/default.nix @@ -27,11 +27,11 @@ buildDunePackage rec { doCheck = true; checkInputs = [ alcotest ]; - meta = { + meta = with lib; { description = "Image formats such as PNG and PPM in OCaml"; homepage = "https://github.com/rlepigre/ocaml-imagelib"; - license = lib.licenses.lgpl3; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.lgpl3; + maintainers = [ maintainers.vbgl ]; mainProgram = "imagetool"; }; } diff --git a/pkgs/development/ocaml-modules/io-page/default.nix b/pkgs/development/ocaml-modules/io-page/default.nix index 7860ecd681540a..31ba6d93281149 100644 --- a/pkgs/development/ocaml-modules/io-page/default.nix +++ b/pkgs/development/ocaml-modules/io-page/default.nix @@ -28,10 +28,10 @@ buildDunePackage rec { checkInputs = [ ounit ]; doCheck = true; - meta = { + meta = with lib; { homepage = "https://github.com/mirage/io-page"; - license = lib.licenses.isc; + license = licenses.isc; description = "IO memory page library for Mirage backends"; - maintainers = with lib.maintainers; [ vbgl ]; + maintainers = with maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/irmin-watcher/default.nix b/pkgs/development/ocaml-modules/irmin-watcher/default.nix index 62c266750b799d..761304cafa64ee 100644 --- a/pkgs/development/ocaml-modules/irmin-watcher/default.nix +++ b/pkgs/development/ocaml-modules/irmin-watcher/default.nix @@ -26,11 +26,11 @@ buildDunePackage rec { ocaml_lwt ]; - meta = { + meta = with lib; { homepage = "https://github.com/mirage/irmin-watcher"; description = "Portable Irmin watch backends using FSevents or Inotify"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/irmin/ppx.nix b/pkgs/development/ocaml-modules/irmin/ppx.nix index 4d22f4a833c0d2..c2761cee70ac60 100644 --- a/pkgs/development/ocaml-modules/irmin/ppx.nix +++ b/pkgs/development/ocaml-modules/irmin/ppx.nix @@ -24,11 +24,11 @@ buildDunePackage rec { logs ]; - meta = { + meta = with lib; { homepage = "https://irmin.org/"; description = "PPX deriver for Irmin generics"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ + license = licenses.isc; + maintainers = with maintainers; [ vbgl sternenseemann ]; diff --git a/pkgs/development/ocaml-modules/json-data-encoding/default.nix b/pkgs/development/ocaml-modules/json-data-encoding/default.nix index 3c21d451d81b7a..87bbad76ad55da 100644 --- a/pkgs/development/ocaml-modules/json-data-encoding/default.nix +++ b/pkgs/development/ocaml-modules/json-data-encoding/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { uri ]; - meta = { + meta = with lib; { homepage = "https://gitlab.com/nomadic-labs/json-data-encoding"; description = "Type-safe encoding to and decoding from JSON"; - license = lib.licenses.lgpl3; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.lgpl3; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/jwto/default.nix b/pkgs/development/ocaml-modules/jwto/default.nix index 6c73b06213ac83..8a12da9cd6d3d1 100644 --- a/pkgs/development/ocaml-modules/jwto/default.nix +++ b/pkgs/development/ocaml-modules/jwto/default.nix @@ -42,11 +42,11 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { homepage = "https://github.com/sporto/jwto"; description = "JSON Web Tokens (JWT) for OCaml"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ Zimmi48 jtcoolen ]; diff --git a/pkgs/development/ocaml-modules/kcas/default.nix b/pkgs/development/ocaml-modules/kcas/default.nix index 7f7a12258bafcf..7bbeaa90533f9d 100644 --- a/pkgs/development/ocaml-modules/kcas/default.nix +++ b/pkgs/development/ocaml-modules/kcas/default.nix @@ -24,10 +24,10 @@ buildDunePackage rec { doCheck = true; checkInputs = [ alcotest ]; - meta = { + meta = with lib; { homepage = "https://github.com/ocaml-multicore/kcas"; description = "STM based on lock-free MCAS"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/kdf/default.nix b/pkgs/development/ocaml-modules/kdf/default.nix index cb5c091e3d77d3..9322335b928834 100644 --- a/pkgs/development/ocaml-modules/kdf/default.nix +++ b/pkgs/development/ocaml-modules/kdf/default.nix @@ -28,10 +28,10 @@ buildDunePackage rec { ]; doCheck = true; - meta = { + meta = with lib; { description = "Key Derivation Functions: HKDF RFC 5869, PBKDF RFC 2898, SCRYPT RFC 7914"; homepage = "https://github.com/robur-coop/kdf"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.bsd2; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/ke/default.nix b/pkgs/development/ocaml-modules/ke/default.nix index 14b984f4b811d6..c837c00598435a 100644 --- a/pkgs/development/ocaml-modules/ke/default.nix +++ b/pkgs/development/ocaml-modules/ke/default.nix @@ -27,10 +27,10 @@ buildDunePackage rec { minimalOCamlVersion = "4.08"; duneVersion = "3"; - meta = { + meta = with lib; { description = "Fast implementation of queue in OCaml"; homepage = "https://github.com/mirage/ke"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/lablgtk3/default.nix b/pkgs/development/ocaml-modules/lablgtk3/default.nix index 56eff5d0e164f5..79b143a894fbf2 100644 --- a/pkgs/development/ocaml-modules/lablgtk3/default.nix +++ b/pkgs/development/ocaml-modules/lablgtk3/default.nix @@ -30,10 +30,10 @@ buildDunePackage rec { cairo2 ]; - meta = { + meta = with lib; { description = "OCaml interface to GTK 3"; homepage = "http://lablgtk.forge.ocamlcore.org/"; - license = lib.licenses.lgpl21; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.lgpl21; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/lambdasoup/default.nix b/pkgs/development/ocaml-modules/lambdasoup/default.nix index ea4b3512c16d76..0bf8e71b39d13d 100644 --- a/pkgs/development/ocaml-modules/lambdasoup/default.nix +++ b/pkgs/development/ocaml-modules/lambdasoup/default.nix @@ -29,11 +29,11 @@ buildDunePackage rec { doCheck = lib.versionAtLeast ocaml.version "4.08"; checkInputs = [ ounit2 ]; - meta = { + meta = with lib; { description = "Functional HTML scraping and rewriting with CSS in OCaml"; homepage = "https://aantron.github.io/lambdasoup/"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/letsencrypt/default.nix b/pkgs/development/ocaml-modules/letsencrypt/default.nix index 033ffde04a3aef..5522cfe30a4f2a 100644 --- a/pkgs/development/ocaml-modules/letsencrypt/default.nix +++ b/pkgs/development/ocaml-modules/letsencrypt/default.nix @@ -51,10 +51,10 @@ buildDunePackage rec { doCheck = true; checkInputs = [ ounit2 ]; - meta = { + meta = with lib; { description = "ACME implementation in OCaml"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.sternenseemann ]; + license = licenses.bsd2; + maintainers = [ maintainers.sternenseemann ]; homepage = "https://github.com/mmaker/ocaml-letsencrypt"; }; } diff --git a/pkgs/development/ocaml-modules/lru/default.nix b/pkgs/development/ocaml-modules/lru/default.nix index 74bb6c07f524b3..5dcc35114d4fb9 100644 --- a/pkgs/development/ocaml-modules/lru/default.nix +++ b/pkgs/development/ocaml-modules/lru/default.nix @@ -23,10 +23,10 @@ buildDunePackage rec { doCheck = lib.versionAtLeast ocaml.version "4.08"; checkInputs = [ qcheck-alcotest ]; - meta = { + meta = with lib; { homepage = "https://github.com/pqwy/lru"; description = "Scalable LRU caches for OCaml"; - maintainers = [ lib.maintainers.vbgl ]; - license = lib.licenses.isc; + maintainers = [ maintainers.vbgl ]; + license = licenses.isc; }; } diff --git a/pkgs/development/ocaml-modules/lwt-canceler/default.nix b/pkgs/development/ocaml-modules/lwt-canceler/default.nix index e49e5de90d014f..0aed6612c90516 100644 --- a/pkgs/development/ocaml-modules/lwt-canceler/default.nix +++ b/pkgs/development/ocaml-modules/lwt-canceler/default.nix @@ -23,10 +23,10 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { homepage = "https://gitlab.com/nomadic-labs/lwt-canceler"; description = "Cancellation synchronization object"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.mit; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/lwt-exit/default.nix b/pkgs/development/ocaml-modules/lwt-exit/default.nix index 44365f9d6b3569..205d39a4257035 100644 --- a/pkgs/development/ocaml-modules/lwt-exit/default.nix +++ b/pkgs/development/ocaml-modules/lwt-exit/default.nix @@ -28,9 +28,9 @@ buildDunePackage rec { # for some reason this never exits doCheck = false; - meta = { + meta = with lib; { description = "Opinionated clean-exit and signal-handling library for Lwt programs"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.mit; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/lwt-watcher/default.nix b/pkgs/development/ocaml-modules/lwt-watcher/default.nix index 02bfc43abc5b20..52d3d80800a517 100644 --- a/pkgs/development/ocaml-modules/lwt-watcher/default.nix +++ b/pkgs/development/ocaml-modules/lwt-watcher/default.nix @@ -23,9 +23,9 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { description = "One-to-many broadcast in Lwt"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.mit; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/lwt_log/default.nix b/pkgs/development/ocaml-modules/lwt_log/default.nix index 4bcd3524e84925..0759c2e2bfea7b 100644 --- a/pkgs/development/ocaml-modules/lwt_log/default.nix +++ b/pkgs/development/ocaml-modules/lwt_log/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { propagatedBuildInputs = [ lwt ]; - meta = { + meta = with lib; { description = "Lwt logging library (deprecated)"; homepage = "https://github.com/aantron/lwt_log"; - license = lib.licenses.lgpl21; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.lgpl21; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/lwt_ssl/default.nix b/pkgs/development/ocaml-modules/lwt_ssl/default.nix index ec4ea72c53b527..fdcc53a17d3703 100644 --- a/pkgs/development/ocaml-modules/lwt_ssl/default.nix +++ b/pkgs/development/ocaml-modules/lwt_ssl/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { lwt ]; - meta = { + meta = with lib; { homepage = "https://github.com/aantron/lwt_ssl"; description = "OpenSSL binding with concurrent I/O"; - license = lib.licenses.lgpl21; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.lgpl21; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/mec/default.nix b/pkgs/development/ocaml-modules/mec/default.nix index 29ed1fc0e86208..b56b84de1c6f01 100644 --- a/pkgs/development/ocaml-modules/mec/default.nix +++ b/pkgs/development/ocaml-modules/mec/default.nix @@ -42,10 +42,10 @@ buildDunePackage rec { bisect_ppx ]; - meta = { + meta = with lib; { description = "Mec - Mini Elliptic Curve library"; homepage = "https://gitlab.com/nomadic-labs/cryptography/ocaml-ec"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.mit; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/metrics/default.nix b/pkgs/development/ocaml-modules/metrics/default.nix index b1c921ac548c16..8ab48b8548cd98 100644 --- a/pkgs/development/ocaml-modules/metrics/default.nix +++ b/pkgs/development/ocaml-modules/metrics/default.nix @@ -23,11 +23,11 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { description = "Metrics infrastructure for OCaml"; homepage = "https://github.com/mirage/metrics"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/minisat/default.nix b/pkgs/development/ocaml-modules/minisat/default.nix index 0148f37c1fca77..44e14ef0f7d053 100644 --- a/pkgs/development/ocaml-modules/minisat/default.nix +++ b/pkgs/development/ocaml-modules/minisat/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { hash = "sha256-dH0Ndlyo/DTZ6Ao1S478aBuxoZFSkRBi5HblkTWCPas="; }; - meta = { + meta = with lib; { homepage = "https://c-cube.github.io/ocaml-minisat/"; description = "Simple bindings to Minisat-C"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ mgttlinger ]; + license = licenses.bsd2; + maintainers = with maintainers; [ mgttlinger ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-bootvar-unix/default.nix b/pkgs/development/ocaml-modules/mirage-bootvar-unix/default.nix index 3adb2349092e1b..eb72d9db847429 100644 --- a/pkgs/development/ocaml-modules/mirage-bootvar-unix/default.nix +++ b/pkgs/development/ocaml-modules/mirage-bootvar-unix/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { parse-argv ]; - meta = { + meta = with lib; { description = "Unix implementation of MirageOS Bootvar interface"; homepage = "https://github.com/mirage/mirage-bootvar-unix"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-clock/default.nix b/pkgs/development/ocaml-modules/mirage-clock/default.nix index 2cf12cec92ec2b..cbb06f3506c67f 100644 --- a/pkgs/development/ocaml-modules/mirage-clock/default.nix +++ b/pkgs/development/ocaml-modules/mirage-clock/default.nix @@ -15,10 +15,10 @@ buildDunePackage rec { hash = "sha256-+hfRXVviPHm6dB9ffLiO1xEt4WpEEM6oHHG5gIaImEc="; }; - meta = { + meta = with lib; { description = "Libraries and module types for portable clocks"; homepage = "https://github.com/mirage/mirage-clock"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-console/default.nix b/pkgs/development/ocaml-modules/mirage-console/default.nix index c22bf4d287f27c..661847dd5ebe2d 100644 --- a/pkgs/development/ocaml-modules/mirage-console/default.nix +++ b/pkgs/development/ocaml-modules/mirage-console/default.nix @@ -23,10 +23,10 @@ buildDunePackage rec { mirage-flow ]; - meta = { + meta = with lib; { description = "Implementations of Mirage console devices"; homepage = "https://github.com/mirage/mirage-console"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-device/default.nix b/pkgs/development/ocaml-modules/mirage-device/default.nix index dd036c033c223e..f3f799bd8e6d5e 100644 --- a/pkgs/development/ocaml-modules/mirage-device/default.nix +++ b/pkgs/development/ocaml-modules/mirage-device/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { ocaml_lwt ]; - meta = { + meta = with lib; { description = "Abstract devices for MirageOS"; homepage = "https://github.com/mirage/mirage-device"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-flow/default.nix b/pkgs/development/ocaml-modules/mirage-flow/default.nix index c1239ce00f259c..8e66374183d147 100644 --- a/pkgs/development/ocaml-modules/mirage-flow/default.nix +++ b/pkgs/development/ocaml-modules/mirage-flow/default.nix @@ -24,10 +24,10 @@ buildDunePackage rec { lwt ]; - meta = { + meta = with lib; { description = "Flow implementations and combinators for MirageOS"; homepage = "https://github.com/mirage/mirage-flow"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-kv/default.nix b/pkgs/development/ocaml-modules/mirage-kv/default.nix index cdcde9fee32256..4f8e114343efe5 100644 --- a/pkgs/development/ocaml-modules/mirage-kv/default.nix +++ b/pkgs/development/ocaml-modules/mirage-kv/default.nix @@ -30,10 +30,10 @@ buildDunePackage rec { doCheck = true; checkInputs = [ alcotest ]; - meta = { + meta = with lib; { description = "MirageOS signatures for key/value devices"; homepage = "https://github.com/mirage/mirage-kv"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-logs/default.nix b/pkgs/development/ocaml-modules/mirage-logs/default.nix index c5200e186a7e90..8175ae0dfaabdb 100644 --- a/pkgs/development/ocaml-modules/mirage-logs/default.nix +++ b/pkgs/development/ocaml-modules/mirage-logs/default.nix @@ -36,10 +36,10 @@ buildDunePackage rec { alcotest ]; - meta = { + meta = with lib; { description = "Reporter for the Logs library that writes log messages to stderr, using a Mirage `CLOCK` to add timestamps"; homepage = "https://github.com/mirage/mirage-logs"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-net/default.nix b/pkgs/development/ocaml-modules/mirage-net/default.nix index ef8aefa2db5315..2af13ed3103380 100644 --- a/pkgs/development/ocaml-modules/mirage-net/default.nix +++ b/pkgs/development/ocaml-modules/mirage-net/default.nix @@ -28,10 +28,10 @@ buildDunePackage rec { mirage-device ]; - meta = { + meta = with lib; { description = "Network signatures for MirageOS"; homepage = "https://github.com/mirage/mirage-net"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-protocols/default.nix b/pkgs/development/ocaml-modules/mirage-protocols/default.nix index c0d375a3c627b8..1eca1ac85072a9 100644 --- a/pkgs/development/ocaml-modules/mirage-protocols/default.nix +++ b/pkgs/development/ocaml-modules/mirage-protocols/default.nix @@ -26,10 +26,10 @@ buildDunePackage rec { tcpip ]; - meta = { + meta = with lib; { description = "MirageOS signatures for network protocols"; homepage = "https://github.com/mirage/mirage-protocols"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/mirage-random/default.nix b/pkgs/development/ocaml-modules/mirage-random/default.nix index e016f47cd0d549..30c8048cf8d7cd 100644 --- a/pkgs/development/ocaml-modules/mirage-random/default.nix +++ b/pkgs/development/ocaml-modules/mirage-random/default.nix @@ -18,10 +18,10 @@ buildDunePackage rec { propagatedBuildInputs = [ cstruct ]; - meta = { + meta = with lib; { description = "Random signatures for MirageOS"; homepage = "https://github.com/mirage/mirage-random"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/mlx/ocamlmerlin-mlx.nix b/pkgs/development/ocaml-modules/mlx/ocamlmerlin-mlx.nix index 18e1d5adee7e91..381d4e9d70992d 100644 --- a/pkgs/development/ocaml-modules/mlx/ocamlmerlin-mlx.nix +++ b/pkgs/development/ocaml-modules/mlx/ocamlmerlin-mlx.nix @@ -28,11 +28,11 @@ buildDunePackage { cppo ]; - meta = { + meta = with lib; { description = "Merlin support for MLX OCaml dialect"; homepage = "https://github.com/ocaml-mlx/mlx"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.Denommus ]; + license = licenses.mit; + maintainers = [ maintainers.Denommus ]; mainProgram = "ocamlmerlin-mlx"; }; } diff --git a/pkgs/development/ocaml-modules/mmap/default.nix b/pkgs/development/ocaml-modules/mmap/default.nix index ea9740494ad76a..b027054a14a7a9 100644 --- a/pkgs/development/ocaml-modules/mmap/default.nix +++ b/pkgs/development/ocaml-modules/mmap/default.nix @@ -15,10 +15,10 @@ buildDunePackage rec { sha256 = "0l6waidal2n8mkdn74avbslvc10sf49f5d889n838z03pra5chsc"; }; - meta = { + meta = with lib; { homepage = "https://github.com/mirage/mmap"; description = "Function for mapping files in memory"; - license = lib.licenses.lgpl21; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.lgpl21; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/mopsa/default.nix b/pkgs/development/ocaml-modules/mopsa/default.nix index 8f084ef9618d01..bf2494cfdee6f4 100644 --- a/pkgs/development/ocaml-modules/mopsa/default.nix +++ b/pkgs/development/ocaml-modules/mopsa/default.nix @@ -70,11 +70,11 @@ buildDunePackage rec { "out" ]; - meta = { - license = lib.licenses.lgpl3Plus; + meta = with lib; { + license = licenses.lgpl3Plus; homepage = "https://mopsa.lip6.fr/"; description = "A Modular and Open Platform for Static Analysis using Abstract Interpretation"; - maintainers = [ lib.maintainers.vbgl ]; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/mparser/default.nix b/pkgs/development/ocaml-modules/mparser/default.nix index d9fa6326e93f88..27e6568898de5c 100644 --- a/pkgs/development/ocaml-modules/mparser/default.nix +++ b/pkgs/development/ocaml-modules/mparser/default.nix @@ -16,10 +16,10 @@ buildDunePackage rec { sha256 = "16j19v16r42gcsii6a337zrs5cxnf12ig0vaysxyr7sq5lplqhkx"; }; - meta = { + meta = with lib; { description = "Simple monadic parser combinator OCaml library"; - license = lib.licenses.lgpl21Plus; + license = licenses.lgpl21Plus; homepage = "https://github.com/murmour/mparser"; - maintainers = [ lib.maintainers.vbgl ]; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/msat/default.nix b/pkgs/development/ocaml-modules/msat/default.nix index 43d9d0e776940e..bcf0ff74c17526 100644 --- a/pkgs/development/ocaml-modules/msat/default.nix +++ b/pkgs/development/ocaml-modules/msat/default.nix @@ -30,10 +30,10 @@ buildDunePackage rec { checkInputs = [ containers ]; nativeCheckInputs = [ mdx.bin ]; - meta = { + meta = with lib; { description = "Modular sat/smt solver with proof output"; homepage = "https://gbury.github.io/mSAT/"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.asl20; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/msgpck/default.nix b/pkgs/development/ocaml-modules/msgpck/default.nix index bfee304681bb64..f15e3bbd4a0055 100644 --- a/pkgs/development/ocaml-modules/msgpck/default.nix +++ b/pkgs/development/ocaml-modules/msgpck/default.nix @@ -23,10 +23,10 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { description = "Fast MessagePack (http://msgpack.org) library"; - license = lib.licenses.isc; + license = licenses.isc; homepage = "https://github.com/vbmithr/ocaml-msgpck"; - maintainers = [ lib.maintainers.ulrikstrid ]; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/multicore-bench/default.nix b/pkgs/development/ocaml-modules/multicore-bench/default.nix index 7f367f983eeaca..79179ab7836a54 100644 --- a/pkgs/development/ocaml-modules/multicore-bench/default.nix +++ b/pkgs/development/ocaml-modules/multicore-bench/default.nix @@ -24,10 +24,10 @@ buildDunePackage rec { yojson ]; - meta = { + meta = with lib; { description = "Framework for writing multicore benchmark executables to run on current-bench"; homepage = "https://github.com/ocaml-multicore/multicore-bench"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/multicore-magic/default.nix b/pkgs/development/ocaml-modules/multicore-magic/default.nix index 534d47dfaa56c1..b5bed93105941f 100644 --- a/pkgs/development/ocaml-modules/multicore-magic/default.nix +++ b/pkgs/development/ocaml-modules/multicore-magic/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { domain_shims ]; - meta = { + meta = with lib; { description = "Low-level multicore utilities for OCaml"; - license = lib.licenses.isc; + license = licenses.isc; homepage = "https://github.com/ocaml-multicore/multicore-magic"; - maintainers = [ lib.maintainers.vbgl ]; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/multipart-form-data/default.nix b/pkgs/development/ocaml-modules/multipart-form-data/default.nix index fc5e9a0bbf6d34..2c05e50acce3d1 100644 --- a/pkgs/development/ocaml-modules/multipart-form-data/default.nix +++ b/pkgs/development/ocaml-modules/multipart-form-data/default.nix @@ -30,10 +30,10 @@ buildDunePackage rec { doCheck = true; checkInputs = [ alcotest ]; - meta = { + meta = with lib; { description = "Parser for multipart/form-data (RFC2388)"; homepage = "https://github.com/cryptosense/multipart-form-data"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.bsd2; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/mysql/default.nix b/pkgs/development/ocaml-modules/mysql/default.nix index 0bd9a412a31649..efa73c52ce06d4 100644 --- a/pkgs/development/ocaml-modules/mysql/default.nix +++ b/pkgs/development/ocaml-modules/mysql/default.nix @@ -48,10 +48,10 @@ stdenv.mkDerivation rec { }) ]; - meta = { + meta = with lib; { homepage = "http://ocaml-mysql.forge.ocamlcore.org"; description = "Bindings for interacting with MySQL databases from ocaml"; - license = lib.licenses.lgpl21Plus; - maintainers = [ lib.maintainers.roconnor ]; + license = licenses.lgpl21Plus; + maintainers = [ maintainers.roconnor ]; }; } diff --git a/pkgs/development/ocaml-modules/ocaml-lua/default.nix b/pkgs/development/ocaml-modules/ocaml-lua/default.nix index 57a131763ad99d..cccd41815ffb5f 100644 --- a/pkgs/development/ocaml-modules/ocaml-lua/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-lua/default.nix @@ -34,10 +34,10 @@ buildDunePackage { doCheck = true; - meta = { + meta = with lib; { description = "Lua bindings for OCaml"; homepage = "https://pdonadeo.github.io/ocaml-lua"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.kenran ]; + license = licenses.mit; + maintainers = [ maintainers.kenran ]; }; } diff --git a/pkgs/development/ocaml-modules/ocaml-migrate-parsetree/2.x.nix b/pkgs/development/ocaml-modules/ocaml-migrate-parsetree/2.x.nix index 2c66caae99f998..f19ba761575902 100644 --- a/pkgs/development/ocaml-modules/ocaml-migrate-parsetree/2.x.nix +++ b/pkgs/development/ocaml-modules/ocaml-migrate-parsetree/2.x.nix @@ -20,10 +20,10 @@ lib.throwIf (lib.versionAtLeast ocaml.version "5.1") sha256 = "sha256-7EnEUtwzemIFVqtoK/AZi/UBglULUC2PsjClkSYKpqQ="; }; - meta = { + meta = with lib; { description = "Convert OCaml parsetrees between different major versions"; - license = lib.licenses.lgpl21; - maintainers = with lib.maintainers; [ + license = licenses.lgpl21; + maintainers = with maintainers; [ vbgl sternenseemann ]; diff --git a/pkgs/development/ocaml-modules/ocaml-protoc-plugin/default.nix b/pkgs/development/ocaml-modules/ocaml-protoc-plugin/default.nix index 0de49d843861e5..24756a41553efa 100644 --- a/pkgs/development/ocaml-modules/ocaml-protoc-plugin/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-protoc-plugin/default.nix @@ -39,16 +39,16 @@ buildDunePackage rec { doCheck = true; nativeCheckInputs = [ protobuf ]; - meta = { + meta = with lib; { description = "Maps google protobuf compiler to Ocaml types"; homepage = "https://github.com/issuu/ocaml-protoc-plugin"; - license = lib.licenses.asl20; + license = licenses.asl20; longDescription = '' The goal of Ocaml protoc plugin is to create an up to date plugin for the google protobuf compiler (protoc) to generate Ocaml types and serialization and de-serialization function from a .proto file. ''; - maintainers = [ lib.maintainers.GirardR1006 ]; + maintainers = [ maintainers.GirardR1006 ]; }; } diff --git a/pkgs/development/ocaml-modules/ocaml-sat-solvers/default.nix b/pkgs/development/ocaml-modules/ocaml-sat-solvers/default.nix index b24ef9e2868213..d0282b1230e2db 100644 --- a/pkgs/development/ocaml-modules/ocaml-sat-solvers/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-sat-solvers/default.nix @@ -20,10 +20,10 @@ buildOasisPackage rec { propagatedBuildInputs = [ minisat ]; - meta = { + meta = with lib; { homepage = "https://github.com/tcsprojects/ocaml-sat-solvers"; description = "SAT Solvers For OCaml"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ mgttlinger ]; + license = licenses.bsd3; + maintainers = with maintainers; [ mgttlinger ]; }; } diff --git a/pkgs/development/ocaml-modules/ocaml-vdom/default.nix b/pkgs/development/ocaml-modules/ocaml-vdom/default.nix index e34feb49f0d3fe..a0fe10dd9d5fa4 100644 --- a/pkgs/development/ocaml-modules/ocaml-vdom/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-vdom/default.nix @@ -31,10 +31,10 @@ buildDunePackage rec { ojs ]; - meta = { + meta = with lib; { homepage = "https://github.com/LexiFi/ocaml-vdom"; description = "Elm architecture and (V)DOM for OCaml"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ jayesh-bhoot ]; + license = licenses.mit; + maintainers = with maintainers; [ jayesh-bhoot ]; }; } diff --git a/pkgs/development/ocaml-modules/ocamlformat-mlx/lib.nix b/pkgs/development/ocaml-modules/ocamlformat-mlx/lib.nix index 7b2f4626b18e38..87e8078a9bbdc9 100644 --- a/pkgs/development/ocaml-modules/ocamlformat-mlx/lib.nix +++ b/pkgs/development/ocaml-modules/ocamlformat-mlx/lib.nix @@ -59,12 +59,12 @@ buildDunePackage rec { menhir ]; - meta = { + meta = with lib; { homepage = "https://github.com/ocaml-mlx/ocamlformat-mlx"; description = "OCaml .mlx Code Formatter"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ Denommus ]; - license = lib.licenses.mit; + license = licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/ocamlformat/ocamlformat-lib.nix b/pkgs/development/ocaml-modules/ocamlformat/ocamlformat-lib.nix index 6e3a23f1996db6..c9e907e314fa9d 100644 --- a/pkgs/development/ocaml-modules/ocamlformat/ocamlformat-lib.nix +++ b/pkgs/development/ocaml-modules/ocamlformat/ocamlformat-lib.nix @@ -24,13 +24,13 @@ buildDunePackage { propagatedBuildInputs = library_deps; - meta = { + meta = with lib; { homepage = "https://github.com/ocaml-ppx/ocamlformat"; description = "Auto-formatter for OCaml code (library)"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ Zimmi48 Julow ]; - license = lib.licenses.mit; + license = licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/ocamlformat/ocamlformat.nix b/pkgs/development/ocaml-modules/ocamlformat/ocamlformat.nix index f41abb136091c5..99c1a49aca7846 100644 --- a/pkgs/development/ocaml-modules/ocamlformat/ocamlformat.nix +++ b/pkgs/development/ocaml-modules/ocamlformat/ocamlformat.nix @@ -37,14 +37,14 @@ lib.throwIf (ocamlformat-lib.override { inherit version; }) ]; - meta = { + meta = with lib; { homepage = "https://github.com/ocaml-ppx/ocamlformat"; description = "Auto-formatter for OCaml code"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ Zimmi48 Julow ]; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "ocamlformat"; }; } diff --git a/pkgs/development/ocaml-modules/ocamlfuse/default.nix b/pkgs/development/ocaml-modules/ocamlfuse/default.nix index 599591cc76c068..6c0c80435f99b3 100644 --- a/pkgs/development/ocaml-modules/ocamlfuse/default.nix +++ b/pkgs/development/ocaml-modules/ocamlfuse/default.nix @@ -30,11 +30,11 @@ buildDunePackage rec { fuse ]; - meta = { + meta = with lib; { homepage = "https://sourceforge.net/projects/ocamlfuse"; description = "OCaml bindings for FUSE"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ bennofs ]; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ bennofs ]; }; } diff --git a/pkgs/development/ocaml-modules/ocolor/default.nix b/pkgs/development/ocaml-modules/ocolor/default.nix index cd98527fe90e43..198be52ccaca52 100644 --- a/pkgs/development/ocaml-modules/ocolor/default.nix +++ b/pkgs/development/ocaml-modules/ocolor/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { cppo ]; - meta = { + meta = with lib; { description = "Print with style in your terminal using Format’s semantic tags"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ toastal ]; + license = licenses.mit; + maintainers = with maintainers; [ toastal ]; homepage = "https://github.com/marc-chevalier/ocolor"; }; } diff --git a/pkgs/development/ocaml-modules/odds/default.nix b/pkgs/development/ocaml-modules/odds/default.nix index 058afef3d8aa44..5a7ebf6819175e 100644 --- a/pkgs/development/ocaml-modules/odds/default.nix +++ b/pkgs/development/ocaml-modules/odds/default.nix @@ -26,10 +26,10 @@ buildDunePackage rec { menhir ]; - meta = { + meta = with lib; { description = "Dice roller"; homepage = "https://github.com/raphael-proust/odds"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.Denommus ]; + license = licenses.isc; + maintainers = [ maintainers.Denommus ]; }; } diff --git a/pkgs/development/ocaml-modules/ohex/default.nix b/pkgs/development/ocaml-modules/ohex/default.nix index 49bf6005c6860e..53c13f81acf093 100644 --- a/pkgs/development/ocaml-modules/ohex/default.nix +++ b/pkgs/development/ocaml-modules/ohex/default.nix @@ -17,9 +17,9 @@ buildDunePackage rec { doCheck = true; checkInputs = [ alcotest ]; - meta = { + meta = with lib; { description = "Hexadecimal encoding and decoding"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.bsd2; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/omd/default.nix b/pkgs/development/ocaml-modules/omd/default.nix index cb0697188eb4c5..4f3a921936c5fe 100644 --- a/pkgs/development/ocaml-modules/omd/default.nix +++ b/pkgs/development/ocaml-modules/omd/default.nix @@ -19,11 +19,11 @@ buildDunePackage rec { substituteInPlace src/dune --replace "bytes)" ")" ''; - meta = { + meta = with lib; { description = "Extensible Markdown library and tool in OCaml"; homepage = "https://github.com/ocaml/omd"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; mainProgram = "omd"; }; } diff --git a/pkgs/development/ocaml-modules/opium/default.nix b/pkgs/development/ocaml-modules/opium/default.nix index 719f0fcbfe9f0a..af65f044af4eac 100644 --- a/pkgs/development/ocaml-modules/opium/default.nix +++ b/pkgs/development/ocaml-modules/opium/default.nix @@ -52,11 +52,11 @@ buildDunePackage rec { alcotest-lwt ]; - meta = { + meta = with lib; { description = "OCaml web framework"; homepage = "https://github.com/rgrinberg/opium"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.pmahoney ]; + license = licenses.mit; + maintainers = [ maintainers.pmahoney ]; broken = true; # Not compatible with mirage-crypto ≥ 1.0 }; } diff --git a/pkgs/development/ocaml-modules/optint/default.nix b/pkgs/development/ocaml-modules/optint/default.nix index 2726e0aae88977..c338a6561a053e 100644 --- a/pkgs/development/ocaml-modules/optint/default.nix +++ b/pkgs/development/ocaml-modules/optint/default.nix @@ -13,10 +13,10 @@ buildDunePackage rec { sha256 = "sha256-KVz/LBNLA4WxO6gdUAXZ+EG6QNSlAq7RDJl/I57xFHs="; }; - meta = { + meta = with lib; { homepage = "https://github.com/mirage/optint"; description = "Abstract type of integer between x64 and x86 architecture"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/oseq/default.nix b/pkgs/development/ocaml-modules/oseq/default.nix index 7d462b10c6a24e..a5dd0fa2db1ee1 100644 --- a/pkgs/development/ocaml-modules/oseq/default.nix +++ b/pkgs/development/ocaml-modules/oseq/default.nix @@ -26,10 +26,10 @@ buildDunePackage rec { qcheck ]; - meta = { + meta = with lib; { homepage = "https://c-cube.github.io/oseq/"; description = "Purely functional iterators compatible with standard `seq`"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.bsd2; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/otfed/default.nix b/pkgs/development/ocaml-modules/otfed/default.nix index b33036380e1726..6ec90459b0dd97 100644 --- a/pkgs/development/ocaml-modules/otfed/default.nix +++ b/pkgs/development/ocaml-modules/otfed/default.nix @@ -38,10 +38,10 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { homepage = "https://github.com/gfngfn/otfed"; description = "OpenType Font Format Encoder & Decoder"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/paf/default.nix b/pkgs/development/ocaml-modules/paf/default.nix index 404597974164ee..8507c080801c11 100644 --- a/pkgs/development/ocaml-modules/paf/default.nix +++ b/pkgs/development/ocaml-modules/paf/default.nix @@ -62,10 +62,10 @@ buildDunePackage rec { __darwinAllowLocalNetworking = true; - meta = { + meta = with lib; { description = "HTTP/AF and MirageOS"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.sternenseemann ]; + license = licenses.mit; + maintainers = [ maintainers.sternenseemann ]; homepage = "https://github.com/dinosaure/paf-le-chien"; }; } diff --git a/pkgs/development/ocaml-modules/parse-argv/default.nix b/pkgs/development/ocaml-modules/parse-argv/default.nix index b59feac4fb4004..272ce20642005f 100644 --- a/pkgs/development/ocaml-modules/parse-argv/default.nix +++ b/pkgs/development/ocaml-modules/parse-argv/default.nix @@ -23,10 +23,10 @@ buildDunePackage rec { doCheck = lib.versionAtLeast ocaml.version "4.08"; checkInputs = [ ounit ]; - meta = { + meta = with lib; { description = "Process strings into sets of command-line arguments"; homepage = "https://github.com/mirage/parse-argv"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/patch/default.nix b/pkgs/development/ocaml-modules/patch/default.nix index 623a79a692ef99..2b5abfbe157e8f 100644 --- a/pkgs/development/ocaml-modules/patch/default.nix +++ b/pkgs/development/ocaml-modules/patch/default.nix @@ -25,13 +25,13 @@ buildDunePackage rec { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { description = "Patch library purely in OCaml"; longDescription = '' This is a library which parses unified diff and git diff output, and can apply a patch in memory. ''; homepage = "https://github.com/hannesm/patch"; - maintainers = with lib.maintainers; [ r17x ]; - license = lib.licenses.isc; + maintainers = with maintainers; [ r17x ]; + license = licenses.isc; }; } diff --git a/pkgs/development/ocaml-modules/pbkdf/default.nix b/pkgs/development/ocaml-modules/pbkdf/default.nix index b09fcdf56fade9..9e873604033cbf 100644 --- a/pkgs/development/ocaml-modules/pbkdf/default.nix +++ b/pkgs/development/ocaml-modules/pbkdf/default.nix @@ -28,10 +28,10 @@ buildDunePackage rec { ]; doCheck = true; - meta = { + meta = with lib; { description = "Password based key derivation functions (PBKDF) from PKCS#5"; - maintainers = [ lib.maintainers.sternenseemann ]; - license = lib.licenses.bsd2; + maintainers = [ maintainers.sternenseemann ]; + license = licenses.bsd2; homepage = "https://github.com/abeaumont/ocaml-pbkdf"; }; } diff --git a/pkgs/development/ocaml-modules/pgsolver/default.nix b/pkgs/development/ocaml-modules/pgsolver/default.nix index ddfde095c7d973..9f4b1f58f0cde4 100644 --- a/pkgs/development/ocaml-modules/pgsolver/default.nix +++ b/pkgs/development/ocaml-modules/pgsolver/default.nix @@ -24,11 +24,11 @@ buildOasisPackage rec { ocaml-sat-solvers ]; - meta = { + meta = with lib; { description = "Collection of tools for generating, manipulating and - most of all - solving parity games"; homepage = "https://github.com/tcsprojects/pgsolver"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ mgttlinger ]; + license = licenses.bsd3; + maintainers = with maintainers; [ mgttlinger ]; mainProgram = "pgsolver-bin"; }; } diff --git a/pkgs/development/ocaml-modules/piaf/default.nix b/pkgs/development/ocaml-modules/piaf/default.nix index dae4a95291d0bc..479394200ce847 100644 --- a/pkgs/development/ocaml-modules/piaf/default.nix +++ b/pkgs/development/ocaml-modules/piaf/default.nix @@ -54,10 +54,10 @@ buildDunePackage rec { eio_main ]; - meta = { + meta = with lib; { description = "HTTP library with HTTP/2 support written entirely in OCaml"; homepage = "https://github.com/anmonteiro/piaf"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ anmonteiro ]; + license = licenses.bsd3; + maintainers = with maintainers; [ anmonteiro ]; }; } diff --git a/pkgs/development/ocaml-modules/polynomial/default.nix b/pkgs/development/ocaml-modules/polynomial/default.nix index e2f77205e70d30..1d0025d05a51f0 100644 --- a/pkgs/development/ocaml-modules/polynomial/default.nix +++ b/pkgs/development/ocaml-modules/polynomial/default.nix @@ -25,10 +25,10 @@ buildDunePackage rec { doCheck = false; # circular dependencies - meta = { + meta = with lib; { description = "Polynomials over finite field"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://gitlab.com/nomadic-labs/ocaml-polynomial"; - maintainers = [ lib.maintainers.ulrikstrid ]; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/posix/base.nix b/pkgs/development/ocaml-modules/posix/base.nix index 449eb5736da247..6fb3ad3a86da96 100644 --- a/pkgs/development/ocaml-modules/posix/base.nix +++ b/pkgs/development/ocaml-modules/posix/base.nix @@ -25,10 +25,10 @@ buildDunePackage rec { integers ]; - meta = { + meta = with lib; { homepage = "https://www.liquidsoap.info/ocaml-posix/"; description = "Base module for the posix bindings"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/pp_loc/default.nix b/pkgs/development/ocaml-modules/pp_loc/default.nix index e6cd85d7cf89f5..cafb2020906634 100644 --- a/pkgs/development/ocaml-modules/pp_loc/default.nix +++ b/pkgs/development/ocaml-modules/pp_loc/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { description = "Quote and highlight input fragments at a given source location"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; homepage = "https://armael.github.io/pp_loc/pp_loc/"; }; } diff --git a/pkgs/development/ocaml-modules/ppxlib/default.nix b/pkgs/development/ocaml-modules/ppxlib/default.nix index 3f8ebe6da9489c..21e65779132d58 100644 --- a/pkgs/development/ocaml-modules/ppxlib/default.nix +++ b/pkgs/development/ocaml-modules/ppxlib/default.nix @@ -115,10 +115,10 @@ else stdlib-shims ]; - meta = { + meta = with lib; { description = "Comprehensive ppx tool set"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; homepage = "https://github.com/ocaml-ppx/ppxlib"; }; } diff --git a/pkgs/development/ocaml-modules/printbox/default.nix b/pkgs/development/ocaml-modules/printbox/default.nix index d3e7673a5c27d2..293fdabb3399f7 100644 --- a/pkgs/development/ocaml-modules/printbox/default.nix +++ b/pkgs/development/ocaml-modules/printbox/default.nix @@ -27,10 +27,10 @@ buildDunePackage rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = { + meta = with lib; { homepage = "https://github.com/c-cube/printbox/"; description = "Allows to print nested boxes, lists, arrays, tables in several formats"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.romildo ]; + license = licenses.isc; + maintainers = [ maintainers.romildo ]; }; } diff --git a/pkgs/development/ocaml-modules/prometheus/default.nix b/pkgs/development/ocaml-modules/prometheus/default.nix index 8590436398580f..9b29ba16a4929d 100644 --- a/pkgs/development/ocaml-modules/prometheus/default.nix +++ b/pkgs/development/ocaml-modules/prometheus/default.nix @@ -30,9 +30,9 @@ buildDunePackage rec { alcotest ]; - meta = { + meta = with lib; { description = "Client library for Prometheus monitoring"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.asl20; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/promise_jsoo/default.nix b/pkgs/development/ocaml-modules/promise_jsoo/default.nix index d380fa1adb9a2f..22efe981b65522 100644 --- a/pkgs/development/ocaml-modules/promise_jsoo/default.nix +++ b/pkgs/development/ocaml-modules/promise_jsoo/default.nix @@ -31,10 +31,10 @@ buildDunePackage rec { ojs ]; - meta = { + meta = with lib; { homepage = "https://github.com/mnxn/promise_jsoo"; description = "Js_of_ocaml bindings to JS Promises with supplemental functions"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ jayesh-bhoot ]; + license = licenses.mit; + maintainers = with maintainers; [ jayesh-bhoot ]; }; } diff --git a/pkgs/development/ocaml-modules/psq/default.nix b/pkgs/development/ocaml-modules/psq/default.nix index e2349aed828a5b..f849c3231a4443 100644 --- a/pkgs/development/ocaml-modules/psq/default.nix +++ b/pkgs/development/ocaml-modules/psq/default.nix @@ -24,10 +24,10 @@ buildDunePackage rec { doCheck = lib.versionAtLeast ocaml.version "4.08"; checkInputs = [ qcheck-alcotest ]; - meta = { + meta = with lib; { description = "Functional Priority Search Queues for OCaml"; homepage = "https://github.com/pqwy/psq"; - maintainers = [ lib.maintainers.vbgl ]; - license = lib.licenses.isc; + maintainers = [ maintainers.vbgl ]; + license = licenses.isc; }; } diff --git a/pkgs/development/ocaml-modules/ptset/default.nix b/pkgs/development/ocaml-modules/ptset/default.nix index bdf39ad27e3ec9..ead27fdd721bba 100644 --- a/pkgs/development/ocaml-modules/ptset/default.nix +++ b/pkgs/development/ocaml-modules/ptset/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { propagatedBuildInputs = [ stdlib-shims ]; - meta = { + meta = with lib; { description = "Integer set implementation using Patricia trees"; homepage = "https://github.com/backtracking/ptset"; - license = lib.licenses.lgpl21; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.lgpl21; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/qcheck/core.nix b/pkgs/development/ocaml-modules/qcheck/core.nix index a2e5d8910dc1aa..9d7e31228904c5 100644 --- a/pkgs/development/ocaml-modules/qcheck/core.nix +++ b/pkgs/development/ocaml-modules/qcheck/core.nix @@ -17,11 +17,11 @@ buildDunePackage rec { hash = "sha256-JXnrfce/V7Bdu8uH98ZJCLjIHZoONiQ02ltFx6Fbvhg="; }; - meta = { + meta = with lib; { description = "Core qcheck library"; homepage = "https://c-cube.github.io/qcheck/"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.bsd2; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/qcheck/multicoretests-util.nix b/pkgs/development/ocaml-modules/qcheck/multicoretests-util.nix index 38af73b0e6d730..e3dd3952fec106 100644 --- a/pkgs/development/ocaml-modules/qcheck/multicoretests-util.nix +++ b/pkgs/development/ocaml-modules/qcheck/multicoretests-util.nix @@ -22,10 +22,10 @@ buildDunePackage rec { minimalOCamlVersion = "4.12"; - meta = { + meta = with lib; { homepage = "https://github.com/ocaml-multicore/multicoretests"; description = "Utility functions for property-based testing of multicore programs"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.bsd2; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/randomconv/default.nix b/pkgs/development/ocaml-modules/randomconv/default.nix index 898318a00b21aa..95fc9cbe3690d7 100644 --- a/pkgs/development/ocaml-modules/randomconv/default.nix +++ b/pkgs/development/ocaml-modules/randomconv/default.nix @@ -15,11 +15,11 @@ buildDunePackage rec { hash = "sha256-sxce3wfjQaRGj5L/wh4qiGO4LtXDb3R3zJja8F1bY+o="; }; - meta = { + meta = with lib; { homepage = "https://github.com/hannesm/randomconv"; description = "Convert from random bytes to random native numbers"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/raylib/default.nix b/pkgs/development/ocaml-modules/raylib/default.nix index b733001945dc90..89a2ce811a3273 100644 --- a/pkgs/development/ocaml-modules/raylib/default.nix +++ b/pkgs/development/ocaml-modules/raylib/default.nix @@ -31,10 +31,10 @@ buildDunePackage rec { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { description = "OCaml bindings for Raylib (5.0.0)"; homepage = "https://tjammer.github.io/raylib-ocaml"; - maintainers = with lib.maintainers; [ r17x ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ r17x ]; + license = licenses.mit; }; } diff --git a/pkgs/development/ocaml-modules/re/default.nix b/pkgs/development/ocaml-modules/re/default.nix index 54bd7a664ae2fb..4a2efc68e493e4 100644 --- a/pkgs/development/ocaml-modules/re/default.nix +++ b/pkgs/development/ocaml-modules/re/default.nix @@ -42,10 +42,10 @@ buildDunePackage rec { doCheck = lib.versionAtLeast ocaml.version "4.08"; checkInputs = [ (if lib.versionAtLeast version "1.12" then ounit2 else ounit) ]; - meta = { + meta = with lib; { homepage = "https://github.com/ocaml/ocaml-re"; description = "Pure OCaml regular expressions, with support for Perl and POSIX-style strings"; - license = lib.licenses.lgpl2; - maintainers = with lib.maintainers; [ vbgl ]; + license = licenses.lgpl2; + maintainers = with maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/readline/default.nix b/pkgs/development/ocaml-modules/readline/default.nix index 4efafe2f4e3201..a0c4c77aad91da 100644 --- a/pkgs/development/ocaml-modules/readline/default.nix +++ b/pkgs/development/ocaml-modules/readline/default.nix @@ -28,10 +28,10 @@ buildDunePackage { propagatedBuildInputs = [ readline ]; - meta = { + meta = with lib; { description = "OCaml bindings for GNU Readline"; homepage = "https://vtourneu.gitlabpages.inria.fr/readline-ocaml/readline/index.html"; - license = lib.licenses.cecill20; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.cecill20; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/reason-react/ppx.nix b/pkgs/development/ocaml-modules/reason-react/ppx.nix index 16068a1e635889..9971f52178eff5 100644 --- a/pkgs/development/ocaml-modules/reason-react/ppx.nix +++ b/pkgs/development/ocaml-modules/reason-react/ppx.nix @@ -20,12 +20,12 @@ buildDunePackage { ppxlib ]; doCheck = false; # Needs to run in reason-react, see default.nix - meta = { + meta = with lib; { description = "React.js JSX PPX"; homepage = "https://github.com/reasonml/reason-react"; - license = lib.licenses.mit; + license = licenses.mit; maintainers = [ - lib.maintainers.vog + maintainers.vog ]; }; } diff --git a/pkgs/development/ocaml-modules/resto/default.nix b/pkgs/development/ocaml-modules/resto/default.nix index 5018a282e59ec0..5d15e55160ec93 100644 --- a/pkgs/development/ocaml-modules/resto/default.nix +++ b/pkgs/development/ocaml-modules/resto/default.nix @@ -23,10 +23,10 @@ buildDunePackage rec { # resto has infinite recursion in their tests doCheck = false; - meta = { + meta = with lib; { description = "Minimal OCaml library for type-safe HTTP/JSON RPCs"; homepage = "https://gitlab.com/nomadic-labs/resto"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.mit; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/rfc7748/default.nix b/pkgs/development/ocaml-modules/rfc7748/default.nix index 8adf46c3b384bb..d54141c1801fe0 100644 --- a/pkgs/development/ocaml-modules/rfc7748/default.nix +++ b/pkgs/development/ocaml-modules/rfc7748/default.nix @@ -33,7 +33,7 @@ buildDunePackage rec { doCheck = lib.versionAtLeast ocaml.version "4.08"; checkInputs = [ ounit ]; - meta = { + meta = with lib; { homepage = "https://github.com/burgerdev/ocaml-rfc7748"; description = "Elliptic Curve Diffie-Hellman on Edwards Curves (X25519, X448)"; longDescription = '' @@ -42,7 +42,7 @@ buildDunePackage rec { publications, the public API is kept as simple as possible to make it easy to use and hard to misuse. ''; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ fufexan ]; + license = licenses.bsd2; + maintainers = with maintainers; [ fufexan ]; }; } diff --git a/pkgs/development/ocaml-modules/ringo/default.nix b/pkgs/development/ocaml-modules/ringo/default.nix index 4120d82cb29534..f78cec197a4451 100644 --- a/pkgs/development/ocaml-modules/ringo/default.nix +++ b/pkgs/development/ocaml-modules/ringo/default.nix @@ -18,9 +18,9 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { description = "Caches (bounded-size key-value stores) and other bounded-size stores"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.mit; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/rock/default.nix b/pkgs/development/ocaml-modules/rock/default.nix index 4ac05b0150b267..ee3f2779b5f84e 100644 --- a/pkgs/development/ocaml-modules/rock/default.nix +++ b/pkgs/development/ocaml-modules/rock/default.nix @@ -28,11 +28,11 @@ buildDunePackage rec { sexplib0 ]; - meta = { + meta = with lib; { description = "Minimalist framework to build extensible HTTP servers and clients"; homepage = "https://github.com/rgrinberg/opium"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/rusage/default.nix b/pkgs/development/ocaml-modules/rusage/default.nix index 8992d60368ca42..df5469fd02c278 100644 --- a/pkgs/development/ocaml-modules/rusage/default.nix +++ b/pkgs/development/ocaml-modules/rusage/default.nix @@ -15,10 +15,10 @@ buildDunePackage rec { hash = "sha256-OgYA2Fe1goqoaOS45Z6FBJNNYN/uq+KQoUwG8KSo6Fk="; }; - meta = { + meta = with lib; { description = "Bindings to the GETRUSAGE(2) syscall"; homepage = "https://github.com/CraigFe/ocaml-rusage"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/saturn/lockfree.nix b/pkgs/development/ocaml-modules/saturn/lockfree.nix index 538dfda5e8385d..eece788d436d86 100644 --- a/pkgs/development/ocaml-modules/saturn/lockfree.nix +++ b/pkgs/development/ocaml-modules/saturn/lockfree.nix @@ -22,10 +22,10 @@ buildDunePackage rec { multicore-magic ]; - meta = { + meta = with lib; { description = "Lock-free data structures for multicore OCaml"; homepage = "https://github.com/ocaml-multicore/lockfree"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/secp256k1-internal/default.nix b/pkgs/development/ocaml-modules/secp256k1-internal/default.nix index 5a57a79889e1c4..d29f1bbd405ae8 100644 --- a/pkgs/development/ocaml-modules/secp256k1-internal/default.nix +++ b/pkgs/development/ocaml-modules/secp256k1-internal/default.nix @@ -40,9 +40,9 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { description = "Bindings to secp256k1 internal functions (generic operations on the curve)"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.mit; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/sel/default.nix b/pkgs/development/ocaml-modules/sel/default.nix index 89abcc5aef336e..33c64cc9f39286 100644 --- a/pkgs/development/ocaml-modules/sel/default.nix +++ b/pkgs/development/ocaml-modules/sel/default.nix @@ -25,10 +25,10 @@ buildDunePackage rec { ppx_deriving ]; - meta = { + meta = with lib; { description = "Simple event library"; homepage = "https://github.com/gares/sel/"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/semver/default.nix b/pkgs/development/ocaml-modules/semver/default.nix index 3529f481c33f9b..cb538a93ecc914 100644 --- a/pkgs/development/ocaml-modules/semver/default.nix +++ b/pkgs/development/ocaml-modules/semver/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { doCheck = lib.versionAtLeast ocaml.version "4.08"; checkInputs = [ alcotest ]; - meta = { + meta = with lib; { homepage = "https://github.com/rgrinberg/ocaml-semver"; description = "Semantic versioning module"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.bsd3; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/slug/default.nix b/pkgs/development/ocaml-modules/slug/default.nix index 55657d32c454f7..87bd30d01548db 100644 --- a/pkgs/development/ocaml-modules/slug/default.nix +++ b/pkgs/development/ocaml-modules/slug/default.nix @@ -30,10 +30,10 @@ buildDunePackage rec { doCheck = true; checkInputs = [ alcotest ]; - meta = { + meta = with lib; { description = "Url safe slug generator for OCaml"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.niols ]; + license = licenses.mit; + maintainers = [ maintainers.niols ]; homepage = "https://github.com/thangngoc89/ocaml-slug"; }; } diff --git a/pkgs/development/ocaml-modules/spdx_licenses/default.nix b/pkgs/development/ocaml-modules/spdx_licenses/default.nix index 807de8387fee5a..02bd550450218a 100644 --- a/pkgs/development/ocaml-modules/spdx_licenses/default.nix +++ b/pkgs/development/ocaml-modules/spdx_licenses/default.nix @@ -15,10 +15,10 @@ buildDunePackage rec { hash = "sha256-9ViB7PRDz70w3RJczapgn2tJx9wTWgAbdzos6r3J2r4="; }; - meta = { + meta = with lib; { homepage = "https://github.com/kit-ty-kate/spdx_licenses"; description = "A library providing a strict SPDX License Expression parser"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/stdcompat/default.nix b/pkgs/development/ocaml-modules/stdcompat/default.nix index b2d5e3e89eec70..6949b560a70034 100644 --- a/pkgs/development/ocaml-modules/stdcompat/default.nix +++ b/pkgs/development/ocaml-modules/stdcompat/default.nix @@ -21,9 +21,9 @@ lib.throwIf (lib.versionAtLeast ocaml.version "5.2") # Otherwise ./configure script will run and create files conflicting with dune. dontConfigure = true; - meta = { + meta = with lib; { homepage = "https://github.com/thierry-martinez/stdcompat"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.bsd2; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/stdint/default.nix b/pkgs/development/ocaml-modules/stdint/default.nix index f4696204409289..95b2e430684351 100644 --- a/pkgs/development/ocaml-modules/stdint/default.nix +++ b/pkgs/development/ocaml-modules/stdint/default.nix @@ -34,10 +34,10 @@ buildDunePackage rec { doCheck = lib.versionAtLeast ocaml.version "4.08"; checkInputs = [ qcheck ]; - meta = { + meta = with lib; { description = "Various signed and unsigned integers for OCaml"; homepage = "https://github.com/andrenth/ocaml-stdint"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.gebner ]; + license = licenses.mit; + maintainers = [ maintainers.gebner ]; }; } diff --git a/pkgs/development/ocaml-modules/streaming/default.nix b/pkgs/development/ocaml-modules/streaming/default.nix index 77912934d4b5d2..381a471f5427a8 100644 --- a/pkgs/development/ocaml-modules/streaming/default.nix +++ b/pkgs/development/ocaml-modules/streaming/default.nix @@ -18,10 +18,10 @@ buildDunePackage rec { propagatedBuildInputs = [ stdlib-shims ]; - meta = { + meta = with lib; { homepage = "https://odis-labs.github.io/streaming"; - license = lib.licenses.isc; + license = licenses.isc; description = "Fast, safe and composable streaming abstractions"; - maintainers = [ lib.maintainers.vbgl ]; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/stringext/default.nix b/pkgs/development/ocaml-modules/stringext/default.nix index 830185e89054c3..3456ba53a79b6c 100644 --- a/pkgs/development/ocaml-modules/stringext/default.nix +++ b/pkgs/development/ocaml-modules/stringext/default.nix @@ -28,10 +28,10 @@ buildDunePackage { ]; inherit doCheck; - meta = { + meta = with lib; { homepage = "https://github.com/rgrinberg/stringext"; description = "Extra string functions for OCaml"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ vbgl ]; + license = licenses.mit; + maintainers = with maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/swhid_core/default.nix b/pkgs/development/ocaml-modules/swhid_core/default.nix index bc9998be2dc2da..6deb2940d6f0ec 100644 --- a/pkgs/development/ocaml-modules/swhid_core/default.nix +++ b/pkgs/development/ocaml-modules/swhid_core/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { hash = "sha256-uLnVbptCvmBeNbOjGjyAWAKgzkKLDTYVFY6SNH2zf0A="; }; - meta = { + meta = with lib; { description = "OCaml library to work with swhids"; homepage = "https://github.com/ocamlpro/swhid_core"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/systemd/default.nix b/pkgs/development/ocaml-modules/systemd/default.nix index f729601d3a742f..6b6e22a93db362 100644 --- a/pkgs/development/ocaml-modules/systemd/default.nix +++ b/pkgs/development/ocaml-modules/systemd/default.nix @@ -15,10 +15,10 @@ buildDunePackage { }; minimalOCamlVersion = "4.06"; propagatedBuildInputs = [ systemdLibs ]; - meta = { - platform = lib.platforms.linux; + meta = with lib; { + platform = platforms.linux; description = "OCaml module for native access to the systemd facilities"; - license = lib.licenses.lgpl3Only; - maintainers = [ lib.maintainers.atagen ]; + license = licenses.lgpl3Only; + maintainers = [ maintainers.atagen ]; }; } diff --git a/pkgs/development/ocaml-modules/tar/default.nix b/pkgs/development/ocaml-modules/tar/default.nix index 0a5bda3881c40c..e853a1f9c10d4a 100644 --- a/pkgs/development/ocaml-modules/tar/default.nix +++ b/pkgs/development/ocaml-modules/tar/default.nix @@ -25,10 +25,10 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { description = "Decode and encode tar format files in pure OCaml"; homepage = "https://github.com/mirage/ocaml-tar"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.mit; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/tcslib/default.nix b/pkgs/development/ocaml-modules/tcslib/default.nix index 58c19e399cc40c..f3d2d344fb9b0a 100644 --- a/pkgs/development/ocaml-modules/tcslib/default.nix +++ b/pkgs/development/ocaml-modules/tcslib/default.nix @@ -24,10 +24,10 @@ buildOasisPackage rec { num ]; - meta = { + meta = with lib; { homepage = "https://github.com/tcsprojects/tcslib"; description = "Multi-purpose library for OCaml"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ mgttlinger ]; + license = licenses.bsd3; + maintainers = with maintainers; [ mgttlinger ]; }; } diff --git a/pkgs/development/ocaml-modules/telemetry/default.nix b/pkgs/development/ocaml-modules/telemetry/default.nix index bf25a422bb2dad..859eca84364c81 100644 --- a/pkgs/development/ocaml-modules/telemetry/default.nix +++ b/pkgs/development/ocaml-modules/telemetry/default.nix @@ -17,10 +17,10 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { description = "Lightweight library for dispatching and handling events, with a focus on metrics and instrumentation"; homepage = "https://github.com/leostera/telemetry"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/timedesc/default.nix b/pkgs/development/ocaml-modules/timedesc/default.nix index 5d46988949d0a2..f0dd2e6594de81 100644 --- a/pkgs/development/ocaml-modules/timedesc/default.nix +++ b/pkgs/development/ocaml-modules/timedesc/default.nix @@ -28,10 +28,10 @@ buildDunePackage rec { timedesc-tzlocal ]; - meta = { + meta = with lib; { description = "OCaml date time handling library"; homepage = "https://github.com/daypack-dev/timere"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/toml/default.nix b/pkgs/development/ocaml-modules/toml/default.nix index 2f7f9b547e0627..0b416291efd53e 100644 --- a/pkgs/development/ocaml-modules/toml/default.nix +++ b/pkgs/development/ocaml-modules/toml/default.nix @@ -22,10 +22,10 @@ buildDunePackage rec { nativeBuildInputs = [ menhir ]; propagatedBuildInputs = [ iso8601 ]; - meta = { + meta = with lib; { description = "Implementation in OCaml of the Toml minimal langage"; homepage = "http://ocaml-toml.github.io/To.ml"; - license = lib.licenses.lgpl3; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.lgpl3; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/trace/default.nix b/pkgs/development/ocaml-modules/trace/default.nix index dbc492efee403b..257e9287ab6d11 100644 --- a/pkgs/development/ocaml-modules/trace/default.nix +++ b/pkgs/development/ocaml-modules/trace/default.nix @@ -15,11 +15,11 @@ buildDunePackage rec { hash = "sha256-l0NvWPGBd1WR+b50WXEYfptuCUjda8MlZ/o5YngRNIg="; }; - meta = { + meta = with lib; { description = "Common interface for tracing/instrumentation libraries in OCaml"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://c-cube.github.io/ocaml-trace/"; - maintainers = [ lib.maintainers.vbgl ]; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/uecc/default.nix b/pkgs/development/ocaml-modules/uecc/default.nix index e9bdc340647ae3..4c3260b62ec39a 100644 --- a/pkgs/development/ocaml-modules/uecc/default.nix +++ b/pkgs/development/ocaml-modules/uecc/default.nix @@ -34,10 +34,10 @@ buildDunePackage rec { doCheck = lib.versionAtLeast ocaml.version "4.08"; - meta = { + meta = with lib; { description = "Bindings for ECDH and ECDSA for 8-bit, 32-bit, and 64-bit processors"; homepage = "https://gitlab.com/nomadic-labs/ocaml-uecc"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.ulrikstrid ]; + license = licenses.isc; + maintainers = [ maintainers.ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/unisim_archisec/default.nix b/pkgs/development/ocaml-modules/unisim_archisec/default.nix index 1c587c7f4f2f48..c650e628e39355 100644 --- a/pkgs/development/ocaml-modules/unisim_archisec/default.nix +++ b/pkgs/development/ocaml-modules/unisim_archisec/default.nix @@ -15,11 +15,11 @@ buildDunePackage rec { duneVersion = "3"; - meta = { + meta = with lib; { homepage = "https://binsec.github.io"; downloadPage = "https://github.com/binsec/unisim_archisec"; description = "UNISIM-VP DBA decoder"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.david-hamelin ]; + license = licenses.bsd3; + maintainers = [ maintainers.david-hamelin ]; }; } diff --git a/pkgs/development/ocaml-modules/uri/default.nix b/pkgs/development/ocaml-modules/uri/default.nix index 86185efcab6aac..9c8367a34d3549 100644 --- a/pkgs/development/ocaml-modules/uri/default.nix +++ b/pkgs/development/ocaml-modules/uri/default.nix @@ -26,10 +26,10 @@ buildDunePackage rec { ]; doCheck = true; - meta = { + meta = with lib; { homepage = "https://github.com/mirage/ocaml-uri"; description = "RFC3986 URI parsing library for OCaml"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/vector/default.nix b/pkgs/development/ocaml-modules/vector/default.nix index e2c3240697bf22..612d86166081d5 100644 --- a/pkgs/development/ocaml-modules/vector/default.nix +++ b/pkgs/development/ocaml-modules/vector/default.nix @@ -17,11 +17,11 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { description = "Resizable arrays for OCaml"; - license = lib.licenses.lgpl2Only; + license = licenses.lgpl2Only; homepage = "https://github.com/backtracking/vector"; - maintainers = [ lib.maintainers.vbgl ]; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/vlq/default.nix b/pkgs/development/ocaml-modules/vlq/default.nix index e23bf4cb7513c6..db3e572cc8809e 100644 --- a/pkgs/development/ocaml-modules/vlq/default.nix +++ b/pkgs/development/ocaml-modules/vlq/default.nix @@ -21,11 +21,11 @@ lib.throwIf (lib.versionAtLeast ocaml.version "5.0") buildInputs = [ dune-configurator ]; - meta = { + meta = with lib; { description = "encoding variable-length quantities, in particular base64"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/flowtype/ocaml-vlq"; - maintainers = [ lib.maintainers.nomeata ]; + maintainers = [ maintainers.nomeata ]; }; } diff --git a/pkgs/development/ocaml-modules/vpl-core/default.nix b/pkgs/development/ocaml-modules/vpl-core/default.nix index bdc78d94192541..72f0970b661cc4 100644 --- a/pkgs/development/ocaml-modules/vpl-core/default.nix +++ b/pkgs/development/ocaml-modules/vpl-core/default.nix @@ -22,11 +22,11 @@ buildDunePackage rec { zarith ]; - meta = { + meta = with lib; { description = "Verified Polyhedra Library"; homepage = "https://amarechal.gitlab.io/home/projects/vpl/"; - license = lib.licenses.lgpl3Only; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.lgpl3Only; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/wayland/default.nix b/pkgs/development/ocaml-modules/wayland/default.nix index 062774ad50781e..8208263f0bb9ef 100644 --- a/pkgs/development/ocaml-modules/wayland/default.nix +++ b/pkgs/development/ocaml-modules/wayland/default.nix @@ -41,11 +41,11 @@ buildDunePackage rec { ]; doCheck = true; - meta = { + meta = with lib; { description = "Pure OCaml Wayland protocol library"; homepage = "https://github.com/talex5/ocaml-wayland"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.sternenseemann ]; + license = licenses.asl20; + maintainers = [ maintainers.sternenseemann ]; mainProgram = "wayland-scanner-ocaml"; }; } diff --git a/pkgs/development/ocaml-modules/webmachine/default.nix b/pkgs/development/ocaml-modules/webmachine/default.nix index 3cd3fb98e481f4..3f1afdf399a271 100644 --- a/pkgs/development/ocaml-modules/webmachine/default.nix +++ b/pkgs/development/ocaml-modules/webmachine/default.nix @@ -32,11 +32,11 @@ buildDunePackage rec { doCheck = true; - meta = { + meta = with lib; { homepage = "https://github.com/inhabitedtype/ocaml-webmachine"; - license = lib.licenses.bsd3; + license = licenses.bsd3; description = "REST toolkit for OCaml"; - maintainers = [ lib.maintainers.vbgl ]; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/xml-light/default.nix b/pkgs/development/ocaml-modules/xml-light/default.nix index 8d0bf0dd9be217..2b7b61e652a9d0 100644 --- a/pkgs/development/ocaml-modules/xml-light/default.nix +++ b/pkgs/development/ocaml-modules/xml-light/default.nix @@ -16,7 +16,7 @@ buildDunePackage rec { hash = "sha256-9YwrPbcK0boICw0wauMvgsy7ldq7ksWZzcRn0eROAD0="; }; - meta = { + meta = with lib; { description = "Minimal Xml parser and printer for OCaml"; longDescription = '' Xml-Light provides functions to parse an XML document into an OCaml @@ -26,7 +26,7 @@ buildDunePackage rec { library. ''; homepage = "http://tech.motion-twin.com/xmllight.html"; - license = lib.licenses.lgpl21; - maintainers = [ lib.maintainers.romildo ]; + license = licenses.lgpl21; + maintainers = [ maintainers.romildo ]; }; } diff --git a/pkgs/development/ocaml-modules/xxhash/default.nix b/pkgs/development/ocaml-modules/xxhash/default.nix index 941d01208657f3..dd6634ebeab376 100644 --- a/pkgs/development/ocaml-modules/xxhash/default.nix +++ b/pkgs/development/ocaml-modules/xxhash/default.nix @@ -42,10 +42,10 @@ buildDunePackage rec { ppx_expect ]; - meta = { + meta = with lib; { homepage = "https://github.com/314eter/ocaml-xxhash"; description = "Bindings for xxHash, an extremely fast hash algorithm"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ toastal ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ toastal ]; }; } diff --git a/pkgs/development/ocaml-modules/yaml/default.nix b/pkgs/development/ocaml-modules/yaml/default.nix index 003a0ea1b3748a..393ecda1c422a1 100644 --- a/pkgs/development/ocaml-modules/yaml/default.nix +++ b/pkgs/development/ocaml-modules/yaml/default.nix @@ -42,11 +42,11 @@ buildDunePackage rec { ezjsonm ]; - meta = { + meta = with lib; { description = "Parse and generate YAML 1.1 files"; homepage = "https://github.com/avsm/ocaml-yaml"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/yuujinchou/default.nix b/pkgs/development/ocaml-modules/yuujinchou/default.nix index 3a0f6b08ea46a7..c6fd8fb2d3eaa7 100644 --- a/pkgs/development/ocaml-modules/yuujinchou/default.nix +++ b/pkgs/development/ocaml-modules/yuujinchou/default.nix @@ -44,10 +44,10 @@ buildDunePackage rec { doCheck = true; checkInputs = [ qcheck-alcotest ]; - meta = { + meta = with lib; { description = "Name pattern combinators"; homepage = "https://github.com/RedPRL/yuujinchou"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.asl20; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/zipc/default.nix b/pkgs/development/ocaml-modules/zipc/default.nix index 74717ec794713f..efe8b5cca6cf18 100644 --- a/pkgs/development/ocaml-modules/zipc/default.nix +++ b/pkgs/development/ocaml-modules/zipc/default.nix @@ -37,10 +37,10 @@ lib.throwIfNot (lib.versionAtLeast ocaml.version "4.14") inherit (topkg) buildPhase installPhase; - meta = { + meta = with lib; { description = "ZIP archive and deflate codec for OCaml"; homepage = "https://erratique.ch/software/zipc"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/zmq/default.nix b/pkgs/development/ocaml-modules/zmq/default.nix index 003181044329c8..eff55469edc033 100644 --- a/pkgs/development/ocaml-modules/zmq/default.nix +++ b/pkgs/development/ocaml-modules/zmq/default.nix @@ -20,10 +20,10 @@ buildDunePackage rec { dune-configurator ]; - meta = { + meta = with lib; { description = "ZeroMQ bindings for OCaml"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ akavel ]; + license = licenses.mit; + maintainers = with maintainers; [ akavel ]; homepage = "https://engineering.issuu.com/ocaml-zmq/"; }; } diff --git a/pkgs/development/perl-modules/ImageExifTool/default.nix b/pkgs/development/perl-modules/ImageExifTool/default.nix index 23ec4187531902..a8e9739e64e7b3 100644 --- a/pkgs/development/perl-modules/ImageExifTool/default.nix +++ b/pkgs/development/perl-modules/ImageExifTool/default.nix @@ -37,7 +37,7 @@ buildPerlPackage rec { updateScript = gitUpdater { url = "https://github.com/exiftool/exiftool.git"; }; }; - meta = { + meta = with lib; { description = "Tool to read, write and edit EXIF meta information"; longDescription = '' ExifTool is a platform-independent Perl library plus a command-line @@ -52,11 +52,11 @@ buildPerlPackage rec { ''; homepage = "https://exiftool.org/"; changelog = "https://exiftool.org/history.html"; - license = with lib.licenses; [ + license = with licenses; [ gpl1Plus # or artistic2 ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ kiloreux anthonyroussel ]; diff --git a/pkgs/development/perl-modules/MNI/default.nix b/pkgs/development/perl-modules/MNI/default.nix index b1e66804f8dede..7701a1bc5dd1df 100644 --- a/pkgs/development/perl-modules/MNI/default.nix +++ b/pkgs/development/perl-modules/MNI/default.nix @@ -19,13 +19,13 @@ buildPerlPackage { doCheck = false; # TODO: almost all tests fail ... is this a real problem? - meta = { + meta = with lib; { description = "MNI MINC perllib (not used much anymore)"; homepage = "https://github.com/BIC-MNI/mni-perllib"; - license = with lib.licenses; [ + license = with licenses; [ artistic1 gpl1Plus ]; - maintainers = with lib.maintainers; [ bcdarwin ]; + maintainers = with maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/perl-modules/Percona-Toolkit/default.nix b/pkgs/development/perl-modules/Percona-Toolkit/default.nix index 8a86295dc45cb0..7e19e0819ec3c7 100644 --- a/pkgs/development/perl-modules/Percona-Toolkit/default.nix +++ b/pkgs/development/perl-modules/Percona-Toolkit/default.nix @@ -35,11 +35,11 @@ buildPerlPackage rec { shortenPerlShebang $(grep -l "/bin/env perl" $out/bin/*) ''; - meta = { + meta = with lib; { description = "Collection of advanced command-line tools to perform a variety of MySQL and system tasks"; homepage = "https://www.percona.com/software/database-tools/percona-toolkit"; changelog = "https://docs.percona.com/percona-toolkit/release_notes.html"; - license = with lib.licenses; [ gpl2Only ]; - maintainers = with lib.maintainers; [ izorkin ]; + license = with licenses; [ gpl2Only ]; + maintainers = with maintainers; [ izorkin ]; }; } diff --git a/pkgs/development/perl-modules/Tirex/default.nix b/pkgs/development/perl-modules/Tirex/default.nix index 52714c2d6968fd..b9d41adfbd3169 100644 --- a/pkgs/development/perl-modules/Tirex/default.nix +++ b/pkgs/development/perl-modules/Tirex/default.nix @@ -56,10 +56,10 @@ buildPerlPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Tools for running a map tile server"; homepage = "https://wiki.openstreetmap.org/wiki/Tirex"; - maintainers = with lib.maintainers; [ jglukasik ]; - license = with lib.licenses; [ gpl2Only ]; + maintainers = with maintainers; [ jglukasik ]; + license = with licenses; [ gpl2Only ]; }; } diff --git a/pkgs/development/php-packages/grpc/default.nix b/pkgs/development/php-packages/grpc/default.nix index 2a919990193c94..692aa74cbba63b 100644 --- a/pkgs/development/php-packages/grpc/default.nix +++ b/pkgs/development/php-packages/grpc/default.nix @@ -21,10 +21,10 @@ buildPecl { doCheck = true; - meta = { + meta = with lib; { description = "High performance, open source, general RPC framework that puts mobile and HTTP/2 first"; homepage = "https://github.com/grpc/grpc/tree/master/src/php/ext/grpc"; - license = lib.licenses.asl20; - maintainers = lib.teams.php.members; + license = licenses.asl20; + maintainers = teams.php.members; }; } diff --git a/pkgs/development/php-packages/igbinary/default.nix b/pkgs/development/php-packages/igbinary/default.nix index 6b8d426c379fb1..aa56241bc1b087 100644 --- a/pkgs/development/php-packages/igbinary/default.nix +++ b/pkgs/development/php-packages/igbinary/default.nix @@ -12,10 +12,10 @@ buildPecl { "dev" ]; - meta = { + meta = with lib; { description = "Binary serialization for PHP"; homepage = "https://github.com/igbinary/igbinary/"; - license = lib.licenses.bsd3; - maintainers = lib.teams.php.members; + license = licenses.bsd3; + maintainers = teams.php.members; }; } diff --git a/pkgs/development/php-packages/inotify/default.nix b/pkgs/development/php-packages/inotify/default.nix index b68af7ec6e8038..05cee070fa5940 100644 --- a/pkgs/development/php-packages/inotify/default.nix +++ b/pkgs/development/php-packages/inotify/default.nix @@ -8,11 +8,11 @@ buildPecl { doCheck = true; - meta = { + meta = with lib; { description = "Inotify bindings for PHP"; homepage = "https://github.com/arnaud-lb/php-inotify"; - license = lib.licenses.php301; - maintainers = lib.teams.php.members; - platforms = lib.platforms.linux; + license = licenses.php301; + maintainers = teams.php.members; + platforms = platforms.linux; }; } diff --git a/pkgs/development/php-packages/meminfo/default.nix b/pkgs/development/php-packages/meminfo/default.nix index d7cca10ba32835..74e06f65d4c517 100644 --- a/pkgs/development/php-packages/meminfo/default.nix +++ b/pkgs/development/php-packages/meminfo/default.nix @@ -17,10 +17,10 @@ buildPecl rec { sourceRoot = "${src.name}/extension"; - meta = { + meta = with lib; { description = "PHP extension to get insight about memory usage"; homepage = "https://github.com/BitOne/php-meminfo"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ drupol ]; + license = licenses.mit; + maintainers = with maintainers; [ drupol ]; }; } diff --git a/pkgs/development/php-packages/mongodb/default.nix b/pkgs/development/php-packages/mongodb/default.nix index 35b722e03fac95..c571be44f728f5 100644 --- a/pkgs/development/php-packages/mongodb/default.nix +++ b/pkgs/development/php-packages/mongodb/default.nix @@ -42,10 +42,10 @@ buildPecl rec { libiconv ]; - meta = { + meta = with lib; { description = "Official MongoDB PHP driver"; homepage = "https://github.com/mongodb/mongo-php-driver"; - license = lib.licenses.asl20; - maintainers = lib.teams.php.members; + license = licenses.asl20; + maintainers = teams.php.members; }; } diff --git a/pkgs/development/php-packages/phan/default.nix b/pkgs/development/php-packages/phan/default.nix index 2b49c13a86b230..97f07a4945cdef 100644 --- a/pkgs/development/php-packages/phan/default.nix +++ b/pkgs/development/php-packages/phan/default.nix @@ -18,15 +18,15 @@ vendorHash = "sha256-qRcB0KmUJWRQaMlnK1JdUsZrikThD6nQnrqQZm9yROk="; - meta = { + meta = with lib; { description = "Static analyzer for PHP"; homepage = "https://github.com/phan/phan"; - license = lib.licenses.mit; + license = licenses.mit; longDescription = '' Phan is a static analyzer for PHP. Phan prefers to avoid false-positives and attempts to prove incorrectness rather than correctness. ''; mainProgram = "phan"; - maintainers = with lib.maintainers; [ apeschar ] ++ lib.teams.php.members; + maintainers = with maintainers; [ apeschar ] ++ teams.php.members; }; }) diff --git a/pkgs/development/php-packages/php-parallel-lint/default.nix b/pkgs/development/php-packages/php-parallel-lint/default.nix index 342e4158f07a37..78f18b2ee35c58 100644 --- a/pkgs/development/php-packages/php-parallel-lint/default.nix +++ b/pkgs/development/php-packages/php-parallel-lint/default.nix @@ -18,11 +18,11 @@ php.buildComposerProject (finalAttrs: { composerLock = ./composer.lock; vendorHash = "sha256-NZLGeX1i+E621UGYeWn5tKufDbCLv4iD1VXJcnhfleY="; - meta = { + meta = with lib; { description = "Tool to check syntax of PHP files faster than serial check with fancier output"; homepage = "https://github.com/php-parallel-lint/PHP-Parallel-Lint"; - license = lib.licenses.bsd2; + license = licenses.bsd2; mainProgram = "parallel-lint"; - maintainers = lib.teams.php.members; + maintainers = teams.php.members; }; }) diff --git a/pkgs/development/php-packages/rrd/default.nix b/pkgs/development/php-packages/rrd/default.nix index 4b5aa83a09ab85..8bb97a2c6d3ba6 100644 --- a/pkgs/development/php-packages/rrd/default.nix +++ b/pkgs/development/php-packages/rrd/default.nix @@ -19,10 +19,10 @@ buildPecl { pkg-config ]; - meta = { + meta = with lib; { description = "PHP bindings to RRD tool system"; - license = lib.licenses.bsd0; + license = licenses.bsd0; homepage = "https://github.com/php/pecl-processing-rrd"; - maintainers = lib.teams.wdz.members; + maintainers = teams.wdz.members; }; } diff --git a/pkgs/development/php-packages/snuffleupagus/default.nix b/pkgs/development/php-packages/snuffleupagus/default.nix index 8a2e5a45f7f171..b72bf6c00891c6 100644 --- a/pkgs/development/php-packages/snuffleupagus/default.nix +++ b/pkgs/development/php-packages/snuffleupagus/default.nix @@ -38,10 +38,10 @@ buildPecl rec { ./configure --enable-snuffleupagus ''; - meta = { + meta = with lib; { description = "Security module for php7 and php8 - Killing bugclasses and virtual-patching the rest!"; homepage = "https://github.com/jvoisin/snuffleupagus"; - license = lib.licenses.lgpl3Only; - maintainers = lib.teams.php.members ++ [ lib.maintainers.zupo ]; + license = licenses.lgpl3Only; + maintainers = teams.php.members ++ [ maintainers.zupo ]; }; } diff --git a/pkgs/development/php-packages/yaml/default.nix b/pkgs/development/php-packages/yaml/default.nix index fecc29777ad767..7f2fb488fd1c48 100644 --- a/pkgs/development/php-packages/yaml/default.nix +++ b/pkgs/development/php-packages/yaml/default.nix @@ -16,10 +16,10 @@ buildPecl { libyaml ]; - meta = { + meta = with lib; { description = "YAML-1.1 parser and emitter"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/php/pecl-file_formats-yaml"; - maintainers = lib.teams.php.members; + maintainers = teams.php.members; }; } diff --git a/pkgs/development/python-modules/a2wsgi/default.nix b/pkgs/development/python-modules/a2wsgi/default.nix index 08460911bbecd6..641105645937d7 100644 --- a/pkgs/development/python-modules/a2wsgi/default.nix +++ b/pkgs/development/python-modules/a2wsgi/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { starlette ]; - meta = { + meta = with lib; { description = "Convert WSGI app to ASGI app or ASGI app to WSGI app"; homepage = "https://github.com/abersheeran/a2wsgi"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ SuperSandro2000 ]; + license = licenses.asl20; + maintainers = with maintainers; [ SuperSandro2000 ]; }; } diff --git a/pkgs/development/python-modules/abjad/default.nix b/pkgs/development/python-modules/abjad/default.nix index a6af83806afe63..3f6107d57c00b7 100644 --- a/pkgs/development/python-modules/abjad/default.nix +++ b/pkgs/development/python-modules/abjad/default.nix @@ -50,7 +50,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "abjad" ]; - meta = { + meta = with lib; { description = "GNU LilyPond wrapper for Python"; longDescription = '' Abjad helps composers build up complex pieces of music notation in @@ -61,9 +61,9 @@ buildPythonPackage rec { Abjad wraps the LilyPond music notation package, you can use Abjad to control the typographic detail of symbols on the page. ''; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://abjad.github.io/"; changelog = "https://abjad.github.io/appendices/changes.html"; - maintainers = [ lib.maintainers.davisrichard437 ]; + maintainers = [ maintainers.davisrichard437 ]; }; } diff --git a/pkgs/development/python-modules/aerosandbox/default.nix b/pkgs/development/python-modules/aerosandbox/default.nix index 17bf016260673d..6ea39aff1f46dd 100644 --- a/pkgs/development/python-modules/aerosandbox/default.nix +++ b/pkgs/development/python-modules/aerosandbox/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aerosandbox" ]; - meta = { + meta = with lib; { description = "Aircraft design optimization made fast through modern automatic differentiation"; homepage = "https://peterdsharpe.github.io/AeroSandbox"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/aggregate6/default.nix b/pkgs/development/python-modules/aggregate6/default.nix index 2be5f07a85ac9d..e5032e8f0585a7 100644 --- a/pkgs/development/python-modules/aggregate6/default.nix +++ b/pkgs/development/python-modules/aggregate6/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aggregate6" ]; - meta = { + meta = with lib; { description = "IPv4 and IPv6 prefix aggregation tool"; mainProgram = "aggregate6"; homepage = "https://github.com/job/aggregate6"; - license = with lib.licenses; [ bsd2 ]; - maintainers = lib.teams.wdz.members ++ (with lib.maintainers; [ marcel ]); + license = with licenses; [ bsd2 ]; + maintainers = teams.wdz.members ++ (with maintainers; [ marcel ]); }; } diff --git a/pkgs/development/python-modules/aigpy/default.nix b/pkgs/development/python-modules/aigpy/default.nix index fb331e1633f4f7..69f8e6dbaecac6 100644 --- a/pkgs/development/python-modules/aigpy/default.nix +++ b/pkgs/development/python-modules/aigpy/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pydub ]; - meta = { + meta = with lib; { homepage = "https://github.com/AIGMix/AIGPY"; description = "Python library with miscellaneous tools"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.misterio77 ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = [ maintainers.misterio77 ]; + platforms = platforms.all; }; } diff --git a/pkgs/development/python-modules/aioairctrl/default.nix b/pkgs/development/python-modules/aioairctrl/default.nix index 4a1de2c77dfba0..c9c4f3e8480c7a 100644 --- a/pkgs/development/python-modules/aioairctrl/default.nix +++ b/pkgs/development/python-modules/aioairctrl/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = { + meta = with lib; { description = "Library for controlling Philips air purifiers (using encrypted CoAP)"; homepage = "https://github.com/kongo09/aioairctrl"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ justinas ]; + license = licenses.mit; + maintainers = with maintainers; [ justinas ]; }; } diff --git a/pkgs/development/python-modules/aiohasupervisor/default.nix b/pkgs/development/python-modules/aiohasupervisor/default.nix index 500f3a84841894..600b3976758c22 100644 --- a/pkgs/development/python-modules/aiohasupervisor/default.nix +++ b/pkgs/development/python-modules/aiohasupervisor/default.nix @@ -55,10 +55,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiohasupervisor" ]; - meta = { + meta = with lib; { description = "Client for Home Assistant Supervisor"; homepage = "https://github.com/home-assistant-libs/python-supervisor-client"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.asl20; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/aioopenssl/default.nix b/pkgs/development/python-modules/aioopenssl/default.nix index 1268a44732bb9f..891548ea7b3f84 100644 --- a/pkgs/development/python-modules/aioopenssl/default.nix +++ b/pkgs/development/python-modules/aioopenssl/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "TLS-capable transport using OpenSSL for asyncio"; homepage = "https://github.com/horazont/aioopenssl"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.asl20; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/aiosasl/default.nix b/pkgs/development/python-modules/aiosasl/default.nix index 484d24e7d862ec..dd4f21ff951e23 100644 --- a/pkgs/development/python-modules/aiosasl/default.nix +++ b/pkgs/development/python-modules/aiosasl/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiosasl" ]; - meta = { + meta = with lib; { description = "Asyncio SASL library"; homepage = "https://github.com/horazont/aiosasl"; - license = lib.licenses.lgpl3Plus; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.lgpl3Plus; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/androguard/default.nix b/pkgs/development/python-modules/androguard/default.nix index a688939a84f288..2b465cfdbb0b0c 100644 --- a/pkgs/development/python-modules/androguard/default.nix +++ b/pkgs/development/python-modules/androguard/default.nix @@ -82,10 +82,10 @@ buildPythonPackage rec { makeWrapperArgs+=("''${qtWrapperArgs[@]}") ''; - meta = { + meta = with lib; { description = "Tool and Python library to interact with Android Files"; homepage = "https://github.com/androguard/androguard"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ pmiddend ]; + license = licenses.asl20; + maintainers = with maintainers; [ pmiddend ]; }; } diff --git a/pkgs/development/python-modules/anyqt/default.nix b/pkgs/development/python-modules/anyqt/default.nix index f1e88064955dda..4254a7f9b2869b 100644 --- a/pkgs/development/python-modules/anyqt/default.nix +++ b/pkgs/development/python-modules/anyqt/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "PyQt/PySide compatibility layer"; homepage = "https://github.com/ales-erjavec/anyqt"; - license = [ lib.licenses.gpl3Only ]; - maintainers = [ lib.maintainers.lucasew ]; + license = [ licenses.gpl3Only ]; + maintainers = [ maintainers.lucasew ]; }; } diff --git a/pkgs/development/python-modules/apeye-core/default.nix b/pkgs/development/python-modules/apeye-core/default.nix index d86560254517aa..0d5dbfde62668f 100644 --- a/pkgs/development/python-modules/apeye-core/default.nix +++ b/pkgs/development/python-modules/apeye-core/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { idna ]; - meta = { + meta = with lib; { description = "Core (offline) functionality for the apeye library."; homepage = "https://github.com/domdfcoding/apyey-core"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tyberius-prime ]; + license = licenses.mit; + maintainers = with maintainers; [ tyberius-prime ]; }; } diff --git a/pkgs/development/python-modules/appnope/default.nix b/pkgs/development/python-modules/appnope/default.nix index 19a9263a0697f2..d386906fd0ef34 100644 --- a/pkgs/development/python-modules/appnope/default.nix +++ b/pkgs/development/python-modules/appnope/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { checkInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Disable App Nap on macOS"; homepage = "https://github.com/minrk/appnope"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ OPNA2608 ]; + license = licenses.bsd3; + maintainers = with maintainers; [ OPNA2608 ]; # Not Darwin-specific because dummy fallback may be used cross-platform }; } diff --git a/pkgs/development/python-modules/approval-utilities/default.nix b/pkgs/development/python-modules/approval-utilities/default.nix index c7e7157539b4a7..6941a766968fcb 100644 --- a/pkgs/development/python-modules/approval-utilities/default.nix +++ b/pkgs/development/python-modules/approval-utilities/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # upstream has no tests doCheck = false; - meta = { + meta = with lib; { description = "Utilities for your production code that work well with approvaltests"; homepage = "https://github.com/approvals/ApprovalTests.Python"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.asl20; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/apted/default.nix b/pkgs/development/python-modules/apted/default.nix index d2f93ddd66162e..801a043c6bbbf8 100644 --- a/pkgs/development/python-modules/apted/default.nix +++ b/pkgs/development/python-modules/apted/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "apted" ]; nativeCheckInputs = [ unittestCheckHook ]; - meta = { + meta = with lib; { description = "APTED algorithm for the Tree Edit Distance"; homepage = "https://github.com/JoaoFelipe/apted"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.McSinyx ]; + license = licenses.mit; + maintainers = [ maintainers.McSinyx ]; }; } diff --git a/pkgs/development/python-modules/arrayqueues/default.nix b/pkgs/development/python-modules/arrayqueues/default.nix index a2bd69bf3a19ab..78a9f002ada0ae 100644 --- a/pkgs/development/python-modules/arrayqueues/default.nix +++ b/pkgs/development/python-modules/arrayqueues/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ numpy ]; - meta = { + meta = with lib; { homepage = "https://github.com/portugueslab/arrayqueues"; description = "Multiprocessing queues for numpy arrays using shared memory"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tbenst ]; + license = licenses.mit; + maintainers = with maintainers; [ tbenst ]; }; } diff --git a/pkgs/development/python-modules/asks/default.nix b/pkgs/development/python-modules/asks/default.nix index 1bab5a583c1ae4..0f8c91651d6af2 100644 --- a/pkgs/development/python-modules/asks/default.nix +++ b/pkgs/development/python-modules/asks/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "asks" ]; - meta = { + meta = with lib; { description = "Async requests-like HTTP library for Python"; homepage = "https://github.com/theelous3/asks"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/asn1crypto/default.nix b/pkgs/development/python-modules/asn1crypto/default.nix index 4fb33a866a609d..7e8728bf3ffcb2 100644 --- a/pkgs/development/python-modules/asn1crypto/default.nix +++ b/pkgs/development/python-modules/asn1crypto/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Fast ASN.1 parser and serializer with definitions for private keys, public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, PKCS#8, PKCS#12, PKCS#5, X.509 and TSP"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/wbond/asn1crypto"; - maintainers = with lib.maintainers; [ dotlambda ]; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/asteroid-filterbanks/default.nix b/pkgs/development/python-modules/asteroid-filterbanks/default.nix index 43c72c146c3ce7..1b7485337d7525 100644 --- a/pkgs/development/python-modules/asteroid-filterbanks/default.nix +++ b/pkgs/development/python-modules/asteroid-filterbanks/default.nix @@ -77,10 +77,10 @@ buildPythonPackage { "test_fb_def_and_forward_lowdim" ]; - meta = { + meta = with lib; { description = "PyTorch-based audio source separation toolkit for researchers"; homepage = "https://github.com/asteroid-team/asteroid-filterbanks"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ matthewcroughan ]; + license = licenses.mit; + maintainers = with maintainers; [ matthewcroughan ]; }; } diff --git a/pkgs/development/python-modules/astropy/default.nix b/pkgs/development/python-modules/astropy/default.nix index 4f5586f9aa21be..07a8b4a173a32c 100644 --- a/pkgs/development/python-modules/astropy/default.nix +++ b/pkgs/development/python-modules/astropy/default.nix @@ -162,12 +162,12 @@ buildPythonPackage rec { "TestStandardProfile.test_main" ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ "test_sidereal_lat_independent" ]; - meta = { + meta = with lib; { description = "Astronomy/Astrophysics library for Python"; homepage = "https://www.astropy.org"; - license = lib.licenses.bsd3; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + platforms = platforms.all; + maintainers = with maintainers; [ kentjames doronbehar ]; diff --git a/pkgs/development/python-modules/async-cache/default.nix b/pkgs/development/python-modules/async-cache/default.nix index b6cdfbf3edc714..6f1405e6d38b83 100644 --- a/pkgs/development/python-modules/async-cache/default.nix +++ b/pkgs/development/python-modules/async-cache/default.nix @@ -24,10 +24,10 @@ buildPythonPackage { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Caching solution for asyncio"; homepage = "https://github.com/iamsinghrajat/async-cache"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.lukegb ]; + license = licenses.mit; + maintainers = [ maintainers.lukegb ]; }; } diff --git a/pkgs/development/python-modules/attr/default.nix b/pkgs/development/python-modules/attr/default.nix index 5a6400d3e5e3a5..663d9dd29719ba 100644 --- a/pkgs/development/python-modules/attr/default.nix +++ b/pkgs/development/python-modules/attr/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = { + meta = with lib; { description = "Simple decorator to set attributes of target function or class in a DRY way."; homepage = "https://github.com/denis-ryzhkov/attr"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pyrox0 ]; + license = licenses.mit; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/development/python-modules/autograd-gamma/default.nix b/pkgs/development/python-modules/autograd-gamma/default.nix index 0e38848d6f7d49..9fd2e422c45691 100644 --- a/pkgs/development/python-modules/autograd-gamma/default.nix +++ b/pkgs/development/python-modules/autograd-gamma/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { checkInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { homepage = "https://github.com/CamDavidsonPilon/autograd-gamma"; description = "Autograd compatible approximations to the gamma family of functions"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ swflint ]; + license = licenses.mit; + maintainers = with maintainers; [ swflint ]; }; } diff --git a/pkgs/development/python-modules/automower-ble/default.nix b/pkgs/development/python-modules/automower-ble/default.nix index 7ece75e25122bc..07363dbcd77d95 100644 --- a/pkgs/development/python-modules/automower-ble/default.nix +++ b/pkgs/development/python-modules/automower-ble/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "automower_ble" ]; - meta = { + meta = with lib; { description = "Module to connect to Husqvarna Automower Connect"; homepage = "https://github.com/alistair23/AutoMower-BLE"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/autopxd2/default.nix b/pkgs/development/python-modules/autopxd2/default.nix index 4b9717679247d6..28f6e27cf6a2c6 100644 --- a/pkgs/development/python-modules/autopxd2/default.nix +++ b/pkgs/development/python-modules/autopxd2/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { "test/" ]; - meta = { + meta = with lib; { homepage = "https://github.com/elijahr/python-autopxd2"; mainProgram = "autopxd"; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ bot-wxt1221 ]; + license = licenses.mit; description = "Generates .pxd files automatically from .h files"; }; } diff --git a/pkgs/development/python-modules/aw-core/default.nix b/pkgs/development/python-modules/aw-core/default.nix index 591c862597d528..d33db40ab09305 100644 --- a/pkgs/development/python-modules/aw-core/default.nix +++ b/pkgs/development/python-modules/aw-core/default.nix @@ -64,11 +64,11 @@ buildPythonPackage rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = { + meta = with lib; { description = "Core library for ActivityWatch"; mainProgram = "aw-cli"; homepage = "https://github.com/ActivityWatch/aw-core"; - maintainers = with lib.maintainers; [ huantian ]; - license = lib.licenses.mpl20; + maintainers = with maintainers; [ huantian ]; + license = licenses.mpl20; }; } diff --git a/pkgs/development/python-modules/awkward-cpp/default.nix b/pkgs/development/python-modules/awkward-cpp/default.nix index 0063cd3f851f89..eafc54e98dc094 100644 --- a/pkgs/development/python-modules/awkward-cpp/default.nix +++ b/pkgs/development/python-modules/awkward-cpp/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "awkward_cpp" ]; - meta = { + meta = with lib; { description = "CPU kernels and compiled extensions for Awkward Array"; homepage = "https://github.com/scikit-hep/awkward"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ veprbl ]; + license = licenses.bsd3; + maintainers = with maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/awkward-pandas/default.nix b/pkgs/development/python-modules/awkward-pandas/default.nix index fca22d234dee34..72ec090f01a647 100644 --- a/pkgs/development/python-modules/awkward-pandas/default.nix +++ b/pkgs/development/python-modules/awkward-pandas/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { # There are no tests in the Pypi archive doCheck = false; - meta = { + meta = with lib; { description = "Awkward Array Pandas Extension"; homepage = "https://pypi.org/project/awkward-pandas/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.bsd3; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/aws-error-utils/default.nix b/pkgs/development/python-modules/aws-error-utils/default.nix index ed4de1388093a6..e3707ba8128a56 100644 --- a/pkgs/development/python-modules/aws-error-utils/default.nix +++ b/pkgs/development/python-modules/aws-error-utils/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { "aws_error_utils" ]; - meta = { + meta = with lib; { description = "Error-handling functions for boto3/botocore"; homepage = "https://pypi.org/project/aws-error-utils/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ cterence ]; + license = licenses.asl20; + maintainers = with maintainers; [ cterence ]; }; } diff --git a/pkgs/development/python-modules/aws-sso-lib/default.nix b/pkgs/development/python-modules/aws-sso-lib/default.nix index 21afcf8aab8f05..d56737d50724e3 100644 --- a/pkgs/development/python-modules/aws-sso-lib/default.nix +++ b/pkgs/development/python-modules/aws-sso-lib/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { "aws_sso_lib" ]; - meta = { + meta = with lib; { description = "Library to make AWS SSO easier"; homepage = "https://pypi.org/project/aws-sso-lib/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ cterence ]; + license = licenses.asl20; + maintainers = with maintainers; [ cterence ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-logic/default.nix b/pkgs/development/python-modules/azure-mgmt-logic/default.nix index 93978474cb935f..cce0f7c67a24bb 100644 --- a/pkgs/development/python-modules/azure-mgmt-logic/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-logic/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.logic" ]; - meta = { + meta = with lib; { description = "This is the Microsoft Azure Logic Apps Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ maxwilson ]; + license = licenses.mit; + maintainers = with maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-mysqlflexibleservers/default.nix b/pkgs/development/python-modules/azure-mgmt-mysqlflexibleservers/default.nix index b6c49b3b6c8865..b1c3d741880664 100644 --- a/pkgs/development/python-modules/azure-mgmt-mysqlflexibleservers/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-mysqlflexibleservers/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { "azure.mgmt.mysqlflexibleservers" ]; - meta = { + meta = with lib; { description = "Microsoft Azure Mysqlflexibleservers Management Client Library for Python"; homepage = "https://pypi.org/project/azure-mgmt-mysqlflexibleservers/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + license = licenses.mit; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-postgresqlflexibleservers/default.nix b/pkgs/development/python-modules/azure-mgmt-postgresqlflexibleservers/default.nix index 1fac1a7bfaffff..e39675f4c2c089 100644 --- a/pkgs/development/python-modules/azure-mgmt-postgresqlflexibleservers/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-postgresqlflexibleservers/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { "azure.mgmt.postgresqlflexibleservers" ]; - meta = { + meta = with lib; { description = "Microsoft Azure Postgresqlflexibleservers Management Client Library for Python"; homepage = "https://pypi.org/project/azure-mgmt-postgresqlflexibleservers/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + license = licenses.mit; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-relay/default.nix b/pkgs/development/python-modules/azure-mgmt-relay/default.nix index 30837b47b0d49d..a01f57711e20b0 100644 --- a/pkgs/development/python-modules/azure-mgmt-relay/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-relay/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "azure.mgmt.relay" ]; - meta = { + meta = with lib; { description = "This is the Microsoft Azure Relay Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ maxwilson ]; + license = licenses.mit; + maintainers = with maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-reservations/default.nix b/pkgs/development/python-modules/azure-mgmt-reservations/default.nix index d88fccddc20cc5..c22b4466168f08 100644 --- a/pkgs/development/python-modules/azure-mgmt-reservations/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-reservations/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { # has no tests doCheck = false; - meta = { + meta = with lib; { description = "This is the Microsoft Azure Reservations Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ maxwilson ]; + license = licenses.mit; + maintainers = with maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix b/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix index 417528219abf68..e5dd4fafb3735e 100644 --- a/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "azure.mgmt.servicebus" ]; - meta = { + meta = with lib; { description = "This is the Microsoft Azure Service Bus Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ maxwilson ]; + license = licenses.mit; + maintainers = with maintainers; [ maxwilson ]; }; } diff --git a/pkgs/development/python-modules/azure-storage-file-datalake/default.nix b/pkgs/development/python-modules/azure-storage-file-datalake/default.nix index 5949c951216c84..d837aa473c1f74 100644 --- a/pkgs/development/python-modules/azure-storage-file-datalake/default.nix +++ b/pkgs/development/python-modules/azure-storage-file-datalake/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { # require devtools_testutils which is a internal package for azure-sdk doCheck = false; - meta = { + meta = with lib; { description = "Microsoft Azure File DataLake Storage Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-file-datalake"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + license = licenses.mit; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/baize/default.nix b/pkgs/development/python-modules/baize/default.nix index f26314e744408a..a8ceed1d83bae1 100644 --- a/pkgs/development/python-modules/baize/default.nix +++ b/pkgs/development/python-modules/baize/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { "test_request_response" ]; - meta = { + meta = with lib; { description = "Powerful and exquisite WSGI/ASGI framework/toolkit"; homepage = "https://github.com/abersheeran/baize"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ dotlambda bot-wxt1221 ]; diff --git a/pkgs/development/python-modules/bandcamp-api/default.nix b/pkgs/development/python-modules/bandcamp-api/default.nix index c1feeae7ffe135..f4651341d422fe 100644 --- a/pkgs/development/python-modules/bandcamp-api/default.nix +++ b/pkgs/development/python-modules/bandcamp-api/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { # upstream has no tests doCheck = false; - meta = { + meta = with lib; { description = "Obtains information from bandcamp.com"; homepage = "https://github.com/RustyRin/bandcamp-api"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/basiciw/default.nix b/pkgs/development/python-modules/basiciw/default.nix index 45b1d5407db485..f149bc52580e22 100644 --- a/pkgs/development/python-modules/basiciw/default.nix +++ b/pkgs/development/python-modules/basiciw/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { buildInputs = [ gcc ]; propagatedBuildInputs = [ wirelesstools ]; - meta = { + meta = with lib; { description = "Get info about wireless interfaces using libiw"; homepage = "https://github.com/enkore/basiciw"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2; + platforms = platforms.linux; + license = licenses.gpl2; }; } diff --git a/pkgs/development/python-modules/baycomp/default.nix b/pkgs/development/python-modules/baycomp/default.nix index 34a7a81333e861..bcec293f943625 100644 --- a/pkgs/development/python-modules/baycomp/default.nix +++ b/pkgs/development/python-modules/baycomp/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { nativeCheckInputs = [ unittestCheckHook ]; pythonImportsCheck = [ "baycomp" ]; - meta = { + meta = with lib; { description = "Library for Bayesian comparison of classifiers"; homepage = "https://github.com/janezd/baycomp"; - license = [ lib.licenses.mit ]; - maintainers = [ lib.maintainers.lucasew ]; + license = [ licenses.mit ]; + maintainers = [ maintainers.lucasew ]; }; } diff --git a/pkgs/development/python-modules/bdffont/default.nix b/pkgs/development/python-modules/bdffont/default.nix index c4ac42a60452f0..74f83d4b0cfc61 100644 --- a/pkgs/development/python-modules/bdffont/default.nix +++ b/pkgs/development/python-modules/bdffont/default.nix @@ -29,12 +29,12 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://github.com/TakWolf/bdffont"; description = "A library for manipulating Glyph Bitmap Distribution Format (BDF) Fonts"; - platforms = lib.platforms.all; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + platforms = platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ TakWolf h7x4 ]; diff --git a/pkgs/development/python-modules/beaker/default.nix b/pkgs/development/python-modules/beaker/default.nix index 2bfc919ecb5f35..8faa2c57941f6c 100644 --- a/pkgs/development/python-modules/beaker/default.nix +++ b/pkgs/development/python-modules/beaker/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { "--ignore-glob='tests/test_managers/test_ext_*'" ]; - meta = { + meta = with lib; { description = "Session and Caching library with WSGI Middleware"; homepage = "https://github.com/bbangert/beaker"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ domenkozar ]; + license = licenses.bsd3; + maintainers = with maintainers; [ domenkozar ]; knownVulnerabilities = [ "CVE-2013-7489" ]; }; } diff --git a/pkgs/development/python-modules/beniget/default.nix b/pkgs/development/python-modules/beniget/default.nix index 845a43780cb6f7..f9e28203610889 100644 --- a/pkgs/development/python-modules/beniget/default.nix +++ b/pkgs/development/python-modules/beniget/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Extract semantic information about static Python code"; homepage = "https://github.com/serge-sans-paille/beniget"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + license = licenses.bsd3; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/betacode/default.nix b/pkgs/development/python-modules/betacode/default.nix index 24931f25029cba..195f9dd9952e92 100644 --- a/pkgs/development/python-modules/betacode/default.nix +++ b/pkgs/development/python-modules/betacode/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # setup.py uses a python3 os.path.join disabled = !isPy3k; propagatedBuildInputs = [ pygtrie ]; - meta = { + meta = with lib; { homepage = "https://github.com/matgrioni/betacode"; description = "Small python package to flexibly convert from betacode to unicode and back"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ kmein ]; + license = licenses.mit; + maintainers = with maintainers; [ kmein ]; }; } diff --git a/pkgs/development/python-modules/better-exceptions/default.nix b/pkgs/development/python-modules/better-exceptions/default.nix index 622292c9bf408a..5521f52615c6c1 100644 --- a/pkgs/development/python-modules/better-exceptions/default.nix +++ b/pkgs/development/python-modules/better-exceptions/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { # After disabling and running the build, no tests are collected. doCheck = false; - meta = { + meta = with lib; { description = "Pretty and more helpful exceptions in Python, automatically"; homepage = "https://github.com/qix-/better-exceptions"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.alex-nt ]; + license = licenses.mit; + maintainers = [ maintainers.alex-nt ]; }; } diff --git a/pkgs/development/python-modules/bidsschematools/default.nix b/pkgs/development/python-modules/bidsschematools/default.nix index d9e75b998db737..e8673f11f60a03 100644 --- a/pkgs/development/python-modules/bidsschematools/default.nix +++ b/pkgs/development/python-modules/bidsschematools/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { "bidsschematools" ]; - meta = { + meta = with lib; { description = "Python tools for working with the BIDS schema"; homepage = "https://github.com/bids-standard/bids-specification/tree/master/tools/schemacode"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ wegank ]; + license = licenses.mit; + maintainers = with maintainers; [ wegank ]; }; } diff --git a/pkgs/development/python-modules/biom-format/default.nix b/pkgs/development/python-modules/biom-format/default.nix index e03df35b926b47..4cdf93e150cb9f 100644 --- a/pkgs/development/python-modules/biom-format/default.nix +++ b/pkgs/development/python-modules/biom-format/default.nix @@ -52,10 +52,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "biom" ]; - meta = { + meta = with lib; { homepage = "http://biom-format.org/"; description = "Biological Observation Matrix (BIOM) format"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ tomasajt ]; + license = licenses.bsd3; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/development/python-modules/biopython/default.nix b/pkgs/development/python-modules/biopython/default.nix index 051f66845dec06..287c67eca07b31 100644 --- a/pkgs/development/python-modules/biopython/default.nix +++ b/pkgs/development/python-modules/biopython/default.nix @@ -41,7 +41,7 @@ buildPythonPackage rec { runHook postCheck ''; - meta = { + meta = with lib; { description = "Python library for bioinformatics"; longDescription = '' Biopython is a set of freely available tools for biological computation @@ -51,7 +51,7 @@ buildPythonPackage rec { bioinformatics. ''; homepage = "https://biopython.org/wiki/Documentation"; - maintainers = with lib.maintainers; [ luispedro ]; - license = lib.licenses.bsd3; + maintainers = with maintainers; [ luispedro ]; + license = licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/blinkstick/default.nix b/pkgs/development/python-modules/blinkstick/default.nix index 6e170382a01bd3..05cc1682b920ff 100644 --- a/pkgs/development/python-modules/blinkstick/default.nix +++ b/pkgs/development/python-modules/blinkstick/default.nix @@ -23,12 +23,12 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "blinkstick" ]; - meta = { + meta = with lib; { description = "Python package to control BlinkStick USB devices"; mainProgram = "blinkstick"; homepage = "https://github.com/arvydas/blinkstick-python"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ np perstark ]; diff --git a/pkgs/development/python-modules/blivet/default.nix b/pkgs/development/python-modules/blivet/default.nix index 8740b3f213ee63..e81e4584294ae3 100644 --- a/pkgs/development/python-modules/blivet/default.nix +++ b/pkgs/development/python-modules/blivet/default.nix @@ -96,14 +96,14 @@ buildPythonPackage rec { # dontUseSetuptoolsCheck = true; - meta = { + meta = with lib; { description = "Python module for system storage configuration"; homepage = "https://github.com/storaged-project/blivet"; license = [ - lib.licenses.gpl2Plus - lib.licenses.lgpl2Plus + licenses.gpl2Plus + licenses.lgpl2Plus ]; - maintainers = with lib.maintainers; [ cybershadow ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ cybershadow ]; + platforms = platforms.linux; }; } diff --git a/pkgs/development/python-modules/bluecurrent-api/default.nix b/pkgs/development/python-modules/bluecurrent-api/default.nix index a42998c1d3188f..255f45611130b1 100644 --- a/pkgs/development/python-modules/bluecurrent-api/default.nix +++ b/pkgs/development/python-modules/bluecurrent-api/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = { + meta = with lib; { description = "Wrapper for the Blue Current websocket api"; homepage = "https://github.com/bluecurrent/HomeAssistantAPI"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/blurhash-python/default.nix b/pkgs/development/python-modules/blurhash-python/default.nix index e8acda803941c8..dadc661eb25a64 100644 --- a/pkgs/development/python-modules/blurhash-python/default.nix +++ b/pkgs/development/python-modules/blurhash-python/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Compact representation of a placeholder for an image"; homepage = "https://github.com/woltapp/blurhash-python"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/bokeh-sampledata/default.nix b/pkgs/development/python-modules/bokeh-sampledata/default.nix index e4bba2b69f1cf9..859ac9a87905d6 100644 --- a/pkgs/development/python-modules/bokeh-sampledata/default.nix +++ b/pkgs/development/python-modules/bokeh-sampledata/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { "bokeh_sampledata" ]; - meta = { + meta = with lib; { description = "Sample datasets for Bokeh examples"; homepage = "https://pypi.org/project/bokeh-sampledata"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.bsd3; + maintainers = with maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/bokeh/default.nix b/pkgs/development/python-modules/bokeh/default.nix index 9ed21c339dee42..cf5bb43cafaa12 100644 --- a/pkgs/development/python-modules/bokeh/default.nix +++ b/pkgs/development/python-modules/bokeh/default.nix @@ -129,11 +129,11 @@ buildPythonPackage rec { cp -rv ''${src_test}/tests/* ./tests/ ''; - meta = { + meta = with lib; { description = "Statistical and novel interactive HTML plots for Python"; mainProgram = "bokeh"; homepage = "https://github.com/bokeh/bokeh"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ orivej ]; + license = licenses.bsd3; + maintainers = with maintainers; [ orivej ]; }; } diff --git a/pkgs/development/python-modules/booleanoperations/default.nix b/pkgs/development/python-modules/booleanoperations/default.nix index 9ade956db68881..bf2803e57ddca3 100644 --- a/pkgs/development/python-modules/booleanoperations/default.nix +++ b/pkgs/development/python-modules/booleanoperations/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = { + meta = with lib; { description = "Boolean operations on paths"; homepage = "https://github.com/typemytype/booleanOperations"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.sternenseemann ]; + license = licenses.mit; + maintainers = [ maintainers.sternenseemann ]; }; } diff --git a/pkgs/development/python-modules/bpylist2/default.nix b/pkgs/development/python-modules/bpylist2/default.nix index 7becd01e194bf3..c7d09bc8f08f41 100644 --- a/pkgs/development/python-modules/bpylist2/default.nix +++ b/pkgs/development/python-modules/bpylist2/default.nix @@ -30,10 +30,10 @@ buildPythonPackage { --replace-fail "--mypy" "" ''; - meta = { + meta = with lib; { description = "Parse and Generate binary plists and NSKeyedArchiver archives"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/parabolala/bpylist2"; - maintainers = with lib.maintainers; [ sigmanificient ]; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/bqplot/default.nix b/pkgs/development/python-modules/bqplot/default.nix index cd8495a818e6f2..6db72aac8d6e80 100644 --- a/pkgs/development/python-modules/bqplot/default.nix +++ b/pkgs/development/python-modules/bqplot/default.nix @@ -55,10 +55,10 @@ buildPythonPackage rec { "bqplot.pyplot" ]; - meta = { + meta = with lib; { description = "2D plotting library for Jupyter based on Grammar of Graphics"; homepage = "https://bqplot.github.io/bqplot"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ bcdarwin ]; + license = licenses.asl20; + maintainers = with maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/bqscales/default.nix b/pkgs/development/python-modules/bqscales/default.nix index 2f1a0b0241d0ec..8caf632b852285 100644 --- a/pkgs/development/python-modules/bqscales/default.nix +++ b/pkgs/development/python-modules/bqscales/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bqscales" ]; - meta = { + meta = with lib; { description = "Grammar of Graphics scales for bqplot and other Jupyter widgets libraries"; homepage = "https://github.com/bqplot/bqscales"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ bcdarwin ]; + license = licenses.asl20; + maintainers = with maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/breathe/default.nix b/pkgs/development/python-modules/breathe/default.nix index 3a39611873ce50..f6971cfd698665 100644 --- a/pkgs/development/python-modules/breathe/default.nix +++ b/pkgs/development/python-modules/breathe/default.nix @@ -53,11 +53,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "breathe" ]; - meta = { + meta = with lib; { description = "Sphinx Doxygen renderer"; mainProgram = "breathe-apidoc"; homepage = "https://github.com/breathe-doc/breathe"; - license = lib.licenses.bsd3; - maintainers = lib.teams.sphinx.members; + license = licenses.bsd3; + maintainers = teams.sphinx.members; }; } diff --git a/pkgs/development/python-modules/brian2/default.nix b/pkgs/development/python-modules/brian2/default.nix index 24b3bf9e6354b0..ad952100099367 100644 --- a/pkgs/development/python-modules/brian2/default.nix +++ b/pkgs/development/python-modules/brian2/default.nix @@ -69,10 +69,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = { + meta = with lib; { description = "Clock-driven simulator for spiking neural networks"; homepage = "https://briansimulator.org/"; - license = lib.licenses.cecill21; - maintainers = with lib.maintainers; [ jiegec ]; + license = licenses.cecill21; + maintainers = with maintainers; [ jiegec ]; }; } diff --git a/pkgs/development/python-modules/broadbean/default.nix b/pkgs/development/python-modules/broadbean/default.nix index 93eca748c521f9..0b740248d4510a 100644 --- a/pkgs/development/python-modules/broadbean/default.nix +++ b/pkgs/development/python-modules/broadbean/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "broadbean" ]; - meta = { + meta = with lib; { homepage = "https://qcodes.github.io/broadbean"; description = "Library for making pulses that can be leveraged with QCoDeS"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ evilmav ]; + license = licenses.mit; + maintainers = with maintainers; [ evilmav ]; }; } diff --git a/pkgs/development/python-modules/brunt/default.nix b/pkgs/development/python-modules/brunt/default.nix index 232dae5cf1d342..73de18879b50aa 100644 --- a/pkgs/development/python-modules/brunt/default.nix +++ b/pkgs/development/python-modules/brunt/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "brunt" ]; - meta = { + meta = with lib; { description = "Unofficial Python SDK for Brunt"; homepage = "https://github.com/eavanvalkenburg/brunt-api"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/bthomehub5-devicelist/default.nix b/pkgs/development/python-modules/bthomehub5-devicelist/default.nix index 2c4b9562c16b5d..71222f22c2f903 100644 --- a/pkgs/development/python-modules/bthomehub5-devicelist/default.nix +++ b/pkgs/development/python-modules/bthomehub5-devicelist/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "bthomehub5_devicelist" ]; - meta = { + meta = with lib; { description = "Returns a list of devices currently connected to a BT Home Hub 5"; homepage = "https://github.com/ahobsonsayers/bthomehub5-devicelist"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ pyrox0 ]; + license = licenses.bsd2; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/development/python-modules/bumpfontversion/default.nix b/pkgs/development/python-modules/bumpfontversion/default.nix index 7c0699bdd3c781..a1af28acf89274 100644 --- a/pkgs/development/python-modules/bumpfontversion/default.nix +++ b/pkgs/development/python-modules/bumpfontversion/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { bump2version ]; - meta = { + meta = with lib; { description = "Version-bump your font sources"; homepage = "https://github.com/simoncozens/bumpfontversion"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "bumpfontversion"; - maintainers = with lib.maintainers; [ jopejoe1 ]; + maintainers = with maintainers; [ jopejoe1 ]; }; } diff --git a/pkgs/development/python-modules/bz2file/default.nix b/pkgs/development/python-modules/bz2file/default.nix index bd8b79a9a13ef9..7b10c6eb9f17f4 100644 --- a/pkgs/development/python-modules/bz2file/default.nix +++ b/pkgs/development/python-modules/bz2file/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { doCheck = false; # The test module (test_bz2file) is not available - meta = { + meta = with lib; { description = "Bz2file is a Python library for reading and writing bzip2-compressed files"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ jyp ]; + license = licenses.asl20; + maintainers = with maintainers; [ jyp ]; }; } diff --git a/pkgs/development/python-modules/calver/default.nix b/pkgs/development/python-modules/calver/default.nix index 528632743605d0..5f7cfb416f2b33 100644 --- a/pkgs/development/python-modules/calver/default.nix +++ b/pkgs/development/python-modules/calver/default.nix @@ -38,11 +38,11 @@ let passthru.tests.calver = self.overridePythonAttrs { doCheck = true; }; - meta = { + meta = with lib; { description = "Setuptools extension for CalVer package versions"; homepage = "https://github.com/di/calver"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.asl20; + maintainers = with maintainers; [ dotlambda ]; }; }; in diff --git a/pkgs/development/python-modules/captum/default.nix b/pkgs/development/python-modules/captum/default.nix index e85901a65905d5..1ba9a7a8a170ac 100644 --- a/pkgs/development/python-modules/captum/default.nix +++ b/pkgs/development/python-modules/captum/default.nix @@ -80,10 +80,10 @@ buildPythonPackage rec { "test_softmax_classification_batch_zero_baseline" ]; - meta = { + meta = with lib; { description = "Model interpretability and understanding for PyTorch"; homepage = "https://github.com/pytorch/captum"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ drupol ]; + license = licenses.bsd3; + maintainers = with maintainers; [ drupol ]; }; } diff --git a/pkgs/development/python-modules/catppuccin/default.nix b/pkgs/development/python-modules/catppuccin/default.nix index 395dc456a5725d..ef72a0f87896f6 100644 --- a/pkgs/development/python-modules/catppuccin/default.nix +++ b/pkgs/development/python-modules/catppuccin/default.nix @@ -38,13 +38,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "catppuccin" ]; - meta = { + meta = with lib; { description = "Soothing pastel theme for Python"; homepage = "https://github.com/catppuccin/python"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ fufexan tomasajt ]; - license = lib.licenses.mit; + license = licenses.mit; }; } diff --git a/pkgs/development/python-modules/cgen/default.nix b/pkgs/development/python-modules/cgen/default.nix index 186422a49c34c8..b91b80dee9639f 100644 --- a/pkgs/development/python-modules/cgen/default.nix +++ b/pkgs/development/python-modules/cgen/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pytest ''; - meta = { + meta = with lib; { description = "C/C++ source generation from an AST"; homepage = "https://github.com/inducer/cgen"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/cgroup-utils/default.nix b/pkgs/development/python-modules/cgroup-utils/default.nix index 17047a3213893b..09c41c6601dd43 100644 --- a/pkgs/development/python-modules/cgroup-utils/default.nix +++ b/pkgs/development/python-modules/cgroup-utils/default.nix @@ -30,12 +30,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "cgutils" ]; - meta = { + meta = with lib; { description = "Utility tools for control groups of Linux"; homepage = "https://github.com/peo3/cgroup-utils"; mainProgram = "cgutil"; - maintainers = with lib.maintainers; [ layus ]; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Plus; + maintainers = with maintainers; [ layus ]; + platforms = platforms.linux; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/development/python-modules/character-encoding-utils/default.nix b/pkgs/development/python-modules/character-encoding-utils/default.nix index 83d01916d3c637..f465a1b26e9a39 100644 --- a/pkgs/development/python-modules/character-encoding-utils/default.nix +++ b/pkgs/development/python-modules/character-encoding-utils/default.nix @@ -29,12 +29,12 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://github.com/TakWolf/character-encoding-utils"; description = "Some character encoding utils"; - platforms = lib.platforms.all; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + platforms = platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ TakWolf h7x4 ]; diff --git a/pkgs/development/python-modules/citeproc-py/default.nix b/pkgs/development/python-modules/citeproc-py/default.nix index 6b0fed8e0fb8c2..c2828fc21988d2 100644 --- a/pkgs/development/python-modules/citeproc-py/default.nix +++ b/pkgs/development/python-modules/citeproc-py/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "citeproc" ]; - meta = { + meta = with lib; { homepage = "https://github.com/citeproc-py/citeproc-py"; description = "Citation Style Language (CSL) parser for Python"; mainProgram = "csl_unsorted"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ bcdarwin ]; + license = licenses.bsd2; + maintainers = with maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/cjkwrap/default.nix b/pkgs/development/python-modules/cjkwrap/default.nix index bf93185a122eba..f35780d8694294 100644 --- a/pkgs/development/python-modules/cjkwrap/default.nix +++ b/pkgs/development/python-modules/cjkwrap/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = { + meta = with lib; { description = "Library for wrapping and filling CJK text"; homepage = "https://f.gallai.re/cjkwrap"; - license = lib.licenses.lgpl3Plus; - maintainers = [ lib.maintainers.kaction ]; + license = licenses.lgpl3Plus; + maintainers = [ maintainers.kaction ]; }; } diff --git a/pkgs/development/python-modules/clarifai-protocol/default.nix b/pkgs/development/python-modules/clarifai-protocol/default.nix index 16efdbca2878cb..cd265ebba8da78 100644 --- a/pkgs/development/python-modules/clarifai-protocol/default.nix +++ b/pkgs/development/python-modules/clarifai-protocol/default.nix @@ -70,11 +70,11 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = { + meta = with lib; { description = "Clarifai Python Runner Protocol"; homepage = "https://pypi.org/project/clarifai-protocol"; - license = lib.licenses.asl20; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; - maintainers = with lib.maintainers; [ natsukium ]; + license = licenses.asl20; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; + maintainers = with maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/cmsis-svd/default.nix b/pkgs/development/python-modules/cmsis-svd/default.nix index b3197b6f89ef55..bd2eee40d8c74c 100644 --- a/pkgs/development/python-modules/cmsis-svd/default.nix +++ b/pkgs/development/python-modules/cmsis-svd/default.nix @@ -35,10 +35,10 @@ buildPythonPackage { "cmsis_svd.parser" ]; - meta = { + meta = with lib; { description = "CMSIS SVD parser"; homepage = "https://github.com/cmsis-svd/cmsis-svd"; - maintainers = [ lib.maintainers.dump_stack ]; - license = lib.licenses.asl20; + maintainers = [ maintainers.dump_stack ]; + license = licenses.asl20; }; } diff --git a/pkgs/development/python-modules/cobble/default.nix b/pkgs/development/python-modules/cobble/default.nix index efdbee17434288..2a8084429225a2 100644 --- a/pkgs/development/python-modules/cobble/default.nix +++ b/pkgs/development/python-modules/cobble/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { passthru.updateScripts = gitUpdater { }; - meta = { + meta = with lib; { description = "Create Python data objects"; homepage = "https://github.com/mwilliamson/python-cobble"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ drupol ]; + license = licenses.bsd2; + maintainers = with maintainers; [ drupol ]; }; } diff --git a/pkgs/development/python-modules/colbert-ai/default.nix b/pkgs/development/python-modules/colbert-ai/default.nix index a7d707d3837012..fa150da2c379eb 100644 --- a/pkgs/development/python-modules/colbert-ai/default.nix +++ b/pkgs/development/python-modules/colbert-ai/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { # There is no tests doCheck = false; - meta = { + meta = with lib; { description = "Fast and accurate retrieval model, enabling scalable BERT-based search over large text collections in tens of milliseconds"; homepage = "https://github.com/stanford-futuredata/ColBERT"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ bachp ]; }; diff --git a/pkgs/development/python-modules/color-operations/default.nix b/pkgs/development/python-modules/color-operations/default.nix index c664281eba04ff..f3ec39b4118677 100644 --- a/pkgs/development/python-modules/color-operations/default.nix +++ b/pkgs/development/python-modules/color-operations/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "color_operations" ]; - meta = { + meta = with lib; { description = "Apply basic color-oriented image operations. Fork of rio-color"; homepage = "https://github.com/vincentsarago/color-operations"; - license = lib.licenses.mit; - maintainers = lib.teams.geospatial.members; + license = licenses.mit; + maintainers = teams.geospatial.members; }; } diff --git a/pkgs/development/python-modules/colorspacious/default.nix b/pkgs/development/python-modules/colorspacious/default.nix index 53ca726357d4d7..15d9c8cdb30ab8 100644 --- a/pkgs/development/python-modules/colorspacious/default.nix +++ b/pkgs/development/python-modules/colorspacious/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ numpy ]; - meta = { + meta = with lib; { homepage = "https://github.com/njsmith/colorspacious"; description = "Powerful, accurate, and easy-to-use Python library for doing colorspace conversions"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tbenst ]; + license = licenses.mit; + maintainers = with maintainers; [ tbenst ]; }; } diff --git a/pkgs/development/python-modules/complycube/default.nix b/pkgs/development/python-modules/complycube/default.nix index 2ad68d938682df..acdf2822e987c0 100644 --- a/pkgs/development/python-modules/complycube/default.nix +++ b/pkgs/development/python-modules/complycube/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "complycube" ]; - meta = { + meta = with lib; { homepage = "https://complycube.com"; description = "Official Python client for the ComplyCube API"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ derdennisop ]; + license = licenses.mit; + maintainers = with maintainers; [ derdennisop ]; }; } diff --git a/pkgs/development/python-modules/compressai/default.nix b/pkgs/development/python-modules/compressai/default.nix index a3b4e3238d79ff..5d7fcbf7c7e2fc 100644 --- a/pkgs/development/python-modules/compressai/default.nix +++ b/pkgs/development/python-modules/compressai/default.nix @@ -93,10 +93,10 @@ buildPythonPackage rec { "test_find_close" ]; - meta = { + meta = with lib; { description = "PyTorch library and evaluation platform for end-to-end compression research"; homepage = "https://github.com/InterDigitalInc/CompressAI"; - license = lib.licenses.bsd3Clear; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.bsd3Clear; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/conda-package-handling/default.nix b/pkgs/development/python-modules/conda-package-handling/default.nix index 3205fb9b718f50..24da5a94768333 100644 --- a/pkgs/development/python-modules/conda-package-handling/default.nix +++ b/pkgs/development/python-modules/conda-package-handling/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "conda_package_handling" ]; - meta = { + meta = with lib; { description = "Create and extract conda packages of various formats"; homepage = "https://github.com/conda/conda-package-handling"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.ericthemagician ]; + license = licenses.bsd3; + maintainers = [ maintainers.ericthemagician ]; }; } diff --git a/pkgs/development/python-modules/conda-package-streaming/default.nix b/pkgs/development/python-modules/conda-package-streaming/default.nix index 6649fe770a0740..227d1b0e00f36b 100644 --- a/pkgs/development/python-modules/conda-package-streaming/default.nix +++ b/pkgs/development/python-modules/conda-package-streaming/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "conda_package_streaming" ]; - meta = { + meta = with lib; { description = "Efficient library to read from new and old format .conda and .tar.bz2 conda packages"; homepage = "https://github.com/conda/conda-package-streaming"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.ericthemagician ]; + license = licenses.bsd3; + maintainers = [ maintainers.ericthemagician ]; }; } diff --git a/pkgs/development/python-modules/conda/default.nix b/pkgs/development/python-modules/conda/default.nix index b1942a35a25607..da9c5c4a9af2ba 100644 --- a/pkgs/development/python-modules/conda/default.nix +++ b/pkgs/development/python-modules/conda/default.nix @@ -73,10 +73,10 @@ buildPythonPackage rec { # menuinst is currently not packaged pythonRemoveDeps = lib.optionals (!stdenv.hostPlatform.isWindows) [ "menuinst" ]; - meta = { + meta = with lib; { description = "OS-agnostic, system-level binary package manager"; homepage = "https://github.com/conda/conda"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.ericthemagician ]; + license = licenses.bsd3; + maintainers = [ maintainers.ericthemagician ]; }; } diff --git a/pkgs/development/python-modules/consolekit/default.nix b/pkgs/development/python-modules/consolekit/default.nix index 2d747f8919bedd..4c931b472bb6b3 100644 --- a/pkgs/development/python-modules/consolekit/default.nix +++ b/pkgs/development/python-modules/consolekit/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { typing-extensions ]; - meta = { + meta = with lib; { description = "Additional utilities for click."; homepage = "https://pypi.org/project/consolekit"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tyberius-prime ]; + license = licenses.mit; + maintainers = with maintainers; [ tyberius-prime ]; }; } diff --git a/pkgs/development/python-modules/contextlib2/default.nix b/pkgs/development/python-modules/contextlib2/default.nix index 01edc594a594b4..cfb9088fa523f1 100644 --- a/pkgs/development/python-modules/contextlib2/default.nix +++ b/pkgs/development/python-modules/contextlib2/default.nix @@ -27,10 +27,10 @@ buildPythonPackage { pythonImportsCheck = [ "contextlib2" ]; - meta = { + meta = with lib; { description = "Backports and enhancements for the contextlib module"; homepage = "https://contextlib2.readthedocs.org/"; - license = lib.licenses.psfl; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.psfl; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/cot/default.nix b/pkgs/development/python-modules/cot/default.nix index 5f28ef159c4d7c..c5c759ce0f642e 100644 --- a/pkgs/development/python-modules/cot/default.nix +++ b/pkgs/development/python-modules/cot/default.nix @@ -81,7 +81,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "COT" ]; - meta = { + meta = with lib; { homepage = "https://github.com/glennmatthews/cot"; description = "Common OVF Tool"; mainProgram = "cot"; @@ -90,7 +90,7 @@ buildPythonPackage rec { (.ovf, .ova) virtual appliances, with a focus on virtualized network appliances such as the Cisco CSR 1000V and Cisco IOS XRv platforms. ''; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ evanjs ]; + license = licenses.mit; + maintainers = with maintainers; [ evanjs ]; }; } diff --git a/pkgs/development/python-modules/crc32c/default.nix b/pkgs/development/python-modules/crc32c/default.nix index 705a3d0654db74..9a45dd5ba85fa0 100644 --- a/pkgs/development/python-modules/crc32c/default.nix +++ b/pkgs/development/python-modules/crc32c/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Python software implementation and hardware API of CRC32C checksum algorithm"; homepage = "https://github.com/ICRAR/crc32c"; - license = lib.licenses.lgpl21; - maintainers = with lib.maintainers; [ bcdarwin ]; + license = licenses.lgpl21; + maintainers = with maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/crcelk/default.nix b/pkgs/development/python-modules/crcelk/default.nix index 232b223625050c..77445422947792 100644 --- a/pkgs/development/python-modules/crcelk/default.nix +++ b/pkgs/development/python-modules/crcelk/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "crcelk" ]; - meta = { + meta = with lib; { description = "Implementation of the CRC algorithm"; homepage = "https://github.com/zeroSteiner/crcelk"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.mit; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/curio-compat/default.nix b/pkgs/development/python-modules/curio-compat/default.nix index b68b1fcba865c2..c31da68fcfb22b 100644 --- a/pkgs/development/python-modules/curio-compat/default.nix +++ b/pkgs/development/python-modules/curio-compat/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { "test_ssl_outgoing" ]; - meta = { + meta = with lib; { description = "Coroutine-based library for concurrent systems programming"; homepage = "https://github.com/klen/curio"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.bsd3; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/curvefitgui/default.nix b/pkgs/development/python-modules/curvefitgui/default.nix index 5c5f2247e55301..ea074a3146c6a3 100644 --- a/pkgs/development/python-modules/curvefitgui/default.nix +++ b/pkgs/development/python-modules/curvefitgui/default.nix @@ -38,10 +38,10 @@ buildPythonPackage { pythonImportsCheck = [ "curvefitgui" ]; - meta = { + meta = with lib; { description = "Graphical interface to the non-linear curvefit function scipy.optimise.curve_fit"; homepage = "https://github.com/moosepy/curvefitgui"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.mit; + maintainers = with maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/customtkinter/default.nix b/pkgs/development/python-modules/customtkinter/default.nix index a292798162577d..e6639425df08ad 100644 --- a/pkgs/development/python-modules/customtkinter/default.nix +++ b/pkgs/development/python-modules/customtkinter/default.nix @@ -40,10 +40,10 @@ buildPythonPackage { pythonImportsCheck = [ "customtkinter" ]; - meta = { + meta = with lib; { description = "Modern and customizable python UI-library based on Tkinter"; homepage = "https://github.com/TomSchimansky/CustomTkinter"; - license = lib.licenses.mit; + license = licenses.mit; longDescription = '' CustomTkinter is a python UI-library based on Tkinter, which provides new, modern and fully customizable widgets. They are created and @@ -55,6 +55,6 @@ buildPythonPackage { a consistent and modern look across all desktop platforms (Windows, macOS, Linux). ''; - maintainers = with lib.maintainers; [ donteatoreo ]; + maintainers = with maintainers; [ donteatoreo ]; }; } diff --git a/pkgs/development/python-modules/cxxheaderparser/default.nix b/pkgs/development/python-modules/cxxheaderparser/default.nix index 54754299e48842..e5a3b1a05eb756 100644 --- a/pkgs/development/python-modules/cxxheaderparser/default.nix +++ b/pkgs/development/python-modules/cxxheaderparser/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "cxxheaderparser" ]; - meta = { + meta = with lib; { description = "Modern pure python C++ header parser"; homepage = "https://github.com/robotpy/cxxheaderparser"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ nim65s ]; - platforms = lib.platforms.unix; + license = licenses.bsd3; + maintainers = with maintainers; [ nim65s ]; + platforms = platforms.unix; }; } diff --git a/pkgs/development/python-modules/cymruwhois/default.nix b/pkgs/development/python-modules/cymruwhois/default.nix index 070dc04cb0d4f4..b4b0b7fc4a871b 100644 --- a/pkgs/development/python-modules/cymruwhois/default.nix +++ b/pkgs/development/python-modules/cymruwhois/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { "test_doctest" ]; - meta = { + meta = with lib; { description = "Python client for the whois.cymru.com service"; homepage = "https://github.com/JustinAzoff/python-cymruwhois"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.mit; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/daltonlens/default.nix b/pkgs/development/python-modules/daltonlens/default.nix index 5410f4d2ab2ec5..2bcf02555dc142 100644 --- a/pkgs/development/python-modules/daltonlens/default.nix +++ b/pkgs/development/python-modules/daltonlens/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { "tests/test_generate.py" ]; - meta = { + meta = with lib; { description = "R&D companion package for the desktop application DaltonLens"; homepage = "https://github.com/DaltonLens/DaltonLens-Python"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ aleksana ]; + license = licenses.mit; + maintainers = with maintainers; [ aleksana ]; }; } diff --git a/pkgs/development/python-modules/dask-expr/default.nix b/pkgs/development/python-modules/dask-expr/default.nix index 2e06ececffb393..1e4c6df661ab9b 100644 --- a/pkgs/development/python-modules/dask-expr/default.nix +++ b/pkgs/development/python-modules/dask-expr/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = { + meta = with lib; { description = "Rewrite of Dask DataFrame that includes query optimization and generally improved organization"; homepage = "https://github.com/dask/dask-expr"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.bsd3; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/dask-image/default.nix b/pkgs/development/python-modules/dask-image/default.nix index a297902bc684f9..d2141221fcd545 100644 --- a/pkgs/development/python-modules/dask-image/default.nix +++ b/pkgs/development/python-modules/dask-image/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "dask_image" ]; - meta = { + meta = with lib; { description = "Distributed image processing"; homepage = "https://github.com/dask/dask-image"; - license = lib.licenses.bsdOriginal; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.bsdOriginal; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/dask-jobqueue/default.nix b/pkgs/development/python-modules/dask-jobqueue/default.nix index db3e8a4876b37e..e3a6dda1d076cb 100644 --- a/pkgs/development/python-modules/dask-jobqueue/default.nix +++ b/pkgs/development/python-modules/dask-jobqueue/default.nix @@ -95,10 +95,10 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = { + meta = with lib; { description = "Deploy Dask on job schedulers like PBS, SLURM, and SGE"; homepage = "https://github.com/dask/dask-jobqueue"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.bsd3; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/dataclasses-serialization/default.nix b/pkgs/development/python-modules/dataclasses-serialization/default.nix index b1e014f0c1630d..5123cdc5d46c44 100644 --- a/pkgs/development/python-modules/dataclasses-serialization/default.nix +++ b/pkgs/development/python-modules/dataclasses-serialization/default.nix @@ -58,10 +58,10 @@ buildPythonPackage rec { "dataclasses_serialization.serializer_base" ]; - meta = { + meta = with lib; { description = "Serialize/deserialize Python dataclasses to various other data formats"; homepage = "https://github.com/madman-bob/python-dataclasses-serialization"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/datalad-gooey/default.nix b/pkgs/development/python-modules/datalad-gooey/default.nix index fcc3fa3763302a..7758a2a0ccd016 100644 --- a/pkgs/development/python-modules/datalad-gooey/default.nix +++ b/pkgs/development/python-modules/datalad-gooey/default.nix @@ -54,11 +54,11 @@ buildPythonPackage { pythonImportsCheck = [ "datalad_gooey" ]; - meta = { + meta = with lib; { description = "Graphical user interface (GUI) for DataLad"; homepage = "https://github.com/datalad/datalad-gooey"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ gador ]; + license = licenses.mit; + maintainers = with maintainers; [ gador ]; mainProgram = "datalad-gooey"; }; } diff --git a/pkgs/development/python-modules/datalad-next/default.nix b/pkgs/development/python-modules/datalad-next/default.nix index c15a1451b54453..9709a439eda7fd 100644 --- a/pkgs/development/python-modules/datalad-next/default.nix +++ b/pkgs/development/python-modules/datalad-next/default.nix @@ -112,11 +112,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "datalad_next" ]; - meta = { + meta = with lib; { description = "DataLad extension with a staging area for additional functionality, or for improved performance and user experience"; changelog = "https://github.com/datalad/datalad-next/blob/main/CHANGELOG.md"; homepage = "https://github.com/datalad/datalad-next"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ gador ]; + license = licenses.mit; + maintainers = with maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/datalad/default.nix b/pkgs/development/python-modules/datalad/default.nix index d7e11df94adecb..57b6c077f53289 100644 --- a/pkgs/development/python-modules/datalad/default.nix +++ b/pkgs/development/python-modules/datalad/default.nix @@ -238,10 +238,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "datalad" ]; - meta = { + meta = with lib; { description = "Keep code, data, containers under control with git and git-annex"; homepage = "https://www.datalad.org"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ renesat ]; + license = licenses.mit; + maintainers = with maintainers; [ renesat ]; }; } diff --git a/pkgs/development/python-modules/datasalad/default.nix b/pkgs/development/python-modules/datasalad/default.nix index 0e0eaacbea2ff6..13a26e40827604 100644 --- a/pkgs/development/python-modules/datasalad/default.nix +++ b/pkgs/development/python-modules/datasalad/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "datasalad" ]; - meta = { + meta = with lib; { description = "Pure-Python library with a collection of utilities for working with Git and git-annex"; changelog = "https://github.com/datalad/datasalad/blob/main/CHANGELOG.md"; homepage = "https://github.com/datalad/datasalad"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ gador ]; + license = licenses.mit; + maintainers = with maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/datashaper/default.nix b/pkgs/development/python-modules/datashaper/default.nix index 3ad28d2228ed33..a7976797865403 100644 --- a/pkgs/development/python-modules/datashaper/default.nix +++ b/pkgs/development/python-modules/datashaper/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { # pypi tarball has no tests doCheck = false; - meta = { + meta = with lib; { description = "Collection of utilities for doing lightweight data wrangling"; homepage = "https://github.com/microsoft/datashaper/tree/main/python/datashaper"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ natsukium ]; + license = licenses.mit; + maintainers = with maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/datefinder/default.nix b/pkgs/development/python-modules/datefinder/default.nix index 57bacf535706e8..a17a88aa009e3b 100644 --- a/pkgs/development/python-modules/datefinder/default.nix +++ b/pkgs/development/python-modules/datefinder/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "datefinder" ]; - meta = { + meta = with lib; { description = "Extract datetime objects from strings"; homepage = "https://github.com/akoumjian/datefinder"; - license = lib.licenses.mit; - maintainers = lib.teams.deshaw.members; + license = licenses.mit; + maintainers = teams.deshaw.members; }; } diff --git a/pkgs/development/python-modules/deepdish/default.nix b/pkgs/development/python-modules/deepdish/default.nix index 119defd7ea174b..ca47f6532b0fb4 100644 --- a/pkgs/development/python-modules/deepdish/default.nix +++ b/pkgs/development/python-modules/deepdish/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { # The tests are broken: `ModuleNotFoundError: No module named 'deepdish.six.conf'` doCheck = false; - meta = { + meta = with lib; { description = "Flexible HDF5 saving/loading and other data science tools from the University of Chicago"; mainProgram = "ddls"; homepage = "https://github.com/uchicago-cs/deepdish"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ndl ]; + license = licenses.asl20; + maintainers = with maintainers; [ ndl ]; }; } diff --git a/pkgs/development/python-modules/deform/default.nix b/pkgs/development/python-modules/deform/default.nix index 27dbd22ea70366..561665595e95ec 100644 --- a/pkgs/development/python-modules/deform/default.nix +++ b/pkgs/development/python-modules/deform/default.nix @@ -45,14 +45,14 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = { + meta = with lib; { description = "Form library with advanced features like nested forms"; homepage = "https://docs.pylonsproject.org/projects/deform/en/latest/"; # https://github.com/Pylons/deform/blob/fdc43d59de7d11b0e3ba1b92835b780cfe181719/LICENSE.txt license = [ - lib.licenses.bsd3 - lib.licenses.cc-by-30 + licenses.bsd3 + licenses.cc-by-30 ]; - maintainers = with lib.maintainers; [ domenkozar ]; + maintainers = with maintainers; [ domenkozar ]; }; } diff --git a/pkgs/development/python-modules/dendropy/default.nix b/pkgs/development/python-modules/dendropy/default.nix index f2632e90710701..2e288ae4adeff3 100644 --- a/pkgs/development/python-modules/dendropy/default.nix +++ b/pkgs/development/python-modules/dendropy/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Python library for phylogenetic computing"; homepage = "https://jeetsukumaran.github.io/DendroPy/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ unode pandapip1 ]; diff --git a/pkgs/development/python-modules/deprecation-alias/default.nix b/pkgs/development/python-modules/deprecation-alias/default.nix index 0d97bb0b441399..99080fc0d7527c 100644 --- a/pkgs/development/python-modules/deprecation-alias/default.nix +++ b/pkgs/development/python-modules/deprecation-alias/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { --replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"' ''; - meta = { + meta = with lib; { description = "A wrapper around ‘deprecation’ providing support for deprecated aliases."; homepage = "https://github.com/domdfcoding/deprecation-alias"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tyberius-prime ]; + license = licenses.mit; + maintainers = with maintainers; [ tyberius-prime ]; }; } diff --git a/pkgs/development/python-modules/devgoldyutils/default.nix b/pkgs/development/python-modules/devgoldyutils/default.nix index db7b236e19eede..4e38985fbaa19a 100644 --- a/pkgs/development/python-modules/devgoldyutils/default.nix +++ b/pkgs/development/python-modules/devgoldyutils/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "devgoldyutils" ]; - meta = { + meta = with lib; { description = "Collection of utility functions for Python used by mov-cli"; homepage = "https://github.com/THEGOLDENPRO/devgoldyutils"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ youhaveme9 ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ youhaveme9 ]; }; } diff --git a/pkgs/development/python-modules/dictionaries/default.nix b/pkgs/development/python-modules/dictionaries/default.nix index 1574d2e9e7e7a2..7bffe53fca0d2a 100644 --- a/pkgs/development/python-modules/dictionaries/default.nix +++ b/pkgs/development/python-modules/dictionaries/default.nix @@ -17,9 +17,9 @@ buildPythonPackage rec { buildInputs = [ six ]; - meta = { + meta = with lib; { description = "Dict implementations with attribute access"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.MostAwesomeDude ]; + license = licenses.mit; + maintainers = [ maintainers.MostAwesomeDude ]; }; } diff --git a/pkgs/development/python-modules/dist-meta/default.nix b/pkgs/development/python-modules/dist-meta/default.nix index a6d6119429c59a..5e2dc3de9fc779 100644 --- a/pkgs/development/python-modules/dist-meta/default.nix +++ b/pkgs/development/python-modules/dist-meta/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { --replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"' ''; - meta = { + meta = with lib; { description = "Parse and create Python distribution metadata."; homepage = "https://github.com/repo-helper/dist-meta"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tyberius-prime ]; + license = licenses.mit; + maintainers = with maintainers; [ tyberius-prime ]; }; } diff --git a/pkgs/development/python-modules/distutils/default.nix b/pkgs/development/python-modules/distutils/default.nix index f0264209b887d7..b5c7e98d861b08 100644 --- a/pkgs/development/python-modules/distutils/default.nix +++ b/pkgs/development/python-modules/distutils/default.nix @@ -61,10 +61,10 @@ buildPythonPackage rec { # jaraco-path depends ob pyobjc doCheck = !stdenv.isDarwin; - meta = { + meta = with lib; { description = "Distutils as found in cpython"; homepage = "https://github.com/pypa/distutils"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/django-apscheduler/default.nix b/pkgs/development/python-modules/django-apscheduler/default.nix index 246a620e7a122f..568df88de312a4 100644 --- a/pkgs/development/python-modules/django-apscheduler/default.nix +++ b/pkgs/development/python-modules/django-apscheduler/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { "django_apscheduler" ]; - meta = { + meta = with lib; { description = "APScheduler for Django"; homepage = "https://github.com/jcass77/django-apscheduler"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ happysalada ]; + license = licenses.mit; + maintainers = with maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/django-axes/default.nix b/pkgs/development/python-modules/django-axes/default.nix index cc141ced879878..d63e88dbec7532 100644 --- a/pkgs/development/python-modules/django-axes/default.nix +++ b/pkgs/development/python-modules/django-axes/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "axes" ]; - meta = { + meta = with lib; { description = "Keep track of failed login attempts in Django-powered sites"; homepage = "https://github.com/jazzband/django-axes"; - maintainers = with lib.maintainers; [ sikmir ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ sikmir ]; + license = licenses.mit; }; } diff --git a/pkgs/development/python-modules/django-choices-field/default.nix b/pkgs/development/python-modules/django-choices-field/default.nix index ea115e5c625844..ff78fcfe610f82 100644 --- a/pkgs/development/python-modules/django-choices-field/default.nix +++ b/pkgs/development/python-modules/django-choices-field/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_choices_field" ]; - meta = { + meta = with lib; { description = "Django field that set/get django's new TextChoices/IntegerChoices enum"; homepage = "https://github.com/bellini666/django-choices-field"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ minijackson ]; + license = licenses.mit; + maintainers = with maintainers; [ minijackson ]; }; } diff --git a/pkgs/development/python-modules/django-crossdomainmedia/default.nix b/pkgs/development/python-modules/django-crossdomainmedia/default.nix index 3f2134e42239fc..cc42ad5113494a 100644 --- a/pkgs/development/python-modules/django-crossdomainmedia/default.nix +++ b/pkgs/development/python-modules/django-crossdomainmedia/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { # django.core.exceptions.ImproperlyConfigured: Requested setting DEBUG, but settings are not configured. # pythonImportsCheck = [ "crossdomainmedia" ]; - meta = { + meta = with lib; { description = "Django application to retrieve user's IP address"; homepage = "https://github.com/stefanw/django-crossdomainmedia"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.onny ]; + license = licenses.mit; + maintainers = [ maintainers.onny ]; }; } diff --git a/pkgs/development/python-modules/django-elasticsearch-dsl/default.nix b/pkgs/development/python-modules/django-elasticsearch-dsl/default.nix index 18da67c49cceb1..635f521e4bf391 100644 --- a/pkgs/development/python-modules/django-elasticsearch-dsl/default.nix +++ b/pkgs/development/python-modules/django-elasticsearch-dsl/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_elasticsearch_dsl" ]; - meta = { + meta = with lib; { description = "Wrapper around elasticsearch-dsl-py for Django models"; homepage = "https://github.com/sabricot/django-elasticsearch-dsl"; - license = lib.licenses.bsd2; - maintainers = [ lib.maintainers.onny ]; + license = licenses.bsd2; + maintainers = [ maintainers.onny ]; }; } diff --git a/pkgs/development/python-modules/django-filer/default.nix b/pkgs/development/python-modules/django-filer/default.nix index cece652a68a824..ef3826f16d5029 100644 --- a/pkgs/development/python-modules/django-filer/default.nix +++ b/pkgs/development/python-modules/django-filer/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = { + meta = with lib; { description = "File management application for Django"; homepage = "https://github.com/django-cms/django-filer"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.onny ]; + license = licenses.mit; + maintainers = [ maintainers.onny ]; }; } diff --git a/pkgs/development/python-modules/django-filingcabinet/default.nix b/pkgs/development/python-modules/django-filingcabinet/default.nix index bbace0ec1af96d..34572bc8ad2143 100644 --- a/pkgs/development/python-modules/django-filingcabinet/default.nix +++ b/pkgs/development/python-modules/django-filingcabinet/default.nix @@ -122,10 +122,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "filingcabinet" ]; - meta = { + meta = with lib; { description = "Django app that manages documents with pages, annotations and collections"; homepage = "https://github.com/okfde/django-filingcabinet"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.onny ]; + license = licenses.mit; + maintainers = [ maintainers.onny ]; }; } diff --git a/pkgs/development/python-modules/django-fsm/default.nix b/pkgs/development/python-modules/django-fsm/default.nix index 708d92c05eb62d..7cf6c287c93a86 100644 --- a/pkgs/development/python-modules/django-fsm/default.nix +++ b/pkgs/development/python-modules/django-fsm/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_fsm" ]; - meta = { + meta = with lib; { description = "Django friendly finite state machine support"; homepage = "https://github.com/viewflow/django-fsm"; - license = lib.licenses.mit; + license = licenses.mit; knownVulnerabilities = [ "Package is marked as discontinued upstream." ]; - maintainers = [ lib.maintainers.onny ]; + maintainers = [ maintainers.onny ]; }; } diff --git a/pkgs/development/python-modules/django-htmx/default.nix b/pkgs/development/python-modules/django-htmx/default.nix index 0e60a5ae5aefe5..0b0d4421021ebe 100644 --- a/pkgs/development/python-modules/django-htmx/default.nix +++ b/pkgs/development/python-modules/django-htmx/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "django_htmx" ]; - meta = { + meta = with lib; { description = "Extensions for using Django with htmx"; homepage = "https://github.com/adamchainz/django-htmx"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ minijackson ]; + license = licenses.mit; + maintainers = with maintainers; [ minijackson ]; }; } diff --git a/pkgs/development/python-modules/django-split-settings/default.nix b/pkgs/development/python-modules/django-split-settings/default.nix index 31ac1836b5dc4b..a077c559ba5b9d 100644 --- a/pkgs/development/python-modules/django-split-settings/default.nix +++ b/pkgs/development/python-modules/django-split-settings/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pytest-cov-stub ]; - meta = { + meta = with lib; { description = "Organize Django settings into multiple files and directories"; homepage = "https://github.com/wemake-services/django-split-settings"; - maintainers = with lib.maintainers; [ sikmir ]; - license = lib.licenses.bsd3; + maintainers = with maintainers; [ sikmir ]; + license = licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/django-types/default.nix b/pkgs/development/python-modules/django-types/default.nix index d9f4776bf2939a..e557379332de01 100644 --- a/pkgs/development/python-modules/django-types/default.nix +++ b/pkgs/development/python-modules/django-types/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { dependencies = [ types-psycopg2 ]; - meta = { + meta = with lib; { description = "Type stubs for Django"; homepage = "https://github.com/sbdchd/django-types"; changelog = "https://github.com/sbdchd/django-types/blob/main/CHANGELOG.md"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nickcao ]; + license = licenses.mit; + maintainers = with maintainers; [ nickcao ]; }; } diff --git a/pkgs/development/python-modules/djangorestframework-jsonp/default.nix b/pkgs/development/python-modules/djangorestframework-jsonp/default.nix index 3cca2e0dc79aa9..fd5eb618fb7965 100644 --- a/pkgs/development/python-modules/djangorestframework-jsonp/default.nix +++ b/pkgs/development/python-modules/djangorestframework-jsonp/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rest_framework_jsonp" ]; - meta = { + meta = with lib; { description = "JSONP support for Django REST Framework"; homepage = "https://jpadilla.github.io/django-rest-framework-jsonp/"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.onny ]; + license = licenses.bsd3; + maintainers = [ maintainers.onny ]; }; } diff --git a/pkgs/development/python-modules/dmenu/default.nix b/pkgs/development/python-modules/dmenu/default.nix index 747c666a946392..12b6b037506ec7 100644 --- a/pkgs/development/python-modules/dmenu/default.nix +++ b/pkgs/development/python-modules/dmenu/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # No tests existing doCheck = false; - meta = { + meta = with lib; { description = "Python wrapper for dmenu"; homepage = "https://dmenu.readthedocs.io"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.nico202 ]; + license = licenses.mit; + maintainers = [ maintainers.nico202 ]; }; } diff --git a/pkgs/development/python-modules/docker-pycreds/default.nix b/pkgs/development/python-modules/docker-pycreds/default.nix index ad7d63c84bb972..a521a5fa29f3d7 100644 --- a/pkgs/development/python-modules/docker-pycreds/default.nix +++ b/pkgs/development/python-modules/docker-pycreds/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { # require docker-credential-helpers binaries doCheck = false; - meta = { + meta = with lib; { description = "Python bindings for the docker credentials store API"; homepage = "https://github.com/shin-/dockerpy-creds"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.asl20; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/dom-toml/default.nix b/pkgs/development/python-modules/dom-toml/default.nix index 99ff069ce49f92..7d002364ec63cc 100644 --- a/pkgs/development/python-modules/dom-toml/default.nix +++ b/pkgs/development/python-modules/dom-toml/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { tomli ]; - meta = { + meta = with lib; { description = "Dom's tools for Tom's Obvious, Minimal Language."; homepage = "https://github.com/domdfcoding/dom_toml"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tyberius-prime ]; + license = licenses.mit; + maintainers = with maintainers; [ tyberius-prime ]; }; } diff --git a/pkgs/development/python-modules/domdf-python-tools/default.nix b/pkgs/development/python-modules/domdf-python-tools/default.nix index 832674256a0e45..83f0dffe0be5cd 100644 --- a/pkgs/development/python-modules/domdf-python-tools/default.nix +++ b/pkgs/development/python-modules/domdf-python-tools/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { --replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"' ''; - meta = { + meta = with lib; { description = "Helpful functions for Python"; homepage = "https://github.com/domdfcoding/domdf_python_tools"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tyberius-prime ]; + license = licenses.mit; + maintainers = with maintainers; [ tyberius-prime ]; }; } diff --git a/pkgs/development/python-modules/drf-orjson-renderer/default.nix b/pkgs/development/python-modules/drf-orjson-renderer/default.nix index a234c66c992919..fb0d76587b68ad 100644 --- a/pkgs/development/python-modules/drf-orjson-renderer/default.nix +++ b/pkgs/development/python-modules/drf-orjson-renderer/default.nix @@ -31,10 +31,10 @@ buildPythonPackage { pythonImportsCheck = [ "drf_orjson_renderer" ]; - meta = { + meta = with lib; { description = "JSON renderer and parser for Django Rest Framework using the orjson library"; homepage = "https://github.com/brianjbuck/drf_orjson_renderer"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ jvanbruegge ]; + license = licenses.mit; + maintainers = with maintainers; [ jvanbruegge ]; }; } diff --git a/pkgs/development/python-modules/drms/default.nix b/pkgs/development/python-modules/drms/default.nix index f079e61d65791d..a0311d878222bc 100644 --- a/pkgs/development/python-modules/drms/default.nix +++ b/pkgs/development/python-modules/drms/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "drms" ]; - meta = { + meta = with lib; { description = "Access HMI, AIA and MDI data with Python"; homepage = "https://github.com/sunpy/drms"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; + license = licenses.bsd2; + maintainers = with maintainers; [ bot-wxt1221 ]; }; } diff --git a/pkgs/development/python-modules/dynalite-panel/default.nix b/pkgs/development/python-modules/dynalite-panel/default.nix index 8b0f711a571a1f..4d449d8ee8d0a3 100644 --- a/pkgs/development/python-modules/dynalite-panel/default.nix +++ b/pkgs/development/python-modules/dynalite-panel/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # upstream has no tests doCheck = false; - meta = { + meta = with lib; { description = "Dynalite panel for Home Assistant"; homepage = "https://github.com/ziv1234/dynalitepanel"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.asl20; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/effdet/default.nix b/pkgs/development/python-modules/effdet/default.nix index 30fcee96fb76c5..c913700ce33378 100644 --- a/pkgs/development/python-modules/effdet/default.nix +++ b/pkgs/development/python-modules/effdet/default.nix @@ -35,10 +35,10 @@ buildPythonPackage { pythonImportsCheck = [ "effdet" ]; - meta = { + meta = with lib; { description = "PyTorch implementation of EfficientDet"; homepage = "https://pypi.org/project/effdet"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ happysalada ]; + license = licenses.asl20; + maintainers = with maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/environmental-override/default.nix b/pkgs/development/python-modules/environmental-override/default.nix index c61823ff7a19d0..dc6a9a41c4bfdb 100644 --- a/pkgs/development/python-modules/environmental-override/default.nix +++ b/pkgs/development/python-modules/environmental-override/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "environmental_override" ]; - meta = { + meta = with lib; { description = "Easily configure apps using simple environmental overrides"; homepage = "https://github.com/coddingtonbear/environmental-override"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nathanruiz ]; + license = licenses.mit; + maintainers = with maintainers; [ nathanruiz ]; }; } diff --git a/pkgs/development/python-modules/envs/default.nix b/pkgs/development/python-modules/envs/default.nix index 10fc95fbb13b46..2e0fc4648cde6e 100644 --- a/pkgs/development/python-modules/envs/default.nix +++ b/pkgs/development/python-modules/envs/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "envs" ]; - meta = { + meta = with lib; { description = "Easy access to environment variables from Python"; mainProgram = "envs"; homepage = "https://github.com/capless/envs"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ peterhoeg ]; + license = licenses.asl20; + maintainers = with maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/etcd3/default.nix b/pkgs/development/python-modules/etcd3/default.nix index 6550edc9473ccc..846f1331b25ca0 100644 --- a/pkgs/development/python-modules/etcd3/default.nix +++ b/pkgs/development/python-modules/etcd3/default.nix @@ -58,10 +58,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "etcd3" ]; - meta = { + meta = with lib; { description = "Python client for the etcd API v3"; homepage = "https://github.com/kragniz/python-etcd3"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ moraxyc ]; + license = licenses.asl20; + maintainers = with maintainers; [ moraxyc ]; }; } diff --git a/pkgs/development/python-modules/eval-type-backport/default.nix b/pkgs/development/python-modules/eval-type-backport/default.nix index 3451b58340c9a9..6ffff3b1b3129b 100644 --- a/pkgs/development/python-modules/eval-type-backport/default.nix +++ b/pkgs/development/python-modules/eval-type-backport/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Like `typing._eval_type`, but lets older Python versions use newer typing features"; homepage = "https://github.com/alexmojaki/eval_type_backport"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ perchun ]; + license = licenses.mit; + maintainers = with maintainers; [ perchun ]; }; } diff --git a/pkgs/development/python-modules/ewmh/default.nix b/pkgs/development/python-modules/ewmh/default.nix index 9819f036887b72..0f893bf7d37f5d 100644 --- a/pkgs/development/python-modules/ewmh/default.nix +++ b/pkgs/development/python-modules/ewmh/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # No tests included doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/parkouss/pyewmh"; description = "Implementation of EWMH (Extended Window Manager Hints), based on Xlib"; - license = lib.licenses.lgpl3Plus; - maintainers = with lib.maintainers; [ bandresen ]; + license = licenses.lgpl3Plus; + maintainers = with maintainers; [ bandresen ]; }; } diff --git a/pkgs/development/python-modules/expecttest/default.nix b/pkgs/development/python-modules/expecttest/default.nix index 0d52c20ba8f0eb..595d60849b854c 100644 --- a/pkgs/development/python-modules/expecttest/default.nix +++ b/pkgs/development/python-modules/expecttest/default.nix @@ -28,11 +28,11 @@ buildPythonPackage { pythonImportsCheck = [ "expecttest" ]; - meta = { - maintainers = [ lib.maintainers.SomeoneSerge ]; - license = lib.licenses.mit; + meta = with lib; { + maintainers = [ maintainers.SomeoneSerge ]; + license = licenses.mit; description = ''EZ Yang "golden" tests (testing against a reference implementation)''; homepage = "https://github.com/pytorch/expecttest"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/development/python-modules/explorerscript/default.nix b/pkgs/development/python-modules/explorerscript/default.nix index 76d92bb173c2cb..8b764ec5ae6855 100644 --- a/pkgs/development/python-modules/explorerscript/default.nix +++ b/pkgs/development/python-modules/explorerscript/default.nix @@ -58,10 +58,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "explorerscript" ]; - meta = { + meta = with lib; { homepage = "https://github.com/SkyTemple/explorerscript"; description = "Programming language + compiler/decompiler for creating scripts for Pokémon Mystery Dungeon Explorers of Sky"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ marius851000 ]; + license = licenses.mit; + maintainers = with maintainers; [ marius851000 ]; }; } diff --git a/pkgs/development/python-modules/f90nml/default.nix b/pkgs/development/python-modules/f90nml/default.nix index 0a0f735e901ac3..8fc0fcea0a495b 100644 --- a/pkgs/development/python-modules/f90nml/default.nix +++ b/pkgs/development/python-modules/f90nml/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "f90nml" ]; - meta = { + meta = with lib; { description = "Python module for working with Fortran Namelists"; mainProgram = "f90nml"; homepage = "https://f90nml.readthedocs.io"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ loicreynier ]; + license = licenses.asl20; + maintainers = with maintainers; [ loicreynier ]; }; } diff --git a/pkgs/development/python-modules/fabio/default.nix b/pkgs/development/python-modules/fabio/default.nix index d9bfea658144ae..4de0cbaf25f7ad 100644 --- a/pkgs/development/python-modules/fabio/default.nix +++ b/pkgs/development/python-modules/fabio/default.nix @@ -47,12 +47,12 @@ buildPythonPackage rec { tomli ]; - meta = { + meta = with lib; { changelog = "https://github.com/silx-kit/fabio/blob/main/doc/source/Changelog.rst"; description = "I/O library for images produced by 2D X-ray detector"; homepage = "https://github.com/silx-kit/fabio"; - license = [ lib.licenses.mit ]; - maintainers = [ lib.maintainers.pmiddend ]; + license = [ licenses.mit ]; + maintainers = [ maintainers.pmiddend ]; }; } diff --git a/pkgs/development/python-modules/fabulous/default.nix b/pkgs/development/python-modules/fabulous/default.nix index d94227989c4903..ed69c664ee2108 100644 --- a/pkgs/development/python-modules/fabulous/default.nix +++ b/pkgs/development/python-modules/fabulous/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { done ''; - meta = { + meta = with lib; { description = "Make the output of terminal applications look fabulous"; homepage = "https://jart.github.io/fabulous"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.symphorien ]; + license = licenses.asl20; + maintainers = [ maintainers.symphorien ]; }; } diff --git a/pkgs/development/python-modules/facenet-pytorch/default.nix b/pkgs/development/python-modules/facenet-pytorch/default.nix index 191818bc6b3d18..59358cb8f337e4 100644 --- a/pkgs/development/python-modules/facenet-pytorch/default.nix +++ b/pkgs/development/python-modules/facenet-pytorch/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { torchvision ]; - meta = { + meta = with lib; { description = "Pretrained Pytorch face detection (MTCNN) and facial recognition (InceptionResnet) models"; homepage = "https://github.com/timesler/facenet-pytorch"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.lucasew ]; + license = licenses.mit; + maintainers = [ maintainers.lucasew ]; }; } diff --git a/pkgs/development/python-modules/fastcrc/default.nix b/pkgs/development/python-modules/fastcrc/default.nix index c53d8405487983..cc1ab4c81346d6 100644 --- a/pkgs/development/python-modules/fastcrc/default.nix +++ b/pkgs/development/python-modules/fastcrc/default.nix @@ -50,10 +50,10 @@ buildPythonPackage { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Hyper-fast Python module for computing CRC(8, 16, 32, 64) checksum"; homepage = "https://fastcrc.readthedocs.io/en/latest/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pluiedev ]; + license = licenses.mit; + maintainers = with maintainers; [ pluiedev ]; }; } diff --git a/pkgs/development/python-modules/fb-re2/default.nix b/pkgs/development/python-modules/fb-re2/default.nix index 11defafe39539c..e71ba140ea94a2 100644 --- a/pkgs/development/python-modules/fb-re2/default.nix +++ b/pkgs/development/python-modules/fb-re2/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { # no tests in PyPI tarball doCheck = false; - meta = { + meta = with lib; { description = "Python wrapper for Google's RE2"; homepage = "https://github.com/facebook/pyre2"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ivan ]; + license = licenses.bsd3; + maintainers = with maintainers; [ ivan ]; }; } diff --git a/pkgs/development/python-modules/feather-format/default.nix b/pkgs/development/python-modules/feather-format/default.nix index 956b107695ada4..31a3aaa2d447d7 100644 --- a/pkgs/development/python-modules/feather-format/default.nix +++ b/pkgs/development/python-modules/feather-format/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "feather" ]; doCheck = false; # no tests - meta = { + meta = with lib; { description = "Simple wrapper library to the Apache Arrow-based Feather File Format"; homepage = "https://github.com/wesm/feather"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.asl20; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/ffmpeg-python/default.nix b/pkgs/development/python-modules/ffmpeg-python/default.nix index b7ae441c9f7ea8..e20d687e8308f5 100644 --- a/pkgs/development/python-modules/ffmpeg-python/default.nix +++ b/pkgs/development/python-modules/ffmpeg-python/default.nix @@ -56,10 +56,10 @@ buildPythonPackage { pythonImportsCheck = [ "ffmpeg" ]; - meta = { + meta = with lib; { description = "Python bindings for FFmpeg - with complex filtering support"; homepage = "https://github.com/kkroening/ffmpeg-python"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.emily ]; + license = licenses.asl20; + maintainers = [ maintainers.emily ]; }; } diff --git a/pkgs/development/python-modules/fissix/default.nix b/pkgs/development/python-modules/fissix/default.nix index d600d8410795fe..2dad3d323fa230 100644 --- a/pkgs/development/python-modules/fissix/default.nix +++ b/pkgs/development/python-modules/fissix/default.nix @@ -35,11 +35,11 @@ buildPythonPackage { pythonImportsCheck = [ "fissix" ]; - meta = { + meta = with lib; { description = "Backport of latest lib2to3, with enhancements"; homepage = "https://github.com/amyreese/fissix"; - sourceProvenance = [ lib.sourceTypes.fromSource ]; - license = lib.licenses.psfl; - maintainers = [ lib.maintainers.emily ]; + sourceProvenance = [ sourceTypes.fromSource ]; + license = licenses.psfl; + maintainers = [ maintainers.emily ]; }; } diff --git a/pkgs/development/python-modules/flake8-quotes/default.nix b/pkgs/development/python-modules/flake8-quotes/default.nix index 47be6b6f096c99..969c38a07a4893 100644 --- a/pkgs/development/python-modules/flake8-quotes/default.nix +++ b/pkgs/development/python-modules/flake8-quotes/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { "flake8_quotes" ]; - meta = { + meta = with lib; { description = "Flake8 extension for checking quotes in python"; homepage = "https://github.com/zheller/flake8-quotes/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nim65s ]; + license = licenses.mit; + maintainers = with maintainers; [ nim65s ]; }; } diff --git a/pkgs/development/python-modules/flammkuchen/default.nix b/pkgs/development/python-modules/flammkuchen/default.nix index 8af55dfe7c028d..16793c1bb74d8c 100644 --- a/pkgs/development/python-modules/flammkuchen/default.nix +++ b/pkgs/development/python-modules/flammkuchen/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = { + meta = with lib; { homepage = "https://github.com/portugueslab/flammkuchen"; description = "Flexible HDF5 saving/loading library forked from deepdish (University of Chicago) and maintained by the Portugues lab"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ tbenst ]; + license = licenses.bsd3; + maintainers = with maintainers; [ tbenst ]; }; } diff --git a/pkgs/development/python-modules/flask-assets/default.nix b/pkgs/development/python-modules/flask-assets/default.nix index b51762a2392678..72f4452ddb128a 100644 --- a/pkgs/development/python-modules/flask-assets/default.nix +++ b/pkgs/development/python-modules/flask-assets/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "flask_assets" ]; - meta = { + meta = with lib; { homepage = "https://github.com/miracle2k/flask-assets"; description = "Asset management for Flask, to compress and merge CSS and Javascript files"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ abbradar ]; + license = licenses.bsd2; + maintainers = with maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/flaxlib/default.nix b/pkgs/development/python-modules/flaxlib/default.nix index bb49634b60348d..220ee93f013da7 100644 --- a/pkgs/development/python-modules/flaxlib/default.nix +++ b/pkgs/development/python-modules/flaxlib/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { inherit (flax) updateScript; }; - meta = { + meta = with lib; { description = "Rust library used internally by flax"; homepage = "https://github.com/google/flax/tree/main/flaxlib"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.asl20; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/fnllm/default.nix b/pkgs/development/python-modules/fnllm/default.nix index a89409ee1c4043..638a5b1032564b 100644 --- a/pkgs/development/python-modules/fnllm/default.nix +++ b/pkgs/development/python-modules/fnllm/default.nix @@ -71,10 +71,10 @@ buildPythonPackage rec { "tests/unit/caching/test_blob.py" ]; - meta = { + meta = with lib; { description = "A function-based LLM protocol and wrapper"; homepage = "https://github.com/microsoft/essex-toolkit/tree/main/python/fnllm"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.mit; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/fpdf/default.nix b/pkgs/development/python-modules/fpdf/default.nix index 4ceac163a46ed2..2aab967a0f7e1c 100644 --- a/pkgs/development/python-modules/fpdf/default.nix +++ b/pkgs/development/python-modules/fpdf/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # No tests available doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/reingart/pyfpdf"; description = "Simple PDF generation for Python"; - license = lib.licenses.lgpl3; - maintainers = with lib.maintainers; [ oxzi ]; + license = licenses.lgpl3; + maintainers = with maintainers; [ oxzi ]; }; } diff --git a/pkgs/development/python-modules/free-proxy/default.nix b/pkgs/development/python-modules/free-proxy/default.nix index c315076b09c5cd..5afb9558d6a79f 100644 --- a/pkgs/development/python-modules/free-proxy/default.nix +++ b/pkgs/development/python-modules/free-proxy/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { requests ]; - meta = { + meta = with lib; { description = "Free proxy scraper written in python"; homepage = "https://github.com/jundymek/free-proxy"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tochiaha ]; + license = licenses.mit; + maintainers = with maintainers; [ tochiaha ]; }; } diff --git a/pkgs/development/python-modules/freetype-py/default.nix b/pkgs/development/python-modules/freetype-py/default.nix index 58fc8c10a93f5d..66ac4360ef79f3 100644 --- a/pkgs/development/python-modules/freetype-py/default.nix +++ b/pkgs/development/python-modules/freetype-py/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "freetype" ]; - meta = { + meta = with lib; { homepage = "https://github.com/rougier/freetype-py"; description = "FreeType (high-level Python API)"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ goertzenator ]; + license = licenses.bsd3; + maintainers = with maintainers; [ goertzenator ]; }; } diff --git a/pkgs/development/python-modules/frida-python/default.nix b/pkgs/development/python-modules/frida-python/default.nix index bd7b493af68f0a..2f314bd0d7c567 100644 --- a/pkgs/development/python-modules/frida-python/default.nix +++ b/pkgs/development/python-modules/frida-python/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { "frida._frida" ]; - meta = { + meta = with lib; { description = "Dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers (Python bindings)"; homepage = "https://www.frida.re"; - license = lib.licenses.wxWindows; - maintainers = with lib.maintainers; [ s1341 ]; + license = licenses.wxWindows; + maintainers = with maintainers; [ s1341 ]; platforms = [ "x86_64-linux" ]; diff --git a/pkgs/development/python-modules/fslpy/default.nix b/pkgs/development/python-modules/fslpy/default.nix index 0633b9b5133c68..d13d3f6bc54f70 100644 --- a/pkgs/development/python-modules/fslpy/default.nix +++ b/pkgs/development/python-modules/fslpy/default.nix @@ -88,11 +88,11 @@ buildPythonPackage rec { "fsl.wrappers" ]; - meta = { + meta = with lib; { description = "FSL Python library"; homepage = "https://git.fmrib.ox.ac.uk/fsl/fslpy"; changelog = "https://git.fmrib.ox.ac.uk/fsl/fslpy/-/blob/main/CHANGELOG.rst"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ bcdarwin ]; + license = licenses.asl20; + maintainers = with maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/gast/default.nix b/pkgs/development/python-modules/gast/default.nix index a47a7500f4edeb..02c22b482d0545 100644 --- a/pkgs/development/python-modules/gast/default.nix +++ b/pkgs/development/python-modules/gast/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "gast" ]; - meta = { + meta = with lib; { description = "Compatibility layer between the AST of various Python versions"; homepage = "https://github.com/serge-sans-paille/gast/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ jyp cpcloud ]; diff --git a/pkgs/development/python-modules/gbinder-python/default.nix b/pkgs/development/python-modules/gbinder-python/default.nix index 24bf6109e8aceb..0a6eac146da152 100644 --- a/pkgs/development/python-modules/gbinder-python/default.nix +++ b/pkgs/development/python-modules/gbinder-python/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { setupPyGlobalFlags = [ "--cython" ]; - meta = { + meta = with lib; { description = "Python bindings for libgbinder"; homepage = "https://github.com/erfanoabdi/gbinder-python"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/geodatasets/default.nix b/pkgs/development/python-modules/geodatasets/default.nix index e6689439078e66..867bd1a814c3ad 100644 --- a/pkgs/development/python-modules/geodatasets/default.nix +++ b/pkgs/development/python-modules/geodatasets/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "geodatasets" ]; - meta = { + meta = with lib; { description = "Spatial data examples"; homepage = "https://geodatasets.readthedocs.io/"; - license = lib.licenses.bsd3; - maintainers = lib.teams.geospatial.members; + license = licenses.bsd3; + maintainers = teams.geospatial.members; }; } diff --git a/pkgs/development/python-modules/geoip/default.nix b/pkgs/development/python-modules/geoip/default.nix index d2af48f5049f83..39b2236ff5471e 100644 --- a/pkgs/development/python-modules/geoip/default.nix +++ b/pkgs/development/python-modules/geoip/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { # release tarball. doCheck = false; - meta = { + meta = with lib; { description = "MaxMind GeoIP Legacy Database - Python API"; homepage = "https://www.maxmind.com/"; - maintainers = with lib.maintainers; [ jluttine ]; - license = lib.licenses.lgpl21Plus; + maintainers = with maintainers; [ jluttine ]; + license = licenses.lgpl21Plus; }; } diff --git a/pkgs/development/python-modules/geoparquet/default.nix b/pkgs/development/python-modules/geoparquet/default.nix index d4b54610c506b5..feb682aa4b0106 100644 --- a/pkgs/development/python-modules/geoparquet/default.nix +++ b/pkgs/development/python-modules/geoparquet/default.nix @@ -38,10 +38,10 @@ buildPythonPackage { doCheck = false; # no tests - meta = { + meta = with lib; { description = "API between Parquet files and GeoDataFrames for fast input/output of GIS data"; homepage = "https://github.com/darcy-r/geoparquet-python"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/git-dummy/default.nix b/pkgs/development/python-modules/git-dummy/default.nix index 2fffa2d6e06cc8..c532987cf3f7e5 100644 --- a/pkgs/development/python-modules/git-dummy/default.nix +++ b/pkgs/development/python-modules/git-dummy/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { --zsh <($out/bin/git-dummy --show-completion zsh) ''; - meta = { + meta = with lib; { homepage = "https://github.com/initialcommit-com/git-dummy"; description = "Generate dummy Git repositories populated with the desired number of commits, branches, and structure"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ mathiassven ]; + license = licenses.gpl2Only; + maintainers = with maintainers; [ mathiassven ]; }; } diff --git a/pkgs/development/python-modules/git-find-repos/default.nix b/pkgs/development/python-modules/git-find-repos/default.nix index d97d153ee6c110..07ddb238c6aa9d 100644 --- a/pkgs/development/python-modules/git-find-repos/default.nix +++ b/pkgs/development/python-modules/git-find-repos/default.nix @@ -18,11 +18,11 @@ buildPythonPackage rec { build-system = [ setuptools-scm ]; - meta = { + meta = with lib; { description = "Simple CLI tool for finding git repositories"; homepage = "https://github.com/acroz/git-find-repos"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "git-find-repos"; - maintainers = [ lib.maintainers.yajo ]; + maintainers = [ maintainers.yajo ]; }; } diff --git a/pkgs/development/python-modules/glob2/default.nix b/pkgs/development/python-modules/glob2/default.nix index 6ceaca44406b43..e198a16087ad26 100644 --- a/pkgs/development/python-modules/glob2/default.nix +++ b/pkgs/development/python-modules/glob2/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { ${python.interpreter} test.py ''; - meta = { + meta = with lib; { description = "Version of the glob module that can capture patterns and supports recursive wildcards"; homepage = "https://github.com/miracle2k/python-glob2/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.bsd3; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/glyphslib/default.nix b/pkgs/development/python-modules/glyphslib/default.nix index 47c19dbb216ddb..5d55f67b0ed9c3 100644 --- a/pkgs/development/python-modules/glyphslib/default.nix +++ b/pkgs/development/python-modules/glyphslib/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { "tests/builder/interpolation_test.py" # this test tries to use a font that previous test should made ]; - meta = { + meta = with lib; { description = "Bridge from Glyphs source files (.glyphs) to UFOs and Designspace files via defcon and designspaceLib"; homepage = "https://github.com/googlefonts/glyphsLib"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.BarinovMaxim ]; + license = licenses.asl20; + maintainers = [ maintainers.BarinovMaxim ]; }; } diff --git a/pkgs/development/python-modules/gmqtt/default.nix b/pkgs/development/python-modules/gmqtt/default.nix index 9ae3471bc6393f..db805f692824c5 100644 --- a/pkgs/development/python-modules/gmqtt/default.nix +++ b/pkgs/development/python-modules/gmqtt/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "gmqtt" ]; - meta = { + meta = with lib; { description = "Python MQTT v5.0 async client"; homepage = "https://github.com/wialon/gmqtt"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.mit; + maintainers = with maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/goslide-api/default.nix b/pkgs/development/python-modules/goslide-api/default.nix index 20972a6575624f..7ad94fb001f17e 100644 --- a/pkgs/development/python-modules/goslide-api/default.nix +++ b/pkgs/development/python-modules/goslide-api/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # upstream has no tests doCheck = false; - meta = { + meta = with lib; { description = "Python API to utilise the Slide Open Cloud and Local API"; homepage = "https://github.com/ualex73/goslide-api"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.asl20; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/gradio-pdf/default.nix b/pkgs/development/python-modules/gradio-pdf/default.nix index 0bcfd0586459e7..921cfe030dbfd1 100644 --- a/pkgs/development/python-modules/gradio-pdf/default.nix +++ b/pkgs/development/python-modules/gradio-pdf/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { # tested in `gradio` doCheck = false; - meta = { + meta = with lib; { description = "Python library for easily interacting with trained machine learning models"; homepage = "https://pypi.org/project/gradio-pdf/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ pbsds ]; + license = licenses.asl20; + maintainers = with maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/grammalecte/default.nix b/pkgs/development/python-modules/grammalecte/default.nix index 5167b6112731b0..92071f7c0bd29f 100644 --- a/pkgs/development/python-modules/grammalecte/default.nix +++ b/pkgs/development/python-modules/grammalecte/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { disabled = !isPy3k; - meta = { + meta = with lib; { description = "Open source grammar and typographic corrector for the French language"; homepage = "https://grammalecte.net"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ apeyroux ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ apeyroux ]; }; } diff --git a/pkgs/development/python-modules/greatfet/default.nix b/pkgs/development/python-modules/greatfet/default.nix index bbe8269f120319..2e8988aabf4815 100644 --- a/pkgs/development/python-modules/greatfet/default.nix +++ b/pkgs/development/python-modules/greatfet/default.nix @@ -55,13 +55,13 @@ buildPythonPackage rec { # not available in the build sandbox. doCheck = false; - meta = { + meta = with lib; { description = "Hardware hacking with the greatfet"; homepage = "https://greatscottgadgets.com/greatfet"; - license = lib.licenses.bsd3; - platforms = lib.platforms.all; + license = licenses.bsd3; + platforms = platforms.all; mainProgram = "gf"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ mog msanft ]; diff --git a/pkgs/development/python-modules/grep-ast/default.nix b/pkgs/development/python-modules/grep-ast/default.nix index 01d164bacdc135..5eef99d3e3fb76 100644 --- a/pkgs/development/python-modules/grep-ast/default.nix +++ b/pkgs/development/python-modules/grep-ast/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "grep_ast" ]; - meta = { + meta = with lib; { homepage = "https://github.com/paul-gauthier/grep-ast"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ greg ]; + license = licenses.asl20; + maintainers = with maintainers; [ greg ]; description = "Python implementation of the ast-grep tool"; mainProgram = "grep-ast"; }; diff --git a/pkgs/development/python-modules/gudhi/default.nix b/pkgs/development/python-modules/gudhi/default.nix index 064758489e2666..397902b121c0a4 100644 --- a/pkgs/development/python-modules/gudhi/default.nix +++ b/pkgs/development/python-modules/gudhi/default.nix @@ -83,14 +83,14 @@ buildPythonPackage rec { "gudhi.clustering" ]; - meta = { + meta = with lib; { description = "Library for Computational Topology and Topological Data Analysis (TDA)"; homepage = "https://gudhi.inria.fr/python/latest/"; downloadPage = "https://github.com/GUDHI/gudhi-devel"; - license = with lib.licenses; [ + license = with licenses; [ mit gpl3 ]; - maintainers = with lib.maintainers; [ yl3dy ]; + maintainers = with maintainers; [ yl3dy ]; }; } diff --git a/pkgs/development/python-modules/habanero/default.nix b/pkgs/development/python-modules/habanero/default.nix index 0de8a80f978eb2..f5d26dacdcb74a 100644 --- a/pkgs/development/python-modules/habanero/default.nix +++ b/pkgs/development/python-modules/habanero/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { # almost the entirety of the test suite makes network calls pytestFlagsArray = [ "test/test-filters.py" ]; - meta = { + meta = with lib; { description = "Python interface to Library Genesis"; homepage = "https://habanero.readthedocs.io/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nico202 ]; + license = licenses.mit; + maintainers = with maintainers; [ nico202 ]; }; } diff --git a/pkgs/development/python-modules/harlequin-bigquery/default.nix b/pkgs/development/python-modules/harlequin-bigquery/default.nix index e43e00a4b3b270..57447209dcddbc 100644 --- a/pkgs/development/python-modules/harlequin-bigquery/default.nix +++ b/pkgs/development/python-modules/harlequin-bigquery/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { "harlequin" ]; - meta = { + meta = with lib; { description = "A Harlequin adapter for Google BigQuery"; homepage = "https://pypi.org/project/harlequin-bigquery/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pcboy ]; + license = licenses.mit; + maintainers = with maintainers; [ pcboy ]; }; } diff --git a/pkgs/development/python-modules/harlequin-postgres/default.nix b/pkgs/development/python-modules/harlequin-postgres/default.nix index 65ec22fb04aab0..3c530e1ea74443 100644 --- a/pkgs/development/python-modules/harlequin-postgres/default.nix +++ b/pkgs/development/python-modules/harlequin-postgres/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { "harlequin" ]; - meta = { + meta = with lib; { description = "A Harlequin adapter for Postgres"; homepage = "https://pypi.org/project/harlequin-postgres/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pcboy ]; + license = licenses.mit; + maintainers = with maintainers; [ pcboy ]; }; } diff --git a/pkgs/development/python-modules/hass-splunk/default.nix b/pkgs/development/python-modules/hass-splunk/default.nix index a336bac3a42a36..597c94db645e29 100644 --- a/pkgs/development/python-modules/hass-splunk/default.nix +++ b/pkgs/development/python-modules/hass-splunk/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # upstream has no tests doCheck = false; - meta = { + meta = with lib; { description = "Async single threaded connector to Splunk HEC using an asyncio session"; homepage = "https://github.com/Bre77/hass_splunk"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/hcs-utils/default.nix b/pkgs/development/python-modules/hcs-utils/default.nix index 203f98503f62e3..497cc3b2d90062 100644 --- a/pkgs/development/python-modules/hcs-utils/default.nix +++ b/pkgs/development/python-modules/hcs-utils/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Library collecting some useful snippets"; homepage = "https://gitlab.com/hcs/hcs_utils"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ lovek323 ]; + license = licenses.isc; + maintainers = with maintainers; [ lovek323 ]; }; } diff --git a/pkgs/development/python-modules/heatmiserv3/default.nix b/pkgs/development/python-modules/heatmiserv3/default.nix index ee926a0bebbcca..81bec73b16fdf6 100644 --- a/pkgs/development/python-modules/heatmiserv3/default.nix +++ b/pkgs/development/python-modules/heatmiserv3/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Library to interact with Heatmiser Themostats using V3 protocol"; homepage = "https://github.com/andylockran/heatmiserV3"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/hepunits/default.nix b/pkgs/development/python-modules/hepunits/default.nix index abd89713aa056e..e869d1262a9ba4 100644 --- a/pkgs/development/python-modules/hepunits/default.nix +++ b/pkgs/development/python-modules/hepunits/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Units and constants in the HEP system of units"; homepage = "https://github.com/scikit-hep/hepunits"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.bsd3; + maintainers = with maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/hikari-crescent/default.nix b/pkgs/development/python-modules/hikari-crescent/default.nix index 1528576f4a65b9..25e6cc7caf8ef9 100644 --- a/pkgs/development/python-modules/hikari-crescent/default.nix +++ b/pkgs/development/python-modules/hikari-crescent/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { disabledTests = [ "test_handle_resp" ]; - meta = { + meta = with lib; { description = "A command handler for Hikari that keeps your project neat and tidy"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/hikari-crescent/hikari-crescent"; - maintainers = with lib.maintainers; [ sigmanificient ]; + maintainers = with maintainers; [ sigmanificient ]; mainProgram = "hikari-crescent"; }; } diff --git a/pkgs/development/python-modules/html-table-parser-python3/default.nix b/pkgs/development/python-modules/html-table-parser-python3/default.nix index c4f3f8fc46aaf6..980e11cb4c0a87 100644 --- a/pkgs/development/python-modules/html-table-parser-python3/default.nix +++ b/pkgs/development/python-modules/html-table-parser-python3/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "html_table_parser" ]; - meta = { + meta = with lib; { description = "Small and simple HTML table parser not requiring any external dependency."; homepage = "https://github.com/schmijos/html-table-parser-python3"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ pyrox0 ]; + license = licenses.agpl3Only; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/development/python-modules/html5lib/default.nix b/pkgs/development/python-modules/html5lib/default.nix index 0d294f93b7a64a..d870f222281877 100644 --- a/pkgs/development/python-modules/html5lib/default.nix +++ b/pkgs/development/python-modules/html5lib/default.nix @@ -42,7 +42,7 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = { + meta = with lib; { homepage = "https://github.com/html5lib/html5lib-python"; downloadPage = "https://github.com/html5lib/html5lib-python/releases"; description = "HTML parser based on WHAT-WG HTML5 specification"; @@ -51,8 +51,8 @@ buildPythonPackage rec { conform to the WHATWG HTML specification, as is implemented by all major web browsers. ''; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ domenkozar prikhi ]; diff --git a/pkgs/development/python-modules/http-ece/default.nix b/pkgs/development/python-modules/http-ece/default.nix index d4010abc524266..a13ec29989c643 100644 --- a/pkgs/development/python-modules/http-ece/default.nix +++ b/pkgs/development/python-modules/http-ece/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pytest-cov-stub ]; - meta = { + meta = with lib; { description = "Encipher HTTP Messages"; homepage = "https://github.com/web-push-libs/encrypted-content-encoding"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ peterhoeg ]; + license = licenses.mit; + maintainers = with maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/development/python-modules/huepy/default.nix b/pkgs/development/python-modules/huepy/default.nix index 541011ea2b50eb..5220f8958462c9 100644 --- a/pkgs/development/python-modules/huepy/default.nix +++ b/pkgs/development/python-modules/huepy/default.nix @@ -23,11 +23,11 @@ buildPythonPackage rec { # no test doCheck = false; - meta = { + meta = with lib; { description = "Print awesomely in terminals"; homepage = "https://pypi.org/project/huepy/"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ tochiaha ]; - platforms = lib.platforms.all; + license = licenses.gpl3Only; + maintainers = with maintainers; [ tochiaha ]; + platforms = platforms.all; }; } diff --git a/pkgs/development/python-modules/humblewx/default.nix b/pkgs/development/python-modules/humblewx/default.nix index 2a60e7e97212c4..8ceae7b4d55b2b 100644 --- a/pkgs/development/python-modules/humblewx/default.nix +++ b/pkgs/development/python-modules/humblewx/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "humblewx" ]; - meta = { + meta = with lib; { homepage = "https://github.com/thetimelineproj/humblewx"; description = "Library that simplifies creating user interfaces with wxPython"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ davidak ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ davidak ]; }; } diff --git a/pkgs/development/python-modules/ilcli/default.nix b/pkgs/development/python-modules/ilcli/default.nix index f2cb741931db99..1958edbcfda404 100644 --- a/pkgs/development/python-modules/ilcli/default.nix +++ b/pkgs/development/python-modules/ilcli/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ilcli" ]; - meta = { + meta = with lib; { description = "I like command-line interfaces"; homepage = "https://github.com/cloudant/ilcli"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ tochiaha ]; + license = licenses.asl20; + maintainers = with maintainers; [ tochiaha ]; }; } diff --git a/pkgs/development/python-modules/importmagic/default.nix b/pkgs/development/python-modules/importmagic/default.nix index 0d3ad9f770d7f2..2a77a1a9aa3b25 100644 --- a/pkgs/development/python-modules/importmagic/default.nix +++ b/pkgs/development/python-modules/importmagic/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "importmagic" ]; - meta = { + meta = with lib; { description = "Python Import Magic - automagically add, remove and manage imports"; homepage = "https://github.com/alecthomas/importmagic"; - license = lib.licenses.bsd0; - maintainers = with lib.maintainers; [ onny ]; + license = licenses.bsd0; + maintainers = with maintainers; [ onny ]; }; } diff --git a/pkgs/development/python-modules/inequality/default.nix b/pkgs/development/python-modules/inequality/default.nix index 3e017711930995..2a7c44eb9b68ff 100644 --- a/pkgs/development/python-modules/inequality/default.nix +++ b/pkgs/development/python-modules/inequality/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "inequality" ]; - meta = { + meta = with lib; { description = "Spatial inequality analysis"; homepage = "https://github.com/pysal/inequality"; - license = lib.licenses.bsd3; - maintainers = lib.teams.geospatial.members; + license = licenses.bsd3; + maintainers = teams.geospatial.members; }; } diff --git a/pkgs/development/python-modules/inference-gym/default.nix b/pkgs/development/python-modules/inference-gym/default.nix index dd1a854b92c923..3b260faf673c1f 100644 --- a/pkgs/development/python-modules/inference-gym/default.nix +++ b/pkgs/development/python-modules/inference-gym/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { # The package does not ship any test. doCheck = false; - meta = { + meta = with lib; { description = "Place to exercise inference methods to help make them faster, leaner and more robust"; homepage = "https://github.com/tensorflow/probability/tree/main/spinoffs/inference_gym"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.asl20; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/inflection/default.nix b/pkgs/development/python-modules/inflection/default.nix index ed8cc71addac6b..2afab19f47bd11 100644 --- a/pkgs/development/python-modules/inflection/default.nix +++ b/pkgs/development/python-modules/inflection/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { # Suppress overly verbose output if tests run successfully checkPhase = "pytest >/dev/null || pytest"; - meta = { + meta = with lib; { homepage = "https://github.com/jpvanhal/inflection"; description = "Port of Ruby on Rails inflector to Python"; - maintainers = with lib.maintainers; [ ilya-kolpakov ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ ilya-kolpakov ]; + license = licenses.mit; }; } diff --git a/pkgs/development/python-modules/inkex/default.nix b/pkgs/development/python-modules/inkex/default.nix index ae013099ba753f..63826167d1141a 100644 --- a/pkgs/development/python-modules/inkex/default.nix +++ b/pkgs/development/python-modules/inkex/default.nix @@ -93,10 +93,10 @@ buildPythonPackage { --replace-fail 'scour = "^0.37"' 'scour = ">=0.37"' ''; - meta = { + meta = with lib; { description = "Library for manipulating SVG documents which is the basis for Inkscape extensions"; homepage = "https://gitlab.com/inkscape/extensions"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/inotify/default.nix b/pkgs/development/python-modules/inotify/default.nix index b5e3fd5acff8c5..3e89219f251e6e 100644 --- a/pkgs/development/python-modules/inotify/default.nix +++ b/pkgs/development/python-modules/inotify/default.nix @@ -36,10 +36,10 @@ buildPythonPackage { "test__renames" ]; - meta = { + meta = with lib; { homepage = "https://github.com/dsoprea/PyInotify"; description = "Monitor filesystems events on Linux platforms with inotify"; - license = lib.licenses.gpl2; - platforms = lib.platforms.linux; + license = licenses.gpl2; + platforms = platforms.linux; }; } diff --git a/pkgs/development/python-modules/insightface/default.nix b/pkgs/development/python-modules/insightface/default.nix index 41be9460fdedb3..e9e037b04b57eb 100644 --- a/pkgs/development/python-modules/insightface/default.nix +++ b/pkgs/development/python-modules/insightface/default.nix @@ -82,11 +82,11 @@ buildPythonPackage rec { doCheck = false; # Upstream has no tests - meta = { + meta = with lib; { description = "State-of-the-art 2D and 3D Face Analysis Project"; mainProgram = "insightface-cli"; homepage = "https://github.com/deepinsight/insightface"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ oddlama ]; + license = licenses.mit; + maintainers = with maintainers; [ oddlama ]; }; } diff --git a/pkgs/development/python-modules/intelhex/default.nix b/pkgs/development/python-modules/intelhex/default.nix index 7cb117943ed731..90b14ffaf658b0 100644 --- a/pkgs/development/python-modules/intelhex/default.nix +++ b/pkgs/development/python-modules/intelhex/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "intelhex" ]; - meta = { + meta = with lib; { homepage = "https://github.com/bialix/intelhex"; description = "Python library for Intel HEX files manipulations"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ pjones ]; + license = licenses.bsd3; + maintainers = with maintainers; [ pjones ]; }; } diff --git a/pkgs/development/python-modules/interface-meta/default.nix b/pkgs/development/python-modules/interface-meta/default.nix index 34754618b5a5b1..9618a818a0e989 100644 --- a/pkgs/development/python-modules/interface-meta/default.nix +++ b/pkgs/development/python-modules/interface-meta/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { checkInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { homepage = "https://github.com/matthewwardrop/interface_meta"; description = "Convenient way to expose an extensible API with enforced method signatures and consistent documentation"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ swflint ]; + license = licenses.mit; + maintainers = with maintainers; [ swflint ]; }; } diff --git a/pkgs/development/python-modules/iosbackup/default.nix b/pkgs/development/python-modules/iosbackup/default.nix index 41904c36336c6a..c15c86c0c74ac6 100644 --- a/pkgs/development/python-modules/iosbackup/default.nix +++ b/pkgs/development/python-modules/iosbackup/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "iOSbackup" ]; - meta = { + meta = with lib; { description = "Reads and extracts files from password-encrypted iOS backups"; homepage = "https://github.com/avibrazil/iOSbackup"; - license = lib.licenses.lgpl2Only; - maintainers = with lib.maintainers; [ PapayaJackal ]; + license = licenses.lgpl2Only; + maintainers = with maintainers; [ PapayaJackal ]; }; } diff --git a/pkgs/development/python-modules/ipydatawidgets/default.nix b/pkgs/development/python-modules/ipydatawidgets/default.nix index cacce82794b83f..69d3b3a19844e7 100644 --- a/pkgs/development/python-modules/ipydatawidgets/default.nix +++ b/pkgs/development/python-modules/ipydatawidgets/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { nbval ]; - meta = { + meta = with lib; { description = "Widgets to help facilitate reuse of large datasets across different widgets"; homepage = "https://github.com/vidartf/ipydatawidgets"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ bcdarwin ]; + license = licenses.bsd3; + maintainers = with maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/ipynbname/default.nix b/pkgs/development/python-modules/ipynbname/default.nix index 24e8f73930989c..7fb2dc8700f16b 100644 --- a/pkgs/development/python-modules/ipynbname/default.nix +++ b/pkgs/development/python-modules/ipynbname/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { # upstream has no tests doCheck = false; - meta = { + meta = with lib; { description = "Simply returns either notebook filename or the full path to the notebook"; homepage = "https://github.com/msm1089/ipynbname"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/islpy/default.nix b/pkgs/development/python-modules/islpy/default.nix index 08554808eb75ab..763964a1097090 100644 --- a/pkgs/development/python-modules/islpy/default.nix +++ b/pkgs/development/python-modules/islpy/default.nix @@ -63,10 +63,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "islpy" ]; - meta = { + meta = with lib; { description = "Python wrapper around isl, an integer set library"; homepage = "https://github.com/inducer/islpy"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tomasajt ]; + license = licenses.mit; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/development/python-modules/jalali-core/default.nix b/pkgs/development/python-modules/jalali-core/default.nix index 69c613d0417c0c..7cebfc86e2ad1a 100644 --- a/pkgs/development/python-modules/jalali-core/default.nix +++ b/pkgs/development/python-modules/jalali-core/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jalali_core" ]; - meta = { + meta = with lib; { description = "Module to convert Gregorian to Jalali and inverse dates"; homepage = "https://pypi.org/project/jalali-core/"; - license = lib.licenses.lgpl2Only; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.lgpl2Only; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/jax/default.nix b/pkgs/development/python-modules/jax/default.nix index 99154a8ea86ae9..18e517f0d62039 100644 --- a/pkgs/development/python-modules/jax/default.nix +++ b/pkgs/development/python-modules/jax/default.nix @@ -192,14 +192,14 @@ buildPythonPackage rec { # updater fails to pick the correct branch passthru.skipBulkUpdate = true; - meta = { + meta = with lib; { description = "Source-built JAX frontend: differentiate, compile, and transform Numpy code"; longDescription = '' This is the JAX frontend package, it's meant to be used together with one of the jaxlib implementations, e.g. `python3Packages.jaxlib`, `python3Packages.jaxlib-bin`, or `python3Packages.jaxlibWithCuda`. ''; homepage = "https://github.com/google/jax"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ samuela ]; + license = licenses.asl20; + maintainers = with maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/jaxlib/bin.nix b/pkgs/development/python-modules/jaxlib/bin.nix index dd82358f03b786..3582a92c021f5f 100644 --- a/pkgs/development/python-modules/jaxlib/bin.nix +++ b/pkgs/development/python-modules/jaxlib/bin.nix @@ -157,17 +157,17 @@ buildPythonPackage { pythonImportsCheck = [ "jaxlib" ]; - meta = { + meta = with lib; { description = "Prebuilt jaxlib backend from PyPi"; homepage = "https://github.com/google/jax"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ samuela ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.asl20; + maintainers = with maintainers; [ samuela ]; badPlatforms = [ # Fails at pythonImportsCheckPhase: # ...-python-imports-check-hook.sh/nix-support/setup-hook: line 10: 28017 Illegal instruction: 4 # /nix/store/5qpssbvkzfh73xih07xgmpkj5r565975-python3-3.11.9/bin/python3.11 -c - # 'import os; import importlib; list(map(lambda mod: importlib.import_module(mod), os.environ["pythonImportsCheck"].split()))' + # 'import os; import importlib; list(map(lambda mod: importimport_module(mod), os.environ["pythonImportsCheck"].split()))' "x86_64-darwin" ]; }; diff --git a/pkgs/development/python-modules/jdcal/default.nix b/pkgs/development/python-modules/jdcal/default.nix index 7303d46384de6f..bbd3ba3438068e 100644 --- a/pkgs/development/python-modules/jdcal/default.nix +++ b/pkgs/development/python-modules/jdcal/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { py.test ''; - meta = { + meta = with lib; { description = "Module containing functions for converting between Julian dates and calendar dates"; homepage = "https://github.com/phn/jdcal"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ lihop ]; + license = licenses.bsd2; + maintainers = with maintainers; [ lihop ]; }; } diff --git a/pkgs/development/python-modules/jenkins-job-builder/default.nix b/pkgs/development/python-modules/jenkins-job-builder/default.nix index a7b5e70272676e..595b6d912aca37 100644 --- a/pkgs/development/python-modules/jenkins-job-builder/default.nix +++ b/pkgs/development/python-modules/jenkins-job-builder/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pytest-mock ]; - meta = { + meta = with lib; { description = "Jenkins Job Builder is a system for configuring Jenkins jobs using simple YAML files stored in Git"; mainProgram = "jenkins-jobs"; homepage = "https://jenkins-job-builder.readthedocs.io/en/latest/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; + license = licenses.asl20; + maintainers = with maintainers; [ bot-wxt1221 ]; }; } diff --git a/pkgs/development/python-modules/jianpu-ly/default.nix b/pkgs/development/python-modules/jianpu-ly/default.nix index 2469f6569f3541..1bb982aef375aa 100644 --- a/pkgs/development/python-modules/jianpu-ly/default.nix +++ b/pkgs/development/python-modules/jianpu-ly/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { # no tests in shipped with upstream doCheck = false; - meta = { + meta = with lib; { homepage = "https://ssb22.user.srcf.net/mwrhome/jianpu-ly.html"; description = "Assists with printing jianpu"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ifurther ]; + license = licenses.asl20; + maintainers = with maintainers; [ ifurther ]; }; } diff --git a/pkgs/development/python-modules/jinja2-strcase/default.nix b/pkgs/development/python-modules/jinja2-strcase/default.nix index 35b335ebf3139d..76c7feb3984273 100644 --- a/pkgs/development/python-modules/jinja2-strcase/default.nix +++ b/pkgs/development/python-modules/jinja2-strcase/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = { + meta = with lib; { homepage = "https://github.com/marchmiel/jinja2-strcase"; description = "Library for converting string case in Jinja2 templates"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ crimeminister ]; + license = licenses.mit; + maintainers = with maintainers; [ crimeminister ]; }; } diff --git a/pkgs/development/python-modules/jsonable/default.nix b/pkgs/development/python-modules/jsonable/default.nix index 951678e9edc2a3..1678c2f040ab61 100644 --- a/pkgs/development/python-modules/jsonable/default.nix +++ b/pkgs/development/python-modules/jsonable/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsonable" ]; - meta = { + meta = with lib; { description = "Provides an abstract base class and utilities for defining trivially JSONable python objects"; homepage = "https://github.com/halfak/python-jsonable"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.mit; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/jsonxs/default.nix b/pkgs/development/python-modules/jsonxs/default.nix index cf71095cf765e8..5559ebd74b4f14 100644 --- a/pkgs/development/python-modules/jsonxs/default.nix +++ b/pkgs/development/python-modules/jsonxs/default.nix @@ -22,10 +22,10 @@ buildPythonPackage { build-system = [ setuptools ]; - meta = { + meta = with lib; { description = "A python library that uses path expression strings to get and set values in JSON"; homepage = "https://github.com/fboender/jsonxs"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.tie ]; + license = licenses.mit; + maintainers = [ maintainers.tie ]; }; } diff --git a/pkgs/development/python-modules/jupyter-collaboration-ui/default.nix b/pkgs/development/python-modules/jupyter-collaboration-ui/default.nix index ffa3cd0388f069..d6f53076458bb7 100644 --- a/pkgs/development/python-modules/jupyter-collaboration-ui/default.nix +++ b/pkgs/development/python-modules/jupyter-collaboration-ui/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { passthru.tests = jupyter-collaboration.tests; - meta = { + meta = with lib; { description = "JupyterLab/Jupyter Notebook 7+ extension providing user interface integration for real time collaboration"; homepage = "https://github.com/jupyterlab/jupyter-collaboration/tree/main/projects/jupyter-collaboration-ui"; - license = lib.licenses.bsd3; - maintainers = lib.teams.jupyter.members; + license = licenses.bsd3; + maintainers = teams.jupyter.members; }; } diff --git a/pkgs/development/python-modules/jupyter-docprovider/default.nix b/pkgs/development/python-modules/jupyter-docprovider/default.nix index 21d7d9dc68731c..1e9028d3896ae7 100644 --- a/pkgs/development/python-modules/jupyter-docprovider/default.nix +++ b/pkgs/development/python-modules/jupyter-docprovider/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { passthru.tests = jupyter-collaboration.tests; - meta = { + meta = with lib; { description = "JupyterLab/Jupyter Notebook 7+ extension integrating collaborative shared models"; homepage = "https://github.com/jupyterlab/jupyter-collaboration/tree/main/projects/jupyter-docprovider"; - license = lib.licenses.bsd3; - maintainers = lib.teams.jupyter.members; + license = licenses.bsd3; + maintainers = teams.jupyter.members; }; } diff --git a/pkgs/development/python-modules/jupyter-server-ydoc/default.nix b/pkgs/development/python-modules/jupyter-server-ydoc/default.nix index bdae4a8669ec24..2e376870f76f73 100644 --- a/pkgs/development/python-modules/jupyter-server-ydoc/default.nix +++ b/pkgs/development/python-modules/jupyter-server-ydoc/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { passthru.tests = jupyter-collaboration.tests; - meta = { + meta = with lib; { description = "Jupyter-server extension integrating collaborative shared models"; homepage = "https://github.com/jupyterlab/jupyter-collaboration/tree/main/projects/jupyter-server-ydoc"; - license = lib.licenses.bsd3; - maintainers = lib.teams.jupyter.members; + license = licenses.bsd3; + maintainers = teams.jupyter.members; }; } diff --git a/pkgs/development/python-modules/jupyter-telemetry/default.nix b/pkgs/development/python-modules/jupyter-telemetry/default.nix index 660890c55e67a3..0fa99eb53d308c 100644 --- a/pkgs/development/python-modules/jupyter-telemetry/default.nix +++ b/pkgs/development/python-modules/jupyter-telemetry/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { "test_unique_logger_instances" ]; - meta = { + meta = with lib; { description = "Telemetry for Jupyter Applications and extensions"; homepage = "https://jupyter-telemetry.readthedocs.io/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ chiroptical ]; + license = licenses.bsd3; + maintainers = with maintainers; [ chiroptical ]; }; } diff --git a/pkgs/development/python-modules/jupyterlab-execute-time/default.nix b/pkgs/development/python-modules/jupyterlab-execute-time/default.nix index 3734c7d0bcd5db..84d757aba5e9d2 100644 --- a/pkgs/development/python-modules/jupyterlab-execute-time/default.nix +++ b/pkgs/development/python-modules/jupyterlab-execute-time/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jupyterlab_execute_time" ]; - meta = { + meta = with lib; { description = "JupyterLab extension for displaying cell timings"; homepage = "https://github.com/deshaw/jupyterlab-execute-time"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.vglfr ]; + license = licenses.bsd3; + maintainers = [ maintainers.vglfr ]; }; } diff --git a/pkgs/development/python-modules/kaleido/default.nix b/pkgs/development/python-modules/kaleido/default.nix index ef889a0aa71527..bdf92d8103d7f3 100644 --- a/pkgs/development/python-modules/kaleido/default.nix +++ b/pkgs/development/python-modules/kaleido/default.nix @@ -101,7 +101,7 @@ buildPythonPackage rec { kaleido = callPackage ./tests.nix { }; }; - meta = { + meta = with lib; { description = "Fast static image export for web-based visualization libraries with zero dependencies"; homepage = "https://github.com/plotly/Kaleido"; changelog = "https://github.com/plotly/Kaleido/releases"; @@ -111,8 +111,8 @@ buildPythonPackage rec { "aarch64-linux" "aarch64-darwin" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; # Trust me, I'm not happy. But after literal hours of trying to reverse-engineer their build system and getting nowhere, I'll use the stupid binaries >:( - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pandapip1 ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; # Trust me, I'm not happy. But after literal hours of trying to reverse-engineer their build system and getting nowhere, I'll use the stupid binaries >:( + license = licenses.mit; + maintainers = with maintainers; [ pandapip1 ]; }; } diff --git a/pkgs/development/python-modules/kalshi-python/default.nix b/pkgs/development/python-modules/kalshi-python/default.nix index 80d31d760aeb67..5ed90ba2a19ebc 100644 --- a/pkgs/development/python-modules/kalshi-python/default.nix +++ b/pkgs/development/python-modules/kalshi-python/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { "kalshi_python" ]; - meta = { + meta = with lib; { description = "Official python SDK for algorithmic trading on Kalshi."; homepage = "https://github.com/Kalshi/kalshi-python"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ robbiebuxton ]; + license = licenses.asl20; + maintainers = with maintainers; [ robbiebuxton ]; }; } diff --git a/pkgs/development/python-modules/kde-material-you-colors/default.nix b/pkgs/development/python-modules/kde-material-you-colors/default.nix index b760e52c2a0d5d..ece1aa1ced860a 100644 --- a/pkgs/development/python-modules/kde-material-you-colors/default.nix +++ b/pkgs/development/python-modules/kde-material-you-colors/default.nix @@ -34,11 +34,11 @@ buildPythonPackage rec { doCheck = false; # no unittests, and would require KDE desktop environment - meta = { + meta = with lib; { homepage = "https://store.kde.org/p/2136963"; description = "Automatic color scheme generator from your wallpaper for KDE Plasma powered by Material You"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ sigmanificient ]; mainProgram = "kde-material-you-colors"; }; } diff --git a/pkgs/development/python-modules/keke/default.nix b/pkgs/development/python-modules/keke/default.nix index d6fdb3549d8003..6cfc6b7de5edec 100644 --- a/pkgs/development/python-modules/keke/default.nix +++ b/pkgs/development/python-modules/keke/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { "keke" ]; - meta = { + meta = with lib; { description = "Easy profiling in chrome trace format"; homepage = "https://pypi.org/project/keke/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ matthewcroughan ]; + license = licenses.mit; + maintainers = with maintainers; [ matthewcroughan ]; }; } diff --git a/pkgs/development/python-modules/keyring-pass/default.nix b/pkgs/development/python-modules/keyring-pass/default.nix index c52d51478e5f70..ae55e11256b7ba 100644 --- a/pkgs/development/python-modules/keyring-pass/default.nix +++ b/pkgs/development/python-modules/keyring-pass/default.nix @@ -66,10 +66,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "keyring_pass" ]; - meta = { + meta = with lib; { description = "Password Store (pass) backend for python's keyring"; homepage = "https://github.com/nazarewk/keyring_pass"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.nazarewk ]; + license = licenses.mit; + maintainers = [ maintainers.nazarewk ]; }; } diff --git a/pkgs/development/python-modules/keyrings-google-artifactregistry-auth/default.nix b/pkgs/development/python-modules/keyrings-google-artifactregistry-auth/default.nix index efdda3549d1255..2d2257abfbf18d 100644 --- a/pkgs/development/python-modules/keyrings-google-artifactregistry-auth/default.nix +++ b/pkgs/development/python-modules/keyrings-google-artifactregistry-auth/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { # upstream has no tests doCheck = false; - meta = { + meta = with lib; { changelog = "https://github.com/GoogleCloudPlatform/artifact-registry-python-tools/blob/main/HISTORY.md"; description = "Python package which allows you to configure keyring to interact with Python repositories stored in Artifact Registry"; homepage = "https://github.com/GoogleCloudPlatform/artifact-registry-python-tools"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ lovesegfault ]; + license = licenses.asl20; + maintainers = with maintainers; [ lovesegfault ]; }; } diff --git a/pkgs/development/python-modules/keyrings-passwordstore/default.nix b/pkgs/development/python-modules/keyrings-passwordstore/default.nix index 43f35253ddfc50..e100dfab99bc75 100644 --- a/pkgs/development/python-modules/keyrings-passwordstore/default.nix +++ b/pkgs/development/python-modules/keyrings-passwordstore/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "keyrings.passwordstore.backend" ]; - meta = { - license = lib.licenses.mit; + meta = with lib; { + license = licenses.mit; description = "Keyring backend for password-store"; homepage = "https://github.com/stv0g/keyrings.passwordstore"; - maintainers = [ lib.maintainers.shlevy ]; + maintainers = [ maintainers.shlevy ]; broken = true; # https://github.com/stv0g/keyrings.passwordstore/issues/2 }; } diff --git a/pkgs/development/python-modules/keyutils/default.nix b/pkgs/development/python-modules/keyutils/default.nix index e9b09ba1e0eceb..935e42ccb665eb 100644 --- a/pkgs/development/python-modules/keyutils/default.nix +++ b/pkgs/development/python-modules/keyutils/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { nativeBuildInputs = [ cython ]; nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Set of python bindings for keyutils"; homepage = "https://github.com/sassoftware/python-keyutils"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ primeos ]; + license = licenses.asl20; + maintainers = with maintainers; [ primeos ]; }; } diff --git a/pkgs/development/python-modules/kivy-garden-modernmenu/default.nix b/pkgs/development/python-modules/kivy-garden-modernmenu/default.nix index 53bf885ee1815b..8b140e2b46cd27 100644 --- a/pkgs/development/python-modules/kivy-garden-modernmenu/default.nix +++ b/pkgs/development/python-modules/kivy-garden-modernmenu/default.nix @@ -36,10 +36,10 @@ buildPythonPackage { export HOME=$PWD ''; - meta = { + meta = with lib; { description = "Stylized menu system for Kivy"; homepage = "https://github.com/kivy-garden/modernmenu"; - license = lib.licenses.mit; - maintainers = lib.teams.ngi.members; + license = licenses.mit; + maintainers = teams.ngi.members; }; } diff --git a/pkgs/development/python-modules/kneaddata/default.nix b/pkgs/development/python-modules/kneaddata/default.nix index f63218afaa4233..89f671d844e9f7 100644 --- a/pkgs/development/python-modules/kneaddata/default.nix +++ b/pkgs/development/python-modules/kneaddata/default.nix @@ -26,13 +26,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "kneaddata" ]; - meta = { + meta = with lib; { description = "Quality control tool for metagenomic and metatranscriptomic sequencing data"; homepage = "https://github.com/biobakery/kneaddata"; changelog = "https://github.com/biobakery/kneaddata/releases"; - license = lib.licenses.mit; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ pandapip1 ]; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ pandapip1 ]; mainProgram = "kneaddata"; }; } diff --git a/pkgs/development/python-modules/langchain-standard-tests/default.nix b/pkgs/development/python-modules/langchain-standard-tests/default.nix index 34a7b5c2adccc8..c6b75f5bc9e381 100644 --- a/pkgs/development/python-modules/langchain-standard-tests/default.nix +++ b/pkgs/development/python-modules/langchain-standard-tests/default.nix @@ -46,11 +46,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = { + meta = with lib; { description = "Build context-aware reasoning applications"; homepage = "https://github.com/langchain-ai/langchain"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ natsukium sarahec ]; diff --git a/pkgs/development/python-modules/latex2pydata/default.nix b/pkgs/development/python-modules/latex2pydata/default.nix index e4bbd47c0eb034..3b8aaad16c0a00 100644 --- a/pkgs/development/python-modules/latex2pydata/default.nix +++ b/pkgs/development/python-modules/latex2pydata/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = { + meta = with lib; { homepage = "https://github.com/gpoore/latex2pydata"; description = "Send data from LaTeX to Python using Python literal format"; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ romildo ]; + license = licenses.bsd3; + platforms = platforms.unix; + maintainers = with maintainers; [ romildo ]; }; } diff --git a/pkgs/development/python-modules/ldap3-bleeding-edge/default.nix b/pkgs/development/python-modules/ldap3-bleeding-edge/default.nix index 23733a9be2fac1..ebfd37d010171e 100644 --- a/pkgs/development/python-modules/ldap3-bleeding-edge/default.nix +++ b/pkgs/development/python-modules/ldap3-bleeding-edge/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { # Tests require network access doCheck = false; - meta = { + meta = with lib; { description = "Strictly RFC 4510 conforming LDAP V3 client library (bleeding edge)"; homepage = "https://pypi.org/project/ldap3-bleeding-edge/"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/leanblueprint/default.nix b/pkgs/development/python-modules/leanblueprint/default.nix index 20a8a51b0a7d23..dabeea9c2ddc91 100644 --- a/pkgs/development/python-modules/leanblueprint/default.nix +++ b/pkgs/development/python-modules/leanblueprint/default.nix @@ -45,10 +45,10 @@ buildPythonPackage { pythonImportsCheck = [ "leanblueprint" ]; - meta = { + meta = with lib; { description = "This plasTeX plugin allowing to write blueprints for Lean 4 projects"; homepage = "https://github.com/PatrickMassot/leanblueprint"; - maintainers = with lib.maintainers; [ niklashh ]; - license = lib.licenses.asl20; + maintainers = with maintainers; [ niklashh ]; + license = licenses.asl20; }; } diff --git a/pkgs/development/python-modules/legacy-cgi/default.nix b/pkgs/development/python-modules/legacy-cgi/default.nix index a6c4c6ee4bca94..f59e16abcf4c20 100644 --- a/pkgs/development/python-modules/legacy-cgi/default.nix +++ b/pkgs/development/python-modules/legacy-cgi/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Fork of the standard library cgi and cgitb modules, being deprecated in PEP-594"; homepage = "https://github.com/jackrosenthal/legacy-cgi"; - license = lib.licenses.psfl; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.psfl; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/lektricowifi/default.nix b/pkgs/development/python-modules/lektricowifi/default.nix index 39e2f0d62c4732..49c907e7e559f0 100644 --- a/pkgs/development/python-modules/lektricowifi/default.nix +++ b/pkgs/development/python-modules/lektricowifi/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { # AttributeError: type object 'InfoForCharger' has no attribute 'from_dict' doCheck = false; - meta = { + meta = with lib; { description = "Communication with Lektrico's chargers"; homepage = "https://github.com/Lektrico/lektricowifi"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/libmambapy/default.nix b/pkgs/development/python-modules/libmambapy/default.nix index aa7329649ce5a7..080446a826551f 100644 --- a/pkgs/development/python-modules/libmambapy/default.nix +++ b/pkgs/development/python-modules/libmambapy/default.nix @@ -88,10 +88,10 @@ buildPythonPackage rec { "libmambapy.bindings" ]; - meta = { + meta = with lib; { description = "Python library for the fast Cross-Platform Package Manager"; homepage = "https://github.com/mamba-org/mamba"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.ericthemagician ]; + license = licenses.bsd3; + maintainers = [ maintainers.ericthemagician ]; }; } diff --git a/pkgs/development/python-modules/libpysal/default.nix b/pkgs/development/python-modules/libpysal/default.nix index 346612dac3cad5..703454ed31c464 100644 --- a/pkgs/development/python-modules/libpysal/default.nix +++ b/pkgs/development/python-modules/libpysal/default.nix @@ -78,10 +78,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "libpysal" ]; - meta = { + meta = with lib; { description = "Library of spatial analysis functions"; homepage = "https://pysal.org/libpysal/"; - license = lib.licenses.bsd3; - maintainers = lib.teams.geospatial.members; + license = licenses.bsd3; + maintainers = teams.geospatial.members; }; } diff --git a/pkgs/development/python-modules/libsass/default.nix b/pkgs/development/python-modules/libsass/default.nix index 8446d0905aa5a4..2c57c79a6302df 100644 --- a/pkgs/development/python-modules/libsass/default.nix +++ b/pkgs/development/python-modules/libsass/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sass" ]; - meta = { + meta = with lib; { description = "Python binding for libsass to compile Sass/SCSS"; mainProgram = "pysassc"; homepage = "https://sass.github.io/libsass-python/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/libuuu/default.nix b/pkgs/development/python-modules/libuuu/default.nix index bdb5ad84f38d7f..e72fa4c5d128fe 100644 --- a/pkgs/development/python-modules/libuuu/default.nix +++ b/pkgs/development/python-modules/libuuu/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = { + meta = with lib; { description = "Python wrapper for libuuu"; homepage = "https://github.com/nxp-imx/mfgtools/tree/master/wrapper"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.bsd3; + maintainers = with maintainers; [ GaetanLepage ]; badPlatforms = [ # The pypi archive does not contain the pre-built library for these platforms "aarch64-linux" diff --git a/pkgs/development/python-modules/lightparam/default.nix b/pkgs/development/python-modules/lightparam/default.nix index 635827b4566938..7dcc413cae7142 100644 --- a/pkgs/development/python-modules/lightparam/default.nix +++ b/pkgs/development/python-modules/lightparam/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "lightparam" ]; - meta = { + meta = with lib; { homepage = "https://github.com/portugueslab/lightparam"; description = "Another attempt at parameters in Python"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tbenst ]; + license = licenses.mit; + maintainers = with maintainers; [ tbenst ]; }; } diff --git a/pkgs/development/python-modules/linuxfd/default.nix b/pkgs/development/python-modules/linuxfd/default.nix index 793059dbe5406e..0e67efbb4ec922 100644 --- a/pkgs/development/python-modules/linuxfd/default.nix +++ b/pkgs/development/python-modules/linuxfd/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = { + meta = with lib; { description = "Python bindings for the Linux eventfd/signalfd/timerfd/inotify syscalls"; homepage = "https://github.com/FrankAbelbeck/linuxfd"; - platforms = lib.platforms.linux; - license = with lib.licenses; [ lgpl3Plus ]; + platforms = platforms.linux; + license = with licenses; [ lgpl3Plus ]; }; } diff --git a/pkgs/development/python-modules/litestar-htmx/default.nix b/pkgs/development/python-modules/litestar-htmx/default.nix index 2eec220ce2c9ae..27c13942fbe5e6 100644 --- a/pkgs/development/python-modules/litestar-htmx/default.nix +++ b/pkgs/development/python-modules/litestar-htmx/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { hatchling ]; - meta = { + meta = with lib; { homepage = "https://docs.litestar.dev/latest/usage/htmx.html"; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ bot-wxt1221 ]; + license = licenses.asl20; + platforms = platforms.unix; description = "HTMX Integration for Litesstar"; }; } diff --git a/pkgs/development/python-modules/livisi/default.nix b/pkgs/development/python-modules/livisi/default.nix index 3075bdecebd8ff..f36c6258b1e738 100644 --- a/pkgs/development/python-modules/livisi/default.nix +++ b/pkgs/development/python-modules/livisi/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { # upstream has no tests doCheck = false; - meta = { + meta = with lib; { description = "Connection library for the abandoned Livisi Smart Home system"; homepage = "https://github.com/planbnet/livisi"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.asl20; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/llama-index-vector-stores-postgres/default.nix b/pkgs/development/python-modules/llama-index-vector-stores-postgres/default.nix index 32e3900c97d1af..54e7218a385da7 100644 --- a/pkgs/development/python-modules/llama-index-vector-stores-postgres/default.nix +++ b/pkgs/development/python-modules/llama-index-vector-stores-postgres/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "llama_index.vector_stores.postgres" ]; - meta = { + meta = with lib; { description = "LlamaIndex Vector Store Integration for Postgres"; homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/vector_stores/llama-index-vector-stores-postgres"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.mit; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/log-symbols/default.nix b/pkgs/development/python-modules/log-symbols/default.nix index cad27746d1275d..5c6dedab15d5e9 100644 --- a/pkgs/development/python-modules/log-symbols/default.nix +++ b/pkgs/development/python-modules/log-symbols/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "log_symbols" ]; - meta = { + meta = with lib; { description = "Colored Symbols for Various Log Levels"; homepage = "https://github.com/manrajgrover/py-log-symbols"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ urbas ]; + license = licenses.mit; + maintainers = with maintainers; [ urbas ]; }; } diff --git a/pkgs/development/python-modules/logi-circle/default.nix b/pkgs/development/python-modules/logi-circle/default.nix index af73f77aadef10..4e9d399a787121 100644 --- a/pkgs/development/python-modules/logi-circle/default.nix +++ b/pkgs/development/python-modules/logi-circle/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "logi_circle" ]; - meta = { + meta = with lib; { description = "Python library to communicate with Logi Circle cameras"; homepage = "https://github.com/evanjd/python-logi-circle"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/loguru-logging-intercept/default.nix b/pkgs/development/python-modules/loguru-logging-intercept/default.nix index c25aa6dedda740..ef85bc1f1ceab3 100644 --- a/pkgs/development/python-modules/loguru-logging-intercept/default.nix +++ b/pkgs/development/python-modules/loguru-logging-intercept/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "loguru_logging_intercept" ]; - meta = { + meta = with lib; { description = "Code to integrate Loguru with Python's standard logging module"; homepage = "https://github.com/MatthewScholefield/loguru-logging-intercept"; - maintainers = with lib.maintainers; [ sigmanificient ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; + license = licenses.mit; }; } diff --git a/pkgs/development/python-modules/loompy/default.nix b/pkgs/development/python-modules/loompy/default.nix index b8e3df74c1c40a..2dcf73b1fc5bda 100644 --- a/pkgs/development/python-modules/loompy/default.nix +++ b/pkgs/development/python-modules/loompy/default.nix @@ -43,12 +43,12 @@ let pythonImportsCheck = [ "loompy" ]; - meta = { + meta = with lib; { changelog = "https://github.com/linnarsson-lab/loompy/releases"; description = "Python implementation of the Loom file format"; homepage = "https://github.com/linnarsson-lab/loompy"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ theobori ]; + license = licenses.bsd2; + maintainers = with maintainers; [ theobori ]; mainProgram = "loompy"; }; }; diff --git a/pkgs/development/python-modules/loopy/default.nix b/pkgs/development/python-modules/loopy/default.nix index f8833a60ddfb26..1e5a2f700bd376 100644 --- a/pkgs/development/python-modules/loopy/default.nix +++ b/pkgs/development/python-modules/loopy/default.nix @@ -61,10 +61,10 @@ buildPythonPackage rec { # pyopencl._cl.LogicError: clGetPlatformIDs failed: PLATFORM_NOT_FOUND_KHR doCheck = false; - meta = { + meta = with lib; { description = "Code generator for array-based code on CPUs and GPUs"; homepage = "https://github.com/inducer/loopy"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tomasajt ]; + license = licenses.mit; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/development/python-modules/ltpycld2/default.nix b/pkgs/development/python-modules/ltpycld2/default.nix index 35063a66a5bee8..0833fca7215077 100644 --- a/pkgs/development/python-modules/ltpycld2/default.nix +++ b/pkgs/development/python-modules/ltpycld2/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { # https://github.com/aboSamoor/pycld2/pull/62 env.NIX_CFLAGS_COMPILE = "-Wno-narrowing"; - meta = { + meta = with lib; { description = "Python bindings around Google Chromium's embedded compact language detection library (CLD2)"; homepage = "https://github.com/LibreTranslate/pycld2"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ misuzu ]; + license = licenses.asl20; + maintainers = with maintainers; [ misuzu ]; }; } diff --git a/pkgs/development/python-modules/lunarcalendar/default.nix b/pkgs/development/python-modules/lunarcalendar/default.nix index 7472ea07a751fe..324371cf96ad47 100644 --- a/pkgs/development/python-modules/lunarcalendar/default.nix +++ b/pkgs/development/python-modules/lunarcalendar/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "lunarcalendar" ]; - meta = { + meta = with lib; { homepage = "https://github.com/wolfhong/LunarCalendar"; description = "Lunar-Solar Converter, containing a number of lunar and solar festivals in China"; mainProgram = "lunar-find"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tomasajt ]; + license = licenses.mit; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/development/python-modules/lzstring/default.nix b/pkgs/development/python-modules/lzstring/default.nix index 99ae373d063bd7..5dac8f14ec6d72 100644 --- a/pkgs/development/python-modules/lzstring/default.nix +++ b/pkgs/development/python-modules/lzstring/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ future ]; - meta = { + meta = with lib; { description = "lz-string for python"; homepage = "https://github.com/gkovacs/lz-string-python"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ obadz ]; + license = licenses.mit; + maintainers = with maintainers; [ obadz ]; }; } diff --git a/pkgs/development/python-modules/mail-parser/default.nix b/pkgs/development/python-modules/mail-parser/default.nix index cd495877b92ff3..256f9e735660bf 100644 --- a/pkgs/development/python-modules/mail-parser/default.nix +++ b/pkgs/development/python-modules/mail-parser/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { cat tests/mails/mail_malformed_3 | ${python.interpreter} -m mailparser -k -j ''; - meta = { + meta = with lib; { description = "Mail parser for python 2 and 3"; mainProgram = "mailparser"; homepage = "https://github.com/SpamScope/mail-parser"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ psyanticy ]; + license = licenses.asl20; + maintainers = with maintainers; [ psyanticy ]; }; } diff --git a/pkgs/development/python-modules/mailsuite/default.nix b/pkgs/development/python-modules/mailsuite/default.nix index a58dfba8dbeaef..a2c7ae329a652e 100644 --- a/pkgs/development/python-modules/mailsuite/default.nix +++ b/pkgs/development/python-modules/mailsuite/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { doCheck = false; - meta = { + meta = with lib; { description = "Python package to simplify receiving, parsing, and sending email"; homepage = "https://seanthegeek.github.io/mailsuite/"; - maintainers = with lib.maintainers; [ talyz ]; - license = lib.licenses.asl20; + maintainers = with maintainers; [ talyz ]; + license = licenses.asl20; }; } diff --git a/pkgs/development/python-modules/marionette-harness/manifestparser.nix b/pkgs/development/python-modules/marionette-harness/manifestparser.nix index 57f8fbf012544c..7b2d87080c4427 100644 --- a/pkgs/development/python-modules/marionette-harness/manifestparser.nix +++ b/pkgs/development/python-modules/marionette-harness/manifestparser.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ ]; - meta = { + meta = with lib; { description = "Mozilla test manifest handling"; homepage = "https://wiki.mozilla.org/Auto-tools/Projects/Mozbase"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ raskin ]; + license = licenses.mpl20; + maintainers = with maintainers; [ raskin ]; }; } diff --git a/pkgs/development/python-modules/marisa/default.nix b/pkgs/development/python-modules/marisa/default.nix index 1de25320bb3fe0..24578132934a45 100644 --- a/pkgs/development/python-modules/marisa/default.nix +++ b/pkgs/development/python-modules/marisa/default.nix @@ -25,13 +25,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "marisa" ]; - meta = { + meta = with lib; { description = "Python bindings for marisa"; homepage = "https://github.com/s-yata/marisa-trie"; - license = with lib.licenses; [ + license = with licenses; [ bsd2 lgpl21Plus ]; - maintainers = with lib.maintainers; [ dotlambda ]; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/markitdown/default.nix b/pkgs/development/python-modules/markitdown/default.nix index a52844307a577e..63055cccec1e58 100644 --- a/pkgs/development/python-modules/markitdown/default.nix +++ b/pkgs/development/python-modules/markitdown/default.nix @@ -67,10 +67,10 @@ buildPythonPackage { passthru.updateScripts = gitUpdater { }; - meta = { + meta = with lib; { description = "Python tool for converting files and office documents to Markdown"; homepage = "https://github.com/microsoft/markitdown"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ drupol ]; + license = licenses.mit; + maintainers = with maintainers; [ drupol ]; }; } diff --git a/pkgs/development/python-modules/materialyoucolor/default.nix b/pkgs/development/python-modules/materialyoucolor/default.nix index 3cb67e4aefd96c..b3ca1f6b0a53fd 100644 --- a/pkgs/development/python-modules/materialyoucolor/default.nix +++ b/pkgs/development/python-modules/materialyoucolor/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { "materialyoucolor.quantize" # ext ]; - meta = { + meta = with lib; { description = "Material You color generation algorithms in python"; homepage = "https://github.com/T-Dynamos/materialyoucolor-python"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tomasajt ]; + license = licenses.mit; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/development/python-modules/matrix-client/default.nix b/pkgs/development/python-modules/matrix-client/default.nix index fa2445662c06d0..d8eb0c17070477 100644 --- a/pkgs/development/python-modules/matrix-client/default.nix +++ b/pkgs/development/python-modules/matrix-client/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "matrix_client" ]; - meta = { + meta = with lib; { description = "Python Matrix Client-Server SDK"; homepage = "https://github.com/matrix-org/matrix-python-sdk"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ olejorgenb ]; + license = licenses.asl20; + maintainers = with maintainers; [ olejorgenb ]; }; } diff --git a/pkgs/development/python-modules/mdx-truly-sane-lists/default.nix b/pkgs/development/python-modules/mdx-truly-sane-lists/default.nix index f181e9eaf1adb9..8435f8efe85e16 100644 --- a/pkgs/development/python-modules/mdx-truly-sane-lists/default.nix +++ b/pkgs/development/python-modules/mdx-truly-sane-lists/default.nix @@ -29,13 +29,13 @@ buildPythonPackage rec { pytestFlagsArray = [ "mdx_truly_sane_lists/tests.py" ]; - meta = { + meta = with lib; { description = "Extension for Python-Markdown that makes lists truly sane"; longDescription = '' Features custom indents for nested lists and fix for messy linebreaks and paragraphs between lists. ''; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ kaction ]; + license = licenses.mit; + maintainers = with maintainers; [ kaction ]; }; } diff --git a/pkgs/development/python-modules/meep/default.nix b/pkgs/development/python-modules/meep/default.nix index e9810167d39508..c1ec8f067eaec0 100644 --- a/pkgs/development/python-modules/meep/default.nix +++ b/pkgs/development/python-modules/meep/default.nix @@ -159,12 +159,12 @@ buildPythonPackage rec { runHook postCheck ''; - meta = { + meta = with lib; { description = "Free finite-difference time-domain (FDTD) software for electromagnetic simulations"; homepage = "https://meep.readthedocs.io/en/latest/"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = with maintainers; [ sheepforce markuskowa ]; diff --git a/pkgs/development/python-modules/microsoft-security-utilities-secret-masker/default.nix b/pkgs/development/python-modules/microsoft-security-utilities-secret-masker/default.nix index ef2012371dd300..9c0784b87bf4e7 100644 --- a/pkgs/development/python-modules/microsoft-security-utilities-secret-masker/default.nix +++ b/pkgs/development/python-modules/microsoft-security-utilities-secret-masker/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { "microsoft_security_utilities_secret_masker" ]; - meta = { + meta = with lib; { description = "A tool for detecting and masking secrets"; homepage = "https://pypi.org/project/microsoft-security-utilities-secret-masker/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + license = licenses.mit; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/migen/default.nix b/pkgs/development/python-modules/migen/default.nix index 910b46a512127d..c00239ba975f78 100644 --- a/pkgs/development/python-modules/migen/default.nix +++ b/pkgs/development/python-modules/migen/default.nix @@ -27,10 +27,10 @@ buildPythonPackage { pythonImportsCheck = [ "migen" ]; - meta = { + meta = with lib; { description = " A Python toolbox for building complex digital hardware"; homepage = "https://m-labs.hk/migen"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ l-as ]; + license = licenses.bsd2; + maintainers = with maintainers; [ l-as ]; }; } diff --git a/pkgs/development/python-modules/misoc/default.nix b/pkgs/development/python-modules/misoc/default.nix index e573760769be35..bf702f47dcfec8 100644 --- a/pkgs/development/python-modules/misoc/default.nix +++ b/pkgs/development/python-modules/misoc/default.nix @@ -32,10 +32,10 @@ buildPythonPackage { pythonImportsCheck = [ "misoc" ]; - meta = { + meta = with lib; { description = "Original high performance and small footprint system-on-chip based on Migen"; homepage = "https://github.com/m-labs/misoc"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.bsd2; + maintainers = with maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/ml-collections/default.nix b/pkgs/development/python-modules/ml-collections/default.nix index 4d899689a7630d..cd500b8cdaa21f 100644 --- a/pkgs/development/python-modules/ml-collections/default.nix +++ b/pkgs/development/python-modules/ml-collections/default.nix @@ -45,10 +45,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ml_collections" ]; - meta = { + meta = with lib; { description = "ML Collections is a library of Python collections designed for ML usecases"; homepage = "https://github.com/google/ml_collections"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ samuela ]; + license = licenses.asl20; + maintainers = with maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/mlxtend/default.nix b/pkgs/development/python-modules/mlxtend/default.nix index 361aea5cb9bff8..e6c40949334228 100644 --- a/pkgs/development/python-modules/mlxtend/default.nix +++ b/pkgs/development/python-modules/mlxtend/default.nix @@ -49,11 +49,11 @@ buildPythonPackage rec { "mlxtend/evaluate/tests/test_bootstrap_point632.py" # keras.api._v2 ]; - meta = { + meta = with lib; { description = "Library of Python tools and extensions for data science"; homepage = "https://github.com/rasbt/mlxtend"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ evax ]; - platforms = lib.platforms.unix; + license = licenses.bsd3; + maintainers = with maintainers; [ evax ]; + platforms = platforms.unix; }; } diff --git a/pkgs/development/python-modules/modbus-tk/default.nix b/pkgs/development/python-modules/modbus-tk/default.nix index d56deb1ff34d4f..5f6a65818ae147 100644 --- a/pkgs/development/python-modules/modbus-tk/default.nix +++ b/pkgs/development/python-modules/modbus-tk/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "modbus_tk" ]; - meta = { + meta = with lib; { description = "Module for simple Modbus interactions"; homepage = "https://github.com/ljean/modbus-tk"; - license = lib.licenses.lgpl21Plus; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.lgpl21Plus; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/momepy/default.nix b/pkgs/development/python-modules/momepy/default.nix index 00334eacf4f831..556adf7760e4b0 100644 --- a/pkgs/development/python-modules/momepy/default.nix +++ b/pkgs/development/python-modules/momepy/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "momepy" ]; - meta = { + meta = with lib; { description = "Urban Morphology Measuring Toolkit"; homepage = "https://github.com/pysal/momepy"; - license = lib.licenses.bsd3; - maintainers = lib.teams.geospatial.members; + license = licenses.bsd3; + maintainers = teams.geospatial.members; }; } diff --git a/pkgs/development/python-modules/more-properties/default.nix b/pkgs/development/python-modules/more-properties/default.nix index 53e79468c66bcb..99ce0e36112fc0 100644 --- a/pkgs/development/python-modules/more-properties/default.nix +++ b/pkgs/development/python-modules/more-properties/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "more_properties" ]; - meta = { + meta = with lib; { description = "Collection of property variants"; homepage = "https://github.com/madman-bob/python-more-properties"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/morecantile/default.nix b/pkgs/development/python-modules/morecantile/default.nix index 76b48b5ff02712..c003c0d58cd711 100644 --- a/pkgs/development/python-modules/morecantile/default.nix +++ b/pkgs/development/python-modules/morecantile/default.nix @@ -50,11 +50,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "morecantile" ]; - meta = { + meta = with lib; { description = "Construct and use map tile grids in different projection"; homepage = "https://developmentseed.org/morecantile/"; - license = lib.licenses.mit; - maintainers = lib.teams.geospatial.members; + license = licenses.mit; + maintainers = teams.geospatial.members; mainProgram = "morecantile"; }; } diff --git a/pkgs/development/python-modules/motor/default.nix b/pkgs/development/python-modules/motor/default.nix index bc4598c17d5287..7f82243dc5c02c 100644 --- a/pkgs/development/python-modules/motor/default.nix +++ b/pkgs/development/python-modules/motor/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "motor" ]; - meta = { + meta = with lib; { description = "Non-blocking MongoDB driver for Tornado or asyncio"; - license = lib.licenses.asl20; + license = licenses.asl20; homepage = "https://github.com/mongodb/motor"; - maintainers = with lib.maintainers; [ globin ]; + maintainers = with maintainers; [ globin ]; }; } diff --git a/pkgs/development/python-modules/mpegdash/default.nix b/pkgs/development/python-modules/mpegdash/default.nix index 3480c4dcafd839..caac8b4c9573cf 100644 --- a/pkgs/development/python-modules/mpegdash/default.nix +++ b/pkgs/development/python-modules/mpegdash/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mpegdash" ]; - meta = { + meta = with lib; { description = "MPEG-DASH MPD(Media Presentation Description) Parser"; homepage = "https://github.com/sangwonl/python-mpegdash"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ drawbu ]; + license = licenses.mit; + maintainers = with maintainers; [ drawbu ]; }; } diff --git a/pkgs/development/python-modules/mpi4py/default.nix b/pkgs/development/python-modules/mpi4py/default.nix index e8d3ac8be8ac5d..f6489975d1f5b0 100644 --- a/pkgs/development/python-modules/mpi4py/default.nix +++ b/pkgs/development/python-modules/mpi4py/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { inherit mpi; }; - meta = { + meta = with lib; { description = "Python bindings for the Message Passing Interface standard"; homepage = "https://github.com/mpi4py/mpi4py"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.bsd2; + maintainers = with maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/mplhep/default.nix b/pkgs/development/python-modules/mplhep/default.nix index 2dab782088a0e1..b4e51179b0b8cf 100644 --- a/pkgs/development/python-modules/mplhep/default.nix +++ b/pkgs/development/python-modules/mplhep/default.nix @@ -59,10 +59,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mplhep" ]; - meta = { + meta = with lib; { description = "Extended histogram plots on top of matplotlib and HEP compatible styling similar to current collaboration requirements (ROOT)"; homepage = "https://github.com/scikit-hep/mplhep"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ veprbl ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ veprbl ]; }; } diff --git a/pkgs/development/python-modules/mwtypes/default.nix b/pkgs/development/python-modules/mwtypes/default.nix index 727d5e61821cd7..fcc5d660d701b7 100644 --- a/pkgs/development/python-modules/mwtypes/default.nix +++ b/pkgs/development/python-modules/mwtypes/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "mwtypes" ]; - meta = { + meta = with lib; { description = "Set of classes for working with MediaWiki data types"; homepage = "https://github.com/mediawiki-utilities/python-mwtypes"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.mit; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/mwxml/default.nix b/pkgs/development/python-modules/mwxml/default.nix index 7b24ef4c8bb4e8..6fcfb573716f2a 100644 --- a/pkgs/development/python-modules/mwxml/default.nix +++ b/pkgs/development/python-modules/mwxml/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "mwxml" ]; - meta = { + meta = with lib; { description = "Set of utilities for processing MediaWiki XML dump data"; mainProgram = "mwxml"; homepage = "https://github.com/mediawiki-utilities/python-mwxml"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.mit; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/myfitnesspal/default.nix b/pkgs/development/python-modules/myfitnesspal/default.nix index 5572ff0d69b006..6197d8b6efb9f3 100644 --- a/pkgs/development/python-modules/myfitnesspal/default.nix +++ b/pkgs/development/python-modules/myfitnesspal/default.nix @@ -69,11 +69,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "myfitnesspal" ]; - meta = { + meta = with lib; { description = "Python module to access meal tracking data stored in MyFitnessPal"; mainProgram = "myfitnesspal"; homepage = "https://github.com/coddingtonbear/python-myfitnesspal"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ bhipple ]; + license = licenses.mit; + maintainers = with maintainers; [ bhipple ]; }; } diff --git a/pkgs/development/python-modules/names/default.nix b/pkgs/development/python-modules/names/default.nix index c4648e171a7282..2705f8d1004493 100644 --- a/pkgs/development/python-modules/names/default.nix +++ b/pkgs/development/python-modules/names/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pytest ''; - meta = { + meta = with lib; { description = "Generate random names"; mainProgram = "names"; homepage = "https://github.com/treyhunner/names"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ kamadorueda ]; + license = licenses.mit; + maintainers = with maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/namex/default.nix b/pkgs/development/python-modules/namex/default.nix index 4e7fadf847962d..6662a6dfbe3672 100644 --- a/pkgs/development/python-modules/namex/default.nix +++ b/pkgs/development/python-modules/namex/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # This packages has no tests. doCheck = false; - meta = { + meta = with lib; { description = "Simple utility to separate the implementation of your Python package and its public API surface"; homepage = "https://github.com/fchollet/namex"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.asl20; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/natural/default.nix b/pkgs/development/python-modules/natural/default.nix index fbe575c7c2443e..c8afc448dd16f8 100644 --- a/pkgs/development/python-modules/natural/default.nix +++ b/pkgs/development/python-modules/natural/default.nix @@ -24,11 +24,11 @@ buildPythonPackage rec { nativeCheckInputs = [ django ]; - meta = { + meta = with lib; { description = "Convert data to their natural (human-readable) format"; homepage = "https://github.com/tehmaze/natural"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ sailord vinetos ]; diff --git a/pkgs/development/python-modules/nbformat/default.nix b/pkgs/development/python-modules/nbformat/default.nix index 7c31e3e4acc70d..6d1abb3414e814 100644 --- a/pkgs/development/python-modules/nbformat/default.nix +++ b/pkgs/development/python-modules/nbformat/default.nix @@ -57,11 +57,11 @@ buildPythonPackage rec { # Some of the tests use localhost networking. __darwinAllowLocalNetworking = true; - meta = { + meta = with lib; { description = "Jupyter Notebook format"; mainProgram = "jupyter-trust"; homepage = "https://jupyter.org/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ globin ]; + license = licenses.bsd3; + maintainers = with maintainers; [ globin ]; }; } diff --git a/pkgs/development/python-modules/nemosis/default.nix b/pkgs/development/python-modules/nemosis/default.nix index c3d3ab14209105..37155dfda64920 100644 --- a/pkgs/development/python-modules/nemosis/default.nix +++ b/pkgs/development/python-modules/nemosis/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nemosis" ]; doCheck = false; # require network and patching - meta = { + meta = with lib; { description = "Downloader of historical data published by the Australian Energy Market Operator"; homepage = "https://github.com/UNSW-CEEM/NEMOSIS"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/netbox-reorder-rack/default.nix b/pkgs/development/python-modules/netbox-reorder-rack/default.nix index 56e8f2ab69698d..103d5daf65626f 100644 --- a/pkgs/development/python-modules/netbox-reorder-rack/default.nix +++ b/pkgs/development/python-modules/netbox-reorder-rack/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { dontUsePythonImportsCheck = python.pythonVersion != netbox.python.pythonVersion; pythonImportsCheck = [ "netbox_reorder_rack" ]; - meta = { + meta = with lib; { description = "NetBox plugin to allow users to reorder devices within a rack using a drag and drop UI"; homepage = "https://github.com/netbox-community/netbox-reorder-rack"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ minijackson ]; + license = licenses.asl20; + maintainers = with maintainers; [ minijackson ]; }; } diff --git a/pkgs/development/python-modules/netifaces2/default.nix b/pkgs/development/python-modules/netifaces2/default.nix index d6dfdd941442d7..969852b748eeb7 100644 --- a/pkgs/development/python-modules/netifaces2/default.nix +++ b/pkgs/development/python-modules/netifaces2/default.nix @@ -36,11 +36,11 @@ buildPythonPackage { nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "netifaces" ]; - meta = { + meta = with lib; { description = "Portable network interface information"; homepage = "https://github.com/SamuelYvon/netifaces-2"; - license = with lib.licenses; [ mit ]; - platforms = with lib.platforms; unix ++ windows; - maintainers = with lib.maintainers; [ pluiedev ]; + license = with licenses; [ mit ]; + platforms = with platforms; unix ++ windows; + maintainers = with maintainers; [ pluiedev ]; }; } diff --git a/pkgs/development/python-modules/neuralfoil/default.nix b/pkgs/development/python-modules/neuralfoil/default.nix index f217b740e17e47..b47fc9a354043b 100644 --- a/pkgs/development/python-modules/neuralfoil/default.nix +++ b/pkgs/development/python-modules/neuralfoil/default.nix @@ -30,10 +30,10 @@ buildPythonPackage { nativeBuildInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Airfoil aerodynamics analysis tool using physics-informed machine learning, in pure Python/NumPy"; homepage = "https://github.com/peterdsharpe/NeuralFoil"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/nicegui-highcharts/default.nix b/pkgs/development/python-modules/nicegui-highcharts/default.nix index fb575e9d65ccaa..494d2bdcf61e68 100644 --- a/pkgs/development/python-modules/nicegui-highcharts/default.nix +++ b/pkgs/development/python-modules/nicegui-highcharts/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nicegui_highcharts" ]; - meta = { + meta = with lib; { description = "NiceGUI with support for Highcharts"; homepage = "https://github.com/zauberzeug/nicegui-highcharts"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.mit; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/nimfa/default.nix b/pkgs/development/python-modules/nimfa/default.nix index 3715f01727757d..c05ad5b315f710 100644 --- a/pkgs/development/python-modules/nimfa/default.nix +++ b/pkgs/development/python-modules/nimfa/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { doCheck = !isPy3k; # https://github.com/marinkaz/nimfa/issues/42 - meta = { + meta = with lib; { description = "Nonnegative matrix factorization library"; homepage = "http://nimfa.biolab.si"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ashgillman ]; + license = licenses.bsd3; + maintainers = with maintainers; [ ashgillman ]; }; } diff --git a/pkgs/development/python-modules/nodriver/default.nix b/pkgs/development/python-modules/nodriver/default.nix index 803d69c2f90916..01e01eb554804d 100644 --- a/pkgs/development/python-modules/nodriver/default.nix +++ b/pkgs/development/python-modules/nodriver/default.nix @@ -33,16 +33,16 @@ buildPythonPackage rec { # no tests in upstream doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/ultrafunkamsterdam/nodriver"; - license = lib.licenses.agpl3Only; + license = licenses.agpl3Only; description = "Web automation framework which can bypass bot detection"; longDescription = '' Successor of Undetected-Chromedriver. Providing a blazing fast framework for web automation, webscraping, bots and any other creative ideas which are normally hindered by annoying anti bot systems like Captcha / CloudFlare / Imperva / hCaptcha ''; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ liammurphy14 toasteruwu ]; diff --git a/pkgs/development/python-modules/normality/default.nix b/pkgs/development/python-modules/normality/default.nix index 9777c60b672323..779c71f9543e1a 100644 --- a/pkgs/development/python-modules/normality/default.nix +++ b/pkgs/development/python-modules/normality/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "normality" ]; - meta = { + meta = with lib; { description = "Micro-library to normalize text strings"; homepage = "https://github.com/pudo/normality"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/nose2pytest/default.nix b/pkgs/development/python-modules/nose2pytest/default.nix index 72f554e8a50173..209cd69d021269 100644 --- a/pkgs/development/python-modules/nose2pytest/default.nix +++ b/pkgs/development/python-modules/nose2pytest/default.nix @@ -46,12 +46,12 @@ buildPythonPackage { pythonImportsCheck = [ "nose2pytest.assert_tools" ]; - meta = { + meta = with lib; { description = "Scripts to convert Python Nose tests to PyTest"; homepage = "https://github.com/pytest-dev/nose2pytest"; - sourceProvenance = [ lib.sourceTypes.fromSource ]; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.emily ]; + sourceProvenance = [ sourceTypes.fromSource ]; + license = licenses.bsd3; + maintainers = [ maintainers.emily ]; mainProgram = "nose2pytest"; }; } diff --git a/pkgs/development/python-modules/notedown/default.nix b/pkgs/development/python-modules/notedown/default.nix index 72666397f044ce..0b7d35257d71f4 100644 --- a/pkgs/development/python-modules/notedown/default.nix +++ b/pkgs/development/python-modules/notedown/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { # No tests in pypi source doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/aaren/notedown"; description = "Convert IPython Notebooks to markdown (and back)"; mainProgram = "notedown"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ vcanadi ]; + license = licenses.bsd2; + maintainers = with maintainers; [ vcanadi ]; }; } diff --git a/pkgs/development/python-modules/notify-events/default.nix b/pkgs/development/python-modules/notify-events/default.nix index 6a5d1a4bd07a3b..4a8cf30388cc3f 100644 --- a/pkgs/development/python-modules/notify-events/default.nix +++ b/pkgs/development/python-modules/notify-events/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "notify_events" ]; - meta = { + meta = with lib; { description = "Python client for Notify.Events"; homepage = "https://github.com/notify-events/python"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/notify2/default.nix b/pkgs/development/python-modules/notify2/default.nix index b2e5c33faaa469..9840b663c3340c 100644 --- a/pkgs/development/python-modules/notify2/default.nix +++ b/pkgs/development/python-modules/notify2/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { dbus-python ]; - meta = { + meta = with lib; { description = "Pure Python interface to DBus notifications"; homepage = "https://bitbucket.org/takluyver/pynotify2"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ mog ]; + license = licenses.bsd2; + maintainers = with maintainers; [ mog ]; }; } diff --git a/pkgs/development/python-modules/notobuilder/default.nix b/pkgs/development/python-modules/notobuilder/default.nix index ddcba7fbccd373..f549acd321cbd1 100644 --- a/pkgs/development/python-modules/notobuilder/default.nix +++ b/pkgs/development/python-modules/notobuilder/default.nix @@ -62,10 +62,10 @@ buildPythonPackage { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Python module for building Noto fonts"; homepage = "https://github.com/notofonts/notobuilder"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ jopejoe1 ]; + license = licenses.unfree; + maintainers = with maintainers; [ jopejoe1 ]; }; } diff --git a/pkgs/development/python-modules/nskeyedunarchiver/default.nix b/pkgs/development/python-modules/nskeyedunarchiver/default.nix index 1141248f84579e..04baef2f39f778 100644 --- a/pkgs/development/python-modules/nskeyedunarchiver/default.nix +++ b/pkgs/development/python-modules/nskeyedunarchiver/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "NSKeyedUnArchiver" ]; - meta = { + meta = with lib; { description = "Unserializes plist data into a usable Python dict"; homepage = "https://github.com/avibrazil/NSKeyedUnArchiver"; - license = lib.licenses.bsdOriginal; - maintainers = with lib.maintainers; [ PapayaJackal ]; + license = licenses.bsdOriginal; + maintainers = with maintainers; [ PapayaJackal ]; }; } diff --git a/pkgs/development/python-modules/numcodecs/default.nix b/pkgs/development/python-modules/numcodecs/default.nix index e7d2a690f14096..6e4e2b74c71d2a 100644 --- a/pkgs/development/python-modules/numcodecs/default.nix +++ b/pkgs/development/python-modules/numcodecs/default.nix @@ -61,10 +61,10 @@ buildPythonPackage rec { preCheck = "pushd $out"; postCheck = "popd"; - meta = { + meta = with lib; { homepage = "https://github.com/zarr-developers/numcodecs"; - license = lib.licenses.mit; + license = licenses.mit; description = "Buffer compression and transformation codecs for use in data storage and communication applications"; - maintainers = with lib.maintainers; [ doronbehar ]; + maintainers = with maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/nutils-poly/default.nix b/pkgs/development/python-modules/nutils-poly/default.nix index adbe9a34ed6f18..165194764f117e 100644 --- a/pkgs/development/python-modules/nutils-poly/default.nix +++ b/pkgs/development/python-modules/nutils-poly/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "nutils_poly" ]; - meta = { + meta = with lib; { description = "Low-level functions for evaluating and manipulating polynomials"; homepage = "https://github.com/nutils/poly-py"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tomasajt ]; + license = licenses.mit; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/development/python-modules/nvidia-ml-py/default.nix b/pkgs/development/python-modules/nvidia-ml-py/default.nix index 08beac0daf50b0..f60f25968744d0 100644 --- a/pkgs/development/python-modules/nvidia-ml-py/default.nix +++ b/pkgs/development/python-modules/nvidia-ml-py/default.nix @@ -56,10 +56,10 @@ buildPythonPackage rec { print(f"Device {i} : {nvmlDeviceGetName(handle)}") ''; - meta = { + meta = with lib; { description = "Python Bindings for the NVIDIA Management Library"; homepage = "https://pypi.org/project/nvidia-ml-py"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.bsd3; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/objexplore/default.nix b/pkgs/development/python-modules/objexplore/default.nix index a23561876a1ef4..1d48d626da373b 100644 --- a/pkgs/development/python-modules/objexplore/default.nix +++ b/pkgs/development/python-modules/objexplore/default.nix @@ -55,11 +55,11 @@ buildPythonPackage { "objexplore.utils" ]; - meta = { + meta = with lib; { description = "Terminal UI to interactively inspect and explore Python objects"; homepage = "https://github.com/kylepollina/objexplore"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ pbsds sigmanificient ]; diff --git a/pkgs/development/python-modules/ofxhome/default.nix b/pkgs/development/python-modules/ofxhome/default.nix index 0110cfdba10dd4..510ae2cdc0b711 100644 --- a/pkgs/development/python-modules/ofxhome/default.nix +++ b/pkgs/development/python-modules/ofxhome/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { "testfile" ]; - meta = { + meta = with lib; { homepage = "https://github.com/captin411/ofxhome"; description = "ofxhome.com financial institution lookup REST client"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pyrox0 ]; + license = licenses.mit; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/development/python-modules/onetimepad/default.nix b/pkgs/development/python-modules/onetimepad/default.nix index affa6182b7d701..c19ce2f3527a15 100644 --- a/pkgs/development/python-modules/onetimepad/default.nix +++ b/pkgs/development/python-modules/onetimepad/default.nix @@ -20,11 +20,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "onetimepad" ]; - meta = { + meta = with lib; { description = "Hacky implementation of one-time pad"; mainProgram = "onetimepad"; homepage = "https://jailuthra.in/onetimepad"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/openstep-parser/default.nix b/pkgs/development/python-modules/openstep-parser/default.nix index dbdbcc081e5916..b948a3e2b4fa7a 100644 --- a/pkgs/development/python-modules/openstep-parser/default.nix +++ b/pkgs/development/python-modules/openstep-parser/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "openstep_parser" ]; - meta = { + meta = with lib; { description = "OpenStep plist parser for Python"; homepage = "https://github.com/kronenthaler/openstep-parser"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ ilaumjd ]; + license = licenses.bsd2; + maintainers = with maintainers; [ ilaumjd ]; }; } diff --git a/pkgs/development/python-modules/openusd/default.nix b/pkgs/development/python-modules/openusd/default.nix index 50b9fb4c5ab48b..764dd8488f641a 100644 --- a/pkgs/development/python-modules/openusd/default.nix +++ b/pkgs/development/python-modules/openusd/default.nix @@ -181,7 +181,7 @@ buildPythonPackage rec { mv $out/docs $doc ''; - meta = { + meta = with lib; { description = "Universal Scene Description"; longDescription = '' Universal Scene Description (USD) is an efficient, scalable system @@ -189,8 +189,8 @@ buildPythonPackage rec { for interchange between graphics applications. ''; homepage = "https://openusd.org/"; - license = lib.licenses.tost; - maintainers = with lib.maintainers; [ + license = licenses.tost; + maintainers = with maintainers; [ shaddydc gador ]; diff --git a/pkgs/development/python-modules/optree/default.nix b/pkgs/development/python-modules/optree/default.nix index 16e879514887ea..33bbd2101e12d5 100644 --- a/pkgs/development/python-modules/optree/default.nix +++ b/pkgs/development/python-modules/optree/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { ]; pythonImportsCheck = [ "optree" ]; - meta = { + meta = with lib; { description = "Optimized PyTree Utilities"; homepage = "https://github.com/metaopt/optree"; changelog = "https://github.com/metaopt/optree/releases"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ pandapip1 ]; + license = licenses.asl20; + maintainers = with maintainers; [ pandapip1 ]; }; } diff --git a/pkgs/development/python-modules/orange-widget-base/default.nix b/pkgs/development/python-modules/orange-widget-base/default.nix index de80a074f929ee..1967c02b2fc8c8 100644 --- a/pkgs/development/python-modules/orange-widget-base/default.nix +++ b/pkgs/development/python-modules/orange-widget-base/default.nix @@ -61,10 +61,10 @@ buildPythonPackage rec { passthru.updateScript = gitUpdater { }; - meta = { + meta = with lib; { description = "Implementation of the base OWBaseWidget class and utilities for use in Orange Canvas workflows"; homepage = "https://github.com/biolab/orange-widget-base"; - license = [ lib.licenses.gpl3Plus ]; - maintainers = [ lib.maintainers.lucasew ]; + license = [ licenses.gpl3Plus ]; + maintainers = [ maintainers.lucasew ]; }; } diff --git a/pkgs/development/python-modules/osc-placement/default.nix b/pkgs/development/python-modules/osc-placement/default.nix index f353710c95dc29..9256726d2be4d4 100644 --- a/pkgs/development/python-modules/osc-placement/default.nix +++ b/pkgs/development/python-modules/osc-placement/default.nix @@ -64,10 +64,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "osc_placement" ]; - meta = { + meta = with lib; { homepage = "https://opendev.org/openstack/osc-placement"; description = "OpenStackClient plugin for the Placement service"; - license = lib.licenses.asl20; - maintainers = lib.teams.openstack.members; + license = licenses.asl20; + maintainers = teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/oschmod/default.nix b/pkgs/development/python-modules/oschmod/default.nix index 8ce9b703c6b223..b1fd77f3ebbcc6 100644 --- a/pkgs/development/python-modules/oschmod/default.nix +++ b/pkgs/development/python-modules/oschmod/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "oschmod" ]; - meta = { + meta = with lib; { description = "Change file permissions on Windows, macOS, and Linux"; homepage = "https://github.com/yakdriver/oschmod"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ gordon-bp ]; + license = licenses.asl20; + maintainers = with maintainers; [ gordon-bp ]; }; } diff --git a/pkgs/development/python-modules/oslo-log/default.nix b/pkgs/development/python-modules/oslo-log/default.nix index 55984a5bfe46ee..8058ec472ce85a 100644 --- a/pkgs/development/python-modules/oslo-log/default.nix +++ b/pkgs/development/python-modules/oslo-log/default.nix @@ -66,11 +66,11 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = { + meta = with lib; { description = "oslo.log library"; mainProgram = "convert-json"; homepage = "https://github.com/openstack/oslo.log"; - license = lib.licenses.asl20; - maintainers = lib.teams.openstack.members; + license = licenses.asl20; + maintainers = teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/outcome/default.nix b/pkgs/development/python-modules/outcome/default.nix index e0e98cee887247..a58c34a4a2596c 100644 --- a/pkgs/development/python-modules/outcome/default.nix +++ b/pkgs/development/python-modules/outcome/default.nix @@ -23,13 +23,13 @@ buildPythonPackage rec { # Has a test dependency on trio, which depends on outcome. doCheck = false; - meta = { + meta = with lib; { description = "Capture the outcome of Python function calls"; homepage = "https://github.com/python-trio/outcome"; - license = with lib.licenses; [ + license = with licenses; [ mit asl20 ]; - maintainers = with lib.maintainers; [ catern ]; + maintainers = with maintainers; [ catern ]; }; } diff --git a/pkgs/development/python-modules/outdated/default.nix b/pkgs/development/python-modules/outdated/default.nix index de9273915ab227..6bc5fb319ca139 100644 --- a/pkgs/development/python-modules/outdated/default.nix +++ b/pkgs/development/python-modules/outdated/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "outdated" ]; - meta = { + meta = with lib; { description = "Mini-library which, given a package name and a version, checks if it's the latest version available on PyPI"; homepage = "https://github.com/alexmojaki/outdated"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ gador ]; + license = licenses.mit; + maintainers = with maintainers; [ gador ]; }; } diff --git a/pkgs/development/python-modules/pa-ringbuffer/default.nix b/pkgs/development/python-modules/pa-ringbuffer/default.nix index 4ddd9af2b063a7..7fefdad79058f3 100644 --- a/pkgs/development/python-modules/pa-ringbuffer/default.nix +++ b/pkgs/development/python-modules/pa-ringbuffer/default.nix @@ -16,10 +16,10 @@ buildPythonPackage rec { sha256 = "1d4k6z13mc1f88m6wbhfx8hillb7q78n33ws5bmyblsdkv1gx607"; }; - meta = { + meta = with lib; { description = "Adds ring buffer functionality"; homepage = "https://github.com/spatialaudio/python-pa-ringbuffer"; - maintainers = with lib.maintainers; [ laikq ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ laikq ]; + license = licenses.mit; }; } diff --git a/pkgs/development/python-modules/packaging-legacy/default.nix b/pkgs/development/python-modules/packaging-legacy/default.nix index 216ca3eb630d22..453dd2a0725e7f 100644 --- a/pkgs/development/python-modules/packaging-legacy/default.nix +++ b/pkgs/development/python-modules/packaging-legacy/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "packaging_legacy" ]; - meta = { + meta = with lib; { description = "Module to support for legacy Python Packaging functionality"; homepage = "https://github.com/di/packaging_legacy"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.bsd2; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/paintcompiler/default.nix b/pkgs/development/python-modules/paintcompiler/default.nix index c2e6009fa4f7b8..07b4468b0159c0 100644 --- a/pkgs/development/python-modules/paintcompiler/default.nix +++ b/pkgs/development/python-modules/paintcompiler/default.nix @@ -31,11 +31,11 @@ buildPythonPackage rec { "paintdecompiler" ]; - meta = { + meta = with lib; { description = "Paint compiler for COLRv1 fonts"; homepage = "https://github.com/simoncozens/paintcompiler"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "paintcompiler"; - maintainers = with lib.maintainers; [ jopejoe1 ]; + maintainers = with maintainers; [ jopejoe1 ]; }; } diff --git a/pkgs/development/python-modules/pallets-sphinx-themes/default.nix b/pkgs/development/python-modules/pallets-sphinx-themes/default.nix index 08c68587a0e0e5..0b954e2ad64744 100644 --- a/pkgs/development/python-modules/pallets-sphinx-themes/default.nix +++ b/pkgs/development/python-modules/pallets-sphinx-themes/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pallets_sphinx_themes" ]; - meta = { + meta = with lib; { homepage = "https://github.com/pallets/pallets-sphinx-themes"; description = "Sphinx theme for Pallets projects"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ kaction ]; + license = licenses.bsd3; + maintainers = with maintainers; [ kaction ]; }; } diff --git a/pkgs/development/python-modules/panasonic-viera/default.nix b/pkgs/development/python-modules/panasonic-viera/default.nix index 6cbdd76236d5dd..e953e8c9cdb7ec 100644 --- a/pkgs/development/python-modules/panasonic-viera/default.nix +++ b/pkgs/development/python-modules/panasonic-viera/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "panasonic_viera" ]; - meta = { + meta = with lib; { description = "Library to control Panasonic Viera TVs"; homepage = "https://github.com/florianholzapfel/panasonic-viera"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pandoc-attributes/default.nix b/pkgs/development/python-modules/pandoc-attributes/default.nix index 8322f388353085..ab8263fa3540a3 100644 --- a/pkgs/development/python-modules/pandoc-attributes/default.nix +++ b/pkgs/development/python-modules/pandoc-attributes/default.nix @@ -20,10 +20,10 @@ buildPythonPackage rec { # No tests in pypi source doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/aaren/pandoc-attributes"; description = "Attribute class to be used with pandocfilters"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ vcanadi ]; + license = licenses.bsd2; + maintainers = with maintainers; [ vcanadi ]; }; } diff --git a/pkgs/development/python-modules/pandoc-latex-environment/default.nix b/pkgs/development/python-modules/pandoc-latex-environment/default.nix index e055a5566d31ff..1a7094d826c282 100644 --- a/pkgs/development/python-modules/pandoc-latex-environment/default.nix +++ b/pkgs/development/python-modules/pandoc-latex-environment/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pandoc ]; - meta = { + meta = with lib; { description = "Pandoc filter for adding LaTeX environment on specific div"; homepage = "https://github.com/chdemko/pandoc-latex-environment"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.bsd3; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/papis-python-rofi/default.nix b/pkgs/development/python-modules/papis-python-rofi/default.nix index c23b6cffa2a443..ae88f52a07ce52 100644 --- a/pkgs/development/python-modules/papis-python-rofi/default.nix +++ b/pkgs/development/python-modules/papis-python-rofi/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # No tests existing doCheck = false; - meta = { + meta = with lib; { description = "Python module to make simple GUIs with Rofi"; homepage = "https://github.com/alejandrogallo/python-rofi"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.nico202 ]; + license = licenses.mit; + maintainers = [ maintainers.nico202 ]; }; } diff --git a/pkgs/development/python-modules/para/default.nix b/pkgs/development/python-modules/para/default.nix index f34260bf1531b8..4ab3dd4c4d4e20 100644 --- a/pkgs/development/python-modules/para/default.nix +++ b/pkgs/development/python-modules/para/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "para" ]; - meta = { + meta = with lib; { description = "Set utilities that ake advantage of python's 'multiprocessing' module to distribute CPU-intensive tasks"; homepage = "https://pypi.org/project/para"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.mit; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/paragraphs/default.nix b/pkgs/development/python-modules/paragraphs/default.nix index 1f37646f81da63..139468b1161543 100644 --- a/pkgs/development/python-modules/paragraphs/default.nix +++ b/pkgs/development/python-modules/paragraphs/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { "paragraphs" ]; - meta = { + meta = with lib; { description = "Module to incorporate long strings"; homepage = "https://github.com/ShayHill/paragraphs"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.mit; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/paver/default.nix b/pkgs/development/python-modules/paver/default.nix index 90b5b440d0d7f6..d5238fd755c70d 100644 --- a/pkgs/development/python-modules/paver/default.nix +++ b/pkgs/development/python-modules/paver/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { "paver/tests/test_tasks.py" ]; - meta = { + meta = with lib; { description = "Python-based build/distribution/deployment scripting tool"; mainProgram = "paver"; homepage = "https://github.com/paver/paver"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ lovek323 ]; + license = licenses.bsd3; + maintainers = with maintainers; [ lovek323 ]; }; } diff --git a/pkgs/development/python-modules/pbxproj/default.nix b/pkgs/development/python-modules/pbxproj/default.nix index 729149ad126044..0a74fcf416ed16 100644 --- a/pkgs/development/python-modules/pbxproj/default.nix +++ b/pkgs/development/python-modules/pbxproj/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { "openstep_parser" ]; - meta = { + meta = with lib; { description = "Python module to manipulate XCode projects "; homepage = "https://github.com/kronenthaler/mod-pbxproj"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ilaumjd ]; + license = licenses.mit; + maintainers = with maintainers; [ ilaumjd ]; }; } diff --git a/pkgs/development/python-modules/pcffont/default.nix b/pkgs/development/python-modules/pcffont/default.nix index db83e7f9c5e2c9..97318c40a38fa7 100644 --- a/pkgs/development/python-modules/pcffont/default.nix +++ b/pkgs/development/python-modules/pcffont/default.nix @@ -32,12 +32,12 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://github.com/TakWolf/pcffont"; description = "A library for manipulating Portable Compiled Format (PCF) Fonts"; - platforms = lib.platforms.all; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + platforms = platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ TakWolf h7x4 ]; diff --git a/pkgs/development/python-modules/pdoc-pyo3-sample-library/default.nix b/pkgs/development/python-modules/pdoc-pyo3-sample-library/default.nix index 9e74fa519175c8..ab8c2d6ab89ed3 100644 --- a/pkgs/development/python-modules/pdoc-pyo3-sample-library/default.nix +++ b/pkgs/development/python-modules/pdoc-pyo3-sample-library/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = { + meta = with lib; { description = "Sample PyO3 library used in pdoc tests"; homepage = "https://github.com/mitmproxy/pdoc-pyo3-sample-library"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.pbsds ]; + license = licenses.mit; + maintainers = [ maintainers.pbsds ]; }; } diff --git a/pkgs/development/python-modules/periodictable/default.nix b/pkgs/development/python-modules/periodictable/default.nix index 1bde32797813e7..c8df524af667a5 100644 --- a/pkgs/development/python-modules/periodictable/default.nix +++ b/pkgs/development/python-modules/periodictable/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "periodictable" ]; - meta = { + meta = with lib; { description = "Extensible periodic table of the elements"; homepage = "https://github.com/pkienzle/periodictable"; - license = lib.licenses.publicDomain; - maintainers = with lib.maintainers; [ rprospero ]; + license = licenses.publicDomain; + maintainers = with maintainers; [ rprospero ]; }; } diff --git a/pkgs/development/python-modules/periodiq/default.nix b/pkgs/development/python-modules/periodiq/default.nix index c909082ee8645d..a2be4ec33c4060 100644 --- a/pkgs/development/python-modules/periodiq/default.nix +++ b/pkgs/development/python-modules/periodiq/default.nix @@ -51,11 +51,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "periodiq" ]; - meta = { + meta = with lib; { description = "Simple Scheduler for Dramatiq Task Queue"; mainProgram = "periodiq"; homepage = "https://pypi.org/project/periodiq/"; - license = lib.licenses.lgpl3Only; - maintainers = with lib.maintainers; [ traxys ]; + license = licenses.lgpl3Only; + maintainers = with maintainers; [ traxys ]; }; } diff --git a/pkgs/development/python-modules/pgpy/default.nix b/pkgs/development/python-modules/pgpy/default.nix index 09b810b3b46b2e..d7c54effb8b3ca 100644 --- a/pkgs/development/python-modules/pgpy/default.nix +++ b/pkgs/development/python-modules/pgpy/default.nix @@ -45,15 +45,15 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { homepage = "https://github.com/SecurityInnovation/PGPy"; description = "Pretty Good Privacy for Python"; longDescription = '' PGPy is a Python library for implementing Pretty Good Privacy into Python programs, conforming to the OpenPGP specification per RFC 4880. ''; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ eadwu dotlambda ]; diff --git a/pkgs/development/python-modules/phpserialize/default.nix b/pkgs/development/python-modules/phpserialize/default.nix index 89e7c9d30b5559..2932e392e84991 100644 --- a/pkgs/development/python-modules/phpserialize/default.nix +++ b/pkgs/development/python-modules/phpserialize/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # project does not have tests at the moment doCheck = false; - meta = { + meta = with lib; { description = "Port of the serialize and unserialize functions of PHP to Python"; homepage = "https://github.com/mitsuhiko/phpserialize"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ jluttine ]; + license = licenses.bsd3; + maintainers = with maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/pickpack/default.nix b/pkgs/development/python-modules/pickpack/default.nix index 98a96749f59253..33a65500626185 100644 --- a/pkgs/development/python-modules/pickpack/default.nix +++ b/pkgs/development/python-modules/pickpack/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = { + meta = with lib; { description = "Curses-based (and pick-based) interactive picker for the terminal. Now covering trees also"; homepage = "https://github.com/anafvana/pickpack"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.mit; + maintainers = with maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/picos/default.nix b/pkgs/development/python-modules/picos/default.nix index 0dbc12aa42a415..6c286c1a1f931e 100644 --- a/pkgs/development/python-modules/picos/default.nix +++ b/pkgs/development/python-modules/picos/default.nix @@ -48,10 +48,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = { + meta = with lib; { description = "Python interface to conic optimization solvers"; homepage = "https://gitlab.com/picos-api/picos"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ tobiasBora ]; + license = licenses.gpl3; + maintainers = with maintainers; [ tobiasBora ]; }; } diff --git a/pkgs/development/python-modules/pinecone-plugin-inference/default.nix b/pkgs/development/python-modules/pinecone-plugin-inference/default.nix index a184093457bd27..29400ffa7fb6f3 100644 --- a/pkgs/development/python-modules/pinecone-plugin-inference/default.nix +++ b/pkgs/development/python-modules/pinecone-plugin-inference/default.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pinecone-plugin-interface ]; - meta = { + meta = with lib; { homepage = "https://www.pinecone.io/"; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ bot-wxt1221 ]; + license = licenses.asl20; + platforms = platforms.unix; description = "Embeddings plugin for Pinecone SDK"; }; } diff --git a/pkgs/development/python-modules/pinecone-plugin-interface/default.nix b/pkgs/development/python-modules/pinecone-plugin-interface/default.nix index 69ad39d108fda7..fa987c2717751a 100644 --- a/pkgs/development/python-modules/pinecone-plugin-interface/default.nix +++ b/pkgs/development/python-modules/pinecone-plugin-interface/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { poetry-core ]; - meta = { + meta = with lib; { homepage = "https://www.pinecone.io/"; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ bot-wxt1221 ]; + license = licenses.asl20; + platforms = platforms.unix; description = "Plugin interface for the Pinecone python client"; }; } diff --git a/pkgs/development/python-modules/pixel-font-builder/default.nix b/pkgs/development/python-modules/pixel-font-builder/default.nix index aab3ba2d8c8fc8..b4207696f04074 100644 --- a/pkgs/development/python-modules/pixel-font-builder/default.nix +++ b/pkgs/development/python-modules/pixel-font-builder/default.nix @@ -42,12 +42,12 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://github.com/TakWolf/pixel-font-builder"; description = "Library that helps create pixel style fonts"; - platforms = lib.platforms.all; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + platforms = platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ TakWolf h7x4 ]; diff --git a/pkgs/development/python-modules/pixel-font-knife/default.nix b/pkgs/development/python-modules/pixel-font-knife/default.nix index c8ca0cbd2c073b..61f9062aa41e4a 100644 --- a/pkgs/development/python-modules/pixel-font-knife/default.nix +++ b/pkgs/development/python-modules/pixel-font-knife/default.nix @@ -36,12 +36,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pixel_font_knife" ]; - meta = { + meta = with lib; { homepage = "https://github.com/TakWolf/pixel-font-knife"; description = "Set of pixel font utilities"; - platforms = lib.platforms.all; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + platforms = platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ TakWolf h7x4 ]; diff --git a/pkgs/development/python-modules/pkgutil-resolve-name/default.nix b/pkgs/development/python-modules/pkgutil-resolve-name/default.nix index 6c7a65e62a5329..29f41a5e164fcd 100644 --- a/pkgs/development/python-modules/pkgutil-resolve-name/default.nix +++ b/pkgs/development/python-modules/pkgutil-resolve-name/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://pypi.org/project/pkgutil_resolve_name/"; description = "Backport of Python 3.9’s pkgutil.resolve_name"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ yajo ]; + license = licenses.mit; + maintainers = with maintainers; [ yajo ]; }; } diff --git a/pkgs/development/python-modules/plasTeX/default.nix b/pkgs/development/python-modules/plasTeX/default.nix index 407918ec4042ca..9dc0b106b1de2c 100644 --- a/pkgs/development/python-modules/plasTeX/default.nix +++ b/pkgs/development/python-modules/plasTeX/default.nix @@ -33,10 +33,10 @@ buildPythonPackage { unidecode ]; - meta = { + meta = with lib; { description = "plasTeX is a Python package to convert LaTeX markup to DOM"; homepage = "https://plastex.github.io/plastex/"; - maintainers = with lib.maintainers; [ niklashh ]; - license = lib.licenses.asl20; + maintainers = with maintainers; [ niklashh ]; + license = licenses.asl20; }; } diff --git a/pkgs/development/python-modules/plastexdepgraph/default.nix b/pkgs/development/python-modules/plastexdepgraph/default.nix index 7fcc029ad97f46..deb564c4105663 100644 --- a/pkgs/development/python-modules/plastexdepgraph/default.nix +++ b/pkgs/development/python-modules/plastexdepgraph/default.nix @@ -29,10 +29,10 @@ buildPythonPackage { plasTeX ]; - meta = { + meta = with lib; { description = "plasTeX plugin allowing to build dependency graphs"; homepage = "https://github.com/PatrickMassot/plastexdepgraph"; - maintainers = with lib.maintainers; [ niklashh ]; - license = lib.licenses.asl20; + maintainers = with maintainers; [ niklashh ]; + license = licenses.asl20; }; } diff --git a/pkgs/development/python-modules/plastexshowmore/default.nix b/pkgs/development/python-modules/plastexshowmore/default.nix index 907869829a03af..49fdecc8587cc9 100644 --- a/pkgs/development/python-modules/plastexshowmore/default.nix +++ b/pkgs/development/python-modules/plastexshowmore/default.nix @@ -26,10 +26,10 @@ buildPythonPackage { dependencies = [ plasTeX ]; - meta = { + meta = with lib; { description = "PlasTeX plugin for adding navigation buttons"; homepage = "https://github.com/PatrickMassot/plastexshowmore"; - maintainers = with lib.maintainers; [ niklashh ]; - license = lib.licenses.asl20; + maintainers = with maintainers; [ niklashh ]; + license = licenses.asl20; }; } diff --git a/pkgs/development/python-modules/plotly/default.nix b/pkgs/development/python-modules/plotly/default.nix index 5652f9458b8602..32c6a1cd67bcb3 100644 --- a/pkgs/development/python-modules/plotly/default.nix +++ b/pkgs/development/python-modules/plotly/default.nix @@ -118,12 +118,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "plotly" ]; - meta = { + meta = with lib; { description = "Python plotting library for collaborative, interactive, publication-quality graphs"; homepage = "https://plot.ly/python/"; downloadPage = "https://github.com/plotly/plotly.py"; changelog = "https://github.com/plotly/plotly.py/blob/master/CHANGELOG.md"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pandapip1 ]; + license = licenses.mit; + maintainers = with maintainers; [ pandapip1 ]; }; } diff --git a/pkgs/development/python-modules/plyplus/default.nix b/pkgs/development/python-modules/plyplus/default.nix index 53761eb0a4d096..60dc298a7383b7 100644 --- a/pkgs/development/python-modules/plyplus/default.nix +++ b/pkgs/development/python-modules/plyplus/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { doCheck = !isPy3k; - meta = { + meta = with lib; { homepage = "https://github.com/erezsh/plyplus"; description = "General-purpose parser built on top of PLY"; - maintainers = with lib.maintainers; [ twey ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ twey ]; + license = licenses.mit; }; } diff --git a/pkgs/development/python-modules/pmw/default.nix b/pkgs/development/python-modules/pmw/default.nix index 98988926b21e4d..714c94b758e212 100644 --- a/pkgs/development/python-modules/pmw/default.nix +++ b/pkgs/development/python-modules/pmw/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { # Disable tests due to their xserver requirement doCheck = false; - meta = { + meta = with lib; { description = "Toolkit for building high-level compound widgets in Python using the Tkinter module"; homepage = "https://pmw.sourceforge.net/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ mounium ]; + license = licenses.mit; + maintainers = with maintainers; [ mounium ]; }; } diff --git a/pkgs/development/python-modules/polars/default.nix b/pkgs/development/python-modules/polars/default.nix index d4bb4daf5cd827..7f6491d0c1eb2a 100644 --- a/pkgs/development/python-modules/polars/default.nix +++ b/pkgs/development/python-modules/polars/default.nix @@ -291,15 +291,15 @@ buildPythonPackage { installPhase = "touch $out"; }; - meta = { + meta = with lib; { description = "Dataframes powered by a multithreaded, vectorized query engine, written in Rust"; homepage = "https://github.com/pola-rs/polars"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ happysalada SomeoneSerge ]; mainProgram = "polars"; - platforms = lib.platforms.all; + platforms = platforms.all; }; } diff --git a/pkgs/development/python-modules/pre-commit-po-hooks/default.nix b/pkgs/development/python-modules/pre-commit-po-hooks/default.nix index 1b682ad2c0a6e1..0e420423803ab1 100644 --- a/pkgs/development/python-modules/pre-commit-po-hooks/default.nix +++ b/pkgs/development/python-modules/pre-commit-po-hooks/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pre_commit_po_hooks" ]; - meta = { + meta = with lib; { description = "Hooks for pre-commit useful working with PO files"; homepage = "https://github.com/mondeja/pre-commit-po-hooks"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ yajo ]; + license = licenses.bsd3; + maintainers = with maintainers; [ yajo ]; }; } diff --git a/pkgs/development/python-modules/precisely/default.nix b/pkgs/development/python-modules/precisely/default.nix index 76300d76ff6740..a9206cad321eca 100644 --- a/pkgs/development/python-modules/precisely/default.nix +++ b/pkgs/development/python-modules/precisely/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { passthru.updateScripts = gitUpdater { }; - meta = { + meta = with lib; { description = "Matcher library for Python"; homepage = "https://github.com/mwilliamson/python-precisely"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ drupol ]; + license = licenses.bsd2; + maintainers = with maintainers; [ drupol ]; }; } diff --git a/pkgs/development/python-modules/prodict/default.nix b/pkgs/development/python-modules/prodict/default.nix index fdee36a3c615fd..64b0c859937cf5 100644 --- a/pkgs/development/python-modules/prodict/default.nix +++ b/pkgs/development/python-modules/prodict/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "prodict" ]; - meta = { + meta = with lib; { description = "Access Python dictionary as a class with type hinting and autocompletion"; homepage = "https://github.com/ramazanpolat/prodict"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ bcdarwin ]; + license = licenses.mit; + maintainers = with maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/proton-core/default.nix b/pkgs/development/python-modules/proton-core/default.nix index b0f67a37c87d56..fc767ae1aef7cc 100644 --- a/pkgs/development/python-modules/proton-core/default.nix +++ b/pkgs/development/python-modules/proton-core/default.nix @@ -65,10 +65,10 @@ buildPythonPackage rec { "test_bad_pinning_url_changed" ]; - meta = { + meta = with lib; { description = "Core logic used by the other Proton components"; homepage = "https://github.com/ProtonVPN/python-proton-core"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ sebtm ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ sebtm ]; }; } diff --git a/pkgs/development/python-modules/proton-keyring-linux/default.nix b/pkgs/development/python-modules/proton-keyring-linux/default.nix index 7566f1e087cbb9..833f5de8ceefa4 100644 --- a/pkgs/development/python-modules/proton-keyring-linux/default.nix +++ b/pkgs/development/python-modules/proton-keyring-linux/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pytest-cov-stub ]; - meta = { + meta = with lib; { description = "ProtonVPN core component to access Linux's keyring"; homepage = "https://github.com/ProtonVPN/python-proton-keyring-linux"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ sebtm ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ sebtm ]; }; } diff --git a/pkgs/development/python-modules/proton-vpn-api-core/default.nix b/pkgs/development/python-modules/proton-vpn-api-core/default.nix index dad65babe69903..500611faabc096 100644 --- a/pkgs/development/python-modules/proton-vpn-api-core/default.nix +++ b/pkgs/development/python-modules/proton-vpn-api-core/default.nix @@ -76,12 +76,12 @@ buildPythonPackage rec { "test_ensure_configuration_file_is_deleted" ]; - meta = { + meta = with lib; { description = "Acts as a facade to the other Proton VPN components, exposing a uniform API to the available Proton VPN services"; homepage = "https://github.com/ProtonVPN/python-proton-vpn-api-core"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + platforms = platforms.linux; + maintainers = with maintainers; [ sebtm rapiteanu ]; diff --git a/pkgs/development/python-modules/proton-vpn-network-manager/default.nix b/pkgs/development/python-modules/proton-vpn-network-manager/default.nix index 06ee4e31cfd903..529c76ce8109c1 100644 --- a/pkgs/development/python-modules/proton-vpn-network-manager/default.nix +++ b/pkgs/development/python-modules/proton-vpn-network-manager/default.nix @@ -72,12 +72,12 @@ buildPythonPackage rec { export HOME=$(mktemp -d) ''; - meta = { + meta = with lib; { description = "Provides the necessary functionality for other ProtonVPN components to interact with NetworkManager"; homepage = "https://github.com/ProtonVPN/python-proton-vpn-network-manager"; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + platforms = platforms.linux; + maintainers = with maintainers; [ sebtm rapiteanu ]; diff --git a/pkgs/development/python-modules/pwinput/default.nix b/pkgs/development/python-modules/pwinput/default.nix index 66105db31a0780..333621a061895b 100644 --- a/pkgs/development/python-modules/pwinput/default.nix +++ b/pkgs/development/python-modules/pwinput/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { # Requires graphical environment to use pyautogui doCheck = false; - meta = { + meta = with lib; { description = "Python module that masks password input"; homepage = "https://github.com/asweigart/pwinput"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ bwkam ]; + license = licenses.mit; + maintainers = with maintainers; [ bwkam ]; }; } diff --git a/pkgs/development/python-modules/py-aosmith/default.nix b/pkgs/development/python-modules/py-aosmith/default.nix index fa36ca8d681b69..0d0daaf95fba26 100644 --- a/pkgs/development/python-modules/py-aosmith/default.nix +++ b/pkgs/development/python-modules/py-aosmith/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { # upstream has no tests doCheck = false; - meta = { + meta = with lib; { description = "Python client library for A. O. Smith water heaters"; homepage = "https://github.com/bdr99/py-aosmith"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/py-ccm15/default.nix b/pkgs/development/python-modules/py-ccm15/default.nix index aa4ccf9928e2ee..52dbfd7542a4f7 100644 --- a/pkgs/development/python-modules/py-ccm15/default.nix +++ b/pkgs/development/python-modules/py-ccm15/default.nix @@ -36,10 +36,10 @@ buildPythonPackage { pythonImportsCheck = [ "ccm15" ]; - meta = { + meta = with lib; { description = "Python Library to access a Midea CCM15 data converter"; homepage = "https://github.com/ocalvo/py-ccm15"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ pyrox0 ]; + license = licenses.mit; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/development/python-modules/py-machineid/default.nix b/pkgs/development/python-modules/py-machineid/default.nix index 9c634e6a1ab6e8..229bf14f219398 100644 --- a/pkgs/development/python-modules/py-machineid/default.nix +++ b/pkgs/development/python-modules/py-machineid/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { # Tests are not present in Pypi archive doCheck = false; - meta = { + meta = with lib; { description = "Get the unique machine ID of any host (without admin privileges)"; homepage = "https://github.com/keygen-sh/py-machineid"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.mit; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/py-slvs/default.nix b/pkgs/development/python-modules/py-slvs/default.nix index 5f68487a879a0a..437c921ed29755 100644 --- a/pkgs/development/python-modules/py-slvs/default.nix +++ b/pkgs/development/python-modules/py-slvs/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { "py_slvs" ]; - meta = { + meta = with lib; { description = "Python binding of SOLVESPACE geometry constraint solver"; homepage = "https://github.com/realthunder/slvs_py"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + maintainers = with maintainers; [ traverseda ]; }; diff --git a/pkgs/development/python-modules/py3buddy/default.nix b/pkgs/development/python-modules/py3buddy/default.nix index e076aa3b667e97..7a4e5312d171b5 100644 --- a/pkgs/development/python-modules/py3buddy/default.nix +++ b/pkgs/development/python-modules/py3buddy/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { install -D 99-ibuddy.rules $out/lib/udev/rules.d/99-ibuddy.rules ''; - meta = { + meta = with lib; { description = "Code to work with the iBuddy MSN figurine"; homepage = "https://github.com/armijnhemel/py3buddy"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ prusnak ]; + license = licenses.mit; + maintainers = with maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/pycompliance/default.nix b/pkgs/development/python-modules/pycompliance/default.nix index af1d976c0471a7..5d4f3b8638a601 100644 --- a/pkgs/development/python-modules/pycompliance/default.nix +++ b/pkgs/development/python-modules/pycompliance/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pycompliance" ]; - meta = { + meta = with lib; { description = "Simply library to represent compliance benchmarks as tree structures"; homepage = "https://github.com/rhmdnd/pycompliance"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ tochiaha ]; + license = licenses.asl20; + maintainers = with maintainers; [ tochiaha ]; }; } diff --git a/pkgs/development/python-modules/pycountry-convert/default.nix b/pkgs/development/python-modules/pycountry-convert/default.nix index 7dda05c909ad90..abe0def4f4fa2d 100644 --- a/pkgs/development/python-modules/pycountry-convert/default.nix +++ b/pkgs/development/python-modules/pycountry-convert/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { # upstream has no tests doCheck = false; - meta = { + meta = with lib; { description = "Python conversion functions between ISO country codes, countries, and continents"; homepage = "https://github.com/jefftune/pycountry-convert"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pycsdr/default.nix b/pkgs/development/python-modules/pycsdr/default.nix index 53a8f25d78d8b4..0868c0ef665e08 100644 --- a/pkgs/development/python-modules/pycsdr/default.nix +++ b/pkgs/development/python-modules/pycsdr/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pycsdr" ]; - meta = { + meta = with lib; { homepage = "https://github.com/jketterl/pycsdr"; description = "bindings for the csdr library"; - license = lib.licenses.gpl3Only; - maintainers = lib.teams.c3d2.members; + license = licenses.gpl3Only; + maintainers = teams.c3d2.members; }; } diff --git a/pkgs/development/python-modules/pycxx/default.nix b/pkgs/development/python-modules/pycxx/default.nix index a85a556c0bc798..75a70744b07bbd 100644 --- a/pkgs/development/python-modules/pycxx/default.nix +++ b/pkgs/development/python-modules/pycxx/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { sed -i "s|Src|$dev/src|" $dev/src/cxxextensions.c $dev/src/cxxsupport.cxx ''; - meta = { + meta = with lib; { description = "Set of classes to help create extensions of Python in the C++ language"; homepage = "https://sourceforge.net/projects/cxx/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ freezeboy ]; + license = licenses.bsd3; + maintainers = with maintainers; [ freezeboy ]; }; } diff --git a/pkgs/development/python-modules/pydigiham/default.nix b/pkgs/development/python-modules/pydigiham/default.nix index 1bc5fd33e59e6a..5cbfdc43a8f022 100644 --- a/pkgs/development/python-modules/pydigiham/default.nix +++ b/pkgs/development/python-modules/pydigiham/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "digiham" ]; - meta = { + meta = with lib; { homepage = "https://github.com/jketterl/pydigiham"; description = "bindings for the csdr library"; - license = lib.licenses.gpl3Only; - maintainers = lib.teams.c3d2.members; + license = licenses.gpl3Only; + maintainers = teams.c3d2.members; }; } diff --git a/pkgs/development/python-modules/pydy/default.nix b/pkgs/development/python-modules/pydy/default.nix index b4172a855052b0..ba4d920f77d8ba 100644 --- a/pkgs/development/python-modules/pydy/default.nix +++ b/pkgs/development/python-modules/pydy/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pydy" ]; - meta = { + meta = with lib; { description = "Python tool kit for multi-body dynamics"; homepage = "http://pydy.org"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.bsd3; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/pyembroidery/default.nix b/pkgs/development/python-modules/pyembroidery/default.nix index a5830f5a388e77..3375322692026a 100644 --- a/pkgs/development/python-modules/pyembroidery/default.nix +++ b/pkgs/development/python-modules/pyembroidery/default.nix @@ -45,10 +45,10 @@ buildPythonPackage { "test_jef_trims_commands" ]; - meta = { + meta = with lib; { description = "Python library for the reading and writing of embroidery files"; homepage = "https://github.com/inkstitch/pyembroidery"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ pluiedev ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ pluiedev ]; }; } diff --git a/pkgs/development/python-modules/pyevtk/default.nix b/pkgs/development/python-modules/pyevtk/default.nix index 1e84651b6de390..07fa9789e2e03e 100644 --- a/pkgs/development/python-modules/pyevtk/default.nix +++ b/pkgs/development/python-modules/pyevtk/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyevtk" ]; - meta = { + meta = with lib; { description = "Exports data to binary VTK files for visualization/analysis"; homepage = "https://github.com/pyscience-projects/pyevtk"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.bsd2; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/pyfatfs/default.nix b/pkgs/development/python-modules/pyfatfs/default.nix index 0d1914c58efa66..79b6ee3c4f7a0d 100644 --- a/pkgs/development/python-modules/pyfatfs/default.nix +++ b/pkgs/development/python-modules/pyfatfs/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = { + meta = with lib; { description = "Python based FAT12/FAT16/FAT32 implementation with VFAT support"; homepage = "https://github.com/nathanhi/pyfatfs"; - license = lib.licenses.mit; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ vlaci ]; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ vlaci ]; }; } diff --git a/pkgs/development/python-modules/pyflipper/default.nix b/pkgs/development/python-modules/pyflipper/default.nix index f807ac56c9591f..7c0dcb34b01309 100644 --- a/pkgs/development/python-modules/pyflipper/default.nix +++ b/pkgs/development/python-modules/pyflipper/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyflipper" ]; - meta = { + meta = with lib; { description = "Flipper Zero Python CLI Wrapper"; homepage = "https://github.com/wh00hw/pyFlipper"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ siraben ]; + license = licenses.mit; + maintainers = with maintainers; [ siraben ]; }; } diff --git a/pkgs/development/python-modules/pyfunctional/default.nix b/pkgs/development/python-modules/pyfunctional/default.nix index df00801b1d47a1..b971aa95c6f554 100644 --- a/pkgs/development/python-modules/pyfunctional/default.nix +++ b/pkgs/development/python-modules/pyfunctional/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "functional" ]; - meta = { + meta = with lib; { description = "Python library for creating data pipelines with chain functional programming"; homepage = "https://github.com/EntilZha/PyFunctional"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/pyfwup/default.nix b/pkgs/development/python-modules/pyfwup/default.nix index fd331ec98183c5..22b28721a6b566 100644 --- a/pkgs/development/python-modules/pyfwup/default.nix +++ b/pkgs/development/python-modules/pyfwup/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { "fwup_utils" ]; - meta = { + meta = with lib; { description = "Python FirmWare UPgrader"; homepage = "https://github.com/greatscottgadgets/pyfwup"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.msanft ]; + license = licenses.bsd3; + maintainers = [ maintainers.msanft ]; }; } diff --git a/pkgs/development/python-modules/pygame-sdl2/default.nix b/pkgs/development/python-modules/pygame-sdl2/default.nix index 43ce26585f30ed..2d0da7c4799985 100644 --- a/pkgs/development/python-modules/pygame-sdl2/default.nix +++ b/pkgs/development/python-modules/pygame-sdl2/default.nix @@ -56,13 +56,13 @@ buildPythonPackage { doCheck = isPy27; # python3 tests are non-functional - meta = { + meta = with lib; { description = "Reimplementation of parts of pygame API using SDL2"; homepage = "https://github.com/renpy/pygame_sdl2"; - license = with lib.licenses; [ + license = with licenses; [ lgpl2 zlib ]; - maintainers = with lib.maintainers; [ raskin ]; + maintainers = with maintainers; [ raskin ]; }; } diff --git a/pkgs/development/python-modules/pygelf/default.nix b/pkgs/development/python-modules/pygelf/default.nix index bb5735771c7459..7baeeccfb00186 100644 --- a/pkgs/development/python-modules/pygelf/default.nix +++ b/pkgs/development/python-modules/pygelf/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { "tests/test_common_fields.py" ]; - meta = { + meta = with lib; { description = "Python logging handlers with GELF (Graylog Extended Log Format) support"; homepage = "https://github.com/keeprocking/pygelf"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ drupol ]; + license = licenses.bsd3; + maintainers = with maintainers; [ drupol ]; }; } diff --git a/pkgs/development/python-modules/pygerber/default.nix b/pkgs/development/python-modules/pygerber/default.nix index d0c0690bc5b49c..eb9a887cfd7153 100644 --- a/pkgs/development/python-modules/pygerber/default.nix +++ b/pkgs/development/python-modules/pygerber/default.nix @@ -96,11 +96,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pygerber" ]; - meta = { + meta = with lib; { description = "Implementation of the Gerber X3/X2 format, based on Ucamco's The Gerber Layer Format Specification"; homepage = "https://github.com/Argmaster/pygerber"; changelog = "https://argmaster.github.io/pygerber/stable/Changelog.html"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ clemjvdm ]; + license = licenses.mit; + maintainers = with maintainers; [ clemjvdm ]; }; } diff --git a/pkgs/development/python-modules/pygments-better-html/default.nix b/pkgs/development/python-modules/pygments-better-html/default.nix index d58dabf269a124..78f2dc87528e96 100644 --- a/pkgs/development/python-modules/pygments-better-html/default.nix +++ b/pkgs/development/python-modules/pygments-better-html/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pygments_better_html" ]; - meta = { + meta = with lib; { homepage = "https://github.com/Kwpolska/pygments_better_html"; description = "Improved line numbering for Pygments’ HTML formatter"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ hexa ]; + license = licenses.bsd3; + maintainers = with maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/pygtrie/default.nix b/pkgs/development/python-modules/pygtrie/default.nix index 4f4743f04f33e1..7af97b07789ee1 100644 --- a/pkgs/development/python-modules/pygtrie/default.nix +++ b/pkgs/development/python-modules/pygtrie/default.nix @@ -12,10 +12,10 @@ buildPythonPackage rec { inherit pname version; hash = "sha256-IDUUrYJutAPasdLi3dA04NFTS75NvgITuwWT9mvrpOI="; }; - meta = { + meta = with lib; { homepage = "https://github.com/mina86/pygtrie"; description = "Trie data structure implementation"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ kmein ]; + license = licenses.asl20; + maintainers = with maintainers; [ kmein ]; }; } diff --git a/pkgs/development/python-modules/pyinstaller-hooks-contrib/default.nix b/pkgs/development/python-modules/pyinstaller-hooks-contrib/default.nix index f26f4af855e84b..e608f24c4a8869 100644 --- a/pkgs/development/python-modules/pyinstaller-hooks-contrib/default.nix +++ b/pkgs/development/python-modules/pyinstaller-hooks-contrib/default.nix @@ -24,7 +24,7 @@ buildPythonPackage rec { # and building tests creates a very big closure. doCheck = false; - meta = { + meta = with lib; { description = "Community maintained hooks for PyInstaller"; longDescription = '' A "hook" file extends PyInstaller to adapt it to the special needs and methods used by a Python package. @@ -36,10 +36,10 @@ buildPythonPackage rec { homepage = "https://github.com/pyinstaller/pyinstaller-hooks-contrib"; # See https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/761 changelog = "https://github.com/pyinstaller/pyinstaller-hooks-contrib/blob/master/CHANGELOG.rst"; - license = with lib.licenses; [ + license = with licenses; [ gpl2Plus asl20 ]; - maintainers = with lib.maintainers; [ h7x4 ]; + maintainers = with maintainers; [ h7x4 ]; }; } diff --git a/pkgs/development/python-modules/pyjks/default.nix b/pkgs/development/python-modules/pyjks/default.nix index 9b63d5a8f61983..643f91a8418cff 100644 --- a/pkgs/development/python-modules/pyjks/default.nix +++ b/pkgs/development/python-modules/pyjks/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { # Tests assume network connectivity doCheck = false; - meta = { + meta = with lib; { description = "Pure-Python Java Keystore (JKS) library"; homepage = "https://github.com/kurtbrose/pyjks"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ kamadorueda ]; + license = licenses.mit; + maintainers = with maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/pylibjpeg-data/default.nix b/pkgs/development/python-modules/pylibjpeg-data/default.nix index dcc14a7fd912d7..742e647b599d96 100644 --- a/pkgs/development/python-modules/pylibjpeg-data/default.nix +++ b/pkgs/development/python-modules/pylibjpeg-data/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { "ljdata.jpg" ]; - meta = { + meta = with lib; { description = "JPEG and DICOM data used for testing pylibjpeg"; homepage = "https://github.com/pydicom/pylibjpeg-data"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.bcdarwin ]; + license = licenses.mit; + maintainers = [ maintainers.bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/pyls-isort/default.nix b/pkgs/development/python-modules/pyls-isort/default.nix index c68d188f47ddd3..9227e603cd1e13 100644 --- a/pkgs/development/python-modules/pyls-isort/default.nix +++ b/pkgs/development/python-modules/pyls-isort/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { python-lsp-server ]; - meta = { + meta = with lib; { homepage = "https://github.com/paradoxxxzero/pyls-isort"; description = "Isort plugin for python-lsp-server"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ cpcloud ]; + license = licenses.mit; + maintainers = with maintainers; [ cpcloud ]; }; } diff --git a/pkgs/development/python-modules/pyls-memestra/default.nix b/pkgs/development/python-modules/pyls-memestra/default.nix index 5baf644630c4c0..1e3f879c2fea12 100644 --- a/pkgs/development/python-modules/pyls-memestra/default.nix +++ b/pkgs/development/python-modules/pyls-memestra/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyls_memestra" ]; - meta = { + meta = with lib; { description = "Memestra plugin for the Python Language Server"; homepage = "https://github.com/QuantStack/pyls-memestra"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.bsd3; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/pymanopt/default.nix b/pkgs/development/python-modules/pymanopt/default.nix index 20cac6031746c5..a773ea4dd4af22 100644 --- a/pkgs/development/python-modules/pymanopt/default.nix +++ b/pkgs/development/python-modules/pymanopt/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymanopt" ]; - meta = { + meta = with lib; { description = "Python toolbox for optimization on Riemannian manifolds with support for automatic differentiation"; homepage = "https://www.pymanopt.org/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ yl3dy ]; + license = licenses.bsd3; + maintainers = with maintainers; [ yl3dy ]; }; } diff --git a/pkgs/development/python-modules/pymarshal/default.nix b/pkgs/development/python-modules/pymarshal/default.nix index 44bd1c8156141f..a81e5617335257 100644 --- a/pkgs/development/python-modules/pymarshal/default.nix +++ b/pkgs/development/python-modules/pymarshal/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { pytestFlagsArray = [ "test" ]; - meta = { + meta = with lib; { description = "Python data serialization library"; homepage = "https://github.com/stargateaudio/pymarshal"; - maintainers = with lib.maintainers; [ yuu ]; - license = lib.licenses.bsd2; + maintainers = with maintainers; [ yuu ]; + license = licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/pymeteireann/default.nix b/pkgs/development/python-modules/pymeteireann/default.nix index 444582f52405f2..ffc5260245801e 100644 --- a/pkgs/development/python-modules/pymeteireann/default.nix +++ b/pkgs/development/python-modules/pymeteireann/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "meteireann" ]; - meta = { + meta = with lib; { description = "Python module to communicate with the Met Éireann Public Weather Forecast API"; homepage = "https://github.com/DylanGore/PyMetEireann/"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ fab ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/pymongo-inmemory/default.nix b/pkgs/development/python-modules/pymongo-inmemory/default.nix index b17502b730dbbe..db957b361d3682 100644 --- a/pkgs/development/python-modules/pymongo-inmemory/default.nix +++ b/pkgs/development/python-modules/pymongo-inmemory/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pymongo_inmemory" ]; - meta = { + meta = with lib; { homepage = "https://github.com/kaizendorks/pymongo_inmemory"; description = "Mongo mocking library with an ephemeral MongoDB running in memory"; - maintainers = with lib.maintainers; [ pbsds ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ pbsds ]; + license = licenses.mit; }; } diff --git a/pkgs/development/python-modules/pynvim-pp/default.nix b/pkgs/development/python-modules/pynvim-pp/default.nix index feb57706f7a52e..47a7af4c007d9c 100644 --- a/pkgs/development/python-modules/pynvim-pp/default.nix +++ b/pkgs/development/python-modules/pynvim-pp/default.nix @@ -22,10 +22,10 @@ buildPythonPackage { dependencies = [ pynvim ]; - meta = { + meta = with lib; { homepage = "https://github.com/ms-jpq/pynvim_pp"; description = "Dependency to chadtree and coq_nvim plugins"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/pynvml/default.nix b/pkgs/development/python-modules/pynvml/default.nix index ea8c12ad552853..9aeda42a92f9a5 100644 --- a/pkgs/development/python-modules/pynvml/default.nix +++ b/pkgs/development/python-modules/pynvml/default.nix @@ -57,10 +57,10 @@ buildPythonPackage rec { print(f"{pynvml.nvmlInit()=}") ''; - meta = { + meta = with lib; { description = "Python bindings for the NVIDIA Management Library"; homepage = "https://github.com/gpuopenanalytics/pynvml"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.bcdarwin ]; + license = licenses.bsd3; + maintainers = [ maintainers.bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/pyopengl-accelerate/default.nix b/pkgs/development/python-modules/pyopengl-accelerate/default.nix index c138af55ea6af6..c8eb4f9b6fb0a9 100644 --- a/pkgs/development/python-modules/pyopengl-accelerate/default.nix +++ b/pkgs/development/python-modules/pyopengl-accelerate/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { "-Wno-error=incompatible-pointer-types" ]; - meta = { + meta = with lib; { description = "This set of C (Cython) extensions provides acceleration of common operations for slow points in PyOpenGL 3.x"; homepage = "https://pyopengl.sourceforge.net/"; - maintainers = with lib.maintainers; [ laikq ]; - license = lib.licenses.bsd3; + maintainers = with maintainers; [ laikq ]; + license = licenses.bsd3; }; } diff --git a/pkgs/development/python-modules/pypager/default.nix b/pkgs/development/python-modules/pypager/default.nix index 94ed9f2cc7bd54..b49970c606bdbd 100644 --- a/pkgs/development/python-modules/pypager/default.nix +++ b/pkgs/development/python-modules/pypager/default.nix @@ -31,11 +31,11 @@ buildPythonPackage { # no tests doCheck = false; - meta = { + meta = with lib; { description = ''Pure Python pager (like "more" and "less")''; homepage = "https://github.com/prompt-toolkit/pypager"; - license = lib.licenses.bsd3; + license = licenses.bsd3; mainProgram = "pypager"; - maintainers = with lib.maintainers; [ taha-yassine ]; + maintainers = with maintainers; [ taha-yassine ]; }; } diff --git a/pkgs/development/python-modules/pyparser/default.nix b/pkgs/development/python-modules/pyparser/default.nix index 7b78bf6f27f04e..7d948ef013902f 100644 --- a/pkgs/development/python-modules/pyparser/default.nix +++ b/pkgs/development/python-modules/pyparser/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ parse ]; - meta = { + meta = with lib; { description = "Simple library that makes it easier to parse files"; homepage = "https://bitbucket.org/rw_grim/pyparser"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.nico202 ]; + license = licenses.gpl3; + maintainers = [ maintainers.nico202 ]; }; } diff --git a/pkgs/development/python-modules/pyproject-parser/default.nix b/pkgs/development/python-modules/pyproject-parser/default.nix index a3b6ca4b03197e..2bb896d091e984 100644 --- a/pkgs/development/python-modules/pyproject-parser/default.nix +++ b/pkgs/development/python-modules/pyproject-parser/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { --replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"' ''; - meta = { + meta = with lib; { description = "Parser for ‘pyproject.toml’"; homepage = "https://github.com/repo-helper/pyproject-parser"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tyberius-prime ]; + license = licenses.mit; + maintainers = with maintainers; [ tyberius-prime ]; }; } diff --git a/pkgs/development/python-modules/pyqtgraph/default.nix b/pkgs/development/python-modules/pyqtgraph/default.nix index 7de9344125b7a1..c01cf292c31763 100644 --- a/pkgs/development/python-modules/pyqtgraph/default.nix +++ b/pkgs/development/python-modules/pyqtgraph/default.nix @@ -69,13 +69,13 @@ buildPythonPackage rec { "test_rescaleData" ]; - meta = { + meta = with lib; { description = "Scientific Graphics and GUI Library for Python"; homepage = "https://www.pyqtgraph.org/"; changelog = "https://github.com/pyqtgraph/pyqtgraph/blob/master/CHANGELOG"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ koral doronbehar ]; diff --git a/pkgs/development/python-modules/pyrad/default.nix b/pkgs/development/python-modules/pyrad/default.nix index fc4f140460196c..98955b879796eb 100644 --- a/pkgs/development/python-modules/pyrad/default.nix +++ b/pkgs/development/python-modules/pyrad/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyrad" ]; - meta = { + meta = with lib; { description = "Python RADIUS Implementation"; homepage = "https://github.com/pyradius/pyrad"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ drawbu ]; + license = licenses.bsd3; + maintainers = with maintainers; [ drawbu ]; }; } diff --git a/pkgs/development/python-modules/pyro-api/default.nix b/pkgs/development/python-modules/pyro-api/default.nix index c5f2ea37e0c800..d1dfa2020bae06 100644 --- a/pkgs/development/python-modules/pyro-api/default.nix +++ b/pkgs/development/python-modules/pyro-api/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { # tests require pyro-ppl which depends on this package doCheck = false; - meta = { + meta = with lib; { description = "Generic API for dispatch to Pyro backends"; homepage = "http://pyro.ai"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ georgewhewell ]; + license = licenses.mit; + maintainers = with maintainers; [ georgewhewell ]; }; } diff --git a/pkgs/development/python-modules/pysabnzbd/default.nix b/pkgs/development/python-modules/pysabnzbd/default.nix index 4515bc0b37c825..37dba2660382ff 100644 --- a/pkgs/development/python-modules/pysabnzbd/default.nix +++ b/pkgs/development/python-modules/pysabnzbd/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysabnzbd" ]; - meta = { + meta = with lib; { description = "Python wrapper for SABnzbd API"; homepage = "https://github.com/jeradM/pysabnzbd"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pysam/default.nix b/pkgs/development/python-modules/pysam/default.nix index cdabdace5294f0..3ecac61f5590fe 100644 --- a/pkgs/development/python-modules/pysam/default.nix +++ b/pkgs/development/python-modules/pysam/default.nix @@ -75,12 +75,12 @@ buildPythonPackage { "pysam.libcvcf" ]; - meta = { + meta = with lib; { description = "Python module for reading, manipulating and writing genome data sets"; downloadPage = "https://github.com/pysam-developers/pysam"; homepage = "https://pysam.readthedocs.io"; - maintainers = with lib.maintainers; [ unode ]; - license = lib.licenses.mit; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ unode ]; + license = licenses.mit; + platforms = platforms.unix; }; } diff --git a/pkgs/development/python-modules/pysc2/default.nix b/pkgs/development/python-modules/pysc2/default.nix index 54a79bff39099f..5c69a335387acd 100644 --- a/pkgs/development/python-modules/pysc2/default.nix +++ b/pkgs/development/python-modules/pysc2/default.nix @@ -52,11 +52,11 @@ buildPythonPackage { sc2-headless ]; - meta = { + meta = with lib; { description = "Starcraft II environment and library for training agents"; homepage = "https://github.com/deepmind/pysc2"; - license = lib.licenses.asl20; - platforms = lib.platforms.linux; + license = licenses.asl20; + platforms = platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pysdl2/default.nix b/pkgs/development/python-modules/pysdl2/default.nix index 2bc97d102b7fa7..08671a3931e6d9 100644 --- a/pkgs/development/python-modules/pysdl2/default.nix +++ b/pkgs/development/python-modules/pysdl2/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { )) ]; - meta = { + meta = with lib; { description = "Wrapper around the SDL2 library and as such similar to the discontinued PySDL project"; homepage = "https://github.com/marcusva/py-sdl2"; - license = lib.licenses.publicDomain; - maintainers = with lib.maintainers; [ pmiddend ]; + license = licenses.publicDomain; + maintainers = with maintainers; [ pmiddend ]; }; } diff --git a/pkgs/development/python-modules/pyseries/default.nix b/pkgs/development/python-modules/pyseries/default.nix index 76003eb105af51..2bbf62eb95e6ff 100644 --- a/pkgs/development/python-modules/pyseries/default.nix +++ b/pkgs/development/python-modules/pyseries/default.nix @@ -54,10 +54,10 @@ buildPythonPackage rec { # no tests in the pypi archive doCheck = false; - meta = { + meta = with lib; { description = "Package for statistical analysis of time-series data"; homepage = "https://pypi.org/project/pyseries/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.mit; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/pysqlitecipher/default.nix b/pkgs/development/python-modules/pysqlitecipher/default.nix index b1ff35671ad2a7..bc04424f1b6234 100644 --- a/pkgs/development/python-modules/pysqlitecipher/default.nix +++ b/pkgs/development/python-modules/pysqlitecipher/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysqlitecipher" ]; - meta = { + meta = with lib; { description = "Lightweight and easy to use sqlite wrapper with built-in encryption system"; homepage = "https://github.com/harshnative/pysqlitecipher"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pystac-client/default.nix b/pkgs/development/python-modules/pystac-client/default.nix index 52fed979a8fc2d..088275a372a589 100644 --- a/pkgs/development/python-modules/pystac-client/default.nix +++ b/pkgs/development/python-modules/pystac-client/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pystac_client" ]; - meta = { + meta = with lib; { description = "A Python client for working with STAC Catalogs and APIs"; homepage = "https://github.com/stac-utils/pystac-client"; - license = lib.licenses.asl20; - maintainers = lib.teams.geospatial.members; + license = licenses.asl20; + maintainers = teams.geospatial.members; }; } diff --git a/pkgs/development/python-modules/pystac/default.nix b/pkgs/development/python-modules/pystac/default.nix index e63f79533bc2d2..aa6f92e8620be9 100644 --- a/pkgs/development/python-modules/pystac/default.nix +++ b/pkgs/development/python-modules/pystac/default.nix @@ -44,10 +44,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pystac" ]; - meta = { + meta = with lib; { description = "Python library for working with any SpatioTemporal Asset Catalog (STAC)"; homepage = "https://github.com/stac-utils/pystac"; - license = lib.licenses.asl20; - maintainers = lib.teams.geospatial.members; + license = licenses.asl20; + maintainers = teams.geospatial.members; }; } diff --git a/pkgs/development/python-modules/pystache/default.nix b/pkgs/development/python-modules/pystache/default.nix index 226d172a95e229..121c2c9d49d452 100644 --- a/pkgs/development/python-modules/pystache/default.nix +++ b/pkgs/development/python-modules/pystache/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pystache" ]; - meta = { + meta = with lib; { description = "Framework-agnostic, logic-free templating system inspired by ctemplate and et"; homepage = "https://github.com/defunkt/pystache"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.nickcao ]; + license = licenses.mit; + maintainers = [ maintainers.nickcao ]; }; } diff --git a/pkgs/development/python-modules/pysvg-py3/default.nix b/pkgs/development/python-modules/pysvg-py3/default.nix index 77d430e670527c..d5613f42b8abe6 100644 --- a/pkgs/development/python-modules/pysvg-py3/default.nix +++ b/pkgs/development/python-modules/pysvg-py3/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pysvg" ]; - meta = { + meta = with lib; { homepage = "https://github.com/alorence/pysvg-py3"; description = "Creating SVG with Python"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ davidak ]; + license = licenses.bsd2; + maintainers = with maintainers; [ davidak ]; }; } diff --git a/pkgs/development/python-modules/pytest-cram/default.nix b/pkgs/development/python-modules/pytest-cram/default.nix index 674566e2301e6e..8f2bfda249e1f0 100644 --- a/pkgs/development/python-modules/pytest-cram/default.nix +++ b/pkgs/development/python-modules/pytest-cram/default.nix @@ -42,10 +42,10 @@ buildPythonPackage rec { pytest pytest_cram/ --ignore=pytest_cram/tests/test_examples.py ''; - meta = { + meta = with lib; { description = "Test command-line applications with pytest and cram"; homepage = "https://github.com/tbekolay/pytest-cram"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ jluttine ]; + license = licenses.mit; + maintainers = with maintainers; [ jluttine ]; }; } diff --git a/pkgs/development/python-modules/pytest-lsp/default.nix b/pkgs/development/python-modules/pytest-lsp/default.nix index 4fa32e477d7908..56e8e2cc8d9843 100644 --- a/pkgs/development/python-modules/pytest-lsp/default.nix +++ b/pkgs/development/python-modules/pytest-lsp/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_lsp" ]; - meta = { + meta = with lib; { homepage = "https://github.com/swyddfa/lsp-devtools"; changelog = "https://github.com/swyddfa/lsp-devtools/blob/develop/lib/pytest-lsp/CHANGES.md"; description = "Pytest plugin for writing end-to-end tests for language servers"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ clemjvdm fliegendewurst ]; diff --git a/pkgs/development/python-modules/pytest-mockito/default.nix b/pkgs/development/python-modules/pytest-mockito/default.nix index 06b9a93553673f..43f1770972bccf 100644 --- a/pkgs/development/python-modules/pytest-mockito/default.nix +++ b/pkgs/development/python-modules/pytest-mockito/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Base fixtures for mockito"; homepage = "https://github.com/kaste/pytest-mockito"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pytest-mpi/default.nix b/pkgs/development/python-modules/pytest-mpi/default.nix index 7a474fd084b060..de17c4ec0b256b 100644 --- a/pkgs/development/python-modules/pytest-mpi/default.nix +++ b/pkgs/development/python-modules/pytest-mpi/default.nix @@ -49,10 +49,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_mpi" ]; - meta = { + meta = with lib; { description = "Pytest plugin for working with MPI"; homepage = "https://github.com/aragilar/pytest-mpi"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.bsd3; + maintainers = with maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/pytest-mypy/default.nix b/pkgs/development/python-modules/pytest-mypy/default.nix index 6b83a3854c747d..fcfdfb7f7fe1e9 100644 --- a/pkgs/development/python-modules/pytest-mypy/default.nix +++ b/pkgs/development/python-modules/pytest-mypy/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "pytest_mypy" ]; - meta = { + meta = with lib; { description = "Mypy static type checker plugin for Pytest"; homepage = "https://github.com/dbader/pytest-mypy"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/python-aodhclient/default.nix b/pkgs/development/python-modules/python-aodhclient/default.nix index 342816f73bfdc1..3462f05890e4d0 100644 --- a/pkgs/development/python-modules/python-aodhclient/default.nix +++ b/pkgs/development/python-modules/python-aodhclient/default.nix @@ -72,11 +72,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aodhclient" ]; - meta = { + meta = with lib; { homepage = "https://opendev.org/openstack/python-aodhclient"; description = "Client library for OpenStack Aodh API"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "aodh"; - maintainers = lib.teams.openstack.members; + maintainers = teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-axolotl-curve25519/default.nix b/pkgs/development/python-modules/python-axolotl-curve25519/default.nix index 6dfdab632d042b..af901c133840ce 100644 --- a/pkgs/development/python-modules/python-axolotl-curve25519/default.nix +++ b/pkgs/development/python-modules/python-axolotl-curve25519/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { build-system = [ setuptools ]; - meta = { + meta = with lib; { homepage = "https://github.com/tgalal/python-axolotl-curve25519"; description = "Curve25519 with ed25519 signatures"; - maintainers = with lib.maintainers; [ abbradar ]; - license = lib.licenses.gpl3; + maintainers = with maintainers; [ abbradar ]; + license = licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/python-barbicanclient/default.nix b/pkgs/development/python-modules/python-barbicanclient/default.nix index 9c65649a2336f1..313404edd4bf7c 100644 --- a/pkgs/development/python-modules/python-barbicanclient/default.nix +++ b/pkgs/development/python-modules/python-barbicanclient/default.nix @@ -73,11 +73,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "barbicanclient" ]; - meta = { + meta = with lib; { homepage = "https://opendev.org/openstack/python-barbicanclient"; description = "Client library for OpenStack Barbican API"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "barbican"; - maintainers = lib.teams.openstack.members; + maintainers = teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-bidi/default.nix b/pkgs/development/python-modules/python-bidi/default.nix index 6dca1f8028855f..519e268c0d620d 100644 --- a/pkgs/development/python-modules/python-bidi/default.nix +++ b/pkgs/development/python-modules/python-bidi/default.nix @@ -38,11 +38,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { homepage = "https://github.com/MeirKriheli/python-bidi"; description = "Pure python implementation of the BiDi layout algorithm"; mainProgram = "pybidi"; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ freezeboy ]; + platforms = platforms.unix; + maintainers = with maintainers; [ freezeboy ]; }; } diff --git a/pkgs/development/python-modules/python-designateclient/default.nix b/pkgs/development/python-modules/python-designateclient/default.nix index 44b5b4a665efcf..e6f18168aca298 100644 --- a/pkgs/development/python-modules/python-designateclient/default.nix +++ b/pkgs/development/python-modules/python-designateclient/default.nix @@ -74,10 +74,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "designateclient" ]; - meta = { + meta = with lib; { homepage = "https://opendev.org/openstack/python-designateclient"; description = "Client library for OpenStack Designate API"; - license = lib.licenses.asl20; - maintainers = lib.teams.openstack.members; + license = licenses.asl20; + maintainers = teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-engineio-v3/default.nix b/pkgs/development/python-modules/python-engineio-v3/default.nix index 65d755b43551db..f09225175e65b3 100644 --- a/pkgs/development/python-modules/python-engineio-v3/default.nix +++ b/pkgs/development/python-modules/python-engineio-v3/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { # no tests on PyPI doCheck = false; - meta = { + meta = with lib; { description = "Engine.IO server"; homepage = "https://github.com/bdraco/python-engineio-v3"; - license = lib.licenses.mit; + license = licenses.mit; longDescription = "This is a release of 3.14.2 under the “engineio_v3” namespace for old systems."; - maintainers = with lib.maintainers; [ dotlambda ]; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/python-ffmpeg/default.nix b/pkgs/development/python-modules/python-ffmpeg/default.nix index 1991f74926670c..e53ab99ab55496 100644 --- a/pkgs/development/python-modules/python-ffmpeg/default.nix +++ b/pkgs/development/python-modules/python-ffmpeg/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { nativeBuildInputs = [ setuptools-scm ]; pythonImportsCheck = [ "ffmpeg" ]; - meta = { + meta = with lib; { homepage = "https://github.com/jonghwanhyeon/python-ffmpeg"; description = "Python binding for FFmpeg which provides sync and async APIs"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ youhaveme9 ]; + license = licenses.mit; + maintainers = with maintainers; [ youhaveme9 ]; }; } diff --git a/pkgs/development/python-modules/python-lorem/default.nix b/pkgs/development/python-modules/python-lorem/default.nix index e60991c7935777..943ee01f964900 100644 --- a/pkgs/development/python-modules/python-lorem/default.nix +++ b/pkgs/development/python-modules/python-lorem/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { "lorem" ]; - meta = { + meta = with lib; { description = "Pythonic lorem ipsum generator"; homepage = "https://github.com/JarryShaw/lorem"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ aleksana ]; + license = licenses.bsd3; + maintainers = with maintainers; [ aleksana ]; }; } diff --git a/pkgs/development/python-modules/python-magnumclient/default.nix b/pkgs/development/python-modules/python-magnumclient/default.nix index 3c010d2b12cc01..27ea1e1d743e5c 100644 --- a/pkgs/development/python-modules/python-magnumclient/default.nix +++ b/pkgs/development/python-modules/python-magnumclient/default.nix @@ -87,11 +87,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "magnumclient" ]; - meta = { + meta = with lib; { homepage = "https://github.com/openstack/python-magnumclient"; description = "Client library for OpenStack Magnum API"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "magnum"; - maintainers = lib.teams.openstack.members; + maintainers = teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-markdown-math/default.nix b/pkgs/development/python-modules/python-markdown-math/default.nix index 3bf104029b40a8..2b6e76d86b38c7 100644 --- a/pkgs/development/python-modules/python-markdown-math/default.nix +++ b/pkgs/development/python-modules/python-markdown-math/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { nativeCheckInputs = [ markdown ]; - meta = { + meta = with lib; { description = "Math extension for Python-Markdown"; homepage = "https://github.com/mitya57/python-markdown-math"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ klntsky ]; + license = licenses.bsd3; + maintainers = with maintainers; [ klntsky ]; }; } diff --git a/pkgs/development/python-modules/python-nvd3/default.nix b/pkgs/development/python-modules/python-nvd3/default.nix index 1ab84159b4374f..7058ff277867d1 100644 --- a/pkgs/development/python-modules/python-nvd3/default.nix +++ b/pkgs/development/python-modules/python-nvd3/default.nix @@ -31,11 +31,11 @@ buildPythonPackage { pytestFlagsArray = [ "tests.py" ]; - meta = { + meta = with lib; { homepage = "https://github.com/areski/python-nvd3"; description = "Python Wrapper for NVD3 - It's time for beautiful charts"; mainProgram = "nvd3"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ivan-tkatchev ]; + license = licenses.mit; + maintainers = [ maintainers.ivan-tkatchev ]; }; } diff --git a/pkgs/development/python-modules/python-periphery/default.nix b/pkgs/development/python-modules/python-periphery/default.nix index 95751831d2cc06..ede414bef83a5f 100644 --- a/pkgs/development/python-modules/python-periphery/default.nix +++ b/pkgs/development/python-modules/python-periphery/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # Some tests require physical probing and additional physical setup doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/vsergeev/python-periphery"; description = "Linux Peripheral I/O (GPIO, LED, PWM, SPI, I2C, MMIO, Serial) with Python 2 & 3"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ bandresen ]; + license = licenses.mit; + maintainers = with maintainers; [ bandresen ]; }; } diff --git a/pkgs/development/python-modules/python-poppler/default.nix b/pkgs/development/python-modules/python-poppler/default.nix index d817dccfae792f..3c63d092dc542a 100644 --- a/pkgs/development/python-modules/python-poppler/default.nix +++ b/pkgs/development/python-modules/python-poppler/default.nix @@ -46,13 +46,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "poppler" ]; - meta = { + meta = with lib; { description = "Python binding to poppler-cpp"; homepage = "https://github.com/cbrunet/python-poppler"; changelog = "https://cbrunet.net/python-poppler/changelog.html"; # Contradictory license definition # https://github.com/cbrunet/python-poppler/issues/90 - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.onny ]; + license = licenses.gpl2Plus; + maintainers = [ maintainers.onny ]; }; } diff --git a/pkgs/development/python-modules/python-pptx/default.nix b/pkgs/development/python-modules/python-pptx/default.nix index 542ffd9f21d4cf..41a14bed5867c6 100644 --- a/pkgs/development/python-modules/python-pptx/default.nix +++ b/pkgs/development/python-modules/python-pptx/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { "pptx" ]; - meta = { + meta = with lib; { description = "Create Open XML PowerPoint documents in Python"; homepage = "https://github.com/scanny/python-pptx"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ happysalada ]; + license = licenses.mit; + maintainers = with maintainers; [ happysalada ]; }; } diff --git a/pkgs/development/python-modules/python-prctl/default.nix b/pkgs/development/python-modules/python-prctl/default.nix index ffc946a56f54bb..a2afb27354c997 100644 --- a/pkgs/development/python-modules/python-prctl/default.nix +++ b/pkgs/development/python-modules/python-prctl/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { "test_speculation_ctrl" ]; - meta = { + meta = with lib; { description = "Python(ic) interface to the linux prctl syscall"; homepage = "https://github.com/seveas/python-prctl"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ catern ]; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ catern ]; }; } diff --git a/pkgs/development/python-modules/python-secp256k1-cardano/default.nix b/pkgs/development/python-modules/python-secp256k1-cardano/default.nix index ca14b00ea52567..5406a89a51af0e 100644 --- a/pkgs/development/python-modules/python-secp256k1-cardano/default.nix +++ b/pkgs/development/python-modules/python-secp256k1-cardano/default.nix @@ -39,10 +39,10 @@ buildPythonPackage { export LIB_DIR=${secp256k1}/lib ''; - meta = { + meta = with lib; { homepage = "https://github.com/OpShin/python-secp256k1"; description = "Fork of python-secp256k1, fixing the commit hash of libsecp256k1 to a Cardano compatible version"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ t4ccer ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ t4ccer ]; }; } diff --git a/pkgs/development/python-modules/python-socketio-v4/default.nix b/pkgs/development/python-modules/python-socketio-v4/default.nix index 3f2e17685581e5..17910573c3ee93 100644 --- a/pkgs/development/python-modules/python-socketio-v4/default.nix +++ b/pkgs/development/python-modules/python-socketio-v4/default.nix @@ -44,11 +44,11 @@ buildPythonPackage rec { # no tests on PyPI doCheck = false; - meta = { + meta = with lib; { description = "Socket.IO server"; homepage = "https://github.com/bdraco/python-socketio-v4"; - license = lib.licenses.mit; + license = licenses.mit; longDescription = "This is a release of 4.6.1 under the “socketio_v4” namespace for old systems."; - maintainers = with lib.maintainers; [ dotlambda ]; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/python-troveclient/default.nix b/pkgs/development/python-modules/python-troveclient/default.nix index 44297b38f37221..8299d2a0984af4 100644 --- a/pkgs/development/python-modules/python-troveclient/default.nix +++ b/pkgs/development/python-modules/python-troveclient/default.nix @@ -79,11 +79,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "troveclient" ]; - meta = { + meta = with lib; { homepage = "https://github.com/openstack/python-troveclient"; description = "Client library for OpenStack Trove API"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "trove"; - maintainers = lib.teams.openstack.members; + maintainers = teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-vagrant/default.nix b/pkgs/development/python-modules/python-vagrant/default.nix index a280824a861331..322960f54eade9 100644 --- a/pkgs/development/python-modules/python-vagrant/default.nix +++ b/pkgs/development/python-modules/python-vagrant/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "vagrant" ]; - meta = { + meta = with lib; { description = "Python module that provides a thin wrapper around the vagrant command line executable"; homepage = "https://github.com/todddeluca/python-vagrant"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.pmiddend ]; + license = licenses.mit; + maintainers = [ maintainers.pmiddend ]; }; } diff --git a/pkgs/development/python-modules/python-watcherclient/default.nix b/pkgs/development/python-modules/python-watcherclient/default.nix index cd0cba731c736a..92bb3c5e6a0e31 100644 --- a/pkgs/development/python-modules/python-watcherclient/default.nix +++ b/pkgs/development/python-modules/python-watcherclient/default.nix @@ -65,11 +65,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "watcherclient" ]; - meta = { + meta = with lib; { homepage = "https://github.com/openstack/python-watcherclient"; description = "Client library for OpenStack Watcher API"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "watcher"; - maintainers = lib.teams.openstack.members; + maintainers = teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-zaqarclient/default.nix b/pkgs/development/python-modules/python-zaqarclient/default.nix index 083fa62980461c..7885d9c7fed498 100644 --- a/pkgs/development/python-modules/python-zaqarclient/default.nix +++ b/pkgs/development/python-modules/python-zaqarclient/default.nix @@ -73,10 +73,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "zaqarclient" ]; - meta = { + meta = with lib; { homepage = "https://github.com/openstack/python-zaqarclient"; description = "Client library for OpenStack Zaqar API"; - license = lib.licenses.asl20; - maintainers = lib.teams.openstack.members; + license = licenses.asl20; + maintainers = teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/python-zunclient/default.nix b/pkgs/development/python-modules/python-zunclient/default.nix index 9785016ac9a289..2b2d3134223586 100644 --- a/pkgs/development/python-modules/python-zunclient/default.nix +++ b/pkgs/development/python-modules/python-zunclient/default.nix @@ -82,11 +82,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "zunclient" ]; - meta = { + meta = with lib; { homepage = "https://github.com/openstack/python-zunclient"; description = "Client library for OpenStack Zun API"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "zun"; - maintainers = lib.teams.openstack.members; + maintainers = teams.openstack.members; }; } diff --git a/pkgs/development/python-modules/pytomorrowio/default.nix b/pkgs/development/python-modules/pytomorrowio/default.nix index 2e3a5f4afbc371..e047cce6905ede 100644 --- a/pkgs/development/python-modules/pytomorrowio/default.nix +++ b/pkgs/development/python-modules/pytomorrowio/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytomorrowio" ]; - meta = { + meta = with lib; { description = "Async Python package to access the Tomorrow.io API"; homepage = "https://github.com/raman325/pytomorrowio"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/pytorch-bench/default.nix b/pkgs/development/python-modules/pytorch-bench/default.nix index e705028b1db8f8..c86e9888a5b2f9 100644 --- a/pkgs/development/python-modules/pytorch-bench/default.nix +++ b/pkgs/development/python-modules/pytorch-bench/default.nix @@ -40,10 +40,10 @@ buildPythonPackage { "pytorch_bench" ]; - meta = { + meta = with lib; { description = "Benchmarking tool for torch"; homepage = "https://github.com/MaximeGloesener/torch-benchmark"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ drupol ]; + license = licenses.mit; + maintainers = with maintainers; [ drupol ]; }; } diff --git a/pkgs/development/python-modules/pytorch3d/default.nix b/pkgs/development/python-modules/pytorch3d/default.nix index 2a92a51ec8bfe5..8e196f221e105c 100644 --- a/pkgs/development/python-modules/pytorch3d/default.nix +++ b/pkgs/development/python-modules/pytorch3d/default.nix @@ -59,11 +59,11 @@ buildPythonPackage rec { print(angles) ''; - meta = { + meta = with lib; { description = "FAIR's library of reusable components for deep learning with 3D data"; homepage = "https://github.com/facebookresearch/pytorch3d"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ + license = licenses.bsd3; + maintainers = with maintainers; [ pbsds SomeoneSerge ]; diff --git a/pkgs/development/python-modules/pytubefix/default.nix b/pkgs/development/python-modules/pytubefix/default.nix index 40f2b6163b799f..634eadcf88d829 100644 --- a/pkgs/development/python-modules/pytubefix/default.nix +++ b/pkgs/development/python-modules/pytubefix/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytubefix" ]; - meta = { + meta = with lib; { homepage = "https://github.com/JuanBindez/pytubefix"; description = "Pytube fork with additional features and fixes"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ youhaveme9 ]; + license = licenses.mit; + maintainers = with maintainers; [ youhaveme9 ]; }; } diff --git a/pkgs/development/python-modules/pywebcopy/default.nix b/pkgs/development/python-modules/pywebcopy/default.nix index e8d8cb61a3346e..7357d157add2d6 100644 --- a/pkgs/development/python-modules/pywebcopy/default.nix +++ b/pkgs/development/python-modules/pywebcopy/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { six ]; - meta = { + meta = with lib; { changelog = "https://github.com/rajatomar788/pywebcopy/blob/master/docs/changelog.md"; description = "Python package for cloning complete webpages and websites to local storage"; homepage = "https://github.com/rajatomar788/pywebcopy/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ d3vil0p3r ]; + license = licenses.asl20; + maintainers = with maintainers; [ d3vil0p3r ]; }; } diff --git a/pkgs/development/python-modules/pywikibot/default.nix b/pkgs/development/python-modules/pywikibot/default.nix index c55ad44ff921cc..e828f4da29489a 100644 --- a/pkgs/development/python-modules/pywikibot/default.nix +++ b/pkgs/development/python-modules/pywikibot/default.nix @@ -31,12 +31,12 @@ buildPythonPackage rec { pythonImportsCheck = [ "pywikibot" ]; - meta = { + meta = with lib; { description = "Python MediaWiki bot framework"; mainProgram = "pwb"; homepage = "https://www.mediawiki.org/wiki/Manual:Pywikibot"; changelog = "https://doc.wikimedia.org/pywikibot/master/changelog.html"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tomodachi94 ]; + license = licenses.mit; + maintainers = with maintainers; [ tomodachi94 ]; }; } diff --git a/pkgs/development/python-modules/qasync/default.nix b/pkgs/development/python-modules/qasync/default.nix index 6b5cc55dc2e3d7..fa9b4b72fa8b07 100644 --- a/pkgs/development/python-modules/qasync/default.nix +++ b/pkgs/development/python-modules/qasync/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { disabledTestPaths = [ "tests/test_qeventloop.py" ]; - meta = { + meta = with lib; { description = "Allows coroutines to be used in PyQt/PySide applications by providing an implementation of the PEP 3156 event-loop"; homepage = "https://github.com/CabbageDevelopment/qasync"; - license = [ lib.licenses.bsd2 ]; - maintainers = [ lib.maintainers.lucasew ]; + license = [ licenses.bsd2 ]; + maintainers = [ maintainers.lucasew ]; }; } diff --git a/pkgs/development/python-modules/qgrid/default.nix b/pkgs/development/python-modules/qgrid/default.nix index a508d6351688d2..85129cf70d6fdb 100644 --- a/pkgs/development/python-modules/qgrid/default.nix +++ b/pkgs/development/python-modules/qgrid/default.nix @@ -55,10 +55,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "qgrid" ]; - meta = { + meta = with lib; { description = "Interactive grid for sorting, filtering, and editing DataFrames in Jupyter notebooks"; homepage = "https://github.com/quantopian/qgrid"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.asl20; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/qimage2ndarray/default.nix b/pkgs/development/python-modules/qimage2ndarray/default.nix index 23e66a6c374a28..8b110ac864009d 100644 --- a/pkgs/development/python-modules/qimage2ndarray/default.nix +++ b/pkgs/development/python-modules/qimage2ndarray/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { # no tests executed doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/hmeine/qimage2ndarray"; description = "Small python extension for quickly converting between QImages and numpy.ndarrays (in both directions)"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ tbenst ]; + license = licenses.bsd3; + maintainers = with maintainers; [ tbenst ]; }; } diff --git a/pkgs/development/python-modules/qnapstats/default.nix b/pkgs/development/python-modules/qnapstats/default.nix index 2cfa9edc6593ca..3feea8b708d65c 100644 --- a/pkgs/development/python-modules/qnapstats/default.nix +++ b/pkgs/development/python-modules/qnapstats/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "qnapstats" ]; - meta = { + meta = with lib; { description = "Python API for obtaining QNAP NAS system stats"; homepage = "https://github.com/colinodell/python-qnapstats"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/qrcode-terminal/default.nix b/pkgs/development/python-modules/qrcode-terminal/default.nix index 2ec58510c70706..a388122ce303ed 100644 --- a/pkgs/development/python-modules/qrcode-terminal/default.nix +++ b/pkgs/development/python-modules/qrcode-terminal/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "qrcode_terminal" ]; - meta = { + meta = with lib; { description = "Display QRCode in Terminal"; homepage = "https://github.com/alishtory/qrcode-terminal"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ moraxyc ]; + license = licenses.mit; + maintainers = with maintainers; [ moraxyc ]; mainProgram = "qrcode-terminal-py"; }; } diff --git a/pkgs/development/python-modules/qstylizer/default.nix b/pkgs/development/python-modules/qstylizer/default.nix index 9ebd77a7e62c18..ac1ff75a3021f5 100644 --- a/pkgs/development/python-modules/qstylizer/default.nix +++ b/pkgs/development/python-modules/qstylizer/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "qstylizer" ]; - meta = { + meta = with lib; { description = "Qt stylesheet generation utility for PyQt/PySide"; homepage = "https://github.com/blambright/qstylizer"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ drewrisinger ]; + license = licenses.mit; + maintainers = with maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/qtconsole/default.nix b/pkgs/development/python-modules/qtconsole/default.nix index e42dc51026987f..5f7fcf976c0d81 100644 --- a/pkgs/development/python-modules/qtconsole/default.nix +++ b/pkgs/development/python-modules/qtconsole/default.nix @@ -50,13 +50,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "qtconsole" ]; - meta = { + meta = with lib; { description = "Jupyter Qt console"; mainProgram = "jupyter-qtconsole"; homepage = "https://qtconsole.readthedocs.io/"; changelog = "https://qtconsole.readthedocs.io/en/stable/changelog.html#changes-in-jupyter-qt-console"; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.bsd3; + platforms = platforms.unix; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/raven/default.nix b/pkgs/development/python-modules/raven/default.nix index ac4f03faaa78e5..00d02dbb9015ba 100644 --- a/pkgs/development/python-modules/raven/default.nix +++ b/pkgs/development/python-modules/raven/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { ]; }; - meta = { + meta = with lib; { description = "Legacy Python client for Sentry (getsentry.com) — replaced by sentry-python"; mainProgram = "raven"; homepage = "https://github.com/getsentry/raven-python"; - license = [ lib.licenses.bsd3 ]; - maintainers = with lib.maintainers; [ primeos ]; + license = [ licenses.bsd3 ]; + maintainers = with maintainers; [ primeos ]; }; } diff --git a/pkgs/development/python-modules/rawpy/default.nix b/pkgs/development/python-modules/rawpy/default.nix index 6270febe7bfa0c..8dd16a955c622f 100644 --- a/pkgs/development/python-modules/rawpy/default.nix +++ b/pkgs/development/python-modules/rawpy/default.nix @@ -78,13 +78,13 @@ buildPythonPackage rec { "testThumbExtractBitmap" ]; - meta = { + meta = with lib; { description = "RAW image processing for Python, a wrapper for libraw"; homepage = "https://github.com/letmaik/rawpy"; - license = with lib.licenses; [ + license = with licenses; [ lgpl21Only mit ]; - maintainers = with lib.maintainers; [ GaetanLepage ]; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/raylib-python-cffi/default.nix b/pkgs/development/python-modules/raylib-python-cffi/default.nix index 3a6c4d1d9ff2cc..0175a4f742a19c 100644 --- a/pkgs/development/python-modules/raylib-python-cffi/default.nix +++ b/pkgs/development/python-modules/raylib-python-cffi/default.nix @@ -74,10 +74,10 @@ buildPythonPackage rec { CoreVideo ]; - meta = { + meta = with lib; { description = "Python CFFI bindings for Raylib"; homepage = "https://electronstudio.github.io/raylib-python-cffi"; - license = lib.licenses.epl20; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.epl20; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/rclone-python/default.nix b/pkgs/development/python-modules/rclone-python/default.nix index f6f378d1301bde..9b9fc8b7141aa3 100644 --- a/pkgs/development/python-modules/rclone-python/default.nix +++ b/pkgs/development/python-modules/rclone-python/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rclone_python" ]; - meta = { + meta = with lib; { description = "Python wrapper for rclone"; homepage = "https://github.com/Johannes11833/rclone_python"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ CaptainJawZ ]; + license = licenses.mit; + maintainers = with maintainers; [ CaptainJawZ ]; }; } diff --git a/pkgs/development/python-modules/remi/default.nix b/pkgs/development/python-modules/remi/default.nix index 909523d7ffc8e1..c7154343ad9ac9 100644 --- a/pkgs/development/python-modules/remi/default.nix +++ b/pkgs/development/python-modules/remi/default.nix @@ -60,10 +60,10 @@ buildPythonPackage rec { "editor.widgets" ]; - meta = { + meta = with lib; { description = "Pythonic, lightweight and websocket-based webui library"; homepage = "https://github.com/rawpython/remi"; - license = with lib.licenses; [ asl20 ]; - maintainers = with lib.maintainers; [ pbsds ]; + license = with licenses; [ asl20 ]; + maintainers = with maintainers; [ pbsds ]; }; } diff --git a/pkgs/development/python-modules/repath/default.nix b/pkgs/development/python-modules/repath/default.nix index 88eb3ad0c3a2f1..246cfde9335633 100644 --- a/pkgs/development/python-modules/repath/default.nix +++ b/pkgs/development/python-modules/repath/default.nix @@ -19,10 +19,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "repath" ]; - meta = { + meta = with lib; { description = "Port of the node module path-to-regexp to Python"; homepage = "https://github.com/nickcoutsos/python-repath"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.heyimnova ]; + license = licenses.mit; + maintainers = [ maintainers.heyimnova ]; }; } diff --git a/pkgs/development/python-modules/reprint/default.nix b/pkgs/development/python-modules/reprint/default.nix index 5981e3abb4b234..f567d7bf87f135 100644 --- a/pkgs/development/python-modules/reprint/default.nix +++ b/pkgs/development/python-modules/reprint/default.nix @@ -37,11 +37,11 @@ buildPythonPackage rec { "reprint" ]; - meta = { + meta = with lib; { description = "Module for binding variables and refreshing multi-line output in terminal"; homepage = "https://github.com/Yinzo/reprint"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + maintainers = with maintainers; [ jasonodoom jleightcap ]; diff --git a/pkgs/development/python-modules/reverse-geocode/default.nix b/pkgs/development/python-modules/reverse-geocode/default.nix index 8c87d9b7c5b0d0..0f5e97c9158f32 100644 --- a/pkgs/development/python-modules/reverse-geocode/default.nix +++ b/pkgs/development/python-modules/reverse-geocode/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "reverse_geocode" ]; - meta = { + meta = with lib; { description = "Reverse geocode the given latitude/longitude"; homepage = "https://pypi.org/project/reverse-geocode/"; - license = lib.licenses.lgpl2Only; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.lgpl2Only; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/rich-theme-manager/default.nix b/pkgs/development/python-modules/rich-theme-manager/default.nix index b296713afb1914..3a71d48da6fbc2 100644 --- a/pkgs/development/python-modules/rich-theme-manager/default.nix +++ b/pkgs/development/python-modules/rich-theme-manager/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rich_theme_manager" ]; nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Define custom styles and themes for use with rich"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/RhetTbull/rich_theme_manager"; - maintainers = with lib.maintainers; [ sigmanificient ]; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/rising/default.nix b/pkgs/development/python-modules/rising/default.nix index 204e71ace94802..d0b20a489acd7e 100644 --- a/pkgs/development/python-modules/rising/default.nix +++ b/pkgs/development/python-modules/rising/default.nix @@ -69,10 +69,10 @@ buildPythonPackage rec { "rising.utils" ]; - meta = { + meta = with lib; { description = "High-performance data loading and augmentation library in PyTorch"; homepage = "https://rising.rtfd.io"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ bcdarwin ]; + license = licenses.mit; + maintainers = with maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/rmcl/default.nix b/pkgs/development/python-modules/rmcl/default.nix index eebfe1c329f84f..19a6915bc68300 100644 --- a/pkgs/development/python-modules/rmcl/default.nix +++ b/pkgs/development/python-modules/rmcl/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rmcl" ]; - meta = { + meta = with lib; { description = "ReMarkable Cloud Library"; homepage = "https://github.com/rschroll/rmcl"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/rmrl/default.nix b/pkgs/development/python-modules/rmrl/default.nix index 0dc783881414e0..c4ab446d933d06 100644 --- a/pkgs/development/python-modules/rmrl/default.nix +++ b/pkgs/development/python-modules/rmrl/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rmrl" ]; - meta = { + meta = with lib; { description = "Render reMarkable documents to PDF"; homepage = "https://github.com/benneti/rmrl"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/robotframework-excellib/default.nix b/pkgs/development/python-modules/robotframework-excellib/default.nix index 8810bfbac9a1be..fc53345982ddc0 100644 --- a/pkgs/development/python-modules/robotframework-excellib/default.nix +++ b/pkgs/development/python-modules/robotframework-excellib/default.nix @@ -29,10 +29,10 @@ buildPythonPackage rec { # upstream has no tests doCheck = false; - meta = { + meta = with lib; { description = "Robot Framework library for working with Excel documents"; homepage = "https://github.com/peterservice-rnd/robotframework-excellib"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.asl20; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/rocketchat-api/default.nix b/pkgs/development/python-modules/rocketchat-api/default.nix index d10f94d72f31c2..11e3faef45ba8e 100644 --- a/pkgs/development/python-modules/rocketchat-api/default.nix +++ b/pkgs/development/python-modules/rocketchat-api/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { # requires running a Rocket.Chat server doCheck = false; - meta = { + meta = with lib; { description = "Python API wrapper for Rocket.Chat"; homepage = "https://github.com/jadolg/rocketchat_API"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/roma/default.nix b/pkgs/development/python-modules/roma/default.nix index f728bb872c392e..75ccdb35c14c5e 100644 --- a/pkgs/development/python-modules/roma/default.nix +++ b/pkgs/development/python-modules/roma/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { "roma" ]; - meta = { + meta = with lib; { description = "Lightweight library to deal with 3D rotations in PyTorch"; homepage = "https://github.com/naver/roma"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ nim65s ]; + license = licenses.bsd3; + maintainers = with maintainers; [ nim65s ]; }; } diff --git a/pkgs/development/python-modules/rouge-score/default.nix b/pkgs/development/python-modules/rouge-score/default.nix index 59d05016720c79..44484807ea33da 100644 --- a/pkgs/development/python-modules/rouge-score/default.nix +++ b/pkgs/development/python-modules/rouge-score/default.nix @@ -61,10 +61,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rouge_score" ]; - meta = { + meta = with lib; { description = "Python ROUGE Implementation"; homepage = "https://github.com/google-research/google-research/tree/master/rouge"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ nviets ]; + license = licenses.asl20; + maintainers = with maintainers; [ nviets ]; }; } diff --git a/pkgs/development/python-modules/rpy2/default.nix b/pkgs/development/python-modules/rpy2/default.nix index d97bcc995a6d82..3c7d4396e983dc 100644 --- a/pkgs/development/python-modules/rpy2/default.nix +++ b/pkgs/development/python-modules/rpy2/default.nix @@ -98,11 +98,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { homepage = "https://rpy2.github.io/"; description = "Python interface to R"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ joelmo ]; + license = licenses.gpl2Plus; + platforms = platforms.unix; + maintainers = with maintainers; [ joelmo ]; }; } diff --git a/pkgs/development/python-modules/rtmixer/default.nix b/pkgs/development/python-modules/rtmixer/default.nix index d2a83c7260ec3f..959311c157cefe 100644 --- a/pkgs/development/python-modules/rtmixer/default.nix +++ b/pkgs/development/python-modules/rtmixer/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { sounddevice ]; - meta = { + meta = with lib; { description = "Reliable low-latency audio playback and recording with Python, using PortAudio via the sounddevice module"; homepage = "https://python-rtmixer.readthedocs.io"; - maintainers = with lib.maintainers; [ laikq ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ laikq ]; + license = licenses.mit; }; } diff --git a/pkgs/development/python-modules/rx/default.nix b/pkgs/development/python-modules/rx/default.nix index 3102568bcb82c6..ae918673200cf3 100644 --- a/pkgs/development/python-modules/rx/default.nix +++ b/pkgs/development/python-modules/rx/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "rx" ]; - meta = { + meta = with lib; { homepage = "https://github.com/ReactiveX/RxPY"; description = "Reactive Extensions for Python"; - maintainers = with lib.maintainers; [ thanegill ]; - license = lib.licenses.asl20; + maintainers = with maintainers; [ thanegill ]; + license = licenses.asl20; }; } diff --git a/pkgs/development/python-modules/ryd-client/default.nix b/pkgs/development/python-modules/ryd-client/default.nix index 958a96b2c3b770..7c2f92efd9d1b9 100644 --- a/pkgs/development/python-modules/ryd-client/default.nix +++ b/pkgs/development/python-modules/ryd-client/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "ryd_client" ]; - meta = { + meta = with lib; { description = "Python client library for the Return YouTube Dislike API"; homepage = "https://github.com/bbilly1/ryd-client"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.ericthemagician ]; + license = licenses.mit; + maintainers = [ maintainers.ericthemagician ]; }; } diff --git a/pkgs/development/python-modules/sabyenc/default.nix b/pkgs/development/python-modules/sabyenc/default.nix index 9dd7e040ca88a8..c04a8db05fb48a 100644 --- a/pkgs/development/python-modules/sabyenc/default.nix +++ b/pkgs/development/python-modules/sabyenc/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # tests are not included in pypi distribution doCheck = false; - meta = { + meta = with lib; { description = "Python yEnc package optimized for use within SABnzbd"; homepage = "https://github.com/sabnzbd/sabyenc/"; - license = lib.licenses.lgpl3; - maintainers = [ lib.maintainers.georgewhewell ]; + license = licenses.lgpl3; + maintainers = [ maintainers.georgewhewell ]; }; } diff --git a/pkgs/development/python-modules/safety-schemas/default.nix b/pkgs/development/python-modules/safety-schemas/default.nix index 8fb9813726d3e4..e60e5a1149567d 100644 --- a/pkgs/development/python-modules/safety-schemas/default.nix +++ b/pkgs/development/python-modules/safety-schemas/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { # upstream has no tests doCheck = false; - meta = { + meta = with lib; { description = "Schemas for Safety CLI"; homepage = "https://pypi.org/project/safety-schemas/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/salib/default.nix b/pkgs/development/python-modules/salib/default.nix index 9b1f1ccd799bce..547cd6dc968878 100644 --- a/pkgs/development/python-modules/salib/default.nix +++ b/pkgs/development/python-modules/salib/default.nix @@ -51,12 +51,12 @@ let "SALib.util" ]; - meta = { + meta = with lib; { changelog = "https://github.com/SALib/SALib/releases"; description = "Python implementations of commonly used sensitivity analysis methods, useful in systems modeling to calculate the effects of model inputs or exogenous factors on outputs of interest"; homepage = "https://github.com/SALib/SALib"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ theobori ]; + license = licenses.mit; + maintainers = with maintainers; [ theobori ]; mainProgram = "salib"; }; }; diff --git a/pkgs/development/python-modules/sansio-multipart/default.nix b/pkgs/development/python-modules/sansio-multipart/default.nix index ef47ab77c7ed4c..e21daff53124d1 100644 --- a/pkgs/development/python-modules/sansio-multipart/default.nix +++ b/pkgs/development/python-modules/sansio-multipart/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sansio_multipart" ]; - meta = { + meta = with lib; { description = "Parser for multipart/form-data"; homepage = "https://github.com/theelous3/sansio-multipart-parser"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/scales/default.nix b/pkgs/development/python-modules/scales/default.nix index e258bdf045f234..cc2836b6c4fe1b 100644 --- a/pkgs/development/python-modules/scales/default.nix +++ b/pkgs/development/python-modules/scales/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Stats for Python processes"; homepage = "https://www.github.com/Cue/scales"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ pyrox0 ]; + license = licenses.asl20; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/development/python-modules/scikit-bio/default.nix b/pkgs/development/python-modules/scikit-bio/default.nix index 2b5057e47e0d8f..8e3b89b0888ed7 100644 --- a/pkgs/development/python-modules/scikit-bio/default.nix +++ b/pkgs/development/python-modules/scikit-bio/default.nix @@ -65,10 +65,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "skbio" ]; - meta = { + meta = with lib; { homepage = "http://scikit-bio.org/"; description = "Data structures, algorithms and educational resources for bioinformatics"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ tomasajt ]; + license = licenses.bsd3; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/development/python-modules/scikit-learn-extra/default.nix b/pkgs/development/python-modules/scikit-learn-extra/default.nix index 3c37f61c0b53cc..83534c5edb109c 100644 --- a/pkgs/development/python-modules/scikit-learn-extra/default.nix +++ b/pkgs/development/python-modules/scikit-learn-extra/default.nix @@ -61,10 +61,10 @@ buildPythonPackage rec { "sklearn_extra.utils" ]; - meta = { + meta = with lib; { description = "Set of tools for scikit-learn"; homepage = "https://github.com/scikit-learn-contrib/scikit-learn-extra"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ yl3dy ]; + license = licenses.bsd3; + maintainers = with maintainers; [ yl3dy ]; }; } diff --git a/pkgs/development/python-modules/scikits-odes-core/default.nix b/pkgs/development/python-modules/scikits-odes-core/default.nix index 2ad7ba3ff35e84..154b3549f12bfd 100644 --- a/pkgs/development/python-modules/scikits-odes-core/default.nix +++ b/pkgs/development/python-modules/scikits-odes-core/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { # no tests doCheck = false; - meta = { + meta = with lib; { description = "Core support module for scikits-odes"; homepage = "https://github.com/bmcage/odes/blob/master/packages/scikits-odes-core"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ idontgetoutmuch ]; + license = licenses.bsd3; + maintainers = with maintainers; [ idontgetoutmuch ]; }; } diff --git a/pkgs/development/python-modules/scrap-engine/default.nix b/pkgs/development/python-modules/scrap-engine/default.nix index 0a8c9fed90e893..4d27f9180ef2fe 100644 --- a/pkgs/development/python-modules/scrap-engine/default.nix +++ b/pkgs/development/python-modules/scrap-engine/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { # raise scrap_engine.CoordinateError doCheck = false; - meta = { - maintainers = with lib.maintainers; [ fgaz ]; + meta = with lib; { + maintainers = with maintainers; [ fgaz ]; description = "2D ascii game engine for the terminal"; homepage = "https://github.com/lxgr-linux/scrap_engine"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; }; } diff --git a/pkgs/development/python-modules/scrapy-deltafetch/default.nix b/pkgs/development/python-modules/scrapy-deltafetch/default.nix index fa2c1ab63c40e9..5e3882db84745a 100644 --- a/pkgs/development/python-modules/scrapy-deltafetch/default.nix +++ b/pkgs/development/python-modules/scrapy-deltafetch/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "scrapy_deltafetch" ]; - meta = { + meta = with lib; { description = "Scrapy spider middleware to ignore requests to pages containing items seen in previous crawls"; homepage = "https://github.com/scrapy-plugins/scrapy-deltafetch"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ evanjs ]; + license = licenses.bsd3; + maintainers = with maintainers; [ evanjs ]; }; } diff --git a/pkgs/development/python-modules/scs/default.nix b/pkgs/development/python-modules/scs/default.nix index 855457eb0195dd..60c92424e5bfb6 100644 --- a/pkgs/development/python-modules/scs/default.nix +++ b/pkgs/development/python-modules/scs/default.nix @@ -62,7 +62,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "scs" ]; - meta = { + meta = with lib; { description = "Python interface for SCS: Splitting Conic Solver"; longDescription = '' Solves convex cone programs via operator splitting. @@ -71,7 +71,7 @@ buildPythonPackage rec { ''; homepage = "https://github.com/cvxgrp/scs"; # upstream C package downloadPage = "https://github.com/bodono/scs-python"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ drewrisinger ]; + license = licenses.mit; + maintainers = with maintainers; [ drewrisinger ]; }; } diff --git a/pkgs/development/python-modules/segyio/default.nix b/pkgs/development/python-modules/segyio/default.nix index bf0a275969d3a8..35847e1ebbf774 100644 --- a/pkgs/development/python-modules/segyio/default.nix +++ b/pkgs/development/python-modules/segyio/default.nix @@ -53,10 +53,10 @@ buildPythonPackage rec { numpy ]; - meta = { + meta = with lib; { description = "Fast Python library for SEGY files"; homepage = "https://github.com/equinor/segyio"; - license = lib.licenses.lgpl3Only; - maintainers = with lib.maintainers; [ atila ]; + license = licenses.lgpl3Only; + maintainers = with maintainers; [ atila ]; }; } diff --git a/pkgs/development/python-modules/senf/default.nix b/pkgs/development/python-modules/senf/default.nix index 3f4f943500cc7b..82535ba0bbd724 100644 --- a/pkgs/development/python-modules/senf/default.nix +++ b/pkgs/development/python-modules/senf/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "senf" ]; - meta = { + meta = with lib; { description = "Consistent filename handling for all Python versions and platforms"; homepage = "https://senf.readthedocs.io/en/latest/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ cab404 ]; + license = licenses.mit; + maintainers = with maintainers; [ cab404 ]; }; } diff --git a/pkgs/development/python-modules/sensoterra/default.nix b/pkgs/development/python-modules/sensoterra/default.nix index a592bd652fc30e..c9bbd6bdf1a42b 100644 --- a/pkgs/development/python-modules/sensoterra/default.nix +++ b/pkgs/development/python-modules/sensoterra/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "sensoterra" ]; - meta = { + meta = with lib; { description = "Query Sensoterra probes using the Customer API"; homepage = "https://gitlab.com/sensoterra/public/python"; changelog = "https://gitlab.com/sensoterra/public/python/-/blob/main/CHANGELOG.md"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.mit; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/serverfiles/default.nix b/pkgs/development/python-modules/serverfiles/default.nix index 5decec746d7b66..a6f4728f891e43 100644 --- a/pkgs/development/python-modules/serverfiles/default.nix +++ b/pkgs/development/python-modules/serverfiles/default.nix @@ -21,10 +21,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "serverfiles" ]; nativeCheckInputs = [ unittestCheckHook ]; - meta = { + meta = with lib; { description = "Utility that accesses files on a HTTP server and stores them locally for reuse"; homepage = "https://github.com/biolab/serverfiles"; - license = [ lib.licenses.gpl3Plus ]; - maintainers = [ lib.maintainers.lucasew ]; + license = [ licenses.gpl3Plus ]; + maintainers = [ maintainers.lucasew ]; }; } diff --git a/pkgs/development/python-modules/sfepy/default.nix b/pkgs/development/python-modules/sfepy/default.nix index 599e853e5f723a..52054fd1baefb7 100644 --- a/pkgs/development/python-modules/sfepy/default.nix +++ b/pkgs/development/python-modules/sfepy/default.nix @@ -81,10 +81,10 @@ buildPythonPackage rec { ${python.interpreter} -c "import sfepy; sfepy.test()" ''; - meta = { + meta = with lib; { homepage = "https://sfepy.org/"; description = "Simple Finite Elements in Python"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ wd15 ]; + license = licenses.bsd3; + maintainers = with maintainers; [ wd15 ]; }; } diff --git a/pkgs/development/python-modules/sharedmem/default.nix b/pkgs/development/python-modules/sharedmem/default.nix index 0615feb911dfbe..e506fcb472b343 100644 --- a/pkgs/development/python-modules/sharedmem/default.nix +++ b/pkgs/development/python-modules/sharedmem/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { propagatedBuildInputs = [ numpy ]; - meta = { + meta = with lib; { homepage = "http://rainwoodman.github.io/sharedmem/"; description = "Easier parallel programming on shared memory computers"; - maintainers = with lib.maintainers; [ edwtjo ]; - license = lib.licenses.gpl3; + maintainers = with maintainers; [ edwtjo ]; + license = licenses.gpl3; }; } diff --git a/pkgs/development/python-modules/shippinglabel/default.nix b/pkgs/development/python-modules/shippinglabel/default.nix index c0ae4fa635e98f..69cf8bd5c7e7f8 100644 --- a/pkgs/development/python-modules/shippinglabel/default.nix +++ b/pkgs/development/python-modules/shippinglabel/default.nix @@ -34,10 +34,10 @@ buildPythonPackage rec { --replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"' ''; - meta = { + meta = with lib; { description = "Utilities for handling packages."; homepage = "https://github.com/domdfcoding/shippinglabel"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tyberius-prime ]; + license = licenses.mit; + maintainers = with maintainers; [ tyberius-prime ]; }; } diff --git a/pkgs/development/python-modules/sigparse/default.nix b/pkgs/development/python-modules/sigparse/default.nix index 26c6e1f438dc3c..58383b7c8c9941 100644 --- a/pkgs/development/python-modules/sigparse/default.nix +++ b/pkgs/development/python-modules/sigparse/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Backports python 3.10 typing features into 3.7, 3.8, and 3.9"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/Lunarmagpie/sigparse"; - maintainers = with lib.maintainers; [ sigmanificient ]; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/skyboxremote/default.nix b/pkgs/development/python-modules/skyboxremote/default.nix index 9fcb6ac61f9bd2..1821102b633dba 100644 --- a/pkgs/development/python-modules/skyboxremote/default.nix +++ b/pkgs/development/python-modules/skyboxremote/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "skyboxremote" ]; - meta = { + meta = with lib; { description = "Module for controlling a sky box"; homepage = "https://pypi.org/project/skyboxremote/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.mit; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/sleekxmppfs/default.nix b/pkgs/development/python-modules/sleekxmppfs/default.nix index 08d9cb8e96bd22..9508405f8d03a6 100644 --- a/pkgs/development/python-modules/sleekxmppfs/default.nix +++ b/pkgs/development/python-modules/sleekxmppfs/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { # tests weren't adapted for the fork doCheck = false; - meta = { + meta = with lib; { description = "A fork of SleekXMPP with TLS cert validation disabled, intended only to be used with the sucks project"; - license = lib.licenses.mit; + license = licenses.mit; homepage = "https://github.com/aszymanik/SleekXMPP"; - maintainers = with lib.maintainers; [ dotlambda ]; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/sotabenchapi/default.nix b/pkgs/development/python-modules/sotabenchapi/default.nix index b8a1b0b918dad3..ab4dd2449e593c 100644 --- a/pkgs/development/python-modules/sotabenchapi/default.nix +++ b/pkgs/development/python-modules/sotabenchapi/default.nix @@ -43,10 +43,10 @@ buildPythonPackage { # No tests doCheck = false; - meta = { + meta = with lib; { description = "Easily benchmark Machine Learning models on selected tasks and datasets"; homepage = "https://pypi.org/project/sotabenchapi/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ drupol ]; + license = licenses.asl20; + maintainers = with maintainers; [ drupol ]; }; } diff --git a/pkgs/development/python-modules/sphinx-argparse/default.nix b/pkgs/development/python-modules/sphinx-argparse/default.nix index 5bc24ba7ec93b8..40c0563abfa3e1 100644 --- a/pkgs/development/python-modules/sphinx-argparse/default.nix +++ b/pkgs/development/python-modules/sphinx-argparse/default.nix @@ -30,10 +30,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinxarg" ]; - meta = { + meta = with lib; { description = "Sphinx extension that automatically documents argparse commands and options"; homepage = "https://github.com/ashb/sphinx-argparse"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ clacke ]; + license = licenses.mit; + maintainers = with maintainers; [ clacke ]; }; } diff --git a/pkgs/development/python-modules/sphinx-click/default.nix b/pkgs/development/python-modules/sphinx-click/default.nix index 81ac35a5131caf..42baabcaec8e40 100644 --- a/pkgs/development/python-modules/sphinx-click/default.nix +++ b/pkgs/development/python-modules/sphinx-click/default.nix @@ -50,10 +50,10 @@ buildPythonPackage rec { hash = "sha256-9dZkMh3AxmIv8Bnx4chOWM4M7P3etRDgBM9gwqOrRls="; }; - meta = { + meta = with lib; { description = "Sphinx extension that automatically documents click applications"; homepage = "https://github.com/click-contrib/sphinx-click"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ antonmosich ]; + license = licenses.mit; + maintainers = with maintainers; [ antonmosich ]; }; } diff --git a/pkgs/development/python-modules/sphinx-lv2-theme/default.nix b/pkgs/development/python-modules/sphinx-lv2-theme/default.nix index 47689da3115853..f02d1db625b554 100644 --- a/pkgs/development/python-modules/sphinx-lv2-theme/default.nix +++ b/pkgs/development/python-modules/sphinx-lv2-theme/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sphinx_lv2_theme" ]; - meta = { + meta = with lib; { description = "Sphinx theme in the style of the LV2 plugin"; homepage = "https://gitlab.com/lv2/sphinx_lv2_theme"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ samueltardieu ]; + license = licenses.isc; + maintainers = with maintainers; [ samueltardieu ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-ditaa/default.nix b/pkgs/development/python-modules/sphinxcontrib-ditaa/default.nix index 18554a01e18ee1..c8d735ceada0e0 100644 --- a/pkgs/development/python-modules/sphinxcontrib-ditaa/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-ditaa/default.nix @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonNamespaces = [ "sphinxcontrib" ]; - meta = { + meta = with lib; { description = "Sphinx ditaa extension"; homepage = "https://pypi.org/project/sphinxcontrib-ditaa"; - maintainers = with lib.maintainers; [ rconybea ]; - license = lib.licenses.bsd2; + maintainers = with maintainers; [ rconybea ]; + license = licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/spyder/default.nix b/pkgs/development/python-modules/spyder/default.nix index e9a7a59d230bb8..4713c965587289 100644 --- a/pkgs/development/python-modules/spyder/default.nix +++ b/pkgs/development/python-modules/spyder/default.nix @@ -133,7 +133,7 @@ buildPythonPackage rec { makeWrapperArgs+=("''${qtWrapperArgs[@]}") ''; - meta = { + meta = with lib; { description = "Scientific python development environment"; mainProgram = "spyder"; longDescription = '' @@ -144,8 +144,8 @@ buildPythonPackage rec { homepage = "https://www.spyder-ide.org/"; downloadPage = "https://github.com/spyder-ide/spyder/releases"; changelog = "https://github.com/spyder-ide/spyder/blob/master/CHANGELOG.md"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ gebner ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ gebner ]; + platforms = platforms.linux; }; } diff --git a/pkgs/development/python-modules/ssort/default.nix b/pkgs/development/python-modules/ssort/default.nix index 64cb1078da40fd..985b8cf3d82f3c 100644 --- a/pkgs/development/python-modules/ssort/default.nix +++ b/pkgs/development/python-modules/ssort/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { export PATH=$out/bin:$PATH ''; - meta = { + meta = with lib; { description = "Automatically sorting python statements within a module"; homepage = "https://github.com/bwhmather/ssort"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tochiaha ]; + license = licenses.mit; + maintainers = with maintainers; [ tochiaha ]; mainProgram = "ssort"; }; } diff --git a/pkgs/development/python-modules/standard-aifc/default.nix b/pkgs/development/python-modules/standard-aifc/default.nix index 5ef23d18f82bfd..81ab9599b5a60b 100644 --- a/pkgs/development/python-modules/standard-aifc/default.nix +++ b/pkgs/development/python-modules/standard-aifc/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { "aifc" ]; - meta = { + meta = with lib; { description = "Standard library aifc redistribution"; homepage = "https://github.com/youknowone/python-deadlib/tree/main/aifc"; - license = lib.licenses.psfl; - maintainers = with lib.maintainers; [ hexa ]; + license = licenses.psfl; + maintainers = with maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/standard-chunk/default.nix b/pkgs/development/python-modules/standard-chunk/default.nix index c5a30753b7f10f..fc4aa18be78276 100644 --- a/pkgs/development/python-modules/standard-chunk/default.nix +++ b/pkgs/development/python-modules/standard-chunk/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { doCheck = false; # no tests - meta = { + meta = with lib; { description = "Python dead batteries. See PEP 594"; homepage = "https://github.com/youknowone/python-deadlib"; - license = lib.licenses.psfl; - maintainers = with lib.maintainers; [ hexa ]; + license = licenses.psfl; + maintainers = with maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/standard-telnetlib/default.nix b/pkgs/development/python-modules/standard-telnetlib/default.nix index c66530455ccc20..6357ff65900503 100644 --- a/pkgs/development/python-modules/standard-telnetlib/default.nix +++ b/pkgs/development/python-modules/standard-telnetlib/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "telnetlib" ]; - meta = { + meta = with lib; { description = "Python dead batteries. See PEP 594"; homepage = "https://github.com/youknowone/python-deadlib"; - license = lib.licenses.psfl; - maintainers = with lib.maintainers; [ hexa ]; + license = licenses.psfl; + maintainers = with maintainers; [ hexa ]; }; } diff --git a/pkgs/development/python-modules/std2/default.nix b/pkgs/development/python-modules/std2/default.nix index f25c28601d1234..da8da537a9ef65 100644 --- a/pkgs/development/python-modules/std2/default.nix +++ b/pkgs/development/python-modules/std2/default.nix @@ -19,10 +19,10 @@ buildPythonPackage { nativeBuildInputs = [ setuptools ]; - meta = { + meta = with lib; { homepage = "https://github.com/ms-jpq/std2"; description = "Dependency to chadtree and coq_nvim plugins"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/steamodd/default.nix b/pkgs/development/python-modules/steamodd/default.nix index 0d327a5cea1af1..432d2392bf1b8f 100644 --- a/pkgs/development/python-modules/steamodd/default.nix +++ b/pkgs/development/python-modules/steamodd/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { "steam.vdf" ]; - meta = { + meta = with lib; { description = "High level Steam API implementation with low level reusable core"; homepage = "https://github.com/Lagg/steamodd"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.isc; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/stookalert/default.nix b/pkgs/development/python-modules/stookalert/default.nix index 0948c877315723..b5152e684df097 100644 --- a/pkgs/development/python-modules/stookalert/default.nix +++ b/pkgs/development/python-modules/stookalert/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "stookalert" ]; - meta = { + meta = with lib; { description = "Python package for the RIVM Stookalert"; homepage = "https://github.com/fwestenberg/stookalert"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/stop-words/default.nix b/pkgs/development/python-modules/stop-words/default.nix index ead093cd562212..124b02da45f1c7 100644 --- a/pkgs/development/python-modules/stop-words/default.nix +++ b/pkgs/development/python-modules/stop-words/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "stop_words" ]; - meta = { + meta = with lib; { description = "Get list of common stop words in various languages in Python"; homepage = "https://github.com/Alir3z4/python-stop-words"; - license = [ lib.licenses.bsd3 ]; - maintainers = with lib.maintainers; [ lavafroth ]; + license = [ licenses.bsd3 ]; + maintainers = with maintainers; [ lavafroth ]; }; } diff --git a/pkgs/development/python-modules/strategies/default.nix b/pkgs/development/python-modules/strategies/default.nix index 07aa6b8f00db31..ed0b528013ec88 100644 --- a/pkgs/development/python-modules/strategies/default.nix +++ b/pkgs/development/python-modules/strategies/default.nix @@ -23,10 +23,10 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ pytest ]; - meta = { + meta = with lib; { description = "Python library for control flow programming"; homepage = "https://github.com/logpy/strategies"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ suhr ]; + license = licenses.mit; + maintainers = with maintainers; [ suhr ]; }; } diff --git a/pkgs/development/python-modules/stravaweblib/default.nix b/pkgs/development/python-modules/stravaweblib/default.nix index d3c11d917fccfc..4abd6a71cb5190 100644 --- a/pkgs/development/python-modules/stravaweblib/default.nix +++ b/pkgs/development/python-modules/stravaweblib/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Python library for extending the Strava v3 API using web scraping"; homepage = "https://github.com/pR0Ps/stravaweblib"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ stv0g ]; + license = licenses.mpl20; + maintainers = with maintainers; [ stv0g ]; }; } diff --git a/pkgs/development/python-modules/supervise-api/default.nix b/pkgs/development/python-modules/supervise-api/default.nix index 841663678e562c..a678fd312d16fe 100644 --- a/pkgs/development/python-modules/supervise-api/default.nix +++ b/pkgs/development/python-modules/supervise-api/default.nix @@ -29,11 +29,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "supervise_api" ]; - meta = { + meta = with lib; { description = "API for running processes safely and securely"; homepage = "https://github.com/catern/supervise"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ catern ]; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ catern ]; }; } diff --git a/pkgs/development/python-modules/svgelements/default.nix b/pkgs/development/python-modules/svgelements/default.nix index ab107fbecad84d..29bfaa5a9733dc 100644 --- a/pkgs/development/python-modules/svgelements/default.nix +++ b/pkgs/development/python-modules/svgelements/default.nix @@ -51,10 +51,10 @@ buildPythonPackage rec { scipy ]; - meta = { + meta = with lib; { description = "SVG Parsing for Elements, Paths, and other SVG Objects"; homepage = "https://github.com/meerk40t/svgelements"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.mit; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/swifter/default.nix b/pkgs/development/python-modules/swifter/default.nix index c31b30be192b11..b1e1e9fdb4630c 100644 --- a/pkgs/development/python-modules/swifter/default.nix +++ b/pkgs/development/python-modules/swifter/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { # https://github.com/jmcarpenter2/swifter/issues/221 doCheck = false; - meta = { + meta = with lib; { description = "Package which efficiently applies any function to a pandas dataframe or series in the fastest available manner"; homepage = "https://github.com/jmcarpenter2/swifter"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ natsukium ]; + license = licenses.mit; + maintainers = with maintainers; [ natsukium ]; }; } diff --git a/pkgs/development/python-modules/swspotify/default.nix b/pkgs/development/python-modules/swspotify/default.nix index 7ed844e91d6a07..e57c7313865be6 100644 --- a/pkgs/development/python-modules/swspotify/default.nix +++ b/pkgs/development/python-modules/swspotify/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "SwSpotify" ]; - meta = { + meta = with lib; { description = "Library to get the currently playing song and artist from Spotify"; homepage = "https://github.com/SwagLyrics/SwSpotify"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ siraben ]; + license = licenses.mit; + maintainers = with maintainers; [ siraben ]; }; } diff --git a/pkgs/development/python-modules/telethon/default.nix b/pkgs/development/python-modules/telethon/default.nix index 71cabb331870bc..a49fed22bbcbc2 100644 --- a/pkgs/development/python-modules/telethon/default.nix +++ b/pkgs/development/python-modules/telethon/default.nix @@ -55,10 +55,10 @@ buildPythonPackage rec { "test_private_get_extension" ]; - meta = { + meta = with lib; { homepage = "https://github.com/LonamiWebs/Telethon"; description = "Full-featured Telegram client library for Python 3"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ nyanloutre ]; + license = licenses.mit; + maintainers = with maintainers; [ nyanloutre ]; }; } diff --git a/pkgs/development/python-modules/tempman/default.nix b/pkgs/development/python-modules/tempman/default.nix index 1b6780adff64eb..2411596735e9b5 100644 --- a/pkgs/development/python-modules/tempman/default.nix +++ b/pkgs/development/python-modules/tempman/default.nix @@ -33,10 +33,10 @@ buildPythonPackage rec { passthru.updateScripts = gitUpdater { }; - meta = { + meta = with lib; { description = "Create and clean up temporary directories"; homepage = "https://github.com/mwilliamson/python-tempman"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ drupol ]; + license = licenses.bsd2; + maintainers = with maintainers; [ drupol ]; }; } diff --git a/pkgs/development/python-modules/tensorflow/bin.nix b/pkgs/development/python-modules/tensorflow/bin.nix index cb709c98b7209b..b389eb4d155180 100644 --- a/pkgs/development/python-modules/tensorflow/bin.nix +++ b/pkgs/development/python-modules/tensorflow/bin.nix @@ -247,12 +247,12 @@ buildPythonPackage rec { "tensorflow.python.framework" ]; - meta = { + meta = with lib; { description = "Computation using data flow graphs for scalable machine learning"; homepage = "http://tensorflow.org"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.asl20; + maintainers = with maintainers; [ jyp abbradar ]; diff --git a/pkgs/development/python-modules/test-results-parser/default.nix b/pkgs/development/python-modules/test-results-parser/default.nix index c14c5cff418048..d1700b3cc03890 100644 --- a/pkgs/development/python-modules/test-results-parser/default.nix +++ b/pkgs/development/python-modules/test-results-parser/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = { + meta = with lib; { description = "Codecov test results parser"; homepage = "https://github.com/codecov/test-results-parser"; - license = lib.licenses.fsl11Asl20; - maintainers = with lib.maintainers; [ veehaitch ]; + license = licenses.fsl11Asl20; + maintainers = with maintainers; [ veehaitch ]; }; } diff --git a/pkgs/development/python-modules/textstat/default.nix b/pkgs/development/python-modules/textstat/default.nix index 127c6f453a9227..2a7720eb45bae5 100644 --- a/pkgs/development/python-modules/textstat/default.nix +++ b/pkgs/development/python-modules/textstat/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { "test.py" ]; - meta = { + meta = with lib; { description = "Python package to calculate readability statistics of a text object"; homepage = "https://textstat.org"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ aleksana ]; + license = licenses.mit; + maintainers = with maintainers; [ aleksana ]; }; } diff --git a/pkgs/development/python-modules/tf-keras/default.nix b/pkgs/development/python-modules/tf-keras/default.nix index 202aaea145d86b..347d17a52da69c 100644 --- a/pkgs/development/python-modules/tf-keras/default.nix +++ b/pkgs/development/python-modules/tf-keras/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Deep learning for humans"; homepage = "https://pypi.org/project/tf-keras/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ GaetanLepage ]; + license = licenses.asl20; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/thinqconnect/default.nix b/pkgs/development/python-modules/thinqconnect/default.nix index cf908a78d7c09b..8e54d1090b6228 100644 --- a/pkgs/development/python-modules/thinqconnect/default.nix +++ b/pkgs/development/python-modules/thinqconnect/default.nix @@ -36,10 +36,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "thinqconnect" ]; - meta = { + meta = with lib; { description = "Module to interacting with the LG ThinQ Connect Open API"; homepage = "https://github.com/thinq-connect/pythinqconnect"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.asl20; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/tinydb/default.nix b/pkgs/development/python-modules/tinydb/default.nix index 347662b41722e6..8e7349c5dcd717 100644 --- a/pkgs/development/python-modules/tinydb/default.nix +++ b/pkgs/development/python-modules/tinydb/default.nix @@ -35,11 +35,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tinydb" ]; - meta = { + meta = with lib; { description = "Lightweight document oriented database written in Python"; homepage = "https://tinydb.readthedocs.org/"; changelog = "https://tinydb.readthedocs.io/en/latest/changelog.html"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ marcus7070 ]; + license = licenses.mit; + maintainers = with maintainers; [ marcus7070 ]; }; } diff --git a/pkgs/development/python-modules/tinytag/default.nix b/pkgs/development/python-modules/tinytag/default.nix index 5f0a7a60258813..f8e4dae3a85996 100644 --- a/pkgs/development/python-modules/tinytag/default.nix +++ b/pkgs/development/python-modules/tinytag/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Read audio file metadata"; homepage = "https://github.com/tinytag/tinytag"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/toptica-lasersdk/default.nix b/pkgs/development/python-modules/toptica-lasersdk/default.nix index 6c7ccb9c252ea3..e2d49f10d177c1 100644 --- a/pkgs/development/python-modules/toptica-lasersdk/default.nix +++ b/pkgs/development/python-modules/toptica-lasersdk/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { "toptica.lasersdk.dlcpro.v2_2_0" ]; - meta = { + meta = with lib; { description = "TOPTICA Python Laser SDK"; homepage = "https://toptica.github.io/python-lasersdk/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.mit; + maintainers = with maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/torch-tb-profiler/default.nix b/pkgs/development/python-modules/torch-tb-profiler/default.nix index 766baff5d3cc75..e21dc26ed2ad0b 100644 --- a/pkgs/development/python-modules/torch-tb-profiler/default.nix +++ b/pkgs/development/python-modules/torch-tb-profiler/default.nix @@ -53,10 +53,10 @@ buildPythonPackage { pythonImportsCheck = [ "torch_tb_profiler" ]; - meta = { + meta = with lib; { description = "PyTorch Profiler TensorBoard Plugin"; homepage = "https://github.com/pytorch/kineto"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ samuela ]; + license = licenses.bsd3; + maintainers = with maintainers; [ samuela ]; }; } diff --git a/pkgs/development/python-modules/torchbench/default.nix b/pkgs/development/python-modules/torchbench/default.nix index 3593ae7921306f..edf3870008c493 100644 --- a/pkgs/development/python-modules/torchbench/default.nix +++ b/pkgs/development/python-modules/torchbench/default.nix @@ -49,10 +49,10 @@ buildPythonPackage { # No tests doCheck = false; - meta = { + meta = with lib; { description = "Easily benchmark machine learning models in PyTorch"; homepage = "https://github.com/paperswithcode/torchbench"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ drupol ]; + license = licenses.asl20; + maintainers = with maintainers; [ drupol ]; }; } diff --git a/pkgs/development/python-modules/torchcrepe/default.nix b/pkgs/development/python-modules/torchcrepe/default.nix index d292f0de81e1a0..36217d0a188d72 100644 --- a/pkgs/development/python-modules/torchcrepe/default.nix +++ b/pkgs/development/python-modules/torchcrepe/default.nix @@ -42,10 +42,10 @@ buildPythonPackage { pythonImportsCheck = [ "torchcrepe" ]; - meta = { + meta = with lib; { description = "Pytorch implementation of the CREPE pitch tracker"; homepage = "https://github.com/maxrmorrison/torchcrepe"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ derdennisop ]; + license = licenses.mit; + maintainers = with maintainers; [ derdennisop ]; }; } diff --git a/pkgs/development/python-modules/torchsummary/default.nix b/pkgs/development/python-modules/torchsummary/default.nix index 8805e8fa2117bd..418afd6769f02b 100644 --- a/pkgs/development/python-modules/torchsummary/default.nix +++ b/pkgs/development/python-modules/torchsummary/default.nix @@ -25,10 +25,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "torchsummary" ]; - meta = { + meta = with lib; { description = "Model summary in PyTorch similar to `model.summary()` in Keras"; homepage = "https://github.com/sksq96/pytorch-summary"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tomasajt ]; + license = licenses.mit; + maintainers = with maintainers; [ tomasajt ]; }; } diff --git a/pkgs/development/python-modules/torchtnt/default.nix b/pkgs/development/python-modules/torchtnt/default.nix index 0b1520d50e95ae..ecf711c2f57cdf 100644 --- a/pkgs/development/python-modules/torchtnt/default.nix +++ b/pkgs/development/python-modules/torchtnt/default.nix @@ -62,10 +62,10 @@ buildPythonPackage rec { # Tests are not included in Pypi archive doCheck = false; - meta = { + meta = with lib; { description = "Lightweight library for PyTorch training tools and utilities"; homepage = "https://github.com/pytorch/tnt"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ nim65s ]; + license = licenses.bsd3; + maintainers = with maintainers; [ nim65s ]; }; } diff --git a/pkgs/development/python-modules/traittypes/default.nix b/pkgs/development/python-modules/traittypes/default.nix index e00ebe4ce1b778..d7114d8c32dd2c 100644 --- a/pkgs/development/python-modules/traittypes/default.nix +++ b/pkgs/development/python-modules/traittypes/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "traittypes" ]; - meta = { + meta = with lib; { description = "Trait types for NumPy, SciPy, XArray, and Pandas"; homepage = "https://github.com/jupyter-widgets/traittypes"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ bcdarwin ]; + license = licenses.bsd3; + maintainers = with maintainers; [ bcdarwin ]; }; } diff --git a/pkgs/development/python-modules/tree-sitter-make/default.nix b/pkgs/development/python-modules/tree-sitter-make/default.nix index a91fa5fbd913a6..7028e562fed9c8 100644 --- a/pkgs/development/python-modules/tree-sitter-make/default.nix +++ b/pkgs/development/python-modules/tree-sitter-make/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { "tree_sitter_make" ]; - meta = { + meta = with lib; { description = "Makefile grammar for tree-sitter"; homepage = "https://github.com/tree-sitter-grammars/tree-sitter-make"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ doronbehar ]; + license = licenses.mit; + maintainers = with maintainers; [ doronbehar ]; }; } diff --git a/pkgs/development/python-modules/triton/default.nix b/pkgs/development/python-modules/triton/default.nix index 69ddb4ad716cbd..bdef96e0a9eb59 100644 --- a/pkgs/development/python-modules/triton/default.nix +++ b/pkgs/development/python-modules/triton/default.nix @@ -274,12 +274,12 @@ buildPythonPackage { ''; }; - meta = { + meta = with lib; { description = "Language and compiler for writing highly efficient custom Deep-Learning primitives"; homepage = "https://github.com/triton-lang/triton"; - platforms = lib.platforms.linux; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + platforms = platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ SomeoneSerge Madouura derdennisop diff --git a/pkgs/development/python-modules/ts1-signatures/default.nix b/pkgs/development/python-modules/ts1-signatures/default.nix index a0d94e3b3ab34a..655881f6c3e134 100644 --- a/pkgs/development/python-modules/ts1-signatures/default.nix +++ b/pkgs/development/python-modules/ts1-signatures/default.nix @@ -35,10 +35,10 @@ buildPythonPackage { "test_nghttpd_log_parsing" # Attempts to load things from logs/ which it cannot find for some reason. ]; - meta = { + meta = with lib; { description = "TLS and HTTP signature and fingerprint library"; homepage = "https://github.com/yifeikong/th1"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ggg ]; + license = licenses.mit; + maintainers = with maintainers; [ ggg ]; }; } diff --git a/pkgs/development/python-modules/tskit/default.nix b/pkgs/development/python-modules/tskit/default.nix index a1b1edcf15affd..8de0c2d9676f3b 100644 --- a/pkgs/development/python-modules/tskit/default.nix +++ b/pkgs/development/python-modules/tskit/default.nix @@ -41,11 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "tskit" ]; - meta = { + meta = with lib; { description = "Tree sequence toolkit"; mainProgram = "tskit"; homepage = "https://github.com/tskit-dev/tskit"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ alxsimon ]; + license = licenses.mit; + maintainers = with maintainers; [ alxsimon ]; }; } diff --git a/pkgs/development/python-modules/twofish/default.nix b/pkgs/development/python-modules/twofish/default.nix index e741b97d071dee..89909c7571ea3e 100644 --- a/pkgs/development/python-modules/twofish/default.nix +++ b/pkgs/development/python-modules/twofish/default.nix @@ -22,10 +22,10 @@ buildPythonPackage rec { # No tests implemented doCheck = false; - meta = { + meta = with lib; { description = "Bindings for the Twofish implementation by Niels Ferguson"; homepage = "https://github.com/keybase/python-twofish"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ kamadorueda ]; + license = licenses.bsd3; + maintainers = with maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/txi2p-tahoe/default.nix b/pkgs/development/python-modules/txi2p-tahoe/default.nix index 77e6cb77a5b07b..44b762d84ed927 100644 --- a/pkgs/development/python-modules/txi2p-tahoe/default.nix +++ b/pkgs/development/python-modules/txi2p-tahoe/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = { + meta = with lib; { description = "I2P bindings for Twisted"; homepage = "https://github.com/tahoe-lafs/txi2p"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.isc; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/types-jinja2/default.nix b/pkgs/development/python-modules/types-jinja2/default.nix index 450f1bde82c8f2..3fe080603cb4ce 100644 --- a/pkgs/development/python-modules/types-jinja2/default.nix +++ b/pkgs/development/python-modules/types-jinja2/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { types-markupsafe ]; - meta = { + meta = with lib; { description = "Typing stubs for Jinja2"; homepage = "https://pypi.org/project/types-Jinja2/"; changelog = "https://github.com/typeshed-internal/stub_uploader/blob/main/data/changelogs/MarkupSafe.md"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ nim65s ]; + license = licenses.asl20; + maintainers = with maintainers; [ nim65s ]; }; } diff --git a/pkgs/development/python-modules/types-markupsafe/default.nix b/pkgs/development/python-modules/types-markupsafe/default.nix index 49af8d021990a2..b7361c1456ba9f 100644 --- a/pkgs/development/python-modules/types-markupsafe/default.nix +++ b/pkgs/development/python-modules/types-markupsafe/default.nix @@ -20,11 +20,11 @@ buildPythonPackage rec { setuptools ]; - meta = { + meta = with lib; { description = "Typing stubs for MarkupSafe"; homepage = "https://pypi.org/project/types-markupsafe"; changelog = "https://github.com/typeshed-internal/stub_uploader/blob/main/data/changelogs/MarkupSafe.md"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ nim65s ]; + license = licenses.asl20; + maintainers = with maintainers; [ nim65s ]; }; } diff --git a/pkgs/development/python-modules/types-xxhash/default.nix b/pkgs/development/python-modules/types-xxhash/default.nix index 43f658c497fd3a..0422bc17eb9d03 100644 --- a/pkgs/development/python-modules/types-xxhash/default.nix +++ b/pkgs/development/python-modules/types-xxhash/default.nix @@ -19,11 +19,11 @@ buildPythonPackage rec { setuptools ]; - meta = { + meta = with lib; { description = "Typing stubs for xxhash"; homepage = "https://pypi.org/project/types-xxhash"; changelog = "https://github.com/typeshed-internal/stub_uploader/blob/main/data/changelogs/xxhash.md"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ nim65s ]; + license = licenses.asl20; + maintainers = with maintainers; [ nim65s ]; }; } diff --git a/pkgs/development/python-modules/ua-parser-rs/default.nix b/pkgs/development/python-modules/ua-parser-rs/default.nix index 551c2154ec3e77..7b0c29cd5eeee7 100644 --- a/pkgs/development/python-modules/ua-parser-rs/default.nix +++ b/pkgs/development/python-modules/ua-parser-rs/default.nix @@ -32,11 +32,11 @@ buildPythonPackage rec { rustPlatform.maturinBuildHook ]; - meta = { + meta = with lib; { description = "Native accelerator for ua-parser"; homepage = "https://github.com/ua-parser/uap-rust/tree/main/ua-parser-py"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.asl20; + maintainers = with maintainers; [ dotlambda ]; mainProgram = "ua-parser-rs"; }; } diff --git a/pkgs/development/python-modules/unblob-native/default.nix b/pkgs/development/python-modules/unblob-native/default.nix index df754d7b388866..c21c973890d0ac 100644 --- a/pkgs/development/python-modules/unblob-native/default.nix +++ b/pkgs/development/python-modules/unblob-native/default.nix @@ -36,11 +36,11 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Performance sensitive parts of Unblob"; homepage = "https://unblob.org"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ vlaci ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ vlaci ]; }; } diff --git a/pkgs/development/python-modules/uncompyle6/default.nix b/pkgs/development/python-modules/uncompyle6/default.nix index e5d9b4bef6196c..8c4edc92a6b1a6 100644 --- a/pkgs/development/python-modules/uncompyle6/default.nix +++ b/pkgs/development/python-modules/uncompyle6/default.nix @@ -39,10 +39,10 @@ buildPythonPackage rec { # as the project only targets bytecode of versions <= 3.8 doCheck = false; - meta = { + meta = with lib; { description = "A bytecode decompiler for Python versions 3.8 and below"; homepage = "https://github.com/rocky/python-uncompyle6"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ melvyn2 ]; + license = licenses.gpl3; + maintainers = with maintainers; [ melvyn2 ]; }; } diff --git a/pkgs/development/python-modules/unicodeit/default.nix b/pkgs/development/python-modules/unicodeit/default.nix index 31fce854c35f41..3ede53eab53f67 100644 --- a/pkgs/development/python-modules/unicodeit/default.nix +++ b/pkgs/development/python-modules/unicodeit/default.nix @@ -48,14 +48,14 @@ buildPythonPackage rec { touch $out ''; - meta = { + meta = with lib; { description = "Converts LaTeX tags to unicode"; mainProgram = "unicodeit"; homepage = "https://github.com/svenkreiss/unicodeit"; - license = with lib.licenses; [ + license = with licenses; [ lppl13c mit ]; - maintainers = with lib.maintainers; [ nicoo ]; + maintainers = with maintainers; [ nicoo ]; }; } diff --git a/pkgs/development/python-modules/unidata-blocks/default.nix b/pkgs/development/python-modules/unidata-blocks/default.nix index 793cbc7428a083..7ca538b90e0cd7 100644 --- a/pkgs/development/python-modules/unidata-blocks/default.nix +++ b/pkgs/development/python-modules/unidata-blocks/default.nix @@ -34,12 +34,12 @@ buildPythonPackage rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { homepage = "https://github.com/TakWolf/unidata-blocks"; description = "Library that helps query unicode blocks by Blocks.txt"; - platforms = lib.platforms.all; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + platforms = platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ TakWolf h7x4 ]; diff --git a/pkgs/development/python-modules/us/default.nix b/pkgs/development/python-modules/us/default.nix index aca1f00c689886..6375d6692e3e5b 100644 --- a/pkgs/development/python-modules/us/default.nix +++ b/pkgs/development/python-modules/us/default.nix @@ -34,7 +34,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "us" ]; - meta = { + meta = with lib; { description = "Package for easily working with US and state metadata"; mainProgram = "states"; longDescription = '' @@ -44,7 +44,7 @@ buildPythonPackage rec { census, congressional districts, counties, and census tracts. ''; homepage = "https://github.com/unitedstates/python-us/"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ bot-wxt1221 ]; + license = licenses.bsd3; + maintainers = with maintainers; [ bot-wxt1221 ]; }; } diff --git a/pkgs/development/python-modules/usb-monitor/default.nix b/pkgs/development/python-modules/usb-monitor/default.nix index 1f4c3c2cbfe96e..c8afed32454995 100644 --- a/pkgs/development/python-modules/usb-monitor/default.nix +++ b/pkgs/development/python-modules/usb-monitor/default.nix @@ -22,11 +22,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "usbmonitor" ]; - meta = { + meta = with lib; { description = "Cross-platform library for USB device monitoring"; homepage = "https://github.com/Eric-Canas/USBMonitor"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sifmelcara ]; - platforms = lib.platforms.linux; + license = licenses.mit; + maintainers = with maintainers; [ sifmelcara ]; + platforms = platforms.linux; }; } diff --git a/pkgs/development/python-modules/uuid6/default.nix b/pkgs/development/python-modules/uuid6/default.nix index 709f7156e6455e..23331202bc08dc 100644 --- a/pkgs/development/python-modules/uuid6/default.nix +++ b/pkgs/development/python-modules/uuid6/default.nix @@ -38,10 +38,10 @@ buildPythonPackage rec { "uuid6" ]; - meta = { + meta = with lib; { description = "New time-based UUID formats which are suited for use as a database key"; homepage = "https://github.com/oittaa/uuid6-python"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ aleksana ]; + license = licenses.mit; + maintainers = with maintainers; [ aleksana ]; }; } diff --git a/pkgs/development/python-modules/vcard/default.nix b/pkgs/development/python-modules/vcard/default.nix index 11d8c496a70678..4acd291aa22beb 100644 --- a/pkgs/development/python-modules/vcard/default.nix +++ b/pkgs/development/python-modules/vcard/default.nix @@ -33,14 +33,14 @@ buildPythonPackage rec { pythonImportsCheck = [ "vcard" ]; - meta = { + meta = with lib; { description = "vCard validator, class and utility functions"; longDescription = '' This program can be used for strict validation and parsing of vCards. It currently supports vCard 3.0 (RFC 2426). ''; homepage = "https://gitlab.com/engmark/vcard"; - license = lib.licenses.agpl3Plus; + license = licenses.agpl3Plus; mainProgram = "vcard"; - maintainers = with lib.maintainers; [ l0b0 ]; + maintainers = with maintainers; [ l0b0 ]; }; } diff --git a/pkgs/development/python-modules/verilogae/default.nix b/pkgs/development/python-modules/verilogae/default.nix index ab6bd93632c070..9df147eab0b5d7 100644 --- a/pkgs/development/python-modules/verilogae/default.nix +++ b/pkgs/development/python-modules/verilogae/default.nix @@ -65,15 +65,15 @@ buildPythonPackage rec { hardeningDisable = [ "pic" ]; - meta = { + meta = with lib; { description = "Verilog-A tool useful for compact model parameter extraction"; homepage = "https://man.sr.ht/~dspom/openvaf_doc/verilogae/"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl3Only; + maintainers = with maintainers; [ jasonodoom jleightcap ]; - platforms = lib.platforms.linux; - sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; + platforms = platforms.linux; + sourceProvenance = [ sourceTypes.binaryBytecode ]; }; } diff --git a/pkgs/development/python-modules/viewstate/default.nix b/pkgs/development/python-modules/viewstate/default.nix index d48059332148f8..b47268dca76e30 100644 --- a/pkgs/development/python-modules/viewstate/default.nix +++ b/pkgs/development/python-modules/viewstate/default.nix @@ -24,10 +24,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = { + meta = with lib; { description = ".NET viewstate decoder"; homepage = "https://github.com/yuvadm/viewstate"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ kamadorueda ]; + license = licenses.mit; + maintainers = with maintainers; [ kamadorueda ]; }; } diff --git a/pkgs/development/python-modules/volkswagencarnet/default.nix b/pkgs/development/python-modules/volkswagencarnet/default.nix index c6375bfb24b683..db3ead08d523b1 100644 --- a/pkgs/development/python-modules/volkswagencarnet/default.nix +++ b/pkgs/development/python-modules/volkswagencarnet/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = { + meta = with lib; { description = "A python library for volkswagen carnet"; homepage = "https://github.com/robinostlund/volkswagencarnet"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/vulkan/default.nix b/pkgs/development/python-modules/vulkan/default.nix index 0ca9dbdd8d2763..33c2e82ca4f207 100644 --- a/pkgs/development/python-modules/vulkan/default.nix +++ b/pkgs/development/python-modules/vulkan/default.nix @@ -50,12 +50,12 @@ buildPythonPackage rec { "vulkan" ]; - meta = { + meta = with lib; { description = "Ultimate Python binding for Vulkan API"; homepage = "https://github.com/realitix/vulkan"; - license = lib.licenses.asl20; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + platforms = platforms.linux; + maintainers = with maintainers; [ grimmauld getchoo ]; diff --git a/pkgs/development/python-modules/watergate-local-api/default.nix b/pkgs/development/python-modules/watergate-local-api/default.nix index d8d2d4a2e2bd19..f85b48999665d4 100644 --- a/pkgs/development/python-modules/watergate-local-api/default.nix +++ b/pkgs/development/python-modules/watergate-local-api/default.nix @@ -35,10 +35,10 @@ buildPythonPackage rec { pytestCheckHook ]; - meta = { + meta = with lib; { description = "Python package to interact with the Watergate Local API"; homepage = "https://github.com/watergate-ai/watergate-local-api-python"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/webassets/default.nix b/pkgs/development/python-modules/webassets/default.nix index d64ca27ece0118..78d818e0fc9e4a 100644 --- a/pkgs/development/python-modules/webassets/default.nix +++ b/pkgs/development/python-modules/webassets/default.nix @@ -63,11 +63,11 @@ buildPythonPackage rec { "TestBabel" ]; - meta = { + meta = with lib; { description = "Media asset management for Python, with glue code for various web frameworks"; mainProgram = "webassets"; homepage = "https://github.com/miracle2k/webassets/"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ abbradar ]; + license = licenses.bsd2; + maintainers = with maintainers; [ abbradar ]; }; } diff --git a/pkgs/development/python-modules/webrtcvad/default.nix b/pkgs/development/python-modules/webrtcvad/default.nix index 2bc09f2e0c5785..28d4c5b2734775 100644 --- a/pkgs/development/python-modules/webrtcvad/default.nix +++ b/pkgs/development/python-modules/webrtcvad/default.nix @@ -17,10 +17,10 @@ buildPythonPackage rec { # required WAV files for testing are not included in the tarball doCheck = false; - meta = { + meta = with lib; { description = "Interface to the Google WebRTC Voice Activity Detector (VAD)"; homepage = "https://github.com/wiseman/py-webrtcvad"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ prusnak ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/weheat/default.nix b/pkgs/development/python-modules/weheat/default.nix index ec798a079ebfc6..ede274f7c8a900 100644 --- a/pkgs/development/python-modules/weheat/default.nix +++ b/pkgs/development/python-modules/weheat/default.nix @@ -43,10 +43,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "weheat" ]; - meta = { + meta = with lib; { description = "Library to interact with the weheat API"; homepage = "https://github.com/wefabricate/wh-python"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fab ]; + license = licenses.mit; + maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/wget/default.nix b/pkgs/development/python-modules/wget/default.nix index 344592152e9a21..3dfdaebb22414a 100644 --- a/pkgs/development/python-modules/wget/default.nix +++ b/pkgs/development/python-modules/wget/default.nix @@ -15,10 +15,10 @@ buildPythonPackage rec { extension = "zip"; }; - meta = { + meta = with lib; { description = "Pure python download utility"; homepage = "https://bitbucket.org/techtonik/python-wget/"; - license = with lib.licenses; [ unlicense ]; - maintainers = with lib.maintainers; [ prusnak ]; + license = with licenses; [ unlicense ]; + maintainers = with maintainers; [ prusnak ]; }; } diff --git a/pkgs/development/python-modules/wgnlpy/default.nix b/pkgs/development/python-modules/wgnlpy/default.nix index 11cb4e38b04662..7ce13a9331cdb3 100644 --- a/pkgs/development/python-modules/wgnlpy/default.nix +++ b/pkgs/development/python-modules/wgnlpy/default.nix @@ -31,10 +31,10 @@ buildPythonPackage rec { "wgnlpy.nlas" ]; - meta = { + meta = with lib; { description = "Netlink connector to WireGuard"; homepage = "https://github.com/ArgosyLabs/wgnlpy"; - license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ marcel ]; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ marcel ]; }; } diff --git a/pkgs/development/python-modules/whey-pth/default.nix b/pkgs/development/python-modules/whey-pth/default.nix index c40292ede641fb..dc5c10584fdd78 100644 --- a/pkgs/development/python-modules/whey-pth/default.nix +++ b/pkgs/development/python-modules/whey-pth/default.nix @@ -28,10 +28,10 @@ buildPythonPackage rec { --replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"' ''; - meta = { + meta = with lib; { description = "Extension to whey to support .pth files."; homepage = "https://pypi.org/project/whey-pth"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tyberius-prime ]; + license = licenses.mit; + maintainers = with maintainers; [ tyberius-prime ]; }; } diff --git a/pkgs/development/python-modules/whey/default.nix b/pkgs/development/python-modules/whey/default.nix index 7c1aaec13e6c65..65b34f0432faf3 100644 --- a/pkgs/development/python-modules/whey/default.nix +++ b/pkgs/development/python-modules/whey/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { --replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"' ''; - meta = { + meta = with lib; { description = "A simple Python wheel builder for simple projects."; homepage = "https://pypi.org/project/whey"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ tyberius-prime ]; + license = licenses.mit; + maintainers = with maintainers; [ tyberius-prime ]; }; } diff --git a/pkgs/development/python-modules/world-bank-data/default.nix b/pkgs/development/python-modules/world-bank-data/default.nix index b5d02b034b27c7..a1a5a349c038bf 100644 --- a/pkgs/development/python-modules/world-bank-data/default.nix +++ b/pkgs/development/python-modules/world-bank-data/default.nix @@ -37,10 +37,10 @@ buildPythonPackage rec { "world_bank_data" ]; - meta = { + meta = with lib; { description = "World Bank Data API in Python"; homepage = "https://github.com/mwouts/world_bank_data"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ itepastra ]; + license = licenses.mit; + maintainers = with maintainers; [ itepastra ]; }; } diff --git a/pkgs/development/python-modules/wsme/default.nix b/pkgs/development/python-modules/wsme/default.nix index 31c2ebd9aae9ba..47c7dc40c36ad3 100644 --- a/pkgs/development/python-modules/wsme/default.nix +++ b/pkgs/development/python-modules/wsme/default.nix @@ -55,11 +55,11 @@ buildPythonPackage rec { "tests/test_flask.py" ]; - meta = { + meta = with lib; { description = "Simplify the writing of REST APIs, and extend them with additional protocols"; homepage = "https://pythonhosted.org/WSME/"; changelog = "https://pythonhosted.org/WSME/changes.html"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/x-transformers/default.nix b/pkgs/development/python-modules/x-transformers/default.nix index 55a4830ec571c7..941a4533444db0 100644 --- a/pkgs/development/python-modules/x-transformers/default.nix +++ b/pkgs/development/python-modules/x-transformers/default.nix @@ -34,13 +34,13 @@ buildPythonPackage rec { pythonImportsCheck = [ "x_transformers" ]; - meta = { + meta = with lib; { description = "Concise but fully-featured transformer"; longDescription = '' A simple but complete full-attention transformer with a set of promising experimental features from various papers ''; homepage = "https://github.com/lucidrains/x-transformers"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ByteSudoer ]; + license = licenses.mit; + maintainers = with maintainers; [ ByteSudoer ]; }; } diff --git a/pkgs/development/python-modules/xlwt/default.nix b/pkgs/development/python-modules/xlwt/default.nix index 008566a6b2dd28..a54407f0b4e68d 100644 --- a/pkgs/development/python-modules/xlwt/default.nix +++ b/pkgs/development/python-modules/xlwt/default.nix @@ -28,14 +28,14 @@ buildPythonPackage { pythonImportsCheck = [ "xlwt" ]; - meta = { + meta = with lib; { description = "Library to create spreadsheet files compatible with MS"; homepage = "https://github.com/python-excel/xlwt"; - license = with lib.licenses; [ + license = with licenses; [ bsdOriginal bsd3 lgpl21Plus ]; - maintainers = with lib.maintainers; [ pyrox0 ]; + maintainers = with maintainers; [ pyrox0 ]; }; } diff --git a/pkgs/development/python-modules/y-py/default.nix b/pkgs/development/python-modules/y-py/default.nix index b01d8f5dcca3ab..ccd9bfa142a259 100644 --- a/pkgs/development/python-modules/y-py/default.nix +++ b/pkgs/development/python-modules/y-py/default.nix @@ -40,10 +40,10 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Python bindings for Y-CRDT"; homepage = "https://github.com/y-crdt/ypy"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/yarg/default.nix b/pkgs/development/python-modules/yarg/default.nix index e2a088c875b17a..905d5009025139 100644 --- a/pkgs/development/python-modules/yarg/default.nix +++ b/pkgs/development/python-modules/yarg/default.nix @@ -35,10 +35,10 @@ buildPythonPackage { nativeCheckInputs = [ pytestCheckHook ]; - meta = { + meta = with lib; { description = "Easy to use PyPI client"; homepage = "https://yarg.readthedocs.io"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ psyanticy ]; + license = licenses.mit; + maintainers = with maintainers; [ psyanticy ]; }; } diff --git a/pkgs/development/python-modules/yt-dlp-dearrow/default.nix b/pkgs/development/python-modules/yt-dlp-dearrow/default.nix index ae182ce79a47fb..7f6b17276583fe 100644 --- a/pkgs/development/python-modules/yt-dlp-dearrow/default.nix +++ b/pkgs/development/python-modules/yt-dlp-dearrow/default.nix @@ -23,10 +23,10 @@ buildPythonPackage { pythonImportsCheck = [ "yt_dlp_plugins" ]; - meta = { + meta = with lib; { description = "Post-processor plugin to use DeArrow video titles in YT-DLP"; homepage = "https://github.com/QuantumWarpCode/yt-dlp-dearrow"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ sigmanificient ]; + license = licenses.mit; + maintainers = with maintainers; [ sigmanificient ]; }; } diff --git a/pkgs/development/python-modules/zc-buildout/default.nix b/pkgs/development/python-modules/zc-buildout/default.nix index fa947a007b2a61..5ee83a0b581d44 100644 --- a/pkgs/development/python-modules/zc-buildout/default.nix +++ b/pkgs/development/python-modules/zc-buildout/default.nix @@ -28,12 +28,12 @@ buildPythonPackage rec { pythonNamespaces = [ "zc" ]; - meta = { + meta = with lib; { description = "Software build and configuration system"; mainProgram = "buildout"; downloadPage = "https://github.com/buildout/buildout"; homepage = "https://www.buildout.org"; - license = lib.licenses.zpl21; - maintainers = with lib.maintainers; [ gotcha ]; + license = licenses.zpl21; + maintainers = with maintainers; [ gotcha ]; }; } diff --git a/pkgs/development/python-modules/zenoh/default.nix b/pkgs/development/python-modules/zenoh/default.nix index d6bbfdeef960e8..103e5a167feb16 100644 --- a/pkgs/development/python-modules/zenoh/default.nix +++ b/pkgs/development/python-modules/zenoh/default.nix @@ -39,13 +39,13 @@ buildPythonPackage rec { "zenoh" ]; - meta = { + meta = with lib; { description = "Python API for zenoh"; homepage = "https://github.com/eclipse-zenoh/zenoh-python"; - license = with lib.licenses; [ + license = with licenses; [ asl20 epl20 ]; - maintainers = with lib.maintainers; [ markuskowa ]; + maintainers = with maintainers; [ markuskowa ]; }; } diff --git a/pkgs/development/python-modules/zephyr-python-api/default.nix b/pkgs/development/python-modules/zephyr-python-api/default.nix index 87c113d9924590..7202737fc88e2a 100644 --- a/pkgs/development/python-modules/zephyr-python-api/default.nix +++ b/pkgs/development/python-modules/zephyr-python-api/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "zephyr" ]; - meta = { + meta = with lib; { homepage = "https://github.com/nassauwinter/zephyr-python-api"; description = "Set of wrappers for Zephyr Scale (TM4J) REST API"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ rapiteanu ]; + license = licenses.asl20; + maintainers = with maintainers; [ rapiteanu ]; }; } diff --git a/pkgs/development/python-modules/zephyr-test-management/default.nix b/pkgs/development/python-modules/zephyr-test-management/default.nix index 4a4482207813bd..79d41402b18d78 100644 --- a/pkgs/development/python-modules/zephyr-test-management/default.nix +++ b/pkgs/development/python-modules/zephyr-test-management/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "zephyr" ]; - meta = { + meta = with lib; { homepage = "https://github.com/Steinhagen/zephyr-test-management"; description = "Wrappers for both Zephyr Scale and Zephyr Squad (TM4J) REST APIs"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ rapiteanu ]; + license = licenses.asl20; + maintainers = with maintainers; [ rapiteanu ]; }; } diff --git a/pkgs/development/python-modules/ziafont/default.nix b/pkgs/development/python-modules/ziafont/default.nix index 98a46812f7ee18..86835b2741af74 100644 --- a/pkgs/development/python-modules/ziafont/default.nix +++ b/pkgs/development/python-modules/ziafont/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ziafont" ]; - meta = { + meta = with lib; { description = "Convert TTF/OTF font glyphs to SVG paths"; homepage = "https://ziafont.readthedocs.io/en/latest/"; changelog = "https://github.com/cdelker/ziafont/blob/main/CHANGES.md"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.sfrijters ]; + license = licenses.mit; + maintainers = [ maintainers.sfrijters ]; }; } diff --git a/pkgs/development/python-modules/ziamath/default.nix b/pkgs/development/python-modules/ziamath/default.nix index a74411d8afd52a..0b2d12a627a18a 100644 --- a/pkgs/development/python-modules/ziamath/default.nix +++ b/pkgs/development/python-modules/ziamath/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ziamath" ]; - meta = { + meta = with lib; { description = "Render MathML and LaTeX Math to SVG without Latex installation"; homepage = "https://ziamath.readthedocs.io/en/latest/"; changelog = "https://ziamath.readthedocs.io/en/latest/changes.html"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.sfrijters ]; + license = licenses.mit; + maintainers = [ maintainers.sfrijters ]; }; } diff --git a/pkgs/development/python-modules/zope-cachedescriptors/default.nix b/pkgs/development/python-modules/zope-cachedescriptors/default.nix index 73aef8961525d6..500123140fadb6 100644 --- a/pkgs/development/python-modules/zope-cachedescriptors/default.nix +++ b/pkgs/development/python-modules/zope-cachedescriptors/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "zope.cachedescriptors" ]; - meta = { + meta = with lib; { description = "Method and property caching decorators"; homepage = "https://github.com/zopefoundation/zope.cachedescriptors"; - license = lib.licenses.zpl21; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.zpl21; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/python-modules/zpp/default.nix b/pkgs/development/python-modules/zpp/default.nix index e9135bb58eaf25..d95ac5ad54cf5e 100644 --- a/pkgs/development/python-modules/zpp/default.nix +++ b/pkgs/development/python-modules/zpp/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { tests.version = testers.testVersion { package = zpp; }; }; - meta = { + meta = with lib; { description = "The 'Z' pre-processor, the last preprocessor you'll ever need"; homepage = "https://github.com/jbigot/zpp"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "zpp"; - maintainers = with lib.maintainers; [ GaetanLepage ]; + maintainers = with maintainers; [ GaetanLepage ]; }; } diff --git a/pkgs/development/python-modules/zulip-emoji-mapping/default.nix b/pkgs/development/python-modules/zulip-emoji-mapping/default.nix index d27d2fd355b088..9f175d8b347d73 100644 --- a/pkgs/development/python-modules/zulip-emoji-mapping/default.nix +++ b/pkgs/development/python-modules/zulip-emoji-mapping/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { "zulip_emoji_mapping" ]; - meta = { + meta = with lib; { description = "Get emojis by Zulip names"; homepage = "https://github.com/GearKite/zulip-emoji-mapping"; changelog = "https://github.com/GearKite/zulip-emoji-mapping/releases"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ robertrichter ]; + license = licenses.asl20; + maintainers = with maintainers; [ robertrichter ]; }; } diff --git a/pkgs/development/skaware-packages/sdnotify-wrapper/default.nix b/pkgs/development/skaware-packages/sdnotify-wrapper/default.nix index d9fa940a3294eb..e86463cdff6e7b 100644 --- a/pkgs/development/skaware-packages/sdnotify-wrapper/default.nix +++ b/pkgs/development/skaware-packages/sdnotify-wrapper/default.nix @@ -19,13 +19,13 @@ runCommandCC "sdnotify-wrapper" "out" ]; - meta = { + meta = with lib; { homepage = "https://skarnet.org/software/misc/sdnotify-wrapper.c"; description = "Use systemd sd_notify without having to link against libsystemd"; mainProgram = "sdnotify-wrapper"; - platforms = lib.platforms.linux; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ Profpatsch ]; + platforms = platforms.linux; + license = licenses.isc; + maintainers = with maintainers; [ Profpatsch ]; }; } diff --git a/pkgs/development/tcl-modules/by-name/bw/bwidget/package.nix b/pkgs/development/tcl-modules/by-name/bw/bwidget/package.nix index f1acf555e6ce8a..738e32484bcb21 100644 --- a/pkgs/development/tcl-modules/by-name/bw/bwidget/package.nix +++ b/pkgs/development/tcl-modules/by-name/bw/bwidget/package.nix @@ -22,11 +22,11 @@ mkTclDerivation rec { cp -R *.tcl lang images "$out/lib/bwidget${version}" ''; - meta = { + meta = with lib; { homepage = "https://sourceforge.net/projects/tcllib"; description = "High-level widget set for Tcl/Tk"; - maintainers = with lib.maintainers; [ agbrooks ]; - license = lib.licenses.tcltk; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ agbrooks ]; + license = licenses.tcltk; + platforms = platforms.unix; }; } diff --git a/pkgs/development/tcl-modules/by-name/pd/pdf4tcl/package.nix b/pkgs/development/tcl-modules/by-name/pd/pdf4tcl/package.nix index 07d059c042d321..e0ed20311be322 100644 --- a/pkgs/development/tcl-modules/by-name/pd/pdf4tcl/package.nix +++ b/pkgs/development/tcl-modules/by-name/pd/pdf4tcl/package.nix @@ -20,10 +20,10 @@ mkTclDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Tcl package for generating PDF files"; homepage = "https://pdf4tcl.sourceforge.net/"; - license = lib.licenses.tcltk; - maintainers = with lib.maintainers; [ fgaz ]; + license = licenses.tcltk; + maintainers = with maintainers; [ fgaz ]; }; } diff --git a/pkgs/development/tcl-modules/by-name/tc/tclcurl/package.nix b/pkgs/development/tcl-modules/by-name/tc/tclcurl/package.nix index a843734b69b6f0..cc106e995f7a8a 100644 --- a/pkgs/development/tcl-modules/by-name/tc/tclcurl/package.nix +++ b/pkgs/development/tcl-modules/by-name/tc/tclcurl/package.nix @@ -23,11 +23,11 @@ mkTclDerivation rec { makeFlags = [ "LDFLAGS=-lcurl" ]; - meta = { + meta = with lib; { description = "Curl support in Tcl"; homepage = "https://github.com/flightaware/tclcurl-fa"; changelog = "https://github.com/flightaware/tclcurl-fa/blob/master/ChangeLog.txt"; - license = lib.licenses.tcltk; - maintainers = with lib.maintainers; [ fgaz ]; + license = licenses.tcltk; + maintainers = with maintainers; [ fgaz ]; }; } diff --git a/pkgs/development/tcl-modules/by-name/tc/tcllib/package.nix b/pkgs/development/tcl-modules/by-name/tc/tcllib/package.nix index 33ca7b53001b92..11fbb72b28a385 100644 --- a/pkgs/development/tcl-modules/by-name/tc/tcllib/package.nix +++ b/pkgs/development/tcl-modules/by-name/tc/tcllib/package.nix @@ -19,11 +19,11 @@ mkTclDerivation rec { buildFlags = [ "all" ] ++ lib.optional withCritcl "critcl"; - meta = { + meta = with lib; { homepage = "https://core.tcl-lang.org/tcllib/"; description = "Tcl-only library of standard routines for Tcl"; - license = lib.licenses.tcltk; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ fgaz ]; + license = licenses.tcltk; + platforms = platforms.unix; + maintainers = with maintainers; [ fgaz ]; }; } diff --git a/pkgs/development/tcl-modules/by-name/tc/tclmagick/package.nix b/pkgs/development/tcl-modules/by-name/tc/tclmagick/package.nix index ad688ec56de4cb..1612abe8bc6aff 100644 --- a/pkgs/development/tcl-modules/by-name/tc/tclmagick/package.nix +++ b/pkgs/development/tcl-modules/by-name/tc/tclmagick/package.nix @@ -29,10 +29,10 @@ mkTclDerivation rec { doInstallCheck = true; - meta = { + meta = with lib; { description = "Tcl and Tk Interfaces to GraphicsMagick and ImageMagick"; homepage = "http://www.graphicsmagick.org/TclMagick/doc/"; - license = lib.licenses.tcltk; - maintainers = with lib.maintainers; [ fgaz ]; + license = licenses.tcltk; + maintainers = with maintainers; [ fgaz ]; }; } diff --git a/pkgs/development/tcl-modules/by-name/tc/tcltls/package.nix b/pkgs/development/tcl-modules/by-name/tc/tcltls/package.nix index f5f2d99b284d83..0fcfed3c9c360a 100644 --- a/pkgs/development/tcl-modules/by-name/tc/tcltls/package.nix +++ b/pkgs/development/tcl-modules/by-name/tc/tcltls/package.nix @@ -20,11 +20,11 @@ mkTclDerivation rec { "--with-ssl-dir=${openssl.dev}" ]; - meta = { + meta = with lib; { homepage = "https://core.tcl-lang.org/tcltls/index"; description = "OpenSSL / RSA-bsafe Tcl extension"; - maintainers = [ lib.maintainers.agbrooks ]; - license = lib.licenses.tcltk; - platforms = lib.platforms.unix; + maintainers = [ maintainers.agbrooks ]; + license = licenses.tcltk; + platforms = platforms.unix; }; } diff --git a/pkgs/development/tcl-modules/by-name/tc/tcludp/package.nix b/pkgs/development/tcl-modules/by-name/tc/tcludp/package.nix index 073a93432fda2a..e3d795eadee68c 100644 --- a/pkgs/development/tcl-modules/by-name/tc/tcludp/package.nix +++ b/pkgs/development/tcl-modules/by-name/tc/tcludp/package.nix @@ -30,10 +30,10 @@ mkTclDerivation rec { installCheckTarget = "test"; - meta = { + meta = with lib; { description = "UDP socket support for Tcl"; homepage = "https://core.tcl-lang.org/tcludp"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ fgaz ]; + license = licenses.mit; + maintainers = with maintainers; [ fgaz ]; }; } diff --git a/pkgs/development/tcl-modules/by-name/tc/tclvfs/package.nix b/pkgs/development/tcl-modules/by-name/tc/tclvfs/package.nix index 0fde102cc2a723..01b298290ceba3 100644 --- a/pkgs/development/tcl-modules/by-name/tc/tclvfs/package.nix +++ b/pkgs/development/tcl-modules/by-name/tc/tclvfs/package.nix @@ -13,16 +13,16 @@ mkTclDerivation { hash = "sha256-DzZ4Puwscbr0KarMyEKeah7jDJy7cfKNBbBSh0boaUw="; }; - meta = { + meta = with lib; { description = "Tcl extension that exposes Tcl's Virtual File System (VFS) subsystem to the script level"; homepage = "https://core.tcl.tk/tclvfs"; - license = lib.licenses.tcltk; + license = licenses.tcltk; longDescription = '' The TclVfs project aims to provide an extension to the Tcl language which allows Virtual Filesystems to be built using Tcl scripts only. It is also a repository of such Tcl-implemented filesystems (metakit, zip, ftp, tar, http, webdav, namespace, url) ''; - maintainers = with lib.maintainers; [ fgaz ]; + maintainers = with maintainers; [ fgaz ]; }; } diff --git a/pkgs/development/tcl-modules/by-name/tc/tclx/package.nix b/pkgs/development/tcl-modules/by-name/tc/tclx/package.nix index a82b75b56fafec..d2fb883db777fd 100644 --- a/pkgs/development/tcl-modules/by-name/tc/tclx/package.nix +++ b/pkgs/development/tcl-modules/by-name/tc/tclx/package.nix @@ -24,11 +24,11 @@ mkTclDerivation rec { ln -s $prefix/lib/tclx${majorMinorVersion} $prefix/lib/tclx${majorMinorVersion}/tclx${majorMinorVersion} ''; - meta = { + meta = with lib; { homepage = "https://github.com/flightaware/tclx"; description = "Tcl extensions"; - license = lib.licenses.tcltk; - maintainers = with lib.maintainers; [ + license = licenses.tcltk; + maintainers = with maintainers; [ kovirobi fgaz ]; diff --git a/pkgs/development/tcl-modules/by-name/td/tdom/package.nix b/pkgs/development/tcl-modules/by-name/td/tdom/package.nix index 38ac7acfbcf0d5..ddd6964bcb1672 100644 --- a/pkgs/development/tcl-modules/by-name/td/tdom/package.nix +++ b/pkgs/development/tcl-modules/by-name/td/tdom/package.nix @@ -31,10 +31,10 @@ mkTclDerivation rec { doInstallCheck = true; installCheckTarget = "test"; - meta = { + meta = with lib; { description = "XML / DOM / XPath / XSLT / HTML / JSON implementation for Tcl"; homepage = "http://www.tdom.org"; - license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ fgaz ]; + license = licenses.mpl20; + maintainers = with maintainers; [ fgaz ]; }; } diff --git a/pkgs/development/tcl-modules/by-name/tk/tkimg/package.nix b/pkgs/development/tcl-modules/by-name/tk/tkimg/package.nix index ad737f13a3551b..a7fc5b00d65e12 100644 --- a/pkgs/development/tcl-modules/by-name/tk/tkimg/package.nix +++ b/pkgs/development/tcl-modules/by-name/tk/tkimg/package.nix @@ -37,11 +37,11 @@ tcl.mkTclDerivation rec { ] ); - meta = { + meta = with lib; { homepage = "https://sourceforge.net/projects/tkimg/"; description = "Img package adds several image formats to Tcl/Tk"; - maintainers = with lib.maintainers; [ matthewcroughan ]; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ matthewcroughan ]; + license = licenses.bsd3; + platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/analysis/clang-analyzer/default.nix b/pkgs/development/tools/analysis/clang-analyzer/default.nix index 84c948566debe9..9ffe83c53ed67c 100644 --- a/pkgs/development/tools/analysis/clang-analyzer/default.nix +++ b/pkgs/development/tools/analysis/clang-analyzer/default.nix @@ -37,15 +37,15 @@ stdenv.mkDerivation rec { --add-flags "--use-analyzer='${llvmPackages.clang}/bin/clang'" ''; - meta = { + meta = with lib; { description = "Clang Static Analyzer"; longDescription = '' The Clang Static Analyzer is a source code analysis tool that finds bugs in C, C++, and Objective-C programs. ''; homepage = "https://clang-analyzer.llvm.org/"; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.thoughtpolice ]; + license = licenses.bsd3; + platforms = platforms.unix; + maintainers = [ maintainers.thoughtpolice ]; }; } diff --git a/pkgs/development/tools/analysis/rizin/default.nix b/pkgs/development/tools/analysis/rizin/default.nix index c865ac53b0b810..4b0998cfcee827 100644 --- a/pkgs/development/tools/analysis/rizin/default.nix +++ b/pkgs/development/tools/analysis/rizin/default.nix @@ -143,17 +143,17 @@ let }; }; - meta = { + meta = with lib; { description = "UNIX-like reverse engineering framework and command-line toolset"; homepage = "https://rizin.re/"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "rizin"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ raskin makefu mic92 ]; - platforms = with lib.platforms; unix; + platforms = with platforms; unix; }; }; in diff --git a/pkgs/development/tools/azure-static-sites-client/default.nix b/pkgs/development/tools/azure-static-sites-client/default.nix index eec2fbc63e6285..903f70550cef8c 100644 --- a/pkgs/development/tools/azure-static-sites-client/default.nix +++ b/pkgs/development/tools/azure-static-sites-client/default.nix @@ -90,13 +90,13 @@ stdenv.mkDerivation { updateScript = ./update.sh; }; - meta = { + meta = with lib; { description = "Azure static sites client"; homepage = "https://github.com/Azure/static-web-apps-cli"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; mainProgram = "StaticSitesClient"; - maintainers = with lib.maintainers; [ veehaitch ]; + maintainers = with maintainers; [ veehaitch ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/development/tools/dazel/default.nix b/pkgs/development/tools/dazel/default.nix index 1a898b19118d36..bfd3d5a6b567ca 100644 --- a/pkgs/development/tools/dazel/default.nix +++ b/pkgs/development/tools/dazel/default.nix @@ -12,11 +12,11 @@ buildPythonApplication rec { hash = "sha256-JE7+GS7DpuFoC2LK3dvYvjtOdzRxFMHzgZRfvrGBDtQ="; }; - meta = { + meta = with lib; { homepage = "https://github.com/nadirizr/dazel"; description = "Run Google's bazel inside a docker container via a seamless proxy."; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ malt3 ]; }; diff --git a/pkgs/development/tools/fnm/default.nix b/pkgs/development/tools/fnm/default.nix index dcaf8bd79b3747..b47787069a5158 100644 --- a/pkgs/development/tools/fnm/default.nix +++ b/pkgs/development/tools/fnm/default.nix @@ -30,11 +30,11 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/fnm completions --shell zsh) ''; - meta = { + meta = with lib; { description = "Fast and simple Node.js version manager"; mainProgram = "fnm"; homepage = "https://github.com/Schniz/fnm"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ kidonng ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ kidonng ]; }; } diff --git a/pkgs/development/tools/gauge/plugins/go/default.nix b/pkgs/development/tools/gauge/plugins/go/default.nix index 14be396ef0867e..d771fbd2643e39 100644 --- a/pkgs/development/tools/gauge/plugins/go/default.nix +++ b/pkgs/development/tools/gauge/plugins/go/default.nix @@ -9,12 +9,12 @@ makeGaugePlugin { repo = "getgauge-contrib/gauge-go"; releasePrefix = "gauge-go-"; - meta = { + meta = with lib; { description = "Gauge plugin that lets you write tests in Go"; homepage = "https://github.com/getgauge-contrib/gauge-go"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ marie ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + license = licenses.gpl3; + maintainers = with maintainers; [ marie ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; platforms = [ "aarch64-darwin" "x86_64-darwin" diff --git a/pkgs/development/tools/gauge/plugins/html-report/default.nix b/pkgs/development/tools/gauge/plugins/html-report/default.nix index 8083b1cbd87754..f5f612c6e0f071 100644 --- a/pkgs/development/tools/gauge/plugins/html-report/default.nix +++ b/pkgs/development/tools/gauge/plugins/html-report/default.nix @@ -9,12 +9,12 @@ makeGaugePlugin { repo = "getgauge/html-report"; releasePrefix = "html-report-"; - meta = { + meta = with lib; { description = "HTML report generation plugin for Gauge"; homepage = "https://github.com/getgauge/html-report/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ marie ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + license = licenses.asl20; + maintainers = with maintainers; [ marie ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; platforms = [ "aarch64-darwin" "x86_64-darwin" diff --git a/pkgs/development/tools/gauge/plugins/java/default.nix b/pkgs/development/tools/gauge/plugins/java/default.nix index 27a94cdf8aedb3..f373b6bb2740c7 100644 --- a/pkgs/development/tools/gauge/plugins/java/default.nix +++ b/pkgs/development/tools/gauge/plugins/java/default.nix @@ -9,12 +9,12 @@ makeGaugePlugin { repo = "getgauge/gauge-java"; releasePrefix = "gauge-java-"; - meta = { + meta = with lib; { description = "Gauge plugin that lets you write tests in Java"; homepage = "https://github.com/getgauge/gauge-java/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ marie ]; - sourceProvenance = with lib.sourceTypes; [ + license = licenses.asl20; + maintainers = with maintainers; [ marie ]; + sourceProvenance = with sourceTypes; [ # Native binary written in go binaryNativeCode # Jar files diff --git a/pkgs/development/tools/gauge/plugins/ruby/default.nix b/pkgs/development/tools/gauge/plugins/ruby/default.nix index 017dbf3b6b8c62..35b6c52f38bb3e 100644 --- a/pkgs/development/tools/gauge/plugins/ruby/default.nix +++ b/pkgs/development/tools/gauge/plugins/ruby/default.nix @@ -9,12 +9,12 @@ makeGaugePlugin { repo = "getgauge/gauge-ruby"; releasePrefix = "gauge-ruby-"; - meta = { + meta = with lib; { description = "Gauge plugin that lets you write tests in Ruby"; homepage = "https://github.com/getgauge/gauge-ruby/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ marie ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.asl20; + maintainers = with maintainers; [ marie ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; platforms = [ "aarch64-darwin" "x86_64-darwin" diff --git a/pkgs/development/tools/gauge/plugins/screenshot/default.nix b/pkgs/development/tools/gauge/plugins/screenshot/default.nix index 26ac349837765c..17217133e2cc95 100644 --- a/pkgs/development/tools/gauge/plugins/screenshot/default.nix +++ b/pkgs/development/tools/gauge/plugins/screenshot/default.nix @@ -9,12 +9,12 @@ makeGaugePlugin { repo = "getgauge/gauge_screenshot"; releasePrefix = "screenshot-"; - meta = { + meta = with lib; { description = "Gauge plugin to take screenshots"; homepage = "https://github.com/getgauge/gauge_screenshot/"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ marie ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = licenses.gpl3; + maintainers = with maintainers; [ marie ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; platforms = [ "x86_64-darwin" "aarch64-darwin" diff --git a/pkgs/development/tools/gauge/plugins/xml-report/default.nix b/pkgs/development/tools/gauge/plugins/xml-report/default.nix index 154c2f3de244d1..ae85505c394ba0 100644 --- a/pkgs/development/tools/gauge/plugins/xml-report/default.nix +++ b/pkgs/development/tools/gauge/plugins/xml-report/default.nix @@ -9,12 +9,12 @@ makeGaugePlugin { repo = "getgauge/xml-report"; releasePrefix = "xml-report-"; - meta = { + meta = with lib; { description = "XML report generation plugin for Gauge"; homepage = "https://github.com/getgauge/xml-report/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ marie ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + license = licenses.asl20; + maintainers = with maintainers; [ marie ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; platforms = [ "x86_64-darwin" "aarch64-darwin" diff --git a/pkgs/development/tools/misc/blackfire/php-probe.nix b/pkgs/development/tools/misc/blackfire/php-probe.nix index bea8a611eb6a9e..18fedee2594ee1 100644 --- a/pkgs/development/tools/misc/blackfire/php-probe.nix +++ b/pkgs/development/tools/misc/blackfire/php-probe.nix @@ -147,11 +147,11 @@ stdenv.mkDerivation (finalAttrs: { ) hashes; }; - meta = { + meta = with lib; { description = "Blackfire Profiler PHP module"; homepage = "https://blackfire.io/"; - license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ shyim ]; + license = licenses.unfree; + maintainers = with maintainers; [ shyim ]; platforms = [ "x86_64-linux" "aarch64-linux" @@ -159,6 +159,6 @@ stdenv.mkDerivation (finalAttrs: { "x86_64-darwin" "aarch64-darwin" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/development/tools/misc/edb/default.nix b/pkgs/development/tools/misc/edb/default.nix index 786209cb74f4e5..a0f2a64b27e389 100644 --- a/pkgs/development/tools/misc/edb/default.nix +++ b/pkgs/development/tools/misc/edb/default.nix @@ -63,12 +63,12 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = { + meta = with lib; { description = "Cross platform AArch32/x86/x86-64 debugger"; mainProgram = "edb"; homepage = "https://github.com/eteran/edb-debugger"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + maintainers = with maintainers; [ lihop maxxk ]; diff --git a/pkgs/development/tools/misc/nixbang/default.nix b/pkgs/development/tools/misc/nixbang/default.nix index 0cb6f1c24b74ba..31c4f99317b176 100644 --- a/pkgs/development/tools/misc/nixbang/default.nix +++ b/pkgs/development/tools/misc/nixbang/default.nix @@ -16,11 +16,11 @@ pythonPackages.buildPythonApplication rec { sha256 = "1kzk53ry60i814wa6n9y2ni0bcxhbi9p8gdv10b974gf23mhi8vc"; }; - meta = { + meta = with lib; { homepage = "https://github.com/madjar/nixbang"; description = "Special shebang to run scripts in a nix-shell"; mainProgram = "nixbang"; - maintainers = [ lib.maintainers.madjar ]; - platforms = lib.platforms.all; + maintainers = [ maintainers.madjar ]; + platforms = platforms.all; }; } diff --git a/pkgs/development/tools/misc/premake/3.nix b/pkgs/development/tools/misc/premake/3.nix index 7eabdae30648ea..efb82f72e6aaba 100644 --- a/pkgs/development/tools/misc/premake/3.nix +++ b/pkgs/development/tools/misc/premake/3.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { premake_cmd = "premake"; setupHook = ./setup-hook.sh; - meta = { + meta = with lib; { homepage = "https://premake.github.io/"; description = "Simple build configuration and project generation tool using lua"; mainProgram = "premake"; - license = lib.licenses.bsd3; - platforms = lib.platforms.unix; + license = licenses.bsd3; + platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/misc/premake/5.nix b/pkgs/development/tools/misc/premake/5.nix index 6ab7240894533f..5acb5eba7627b2 100644 --- a/pkgs/development/tools/misc/premake/5.nix +++ b/pkgs/development/tools/misc/premake/5.nix @@ -68,11 +68,11 @@ stdenv.mkDerivation rec { premake_cmd = "premake5"; setupHook = ./setup-hook.sh; - meta = { + meta = with lib; { homepage = "https://premake.github.io"; description = "Simple build configuration and project generation tool using lua"; mainProgram = "premake5"; - license = lib.licenses.bsd3; - platforms = lib.platforms.darwin ++ lib.platforms.linux; + license = licenses.bsd3; + platforms = platforms.darwin ++ platforms.linux; }; } diff --git a/pkgs/development/tools/misc/pwninit/default.nix b/pkgs/development/tools/misc/pwninit/default.nix index 7a616761311d45..23c63af38f8de5 100644 --- a/pkgs/development/tools/misc/pwninit/default.nix +++ b/pkgs/development/tools/misc/pwninit/default.nix @@ -38,12 +38,12 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-J2uQoqStBl+qItaXWi17H/IailZ7P4YzhLNs17BY92Q="; - meta = { + meta = with lib; { description = "Automate starting binary exploit challenges"; mainProgram = "pwninit"; homepage = "https://github.com/io12/pwninit"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.scoder12 ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = [ maintainers.scoder12 ]; + platforms = platforms.all; }; } diff --git a/pkgs/development/tools/ocaml/camlidl/default.nix b/pkgs/development/tools/ocaml/camlidl/default.nix index 0e707e4fdaee3f..6027d7ae2bf9df 100644 --- a/pkgs/development/tools/ocaml/camlidl/default.nix +++ b/pkgs/development/tools/ocaml/camlidl/default.nix @@ -53,11 +53,11 @@ lib.throwIfNot (lib.versionAtLeast ocaml.version "4.03") export NIX_LDFLAGS+=" -L $1/lib/ocaml/${ocaml.version}/site-lib/camlidl" ''; - meta = { + meta = with lib; { description = "Stub code generator and COM binding for Objective Caml"; mainProgram = "camlidl"; homepage = "https://xavierleroy.org/camlidl/"; - license = lib.licenses.lgpl21; - maintainers = [ lib.maintainers.roconnor ]; + license = licenses.lgpl21; + maintainers = [ maintainers.roconnor ]; }; } diff --git a/pkgs/development/tools/ocaml/crunch/default.nix b/pkgs/development/tools/ocaml/crunch/default.nix index 0af8cb6a913376..92ff30ea9c35e1 100644 --- a/pkgs/development/tools/ocaml/crunch/default.nix +++ b/pkgs/development/tools/ocaml/crunch/default.nix @@ -33,12 +33,12 @@ buildDunePackage rec { dune install --prefix=$bin --libdir=$lib/lib/ocaml/${ocaml.version}/site-lib/ ''; - meta = { + meta = with lib; { homepage = "https://github.com/mirage/ocaml-crunch"; description = "Convert a filesystem into a static OCaml module"; mainProgram = "ocaml-crunch"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/tools/ocaml/js_of_ocaml/compiler.nix b/pkgs/development/tools/ocaml/js_of_ocaml/compiler.nix index b1855a49d133ac..f0fe7179145e9c 100644 --- a/pkgs/development/tools/ocaml/js_of_ocaml/compiler.nix +++ b/pkgs/development/tools/ocaml/js_of_ocaml/compiler.nix @@ -41,11 +41,11 @@ buildDunePackage { sedlex ]; - meta = { + meta = with lib; { description = "Compiler from OCaml bytecode to Javascript"; homepage = "https://ocsigen.org/js_of_ocaml/"; - license = lib.licenses.gpl2; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.gpl2; + maintainers = [ maintainers.vbgl ]; mainProgram = "js_of_ocaml"; }; } diff --git a/pkgs/development/tools/ocaml/js_of_ocaml/ocamlbuild.nix b/pkgs/development/tools/ocaml/js_of_ocaml/ocamlbuild.nix index de77b0f3e2d5fc..4b43638b3023b0 100644 --- a/pkgs/development/tools/ocaml/js_of_ocaml/ocamlbuild.nix +++ b/pkgs/development/tools/ocaml/js_of_ocaml/ocamlbuild.nix @@ -18,10 +18,10 @@ buildDunePackage rec { propagatedBuildInputs = [ ocamlbuild ]; - meta = { + meta = with lib; { description = "Ocamlbuild plugin to compile to JavaScript"; homepage = "https://github.com/ocsigen/js_of_ocaml-ocamlbuild"; - license = lib.licenses.lgpl2Only; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.lgpl2Only; + maintainers = [ maintainers.vbgl ]; }; } diff --git a/pkgs/development/tools/ocaml/melange/default.nix b/pkgs/development/tools/ocaml/melange/default.nix index 98f503d2e13ead..ce6052603edea6 100644 --- a/pkgs/development/tools/ocaml/melange/default.nix +++ b/pkgs/development/tools/ocaml/melange/default.nix @@ -73,13 +73,13 @@ buildDunePackage { postInstall = '' wrapProgram "$out/bin/melc" --set MELANGELIB "$OCAMLFIND_DESTDIR/melange/melange:$OCAMLFIND_DESTDIR/melange/js/melange" ''; - meta = { + meta = with lib; { description = "Toolchain to produce JS from Reason/OCaml"; homepage = "https://melange.re/"; mainProgram = "melc"; - license = lib.licenses.lgpl3; + license = licenses.lgpl3; maintainers = [ - lib.maintainers.vog + maintainers.vog ]; }; } diff --git a/pkgs/development/tools/ocaml/obelisk/default.nix b/pkgs/development/tools/ocaml/obelisk/default.nix index 0d159915042110..767eacbaefdd3d 100644 --- a/pkgs/development/tools/ocaml/obelisk/default.nix +++ b/pkgs/development/tools/ocaml/obelisk/default.nix @@ -21,11 +21,11 @@ ocamlPackages.buildDunePackage rec { nativeBuildInputs = [ menhir ]; buildInputs = with ocamlPackages; [ re ]; - meta = { + meta = with lib; { description = "Simple tool which produces pretty-printed output from a Menhir parser file (.mly)"; mainProgram = "obelisk"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.mit; + maintainers = [ maintainers.vbgl ]; homepage = "https://github.com/Lelio-Brun/Obelisk"; }; } diff --git a/pkgs/development/tools/protoc-gen-dart/default.nix b/pkgs/development/tools/protoc-gen-dart/default.nix index 4eb95f412bbb3f..8dec314c7038ce 100644 --- a/pkgs/development/tools/protoc-gen-dart/default.nix +++ b/pkgs/development/tools/protoc-gen-dart/default.nix @@ -21,11 +21,11 @@ buildDartApplication rec { passthru.updateScript = ./update.sh; - meta = { + meta = with lib; { description = "Protobuf plugin for generating Dart code"; mainProgram = "protoc-gen-dart"; homepage = "https://pub.dev/packages/protoc_plugin"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ lelgenio ]; + license = licenses.bsd3; + maintainers = with maintainers; [ lelgenio ]; }; } diff --git a/pkgs/development/tools/rtags/default.nix b/pkgs/development/tools/rtags/default.nix index b0f2ea7303312f..44b85ae877bb8c 100644 --- a/pkgs/development/tools/rtags/default.nix +++ b/pkgs/development/tools/rtags/default.nix @@ -60,10 +60,10 @@ stdenv.mkDerivation rec { LIBCLANG_LIBDIR="${llvmPackages.clang.cc}/lib" ''; - meta = { + meta = with lib; { description = "C/C++ client-server indexer based on clang"; homepage = "https://github.com/andersbakken/rtags"; - license = lib.licenses.gpl3; - platforms = with lib.platforms; x86_64 ++ aarch64; + license = licenses.gpl3; + platforms = with platforms; x86_64 ++ aarch64; }; } diff --git a/pkgs/development/tools/wails/default.nix b/pkgs/development/tools/wails/default.nix index acbf96a085836f..7c492da7e45105 100644 --- a/pkgs/development/tools/wails/default.nix +++ b/pkgs/development/tools/wails/default.nix @@ -84,12 +84,12 @@ buildGoModule rec { --set CGO_LDFLAGS "-L${lib.makeLibraryPath [ zlib ]}" ''; - meta = { + meta = with lib; { description = "Build applications using Go + HTML + CSS + JS"; homepage = "https://wails.io"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + license = licenses.mit; + maintainers = with maintainers; [ ]; mainProgram = "wails"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/games/2048-cli/default.nix b/pkgs/games/2048-cli/default.nix index c3c1da7c93e72a..758b3013718f3b 100644 --- a/pkgs/games/2048-cli/default.nix +++ b/pkgs/games/2048-cli/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://github.com/tiehuis/2048-cli"; description = "Game 2048 for your Linux terminal"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.AndersonTorres ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = [ maintainers.AndersonTorres ]; + platforms = platforms.unix; mainProgram = "2048"; }; }) diff --git a/pkgs/games/anki/sync-server.nix b/pkgs/games/anki/sync-server.nix index 730e92350592cf..c487a817ebc308 100644 --- a/pkgs/games/anki/sync-server.nix +++ b/pkgs/games/anki/sync-server.nix @@ -34,11 +34,11 @@ rustPlatform.buildRustPackage { env.PROTOC = lib.getExe buildPackages.protobuf; - meta = { + meta = with lib; { description = "Standalone official anki sync server"; homepage = "https://apps.ankiweb.net"; - license = with lib.licenses; [ agpl3Plus ]; - maintainers = with lib.maintainers; [ martinetd ]; + license = with licenses; [ agpl3Plus ]; + maintainers = with maintainers; [ martinetd ]; mainProgram = "anki-sync-server"; }; } diff --git a/pkgs/games/cockatrice/default.nix b/pkgs/games/cockatrice/default.nix index 5f06dea0df0242..efc40896b5696c 100644 --- a/pkgs/games/cockatrice/default.nix +++ b/pkgs/games/cockatrice/default.nix @@ -35,11 +35,11 @@ mkDerivation rec { wrapQtAppsHook ]; - meta = { + meta = with lib; { homepage = "https://github.com/Cockatrice/Cockatrice"; description = "Cross-platform virtual tabletop for multiplayer card games"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ evanjs ]; - platforms = with lib.platforms; linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ evanjs ]; + platforms = with platforms; linux; }; } diff --git a/pkgs/games/doom-ports/enyo-launcher/default.nix b/pkgs/games/doom-ports/enyo-launcher/default.nix index b8e38af270aa35..0b87b167e2946d 100644 --- a/pkgs/games/doom-ports/enyo-launcher/default.nix +++ b/pkgs/games/doom-ports/enyo-launcher/default.nix @@ -21,12 +21,12 @@ mkDerivation rec { buildInputs = [ qtbase ]; - meta = { + meta = with lib; { homepage = "https://gitlab.com/sdcofer70/enyo-launcher"; description = "Frontend for Doom engines"; mainProgram = "enyo-launcher"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.usrfriendly ]; + license = licenses.gpl3Plus; + platforms = platforms.unix; + maintainers = [ maintainers.usrfriendly ]; }; } diff --git a/pkgs/games/doom-ports/zandronum/sqlite.nix b/pkgs/games/doom-ports/zandronum/sqlite.nix index 6565ff2f542a6b..2cd31b54157de2 100644 --- a/pkgs/games/doom-ports/zandronum/sqlite.nix +++ b/pkgs/games/doom-ports/zandronum/sqlite.nix @@ -20,10 +20,10 @@ stdenv.mkDerivation { cp sqlite3ext.h $out/ ''; - meta = { + meta = with lib; { homepage = "http://www.sqlite.org/"; description = "Single C code file, named sqlite3.c, that contains all C code for the core SQLite library and the FTS3 and RTREE extensions"; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.lassulus ]; + platforms = platforms.unix; + maintainers = [ maintainers.lassulus ]; }; } diff --git a/pkgs/games/macopix/default.nix b/pkgs/games/macopix/default.nix index 8820137b5a2f9a..b67f2507562201 100644 --- a/pkgs/games/macopix/default.nix +++ b/pkgs/games/macopix/default.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = "-lX11"; - meta = { + meta = with lib; { description = "Mascot Constructive Pilot for X"; mainProgram = "macopix"; homepage = "http://rosegray.sakura.ne.jp/macopix/index-e.html"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/games/oilrush/default.nix b/pkgs/games/oilrush/default.nix index 080fd3053b1fb1..7d4ac948032a81 100644 --- a/pkgs/games/oilrush/default.nix +++ b/pkgs/games/oilrush/default.nix @@ -121,7 +121,7 @@ stdenv.mkDerivation { EOF chmod +x "$out/bin/oilrush" ''; - meta = { + meta = with lib; { description = "Naval strategy game"; longDescription = '' Oil Rush is a real-time naval strategy game based on group control. It @@ -129,11 +129,11 @@ stdenv.mkDerivation { of Tower Defense. ''; homepage = "http://oilrush-game.com/"; - license = lib.licenses.unfree; - #maintainers = with lib.maintainers; [ astsmtl ]; - platforms = lib.platforms.linux; + license = licenses.unfree; + #maintainers = with maintainers; [ astsmtl ]; + platforms = platforms.linux; hydraPlatforms = [ ]; - sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; }; } diff --git a/pkgs/games/openloco/default.nix b/pkgs/games/openloco/default.nix index 00c281ca463014..ba516b87e2cfb2 100644 --- a/pkgs/games/openloco/default.nix +++ b/pkgs/games/openloco/default.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation rec { fmt ]; - meta = { + meta = with lib; { description = "Open source re-implementation of Chris Sawyer's Locomotion"; homepage = "https://github.com/OpenLoco/OpenLoco"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ icewind1991 ]; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ icewind1991 ]; }; } diff --git a/pkgs/games/openxcom/default.nix b/pkgs/games/openxcom/default.nix index 920786ab93a45e..3f5410f1871bab 100644 --- a/pkgs/games/openxcom/default.nix +++ b/pkgs/games/openxcom/default.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation { zlib ]; - meta = { + meta = with lib; { description = "Open source clone of UFO: Enemy Unknown"; mainProgram = "openxcom"; homepage = "https://openxcom.org"; - license = lib.licenses.gpl3; + license = licenses.gpl3; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/games/papermc/derivation.nix b/pkgs/games/papermc/derivation.nix index 125052abc75425..286c988048a20e 100644 --- a/pkgs/games/papermc/derivation.nix +++ b/pkgs/games/papermc/derivation.nix @@ -48,13 +48,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { updateScript = ./update.py; }; - meta = { + meta = with lib; { description = "High-performance Minecraft Server"; homepage = "https://papermc.io/"; - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - license = lib.licenses.gpl3Only; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + license = licenses.gpl3Only; + platforms = platforms.unix; + maintainers = with maintainers; [ aaronjanse neonfuz MayNiklas diff --git a/pkgs/games/speed-dreams/default.nix b/pkgs/games/speed-dreams/default.nix index 520439b2321b0a..d794e0c5fa5985 100644 --- a/pkgs/games/speed-dreams/default.nix +++ b/pkgs/games/speed-dreams/default.nix @@ -146,12 +146,12 @@ stdenv.mkDerivation rec { curl ]; - meta = { + meta = with lib; { description = "Car racing game - TORCS fork with more experimental approach"; homepage = "https://speed-dreams.sourceforge.net/"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ raskin ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ raskin ]; + platforms = platforms.linux; hydraPlatforms = [ ]; }; } diff --git a/pkgs/games/xpilot/bloodspilot-client.nix b/pkgs/games/xpilot/bloodspilot-client.nix index 96e4b0d8a73b15..a32ee1b39c5076 100644 --- a/pkgs/games/xpilot/bloodspilot-client.nix +++ b/pkgs/games/xpilot/bloodspilot-client.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = "-lX11"; - meta = { + meta = with lib; { description = "Multiplayer space combat game (client part)"; mainProgram = "bloodspilot-client-sdl"; homepage = "http://bloodspilot.sf.net/"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; }; } diff --git a/pkgs/kde/third-party/karousel/default.nix b/pkgs/kde/third-party/karousel/default.nix index d197dbcf5a609f..76b0ec2015fc5a 100644 --- a/pkgs/kde/third-party/karousel/default.nix +++ b/pkgs/kde/third-party/karousel/default.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Scrollable tiling Kwin script"; homepage = "https://github.com/peterfajdiga/karousel"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ k900 ]; - platforms = lib.platforms.all; + license = licenses.gpl3Only; + maintainers = with maintainers; [ k900 ]; + platforms = platforms.all; }; }) diff --git a/pkgs/kde/third-party/krohnkite/default.nix b/pkgs/kde/third-party/krohnkite/default.nix index 75c3b01995a874..90b086b111cb97 100644 --- a/pkgs/kde/third-party/krohnkite/default.nix +++ b/pkgs/kde/third-party/krohnkite/default.nix @@ -46,11 +46,11 @@ buildNpmPackage rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Dynamic Tiling Extension for KWin 6"; homepage = "https://github.com/anametologin/krohnkite"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ben9986 ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ ben9986 ]; + platforms = platforms.all; }; } diff --git a/pkgs/kde/third-party/kzones/default.nix b/pkgs/kde/third-party/kzones/default.nix index de2ff39b311b65..873aeb306e5cae 100644 --- a/pkgs/kde/third-party/kzones/default.nix +++ b/pkgs/kde/third-party/kzones/default.nix @@ -35,11 +35,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "KDE KWin Script for snapping windows into zones"; homepage = "https://github.com/gerritdevriese/kzones/"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ k900 ]; - platforms = lib.platforms.all; + license = licenses.gpl3Only; + maintainers = with maintainers; [ k900 ]; + platforms = platforms.all; }; }) diff --git a/pkgs/misc/cups/drivers/brgenml1lpr/default.nix b/pkgs/misc/cups/drivers/brgenml1lpr/default.nix index c0dc26a5dfdc67..804f840a8f18ad 100644 --- a/pkgs/misc/cups/drivers/brgenml1lpr/default.nix +++ b/pkgs/misc/cups/drivers/brgenml1lpr/default.nix @@ -98,12 +98,12 @@ stdenv.mkDerivation rec { dontPatchELF = true; - meta = { + meta = with lib; { description = "Brother BrGenML1 LPR driver"; homepage = "http://www.brother.com"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - platforms = lib.platforms.linux; - license = lib.licenses.unfreeRedistributable; - maintainers = with lib.maintainers; [ jraygauthier ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + platforms = platforms.linux; + license = licenses.unfreeRedistributable; + maintainers = with maintainers; [ jraygauthier ]; }; } diff --git a/pkgs/misc/cups/drivers/hl1110/default.nix b/pkgs/misc/cups/drivers/hl1110/default.nix index 9900ad49817158..a2260b99f12ca7 100644 --- a/pkgs/misc/cups/drivers/hl1110/default.nix +++ b/pkgs/misc/cups/drivers/hl1110/default.nix @@ -106,12 +106,12 @@ stdenv.mkDerivation { ''; - meta = { + meta = with lib; { homepage = "http://www.brother.com/"; description = "Brother HL1110 printer driver"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - platforms = lib.platforms.linux; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + platforms = platforms.linux; downloadPage = "http://support.brother.com/g/b/downloadlist.aspx?c=eu_ot&lang=en&prod=hl1110_us_eu_as&os=128#SelectLanguageType-561_0_1"; }; } diff --git a/pkgs/misc/cups/drivers/hl1210w/default.nix b/pkgs/misc/cups/drivers/hl1210w/default.nix index 9dbe1ffe56a7d5..b6291270c974e3 100644 --- a/pkgs/misc/cups/drivers/hl1210w/default.nix +++ b/pkgs/misc/cups/drivers/hl1210w/default.nix @@ -95,12 +95,12 @@ stdenv.mkDerivation { } ''; - meta = { + meta = with lib; { homepage = "http://www.brother.com/"; description = "Brother HL1210W printer driver"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - platforms = lib.platforms.linux; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + platforms = platforms.linux; downloadPage = "https://support.brother.com/g/b/downloadlist.aspx?c=nz&lang=en&prod=hl1210w_eu_as&os=128"; }; } diff --git a/pkgs/misc/cups/drivers/hl3140cw/default.nix b/pkgs/misc/cups/drivers/hl3140cw/default.nix index 01bf330149df2f..dcd9b46ef0c9ce 100644 --- a/pkgs/misc/cups/drivers/hl3140cw/default.nix +++ b/pkgs/misc/cups/drivers/hl3140cw/default.nix @@ -109,12 +109,12 @@ stdenv.mkDerivation { } ''; - meta = { + meta = with lib; { homepage = "http://www.brother.com/"; description = "Brother hl3140cw printer driver"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - platforms = lib.platforms.linux; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + platforms = platforms.linux; downloadPage = "https://support.brother.com/g/b/downloadlist.aspx?c=eu_ot&lang=en&prod=hl3140cw_us_eu&os=128"; }; } diff --git a/pkgs/misc/cups/drivers/mfcj470dwlpr/default.nix b/pkgs/misc/cups/drivers/mfcj470dwlpr/default.nix index b865e9adb2c1eb..285e1a6a292972 100644 --- a/pkgs/misc/cups/drivers/mfcj470dwlpr/default.nix +++ b/pkgs/misc/cups/drivers/mfcj470dwlpr/default.nix @@ -66,13 +66,13 @@ stdenv.mkDerivation rec { } ''; - meta = { + meta = with lib; { homepage = "http://www.brother.com/"; description = "Brother MFC-J470DW LPR driver"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - platforms = lib.platforms.linux; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + platforms = platforms.linux; downloadPage = "http://support.brother.com/g/b/downloadlist.aspx?c=us&lang=en&prod=mfcj470dw_us_eu_as&os=128"; - maintainers = [ lib.maintainers.yochai ]; + maintainers = [ maintainers.yochai ]; }; } diff --git a/pkgs/misc/cups/drivers/mfcl2700dnlpr/default.nix b/pkgs/misc/cups/drivers/mfcl2700dnlpr/default.nix index 2370ec711f3595..6f61f6403e604c 100644 --- a/pkgs/misc/cups/drivers/mfcl2700dnlpr/default.nix +++ b/pkgs/misc/cups/drivers/mfcl2700dnlpr/default.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { patchelf --set-interpreter "$interpreter" $dir/lpd/rawtobr3 ''; - meta = { + meta = with lib; { description = "Brother MFC-L2700DN LPR driver"; homepage = "http://www.brother.com/"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - maintainers = [ lib.maintainers.tv ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + maintainers = [ maintainers.tv ]; platforms = [ "i686-linux" ]; }; } diff --git a/pkgs/misc/cups/filters.nix b/pkgs/misc/cups/filters.nix index 86792c45624415..230e8ebe3359cc 100644 --- a/pkgs/misc/cups/filters.nix +++ b/pkgs/misc/cups/filters.nix @@ -115,11 +115,11 @@ enableParallelBuilding = true; doCheck = true; - meta = { + meta = with lib; { homepage = "http://www.linuxfoundation.org/collaborate/workgroups/openprinting/cups-filters"; description = "Backends, filters, and other software that was once part of the core CUPS distribution but is no longer maintained by Apple Inc"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } ) diff --git a/pkgs/misc/documentation-highlighter/default.nix b/pkgs/misc/documentation-highlighter/default.nix index fb9ddb8589f371..6ba4694024df7c 100644 --- a/pkgs/misc/documentation-highlighter/default.nix +++ b/pkgs/misc/documentation-highlighter/default.nix @@ -1,12 +1,12 @@ { lib, runCommand }: runCommand "documentation-highlighter" { - meta = { + meta = with lib; { description = "Highlight.js sources for the Nix Ecosystem's documentation"; homepage = "https://highlightjs.org"; - license = lib.licenses.bsd3; - platforms = lib.platforms.all; - maintainers = [ lib.maintainers.grahamc ]; + license = licenses.bsd3; + platforms = platforms.all; + maintainers = [ maintainers.grahamc ]; }; src = lib.sources.cleanSourceWith { src = ./.; diff --git a/pkgs/misc/gnuk/default.nix b/pkgs/misc/gnuk/default.nix index 98eb9c12aef083..83bb8f3c34ba8c 100644 --- a/pkgs/misc/gnuk/default.nix +++ b/pkgs/misc/gnuk/default.nix @@ -62,11 +62,11 @@ stdenv.mkDerivation (finalAttrs: { chmod +x $out/bin/{unlock,flash} ''; - meta = { + meta = with lib; { homepage = "https://www.fsij.org/category/gnuk.html"; description = "Implementation of USB cryptographic token for gpg"; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; + license = licenses.gpl3; + platforms = platforms.linux; maintainers = [ ]; broken = true; # Needs Picolib, which is not packaged in Nixpkgs. }; diff --git a/pkgs/os-specific/bsd/freebsd/pkgs/drm-kmod/package.nix b/pkgs/os-specific/bsd/freebsd/pkgs/drm-kmod/package.nix index c604ee57362888..306df4a9c664ed 100644 --- a/pkgs/os-specific/bsd/freebsd/pkgs/drm-kmod/package.nix +++ b/pkgs/os-specific/bsd/freebsd/pkgs/drm-kmod/package.nix @@ -45,10 +45,10 @@ mkDerivation { KMODDIR = "${builtins.placeholder "out"}/kernel"; - meta = { + meta = with lib; { description = "Linux drm driver, ported to FreeBSD"; - platforms = lib.platforms.freebsd; - license = with lib.licenses; [ + platforms = platforms.freebsd; + license = with licenses; [ bsd2 gpl2Only ]; diff --git a/pkgs/os-specific/bsd/freebsd/pkgs/libzfs.nix b/pkgs/os-specific/bsd/freebsd/pkgs/libzfs.nix index fcb4b29dc14d61..2ddaa0412fbb25 100644 --- a/pkgs/os-specific/bsd/freebsd/pkgs/libzfs.nix +++ b/pkgs/os-specific/bsd/freebsd/pkgs/libzfs.nix @@ -78,8 +78,8 @@ mkDerivation { "debug" ]; - meta = { - platforms = lib.platforms.freebsd; - license = with lib.licenses; [ cddl ]; + meta = with lib; { + platforms = platforms.freebsd; + license = with licenses; [ cddl ]; }; } diff --git a/pkgs/os-specific/bsd/freebsd/pkgs/syslogd.nix b/pkgs/os-specific/bsd/freebsd/pkgs/syslogd.nix index 33b7acdf9800c7..7a315a13d4ea29 100644 --- a/pkgs/os-specific/bsd/freebsd/pkgs/syslogd.nix +++ b/pkgs/os-specific/bsd/freebsd/pkgs/syslogd.nix @@ -14,10 +14,10 @@ mkDerivation { MK_TESTS = "no"; - meta = { + meta = with lib; { description = "FreeBSD syslog daemon"; - maintainers = with lib.maintainers; [ artemist ]; - platforms = lib.platforms.freebsd; - license = lib.licenses.bsd2; + maintainers = with maintainers; [ artemist ]; + platforms = platforms.freebsd; + license = licenses.bsd2; }; } diff --git a/pkgs/os-specific/bsd/freebsd/pkgs/zfs.nix b/pkgs/os-specific/bsd/freebsd/pkgs/zfs.nix index 505fa37fe2d7b9..1037ceb0130daf 100644 --- a/pkgs/os-specific/bsd/freebsd/pkgs/zfs.nix +++ b/pkgs/os-specific/bsd/freebsd/pkgs/zfs.nix @@ -39,9 +39,9 @@ mkDerivation { "debug" ]; - meta = { - platforms = lib.platforms.freebsd; - license = with lib.licenses; [ + meta = with lib; { + platforms = platforms.freebsd; + license = with licenses; [ cddl bsd2 ]; diff --git a/pkgs/os-specific/darwin/DarwinTools/default.nix b/pkgs/os-specific/darwin/DarwinTools/default.nix index 1473a664574a09..e688f2dcaa612e 100644 --- a/pkgs/os-specific/darwin/DarwinTools/default.nix +++ b/pkgs/os-specific/darwin/DarwinTools/default.nix @@ -33,8 +33,8 @@ stdenv.mkDerivation rec { rmdir $out/usr ''; - meta = { - maintainers = [ lib.maintainers.matthewbauer ]; - platforms = lib.platforms.darwin; + meta = with lib; { + maintainers = [ maintainers.matthewbauer ]; + platforms = platforms.darwin; }; } diff --git a/pkgs/os-specific/darwin/apple-source-releases/ICU/package.nix b/pkgs/os-specific/darwin/apple-source-releases/ICU/package.nix index 937f5a5a14ca16..ba03de472fcf54 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/ICU/package.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/ICU/package.nix @@ -65,11 +65,11 @@ let passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; passthru.buildRootOnly = mkWithAttrs buildRootOnlyAttrs; - meta = { + meta = with lib; { description = "Unicode and globalization support library with Apple customizations"; - license = [ lib.licenses.icu ]; - maintainers = lib.teams.darwin.members; - platforms = lib.platforms.darwin; + license = [ licenses.icu ]; + maintainers = teams.darwin.members; + platforms = platforms.darwin; pkgConfigModules = [ "icu-i18n" "icu-io" diff --git a/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/package.nix b/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/package.nix index f994ab88d02907..b5ef707fb8354c 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/package.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/package.nix @@ -76,11 +76,11 @@ mkAppleDerivation { ln -s "$ps/bin/ps" "$out/bin/ps" ''; - meta = { + meta = with lib; { description = "Advanced commands package for Darwin"; license = [ - lib.licenses.apsl10 - lib.licenses.apsl20 + licenses.apsl10 + licenses.apsl20 ]; }; } diff --git a/pkgs/os-specific/darwin/apple-source-releases/basic_cmds/package.nix b/pkgs/os-specific/darwin/apple-source-releases/basic_cmds/package.nix index df11030e7f896a..984f0a6d5b437a 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/basic_cmds/package.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/basic_cmds/package.nix @@ -10,11 +10,11 @@ mkAppleDerivation { xcodeHash = "sha256-gT7kP/w23d5kGKgNPYS9ydCbeVaLwriMJj0BPIHgQ4U="; - meta = { + meta = with lib; { description = "Basic commands for Darwin"; license = [ - lib.licenses.isc - lib.licenses.bsd3 + licenses.isc + licenses.bsd3 ]; }; } diff --git a/pkgs/os-specific/darwin/apple-source-releases/developer_cmds/package.nix b/pkgs/os-specific/darwin/apple-source-releases/developer_cmds/package.nix index adb16f58652cae..27cdce50b2d8f6 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/developer_cmds/package.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/developer_cmds/package.nix @@ -25,11 +25,11 @@ mkAppleDerivation { HOST_PATH='${lib.getBin shell_cmds}/bin' patchShebangs --host "$out/bin" ''; - meta = { + meta = with lib; { description = "Developer commands for Darwin"; license = [ - lib.licenses.bsd3 - lib.licenses.bsdOriginal + licenses.bsd3 + licenses.bsdOriginal ]; }; } diff --git a/pkgs/os-specific/darwin/apple-source-releases/doc_cmds/package.nix b/pkgs/os-specific/darwin/apple-source-releases/doc_cmds/package.nix index ec022deebdf203..927c3e242a58fc 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/doc_cmds/package.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/doc_cmds/package.nix @@ -23,11 +23,11 @@ mkAppleDerivation { HOST_PATH='${lib.getBin shell_cmds}/bin' patchShebangs --host "$out/libexec" ''; - meta = { + meta = with lib; { description = "makewhatis commands for Darwin"; license = [ - lib.licenses.bsd2 - lib.licenses.bsd3 + licenses.bsd2 + licenses.bsd3 ]; }; } diff --git a/pkgs/os-specific/darwin/apple-source-releases/libsbuf/package.nix b/pkgs/os-specific/darwin/apple-source-releases/libsbuf/package.nix index 57467f65775557..9f02cc03694c84 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/libsbuf/package.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/libsbuf/package.nix @@ -74,12 +74,12 @@ bootstrapStdenv.mkDerivation (finalAttrs: { __structuredAttrs = true; - meta = { + meta = with lib; { description = "Safely compose and manipulate strings in C"; homepage = "https://www.freebsd.org"; license = [ - lib.licenses.bsd2 - lib.licenses.bsd3 + licenses.bsd2 + licenses.bsd3 ]; }; }) diff --git a/pkgs/os-specific/darwin/apple-source-releases/locale/package.nix b/pkgs/os-specific/darwin/apple-source-releases/locale/package.nix index e9b58462f2c8d1..6a1d932314239c 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/locale/package.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/locale/package.nix @@ -52,12 +52,12 @@ stdenvNoCC.mkDerivation { installFlags = [ "DESTDIR=${placeholder "out"}" ]; - meta = { + meta = with lib; { description = "Locale data for Darwin"; license = [ - lib.licenses.apsl10 - lib.licenses.apsl20 + licenses.apsl10 + licenses.apsl20 ]; - maintainers = lib.teams.darwin.members; + maintainers = teams.darwin.members; }; } diff --git a/pkgs/os-specific/darwin/apple-source-releases/patch_cmds/package.nix b/pkgs/os-specific/darwin/apple-source-releases/patch_cmds/package.nix index 86eaba2136e537..3a03d7b1f0418e 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/patch_cmds/package.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/patch_cmds/package.nix @@ -20,13 +20,13 @@ mkAppleDerivation { buildInputs = [ libutil ]; - meta = { + meta = with lib; { description = "BSD patch commands for Darwin"; license = [ - lib.licenses.apple-psl10 - lib.licenses.bsd2 # -freebsd - lib.licenses.bsd3 - lib.licenses.bsdOriginal + licenses.apple-psl10 + licenses.bsd2 # -freebsd + licenses.bsd3 + licenses.bsdOriginal ]; }; } diff --git a/pkgs/os-specific/darwin/apple-source-releases/shell_cmds/package.nix b/pkgs/os-specific/darwin/apple-source-releases/shell_cmds/package.nix index 9d8cd9be2e5301..b664bb05691c93 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/shell_cmds/package.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/shell_cmds/package.nix @@ -62,11 +62,11 @@ mkAppleDerivation { HOST_PATH="$out/bin" patchShebangs --host "$out/bin" "$out/libexec" ''; - meta = { + meta = with lib; { description = "Darwin shell commands and the Almquist shell"; license = [ - lib.licenses.bsd2 - lib.licenses.bsd3 + licenses.bsd2 + licenses.bsd3 ]; }; } diff --git a/pkgs/os-specific/darwin/libunwind/default.nix b/pkgs/os-specific/darwin/libunwind/default.nix index a19bfc6864e3c0..8b36f0d9ebe1d2 100644 --- a/pkgs/os-specific/darwin/libunwind/default.nix +++ b/pkgs/os-specific/darwin/libunwind/default.nix @@ -19,10 +19,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { EOF ''; - meta = { + meta = with lib; { description = "Compatibility package for libunwind on Darwin"; - maintainers = lib.teams.darwin.members; - platforms = lib.platforms.darwin; + maintainers = teams.darwin.members; + platforms = platforms.darwin; pkgConfigModules = [ "libunwind" ]; }; }) diff --git a/pkgs/os-specific/darwin/lsusb/default.nix b/pkgs/os-specific/darwin/lsusb/default.nix index a29df822daa69a..063af9c60b3222 100644 --- a/pkgs/os-specific/darwin/lsusb/default.nix +++ b/pkgs/os-specific/darwin/lsusb/default.nix @@ -22,11 +22,11 @@ stdenv.mkDerivation { install -m 0444 man/lsusb.8 $out/share/man/man8 ''; - meta = { + meta = with lib; { homepage = "https://github.com/jlhonora/lsusb"; description = "lsusb command for Mac OS X"; - platforms = lib.platforms.darwin; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.varunpatro ]; + platforms = platforms.darwin; + license = licenses.mit; + maintainers = [ maintainers.varunpatro ]; }; } diff --git a/pkgs/os-specific/darwin/trash/default.nix b/pkgs/os-specific/darwin/trash/default.nix index d3bfcf6420d1c4..68003295ed882f 100644 --- a/pkgs/os-specific/darwin/trash/default.nix +++ b/pkgs/os-specific/darwin/trash/default.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation rec { install -m 0444 trash.1 $out/share/man/man1 ''; - meta = { + meta = with lib; { homepage = "https://github.com/ali-rantakari/trash"; description = "Small command-line program for OS X that moves files or folders to the trash."; - platforms = lib.platforms.darwin; - license = lib.licenses.mit; + platforms = platforms.darwin; + license = licenses.mit; }; } diff --git a/pkgs/os-specific/linux/amneziawg/default.nix b/pkgs/os-specific/linux/amneziawg/default.nix index f0e76f7f58b09a..cf2aae83e60c94 100644 --- a/pkgs/os-specific/linux/amneziawg/default.nix +++ b/pkgs/os-specific/linux/amneziawg/default.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation (finalAttrs: { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { description = "Kernel module for the AmneziaWG"; homepage = "https://amnezia.org"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ averyanalex ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + maintainers = with maintainers; [ averyanalex ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/os-specific/linux/batman-adv/alfred.nix b/pkgs/os-specific/linux/batman-adv/alfred.nix index 925ff2bb169aaf..d4c755a9bba4fc 100644 --- a/pkgs/os-specific/linux/batman-adv/alfred.nix +++ b/pkgs/os-specific/linux/batman-adv/alfred.nix @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { makeFlags="PREFIX=$out" ''; - meta = { + meta = with lib; { homepage = "https://www.open-mesh.org/projects/batman-adv/wiki/Wiki"; description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2, information distribution tool"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ fpletz ]; - platforms = with lib.platforms; linux; + license = licenses.gpl2Only; + maintainers = with maintainers; [ fpletz ]; + platforms = with platforms; linux; }; } diff --git a/pkgs/os-specific/linux/batman-adv/batctl.nix b/pkgs/os-specific/linux/batman-adv/batctl.nix index f01508ac7572ae..a0af42db9a5881 100644 --- a/pkgs/os-specific/linux/batman-adv/batctl.nix +++ b/pkgs/os-specific/linux/batman-adv/batctl.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { makeFlags="PREFIX=$out" ''; - meta = { + meta = with lib; { homepage = "https://www.open-mesh.org/projects/batman-adv/wiki/Wiki"; description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2, control tool"; mainProgram = "batctl"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ fpletz ]; - platforms = with lib.platforms; linux; + license = licenses.gpl2Only; + maintainers = with maintainers; [ fpletz ]; + platforms = with platforms; linux; }; } diff --git a/pkgs/os-specific/linux/batman-adv/default.nix b/pkgs/os-specific/linux/batman-adv/default.nix index d9a7890ae98a4f..ceff9b260765fb 100644 --- a/pkgs/os-specific/linux/batman-adv/default.nix +++ b/pkgs/os-specific/linux/batman-adv/default.nix @@ -30,14 +30,14 @@ stdenv.mkDerivation rec { -e /depmod/d Makefile ''; - meta = { + meta = with lib; { homepage = "https://www.open-mesh.org/projects/batman-adv/wiki/Wiki"; description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Only; + maintainers = with maintainers; [ fpletz philiptaron ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/os-specific/linux/broadcom-sta/default.nix b/pkgs/os-specific/linux/broadcom-sta/default.nix index 9d310b02e17954..3d93fe495467c4 100644 --- a/pkgs/os-specific/linux/broadcom-sta/default.nix +++ b/pkgs/os-specific/linux/broadcom-sta/default.nix @@ -95,11 +95,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Kernel module driver for some Broadcom's wireless cards"; homepage = "http://www.broadcom.com/support/802.11/linux_sta.php"; - license = lib.licenses.unfreeRedistributable; + license = licenses.unfreeRedistributable; maintainers = [ ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/os-specific/linux/corefreq/default.nix b/pkgs/os-specific/linux/corefreq/default.nix index 406da48fc80608..8b41e47b2b935c 100644 --- a/pkgs/os-specific/linux/corefreq/default.nix +++ b/pkgs/os-specific/linux/corefreq/default.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with lib; { description = "CPU monitoring and tuning software designed for 64-bit processors"; homepage = "https://github.com/cyring/CoreFreq"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ mrene ]; + license = licenses.gpl2Only; + maintainers = with maintainers; [ mrene ]; mainProgram = "corefreq-cli"; platforms = [ "x86_64-linux" diff --git a/pkgs/os-specific/linux/cryptodev/default.nix b/pkgs/os-specific/linux/cryptodev/default.nix index ff1a4f88f0cc68..276894ab98ba41 100644 --- a/pkgs/os-specific/linux/cryptodev/default.nix +++ b/pkgs/os-specific/linux/cryptodev/default.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation (finalAttrs: { "prefix=$(out)" ]; - meta = { + meta = with lib; { description = "Device that allows access to Linux kernel cryptographic drivers"; homepage = "http://cryptodev-linux.org/"; - maintainers = with lib.maintainers; [ moni ]; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ moni ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; }) diff --git a/pkgs/os-specific/linux/dmraid/default.nix b/pkgs/os-specific/linux/dmraid/default.nix index 78ccf00831e495..6f4f6c99e6393e 100644 --- a/pkgs/os-specific/linux/dmraid/default.nix +++ b/pkgs/os-specific/linux/dmraid/default.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { # tools/dmraid.c:12:10: fatal error: dmraid/dmraid.h: No such file enableParallelBuilding = false; - meta = { + meta = with lib; { description = "Old-style RAID configuration utility"; longDescription = '' Old RAID configuration utility (still under development, though). @@ -60,8 +60,8 @@ stdenv.mkDerivation rec { its volumes. May be needed for rescuing an older system or nuking the metadata when reformatting. ''; - maintainers = [ lib.maintainers.raskin ]; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Plus; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/os-specific/linux/jool/cli.nix b/pkgs/os-specific/linux/jool/cli.nix index 222cff9700d440..9578429ca46271 100644 --- a/pkgs/os-specific/linux/jool/cli.nix +++ b/pkgs/os-specific/linux/jool/cli.nix @@ -48,11 +48,11 @@ stdenv.mkDerivation { inherit (nixosTests) jool; }; - meta = { + meta = with lib; { homepage = "https://www.jool.mx/"; description = "Fairly compliant SIIT and Stateful NAT64 for Linux - CLI tools"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ fpletz ]; + platforms = platforms.linux; + license = licenses.gpl2Only; + maintainers = with maintainers; [ fpletz ]; }; } diff --git a/pkgs/os-specific/linux/jool/default.nix b/pkgs/os-specific/linux/jool/default.nix index edbc3359386f97..2cb9b16282678e 100644 --- a/pkgs/os-specific/linux/jool/default.nix +++ b/pkgs/os-specific/linux/jool/default.nix @@ -33,11 +33,11 @@ stdenv.mkDerivation { inherit (nixosTests) jool; }; - meta = { + meta = with lib; { homepage = "https://www.jool.mx/"; description = "Fairly compliant SIIT and Stateful NAT64 for Linux - kernel modules"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ fpletz ]; + platforms = platforms.linux; + license = licenses.gpl2Only; + maintainers = with maintainers; [ fpletz ]; }; } diff --git a/pkgs/os-specific/linux/klibc/default.nix b/pkgs/os-specific/linux/klibc/default.nix index 34414fb9959401..669ed24cdf8772 100644 --- a/pkgs/os-specific/linux/klibc/default.nix +++ b/pkgs/os-specific/linux/klibc/default.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation rec { inherit (nixosTests) initrd-network-ssh; }; - meta = { + meta = with lib; { description = "Minimalistic libc subset for initramfs usage"; mainProgram = "klcc"; homepage = "https://kernel.org/pub/linux/libs/klibc/"; - maintainers = with lib.maintainers; [ fpletz ]; - license = lib.licenses.bsd3; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ fpletz ]; + license = licenses.bsd3; + platforms = platforms.linux; }; } diff --git a/pkgs/os-specific/linux/lenovo-legion/app.nix b/pkgs/os-specific/linux/lenovo-legion/app.nix index 22aaaab92b8f1d..26c1564f06f218 100644 --- a/pkgs/os-specific/linux/lenovo-legion/app.nix +++ b/pkgs/os-specific/linux/lenovo-legion/app.nix @@ -50,12 +50,12 @@ python3.pkgs.buildPythonApplication rec { makeWrapperArgs+=("''${qtWrapperArgs[@]}") ''; - meta = { + meta = with lib; { description = "Utility to control Lenovo Legion laptop"; homepage = "https://github.com/johnfanv2/LenovoLegionLinux"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = with maintainers; [ ulrikstrid realsnick chn diff --git a/pkgs/os-specific/linux/net-tools/default.nix b/pkgs/os-specific/linux/net-tools/default.nix index 4361f28f87d8d5..c070021d43717a 100644 --- a/pkgs/os-specific/linux/net-tools/default.nix +++ b/pkgs/os-specific/linux/net-tools/default.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { "HAVE_MII=1" ]; - meta = { + meta = with lib; { homepage = "http://net-tools.sourceforge.net/"; description = "Set of tools for controlling the network subsystem in Linux"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/os-specific/linux/netatop/default.nix b/pkgs/os-specific/linux/netatop/default.nix index 4b8cf9019efac1..c1422e64839852 100644 --- a/pkgs/os-specific/linux/netatop/default.nix +++ b/pkgs/os-specific/linux/netatop/default.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation { mkdir -p $out/lib/modules/${kernel.modDirVersion}/extra ''; - meta = { + meta = with lib; { description = "Network monitoring module for atop"; mainProgram = "netatopd"; homepage = "https://www.atoptool.nl/downloadnetatop.php"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + platforms = platforms.linux; maintainers = [ ]; }; } diff --git a/pkgs/os-specific/linux/nixos-rebuild/default.nix b/pkgs/os-specific/linux/nixos-rebuild/default.nix index 8e8f7f44b1034e..1dbcb5176af63b 100644 --- a/pkgs/os-specific/linux/nixos-rebuild/default.nix +++ b/pkgs/os-specific/linux/nixos-rebuild/default.nix @@ -77,11 +77,11 @@ substitute { execer cannot bin/nixos-rebuild ''; - meta = { + meta = with lib; { description = "Rebuild your NixOS configuration and switch to it, on local hosts and remote"; homepage = "https://github.com/NixOS/nixpkgs/tree/master/pkgs/os-specific/linux/nixos-rebuild"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ Profpatsch thiagokokada ]; diff --git a/pkgs/os-specific/linux/projecteur/default.nix b/pkgs/os-specific/linux/projecteur/default.nix index fc74771d74d629..757af60eceab27 100644 --- a/pkgs/os-specific/linux/projecteur/default.nix +++ b/pkgs/os-specific/linux/projecteur/default.nix @@ -42,15 +42,15 @@ mkDerivation rec { "-DCMAKE_INSTALL_UDEVRULESDIR=${placeholder "out"}/lib/udev/rules.d" ]; - meta = { + meta = with lib; { description = "Linux/X11 application for the Logitech Spotlight device (and similar devices)"; homepage = "https://github.com/jahnf/Projecteur"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "projecteur"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ benneti drupol ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/os-specific/linux/rtl8723ds/default.nix b/pkgs/os-specific/linux/rtl8723ds/default.nix index bc7b9e51a7542d..a3978e87fb2208 100644 --- a/pkgs/os-specific/linux/rtl8723ds/default.nix +++ b/pkgs/os-specific/linux/rtl8723ds/default.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = { + meta = with lib; { description = "Linux driver for RTL8723DS"; homepage = "https://github.com/lwfinger/rtl8723ds"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ chuangzhu ]; + license = licenses.gpl2Only; + platforms = platforms.linux; + maintainers = with maintainers; [ chuangzhu ]; }; } diff --git a/pkgs/os-specific/linux/sgx/psw/default.nix b/pkgs/os-specific/linux/sgx/psw/default.nix index 2b3e97604f9733..43ebaeb08fddd2 100644 --- a/pkgs/os-specific/linux/sgx/psw/default.nix +++ b/pkgs/os-specific/linux/sgx/psw/default.nix @@ -261,15 +261,15 @@ stdenv.mkDerivation rec { service = nixosTests.aesmd; }; - meta = { + meta = with lib; { description = "Intel SGX Architectural Enclave Service Manager"; homepage = "https://github.com/intel/linux-sgx"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ phlip9 veehaitch citadelcore ]; platforms = [ "x86_64-linux" ]; - license = [ lib.licenses.bsd3 ]; + license = [ licenses.bsd3 ]; }; } diff --git a/pkgs/os-specific/linux/sgx/sdk/default.nix b/pkgs/os-specific/linux/sgx/sdk/default.nix index 5e9b99af143f15..3b7f7e4c46277d 100644 --- a/pkgs/os-specific/linux/sgx/sdk/default.nix +++ b/pkgs/os-specific/linux/sgx/sdk/default.nix @@ -291,16 +291,16 @@ stdenv.mkDerivation rec { ''; }; - meta = { + meta = with lib; { description = "Intel SGX SDK for Linux built with IPP Crypto Library"; homepage = "https://github.com/intel/linux-sgx"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ phlip9 sbellem arturcygan veehaitch ]; platforms = [ "x86_64-linux" ]; - license = [ lib.licenses.bsd3 ]; + license = [ licenses.bsd3 ]; }; } diff --git a/pkgs/os-specific/linux/tsme-test/default.nix b/pkgs/os-specific/linux/tsme-test/default.nix index fc35b49106cc34..35d9d8c4f6bd49 100644 --- a/pkgs/os-specific/linux/tsme-test/default.nix +++ b/pkgs/os-specific/linux/tsme-test/default.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = { + meta = with lib; { description = "Kernel driver to test the status of AMD TSME (Transparent Secure Memory Encryption)"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ lyn ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + maintainers = with maintainers; [ lyn ]; + platforms = platforms.linux; homepage = "https://github.com/AMDESE/mem-encryption-tests"; }; } diff --git a/pkgs/os-specific/linux/universal-pidff/default.nix b/pkgs/os-specific/linux/universal-pidff/default.nix index 01ac035282b5e7..35512f53c284ca 100644 --- a/pkgs/os-specific/linux/universal-pidff/default.nix +++ b/pkgs/os-specific/linux/universal-pidff/default.nix @@ -33,14 +33,14 @@ stdenv.mkDerivation rec { ]; installTargets = [ "install" ]; - meta = { + meta = with lib; { description = "PIDFF driver with useful patches for initialization of FFB devices"; homepage = "https://github.com/JacKeTUs/universal-pidff"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ + license = licenses.gpl2Plus; + maintainers = with maintainers; [ computerdane racci ]; - platforms = lib.platforms.linux; + platforms = platforms.linux; }; } diff --git a/pkgs/os-specific/linux/yt6801/default.nix b/pkgs/os-specific/linux/yt6801/default.nix index 781c81a7d2cede..0273948dbf7984 100644 --- a/pkgs/os-specific/linux/yt6801/default.nix +++ b/pkgs/os-specific/linux/yt6801/default.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation (finalAttrs: { "ko_full=${modDestDir}/yt6801.ko.xz" ]; - meta = { + meta = with lib; { homepage = "https://www.motor-comm.com/product/ethernet-control-chip"; description = "YT6801 Gigabit PCIe Ethernet controller chip"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ indexyz ]; - platforms = lib.platforms.linux; - sourceProvenance = with lib.sourceTypes; [ fromSource ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ indexyz ]; + platforms = platforms.linux; + sourceProvenance = with sourceTypes; [ fromSource ]; }; }) diff --git a/pkgs/os-specific/windows/mcfgthreads/default.nix b/pkgs/os-specific/windows/mcfgthreads/default.nix index 11ec8db387973c..0e6b58734356c5 100644 --- a/pkgs/os-specific/windows/mcfgthreads/default.nix +++ b/pkgs/os-specific/windows/mcfgthreads/default.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { ninja ]; - meta = { + meta = with lib; { description = "Threading support library for Windows 7 and above"; homepage = "https://github.com/lhmouse/mcfgthread/wiki"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ wegank ]; - platforms = lib.platforms.windows; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ wegank ]; + platforms = platforms.windows; }; } diff --git a/pkgs/os-specific/windows/npiperelay/default.nix b/pkgs/os-specific/windows/npiperelay/default.nix index a0c22a8552c59f..1e687ea151d371 100644 --- a/pkgs/os-specific/windows/npiperelay/default.nix +++ b/pkgs/os-specific/windows/npiperelay/default.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = null; - meta = { + meta = with lib; { description = "Access Windows named pipes from WSL"; homepage = "https://github.com/jstarks/npiperelay"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.shlevy ]; - platforms = lib.platforms.windows; + license = licenses.mit; + maintainers = [ maintainers.shlevy ]; + platforms = platforms.windows; }; } diff --git a/pkgs/servers/akkoma/admin-fe/default.nix b/pkgs/servers/akkoma/admin-fe/default.nix index 014ac75f5484ad..f27a5787561cdd 100644 --- a/pkgs/servers/akkoma/admin-fe/default.nix +++ b/pkgs/servers/akkoma/admin-fe/default.nix @@ -79,10 +79,10 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Admin interface for Akkoma"; homepage = "https://akkoma.dev/AkkomaGang/akkoma-fe/"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ mvs ]; + license = licenses.agpl3Only; + maintainers = with maintainers; [ mvs ]; }; }) diff --git a/pkgs/servers/akkoma/akkoma-fe/default.nix b/pkgs/servers/akkoma/akkoma-fe/default.nix index 87367b999822aa..eeaf063452a0bf 100644 --- a/pkgs/servers/akkoma/akkoma-fe/default.nix +++ b/pkgs/servers/akkoma/akkoma-fe/default.nix @@ -81,10 +81,10 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Frontend for Akkoma"; homepage = "https://akkoma.dev/AkkomaGang/akkoma-fe/"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ mvs ]; + license = licenses.agpl3Only; + maintainers = with maintainers; [ mvs ]; }; }) diff --git a/pkgs/servers/dict/default.nix b/pkgs/servers/dict/default.nix index d3c74dfab9be6f..b5b419311b754a 100644 --- a/pkgs/servers/dict/default.nix +++ b/pkgs/servers/dict/default.nix @@ -47,11 +47,11 @@ stdenv.mkDerivation rec { install -Dm444 -t $out/share/doc/${pname} NEWS README ''; - meta = { + meta = with lib; { description = "Dict protocol server and client"; homepage = "http://www.dict.org"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ sikmir ]; - platforms = lib.platforms.unix; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ sikmir ]; + platforms = platforms.unix; }; } diff --git a/pkgs/servers/home-assistant/custom-components/bodymiscale/package.nix b/pkgs/servers/home-assistant/custom-components/bodymiscale/package.nix index ba19b714ae4c81..27ddd66f635947 100644 --- a/pkgs/servers/home-assistant/custom-components/bodymiscale/package.nix +++ b/pkgs/servers/home-assistant/custom-components/bodymiscale/package.nix @@ -26,10 +26,10 @@ buildHomeAssistantComponent rec { "cachetools" ]; - meta = { + meta = with lib; { description = "Home Assistant custom component providing body metrics for Xiaomi Mi Scale 1 and 2"; homepage = "https://github.com/dckiller51/bodymiscale"; - license = with lib.licenses; [ asl20 ]; - maintainers = with lib.maintainers; [ justinas ]; + license = with licenses; [ asl20 ]; + maintainers = with maintainers; [ justinas ]; }; } diff --git a/pkgs/servers/home-assistant/custom-components/calendar_export/package.nix b/pkgs/servers/home-assistant/custom-components/calendar_export/package.nix index b63dee9ad9980e..ac4c409a2b2230 100644 --- a/pkgs/servers/home-assistant/custom-components/calendar_export/package.nix +++ b/pkgs/servers/home-assistant/custom-components/calendar_export/package.nix @@ -21,10 +21,10 @@ buildHomeAssistantComponent rec { ignoreVersionRequirement = [ "icalendar" ]; - meta = { + meta = with lib; { description = "Export calendar events in the iCalendar format"; homepage = "https://github.com/JosephAbbey/ha_calendar_export"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ hexa ]; + license = licenses.mit; + maintainers = with maintainers; [ hexa ]; }; } diff --git a/pkgs/servers/home-assistant/custom-components/frigidaire/package.nix b/pkgs/servers/home-assistant/custom-components/frigidaire/package.nix index 8e74450717f858..744bdbbb7d9d2e 100644 --- a/pkgs/servers/home-assistant/custom-components/frigidaire/package.nix +++ b/pkgs/servers/home-assistant/custom-components/frigidaire/package.nix @@ -22,10 +22,10 @@ buildHomeAssistantComponent rec { # frigidaire dependency ignoreVersionRequirement = [ "frigidaire" ]; - meta = { + meta = with lib; { description = "Custom component for the Frigidaire integration"; homepage = "https://github.com/bm1549/home-assistant-frigidaire"; - maintainers = with lib.maintainers; [ nullcube ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ nullcube ]; + license = licenses.mit; }; } diff --git a/pkgs/servers/home-assistant/custom-components/philips_airpurifier_coap/package.nix b/pkgs/servers/home-assistant/custom-components/philips_airpurifier_coap/package.nix index f2cb6dd23e2960..b02870c5fd383e 100644 --- a/pkgs/servers/home-assistant/custom-components/philips_airpurifier_coap/package.nix +++ b/pkgs/servers/home-assistant/custom-components/philips_airpurifier_coap/package.nix @@ -28,10 +28,10 @@ buildHomeAssistantComponent rec { "getmac" ]; - meta = { + meta = with lib; { description = "Philips AirPurifier custom component for Home Assistant"; homepage = "https://github.com/kongo09/philips-airpurifier-coap"; - license = lib.licenses.unfree; # See https://github.com/kongo09/philips-airpurifier-coap/issues/209 - maintainers = with lib.maintainers; [ justinas ]; + license = licenses.unfree; # See https://github.com/kongo09/philips-airpurifier-coap/issues/209 + maintainers = with maintainers; [ justinas ]; }; } diff --git a/pkgs/servers/home-assistant/custom-components/volkswagencarnet/package.nix b/pkgs/servers/home-assistant/custom-components/volkswagencarnet/package.nix index d3971cddc9bc57..400a16e45a1b3f 100644 --- a/pkgs/servers/home-assistant/custom-components/volkswagencarnet/package.nix +++ b/pkgs/servers/home-assistant/custom-components/volkswagencarnet/package.nix @@ -29,10 +29,10 @@ buildHomeAssistantComponent rec { # https://github.com/robinostlund/homeassistant-volkswagencarnet/issues/651 doCheck = false; - meta = { + meta = with lib; { description = "Volkswagen Connect component for Home Assistant"; homepage = "https://github.com/robinostlund/homeassistant-volkswagencarnet"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ dotlambda ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/weather-card/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/weather-card/package.nix index 1ae70654dea4c9..e5a981b1e23371 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/weather-card/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/weather-card/package.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Weather Card with animated icons for Home Assistant Lovelace"; homepage = "https://github.com/bramkragten/weather-card"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ matthiasbeyer ]; - platforms = lib.platforms.all; + license = licenses.asl20; + maintainers = with maintainers; [ matthiasbeyer ]; + platforms = platforms.all; }; } diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/weather-chart-card/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/weather-chart-card/package.nix index 31f1d92f95410b..cc25dde7e9534b 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/weather-chart-card/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/weather-chart-card/package.nix @@ -31,11 +31,11 @@ buildNpmPackage rec { cp -R dist/* $out/ ''; - meta = { + meta = with lib; { description = "Custom weather card with charts"; homepage = "https://github.com/mlamberts78/weather-chart-card"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ hexa ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = with maintainers; [ hexa ]; + platforms = platforms.all; }; } diff --git a/pkgs/servers/http/angie/console-light.nix b/pkgs/servers/http/angie/console-light.nix index 1c7be0b681d506..4184b56893ca1d 100644 --- a/pkgs/servers/http/angie/console-light.nix +++ b/pkgs/servers/http/angie/console-light.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Console Light is a lightweight, real-time activity monitoring interface"; homepage = "https://angie.software/en/console/"; - license = lib.licenses.asl20; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ izorkin ]; + license = licenses.asl20; + platforms = platforms.all; + maintainers = with maintainers; [ izorkin ]; }; } diff --git a/pkgs/servers/http/angie/default.nix b/pkgs/servers/http/angie/default.nix index ed23cecaf332f7..e2abbc1f56ac74 100644 --- a/pkgs/servers/http/angie/default.nix +++ b/pkgs/servers/http/angie/default.nix @@ -42,11 +42,11 @@ callPackage ../nginx/generic.nix args rec { angie-http3 = nixosTests.nginx-http3.angieQuic; }; - meta = { + meta = with lib; { description = "Angie is an efficient, powerful, and scalable web server that was forked from nginx"; homepage = "https://angie.software/en/"; - license = lib.licenses.bsd2; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ izorkin ]; + license = licenses.bsd2; + platforms = platforms.all; + maintainers = with maintainers; [ izorkin ]; }; } diff --git a/pkgs/servers/http/apache-modules/mod_jk/default.nix b/pkgs/servers/http/apache-modules/mod_jk/default.nix index 041ed93c506ffd..8b89c53b1e0228 100644 --- a/pkgs/servers/http/apache-modules/mod_jk/default.nix +++ b/pkgs/servers/http/apache-modules/mod_jk/default.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Provides web server plugins to connect web servers with Tomcat"; homepage = "https://tomcat.apache.org/download-connectors.cgi"; changelog = "https://tomcat.apache.org/connectors-doc/miscellaneous/changelog.html"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ anthonyroussel ]; - platforms = lib.platforms.unix; + license = licenses.asl20; + maintainers = with maintainers; [ anthonyroussel ]; + platforms = platforms.unix; }; } diff --git a/pkgs/servers/http/apache-modules/mod_wsgi/default.nix b/pkgs/servers/http/apache-modules/mod_wsgi/default.nix index 83940d9e1fab29..b5ce0fc3c520f9 100644 --- a/pkgs/servers/http/apache-modules/mod_wsgi/default.nix +++ b/pkgs/servers/http/apache-modules/mod_wsgi/default.nix @@ -32,10 +32,10 @@ stdenv.mkDerivation rec { "LIBEXECDIR=$(out)/modules" ]; - meta = { + meta = with lib; { homepage = "https://github.com/GrahamDumpleton/mod_wsgi"; description = "Host Python applications in Apache through the WSGI interface"; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; + license = licenses.asl20; + platforms = platforms.unix; }; } diff --git a/pkgs/servers/http/openresty/default.nix b/pkgs/servers/http/openresty/default.nix index d40cb644cf4d28..3c77303df468c1 100644 --- a/pkgs/servers/http/openresty/default.nix +++ b/pkgs/servers/http/openresty/default.nix @@ -56,12 +56,12 @@ callPackage ../nginx/generic.nix args rec { inherit (nixosTests) openresty-lua; }; - meta = { + meta = with lib; { description = "Fast web application server built on Nginx"; homepage = "https://openresty.org"; - license = lib.licenses.bsd2; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ + license = licenses.bsd2; + platforms = platforms.all; + maintainers = with maintainers; [ thoughtpolice lblasc ]; diff --git a/pkgs/servers/mail/nullmailer/default.nix b/pkgs/servers/mail/nullmailer/default.nix index d91d8f4cb93098..8947b40cd43e87 100644 --- a/pkgs/servers/mail/nullmailer/default.nix +++ b/pkgs/servers/mail/nullmailer/default.nix @@ -44,14 +44,14 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "http://untroubled.org/nullmailer/"; description = '' A sendmail/qmail/etc replacement MTA for hosts which relay to a fixed set of smart relays. It is designed to be simple to configure, secure, and easily extendable. ''; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ sargon ]; + license = licenses.gpl2Plus; + platforms = platforms.all; + maintainers = with maintainers; [ sargon ]; }; } diff --git a/pkgs/servers/mail/postfix/pfixtools.nix b/pkgs/servers/mail/postfix/pfixtools.nix index 1733aadb6ec698..802fbdf8c94227 100644 --- a/pkgs/servers/mail/postfix/pfixtools.nix +++ b/pkgs/servers/mail/postfix/pfixtools.nix @@ -74,11 +74,11 @@ stdenv.mkDerivation { "prefix=" ]; - meta = { + meta = with lib; { description = "Collection of postfix-related tools"; - license = with lib.licenses; [ bsd3 ]; + license = with licenses; [ bsd3 ]; homepage = "https://github.com/Fruneau/pfixtools"; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ jerith666 ]; + platforms = platforms.linux; + maintainers = with maintainers; [ jerith666 ]; }; } diff --git a/pkgs/servers/mail/postfix/pflogsumm.nix b/pkgs/servers/mail/postfix/pflogsumm.nix index bc5624b52e831b..3417ae669f18c7 100644 --- a/pkgs/servers/mail/postfix/pflogsumm.nix +++ b/pkgs/servers/mail/postfix/pflogsumm.nix @@ -32,11 +32,11 @@ perlPackages.buildPerlPackage rec { mv "pflogsumm.1" "$out/share/man/man1" ''; - meta = { + meta = with lib; { homepage = "http://jimsun.linxnet.com/postfix_contrib.html"; - maintainers = with lib.maintainers; [ schneefux ]; + maintainers = with maintainers; [ schneefux ]; description = "Postfix activity overview"; mainProgram = "pflogsumm"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/servers/matrix-appservice-discord/default.nix b/pkgs/servers/matrix-appservice-discord/default.nix index dcd43ba0d8529b..253a46c9ad27aa 100644 --- a/pkgs/servers/matrix-appservice-discord/default.nix +++ b/pkgs/servers/matrix-appservice-discord/default.nix @@ -99,12 +99,12 @@ mkYarnPackage rec { updateScript = ./update.sh; }; - meta = { + meta = with lib; { description = "Bridge between Matrix and Discord"; homepage = "https://github.com/Half-Shot/matrix-appservice-discord"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ euxane ]; - platforms = lib.platforms.linux; + license = licenses.asl20; + maintainers = with maintainers; [ euxane ]; + platforms = platforms.linux; mainProgram = "matrix-appservice-discord"; }; } diff --git a/pkgs/servers/monitoring/icinga2/default.nix b/pkgs/servers/monitoring/icinga2/default.nix index c5646a7b5b8b32..471c3cee1a6cac 100644 --- a/pkgs/servers/monitoring/icinga2/default.nix +++ b/pkgs/servers/monitoring/icinga2/default.nix @@ -120,11 +120,11 @@ stdenv.mkDerivation rec { cp -r "${src}/tools/syntax/vim" $out/share/vim-plugins/icinga2 ''; - meta = { + meta = with lib; { description = "Open source monitoring system"; homepage = "https://www.icinga.com"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.linux; - maintainers = lib.teams.helsinki-systems.members; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = teams.helsinki-systems.members; }; } diff --git a/pkgs/servers/monitoring/nagios-plugins/check_openvpn/default.nix b/pkgs/servers/monitoring/nagios-plugins/check_openvpn/default.nix index 6fec9f0f0077d3..c551a48fab2421 100644 --- a/pkgs/servers/monitoring/nagios-plugins/check_openvpn/default.nix +++ b/pkgs/servers/monitoring/nagios-plugins/check_openvpn/default.nix @@ -18,10 +18,10 @@ python3Packages.buildPythonApplication rec { # no tests doCheck = false; - meta = { + meta = with lib; { description = "Nagios/icinga/sensu check plugin for OpenVPN"; - license = lib.licenses.mit; + license = licenses.mit; mainProgram = "check_openvpn"; - maintainers = with lib.maintainers; [ peterhoeg ]; + maintainers = with maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/servers/monitoring/nagios-plugins/check_smartmon/default.nix b/pkgs/servers/monitoring/nagios-plugins/check_smartmon/default.nix index b55c6a2d681cea..82ed95f47e5b60 100644 --- a/pkgs/servers/monitoring/nagios-plugins/check_smartmon/default.nix +++ b/pkgs/servers/monitoring/nagios-plugins/check_smartmon/default.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Nagios-Plugin that uses smartmontools to check disk health status and temperature"; mainProgram = "check_smartmon"; homepage = "https://github.com/driehuis/Nagios_check_smartmon"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ mariaa144 ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ mariaa144 ]; }; } diff --git a/pkgs/servers/monitoring/nagios-plugins/check_systemd/default.nix b/pkgs/servers/monitoring/nagios-plugins/check_systemd/default.nix index f1d8425d9dbfe1..d2260042d962ae 100644 --- a/pkgs/servers/monitoring/nagios-plugins/check_systemd/default.nix +++ b/pkgs/servers/monitoring/nagios-plugins/check_systemd/default.nix @@ -38,13 +38,13 @@ python3Packages.buildPythonApplication rec { pytestCheckHook ]; - meta = { + meta = with lib; { changelog = "https://github.com/Josef-Friedrich/check_systemd/releases"; description = "Nagios / Icinga monitoring plugin to check systemd for failed units"; homepage = "https://github.com/Josef-Friedrich/check_systemd"; - license = lib.licenses.lgpl2Only; + license = licenses.lgpl2Only; mainProgram = "check_systemd"; - maintainers = with lib.maintainers; [ symphorien ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ symphorien ]; + platforms = platforms.linux; }; } diff --git a/pkgs/servers/monitoring/nagios-plugins/check_uptime/default.nix b/pkgs/servers/monitoring/nagios-plugins/check_uptime/default.nix index dc707f2f372593..baea70a943b09b 100644 --- a/pkgs/servers/monitoring/nagios-plugins/check_uptime/default.nix +++ b/pkgs/servers/monitoring/nagios-plugins/check_uptime/default.nix @@ -24,11 +24,11 @@ stdenv.mkDerivation { ln -sr $out/libexec $out/bin ''; - meta = { + meta = with lib; { description = "Uptime check plugin for Sensu/Nagios/others"; homepage = "https://github.com/madrisan/nagios-plugins-uptime"; - license = lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; mainProgram = "check_uptime"; - maintainers = with lib.maintainers; [ peterhoeg ]; + maintainers = with maintainers; [ peterhoeg ]; }; } diff --git a/pkgs/servers/monitoring/nagios-plugins/check_zfs/default.nix b/pkgs/servers/monitoring/nagios-plugins/check_zfs/default.nix index 1984fea3ab9842..1f4a4f80102283 100644 --- a/pkgs/servers/monitoring/nagios-plugins/check_zfs/default.nix +++ b/pkgs/servers/monitoring/nagios-plugins/check_zfs/default.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { description = "Check the health, capacity, fragmentation, and other things for use with Nagios monitoring"; homepage = "https://github.com/zlacelle/nagios_check_zfs_linux"; - license = lib.licenses.gpl3Only; + license = licenses.gpl3Only; mainProgram = "check_zfs"; - maintainers = with lib.maintainers; [ mariaa144 ]; + maintainers = with maintainers; [ mariaa144 ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/xmpp-alerts.nix b/pkgs/servers/monitoring/prometheus/xmpp-alerts.nix index 3e397eb0cfc8a7..0c3e26f66b884d 100644 --- a/pkgs/servers/monitoring/prometheus/xmpp-alerts.nix +++ b/pkgs/servers/monitoring/prometheus/xmpp-alerts.nix @@ -54,11 +54,11 @@ python3Packages.buildPythonApplication rec { ''; }; - meta = { + meta = with lib; { description = "XMPP Web hook for Prometheus"; mainProgram = "prometheus-xmpp-alerts"; homepage = "https://github.com/jelmer/prometheus-xmpp-alerts"; - maintainers = with lib.maintainers; [ fpletz ]; - license = with lib.licenses; [ asl20 ]; + maintainers = with maintainers; [ fpletz ]; + license = with licenses; [ asl20 ]; }; } diff --git a/pkgs/servers/news/leafnode/1.nix b/pkgs/servers/news/leafnode/1.nix index 7218a82c2564da..9366b491d35bc2 100644 --- a/pkgs/servers/news/leafnode/1.nix +++ b/pkgs/servers/news/leafnode/1.nix @@ -20,11 +20,11 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ pcre2 ]; - meta = { + meta = with lib; { homepage = "https://leafnode.sourceforge.io/index.shtml"; description = "Implementation of a store & forward NNTP proxy, stable release"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.ne9z ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = [ maintainers.ne9z ]; }; }) diff --git a/pkgs/servers/news/leafnode/default.nix b/pkgs/servers/news/leafnode/default.nix index e7faa5be35a7e0..459d0078b4152b 100644 --- a/pkgs/servers/news/leafnode/default.nix +++ b/pkgs/servers/news/leafnode/default.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation (finalAttrs: { libxcrypt ]; - meta = { + meta = with lib; { homepage = "https://leafnode.sourceforge.io/index.shtml"; description = "Implementation of a store & forward NNTP proxy, under development"; - license = lib.licenses.mit; - platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.ne9z ]; + license = licenses.mit; + platforms = platforms.unix; + maintainers = [ maintainers.ne9z ]; }; }) diff --git a/pkgs/servers/nextcloud/news-updater.nix b/pkgs/servers/nextcloud/news-updater.nix index f26ba5fdaff495..e24b13d13e2bce 100644 --- a/pkgs/servers/nextcloud/news-updater.nix +++ b/pkgs/servers/nextcloud/news-updater.nix @@ -18,11 +18,11 @@ python3Packages.buildPythonApplication rec { propagatedBuildInputs = [ php ]; - meta = { + meta = with lib; { description = "Fast parallel feed updater for the Nextcloud news app"; mainProgram = "nextcloud-news-updater"; homepage = "https://github.com/nextcloud/news-updater"; - license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ schneefux ]; + license = licenses.gpl3; + maintainers = with maintainers; [ schneefux ]; }; } diff --git a/pkgs/servers/nextcloud/packages/apps/hmr_enabler.nix b/pkgs/servers/nextcloud/packages/apps/hmr_enabler.nix index 0249ad1e3ad9aa..ea5fc444db25f2 100644 --- a/pkgs/servers/nextcloud/packages/apps/hmr_enabler.nix +++ b/pkgs/servers/nextcloud/packages/apps/hmr_enabler.nix @@ -27,12 +27,12 @@ php.buildComposerProject (finalAttrs: { rm -r $out/share $out/composer.* $out/Makefile $out/psalm.xml $out/tests ''; - meta = { + meta = with lib; { description = " Development Nextcloud app to enable apps to use hot module reloading"; homepage = "https://github.com/nextcloud/hmr_enabler"; changelog = "https://github.com/nextcloud/hmr_enabler/blob/master/CHANGELOG.md"; - license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ onny ]; + license = licenses.agpl3Only; + maintainers = with maintainers; [ onny ]; }; }) diff --git a/pkgs/servers/nosql/rethinkdb/default.nix b/pkgs/servers/nosql/rethinkdb/default.nix index 686ad7eadc7472..e363a9741c49bb 100644 --- a/pkgs/servers/nosql/rethinkdb/default.nix +++ b/pkgs/servers/nosql/rethinkdb/default.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { --prefix PATH ":" "${python3Packages.rethinkdb}/bin" ''; - meta = { + meta = with lib; { description = "Open-source distributed database built with love"; mainProgram = "rethinkdb"; longDescription = '' @@ -79,9 +79,9 @@ stdenv.mkDerivation rec { joins and group by, and is easy to setup and learn. ''; homepage = "https://rethinkdb.com"; - license = lib.licenses.asl20; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ + license = licenses.asl20; + platforms = platforms.unix; + maintainers = with maintainers; [ thoughtpolice bluescreen303 ]; diff --git a/pkgs/servers/openvscode-server/default.nix b/pkgs/servers/openvscode-server/default.nix index 309030b4d303e6..6cfc4f41291ddc 100644 --- a/pkgs/servers/openvscode-server/default.nix +++ b/pkgs/servers/openvscode-server/default.nix @@ -246,15 +246,15 @@ stdenv.mkDerivation (finalAttrs: { inherit (nixosTests) openvscode-server; }; - meta = { + meta = with lib; { description = "Run VS Code on a remote machine"; longDescription = '' Run upstream VS Code on a remote machine with access through a modern web browser from any device, anywhere. ''; homepage = "https://github.com/gitpod-io/openvscode-server"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ dguenther ghuntley emilytrau diff --git a/pkgs/servers/osrm-backend/default.nix b/pkgs/servers/osrm-backend/default.nix index 96f7141f953bef..556b6da1be471b 100644 --- a/pkgs/servers/osrm-backend/default.nix +++ b/pkgs/servers/osrm-backend/default.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { inherit (nixosTests) osrm-backend; }; - meta = { + meta = with lib; { homepage = "https://github.com/Project-OSRM/osrm-backend/wiki"; description = "Open Source Routing Machine computes shortest paths in a graph. It was designed to run well with map data from the Openstreetmap Project"; changelog = "https://github.com/Project-OSRM/osrm-backend/blob/master/CHANGELOG.md"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ erictapen ]; - platforms = lib.platforms.unix; + license = licenses.bsd2; + maintainers = with maintainers; [ erictapen ]; + platforms = platforms.unix; }; } diff --git a/pkgs/servers/pulseaudio/qpaeq.nix b/pkgs/servers/pulseaudio/qpaeq.nix index bfdb6c1731834e..a5aa7e1688d722 100644 --- a/pkgs/servers/pulseaudio/qpaeq.nix +++ b/pkgs/servers/pulseaudio/qpaeq.nix @@ -52,12 +52,12 @@ mkDerivation rec { sed "s|@out@|$out|g" -i $out/share/applications/qpaeq.desktop ''; - meta = { + meta = with lib; { description = "Equalizer interface for pulseaudio's equalizer sinks"; mainProgram = "qpaeq"; homepage = "http://www.pulseaudio.org/"; - license = lib.licenses.lgpl2Plus; - maintainers = with lib.maintainers; [ lovek323 ]; - platforms = lib.platforms.unix; + license = licenses.lgpl2Plus; + maintainers = with maintainers; [ lovek323 ]; + platforms = platforms.unix; }; } diff --git a/pkgs/servers/sql/mssql/jdbc/default.nix b/pkgs/servers/sql/mssql/jdbc/default.nix index d822ddc7f31558..37a7845a62a628 100644 --- a/pkgs/servers/sql/mssql/jdbc/default.nix +++ b/pkgs/servers/sql/mssql/jdbc/default.nix @@ -24,8 +24,8 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { - sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - platforms = lib.platforms.unix; + meta = with lib; { + sourceProvenance = with sourceTypes; [ binaryBytecode ]; + platforms = platforms.unix; }; } diff --git a/pkgs/shells/fish/plugins/bang-bang.nix b/pkgs/shells/fish/plugins/bang-bang.nix index 942316d0cbc440..7345f05f1fc19b 100644 --- a/pkgs/shells/fish/plugins/bang-bang.nix +++ b/pkgs/shells/fish/plugins/bang-bang.nix @@ -14,10 +14,10 @@ buildFishPlugin { hash = "sha256-oPPCtFN2DPuM//c48SXb4TrFRjJtccg0YPXcAo0Lxq0="; }; - meta = { + meta = with lib; { description = "Bash style history substitution for Oh My Fish"; homepage = "https://github.com/oh-my-fish/plugin-bang-bang"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ theobori ]; + license = licenses.mit; + maintainers = with maintainers; [ theobori ]; }; } diff --git a/pkgs/shells/fish/plugins/fish-bd.nix b/pkgs/shells/fish/plugins/fish-bd.nix index 154fc621338976..bad9aeb20f306e 100644 --- a/pkgs/shells/fish/plugins/fish-bd.nix +++ b/pkgs/shells/fish/plugins/fish-bd.nix @@ -17,10 +17,10 @@ buildFishPlugin rec { passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = { + meta = with lib; { description = "Fish plugin to quickly go back to a parent directory up in your current working directory tree"; homepage = "https://github.com/0rax/fish-bd"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ anomalocaris ]; + license = licenses.mit; + maintainers = with maintainers; [ anomalocaris ]; }; } diff --git a/pkgs/shells/fish/plugins/fish-you-should-use.nix b/pkgs/shells/fish/plugins/fish-you-should-use.nix index 96c2e07447f3ac..09b9dd6bec9742 100644 --- a/pkgs/shells/fish/plugins/fish-you-should-use.nix +++ b/pkgs/shells/fish/plugins/fish-you-should-use.nix @@ -17,10 +17,10 @@ buildFishPlugin { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Fish plugin that reminds you to use your aliases"; homepage = "https://github.com/paysonwallach/fish-you-should-use"; - license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ anomalocaris ]; + license = licenses.gpl3Only; + maintainers = with maintainers; [ anomalocaris ]; }; } diff --git a/pkgs/shells/fish/plugins/fishtape.nix b/pkgs/shells/fish/plugins/fishtape.nix index 6bfe0dba1a7d2d..e732a09a4de74a 100644 --- a/pkgs/shells/fish/plugins/fishtape.nix +++ b/pkgs/shells/fish/plugins/fishtape.nix @@ -27,10 +27,10 @@ buildFishPlugin rec { mv fishtape.fish functions/ ''; - meta = { + meta = with lib; { description = "TAP-based test runner for Fish"; homepage = "https://github.com/jorgebucaran/fishtape"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ euxane ]; + license = licenses.mit; + maintainers = with maintainers; [ euxane ]; }; } diff --git a/pkgs/shells/fish/plugins/gruvbox.nix b/pkgs/shells/fish/plugins/gruvbox.nix index c4822659f69929..1394024574f888 100644 --- a/pkgs/shells/fish/plugins/gruvbox.nix +++ b/pkgs/shells/fish/plugins/gruvbox.nix @@ -12,10 +12,10 @@ buildFishPlugin { rev = "80a6f3a7b31beb6f087b0c56cbf3470204759d1c"; hash = "sha256-vL2/Nm9Z9cdaptx8sJqbX5AnRtfd68x4ZKWdQk5Cngo="; }; - meta = { + meta = with lib; { description = "Gruvbox theme for fish shell"; homepage = "https://github.com/Jomik/fish-gruvbox"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ msladecek ]; + license = licenses.mit; + maintainers = with maintainers; [ msladecek ]; }; } diff --git a/pkgs/shells/fish/plugins/plugin-sudope.nix b/pkgs/shells/fish/plugins/plugin-sudope.nix index e24f6ae1505097..8eda6538a91ae2 100644 --- a/pkgs/shells/fish/plugins/plugin-sudope.nix +++ b/pkgs/shells/fish/plugins/plugin-sudope.nix @@ -17,10 +17,10 @@ buildFishPlugin { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Fish plugin to quickly put 'sudo' in your command"; homepage = "https://github.com/oh-my-fish/plugin-sudope"; - license = lib.licenses.isc; - maintainers = with lib.maintainers; [ anomalocaris ]; + license = licenses.isc; + maintainers = with maintainers; [ anomalocaris ]; }; } diff --git a/pkgs/shells/fish/plugins/puffer.nix b/pkgs/shells/fish/plugins/puffer.nix index 107191ca52e69f..ab9ebe93705e3b 100644 --- a/pkgs/shells/fish/plugins/puffer.nix +++ b/pkgs/shells/fish/plugins/puffer.nix @@ -15,10 +15,10 @@ buildFishPlugin rec { hash = "sha256-2niYj0NLfmVIQguuGTA7RrPIcorJEPkxhH6Dhcy+6Bk="; }; - meta = { + meta = with lib; { description = "Text Expansions for Fish"; homepage = "https://github.com/nickeb96/puffer-fish"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ quantenzitrone ]; + license = licenses.mit; + maintainers = with maintainers; [ quantenzitrone ]; }; } diff --git a/pkgs/shells/fish/plugins/pure.nix b/pkgs/shells/fish/plugins/pure.nix index c5a288b8f02796..46a2ca74a4244e 100644 --- a/pkgs/shells/fish/plugins/pure.nix +++ b/pkgs/shells/fish/plugins/pure.nix @@ -26,10 +26,10 @@ buildFishPlugin rec { fishtape tests/*.test.fish ''; - meta = { + meta = with lib; { description = "Pretty, minimal and fast Fish prompt, ported from zsh"; homepage = "https://github.com/rafaelrinaldi/pure"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ euxane ]; + license = licenses.mit; + maintainers = with maintainers; [ euxane ]; }; } diff --git a/pkgs/shells/fish/plugins/spark.nix b/pkgs/shells/fish/plugins/spark.nix index 68b23fb55d01ce..81a3dc4ff99783 100644 --- a/pkgs/shells/fish/plugins/spark.nix +++ b/pkgs/shells/fish/plugins/spark.nix @@ -15,11 +15,11 @@ let hash = "sha256-AIFj7lz+QnqXGMBCfLucVwoBR3dcT0sLNPrQxA5qTuU="; }; - meta = { + meta = with lib; { description = "Sparklines for Fish"; homepage = "https://github.com/jorgebucaran/spark.fish"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ theobori ]; + license = licenses.mit; + maintainers = with maintainers; [ theobori ]; }; }; in diff --git a/pkgs/shells/zsh/default.nix b/pkgs/shells/zsh/default.nix index e84ddddd9fcfb1..ec469bcdd149e9 100644 --- a/pkgs/shells/zsh/default.nix +++ b/pkgs/shells/zsh/default.nix @@ -167,7 +167,7 @@ stdenv.mkDerivation { HOST_PATH=$out/bin:$HOST_PATH patchShebangs --host $out/share/zsh/*/functions ''; - meta = { + meta = with lib; { description = "Z shell"; longDescription = '' Zsh is a UNIX command interpreter (shell) usable as an interactive login @@ -179,11 +179,11 @@ stdenv.mkDerivation { ''; license = "MIT-like"; homepage = "https://www.zsh.org/"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ pSub artturin ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; mainProgram = "zsh"; }; diff --git a/pkgs/tools/X11/xbindkeys-config/default.nix b/pkgs/tools/X11/xbindkeys-config/default.nix index 660c1e2c884366..45aac5137bd3b9 100644 --- a/pkgs/tools/X11/xbindkeys-config/default.nix +++ b/pkgs/tools/X11/xbindkeys-config/default.nix @@ -30,12 +30,12 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = { + meta = with lib; { homepage = "https://packages.debian.org/source/xbindkeys-config"; description = "Graphical interface for configuring xbindkeys"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ benley ]; - platforms = with lib.platforms; linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ benley ]; + platforms = with platforms; linux; mainProgram = "xbindkeys-config"; }; diff --git a/pkgs/tools/X11/xpra/libfakeXinerama.nix b/pkgs/tools/X11/xpra/libfakeXinerama.nix index 2b533c1aaccaec..79f36dfb53af7e 100644 --- a/pkgs/tools/X11/xpra/libfakeXinerama.nix +++ b/pkgs/tools/X11/xpra/libfakeXinerama.nix @@ -39,11 +39,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "http://xpra.org/"; description = "fakeXinerama for Xpra"; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.nickcao ]; - license = lib.licenses.mit; + platforms = platforms.linux; + maintainers = [ maintainers.nickcao ]; + license = licenses.mit; }; } diff --git a/pkgs/tools/admin/winbox/default.nix b/pkgs/tools/admin/winbox/default.nix index da1736889db36b..d8ba01b355b37b 100644 --- a/pkgs/tools/admin/winbox/default.nix +++ b/pkgs/tools/admin/winbox/default.nix @@ -64,14 +64,14 @@ stdenvNoCC.mkDerivation (finalAttrs: { }) ]; - meta = { + meta = with lib; { description = "Graphical configuration utility for RouterOS-based devices"; homepage = "https://mikrotik.com"; downloadPage = "https://mikrotik.com/download"; changelog = "https://wiki.mikrotik.com/wiki/Winbox_changelog"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; mainProgram = "winbox"; - maintainers = with lib.maintainers; [ yrd ]; + maintainers = with maintainers; [ yrd ]; }; }) diff --git a/pkgs/tools/audio/beets/common.nix b/pkgs/tools/audio/beets/common.nix index 07db91eba091e8..1084a6b9aa8d13 100644 --- a/pkgs/tools/audio/beets/common.nix +++ b/pkgs/tools/audio/beets/common.nix @@ -202,18 +202,18 @@ python3Packages.buildPythonApplication { ${beets}/bin/beet -c $out/config.yaml > /dev/null ''; - meta = { + meta = with lib; { description = "Music tagger and library organizer"; homepage = "https://beets.io"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ + license = licenses.mit; + maintainers = with maintainers; [ aszlig doronbehar lovesegfault montchr pjones ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + platforms = platforms.linux ++ platforms.darwin; mainProgram = "beet"; }; } diff --git a/pkgs/tools/audio/beets/plugins/alternatives.nix b/pkgs/tools/audio/beets/plugins/alternatives.nix index d2520fcaca6342..d245aba24724a4 100644 --- a/pkgs/tools/audio/beets/plugins/alternatives.nix +++ b/pkgs/tools/audio/beets/plugins/alternatives.nix @@ -32,13 +32,13 @@ python3Packages.buildPythonApplication rec { export HOME=$(mktemp -d) ''; - meta = { + meta = with lib; { description = "Beets plugin to manage external files"; homepage = "https://github.com/geigerzaehler/beets-alternatives"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ aszlig lovesegfault ]; - license = lib.licenses.mit; + license = licenses.mit; }; } diff --git a/pkgs/tools/audio/tidal-dl/default.nix b/pkgs/tools/audio/tidal-dl/default.nix index cbc65e76561179..97007adc20fb09 100644 --- a/pkgs/tools/audio/tidal-dl/default.nix +++ b/pkgs/tools/audio/tidal-dl/default.nix @@ -16,12 +16,12 @@ buildPythonApplication rec { propagatedBuildInputs = [ aigpy ]; - meta = { + meta = with lib; { homepage = "https://github.com/yaronzz/Tidal-Media-Downloader"; description = "Application that lets you download videos and tracks from Tidal"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.misterio77 ]; - platforms = lib.platforms.all; + license = licenses.asl20; + maintainers = [ maintainers.misterio77 ]; + platforms = platforms.all; mainProgram = "tidal-dl"; }; } diff --git a/pkgs/tools/backup/pyznap/default.nix b/pkgs/tools/backup/pyznap/default.nix index 847ee32f8c2fab..7709ba004a5a94 100644 --- a/pkgs/tools/backup/pyznap/default.nix +++ b/pkgs/tools/backup/pyznap/default.nix @@ -21,11 +21,11 @@ buildPythonApplication rec { # tests aren't included in the PyPI packages doCheck = false; - meta = { + meta = with lib; { homepage = "https://github.com/yboetz/pyznap"; description = "ZFS snapshot tool written in python"; mainProgram = "pyznap"; - license = with lib.licenses; [ gpl3 ]; - maintainers = with lib.maintainers; [ rbrewer ]; + license = with licenses; [ gpl3 ]; + maintainers = with maintainers; [ rbrewer ]; }; } diff --git a/pkgs/tools/backup/zbackup/default.nix b/pkgs/tools/backup/zbackup/default.nix index 21df241f7db83e..40d839fc92099d 100644 --- a/pkgs/tools/backup/zbackup/default.nix +++ b/pkgs/tools/backup/zbackup/default.nix @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { protobufc ]; - meta = { + meta = with lib; { description = "Versatile deduplicating backup tool"; mainProgram = "zbackup"; homepage = "http://zbackup.org/"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Plus; + platforms = platforms.linux; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/tools/cd-dvd/cdrdao/default.nix b/pkgs/tools/cd-dvd/cdrdao/default.nix index 5f9c0ca5073ed0..62e61b1a7e5a69 100644 --- a/pkgs/tools/cd-dvd/cdrdao/default.nix +++ b/pkgs/tools/cd-dvd/cdrdao/default.nix @@ -70,10 +70,10 @@ stdenv.mkDerivation (finalAttrs: { # Needed on gcc >= 6. env.NIX_CFLAGS_COMPILE = "-Wno-narrowing"; - meta = { + meta = with lib; { description = "Tool for recording audio or data CD-Rs in disk-at-once (DAO) mode"; homepage = "https://cdrdao.sourceforge.net/"; - platforms = lib.platforms.unix; - license = lib.licenses.gpl2Plus; + platforms = platforms.unix; + license = licenses.gpl2Plus; }; }) diff --git a/pkgs/tools/filesystems/mergerfs/default.nix b/pkgs/tools/filesystems/mergerfs/default.nix index ff57c0c4ba785e..73dfffca167e59 100644 --- a/pkgs/tools/filesystems/mergerfs/default.nix +++ b/pkgs/tools/filesystems/mergerfs/default.nix @@ -58,11 +58,11 @@ stdenv.mkDerivation rec { ln -srf $out/bin/mergerfs $out/bin/mount.mergerfs ''; - meta = { + meta = with lib; { description = "FUSE based union filesystem"; homepage = "https://github.com/trapexit/mergerfs"; - license = lib.licenses.isc; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ makefu ]; + license = licenses.isc; + platforms = platforms.linux; + maintainers = with maintainers; [ makefu ]; }; } diff --git a/pkgs/tools/filesystems/xtreemfs/default.nix b/pkgs/tools/filesystems/xtreemfs/default.nix index eed43270e18d14..89d1b0d9d6698d 100644 --- a/pkgs/tools/filesystems/xtreemfs/default.nix +++ b/pkgs/tools/filesystems/xtreemfs/default.nix @@ -113,13 +113,13 @@ stdenv.mkDerivation { rm -r $out/sbin ''; - meta = { + meta = with lib; { description = "Distributed filesystem"; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ raskin matejc ]; - platforms = lib.platforms.linux; - license = lib.licenses.bsd3; + platforms = platforms.linux; + license = licenses.bsd3; }; } diff --git a/pkgs/tools/graphics/directx-shader-compiler/default.nix b/pkgs/tools/graphics/directx-shader-compiler/default.nix index bd5d00aa50d112..f5296d2fb478ef 100644 --- a/pkgs/tools/graphics/directx-shader-compiler/default.nix +++ b/pkgs/tools/graphics/directx-shader-compiler/default.nix @@ -51,11 +51,11 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Compiler to compile HLSL programs into DXIL and SPIR-V"; homepage = "https://github.com/microsoft/DirectXShaderCompiler"; - platforms = with lib.platforms; linux ++ darwin; - license = lib.licenses.ncsa; - maintainers = with lib.maintainers; [ Flakebi ]; + platforms = with platforms; linux ++ darwin; + license = licenses.ncsa; + maintainers = with maintainers; [ Flakebi ]; }; }) diff --git a/pkgs/tools/graphics/maskromtool/default.nix b/pkgs/tools/graphics/maskromtool/default.nix index 94fbfdb61fe095..1fc7e8b11442a5 100644 --- a/pkgs/tools/graphics/maskromtool/default.nix +++ b/pkgs/tools/graphics/maskromtool/default.nix @@ -30,15 +30,15 @@ stdenv.mkDerivation rec { wrapQtAppsHook ]; - meta = { + meta = with lib; { description = "CAD tool for extracting bits from Mask ROM photographs"; homepage = "https://github.com/travisgoodspeed/maskromtool"; license = [ - lib.licenses.beerware - lib.licenses.gpl1Plus + licenses.beerware + licenses.gpl1Plus ]; maintainers = [ - lib.maintainers.evanrichter + maintainers.evanrichter ]; }; } diff --git a/pkgs/tools/graphics/povray/default.nix b/pkgs/tools/graphics/povray/default.nix index 1309f506c55646..229f02805756fd 100644 --- a/pkgs/tools/graphics/povray/default.nix +++ b/pkgs/tools/graphics/povray/default.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation (finalAttrs: { done ''; - meta = { + meta = with lib; { homepage = "http://www.povray.org/"; description = "Persistence of Vision Raytracer"; - license = lib.licenses.free; - platforms = lib.platforms.linux; + license = licenses.free; + platforms = platforms.linux; mainProgram = "povray"; - maintainers = with lib.maintainers; [ fgaz ]; + maintainers = with maintainers; [ fgaz ]; }; }) diff --git a/pkgs/tools/graphics/waifu2x-converter-cpp/default.nix b/pkgs/tools/graphics/waifu2x-converter-cpp/default.nix index 1464e0b0beb243..8cd397510b9b63 100644 --- a/pkgs/tools/graphics/waifu2x-converter-cpp/default.nix +++ b/pkgs/tools/graphics/waifu2x-converter-cpp/default.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { "-DCMAKE_SKIP_BUILD_RPATH=ON" ]; - meta = { + meta = with lib; { description = "Improved fork of Waifu2X C++ using OpenCL and OpenCV"; homepage = "https://github.com/DeadSix27/waifu2x-converter-cpp"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.xzfc ]; - platforms = lib.platforms.linux ++ lib.platforms.darwin; + license = licenses.mit; + maintainers = [ maintainers.xzfc ]; + platforms = platforms.linux ++ platforms.darwin; mainProgram = "waifu2x-converter-cpp"; }; } diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-bamboo.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-bamboo.nix index 31cda50d502c4b..c4c758fd9ae132 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-bamboo.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-bamboo.nix @@ -38,11 +38,11 @@ stdenv.mkDerivation (finalAttrs: { export GOCACHE=$TMPDIR/go-cache ''; - meta = { + meta = with lib; { description = "Vietnamese input method engine support for Fcitx"; homepage = "https://github.com/fcitx/fcitx5-bamboo"; - license = lib.licenses.lgpl21Plus; - maintainers = with lib.maintainers; [ ]; - platforms = lib.platforms.linux; + license = licenses.lgpl21Plus; + maintainers = with maintainers; [ ]; + platforms = platforms.linux; }; }) diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-cangjie/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-cangjie/default.nix index 0fca600cb627e9..5a22d6852e92e5 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-cangjie/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-cangjie/default.nix @@ -64,13 +64,13 @@ stdenv.mkDerivation { wrapGApp $out/lib/ibus-cangjie/ibus-engine-cangjie ''; - meta = { + meta = with lib; { isIbusEngine = true; description = "IBus engine for users of the Cangjie and Quick input methods"; mainProgram = "ibus-setup-cangjie"; homepage = "https://github.com/Cangjians/ibus-cangjie"; - license = lib.licenses.gpl3Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-pinyin/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-pinyin/default.nix index 8574b04875f0bb..966145c326536d 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-pinyin/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-pinyin/default.nix @@ -46,11 +46,11 @@ stdenv.mkDerivation rec { passthru.updateScript = nix-update-script { }; - meta = { + meta = with lib; { isIbusEngine = true; description = "The PinYin engine for IBus"; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ azuwis ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + maintainers = with maintainers; [ azuwis ]; + platforms = platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/m17n-lib/default.nix b/pkgs/tools/inputmethods/m17n-lib/default.nix index 7d5289010daa2b..5d2280122b72ab 100644 --- a/pkgs/tools/inputmethods/m17n-lib/default.nix +++ b/pkgs/tools/inputmethods/m17n-lib/default.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = "https://www.nongnu.org/m17n/"; description = "Multilingual text processing library (runtime)"; - license = lib.licenses.lgpl21Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ astsmtl ]; + license = licenses.lgpl21Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ astsmtl ]; }; } diff --git a/pkgs/tools/inputmethods/m17n-lib/otf.nix b/pkgs/tools/inputmethods/m17n-lib/otf.nix index b92b57746e851d..22e6cc4e595193 100644 --- a/pkgs/tools/inputmethods/m17n-lib/otf.nix +++ b/pkgs/tools/inputmethods/m17n-lib/otf.nix @@ -60,11 +60,11 @@ stdenv.mkDerivation rec { --replace "pkg-config" "${pkg-config}/bin/pkg-config" ''; - meta = { + meta = with lib; { homepage = "https://www.nongnu.org/m17n/"; description = "Multilingual text processing library (libotf)"; - license = lib.licenses.lgpl21Plus; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ bendlas ]; + license = licenses.lgpl21Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ bendlas ]; }; } diff --git a/pkgs/tools/misc/clipbuzz/default.nix b/pkgs/tools/misc/clipbuzz/default.nix index 8b09430b52aebb..165ecaff9dd8c1 100644 --- a/pkgs/tools/misc/clipbuzz/default.nix +++ b/pkgs/tools/misc/clipbuzz/default.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation (finalAttrs: { libXfixes ]; - meta = { + meta = with lib; { description = "Buzz on new X11 clipboard events"; homepage = "https://trong.loang.net/~cnx/clipbuzz"; - license = lib.licenses.unlicense; - maintainers = [ lib.maintainers.McSinyx ]; + license = licenses.unlicense; + maintainers = [ maintainers.McSinyx ]; mainProgram = "clipbuzz"; }; }) diff --git a/pkgs/tools/misc/fondu/default.nix b/pkgs/tools/misc/fondu/default.nix index d51d09a469cadf..ec451ca5f32cde 100644 --- a/pkgs/tools/misc/fondu/default.nix +++ b/pkgs/tools/misc/fondu/default.nix @@ -24,8 +24,8 @@ stdenv.mkDerivation rec { hardeningDisable = [ "fortify" ]; - meta = { - platforms = lib.platforms.unix; - license = lib.licenses.gpl3; + meta = with lib; { + platforms = platforms.unix; + license = licenses.gpl3; }; } diff --git a/pkgs/tools/misc/gbdfed/default.nix b/pkgs/tools/misc/gbdfed/default.nix index 1d72d2c05f441f..ce2c364eca675b 100644 --- a/pkgs/tools/misc/gbdfed/default.nix +++ b/pkgs/tools/misc/gbdfed/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { hardeningDisable = [ "format" ]; - meta = { + meta = with lib; { description = "Bitmap Font Editor"; longDescription = '' gbdfed lets you interactively create new bitmap font files or modify existing ones. @@ -35,9 +35,9 @@ stdenv.mkDerivation rec { The editor works natively with BDF fonts. ''; homepage = "http://sofia.nmsu.edu/~mleisher/Software/gbdfed/"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.linquize ]; - platforms = lib.platforms.all; + license = licenses.mit; + maintainers = [ maintainers.linquize ]; + platforms = platforms.all; mainProgram = "gbdfed"; }; } diff --git a/pkgs/tools/misc/hdf5/1.10.nix b/pkgs/tools/misc/hdf5/1.10.nix index 7c0392deddc9bc..575405bfa1f66d 100644 --- a/pkgs/tools/misc/hdf5/1.10.nix +++ b/pkgs/tools/misc/hdf5/1.10.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { moveToOutput 'bin/h5pcc' "''${!outputDev}" ''; - meta = { + meta = with lib; { 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 @@ -57,9 +57,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 = lib.licenses.bsd3; # Lawrence Berkeley National Labs BSD 3-Clause variant - maintainers = with lib.maintainers; [ stephen-huan ]; + license = licenses.bsd3; # Lawrence Berkeley National Labs BSD 3-Clause variant + maintainers = with maintainers; [ stephen-huan ]; homepage = "https://www.hdfgroup.org/HDF5/"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/tools/misc/isoimagewriter/default.nix b/pkgs/tools/misc/isoimagewriter/default.nix index b26629065cca3a..ac2da55f009cba 100644 --- a/pkgs/tools/misc/isoimagewriter/default.nix +++ b/pkgs/tools/misc/isoimagewriter/default.nix @@ -37,12 +37,12 @@ mkDerivation rec { qgpgme ]; - meta = { + meta = with lib; { description = "Program to write hybrid ISO files onto USB disks"; homepage = "https://invent.kde.org/utilities/isoimagewriter"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ k900 ]; + platforms = platforms.linux; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ k900 ]; mainProgram = "isoimagewriter"; }; } diff --git a/pkgs/tools/misc/psrecord/default.nix b/pkgs/tools/misc/psrecord/default.nix index 1b14d62d6403c9..68f6efdfe4f3ce 100644 --- a/pkgs/tools/misc/psrecord/default.nix +++ b/pkgs/tools/misc/psrecord/default.nix @@ -30,11 +30,11 @@ buildPythonApplication rec { runHook postCheck ''; - meta = { + meta = with lib; { description = "Record the CPU and memory activity of a process"; homepage = "https://github.com/astrofrog/psrecord"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ johnazoidberg ]; + license = licenses.bsd2; + maintainers = with maintainers; [ johnazoidberg ]; mainProgram = "psrecord"; }; } diff --git a/pkgs/tools/misc/qt6gtk2/default.nix b/pkgs/tools/misc/qt6gtk2/default.nix index 300274bb825287..6888a4dbe38bd7 100644 --- a/pkgs/tools/misc/qt6gtk2/default.nix +++ b/pkgs/tools/misc/qt6gtk2/default.nix @@ -37,11 +37,11 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "GTK+2.0 integration plugins for Qt6"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; homepage = "https://github.com/trialuser02/qt6gtk2"; - maintainers = [ lib.maintainers.misterio77 ]; - platforms = lib.platforms.linux; + maintainers = [ maintainers.misterio77 ]; + platforms = platforms.linux; }; } diff --git a/pkgs/tools/misc/system-config-printer/default.nix b/pkgs/tools/misc/system-config-printer/default.nix index aa1d78d7658da4..8d6a63ce992056 100644 --- a/pkgs/tools/misc/system-config-printer/default.nix +++ b/pkgs/tools/misc/system-config-printer/default.nix @@ -136,9 +136,9 @@ stdenv.mkDerivation rec { --replace "udev-configure-printer" "$out/etc/udev/udev-configure-printer" ''; - meta = { + meta = with lib; { homepage = "https://github.com/openprinting/system-config-printer"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl2Plus; + platforms = platforms.linux; + license = licenses.gpl2Plus; }; } diff --git a/pkgs/tools/misc/thinkpad-scripts/default.nix b/pkgs/tools/misc/thinkpad-scripts/default.nix index 14724c8111d971..4aee77d828b7b7 100644 --- a/pkgs/tools/misc/thinkpad-scripts/default.nix +++ b/pkgs/tools/misc/thinkpad-scripts/default.nix @@ -18,10 +18,10 @@ buildPythonPackage rec { propagatedBuildInputs = with python3Packages; [ setuptools ]; - meta = { + meta = with lib; { description = "Screen rotation, docking and other scripts for ThinkPad® X220 and X230 Tablet"; homepage = "https://github.com/martin-ueding/thinkpad-scripts"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ dawidsowa ]; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ dawidsowa ]; }; } diff --git a/pkgs/tools/misc/wacomtablet/default.nix b/pkgs/tools/misc/wacomtablet/default.nix index 6529ec029908ba..007efe4c624685 100644 --- a/pkgs/tools/misc/wacomtablet/default.nix +++ b/pkgs/tools/misc/wacomtablet/default.nix @@ -32,7 +32,7 @@ mkDerivation rec { xf86_input_wacom ]; - meta = { + meta = with lib; { description = "KDE Configuration Module for Wacom Graphics Tablets"; mainProgram = "kde_wacom_tabletfinder"; longDescription = '' @@ -40,8 +40,8 @@ mkDerivation rec { with profile support to handle different button / pen layouts per profile. ''; homepage = "https://invent.kde.org/system/wacomtablet"; - license = lib.licenses.gpl2Plus; - maintainers = [ lib.maintainers.Thra11 ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = [ maintainers.Thra11 ]; + platforms = platforms.linux; }; } diff --git a/pkgs/tools/misc/xflux/default.nix b/pkgs/tools/misc/xflux/default.nix index 442d7f8d5d7e0e..e5a5ca058d65c2 100644 --- a/pkgs/tools/misc/xflux/default.nix +++ b/pkgs/tools/misc/xflux/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation { postFixup = '' patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) --set-rpath "$libPath" "$out/bin/xflux" ''; - meta = { + meta = with lib; { description = "Adjusts your screen to emit warmer light at night"; longDescription = '' xflux changes the color temperature of your screen to be much warmer @@ -42,10 +42,10 @@ stdenv.mkDerivation { when the sun rises. ''; homepage = "https://justgetflux.com/"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.unfree; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.paholg ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + platforms = platforms.linux; + maintainers = [ maintainers.paholg ]; mainProgram = "xflux"; }; } diff --git a/pkgs/tools/misc/xflux/gui.nix b/pkgs/tools/misc/xflux/gui.nix index c95ea40ac2b426..b3904ad96edf3d 100644 --- a/pkgs/tools/misc/xflux/gui.nix +++ b/pkgs/tools/misc/xflux/gui.nix @@ -57,11 +57,11 @@ buildPythonApplication rec { patchPythonScript $out/${python3Packages.python.sitePackages}/fluxgui/fluxapp.py ''; - meta = { + meta = with lib; { description = "Better lighting for Linux. Open source GUI for xflux"; homepage = "https://justgetflux.com/linux.html"; - license = lib.licenses.unfree; # marked as unfree since the source code contains a copy of the unfree xflux binary - maintainers = [ lib.maintainers.sheenobu ]; - platforms = lib.platforms.linux; + license = licenses.unfree; # marked as unfree since the source code contains a copy of the unfree xflux binary + maintainers = [ maintainers.sheenobu ]; + platforms = platforms.linux; }; } diff --git a/pkgs/tools/networking/curl-impersonate/chrome/default.nix b/pkgs/tools/networking/curl-impersonate/chrome/default.nix index ac85af4de08112..8a39e7b4292643 100644 --- a/pkgs/tools/networking/curl-impersonate/chrome/default.nix +++ b/pkgs/tools/networking/curl-impersonate/chrome/default.nix @@ -192,15 +192,15 @@ stdenv.mkDerivation rec { }).goModules; }; - meta = { + meta = with lib; { description = "Special build of curl that can impersonate Chrome & Firefox"; homepage = "https://github.com/yifeikong/curl-impersonate"; - license = with lib.licenses; [ + license = with licenses; [ curl mit ]; - maintainers = with lib.maintainers; [ ggg ]; - platforms = lib.platforms.unix; + maintainers = with maintainers; [ ggg ]; + platforms = platforms.unix; mainProgram = "curl-impersonate-chrome"; }; } diff --git a/pkgs/tools/networking/iperf/3.nix b/pkgs/tools/networking/iperf/3.nix index a73184265f56c3..2610fb4baf3a73 100644 --- a/pkgs/tools/networking/iperf/3.nix +++ b/pkgs/tools/networking/iperf/3.nix @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { ln -s $man/share/man/man1/iperf3.1 $man/share/man/man1/iperf.1 ''; - meta = { + meta = with lib; { homepage = "https://software.es.net/iperf/"; description = "Tool to measure IP bandwidth using UDP or TCP"; - platforms = lib.platforms.unix; - license = lib.licenses.bsd3; + platforms = platforms.unix; + license = licenses.bsd3; mainProgram = "iperf3"; - maintainers = with lib.maintainers; [ fpletz ]; + maintainers = with maintainers; [ fpletz ]; }; } diff --git a/pkgs/tools/networking/nettee/default.nix b/pkgs/tools/networking/nettee/default.nix index ccdc96cd3c428a..d67f41a532c4b1 100644 --- a/pkgs/tools/networking/nettee/default.nix +++ b/pkgs/tools/networking/nettee/default.nix @@ -19,12 +19,12 @@ stdenv.mkDerivation { inherit sha256; }; - meta = { + meta = with lib; { homepage = "http://saf.bio.caltech.edu/nettee.html"; description = ''Network "tee" program''; - license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ Profpatsch ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + maintainers = with maintainers; [ Profpatsch ]; + platforms = platforms.linux; mainProgram = "nettee"; }; diff --git a/pkgs/tools/networking/onetun/default.nix b/pkgs/tools/networking/onetun/default.nix index fc288c3abab258..5cb2c0e8ff89c3 100644 --- a/pkgs/tools/networking/onetun/default.nix +++ b/pkgs/tools/networking/onetun/default.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-Il/jwaQ4nu93R1fC3r6haSSF5ATSrgkv4uZmAA/RZBI="; - meta = { + meta = with lib; { description = "Cross-platform, user-space WireGuard port-forwarder that requires no root-access or system network configurations"; homepage = "https://github.com/aramperes/onetun"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dit7ya ]; + license = licenses.mit; + maintainers = with maintainers; [ dit7ya ]; mainProgram = "onetun"; }; } diff --git a/pkgs/tools/networking/openvpn/openvpn_learnaddress.nix b/pkgs/tools/networking/openvpn/openvpn_learnaddress.nix index 4bfce881ca0f40..f44f299f42a289 100644 --- a/pkgs/tools/networking/openvpn/openvpn_learnaddress.nix +++ b/pkgs/tools/networking/openvpn/openvpn_learnaddress.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation { } ''; - meta = { + meta = with lib; { description = "Openvpn learn-address script to manage a hosts-like file"; homepage = "https://gist.github.com/offlinehacker/4058733/"; - maintainers = [ lib.maintainers.offline ]; - platforms = lib.platforms.unix; + maintainers = [ maintainers.offline ]; + platforms = platforms.unix; }; } diff --git a/pkgs/tools/networking/q/default.nix b/pkgs/tools/networking/q/default.nix index 6aac0616b55474..71d721ec46428f 100644 --- a/pkgs/tools/networking/q/default.nix +++ b/pkgs/tools/networking/q/default.nix @@ -25,11 +25,11 @@ buildGoModule rec { doCheck = false; # tries to resolve DNS - meta = { + meta = with lib; { description = "Tiny and feature-rich command line DNS client with support for UDP, TCP, DoT, DoH, DoQ, and ODoH"; homepage = "https://github.com/natesales/q"; - license = lib.licenses.gpl3Only; - maintainers = [ lib.maintainers.das_j ]; + license = licenses.gpl3Only; + maintainers = [ maintainers.das_j ]; mainProgram = "q"; }; } diff --git a/pkgs/tools/networking/telepresence/default.nix b/pkgs/tools/networking/telepresence/default.nix index 244b190fe60b9e..3b9189b73bdad8 100644 --- a/pkgs/tools/networking/telepresence/default.nix +++ b/pkgs/tools/networking/telepresence/default.nix @@ -49,11 +49,11 @@ pythonPackages.buildPythonPackage rec { doCheck = false; - meta = { + meta = with lib; { homepage = "https://www.telepresence.io/"; description = "Local development against a remote Kubernetes or OpenShift cluster"; mainProgram = "telepresence"; - license = with lib.licenses; [ asl20 ]; - maintainers = with lib.maintainers; [ offline ]; + license = with licenses; [ asl20 ]; + maintainers = with maintainers; [ offline ]; }; } diff --git a/pkgs/tools/networking/tinc/default.nix b/pkgs/tools/networking/tinc/default.nix index 85722207bea432..3aab07a9afcedd 100644 --- a/pkgs/tools/networking/tinc/default.nix +++ b/pkgs/tools/networking/tinc/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { #passthru.tests = { inherit (nixosTests) tinc; }; # test uses tinc_pre - meta = { + meta = with lib; { description = "VPN daemon with full mesh routing"; longDescription = '' tinc is a Virtual Private Network (VPN) daemon that uses tunnelling and @@ -38,8 +38,8 @@ stdenv.mkDerivation rec { authentication, compression and ethernet bridging. ''; homepage = "http://www.tinc-vpn.org/"; - license = lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; mainProgram = "tincd"; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/tools/networking/zrok/default.nix b/pkgs/tools/networking/zrok/default.nix index 93ead3af039cdf..6b7884199e1cd2 100644 --- a/pkgs/tools/networking/zrok/default.nix +++ b/pkgs/tools/networking/zrok/default.nix @@ -51,17 +51,17 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { description = "Geo-scale, next-generation sharing platform built on top of OpenZiti"; homepage = "https://zrok.io"; - license = lib.licenses.asl20; + license = licenses.asl20; mainProgram = "zrok"; - maintainers = [ lib.maintainers.bandresen ]; + maintainers = [ maintainers.bandresen ]; platforms = [ "x86_64-linux" "aarch64-linux" "armv7l-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) diff --git a/pkgs/tools/package-management/disnix/default.nix b/pkgs/tools/package-management/disnix/default.nix index 21d6dc440ac15d..7016efd2cbfd51 100644 --- a/pkgs/tools/package-management/disnix/default.nix +++ b/pkgs/tools/package-management/disnix/default.nix @@ -43,13 +43,13 @@ stdenv.mkDerivation rec { dysnomia ]; - meta = { + meta = with lib; { description = "Nix-based distributed service deployment tool"; - license = lib.licenses.lgpl21Plus; - maintainers = with lib.maintainers; [ + license = licenses.lgpl21Plus; + maintainers = with maintainers; [ sander tomberek ]; - platforms = lib.platforms.unix; + platforms = platforms.unix; }; } diff --git a/pkgs/tools/package-management/disnix/dysnomia/default.nix b/pkgs/tools/package-management/disnix/dysnomia/default.nix index 0180b9ddab77d0..7e20019218d311 100644 --- a/pkgs/tools/package-management/disnix/dysnomia/default.nix +++ b/pkgs/tools/package-management/disnix/dysnomia/default.nix @@ -100,10 +100,10 @@ stdenv.mkDerivation rec { ++ lib.optional enableS6RCService s6-rc ++ lib.optional enableXinetdService xinetd; - meta = { + meta = with lib; { description = "Automated deployment of mutable components and services for Disnix"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.sander ]; - platforms = lib.platforms.unix; + license = licenses.mit; + maintainers = [ maintainers.sander ]; + platforms = platforms.unix; }; } diff --git a/pkgs/tools/package-management/nix-update-source/default.nix b/pkgs/tools/package-management/nix-update-source/default.nix index 392a580e45b165..5a11a964e345fe 100644 --- a/pkgs/tools/package-management/nix-update-source/default.nix +++ b/pkgs/tools/package-management/nix-update-source/default.nix @@ -68,11 +68,11 @@ python3Packages.buildPythonApplication rec { ]; }; - meta = { + meta = with lib; { homepage = "https://github.com/timbertson/nix-update-source"; description = "Utility to automate updating of nix derivation sources"; - maintainers = with lib.maintainers; [ timbertson ]; - license = lib.licenses.mit; + maintainers = with maintainers; [ timbertson ]; + license = licenses.mit; mainProgram = "nix-update-source"; }; } diff --git a/pkgs/tools/security/aflplusplus/default.nix b/pkgs/tools/security/aflplusplus/default.nix index 5b4e2e87293df7..3a10e2d57389ad 100644 --- a/pkgs/tools/security/aflplusplus/default.nix +++ b/pkgs/tools/security/aflplusplus/default.nix @@ -194,19 +194,19 @@ let qemu = aflplusplus-qemu; }; - meta = { + meta = with lib; { description = '' Heavily enhanced version of AFL, incorporating many features and improvements from the community ''; homepage = "https://aflplus.plus"; changelog = "https://aflplus.plus/docs/changelog"; - license = lib.licenses.asl20; + license = licenses.asl20; platforms = [ "x86_64-linux" "i686-linux" ]; - maintainers = with lib.maintainers; [ + maintainers = with maintainers; [ ris mindavi ]; diff --git a/pkgs/tools/security/aflplusplus/libdislocator.nix b/pkgs/tools/security/aflplusplus/libdislocator.nix index c99ba96a433977..2632e32076b3d6 100644 --- a/pkgs/tools/security/aflplusplus/libdislocator.nix +++ b/pkgs/tools/security/aflplusplus/libdislocator.nix @@ -27,14 +27,14 @@ stdenv.mkDerivation { chmod +x $out/bin/get-libdislocator-so ''; - meta = { + meta = with lib; { homepage = "https://github.com/vanhauser-thc/AFLplusplus"; description = '' Drop-in replacement for the libc allocator which improves the odds of bumping into heap-related security bugs in several ways ''; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ris ]; + license = licenses.asl20; + maintainers = with maintainers; [ ris ]; }; } diff --git a/pkgs/tools/security/aflplusplus/libtokencap.nix b/pkgs/tools/security/aflplusplus/libtokencap.nix index 428dff5bdb9cd1..e4af14a80a61ac 100644 --- a/pkgs/tools/security/aflplusplus/libtokencap.nix +++ b/pkgs/tools/security/aflplusplus/libtokencap.nix @@ -27,10 +27,10 @@ stdenv.mkDerivation { chmod +x $out/bin/get-libtokencap-so ''; - meta = { + meta = with lib; { homepage = "https://github.com/AFLplusplus/AFLplusplus"; description = "strcmp & memcmp token capture library"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ris ]; + license = licenses.asl20; + maintainers = with maintainers; [ ris ]; }; } diff --git a/pkgs/tools/security/aflplusplus/qemu.nix b/pkgs/tools/security/aflplusplus/qemu.nix index 950e4eb85cbaa4..1a1d59b7a31d62 100644 --- a/pkgs/tools/security/aflplusplus/qemu.nix +++ b/pkgs/tools/security/aflplusplus/qemu.nix @@ -135,11 +135,11 @@ stdenv.mkDerivation { "--without-default-devices" ]; - meta = { + meta = with lib; { homepage = "https://github.com/AFLplusplus/qemuafl"; description = "Fork of QEMU with AFL++ instrumentation support"; - license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ris ]; - platforms = lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ ris ]; + platforms = platforms.linux; }; } diff --git a/pkgs/tools/security/ghidra/extensions/ghidra-delinker-extension/default.nix b/pkgs/tools/security/ghidra/extensions/ghidra-delinker-extension/default.nix index 22b53b61ab53b7..fa8ae0d10a73f5 100644 --- a/pkgs/tools/security/ghidra/extensions/ghidra-delinker-extension/default.nix +++ b/pkgs/tools/security/ghidra/extensions/ghidra-delinker-extension/default.nix @@ -31,12 +31,12 @@ let data = ./deps.json; }; - meta = { + meta = with lib; { description = "Ghidra extension for delinking executables back to object files"; homepage = "https://github.com/boricj/ghidra-delinker-extension"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.jchw ]; - platforms = lib.platforms.unix; + license = licenses.asl20; + maintainers = [ maintainers.jchw ]; + platforms = platforms.unix; }; }; in diff --git a/pkgs/tools/security/pass/rofi-pass.nix b/pkgs/tools/security/pass/rofi-pass.nix index d861d7fde1a9db..26f1b420b0ee23 100644 --- a/pkgs/tools/security/pass/rofi-pass.nix +++ b/pkgs/tools/security/pass/rofi-pass.nix @@ -92,12 +92,12 @@ stdenv.mkDerivation { passthru.updateScript = unstableGitUpdater { }; - meta = { + meta = with lib; { description = "Script to make rofi work with password-store"; mainProgram = "rofi-pass"; homepage = "https://github.com/carnager/rofi-pass"; - license = lib.licenses.gpl3; - platforms = with lib.platforms; linux; + license = licenses.gpl3; + platforms = with platforms; linux; maintainers = [ ]; }; } diff --git a/pkgs/tools/security/pass/wofi-pass.nix b/pkgs/tools/security/pass/wofi-pass.nix index 68039864ffb5c0..655e9d34782a1f 100644 --- a/pkgs/tools/security/pass/wofi-pass.nix +++ b/pkgs/tools/security/pass/wofi-pass.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { --prefix PATH : "${wrapperPath}" ''; - meta = { + meta = with lib; { description = "Script to make wofi work with password-store"; homepage = "https://github.com/schmidtandreas/wofi-pass"; - maintainers = with lib.maintainers; [ akechishiro ]; - license = lib.licenses.gpl2Plus; - platforms = with lib.platforms; linux; + maintainers = with maintainers; [ akechishiro ]; + license = licenses.gpl2Plus; + platforms = with platforms; linux; mainProgram = "wofi-pass"; }; } diff --git a/pkgs/tools/security/tor/torsocks.nix b/pkgs/tools/security/tor/torsocks.nix index 5092a1e42af929..10e5a14b74e29d 100644 --- a/pkgs/tools/security/tor/torsocks.nix +++ b/pkgs/tools/security/tor/torsocks.nix @@ -54,12 +54,12 @@ stdenv.mkDerivation rec { doInstallCheck = true; installCheckTarget = "check-recursive"; - meta = { + meta = with lib; { description = "Wrapper to safely torify applications"; mainProgram = "torsocks"; homepage = "https://gitlab.torproject.org/tpo/core/torsocks"; - license = lib.licenses.gpl2Plus; - platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ thoughtpolice ]; + license = licenses.gpl2Plus; + platforms = platforms.unix; + maintainers = with maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/tools/text/mir-qualia/default.nix b/pkgs/tools/text/mir-qualia/default.nix index 88a688c1f0a361..efa2e4ee0fbe4e 100644 --- a/pkgs/tools/text/mir-qualia/default.nix +++ b/pkgs/tools/text/mir-qualia/default.nix @@ -16,11 +16,11 @@ pythonPackages.buildPythonApplication rec { sha256 = "1ybq6jb5clh9hw0sp3idp4hjv2gkm9yiaph48gcc208affflc8m9"; }; - meta = { + meta = with lib; { description = "Dynamically enable sections of config files"; mainProgram = "qualia"; homepage = "https://github.com/darkfeline/mir.qualia"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.srhb ]; + license = licenses.asl20; + maintainers = [ maintainers.srhb ]; }; } diff --git a/pkgs/tools/text/multitran/data/default.nix b/pkgs/tools/text/multitran/data/default.nix index 05f4420e8100ce..1f14f9aaf09012 100644 --- a/pkgs/tools/text/multitran/data/default.nix +++ b/pkgs/tools/text/multitran/data/default.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation { sed -i -e 's@\$(DESTDIR)/usr@'$out'@' Makefile ''; - meta = { + meta = with lib; { homepage = "https://multitran.sourceforge.net/"; description = "Multitran data english-russian"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.unix; + license = licenses.gpl2Only; + platforms = platforms.unix; }; } diff --git a/pkgs/tools/text/multitran/libbtree/default.nix b/pkgs/tools/text/multitran/libbtree/default.nix index c000a3c26b333f..cd2de8359372a9 100644 --- a/pkgs/tools/text/multitran/libbtree/default.nix +++ b/pkgs/tools/text/multitran/libbtree/default.nix @@ -16,10 +16,10 @@ stdenv.mkDerivation rec { sed -i -e 's@\$(DESTDIR)/usr@'$out'@' src/Makefile; ''; - meta = { + meta = with lib; { homepage = "https://multitran.sourceforge.net/"; description = "Multitran lib: library for reading Multitran's BTREE database format"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + platforms = platforms.linux; }; } diff --git a/pkgs/tools/text/multitran/libfacet/default.nix b/pkgs/tools/text/multitran/libfacet/default.nix index 8cd5f004b4a072..fbc2b7f0761e32 100644 --- a/pkgs/tools/text/multitran/libfacet/default.nix +++ b/pkgs/tools/text/multitran/libfacet/default.nix @@ -22,10 +22,10 @@ stdenv.mkDerivation rec { src/Makefile; ''; - meta = { + meta = with lib; { homepage = "https://multitran.sourceforge.net/"; description = "Multitran lib: enchanced locale facets"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + platforms = platforms.linux; }; } diff --git a/pkgs/tools/text/multitran/libmtquery/default.nix b/pkgs/tools/text/multitran/libmtquery/default.nix index ce4ede6cd78f1a..861212b9cd165a 100644 --- a/pkgs/tools/text/multitran/libmtquery/default.nix +++ b/pkgs/tools/text/multitran/libmtquery/default.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation rec { sed -i -e 's@/usr/share/multitran@${multitrandata}/share/multitran@' src/config.cc ''; - meta = { + meta = with lib; { homepage = "https://multitran.sourceforge.net/"; description = "Multitran lib: main engine to query translations"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + platforms = platforms.linux; }; } diff --git a/pkgs/tools/text/multitran/libmtsupport/default.nix b/pkgs/tools/text/multitran/libmtsupport/default.nix index 7adb17ad888b4b..0d1d8c0f9077a3 100644 --- a/pkgs/tools/text/multitran/libmtsupport/default.nix +++ b/pkgs/tools/text/multitran/libmtsupport/default.nix @@ -16,10 +16,10 @@ stdenv.mkDerivation rec { sed -i -e 's@\$(DESTDIR)/usr@'$out'@' src/Makefile; ''; - meta = { + meta = with lib; { homepage = "https://multitran.sourceforge.net/"; description = "Multitran lib: basic useful functions"; - license = lib.licenses.gpl2Only; - platforms = lib.platforms.linux; + license = licenses.gpl2Only; + platforms = platforms.linux; }; } diff --git a/pkgs/tools/text/multitran/mtutils/default.nix b/pkgs/tools/text/multitran/mtutils/default.nix index 881900208c0b61..cad497ac6d21fd 100644 --- a/pkgs/tools/text/multitran/mtutils/default.nix +++ b/pkgs/tools/text/multitran/mtutils/default.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { src/converter.cc; ''; - meta = { + meta = with lib; { homepage = "https://multitran.sourceforge.net/"; description = "Multitran: simple command line utilities for dictionary maintenance"; mainProgram = "mtquery"; - license = lib.licenses.gpl2Only; + license = licenses.gpl2Only; maintainers = [ ]; - platforms = with lib.platforms; linux; + platforms = with platforms; linux; }; } diff --git a/pkgs/tools/text/ruplacer/default.nix b/pkgs/tools/text/ruplacer/default.nix index 5f7d766089a2ca..355697c32aca6b 100644 --- a/pkgs/tools/text/ruplacer/default.nix +++ b/pkgs/tools/text/ruplacer/default.nix @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-vdq2nEFhvteQEqEZNbSegivvkU6cTxSmZLc6oaxLkwY="; - meta = { + meta = with lib; { description = "Find and replace text in source files"; mainProgram = "ruplacer"; homepage = "https://github.com/TankerHQ/ruplacer"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ Br1ght0ne ]; + license = licenses.bsd3; + maintainers = with maintainers; [ Br1ght0ne ]; }; } diff --git a/pkgs/tools/wayland/xwaylandvideobridge/default.nix b/pkgs/tools/wayland/xwaylandvideobridge/default.nix index fcc46987c74a30..264a3fec9617c8 100644 --- a/pkgs/tools/wayland/xwaylandvideobridge/default.nix +++ b/pkgs/tools/wayland/xwaylandvideobridge/default.nix @@ -47,16 +47,16 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = [ "-DQT_MAJOR_VERSION=${lib.versions.major qtbase.version}" ]; - meta = { + meta = with lib; { description = "Utility to allow streaming Wayland windows to X applications"; homepage = "https://invent.kde.org/system/xwaylandvideobridge"; - license = with lib.licenses; [ + license = with licenses; [ bsd3 cc0 gpl2Plus ]; - maintainers = with lib.maintainers; [ stepbrobd ]; - platforms = lib.platforms.linux; + maintainers = with maintainers; [ stepbrobd ]; + platforms = platforms.linux; mainProgram = "xwaylandvideobridge"; }; })