diff --git a/pkgs/by-name/_0/_0xpropo/package.nix b/pkgs/by-name/_0/_0xpropo/package.nix index 704d8e0fdc05..66840e21f966 100644 --- a/pkgs/by-name/_0/_0xpropo/package.nix +++ b/pkgs/by-name/_0/_0xpropo/package.nix @@ -23,12 +23,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Proportional version of the 0xProto font"; homepage = "https://github.com/0xType/0xPropo"; changelog = "https://github.com/0xType/0xPropo/releases/tag/${version}"; - license = licenses.ofl; - maintainers = with maintainers; [ vinnymeller ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ vinnymeller ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/_3/_3270font/package.nix b/pkgs/by-name/_3/_3270font/package.nix index 3df18ecf8743..bfa7ee538508 100644 --- a/pkgs/by-name/_3/_3270font/package.nix +++ b/pkgs/by-name/_3/_3270font/package.nix @@ -29,15 +29,15 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Monospaced font based on IBM 3270 terminals"; homepage = "https://github.com/rbanffy/3270font"; changelog = "https://github.com/rbanffy/3270font/blob/v${version}/CHANGELOG.md"; license = [ - licenses.bsd3 - licenses.ofl + lib.licenses.bsd3 + lib.licenses.ofl ]; - maintainers = [ ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/_6/_6tunnel/package.nix b/pkgs/by-name/_6/_6tunnel/package.nix index b0f025ea297c..d852dcb47a94 100644 --- a/pkgs/by-name/_6/_6tunnel/package.nix +++ b/pkgs/by-name/_6/_6tunnel/package.nix @@ -18,13 +18,13 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Tunnelling for application that don't speak IPv6"; mainProgram = "6tunnel"; homepage = "https://github.com/wojtekka/6tunnel"; changelog = "https://github.com/wojtekka/6tunnel/blob/${version}/ChangeLog"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ Br1ght0ne ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ Br1ght0ne ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/a5/a52dec/package.nix b/pkgs/by-name/a5/a52dec/package.nix index c9223b7061fa..ca0987619bcc 100644 --- a/pkgs/by-name/a5/a52dec/package.nix +++ b/pkgs/by-name/a5/a52dec/package.nix @@ -33,13 +33,13 @@ stdenv.mkDerivation rec { # but it's better to disable tests than loose ASLR on i686 doCheck = !stdenv.hostPlatform.isi686; - meta = with lib; { + meta = { description = "ATSC A/52 stream decoder"; homepage = "https://liba52.sourceforge.io/"; changelog = "https://git.adelielinux.org/community/a52dec/-/blob/v${version}/ChangeLog?ref_type=tags"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ wegank ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ wegank ]; mainProgram = "a52dec"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ae/aeacus/package.nix b/pkgs/by-name/ae/aeacus/package.nix index b1264a51eb4b..13cee9f292c6 100644 --- a/pkgs/by-name/ae/aeacus/package.nix +++ b/pkgs/by-name/ae/aeacus/package.nix @@ -25,13 +25,13 @@ buildGoModule rec { # Tests require network access doCheck = false; - meta = with lib; { + meta = { description = "Vulnerability remediation scoring system"; homepage = "https://github.com/elysium-suite/aeacus"; changelog = "https://github.com/elysium-suite/aeacus/releases/tag/v${version}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "aeacus"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ag/agebox/package.nix b/pkgs/by-name/ag/agebox/package.nix index 5e71b011056a..e664739e82d9 100644 --- a/pkgs/by-name/ag/agebox/package.nix +++ b/pkgs/by-name/ag/agebox/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-X main.Version=${version}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/slok/agebox"; changelog = "https://github.com/slok/agebox/releases/tag/v${version}"; description = "Age based repository file encryption gitops tool"; - license = licenses.asl20; - maintainers = with maintainers; [ lesuisse ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lesuisse ]; mainProgram = "agebox"; }; } diff --git a/pkgs/by-name/ag/agi/package.nix b/pkgs/by-name/ag/agi/package.nix index 7287cd9eba10..2b4f1c180195 100644 --- a/pkgs/by-name/ag/agi/package.nix +++ b/pkgs/by-name/ag/agi/package.nix @@ -68,14 +68,14 @@ stdenvNoCC.mkDerivation rec { ]; }); - meta = with lib; { + meta = { description = "Android GPU Inspector"; homepage = "https://gpuinspector.dev"; changelog = "https://github.com/google/agi/releases/tag/v${version}"; platforms = [ "x86_64-linux" ]; - license = licenses.asl20; - maintainers = with maintainers; [ kashw2 ]; - sourceProvenance = with sourceTypes; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kashw2 ]; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode binaryNativeCode ]; diff --git a/pkgs/by-name/ah/aha/package.nix b/pkgs/by-name/ah/aha/package.nix index 279f148e1359..ebbdd7ca7348 100644 --- a/pkgs/by-name/ah/aha/package.nix +++ b/pkgs/by-name/ah/aha/package.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "ANSI HTML Adapter"; mainProgram = "aha"; longDescription = '' @@ -27,11 +27,11 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/theZiz/aha"; changelog = "https://github.com/theZiz/aha/blob/${version}/CHANGELOG"; - license = with licenses; [ + license = with lib.licenses; [ lgpl2Plus mpl11 ]; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/an/ansible-doctor/package.nix b/pkgs/by-name/an/ansible-doctor/package.nix index 7f73118ba3db..40ca46b861da 100644 --- a/pkgs/by-name/an/ansible-doctor/package.nix +++ b/pkgs/by-name/an/ansible-doctor/package.nix @@ -53,12 +53,12 @@ python3.pkgs.buildPythonApplication rec { "ansibledoctor" ]; - meta = with lib; { + meta = { description = "Annotation based documentation for your Ansible roles"; mainProgram = "ansible-doctor"; homepage = "https://github.com/thegeeklab/ansible-doctor"; changelog = "https://github.com/thegeeklab/ansible-doctor/releases/tag/v${version}"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ tboerger ]; + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ tboerger ]; }; } diff --git a/pkgs/by-name/an/ansible-language-server/package.nix b/pkgs/by-name/an/ansible-language-server/package.nix index 5a474fa7070a..4ddf84b6e39d 100644 --- a/pkgs/by-name/an/ansible-language-server/package.nix +++ b/pkgs/by-name/an/ansible-language-server/package.nix @@ -34,12 +34,12 @@ buildNpmPackage rec { npmPackFlags = [ "--ignore-scripts" ]; passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { changelog = "https://github.com/ansible/ansible-language-server/releases/tag/v${version}"; description = "Ansible Language Server"; mainProgram = "ansible-language-server"; homepage = "https://github.com/ansible/ansible-language-server"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/at/atasm/package.nix b/pkgs/by-name/at/atasm/package.nix index 5021f93eaf2b..d7483ec4cd2a 100644 --- a/pkgs/by-name/at/atasm/package.nix +++ b/pkgs/by-name/at/atasm/package.nix @@ -55,12 +55,12 @@ stdenv.mkDerivation rec { mv docs/* $out/share/doc/${pname} ''; - meta = with lib; { + meta = { homepage = "https://github.com/CycoPH/atasm"; description = "Commandline 6502 assembler compatible with Mac/65"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; changelog = "https://github.com/CycoPH/atasm/releases/tag/V${version}"; - maintainers = with maintainers; [ ]; - platforms = with platforms; unix; + maintainers = with lib.maintainers; [ ]; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/at/atftp/package.nix b/pkgs/by-name/at/atftp/package.nix index 5bcdff69e44d..38ab992f8fc1 100644 --- a/pkgs/by-name/at/atftp/package.nix +++ b/pkgs/by-name/at/atftp/package.nix @@ -48,12 +48,12 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Advanced tftp tools"; changelog = "https://sourceforge.net/p/atftp/code/ci/v${version}/tree/Changelog"; homepage = "https://sourceforge.net/projects/atftp/"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/at/athens/package.nix b/pkgs/by-name/at/athens/package.nix index 8fbfa6f1b90a..55ab92826851 100644 --- a/pkgs/by-name/at/athens/package.nix +++ b/pkgs/by-name/at/athens/package.nix @@ -35,16 +35,16 @@ buildGoModule (finalAttrs: { tests.version = testers.testVersion { package = athens; }; }; - meta = with lib; { + meta = { description = "Go module datastore and proxy"; homepage = "https://github.com/gomods/athens"; - changelog = "https://github.com/gomods/athens/releases/tag/v${version}"; - license = licenses.mit; + changelog = "https://github.com/gomods/athens/releases/tag/v${finalAttrs.version}"; + license = lib.licenses.mit; mainProgram = "athens"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ katexochen malt3 ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/at/atomic-swap/package.nix b/pkgs/by-name/at/atomic-swap/package.nix index 5267433fcf69..0d3d52c2f62d 100644 --- a/pkgs/by-name/at/atomic-swap/package.nix +++ b/pkgs/by-name/at/atomic-swap/package.nix @@ -40,12 +40,12 @@ buildGoModule { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/AthanorLabs/atomic-swap"; changelog = "https://github.com/AthanorLabs/atomic-swap/releases/tag/v${version}"; description = "ETH-XMR atomic swap implementation"; - license = with licenses; [ lgpl3Only ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ lgpl3Only ]; + maintainers = with lib.maintainers; [ happysalada lord-valen ]; diff --git a/pkgs/by-name/au/audiness/package.nix b/pkgs/by-name/au/audiness/package.nix index dd4235aac3a0..2a221ae10257 100644 --- a/pkgs/by-name/au/audiness/package.nix +++ b/pkgs/by-name/au/audiness/package.nix @@ -31,12 +31,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "audiness" ]; - meta = with lib; { + meta = { description = "CLI tool to interact with Nessus"; homepage = "https://github.com/audiusGmbH/audiness"; changelog = "https://github.com/audiusGmbH/audiness/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "audiness"; }; } diff --git a/pkgs/by-name/au/audion/package.nix b/pkgs/by-name/au/audion/package.nix index 6edf94d93dc9..9a44a37e7f40 100644 --- a/pkgs/by-name/au/audion/package.nix +++ b/pkgs/by-name/au/audion/package.nix @@ -18,12 +18,12 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; cargoHash = "sha256-kIrbHt6aAUgdF4Jx/aUOYpiBj1+pyFLCVak6R+JN2Ug="; - meta = with lib; { + meta = { description = "Ping the host continuously and write results to a file"; homepage = "https://github.com/audiusGmbH/audion"; changelog = "https://github.com/audiusGmbH/audion/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "audion"; }; } diff --git a/pkgs/by-name/au/audiowaveform/package.nix b/pkgs/by-name/au/audiowaveform/package.nix index ba34af45f68f..d133507c374e 100644 --- a/pkgs/by-name/au/audiowaveform/package.nix +++ b/pkgs/by-name/au/audiowaveform/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { # One test is failing, see PR #101947 doCheck = false; - meta = with lib; { + meta = { description = "C++ program to generate waveform data and render waveform images from audio files"; longDescription = '' audiowaveform is a C++ command-line application that generates waveform data from either MP3, WAV, FLAC, or Ogg Vorbis format audio files. @@ -55,9 +55,9 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/bbc/audiowaveform"; changelog = "https://github.com/bbc/audiowaveform/blob/${version}/ChangeLog"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ edbentley ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ edbentley ]; mainProgram = "audiowaveform"; }; } diff --git a/pkgs/by-name/au/augeas/package.nix b/pkgs/by-name/au/augeas/package.nix index 7f1dc2d14381..92bb4e031468 100644 --- a/pkgs/by-name/au/augeas/package.nix +++ b/pkgs/by-name/au/augeas/package.nix @@ -62,13 +62,13 @@ stdenv.mkDerivation rec { "dev" ]; - meta = with lib; { + meta = { description = "Configuration editing tool"; - license = licenses.lgpl21Only; + license = lib.licenses.lgpl21Only; homepage = "https://augeas.net/"; changelog = "https://github.com/hercules-team/augeas/releases/tag/release-${version}"; mainProgram = "augtool"; - maintainers = with maintainers; [ offline ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ offline ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/au/auth0-cli/package.nix b/pkgs/by-name/au/auth0-cli/package.nix index 641488703fb9..146739a8a563 100644 --- a/pkgs/by-name/au/auth0-cli/package.nix +++ b/pkgs/by-name/au/auth0-cli/package.nix @@ -47,12 +47,12 @@ buildGoModule rec { subPackages = [ "cmd/auth0" ]; - meta = with lib; { + meta = { description = "Supercharge your developer workflow"; homepage = "https://auth0.github.io/auth0-cli"; changelog = "https://github.com/auth0/auth0-cli/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ matthewcroughan ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthewcroughan ]; mainProgram = "auth0"; }; } diff --git a/pkgs/by-name/au/authentik/package.nix b/pkgs/by-name/au/authentik/package.nix index 4832148e226d..771cbbedf885 100644 --- a/pkgs/by-name/au/authentik/package.nix +++ b/pkgs/by-name/au/authentik/package.nix @@ -25,14 +25,14 @@ let hash = "sha256-idShMSYIrf3ViG9VFNGNu6TSjBz3Q+GJMMeCzcJwfG4="; }; - meta = with lib; { + meta = { description = "Authentication glue you need"; changelog = "https://github.com/goauthentik/authentik/releases/tag/version%2F${version}"; homepage = "https://goauthentik.io/"; - license = licenses.mit; - platforms = platforms.linux; + license = lib.licenses.mit; + platforms = lib.platforms.linux; broken = stdenvNoCC.buildPlatform != stdenvNoCC.hostPlatform; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jvanbruegge risson ]; diff --git a/pkgs/by-name/au/autobloody/package.nix b/pkgs/by-name/au/autobloody/package.nix index a07870e2c239..d2f0da7a43f4 100644 --- a/pkgs/by-name/au/autobloody/package.nix +++ b/pkgs/by-name/au/autobloody/package.nix @@ -36,12 +36,12 @@ python3.pkgs.buildPythonApplication rec { "autobloody" ]; - meta = with lib; { + meta = { description = "Tool to automatically exploit Active Directory privilege escalation paths"; homepage = "https://github.com/CravateRouge/autobloody"; changelog = "https://github.com/CravateRouge/autobloody/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "autobloody"; }; } diff --git a/pkgs/by-name/au/autocorrect/package.nix b/pkgs/by-name/au/autocorrect/package.nix index 24c50e0e5f54..13c8c0c6c78a 100644 --- a/pkgs/by-name/au/autocorrect/package.nix +++ b/pkgs/by-name/au/autocorrect/package.nix @@ -34,12 +34,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "Linter and formatter for help you improve copywriting, to correct spaces, punctuations between CJK (Chinese, Japanese, Korean)"; mainProgram = "autocorrect"; homepage = "https://huacnlee.github.io/autocorrect"; changelog = "https://github.com/huacnlee/autocorrect/releases/tag/v${version}"; - license = licenses.mit; - maintainers = [ ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/by-name/au/automatic-timezoned/package.nix b/pkgs/by-name/au/automatic-timezoned/package.nix index 9229f6a43161..a09130b6596c 100644 --- a/pkgs/by-name/au/automatic-timezoned/package.nix +++ b/pkgs/by-name/au/automatic-timezoned/package.nix @@ -18,13 +18,13 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; cargoHash = "sha256-H4bFSqt8hOH6tF2WO1mQqqmbK9U2qlFC+7swz/xj1I8="; - meta = with lib; { + meta = { description = "Automatically update system timezone based on location"; homepage = "https://github.com/maxbrunet/automatic-timezoned"; changelog = "https://github.com/maxbrunet/automatic-timezoned/blob/v${version}/CHANGELOG.md"; - license = licenses.gpl3; - maintainers = with maintainers; [ maxbrunet ]; - platforms = platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ maxbrunet ]; + platforms = lib.platforms.linux; mainProgram = "automatic-timezoned"; }; } diff --git a/pkgs/by-name/ay/ayatana-ido/package.nix b/pkgs/by-name/ay/ayatana-ido/package.nix index 904788c65c51..6d50bbecd4f4 100644 --- a/pkgs/by-name/ay/ayatana-ido/package.nix +++ b/pkgs/by-name/ay/ayatana-ido/package.nix @@ -29,15 +29,15 @@ stdenv.mkDerivation rec { strictDeps = true; - meta = with lib; { + meta = { description = "Ayatana Display Indicator Objects"; homepage = "https://github.com/AyatanaIndicators/ayatana-ido"; changelog = "https://github.com/AyatanaIndicators/ayatana-ido/blob/${version}/ChangeLog"; license = [ - licenses.lgpl3Plus - licenses.lgpl21Plus + lib.licenses.lgpl3Plus + lib.licenses.lgpl21Plus ]; - maintainers = [ maintainers.nickhu ]; - platforms = platforms.linux; + maintainers = [ lib.maintainers.nickhu ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/az/azure-storage-azcopy/package.nix b/pkgs/by-name/az/azure-storage-azcopy/package.nix index 412976e8a9b1..fd6b6246a65a 100644 --- a/pkgs/by-name/az/azure-storage-azcopy/package.nix +++ b/pkgs/by-name/az/azure-storage-azcopy/package.nix @@ -25,11 +25,11 @@ buildGoModule rec { ln -rs "$out/bin/azure-storage-azcopy" "$out/bin/azcopy" ''; - meta = with lib; { + meta = { description = "New Azure Storage data transfer utility - AzCopy v10"; homepage = "https://github.com/Azure/azure-storage-azcopy"; changelog = "https://github.com/Azure/azure-storage-azcopy/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ kashw2 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kashw2 ]; }; } diff --git a/pkgs/by-name/bc/bcg729/package.nix b/pkgs/by-name/bc/bcg729/package.nix index 4a34980a72d6..f21ffa6b0533 100644 --- a/pkgs/by-name/bc/bcg729/package.nix +++ b/pkgs/by-name/bc/bcg729/package.nix @@ -25,12 +25,12 @@ stdenv.mkDerivation rec { --replace '\$'{exec_prefix}/'$'{CMAKE_INSTALL_LIBDIR} '$'{CMAKE_INSTALL_FULL_LIBDIR} ''; - meta = with lib; { + meta = { description = "Opensource implementation of both encoder and decoder of the ITU G729 Annex A/B speech codec"; homepage = "https://linphone.org/technical-corner/bcg729"; changelog = "https://gitlab.linphone.org/BC/public/bcg729/raw/${version}/NEWS"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ c0bw3b ]; - platforms = platforms.all; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ c0bw3b ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/bp/bpfmon/package.nix b/pkgs/by-name/bp/bpfmon/package.nix index 3671c9bf705b..1f539d04050a 100644 --- a/pkgs/by-name/bp/bpfmon/package.nix +++ b/pkgs/by-name/bp/bpfmon/package.nix @@ -26,13 +26,13 @@ stdenv.mkDerivation rec { "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "BPF based visual packet rate monitor"; mainProgram = "bpfmon"; homepage = "https://github.com/bbonev/bpfmon"; changelog = "https://github.com/bbonev/bpfmon/releases/tag/v${version}"; - maintainers = with maintainers; [ arezvov ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ arezvov ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bp/bpftrace/package.nix b/pkgs/by-name/bp/bpftrace/package.nix index 521ea29a4073..37c1061e7358 100644 --- a/pkgs/by-name/bp/bpftrace/package.nix +++ b/pkgs/by-name/bp/bpftrace/package.nix @@ -75,19 +75,19 @@ stdenv.mkDerivation rec { bpf = nixosTests.bpf; }; - meta = with lib; { + meta = { description = "High-level tracing language for Linux eBPF"; homepage = "https://github.com/bpftrace/bpftrace"; changelog = "https://github.com/bpftrace/bpftrace/releases/tag/v${version}"; mainProgram = "bpftrace"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ rvl thoughtpolice martinetd mfrw illustris ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bt/btcd/package.nix b/pkgs/by-name/bt/btcd/package.nix index 97655efad17b..78fb2fef94e2 100644 --- a/pkgs/by-name/bt/btcd/package.nix +++ b/pkgs/by-name/bt/btcd/package.nix @@ -29,11 +29,11 @@ buildGoModule rec { cp sample-btcd.conf $DIR ''; - meta = with lib; { + meta = { description = "Alternative full node bitcoin implementation written in Go (golang)"; homepage = "https://github.com/btcsuite/btcd"; changelog = "https://github.com/btcsuite/btcd/releases/tag/v${version}"; - license = licenses.isc; - maintainers = with maintainers; [ _0xB10C ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ _0xB10C ]; }; } diff --git a/pkgs/by-name/bt/btcpayserver/package.nix b/pkgs/by-name/bt/btcpayserver/package.nix index 6c1eeff9b5c6..51c60db7e47b 100644 --- a/pkgs/by-name/bt/btcpayserver/package.nix +++ b/pkgs/by-name/bt/btcpayserver/package.nix @@ -30,15 +30,15 @@ buildDotnetModule rec { mv $out/bin/{BTCPayServer,btcpayserver} || : ''; - meta = with lib; { + meta = { description = "Self-hosted, open-source cryptocurrency payment processor"; homepage = "https://btcpayserver.org"; changelog = "https://github.com/btcpayserver/btcpayserver/blob/v${version}/Changelog.md"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ kcalvinalvin erikarvstedt ]; - license = licenses.mit; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/bt/btop/package.nix b/pkgs/by-name/bt/btop/package.nix index aa6a0d40ecbf..4fbf5980367b 100644 --- a/pkgs/by-name/bt/btop/package.nix +++ b/pkgs/by-name/bt/btop/package.nix @@ -51,13 +51,13 @@ stdenv.mkDerivation rec { versionCheckProgramArg = "--version"; doInstallCheck = true; - meta = with lib; { + meta = { description = "Monitor of resources"; homepage = "https://github.com/aristocratos/btop"; changelog = "https://github.com/aristocratos/btop/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ khaneliman rmcgibbo ]; diff --git a/pkgs/by-name/bt/btrfs-progs/package.nix b/pkgs/by-name/bt/btrfs-progs/package.nix index dead16e648bf..225d6038e37e 100644 --- a/pkgs/by-name/bt/btrfs-progs/package.nix +++ b/pkgs/by-name/bt/btrfs-progs/package.nix @@ -91,13 +91,13 @@ stdenv.mkDerivation rec { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Utilities for the btrfs filesystem"; homepage = "https://btrfs.readthedocs.io/en/latest/"; changelog = "https://github.com/kdave/btrfs-progs/raw/v${version}/CHANGES"; - license = licenses.gpl2Only; + license = lib.licenses.gpl2Only; mainProgram = "btrfs"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ raskin ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/bu/buck2/package.nix b/pkgs/by-name/bu/buck2/package.nix index 9ce373f75736..d4890b3460e4 100644 --- a/pkgs/by-name/bu/buck2/package.nix +++ b/pkgs/by-name/bu/buck2/package.nix @@ -140,16 +140,16 @@ stdenv.mkDerivation { }; }; - meta = with lib; { + meta = { description = "Fast, hermetic, multi-language build system"; homepage = "https://buck2.build"; changelog = "https://github.com/facebook/buck2/releases/tag/${version}"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; mainProgram = "buck2"; - maintainers = with maintainers; [ thoughtpolice ]; + maintainers = with lib.maintainers; [ thoughtpolice ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/bu/bun/package.nix b/pkgs/by-name/bu/bun/package.nix index 7f2af2db0733..86523a3946a1 100644 --- a/pkgs/by-name/bu/bun/package.nix +++ b/pkgs/by-name/bu/bun/package.nix @@ -120,20 +120,20 @@ stdenvNoCC.mkDerivation rec { done ''; }; - meta = with lib; { + meta = { homepage = "https://bun.sh"; changelog = "https://bun.sh/blog/bun-v${version}"; description = "Incredibly fast JavaScript runtime, bundler, transpiler and package manager – all in one"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; longDescription = '' All in one fast & easy-to-use tool. Instead of 1,000 node_modules for development, you only need bun. ''; - license = with licenses; [ + license = with lib.licenses; [ mit # bun core lgpl21Only # javascriptcore and webkit ]; mainProgram = "bun"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ DAlperin jk thilobillerbeck diff --git a/pkgs/by-name/cj/cjose/package.nix b/pkgs/by-name/cj/cjose/package.nix index 53785ab7cec0..38f042660a37 100644 --- a/pkgs/by-name/cj/cjose/package.nix +++ b/pkgs/by-name/cj/cjose/package.nix @@ -46,12 +46,12 @@ stdenv.mkDerivation rec { "--with-openssl=${openssl.dev}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/zmartzone/cjose"; changelog = "https://github.com/zmartzone/cjose/blob/${version}/CHANGELOG.md"; description = "C library for Javascript Object Signing and Encryption. This is a maintained fork of the original project"; - license = licenses.mit; - maintainers = with maintainers; [ midchildan ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ midchildan ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/cq/cq/package.nix b/pkgs/by-name/cq/cq/package.nix index 59b7637022f7..406a874b8748 100644 --- a/pkgs/by-name/cq/cq/package.nix +++ b/pkgs/by-name/cq/cq/package.nix @@ -36,12 +36,12 @@ buildGraalvmNativeImage rec { "-H:ReflectionConfigurationFiles=${build-src}/package/reflection-config.json" ]; - meta = with lib; { + meta = { description = "Clojure Query: A Command-line Data Processor for JSON, YAML, EDN, XML and more"; homepage = "https://github.com/markus-wa/cq"; changelog = "https://github.com/markus-wa/cq/releases/releases/tag/${version}"; - license = licenses.epl20; - maintainers = with maintainers; [ farcaller ]; - platforms = platforms.unix; + license = lib.licenses.epl20; + maintainers = with lib.maintainers; [ farcaller ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/cs/csvq/package.nix b/pkgs/by-name/cs/csvq/package.nix index fa1b244dec0f..9fc475332fb4 100644 --- a/pkgs/by-name/cs/csvq/package.nix +++ b/pkgs/by-name/cs/csvq/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { version = "csvq version ${version}"; }; - meta = with lib; { + meta = { description = "SQL-like query language for CSV"; mainProgram = "csvq"; homepage = "https://mithrandie.github.io/csvq/"; changelog = "https://github.com/mithrandie/csvq/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ tomodachi94 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tomodachi94 ]; }; } diff --git a/pkgs/by-name/cu/cups-printers/package.nix b/pkgs/by-name/cu/cups-printers/package.nix index 754a8ee4b9c2..4cbc1a7dbb40 100644 --- a/pkgs/by-name/cu/cups-printers/package.nix +++ b/pkgs/by-name/cu/cups-printers/package.nix @@ -34,12 +34,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "cups_printers" ]; - meta = with lib; { + meta = { description = "Tool for interacting with a CUPS server"; homepage = "https://github.com/audiusGmbH/cups-printers"; changelog = "https://github.com/audiusGmbH/cups-printers/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "cups-printers"; }; } diff --git a/pkgs/by-name/cv/cvemap/package.nix b/pkgs/by-name/cv/cvemap/package.nix index 1e56aad3321c..df210bc5c701 100644 --- a/pkgs/by-name/cv/cvemap/package.nix +++ b/pkgs/by-name/cv/cvemap/package.nix @@ -26,12 +26,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Tool to work with CVEs"; homepage = "https://github.com/projectdiscovery/cvemap"; changelog = "https://github.com/projectdiscovery/cvemap/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "cvemap"; }; } diff --git a/pkgs/by-name/cw/cwltool/package.nix b/pkgs/by-name/cw/cwltool/package.nix index 6cde031522fc..df62af94dcd7 100644 --- a/pkgs/by-name/cw/cwltool/package.nix +++ b/pkgs/by-name/cw/cwltool/package.nix @@ -99,12 +99,12 @@ py.pkgs.buildPythonApplication rec { "cwltool" ]; - meta = with lib; { + meta = { description = "Common Workflow Language reference implementation"; homepage = "https://www.commonwl.org"; changelog = "https://github.com/common-workflow-language/cwltool/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ veprbl ]; mainProgram = "cwltool"; }; } diff --git a/pkgs/by-name/cz/cz-cli/package.nix b/pkgs/by-name/cz/cz-cli/package.nix index 5a40f248b350..30f2b41bbffa 100644 --- a/pkgs/by-name/cz/cz-cli/package.nix +++ b/pkgs/by-name/cz/cz-cli/package.nix @@ -17,14 +17,14 @@ buildNpmPackage rec { npmDepsHash = "sha256-zQ0T/1khnn+CXm/3yc9nANL0ROEEE03U5fV57btEmPg="; - meta = with lib; { + meta = { description = "Commitizen command line utility"; homepage = "https://commitizen.github.io/cz-cli"; changelog = "https://github.com/commitizen/cz-cli/releases/tag/v${version}"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ freezeboy natsukium ]; - license = licenses.mit; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/d2/d2/package.nix b/pkgs/by-name/d2/d2/package.nix index 8a60df382f4d..fc4e2bbb31c3 100644 --- a/pkgs/by-name/d2/d2/package.nix +++ b/pkgs/by-name/d2/d2/package.nix @@ -47,13 +47,13 @@ buildGo123Module rec { version = "v${version}"; }; - meta = with lib; { + meta = { description = "Modern diagram scripting language that turns text to diagrams"; mainProgram = "d2"; homepage = "https://d2lang.com"; changelog = "https://github.com/terrastruct/d2/releases/tag/v${version}"; - license = licenses.mpl20; - maintainers = with maintainers; [ + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ dit7ya kashw2 ]; diff --git a/pkgs/by-name/dc/dconf-editor/package.nix b/pkgs/by-name/dc/dconf-editor/package.nix index 522c615e18bd..49eb2b4f121c 100644 --- a/pkgs/by-name/dc/dconf-editor/package.nix +++ b/pkgs/by-name/dc/dconf-editor/package.nix @@ -69,13 +69,13 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "GSettings editor for GNOME"; mainProgram = "dconf-editor"; homepage = "https://apps.gnome.org/DconfEditor/"; changelog = "https://gitlab.gnome.org/GNOME/dconf-editor/-/blob/${version}/NEWS?ref_type=tags"; - license = licenses.gpl3Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/dd/ddcutil/package.nix b/pkgs/by-name/dd/ddcutil/package.nix index 12754468dea7..a0241abe6cc5 100644 --- a/pkgs/by-name/dd/ddcutil/package.nix +++ b/pkgs/by-name/dd/ddcutil/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { homepage = "http://www.ddcutil.com/"; description = "Query and change Linux monitor settings using DDC/CI and USB"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ rnhmjoj ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ rnhmjoj ]; changelog = "https://github.com/rockowitz/ddcutil/blob/v${version}/CHANGELOG.md"; mainProgram = "ddcutil"; }; diff --git a/pkgs/by-name/dg/dgoss/package.nix b/pkgs/by-name/dg/dgoss/package.nix index 090946d89f96..e267ed5cf799 100644 --- a/pkgs/by-name/dg/dgoss/package.nix +++ b/pkgs/by-name/dg/dgoss/package.nix @@ -36,13 +36,13 @@ resholve.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/goss-org/goss/blob/v${version}/extras/dgoss/README.md"; changelog = "https://github.com/goss-org/goss/releases/tag/v${version}"; description = "Convenience wrapper around goss that aims to bring the simplicity of goss to docker containers"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ hyzual anthonyroussel ]; diff --git a/pkgs/by-name/dh/dhcpdump/package.nix b/pkgs/by-name/dh/dhcpdump/package.nix index 02f611df8e56..9505f5d74631 100644 --- a/pkgs/by-name/dh/dhcpdump/package.nix +++ b/pkgs/by-name/dh/dhcpdump/package.nix @@ -38,13 +38,13 @@ stdenv.mkDerivation rec { runHook postBuild ''; - meta = with lib; { + meta = { description = "Tool for visualization of DHCP packets as recorded and output by tcpdump to analyze DHCP server responses"; homepage = "https://github.com/bbonev/dhcpdump"; changelog = "https://github.com/bbonev/dhcpdump/releases/tag/v${version}"; - platforms = platforms.linux; - maintainers = with maintainers; [ nickcao ]; - license = licenses.bsd2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ nickcao ]; + license = lib.licenses.bsd2; mainProgram = "dhcpdump"; }; } diff --git a/pkgs/by-name/dn/dnscontrol/package.nix b/pkgs/by-name/dn/dnscontrol/package.nix index c20f49edb89d..6811e0df0e7f 100644 --- a/pkgs/by-name/dn/dnscontrol/package.nix +++ b/pkgs/by-name/dn/dnscontrol/package.nix @@ -48,12 +48,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Synchronize your DNS to multiple providers from a simple DSL"; homepage = "https://dnscontrol.org/"; changelog = "https://github.com/StackExchange/dnscontrol/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; mainProgram = "dnscontrol"; }; } diff --git a/pkgs/by-name/dn/dnsmonster/package.nix b/pkgs/by-name/dn/dnsmonster/package.nix index 566998865506..64c40c4d9f54 100644 --- a/pkgs/by-name/dn/dnsmonster/package.nix +++ b/pkgs/by-name/dn/dnsmonster/package.nix @@ -27,12 +27,12 @@ buildGoModule rec { "-X=github.com/mosajjal/dnsmonster/util.releaseVersion=${version}" ]; - meta = with lib; { + meta = { description = "Passive DNS Capture and Monitoring Toolkit"; homepage = "https://github.com/mosajjal/dnsmonster"; changelog = "https://github.com/mosajjal/dnsmonster/releases/tag/v${version}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ fab ]; broken = stdenv.hostPlatform.isDarwin; mainProgram = "dnsmonster"; }; diff --git a/pkgs/by-name/dn/dnsperf/package.nix b/pkgs/by-name/dn/dnsperf/package.nix index 6c6abd4db0b7..a69b594b7348 100644 --- a/pkgs/by-name/dn/dnsperf/package.nix +++ b/pkgs/by-name/dn/dnsperf/package.nix @@ -46,14 +46,14 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Tools for DNS benchmaring"; homepage = "https://www.dns-oarc.net/tools/dnsperf"; changelog = "https://github.com/DNS-OARC/dnsperf/releases/tag/v${version}"; - license = licenses.isc; - platforms = platforms.unix; + license = lib.licenses.isc; + platforms = lib.platforms.unix; mainProgram = "dnsperf"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ vcunat mfrw ]; diff --git a/pkgs/by-name/dn/dnsrecon/package.nix b/pkgs/by-name/dn/dnsrecon/package.nix index 5e51dc1b2fc6..d8841ce7c0b7 100644 --- a/pkgs/by-name/dn/dnsrecon/package.nix +++ b/pkgs/by-name/dn/dnsrecon/package.nix @@ -32,12 +32,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "dnsrecon" ]; - meta = with lib; { + meta = { description = "DNS Enumeration script"; homepage = "https://github.com/darkoperator/dnsrecon"; changelog = "https://github.com/darkoperator/dnsrecon/releases/tag/${version}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ c0bw3b fab ]; diff --git a/pkgs/by-name/dn/dnstwist/package.nix b/pkgs/by-name/dn/dnstwist/package.nix index 22162241e6b3..98b0eb4514d7 100644 --- a/pkgs/by-name/dn/dnstwist/package.nix +++ b/pkgs/by-name/dn/dnstwist/package.nix @@ -36,12 +36,12 @@ python3.pkgs.buildPythonApplication rec { "dnstwist" ]; - meta = with lib; { + meta = { description = "Domain name permutation engine for detecting homograph phishing attacks"; homepage = "https://github.com/elceef/dnstwist"; changelog = "https://github.com/elceef/dnstwist/releases/tag/${version}"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "dnstwist"; }; } diff --git a/pkgs/by-name/dn/dnsx/package.nix b/pkgs/by-name/dn/dnsx/package.nix index e7c8e68e77de..e2e6b6dd29f7 100644 --- a/pkgs/by-name/dn/dnsx/package.nix +++ b/pkgs/by-name/dn/dnsx/package.nix @@ -34,7 +34,7 @@ buildGoModule rec { versionCheckProgramArg = "-version"; - meta = with lib; { + meta = { description = "Fast and multi-purpose DNS toolkit"; longDescription = '' dnsx is a fast and multi-purpose DNS toolkit allow to run multiple @@ -44,8 +44,8 @@ buildGoModule rec { ''; homepage = "https://github.com/projectdiscovery/dnsx"; changelog = "https://github.com/projectdiscovery/dnsx/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "dnsx"; }; } diff --git a/pkgs/by-name/dr/drawing/package.nix b/pkgs/by-name/dr/drawing/package.nix index ae4ef226c1ef..86e6b711add7 100644 --- a/pkgs/by-name/dr/drawing/package.nix +++ b/pkgs/by-name/dr/drawing/package.nix @@ -62,13 +62,13 @@ python3.pkgs.buildPythonApplication rec { strictDeps = false; - meta = with lib; { + meta = { description = "Free basic image editor, similar to Microsoft Paint, but aiming at the GNOME desktop"; mainProgram = "drawing"; homepage = "https://maoschanz.github.io/drawing/"; changelog = "https://github.com/maoschanz/drawing/releases/tag/${version}"; - maintainers = with maintainers; [ mothsart ]; - license = licenses.gpl3Plus; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ mothsart ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/dr/driftctl/package.nix b/pkgs/by-name/dr/driftctl/package.nix index 9a95d19f4e4f..715ffa1c8adf 100644 --- a/pkgs/by-name/dr/driftctl/package.nix +++ b/pkgs/by-name/dr/driftctl/package.nix @@ -47,7 +47,7 @@ buildGoModule rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { homepage = "https://driftctl.com/"; changelog = "https://github.com/snyk/driftctl/releases/tag/v${version}"; description = "Detect, track and alert on infrastructure drift"; @@ -56,8 +56,8 @@ buildGoModule rec { driftctl is a free and open-source CLI that warns of infrastructure drift and fills in the missing piece in your DevSecOps toolbox. ''; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kaction jk qjoly diff --git a/pkgs/by-name/dr/driftnet/package.nix b/pkgs/by-name/dr/driftnet/package.nix index b0bff18b2955..5d5d3c54c250 100644 --- a/pkgs/by-name/dr/driftnet/package.nix +++ b/pkgs/by-name/dr/driftnet/package.nix @@ -49,13 +49,13 @@ stdenv.mkDerivation rec { openssl ]; - meta = with lib; { + meta = { description = "Watches network traffic, and picks out and displays JPEG and GIF images for display"; homepage = "https://github.com/deiv/driftnet"; changelog = "https://github.com/deiv/driftnet/releases/tag/v${version}"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ offline ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ offline ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "driftnet"; }; } diff --git a/pkgs/by-name/dr/dropbear/package.nix b/pkgs/by-name/dr/dropbear/package.nix index 06c2117bf19f..19fdfbb43c88 100644 --- a/pkgs/by-name/dr/dropbear/package.nix +++ b/pkgs/by-name/dr/dropbear/package.nix @@ -65,12 +65,12 @@ stdenv.mkDerivation rec { libxcrypt ]; - meta = with lib; { + meta = { description = "Small footprint implementation of the SSH 2 protocol"; homepage = "https://matt.ucc.asn.au/dropbear/dropbear.html"; changelog = "https://github.com/mkj/dropbear/raw/DROPBEAR_${version}/CHANGES"; - license = licenses.mit; - maintainers = with maintainers; [ abbradar ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ abbradar ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/du/dum/package.nix b/pkgs/by-name/du/dum/package.nix index 928ccc53afe6..038699d17cd7 100644 --- a/pkgs/by-name/du/dum/package.nix +++ b/pkgs/by-name/du/dum/package.nix @@ -18,12 +18,12 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; cargoHash = "sha256-CpVci0nw/6Y6uyQX6iRV9E7uXzdZ2fzYIelYxsc+tI0="; - meta = with lib; { + meta = { description = "Npm scripts runner written in Rust"; mainProgram = "dum"; homepage = "https://github.com/egoist/dum"; changelog = "https://github.com/egoist/dum/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/du/dump_syms/package.nix b/pkgs/by-name/du/dump_syms/package.nix index 9c1c9d5a2607..67a96a2f85ce 100644 --- a/pkgs/by-name/du/dump_syms/package.nix +++ b/pkgs/by-name/du/dump_syms/package.nix @@ -48,12 +48,12 @@ rustPlatform.buildRustPackage { inherit firefox-esr-unwrapped firefox-unwrapped thunderbird-unwrapped; }; - meta = with lib; { + meta = { changelog = "https://github.com/mozilla/dump_syms/blob/v${version}/CHANGELOG.md"; description = "Command-line utility for parsing the debugging information the compiler provides in ELF or stand-alone PDB files"; mainProgram = "dump_syms"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/mozilla/dump_syms/"; - maintainers = with maintainers; [ hexa ]; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/e1/e1s/package.nix b/pkgs/by-name/e1/e1s/package.nix index aacc410d5a07..ee88691c0b06 100644 --- a/pkgs/by-name/e1/e1s/package.nix +++ b/pkgs/by-name/e1/e1s/package.nix @@ -19,13 +19,13 @@ buildGoModule { vendorHash = "sha256-1lise/u40Q8W9STsuyrWIbhf2HY+SFCytUL1PTSWvfY="; - meta = with lib; { + meta = { description = "Easily Manage AWS ECS Resources in Terminal 🐱"; homepage = "https://github.com/keidarcy/e1s"; changelog = "https://github.com/keidarcy/e1s/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "e1s"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ zelkourban carlossless ]; diff --git a/pkgs/by-name/e2/e2fsprogs/package.nix b/pkgs/by-name/e2/e2fsprogs/package.nix index 590938068d85..241f664111bf 100644 --- a/pkgs/by-name/e2/e2fsprogs/package.nix +++ b/pkgs/by-name/e2/e2fsprogs/package.nix @@ -88,17 +88,17 @@ stdenv.mkDerivation rec { [ -e $out/success ] ''; }; - meta = with lib; { + meta = { homepage = "https://e2fsprogs.sourceforge.net/"; changelog = "https://e2fsprogs.sourceforge.net/e2fsprogs-release.html#${version}"; description = "Tools for creating and checking ext2/ext3/ext4 filesystems"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus lgpl2Plus # lib/ext2fs, lib/e2p bsd3 # lib/uuid mit # lib/et, lib/ss ]; - platforms = platforms.unix; - maintainers = [ ]; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/by-name/ea/earlybird/package.nix b/pkgs/by-name/ea/earlybird/package.nix index 336082800ba4..4ffa598fbdd5 100644 --- a/pkgs/by-name/ea/earlybird/package.nix +++ b/pkgs/by-name/ea/earlybird/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Sensitive data detection tool capable of scanning source code repositories for passwords, key files, and more"; mainProgram = "earlybird"; homepage = "https://github.com/americanexpress/earlybird"; changelog = "https://github.com/americanexpress/earlybird/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = [ ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/by-name/ea/earthly/package.nix b/pkgs/by-name/ea/earthly/package.nix index 193cf4991cc9..02337e2e9421 100644 --- a/pkgs/by-name/ea/earthly/package.nix +++ b/pkgs/by-name/ea/earthly/package.nix @@ -58,12 +58,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Build automation for the container era"; homepage = "https://earthly.dev/"; changelog = "https://github.com/earthly/earthly/releases/tag/v${version}"; - license = licenses.mpl20; - maintainers = with maintainers; [ + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ zoedsoupe konradmalik ]; diff --git a/pkgs/by-name/ea/easyeasm/package.nix b/pkgs/by-name/ea/easyeasm/package.nix index 6a91e82846f6..d172ece3e536 100644 --- a/pkgs/by-name/ea/easyeasm/package.nix +++ b/pkgs/by-name/ea/easyeasm/package.nix @@ -43,12 +43,12 @@ buildGoModule rec { }" ''; - meta = with lib; { + meta = { description = "Attack surface management tool"; homepage = "https://github.com/g0ldencybersec/EasyEASM"; changelog = "https://github.com/g0ldencybersec/EasyEASM/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "easyeasm"; }; } diff --git a/pkgs/by-name/ed/eduvpn-client/package.nix b/pkgs/by-name/ed/eduvpn-client/package.nix index 6286d6e841fd..447e8a16d169 100644 --- a/pkgs/by-name/ed/eduvpn-client/package.nix +++ b/pkgs/by-name/ed/eduvpn-client/package.nix @@ -51,16 +51,16 @@ python3Packages.buildPythonApplication rec { pytestCheckHook ]; - meta = with lib; { + meta = { changelog = "https://codeberg.org/eduVPN/linux-app/raw/tag/${version}/CHANGES.md"; description = "Linux client for eduVPN"; homepage = "https://codeberg.org/eduVPN/linux-app"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "eduvpn-gui"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ benneti jwijenbergh ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/em/emmet-ls/package.nix b/pkgs/by-name/em/emmet-ls/package.nix index fa988b483e71..8bda81c23310 100644 --- a/pkgs/by-name/em/emmet-ls/package.nix +++ b/pkgs/by-name/em/emmet-ls/package.nix @@ -27,12 +27,12 @@ buildNpmPackage rec { }) ]; - meta = with lib; { + meta = { description = "Emmet support based on LSP"; homepage = "https://github.com/aca/emmet-ls"; changelog = "https://github.com/aca/emmet-ls/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "emmet-ls"; }; } diff --git a/pkgs/by-name/eo/eog/package.nix b/pkgs/by-name/eo/eog/package.nix index a14ac0beaf40..09ce3ade221a 100644 --- a/pkgs/by-name/eo/eog/package.nix +++ b/pkgs/by-name/eo/eog/package.nix @@ -122,13 +122,13 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "GNOME image viewer"; homepage = "https://gitlab.gnome.org/GNOME/eog"; changelog = "https://gitlab.gnome.org/GNOME/eog/-/blob/${version}/NEWS?ref_type=tags"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.unix; mainProgram = "eog"; }; } diff --git a/pkgs/by-name/ep/epick/package.nix b/pkgs/by-name/ep/epick/package.nix index 73b8b1b3297f..5858e1bfe01f 100644 --- a/pkgs/by-name/ep/epick/package.nix +++ b/pkgs/by-name/ep/epick/package.nix @@ -50,12 +50,12 @@ rustPlatform.buildRustPackage rec { patchelf $out/bin/epick --add-rpath ${lib.makeLibraryPath [ libGL ]} ''; - meta = with lib; { + meta = { description = "Simple color picker that lets the user create harmonic palettes with ease"; homepage = "https://github.com/vv9k/epick"; changelog = "https://github.com/vv9k/epick/blob/${version}/CHANGELOG.md"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "epick"; }; } diff --git a/pkgs/by-name/er/er-patcher/package.nix b/pkgs/by-name/er/er-patcher/package.nix index e9d3c56a1c04..6f17a814ca33 100644 --- a/pkgs/by-name/er/er-patcher/package.nix +++ b/pkgs/by-name/er/er-patcher/package.nix @@ -26,7 +26,7 @@ stdenvNoCC.mkDerivation rec { patchShebangs $out/bin/er-patcher ''; - meta = with lib; { + meta = { homepage = "https://github.com/gurrgur/er-patcher"; changelog = "https://github.com/gurrgur/er-patcher/releases/tag/v${version}"; description = "Enhancement patches for Elden Ring adding ultrawide support, custom frame rate limits and more"; @@ -35,7 +35,7 @@ stdenvNoCC.mkDerivation rec { This tool is based on patching the game executable through hex-edits. However it is done in a safe and non-destructive way, that ensures the patched executable is never run with EAC enabled (unless explicity told to do so). Use at your own risk! ''; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ lib.maintainers.sigmasquadron ]; mainProgram = "er-patcher"; }; diff --git a/pkgs/by-name/er/erofs-utils/package.nix b/pkgs/by-name/er/erofs-utils/package.nix index 849325513b88..12c7369ddd67 100644 --- a/pkgs/by-name/er/erofs-utils/package.nix +++ b/pkgs/by-name/er/erofs-utils/package.nix @@ -59,16 +59,16 @@ stdenv.mkDerivation (finalAttrs: { ++ lib.optional fuseSupport "--enable-fuse" ++ lib.optional selinuxSupport "--with-selinux"; - meta = with lib; { + meta = { homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/about/"; description = "Userspace utilities for linux-erofs file system"; - changelog = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/tree/ChangeLog?h=v${version}"; - license = with licenses; [ gpl2Plus ]; - maintainers = with maintainers; [ + changelog = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/tree/ChangeLog?h=v${finalAttrs.version}"; + license = with lib.licenses; [ gpl2Plus ]; + maintainers = with lib.maintainers; [ ehmry nikstur jmbaur ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/er/erosmb/package.nix b/pkgs/by-name/er/erosmb/package.nix index cc5952fa60c3..03a4f63eeb0d 100644 --- a/pkgs/by-name/er/erosmb/package.nix +++ b/pkgs/by-name/er/erosmb/package.nix @@ -39,12 +39,12 @@ python3.pkgs.buildPythonApplication rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "SMB network scanner"; homepage = "https://github.com/viktor02/EroSmb"; changelog = "https://github.com/viktor02/EroSmb/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "erosmb"; }; } diff --git a/pkgs/by-name/et/etebase-server/package.nix b/pkgs/by-name/et/etebase-server/package.nix index 407bf12fbdb8..e4d8cf1c36a5 100644 --- a/pkgs/by-name/et/etebase-server/package.nix +++ b/pkgs/by-name/et/etebase-server/package.nix @@ -59,13 +59,13 @@ python3.pkgs.buildPythonApplication rec { nixosTest = nixosTests.etebase-server; }; - meta = with lib; { + meta = { homepage = "https://github.com/etesync/server"; description = "Etebase (EteSync 2.0) server so you can run your own"; mainProgram = "etebase-server"; changelog = "https://github.com/etesync/server/blob/${version}/ChangeLog.md"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ felschr phaer ]; diff --git a/pkgs/by-name/et/eternal-terminal/package.nix b/pkgs/by-name/et/eternal-terminal/package.nix index d60842ae2133..e3229eebd90b 100644 --- a/pkgs/by-name/et/eternal-terminal/package.nix +++ b/pkgs/by-name/et/eternal-terminal/package.nix @@ -51,15 +51,15 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Remote shell that automatically reconnects without interrupting the session"; homepage = "https://eternalterminal.dev/"; changelog = "https://github.com/MisterTea/EternalTerminal/releases/tag/et-v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dezgeg jshort ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/ev/evil-winrm/package.nix b/pkgs/by-name/ev/evil-winrm/package.nix index c8116eaf5780..e243c55a2e44 100644 --- a/pkgs/by-name/ev/evil-winrm/package.nix +++ b/pkgs/by-name/ev/evil-winrm/package.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { passthru.updateScript = bundlerUpdateScript "evil-winrm"; - meta = with lib; { + meta = { description = "WinRM shell for hacking/pentesting"; mainProgram = "evil-winrm"; homepage = "https://github.com/Hackplayers/evil-winrm"; changelog = "https://github.com/Hackplayers/evil-winrm/blob/v${version}/CHANGELOG.md"; - license = licenses.lgpl3Plus; + license = lib.licenses.lgpl3Plus; }; } diff --git a/pkgs/by-name/ev/evolution-data-server/package.nix b/pkgs/by-name/ev/evolution-data-server/package.nix index ef177c079ded..f64006f7c529 100644 --- a/pkgs/by-name/ev/evolution-data-server/package.nix +++ b/pkgs/by-name/ev/evolution-data-server/package.nix @@ -197,12 +197,12 @@ stdenv.mkDerivation rec { ]; }; - meta = with lib; { + meta = { description = "Unified backend for programs that work with contacts, tasks, and calendar information"; homepage = "https://gitlab.gnome.org/GNOME/evolution-data-server"; changelog = "https://gitlab.gnome.org/GNOME/evolution-data-server/-/blob/${version}/NEWS?ref_type=tags"; - license = licenses.lgpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; # requires libuuid + license = lib.licenses.lgpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; # requires libuuid }; } diff --git a/pkgs/by-name/ev/evtx/package.nix b/pkgs/by-name/ev/evtx/package.nix index d4c94cc94f75..27eceff4c130 100644 --- a/pkgs/by-name/ev/evtx/package.nix +++ b/pkgs/by-name/ev/evtx/package.nix @@ -23,15 +23,15 @@ rustPlatform.buildRustPackage rec { rm tests/test_cli_interactive.rs ''; - meta = with lib; { + meta = { description = "Parser for the Windows XML Event Log (EVTX) format"; homepage = "https://github.com/omerbenamram/evtx"; changelog = "https://github.com/omerbenamram/evtx/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ fab ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "evtx_dump"; }; } diff --git a/pkgs/by-name/ex/exegol/package.nix b/pkgs/by-name/ex/exegol/package.nix index 30c19cb1ab85..c6fceb771a10 100644 --- a/pkgs/by-name/ex/exegol/package.nix +++ b/pkgs/by-name/ex/exegol/package.nix @@ -37,7 +37,7 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "exegol" ]; - meta = with lib; { + meta = { description = "Fully featured and community-driven hacking environment"; longDescription = '' Exegol is a community-driven hacking environment, powerful and yet diff --git a/pkgs/by-name/ex/exiflooter/package.nix b/pkgs/by-name/ex/exiflooter/package.nix index 68eb8d9cab4f..f58ebd93f5ba 100644 --- a/pkgs/by-name/ex/exiflooter/package.nix +++ b/pkgs/by-name/ex/exiflooter/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Finds geolocation on all image urls and directories"; homepage = "https://github.com/aydinnyunus/exiflooter"; changelog = "https://github.com/aydinnyunus/exifLooter/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ octodi ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ octodi ]; mainProgram = "exiflooter"; }; } diff --git a/pkgs/by-name/ex/exim/package.nix b/pkgs/by-name/ex/exim/package.nix index 5d850645b82c..6068aad78bda 100644 --- a/pkgs/by-name/ex/exim/package.nix +++ b/pkgs/by-name/ex/exim/package.nix @@ -192,17 +192,17 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { homepage = "https://exim.org/"; description = "Mail transfer agent (MTA)"; - license = with licenses; [ + license = with lib.licenses; [ gpl2Plus bsd3 ]; mainProgram = "exim"; - platforms = platforms.linux; - maintainers = with maintainers; [ tv ]; - teams = [ teams.helsinki-systems ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ tv ]; + teams = [ lib.teams.helsinki-systems ]; changelog = "https://github.com/Exim/exim/blob/exim-${version}/doc/doc-txt/ChangeLog"; }; } diff --git a/pkgs/by-name/ex/extra-container/package.nix b/pkgs/by-name/ex/extra-container/package.nix index b38cd67ee42c..721d9d9e0312 100644 --- a/pkgs/by-name/ex/extra-container/package.nix +++ b/pkgs/by-name/ex/extra-container/package.nix @@ -35,13 +35,13 @@ stdenv.mkDerivation rec { " $out/bin/extra-container ''; - meta = with lib; { + meta = { description = "Run declarative containers without full system rebuilds"; homepage = "https://github.com/erikarvstedt/extra-container"; changelog = "https://github.com/erikarvstedt/extra-container/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = [ maintainers.erikarvstedt ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.erikarvstedt ]; mainProgram = "extra-container"; }; } diff --git a/pkgs/by-name/f3/f3d/package.nix b/pkgs/by-name/f3/f3d/package.nix index 24636fa72fd3..99cfc4f31119 100644 --- a/pkgs/by-name/f3/f3d/package.nix +++ b/pkgs/by-name/f3/f3d/package.nix @@ -98,16 +98,16 @@ stdenv.mkDerivation rec { "-DF3D_PLUGIN_BUILD_USD=ON" ]; - meta = with lib; { + meta = { description = "Fast and minimalist 3D viewer using VTK"; homepage = "https://f3d-app.github.io/f3d"; changelog = "https://github.com/f3d-app/f3d/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bcdarwin pbsds ]; - platforms = with platforms; unix; + platforms = with lib.platforms; unix; mainProgram = "f3d"; }; } diff --git a/pkgs/by-name/fd/fd/package.nix b/pkgs/by-name/fd/fd/package.nix index 13c16bcff36a..e556c04e0770 100644 --- a/pkgs/by-name/fd/fd/package.nix +++ b/pkgs/by-name/fd/fd/package.nix @@ -50,7 +50,7 @@ rustPlatform.buildRustPackage rec { package = fd; }; - meta = with lib; { + meta = { description = "Simple, fast and user-friendly alternative to find"; longDescription = '' `fd` is a simple, fast and user-friendly alternative to `find`. @@ -60,11 +60,11 @@ rustPlatform.buildRustPackage rec { ''; homepage = "https://github.com/sharkdp/fd"; changelog = "https://github.com/sharkdp/fd/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ dywedir figsoda globin diff --git a/pkgs/by-name/ff/ffuf/package.nix b/pkgs/by-name/ff/ffuf/package.nix index dcd519cc9a71..eea0cfb1e3e3 100644 --- a/pkgs/by-name/ff/ffuf/package.nix +++ b/pkgs/by-name/ff/ffuf/package.nix @@ -32,7 +32,7 @@ buildGoModule rec { "-s" ]; - meta = with lib; { + meta = { description = "Tool for web fuzzing"; mainProgram = "ffuf"; longDescription = '' @@ -42,7 +42,7 @@ buildGoModule rec { ''; homepage = "https://github.com/ffuf/ffuf"; changelog = "https://github.com/ffuf/ffuf/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/fn/fnlfmt/package.nix b/pkgs/by-name/fn/fnlfmt/package.nix index 052068710cf3..f5455d32e54d 100644 --- a/pkgs/by-name/fn/fnlfmt/package.nix +++ b/pkgs/by-name/fn/fnlfmt/package.nix @@ -36,13 +36,13 @@ stdenv.mkDerivation rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Formatter for Fennel"; homepage = src.meta.homepage; changelog = "${src.meta.homepage}/tree/${version}/changelog.md"; - license = licenses.mit; + license = lib.licenses.mit; platforms = lua.meta.platforms; - maintainers = with maintainers; [ chiroptical ]; + maintainers = with lib.maintainers; [ chiroptical ]; mainProgram = "fnlfmt"; }; } diff --git a/pkgs/by-name/fp/fping/package.nix b/pkgs/by-name/fp/fping/package.nix index f38c77f38cb8..43d41b940dc9 100644 --- a/pkgs/by-name/fp/fping/package.nix +++ b/pkgs/by-name/fp/fping/package.nix @@ -18,13 +18,13 @@ stdenv.mkDerivation rec { "--enable-ipv4" ]; - meta = with lib; { + meta = { description = "Send ICMP echo probes to network hosts"; homepage = "http://fping.org/"; changelog = "https://github.com/schweikert/fping/releases/tag/v${version}"; - license = licenses.bsd0; + license = lib.licenses.bsd0; mainProgram = "fping"; - maintainers = with maintainers; [ fab ]; - platforms = platforms.all; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/fs/fscrypt-experimental/package.nix b/pkgs/by-name/fs/fscrypt-experimental/package.nix index af8fd18c4eb3..af44287c4ac1 100644 --- a/pkgs/by-name/fs/fscrypt-experimental/package.nix +++ b/pkgs/by-name/fs/fscrypt-experimental/package.nix @@ -45,7 +45,7 @@ buildGoModule rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "High-level tool for the management of Linux filesystem encryption"; mainProgram = "fscrypt"; longDescription = '' @@ -55,8 +55,8 @@ buildGoModule rec { ''; inherit (src.meta) homepage; changelog = "https://github.com/google/fscrypt/releases/tag/v${version}"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ primeos ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ primeos ]; }; } diff --git a/pkgs/by-name/fs/fsmon/package.nix b/pkgs/by-name/fs/fsmon/package.nix index a7f8c0683103..4e55fc183e50 100644 --- a/pkgs/by-name/fs/fsmon/package.nix +++ b/pkgs/by-name/fs/fsmon/package.nix @@ -19,13 +19,13 @@ stdenv.mkDerivation rec { make install PREFIX=$out ''; - meta = with lib; { + meta = { description = "FileSystem Monitor utility"; homepage = "https://github.com/nowsecure/fsmon"; changelog = "https://github.com/nowsecure/fsmon/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ dezgeg ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dezgeg ]; + platforms = lib.platforms.linux; mainProgram = "fsmon"; }; } diff --git a/pkgs/by-name/fs/fstar/package.nix b/pkgs/by-name/fs/fstar/package.nix index 5d2561fbb7e7..c5851589257c 100644 --- a/pkgs/by-name/fs/fstar/package.nix +++ b/pkgs/by-name/fs/fstar/package.nix @@ -107,15 +107,15 @@ ocamlPackages.buildDunePackage rec { z3 = fstarZ3; }; - meta = with lib; { + meta = { description = "ML-like functional programming language aimed at program verification"; homepage = "https://www.fstar-lang.org"; changelog = "https://github.com/FStarLang/FStar/raw/v${version}/CHANGES.md"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ numinit ]; mainProgram = "fstar.exe"; - platforms = with platforms; darwin ++ linux; + platforms = with lib.platforms; darwin ++ linux; }; } diff --git a/pkgs/by-name/fu/fujprog/package.nix b/pkgs/by-name/fu/fujprog/package.nix index 6366042848a3..0d6428a70c0e 100644 --- a/pkgs/by-name/fu/fujprog/package.nix +++ b/pkgs/by-name/fu/fujprog/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation rec { libusb-compat-0_1 ]; - meta = with lib; { + meta = { description = "JTAG programmer for the ULX3S and ULX2S open hardware FPGA development boards"; mainProgram = "fujprog"; homepage = "https://github.com/kost/fujprog"; - license = licenses.bsd2; - maintainers = with maintainers; [ trepetti ]; - platforms = platforms.all; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ trepetti ]; + platforms = lib.platforms.all; changelog = "https://github.com/kost/fujprog/releases/tag/v${version}"; }; } diff --git a/pkgs/by-name/fu/fulcio/package.nix b/pkgs/by-name/fu/fulcio/package.nix index 2cb09b1c94ef..ceb54c442d7e 100644 --- a/pkgs/by-name/fu/fulcio/package.nix +++ b/pkgs/by-name/fu/fulcio/package.nix @@ -82,7 +82,7 @@ buildGoModule rec { version = "v${version}"; }; - meta = with lib; { + meta = { homepage = "https://github.com/sigstore/fulcio"; changelog = "https://github.com/sigstore/fulcio/releases/tag/v${version}"; description = "Root-CA for code signing certs - issuing certificates based on an OIDC email address"; @@ -97,8 +97,8 @@ buildGoModule rec { different delegation models, and to deploy and run Fulcio as a disconnected instance. ''; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ lesuisse jk ]; diff --git a/pkgs/by-name/gd/gdu/package.nix b/pkgs/by-name/gd/gdu/package.nix index ff1f3c878f3c..c8625f889714 100644 --- a/pkgs/by-name/gd/gdu/package.nix +++ b/pkgs/by-name/gd/gdu/package.nix @@ -47,7 +47,7 @@ buildGoModule rec { passthru.tests.version = testers.testVersion { package = gdu; }; - meta = with lib; { + meta = { description = "Disk usage analyzer with console interface"; longDescription = '' Gdu is intended primarily for SSD disks where it can fully @@ -56,8 +56,8 @@ buildGoModule rec { ''; homepage = "https://github.com/dundee/gdu"; changelog = "https://github.com/dundee/gdu/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab zowoq ]; diff --git a/pkgs/by-name/gf/gfxreconstruct/package.nix b/pkgs/by-name/gf/gfxreconstruct/package.nix index 5c52ad7f60e4..573d6529632d 100644 --- a/pkgs/by-name/gf/gfxreconstruct/package.nix +++ b/pkgs/by-name/gf/gfxreconstruct/package.nix @@ -66,12 +66,12 @@ stdenv.mkDerivation rec { --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ vulkan-loader ]} ''; - meta = with lib; { + meta = { description = "Graphics API Capture and Replay Tools"; homepage = "https://github.com/LunarG/gfxreconstruct/"; changelog = "https://github.com/LunarG/gfxreconstruct/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ Flakebi ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Flakebi ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gg/gg-scm/package.nix b/pkgs/by-name/gg/gg-scm/package.nix index e3794f8bd258..7d590d01ac6b 100644 --- a/pkgs/by-name/gg/gg-scm/package.nix +++ b/pkgs/by-name/gg/gg-scm/package.nix @@ -64,7 +64,7 @@ buildGoModule { --zsh misc/_gg.zsh ''; - meta = with lib; { + meta = { mainProgram = "gg"; description = "Git with less typing"; longDescription = '' @@ -74,6 +74,6 @@ buildGoModule { ''; homepage = "https://gg-scm.io/"; changelog = "https://github.com/gg-scm/gg/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; + license = lib.licenses.asl20; }; } diff --git a/pkgs/by-name/gn/gnome-backgrounds/package.nix b/pkgs/by-name/gn/gnome-backgrounds/package.nix index b727b46f8cb2..3704cac926f3 100644 --- a/pkgs/by-name/gn/gnome-backgrounds/package.nix +++ b/pkgs/by-name/gn/gnome-backgrounds/package.nix @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "gnome-backgrounds"; }; }; - meta = with lib; { + meta = { description = "Default wallpaper set for GNOME"; homepage = "https://gitlab.gnome.org/GNOME/gnome-backgrounds"; changelog = "https://gitlab.gnome.org/GNOME/gnome-backgrounds/-/blob/${version}/NEWS?ref_type=tags"; - license = licenses.cc-by-sa-30; - platforms = platforms.unix; - teams = [ teams.gnome ]; + license = lib.licenses.cc-by-sa-30; + platforms = lib.platforms.unix; + teams = [ lib.teams.gnome ]; }; } diff --git a/pkgs/by-name/gn/gnome-keyring/package.nix b/pkgs/by-name/gn/gnome-keyring/package.nix index 1a100db5fc94..2a62bc340bf8 100644 --- a/pkgs/by-name/gn/gnome-keyring/package.nix +++ b/pkgs/by-name/gn/gnome-keyring/package.nix @@ -117,17 +117,17 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { description = "Collection of components in GNOME that store secrets, passwords, keys, certificates and make them available to applications"; homepage = "https://gitlab.gnome.org/GNOME/gnome-keyring"; changelog = "https://gitlab.gnome.org/GNOME/gnome-keyring/-/blob/${version}/NEWS?ref_type=tags"; license = [ # Most of the code (some is 2Plus) - licenses.lgpl21Plus + lib.licenses.lgpl21Plus # Some stragglers - licenses.gpl2Plus + lib.licenses.gpl2Plus ]; - teams = [ teams.gnome ]; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-klotski/package.nix b/pkgs/by-name/gn/gnome-klotski/package.nix index 5d56a8e0f00a..cb2cf22b3647 100644 --- a/pkgs/by-name/gn/gnome-klotski/package.nix +++ b/pkgs/by-name/gn/gnome-klotski/package.nix @@ -63,13 +63,13 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "gnome-klotski"; }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-klotski"; changelog = "https://gitlab.gnome.org/GNOME/gnome-klotski/-/blob/${version}/NEWS?ref_type=tags"; description = "Slide blocks to solve the puzzle"; mainProgram = "gnome-klotski"; - teams = [ teams.gnome ]; - license = licenses.gpl2; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gn/gnome-remote-desktop/package.nix b/pkgs/by-name/gn/gnome-remote-desktop/package.nix index b34c9e6eae5b..7c2c8b80db4f 100644 --- a/pkgs/by-name/gn/gnome-remote-desktop/package.nix +++ b/pkgs/by-name/gn/gnome-remote-desktop/package.nix @@ -89,13 +89,13 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "gnome-remote-desktop"; }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-remote-desktop"; changelog = "https://gitlab.gnome.org/GNOME/gnome-remote-desktop/-/blob/${version}/NEWS?ref_type=tags"; description = "GNOME Remote Desktop server"; mainProgram = "grdctl"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-sound-recorder/package.nix b/pkgs/by-name/gn/gnome-sound-recorder/package.nix index d7141deddaae..8d0d97461c18 100644 --- a/pkgs/by-name/gn/gnome-sound-recorder/package.nix +++ b/pkgs/by-name/gn/gnome-sound-recorder/package.nix @@ -65,13 +65,13 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "gnome-sound-recorder"; }; }; - meta = with lib; { + meta = { description = "Simple and modern sound recorder"; mainProgram = "gnome-sound-recorder"; homepage = "https://gitlab.gnome.org/World/vocalis"; changelog = "https://gitlab.gnome.org/World/vocalis/-/blob/${version}/NEWS?ref_type=tags"; - license = licenses.gpl2Plus; - teams = [ teams.gnome ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + teams = [ lib.teams.gnome ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gn/gnome-sudoku/package.nix b/pkgs/by-name/gn/gnome-sudoku/package.nix index e7c934d7a60a..d2fa96c74b52 100644 --- a/pkgs/by-name/gn/gnome-sudoku/package.nix +++ b/pkgs/by-name/gn/gnome-sudoku/package.nix @@ -56,13 +56,13 @@ stdenv.mkDerivation rec { updateScript = gnome.updateScript { packageName = "gnome-sudoku"; }; }; - meta = with lib; { + meta = { homepage = "https://gitlab.gnome.org/GNOME/gnome-sudoku"; changelog = "https://gitlab.gnome.org/GNOME/gnome-sudoku/-/blob/${version}/NEWS?ref_type=tags"; description = "Test your logic skills in this number grid puzzle"; mainProgram = "gnome-sudoku"; - teams = [ teams.gnome ]; - license = licenses.gpl3Plus; - platforms = platforms.unix; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gn/gnostic/package.nix b/pkgs/by-name/gn/gnostic/package.nix index 5296fbb0e107..407c5dedcbd7 100644 --- a/pkgs/by-name/gn/gnostic/package.nix +++ b/pkgs/by-name/gn/gnostic/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # some tests are broken and others require network access doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/google/gnostic"; description = "Compiler for APIs described by the OpenAPI Specification with plugins for code generation and other API support tasks"; changelog = "https://github.com/google/gnostic/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ urandom ]; }; } diff --git a/pkgs/by-name/gn/gnuastro/package.nix b/pkgs/by-name/gn/gnuastro/package.nix index 50215965fe1e..09a744d5661f 100644 --- a/pkgs/by-name/gn/gnuastro/package.nix +++ b/pkgs/by-name/gn/gnuastro/package.nix @@ -39,12 +39,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "GNU astronomy utilities and library"; homepage = "https://www.gnu.org/software/gnuastro/"; changelog = "https://git.savannah.gnu.org/cgit/gnuastro.git/plain/NEWS?id=gnuastro_v${version}"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = with maintainers; [ sikmir ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ sikmir ]; }; } diff --git a/pkgs/by-name/gn/gnucap/modelgen-verilog.nix b/pkgs/by-name/gn/gnucap/modelgen-verilog.nix index 9d6da894018f..d0537e3e10fc 100644 --- a/pkgs/by-name/gn/gnucap/modelgen-verilog.nix +++ b/pkgs/by-name/gn/gnucap/modelgen-verilog.nix @@ -35,13 +35,13 @@ stdenv.mkDerivation (finalAttrs: { installManPage man/*.* ''; - meta = with lib; { + meta = { description = "gnucap modelgen to preprocess, parse and dump vams files"; homepage = "http://www.gnucap.org/"; - changelog = "https://git.savannah.gnu.org/cgit/gnucap.git/plain/NEWS?h=v${version}"; + changelog = "https://git.savannah.gnu.org/cgit/gnucap.git/plain/NEWS?h=v${finalAttrs.version}"; mainProgram = "gnucap-mg-vams"; - license = licenses.gpl3Plus; - platforms = platforms.all; - maintainers = [ maintainers.raboof ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.all; + maintainers = [ lib.maintainers.raboof ]; }; }) diff --git a/pkgs/by-name/gn/gnupg-pkcs11-scd/package.nix b/pkgs/by-name/gn/gnupg-pkcs11-scd/package.nix index d4423c3c2f54..2c1243aef61e 100644 --- a/pkgs/by-name/gn/gnupg-pkcs11-scd/package.nix +++ b/pkgs/by-name/gn/gnupg-pkcs11-scd/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { "--with-libgcrypt-prefix=${libgcrypt.dev}" ]; - meta = with lib; { + meta = { changelog = "https://github.com/alonbl/gnupg-pkcs11-scd/blob/gnupg-pkcs11-scd-${version}/ChangeLog"; description = "Smart-card daemon to enable the use of PKCS#11 tokens with GnuPG"; mainProgram = "gnupg-pkcs11-scd"; @@ -44,11 +44,11 @@ stdenv.mkDerivation rec { daemon to enable the use of PKCS#11 tokens with GnuPG. ''; homepage = "https://gnupg-pkcs11.sourceforge.net/"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ matthiasbeyer philandstuff ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/gp/gpa/package.nix b/pkgs/by-name/gp/gpa/package.nix index ac4678022c3d..349d37ba3ac7 100644 --- a/pkgs/by-name/gp/gpa/package.nix +++ b/pkgs/by-name/gp/gpa/package.nix @@ -33,12 +33,12 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration"; - meta = with lib; { + meta = { changelog = "https://dev.gnupg.org/source/gpa/browse/master/NEWS;gpa-${version}?view=raw"; description = "Graphical user interface for the GnuPG"; homepage = "https://www.gnupg.org/related_software/gpa/"; - license = licenses.gpl3Plus; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; mainProgram = "gpa"; }; } diff --git a/pkgs/by-name/gp/gpsd/package.nix b/pkgs/by-name/gp/gpsd/package.nix index 553f2780c448..821671a9553d 100644 --- a/pkgs/by-name/gp/gpsd/package.nix +++ b/pkgs/by-name/gp/gpsd/package.nix @@ -131,7 +131,7 @@ stdenv.mkDerivation rec { wrapPythonProgramsIn $out/bin "$out $pythonPath" ''; - meta = with lib; { + meta = { description = "GPS service daemon"; longDescription = '' gpsd is a service daemon that monitors one or more GPSes or AIS @@ -153,9 +153,9 @@ stdenv.mkDerivation rec { ''; homepage = "https://gpsd.gitlab.io/gpsd/index.html"; changelog = "https://gitlab.com/gpsd/gpsd/-/blob/release-${version}/NEWS"; - license = licenses.bsd2; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.bsd2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ bjornfor rasendubi ]; diff --git a/pkgs/by-name/gp/gptscript/package.nix b/pkgs/by-name/gp/gptscript/package.nix index 384cd441c78d..723b4967daf9 100644 --- a/pkgs/by-name/gp/gptscript/package.nix +++ b/pkgs/by-name/gp/gptscript/package.nix @@ -25,12 +25,12 @@ buildGoModule rec { # Requires network access doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/gptscript-ai/gptscript"; changelog = "https://github.com/gptscript-ai/gptscript/releases/tag/v${version}"; description = "Build AI assistants that interact with your systems"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ jamiemagee ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ jamiemagee ]; mainProgram = "gptscript"; }; } diff --git a/pkgs/by-name/gt/gtfocli/package.nix b/pkgs/by-name/gt/gtfocli/package.nix index 6579ba0ba645..914f968cab36 100644 --- a/pkgs/by-name/gt/gtfocli/package.nix +++ b/pkgs/by-name/gt/gtfocli/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "GTFO Command Line Interface for search binaries commands to bypass local security restrictions"; homepage = "https://github.com/cmd-tools/gtfocli"; changelog = "https://github.com/cmd-tools/gtfocli/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "gtfocli"; }; } diff --git a/pkgs/by-name/gt/gtrash/package.nix b/pkgs/by-name/gt/gtrash/package.nix index c1e1bd8d9297..9934836d3c94 100644 --- a/pkgs/by-name/gt/gtrash/package.nix +++ b/pkgs/by-name/gt/gtrash/package.nix @@ -40,12 +40,12 @@ buildGoModule rec { --zsh <($out/bin/gtrash completion zsh) ''; - meta = with lib; { + meta = { description = "Trash CLI manager written in Go"; homepage = "https://github.com/umlx5h/gtrash"; changelog = "https://github.com/umlx5h/gtrash/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ umlx5h ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ umlx5h ]; mainProgram = "gtrash"; }; } diff --git a/pkgs/by-name/gv/gvm-libs/package.nix b/pkgs/by-name/gv/gvm-libs/package.nix index 5f38df5e096d..982db26458f1 100644 --- a/pkgs/by-name/gv/gvm-libs/package.nix +++ b/pkgs/by-name/gv/gvm-libs/package.nix @@ -68,12 +68,12 @@ stdenv.mkDerivation rec { # causes redefinition of _FORTIFY_SOURCE hardeningDisable = [ "fortify3" ]; - meta = with lib; { + meta = { description = "Libraries module for the Greenbone Vulnerability Management Solution"; homepage = "https://github.com/greenbone/gvm-libs"; changelog = "https://github.com/greenbone/gvm-libs/releases/tag/v${version}"; - license = with licenses; [ gpl2Plus ]; - maintainers = with maintainers; [ fab ]; - platforms = platforms.linux; + license = with lib.licenses; [ gpl2Plus ]; + maintainers = with lib.maintainers; [ fab ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/gw/gwc/package.nix b/pkgs/by-name/gw/gwc/package.nix index 1fa2a34e019c..602986105379 100644 --- a/pkgs/by-name/gw/gwc/package.nix +++ b/pkgs/by-name/gw/gwc/package.nix @@ -45,12 +45,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = false; # Fails to generate machine.h in time. - meta = with lib; { + meta = { description = "GUI application for removing noise (hiss, pops and clicks) from audio files"; homepage = "https://github.com/AlisterH/gwc/"; changelog = "https://github.com/AlisterH/gwc/blob/${version}/Changelog"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ magnetophon ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ magnetophon ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/h8/h8mail/package.nix b/pkgs/by-name/h8/h8mail/package.nix index ce9578865938..0b20d6327164 100644 --- a/pkgs/by-name/h8/h8mail/package.nix +++ b/pkgs/by-name/h8/h8mail/package.nix @@ -27,12 +27,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "h8mail" ]; - meta = with lib; { + meta = { description = "Email OSINT & Password breach hunting tool"; homepage = "https://github.com/khast3x/h8mail"; changelog = "https://github.com/khast3x/h8mail/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ octodi ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ octodi ]; mainProgram = "h8mail"; }; } diff --git a/pkgs/by-name/hc/hck/package.nix b/pkgs/by-name/hc/hck/package.nix index 906370d04b4b..388ce768a913 100644 --- a/pkgs/by-name/hc/hck/package.nix +++ b/pkgs/by-name/hc/hck/package.nix @@ -21,15 +21,15 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ cmake ]; - meta = with lib; { + meta = { description = "Close to drop in replacement for cut that can use a regex delimiter instead of a fixed string"; homepage = "https://github.com/sstadick/hck"; changelog = "https://github.com/sstadick/hck/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ mit # or unlicense ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ figsoda gepbird ]; diff --git a/pkgs/by-name/hc/hcloud/package.nix b/pkgs/by-name/hc/hcloud/package.nix index 544516d13f5a..4a11032a8507 100644 --- a/pkgs/by-name/hc/hcloud/package.nix +++ b/pkgs/by-name/hc/hcloud/package.nix @@ -35,13 +35,13 @@ buildGoModule rec { done ''; - meta = with lib; { + meta = { changelog = "https://github.com/hetznercloud/cli/releases/tag/v${version}"; description = "Command-line interface for Hetzner Cloud, a provider for cloud virtual private servers"; mainProgram = "hcloud"; homepage = "https://github.com/hetznercloud/cli"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zauberpony techknowlogick ]; diff --git a/pkgs/by-name/hd/hdrop/package.nix b/pkgs/by-name/hd/hdrop/package.nix index 9de71c9ec74f..a7aaf315e818 100644 --- a/pkgs/by-name/hd/hdrop/package.nix +++ b/pkgs/by-name/hd/hdrop/package.nix @@ -47,13 +47,13 @@ stdenvNoCC.mkDerivation rec { }" ''; - meta = with lib; { + meta = { description = "Emulate 'tdrop' in Hyprland (run, show and hide specific programs per keybind)"; homepage = "https://github.com/Schweber/hdrop"; changelog = "https://github.com/Schweber/hdrop/releases/tag/v${version}"; - license = licenses.agpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ Schweber ]; + license = lib.licenses.agpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ Schweber ]; mainProgram = "hdrop"; }; } diff --git a/pkgs/by-name/hf/hfinger/package.nix b/pkgs/by-name/hf/hfinger/package.nix index 0f5a2c124fed..9e992f1da767 100644 --- a/pkgs/by-name/hf/hfinger/package.nix +++ b/pkgs/by-name/hf/hfinger/package.nix @@ -38,12 +38,12 @@ python3.pkgs.buildPythonApplication rec { "hfinger" ]; - meta = with lib; { + meta = { description = "Fingerprinting tool for HTTP requests"; mainProgram = "hfinger"; homepage = "https://github.com/CERT-Polska/hfinger"; changelog = "https://github.com/CERT-Polska/hfinger/releases/tag/v${version}"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/hj/hjson-go/package.nix b/pkgs/by-name/hj/hjson-go/package.nix index 1cac54405c34..5c76699faba8 100644 --- a/pkgs/by-name/hj/hjson-go/package.nix +++ b/pkgs/by-name/hj/hjson-go/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Utility to convert JSON to and from HJSON"; homepage = "https://hjson.github.io/"; changelog = "https://github.com/hjson/hjson-go/releases/tag/v${version}"; - maintainers = with maintainers; [ ehmry ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ ehmry ]; + license = lib.licenses.mit; mainProgram = "hjson-cli"; }; } diff --git a/pkgs/by-name/hm/hmm/package.nix b/pkgs/by-name/hm/hmm/package.nix index 270227b33aea..89f3577368e5 100644 --- a/pkgs/by-name/hm/hmm/package.nix +++ b/pkgs/by-name/hm/hmm/package.nix @@ -27,11 +27,11 @@ rustPlatform.buildRustPackage rec { # https://github.com/NixOS/nixpkgs/pull/310673 cargoPatches = [ ./rustc-serialize-fix.patch ]; - meta = with lib; { + meta = { description = "Small command-line note-taking app"; homepage = "https://github.com/samwho/hmm"; changelog = "https://github.com/samwho/hmm/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/hs/hstsparser/package.nix b/pkgs/by-name/hs/hstsparser/package.nix index 47b9565c5e0b..40378556ee6b 100644 --- a/pkgs/by-name/hs/hstsparser/package.nix +++ b/pkgs/by-name/hs/hstsparser/package.nix @@ -28,12 +28,12 @@ python3.pkgs.buildPythonApplication rec { "hstsparser" ]; - meta = with lib; { + meta = { description = "Tool to parse Firefox and Chrome HSTS databases into forensic artifacts"; mainProgram = "hstsparser"; homepage = "https://github.com/thebeanogamer/hstsparser"; changelog = "https://github.com/thebeanogamer/hstsparser/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ht/html5validator/package.nix b/pkgs/by-name/ht/html5validator/package.nix index 8692e4ad735b..7cf3e20c339f 100644 --- a/pkgs/by-name/ht/html5validator/package.nix +++ b/pkgs/by-name/ht/html5validator/package.nix @@ -34,12 +34,12 @@ python3.pkgs.buildPythonApplication rec { export PATH="$PATH:$out/bin"; ''; - meta = with lib; { + meta = { description = "Command line tool that tests files for HTML5 validity"; mainProgram = "html5validator"; homepage = "https://github.com/svenkreiss/html5validator"; changelog = "https://github.com/svenkreiss/html5validator/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ phunehehe ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ phunehehe ]; }; } diff --git a/pkgs/by-name/ht/htmldoc/package.nix b/pkgs/by-name/ht/htmldoc/package.nix index 6f5e643826c2..a2652191a926 100644 --- a/pkgs/by-name/ht/htmldoc/package.nix +++ b/pkgs/by-name/ht/htmldoc/package.nix @@ -40,13 +40,13 @@ stdenv.mkDerivation rec { command = "htmldoc --version"; }; - meta = with lib; { + meta = { description = "Converts HTML files to PostScript and PDF"; homepage = "https://michaelrsweet.github.io/htmldoc"; changelog = "https://github.com/michaelrsweet/htmldoc/releases/tag/v${version}"; - license = licenses.gpl2Only; - maintainers = [ ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.unix; longDescription = '' HTMLDOC is a program that reads HTML source files or web pages and diff --git a/pkgs/by-name/ht/htop/package.nix b/pkgs/by-name/ht/htop/package.nix index c36ca5ffad5c..f57a645ced6e 100644 --- a/pkgs/by-name/ht/htop/package.nix +++ b/pkgs/by-name/ht/htop/package.nix @@ -71,12 +71,12 @@ stdenv.mkDerivation rec { ${optionalPatch systemdSupport "${systemd}/lib/libsystemd.so"} ''; - meta = with lib; { + meta = { description = "Interactive process viewer"; homepage = "https://htop.dev"; - license = licenses.gpl2Only; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ rob relrod SuperSandro2000 diff --git a/pkgs/by-name/ht/httm/package.nix b/pkgs/by-name/ht/httm/package.nix index 84d1931015e7..80c4f386db76 100644 --- a/pkgs/by-name/ht/httm/package.nix +++ b/pkgs/by-name/ht/httm/package.nix @@ -39,12 +39,12 @@ rustPlatform.buildRustPackage rec { install -Dm644 README.md $out/share/doc/README.md ''; - meta = with lib; { + meta = { description = "Interactive, file-level Time Machine-like tool for ZFS/btrfs"; homepage = "https://github.com/kimono-koans/httm"; changelog = "https://github.com/kimono-koans/httm/releases/tag/${version}"; - license = licenses.mpl20; - maintainers = with maintainers; [ wyndon ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ wyndon ]; mainProgram = "httm"; }; } diff --git a/pkgs/by-name/ht/httplz/package.nix b/pkgs/by-name/ht/httplz/package.nix index 695d17726b38..db7f69072bec 100644 --- a/pkgs/by-name/ht/httplz/package.nix +++ b/pkgs/by-name/ht/httplz/package.nix @@ -44,12 +44,12 @@ rustPlatform.buildRustPackage rec { --prefix PATH : "${openssl}/bin" ''; - meta = with lib; { + meta = { description = "Basic http server for hosting a folder fast and simply"; mainProgram = "httplz"; homepage = "https://github.com/thecoshman/http"; changelog = "https://github.com/thecoshman/http/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/ht/httpx/package.nix b/pkgs/by-name/ht/httpx/package.nix index 4c8b7761c8c4..4fcea02b4f22 100644 --- a/pkgs/by-name/ht/httpx/package.nix +++ b/pkgs/by-name/ht/httpx/package.nix @@ -34,7 +34,7 @@ buildGoModule rec { versionCheckProgramArg = "-version"; - meta = with lib; { + meta = { description = "Fast and multi-purpose HTTP toolkit"; longDescription = '' httpx is a fast and multi-purpose HTTP toolkit allow to run multiple @@ -43,8 +43,8 @@ buildGoModule rec { ''; homepage = "https://github.com/projectdiscovery/httpx"; changelog = "https://github.com/projectdiscovery/httpx/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "httpx"; }; } diff --git a/pkgs/by-name/hu/hurl/package.nix b/pkgs/by-name/hu/hurl/package.nix index 833c3cb3942b..b1afe82a5f02 100644 --- a/pkgs/by-name/hu/hurl/package.nix +++ b/pkgs/by-name/hu/hurl/package.nix @@ -52,15 +52,15 @@ rustPlatform.buildRustPackage rec { --zsh completions/_hurlfmt ''; - meta = with lib; { + meta = { description = "Command line tool that performs HTTP requests defined in a simple plain text format"; homepage = "https://hurl.dev/"; changelog = "https://github.com/Orange-OpenSource/hurl/blob/${version}/CHANGELOG.md"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ eonpatapon figsoda ]; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "hurl"; }; } diff --git a/pkgs/by-name/hu/husky/package.nix b/pkgs/by-name/hu/husky/package.nix index e749644bc33c..7ba0dd68e715 100644 --- a/pkgs/by-name/hu/husky/package.nix +++ b/pkgs/by-name/hu/husky/package.nix @@ -17,12 +17,12 @@ buildNpmPackage rec { npmDepsHash = "sha256-u1dndTKvInobva+71yI2vPiwrW9vqzAJ2sDAqT9YJsg="; - meta = with lib; { + meta = { description = "Git hooks made easy 🐶 woof!"; mainProgram = "husky"; homepage = "https://github.com/typicode/husky"; changelog = "https://github.com/typicode/husky/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/ia/iam-policy-json-to-terraform/package.nix b/pkgs/by-name/ia/iam-policy-json-to-terraform/package.nix index de7cbe480958..d94101db77ae 100644 --- a/pkgs/by-name/ia/iam-policy-json-to-terraform/package.nix +++ b/pkgs/by-name/ia/iam-policy-json-to-terraform/package.nix @@ -17,11 +17,11 @@ buildGoModule rec { vendorHash = "sha256-6EtOMs+Vba39hOQ029dHpHCJ9ke35PZ/em9Xye3dmvg="; - meta = with lib; { + meta = { description = "Small tool to convert an IAM Policy in JSON format into a Terraform aws_iam_policy_document"; homepage = "https://github.com/flosell/iam-policy-json-to-terraform"; changelog = "https://github.com/flosell/iam-policy-json-to-terraform/releases/tag/${version}"; - license = licenses.asl20; - maintainers = [ maintainers.ivankovnatsky ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.ivankovnatsky ]; }; } diff --git a/pkgs/by-name/ib/ibm-plex/package.nix b/pkgs/by-name/ib/ibm-plex/package.nix index 734d5344c6d8..ac07709c7b95 100644 --- a/pkgs/by-name/ib/ibm-plex/package.nix +++ b/pkgs/by-name/ib/ibm-plex/package.nix @@ -37,13 +37,13 @@ stdenvNoCC.mkDerivation { passthru.updateScript = ./update.sh; - meta = with lib; { + meta = { description = "IBM Plex Typeface"; homepage = "https://www.ibm.com/plex/"; changelog = "https://github.com/IBM/plex/raw/v${version}/CHANGELOG.md"; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.ofl; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ romildo ryanccn ]; diff --git a/pkgs/by-name/ig/igmpproxy/package.nix b/pkgs/by-name/ig/igmpproxy/package.nix index b3c6b196f617..a510dd42e5b1 100644 --- a/pkgs/by-name/ig/igmpproxy/package.nix +++ b/pkgs/by-name/ig/igmpproxy/package.nix @@ -18,15 +18,15 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; - meta = with lib; { + meta = { description = "Daemon that routes multicast using IGMP forwarding"; homepage = "https://github.com/pali/igmpproxy/"; changelog = "https://github.com/pali/igmpproxy/releases/tag/${version}"; - license = licenses.gpl2Plus; - maintainers = [ maintainers.sdier ]; + license = lib.licenses.gpl2Plus; + maintainers = [ lib.maintainers.sdier ]; # The maintainer is using this on linux, but if you test it on other platforms # please add them here! - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "igmpproxy"; }; } diff --git a/pkgs/by-name/ig/ignite-cli/package.nix b/pkgs/by-name/ig/ignite-cli/package.nix index e968ec050628..3c870f6691f7 100644 --- a/pkgs/by-name/ig/ignite-cli/package.nix +++ b/pkgs/by-name/ig/ignite-cli/package.nix @@ -38,12 +38,12 @@ buildGoModule rec { } ''; - meta = with lib; { + meta = { homepage = "https://ignite.com/"; changelog = "https://github.com/ignite/cli/releases/tag/v${version}"; description = "All-in-one platform to build, launch, and maintain any crypto application on a sovereign and secured blockchain"; - license = licenses.asl20; - maintainers = with maintainers; [ kashw2 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kashw2 ]; mainProgram = "ignite"; }; } diff --git a/pkgs/by-name/ig/igrep/package.nix b/pkgs/by-name/ig/igrep/package.nix index fd36e112b38b..0c12b51e0731 100644 --- a/pkgs/by-name/ig/igrep/package.nix +++ b/pkgs/by-name/ig/igrep/package.nix @@ -27,12 +27,12 @@ rustPlatform.buildRustPackage rec { }; }; - meta = with lib; { + meta = { description = "Interactive Grep"; homepage = "https://github.com/konradsz/igrep"; changelog = "https://github.com/konradsz/igrep/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ _0x4A6F ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ _0x4A6F ]; mainProgram = "ig"; }; } diff --git a/pkgs/by-name/ip/ipam/package.nix b/pkgs/by-name/ip/ipam/package.nix index 1d9223ecb78d..fea8e5c867da 100644 --- a/pkgs/by-name/ip/ipam/package.nix +++ b/pkgs/by-name/ip/ipam/package.nix @@ -35,12 +35,12 @@ buildGoModule rec { --zsh <($out/bin/ipam completion zsh) ''; - meta = with lib; { + meta = { description = "Cli based IPAM written in Go with PowerDNS support"; homepage = "https://ipam.lauka.net/"; changelog = "https://codeberg.org/lauralani/ipam/releases/tag/v${version}"; - license = licenses.gpl3Plus; - maintainers = [ ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ ]; mainProgram = "ipam"; }; } diff --git a/pkgs/by-name/ip/ipinfo/package.nix b/pkgs/by-name/ip/ipinfo/package.nix index 4adcd6b5e7f7..88ffd1d860a4 100644 --- a/pkgs/by-name/ip/ipinfo/package.nix +++ b/pkgs/by-name/ip/ipinfo/package.nix @@ -20,11 +20,11 @@ buildGoModule rec { # Tests require network access doCheck = false; - meta = with lib; { + meta = { description = "Command Line Interface for the IPinfo API"; homepage = "https://github.com/ipinfo/cli"; changelog = "https://github.com/ipinfo/cli/releases/tag/ipinfo-${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ip/ipscan/package.nix b/pkgs/by-name/ip/ipscan/package.nix index 47dd511afca9..d53918f86823 100644 --- a/pkgs/by-name/ip/ipscan/package.nix +++ b/pkgs/by-name/ip/ipscan/package.nix @@ -51,16 +51,16 @@ stdenv.mkDerivation rec { cp usr/share/pixmaps/ipscan.png $out/share/pixmaps/ipscan.png ''; - meta = with lib; { + meta = { description = "Angry IP Scanner - fast and friendly network scanner"; mainProgram = "ipscan"; homepage = "https://angryip.org"; downloadPage = "https://github.com/angryip/ipscan/releases/tag/${version}"; changelog = "https://github.com/angryip/ipscan/blob/${version}/CHANGELOG"; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.gpl2Only; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; + license = lib.licenses.gpl2Only; platforms = [ "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ kylesferrazza totoroot ]; diff --git a/pkgs/by-name/ip/iptsd/package.nix b/pkgs/by-name/ip/iptsd/package.nix index 82fbed29652a..2081b92d4b98 100644 --- a/pkgs/by-name/ip/iptsd/package.nix +++ b/pkgs/by-name/ip/iptsd/package.nix @@ -63,16 +63,16 @@ stdenv.mkDerivation rec { "-Db_lto=false" # plugin needed to handle lto object -> undefined reference to ... ]; - meta = with lib; { + meta = { changelog = "https://github.com/linux-surface/iptsd/releases/tag/v${version}"; description = "Userspace daemon for Intel Precise Touch & Stylus"; homepage = "https://github.com/linux-surface/iptsd"; - license = licenses.gpl2Plus; + license = lib.licenses.gpl2Plus; mainProgram = "iptsd"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ tomberek dotlambda ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/iw/iwgtk/package.nix b/pkgs/by-name/iw/iwgtk/package.nix index c665a6488bb0..537d4af0c72a 100644 --- a/pkgs/by-name/iw/iwgtk/package.nix +++ b/pkgs/by-name/iw/iwgtk/package.nix @@ -42,13 +42,13 @@ stdenv.mkDerivation rec { substituteInPlace $out/lib/systemd/user/iwgtk.service --subst-var out ''; - meta = with lib; { + meta = { description = "Lightweight, graphical wifi management utility for Linux"; homepage = "https://github.com/j-lentz/iwgtk"; changelog = "https://github.com/j-lentz/iwgtk/blob/v${version}/CHANGELOG"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ figsoda ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ figsoda ]; + platforms = lib.platforms.linux; mainProgram = "iwgtk"; }; } diff --git a/pkgs/by-name/je/jetbrains-mono/package.nix b/pkgs/by-name/je/jetbrains-mono/package.nix index 7cd572f94316..f7179b460a09 100644 --- a/pkgs/by-name/je/jetbrains-mono/package.nix +++ b/pkgs/by-name/je/jetbrains-mono/package.nix @@ -27,12 +27,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Typeface made for developers"; homepage = "https://jetbrains.com/mono/"; changelog = "https://github.com/JetBrains/JetBrainsMono/blob/v${version}/Changelog.md"; - license = licenses.ofl; - maintainers = with maintainers; [ vinnymeller ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ vinnymeller ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/jf/jfmt/package.nix b/pkgs/by-name/jf/jfmt/package.nix index e440594a62cb..cb3145ffc125 100644 --- a/pkgs/by-name/jf/jfmt/package.nix +++ b/pkgs/by-name/jf/jfmt/package.nix @@ -18,12 +18,12 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; cargoHash = "sha256-skLK+jYeR0FPxD1fVswiOWyKpzu5/qL5mk69bLEmxic="; - meta = with lib; { + meta = { description = "CLI utility to format json files"; mainProgram = "jfmt"; homepage = "https://github.com/scruffystuffs/jfmt.rs"; changelog = "https://github.com/scruffystuffs/jfmt.rs/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = [ maintainers.psibi ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.psibi ]; }; } diff --git a/pkgs/by-name/jf/jfrog-cli/package.nix b/pkgs/by-name/jf/jfrog-cli/package.nix index cce46dd1b58e..172b8b5b1434 100644 --- a/pkgs/by-name/jf/jfrog-cli/package.nix +++ b/pkgs/by-name/jf/jfrog-cli/package.nix @@ -34,13 +34,13 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/jfrog/jfrog-cli"; description = "Client for accessing to JFrog's Artifactory and Mission Control through their respective REST APIs"; changelog = "https://github.com/jfrog/jfrog-cli/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "jf"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ detegr aidalgol ]; diff --git a/pkgs/by-name/jj/jj/package.nix b/pkgs/by-name/jj/jj/package.nix index 045338e45112..a4251102a237 100644 --- a/pkgs/by-name/jj/jj/package.nix +++ b/pkgs/by-name/jj/jj/package.nix @@ -57,7 +57,7 @@ buildGoModule (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "JSON Stream Editor (command line utility)"; longDescription = '' JJ is a command line utility that provides a fast and simple way to retrieve @@ -66,9 +66,9 @@ buildGoModule (finalAttrs: { that do not apply, and aborts as soon as the target value has been found or updated. ''; homepage = "https://github.com/tidwall/jj"; - changelog = "https://github.com/tidwall/jj/releases/tag/v${version}"; - license = licenses.mit; + changelog = "https://github.com/tidwall/jj/releases/tag/v${finalAttrs.version}"; + license = lib.licenses.mit; mainProgram = "jj"; - maintainers = with maintainers; [ katexochen ]; + maintainers = with lib.maintainers; [ katexochen ]; }; }) diff --git a/pkgs/by-name/jo/jobber/package.nix b/pkgs/by-name/jo/jobber/package.nix index 42a79db01ba4..1f31f86b43f9 100644 --- a/pkgs/by-name/jo/jobber/package.nix +++ b/pkgs/by-name/jo/jobber/package.nix @@ -35,12 +35,12 @@ buildGoModule rec { mv $out/bin/jobber{master,runner} $out/libexec/ ''; - meta = with lib; { + meta = { homepage = "https://dshearer.github.io/jobber"; changelog = "https://github.com/dshearer/jobber/releases/tag/v${version}"; description = "Alternative to cron, with sophisticated status-reporting and error-handling"; - license = licenses.mit; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ urandom ]; mainProgram = "jobber"; }; } diff --git a/pkgs/by-name/jo/joincap/package.nix b/pkgs/by-name/jo/joincap/package.nix index 01a9a67bb985..b8d207ada2a6 100644 --- a/pkgs/by-name/jo/joincap/package.nix +++ b/pkgs/by-name/jo/joincap/package.nix @@ -25,12 +25,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Merge multiple pcap files together, gracefully"; homepage = "https://github.com/assafmo/joincap"; changelog = "https://github.com/assafmo/joincap/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "joincap"; }; } diff --git a/pkgs/by-name/jr/jrnl/package.nix b/pkgs/by-name/jr/jrnl/package.nix index 3d0113ed4aa1..61e8e125b430 100644 --- a/pkgs/by-name/jr/jrnl/package.nix +++ b/pkgs/by-name/jr/jrnl/package.nix @@ -61,12 +61,12 @@ python3.pkgs.buildPythonApplication rec { version = "v${version}"; }; - meta = with lib; { + meta = { description = "Command line journal application that stores your journal in a plain text file"; homepage = "https://jrnl.sh/"; changelog = "https://github.com/jrnl-org/jrnl/releases/tag/v${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ bryanasdev000 zalakain ]; diff --git a/pkgs/by-name/js/jsonnet-language-server/package.nix b/pkgs/by-name/js/jsonnet-language-server/package.nix index 20a4a38df15f..d00290464177 100644 --- a/pkgs/by-name/js/jsonnet-language-server/package.nix +++ b/pkgs/by-name/js/jsonnet-language-server/package.nix @@ -23,12 +23,12 @@ buildGoModule rec { "-X 'main.version=${version}'" ]; - meta = with lib; { + meta = { description = "Language Server Protocol server for Jsonnet"; mainProgram = "jsonnet-language-server"; homepage = "https://github.com/grafana/jsonnet-language-server"; changelog = "https://github.com/grafana/jsonnet-language-server/releases/tag/v${version}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ hardselius ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ hardselius ]; }; } diff --git a/pkgs/by-name/jw/jwt-hack/package.nix b/pkgs/by-name/jw/jwt-hack/package.nix index dee3dcaacd1e..19f6c347292b 100644 --- a/pkgs/by-name/jw/jwt-hack/package.nix +++ b/pkgs/by-name/jw/jwt-hack/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-s" ]; - meta = with lib; { + meta = { description = "Tool for attacking JWT"; homepage = "https://github.com/hahwul/jwt-hack"; changelog = "https://github.com/hahwul/jwt-hack/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "jwt-hack"; }; } diff --git a/pkgs/by-name/jx/jx/package.nix b/pkgs/by-name/jx/jx/package.nix index 86f3c87e2687..050758180eb0 100644 --- a/pkgs/by-name/jx/jx/package.nix +++ b/pkgs/by-name/jx/jx/package.nix @@ -39,7 +39,7 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Command line tool for installing and using Jenkins X"; mainProgram = "jx"; @@ -50,8 +50,8 @@ buildGoModule rec { Environments on Pull Requests using using Cloud Native pipelines from Tekton. ''; - license = licenses.asl20; - maintainers = with maintainers; [ kalbasit ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ kalbasit ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/k0/k0sctl/package.nix b/pkgs/by-name/k0/k0sctl/package.nix index 8e7f667fd1fc..17095c43edbc 100644 --- a/pkgs/by-name/k0/k0sctl/package.nix +++ b/pkgs/by-name/k0/k0sctl/package.nix @@ -44,13 +44,13 @@ buildGoModule rec { version = "version: (devel)\ncommit: v${version}\n"; }; - meta = with lib; { + meta = { description = "Bootstrapping and management tool for k0s clusters"; homepage = "https://k0sproject.io/"; changelog = "https://github.com/k0sproject/k0sctl/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "k0sctl"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ nickcao qjoly ]; diff --git a/pkgs/by-name/k3/k3d/package.nix b/pkgs/by-name/k3/k3d/package.nix index 722ecebf6470..ca6cc1a20c28 100644 --- a/pkgs/by-name/k3/k3d/package.nix +++ b/pkgs/by-name/k3/k3d/package.nix @@ -69,7 +69,7 @@ buildGoModule rec { env.GOWORK = "off"; - meta = with lib; { + meta = { homepage = "https://github.com/k3d-io/k3d/"; changelog = "https://github.com/k3d-io/k3d/blob/v${version}/CHANGELOG.md"; description = "Helper to run k3s (Lightweight Kubernetes. 5 less than k8s) in a docker container"; @@ -80,14 +80,14 @@ buildGoModule rec { k3d creates containerized k3s clusters. This means, that you can spin up a multi-node k3s cluster on a single machine using docker. ''; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ kuznero jlesquembre ngerstle jk ricochet ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/k6/k6/package.nix b/pkgs/by-name/k6/k6/package.nix index 0a5f47cea9fe..438916386118 100644 --- a/pkgs/by-name/k6/k6/package.nix +++ b/pkgs/by-name/k6/k6/package.nix @@ -35,13 +35,13 @@ buildGoModule rec { --zsh <($out/bin/k6 completion zsh) ''; - meta = with lib; { + meta = { description = "Modern load testing tool, using Go and JavaScript"; mainProgram = "k6"; homepage = "https://k6.io/"; changelog = "https://github.com/grafana/k6/releases/tag/v${version}"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ offline bryanasdev000 kashw2 diff --git a/pkgs/by-name/k8/k8s-manifest-sigstore/package.nix b/pkgs/by-name/k8/k8s-manifest-sigstore/package.nix index 1427093e9429..7977fe094bde 100644 --- a/pkgs/by-name/k8/k8s-manifest-sigstore/package.nix +++ b/pkgs/by-name/k8/k8s-manifest-sigstore/package.nix @@ -55,12 +55,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { homepage = "https://github.com/sigstore/k8s-manifest-sigstore"; changelog = "https://github.com/sigstore/k8s-manifest-sigstore/releases/tag/v${version}"; description = "Kubectl plugin for signing Kubernetes manifest YAML files with sigstore"; mainProgram = "kubectl-sigstore"; - license = licenses.asl20; - maintainers = with maintainers; [ bbigras ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bbigras ]; }; } diff --git a/pkgs/by-name/k9/k9s/package.nix b/pkgs/by-name/k9/k9s/package.nix index 65fe7bbd0b97..6160f1db8478 100644 --- a/pkgs/by-name/k9/k9s/package.nix +++ b/pkgs/by-name/k9/k9s/package.nix @@ -64,13 +64,13 @@ buildGoModule rec { nativeCheckInputs = [ writableTmpDirAsHomeHook ]; - meta = with lib; { + meta = { description = "Kubernetes CLI To Manage Your Clusters In Style"; homepage = "https://github.com/derailed/k9s"; changelog = "https://github.com/derailed/k9s/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "k9s"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ Gonzih markus1189 bryanasdev000 diff --git a/pkgs/by-name/kb/kb/package.nix b/pkgs/by-name/kb/kb/package.nix index 0496ebc96c76..58c502af23a2 100644 --- a/pkgs/by-name/kb/kb/package.nix +++ b/pkgs/by-name/kb/kb/package.nix @@ -37,7 +37,7 @@ python3.pkgs.buildPythonApplication rec { pytestCheckHook ]; - meta = with lib; { + meta = { description = "Minimalist command line knowledge base manager"; longDescription = '' kb is a text-oriented minimalist command line knowledge base manager. kb @@ -49,8 +49,8 @@ python3.pkgs.buildPythonApplication rec { ''; homepage = "https://github.com/gnebbia/kb"; changelog = "https://github.com/gnebbia/kb/blob/v${version}/CHANGELOG.md"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ wesleyjrz ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ wesleyjrz ]; mainProgram = "kb"; }; } diff --git a/pkgs/by-name/kb/kbs2/package.nix b/pkgs/by-name/kb/kbs2/package.nix index dd0724da5c2c..649db2a3f5da 100644 --- a/pkgs/by-name/kb/kbs2/package.nix +++ b/pkgs/by-name/kb/kbs2/package.nix @@ -46,12 +46,12 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/kbs2 --completions zsh) ''; - meta = with lib; { + meta = { description = "Secret manager backed by age"; mainProgram = "kbs2"; homepage = "https://github.com/woodruffw/kbs2"; changelog = "https://github.com/woodruffw/kbs2/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = [ ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/by-name/kh/khoj/package.nix b/pkgs/by-name/kh/khoj/package.nix index bb462f08c2b2..ec9e03b13835 100644 --- a/pkgs/by-name/kh/khoj/package.nix +++ b/pkgs/by-name/kh/khoj/package.nix @@ -134,12 +134,12 @@ python3.pkgs.buildPythonApplication rec { "tests/test_conversation_utils.py" ]; - meta = with lib; { + meta = { description = "Natural Language Search Assistant for your Org-Mode and Markdown notes, Beancount transactions and Photos"; homepage = "https://github.com/debanjum/khoj"; changelog = "https://github.com/debanjum/khoj/releases/tag/${version}"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ dit7ya ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ dit7ya ]; broken = true; # last successful build 2024-01-10 }; } diff --git a/pkgs/by-name/kl/klipper-estimator/package.nix b/pkgs/by-name/kl/klipper-estimator/package.nix index 0e863c58be61..33282e64f9ac 100644 --- a/pkgs/by-name/kl/klipper-estimator/package.nix +++ b/pkgs/by-name/kl/klipper-estimator/package.nix @@ -32,12 +32,12 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Tool for determining the time a print will take using the Klipper firmware"; homepage = "https://github.com/Annex-Engineering/klipper_estimator"; changelog = "https://github.com/Annex-Engineering/klipper_estimator/releases/tag/v${version}"; mainProgram = "klipper_estimator"; - license = licenses.mit; - maintainers = with maintainers; [ tmarkus ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tmarkus ]; }; } diff --git a/pkgs/by-name/kn/knit/package.nix b/pkgs/by-name/kn/knit/package.nix index 82d1a2fe8982..574dffb8799f 100644 --- a/pkgs/by-name/kn/knit/package.nix +++ b/pkgs/by-name/kn/knit/package.nix @@ -27,12 +27,12 @@ buildGoModule rec { "-X github.com/zyedidia/knit/info.Version=${version}" ]; - meta = with lib; { + meta = { description = "Simple and flexible build tool using Lua, similar to make/mk"; mainProgram = "knit"; homepage = "https://github.com/zyedidia/knit"; changelog = "https://github.com/zyedidia/knit/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ DrSensor ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ DrSensor ]; }; } diff --git a/pkgs/by-name/kn/knockpy/package.nix b/pkgs/by-name/kn/knockpy/package.nix index 3642043bbb43..5a3403b76d8e 100644 --- a/pkgs/by-name/kn/knockpy/package.nix +++ b/pkgs/by-name/kn/knockpy/package.nix @@ -41,12 +41,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "knock" ]; - meta = with lib; { + meta = { description = "Tool to scan subdomains"; homepage = "https://github.com/guelfoweb/knock"; changelog = "https://github.com/guelfoweb/knock/releases/tag/${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "knockpy"; }; } diff --git a/pkgs/by-name/kn/knot-dns/package.nix b/pkgs/by-name/kn/knot-dns/package.nix index a415cb289709..16da2ead4b7f 100644 --- a/pkgs/by-name/kn/knot-dns/package.nix +++ b/pkgs/by-name/kn/knot-dns/package.nix @@ -131,13 +131,13 @@ stdenv.mkDerivation rec { ''; }; - meta = with lib; { + meta = { description = "Authoritative-only DNS server from .cz domain registry"; homepage = "https://knot-dns.cz"; changelog = "https://gitlab.nic.cz/knot/knot-dns/-/releases/v${version}"; - license = licenses.gpl3Plus; - platforms = platforms.unix; - maintainers = [ maintainers.vcunat ]; + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.vcunat ]; mainProgram = "knotd"; }; } diff --git a/pkgs/by-name/kr/krabby/package.nix b/pkgs/by-name/kr/krabby/package.nix index c347a934aee5..11ea4a97ccbd 100644 --- a/pkgs/by-name/kr/krabby/package.nix +++ b/pkgs/by-name/kr/krabby/package.nix @@ -15,12 +15,12 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; cargoHash = "sha256-aJBZtRs83KwnxlgNn/5zEGCw4YUl4mRcs1dFi2uaIrc="; - meta = with lib; { + meta = { description = "Print pokemon sprites in your terminal"; homepage = "https://github.com/yannjor/krabby"; changelog = "https://github.com/yannjor/krabby/releases/tag/v${version}"; - license = licenses.gpl3; - maintainers = with maintainers; [ ruby0b ]; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ ruby0b ]; mainProgram = "krabby"; }; } diff --git a/pkgs/by-name/kr/krbjack/package.nix b/pkgs/by-name/kr/krbjack/package.nix index 762aae312096..c916c72b7613 100644 --- a/pkgs/by-name/kr/krbjack/package.nix +++ b/pkgs/by-name/kr/krbjack/package.nix @@ -38,12 +38,12 @@ python3.pkgs.buildPythonApplication rec { "krbjack" ]; - meta = with lib; { + meta = { description = "Kerberos AP-REQ hijacking tool with DNS unsecure updates abuse"; homepage = "https://github.com/almandin/krbjack"; changelog = "https://github.com/almandin/krbjack/releases/tag/${version}}"; - license = licenses.beerware; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.beerware; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "krbjack"; }; } diff --git a/pkgs/by-name/kr/krelay/package.nix b/pkgs/by-name/kr/krelay/package.nix index f5eea3642d8d..aa307041b81a 100644 --- a/pkgs/by-name/kr/krelay/package.nix +++ b/pkgs/by-name/kr/krelay/package.nix @@ -29,12 +29,12 @@ buildGoModule rec { mv $out/bin/client $out/bin/kubectl-relay ''; - meta = with lib; { + meta = { description = "Drop-in replacement for `kubectl port-forward` with some enhanced features"; homepage = "https://github.com/knight42/krelay"; changelog = "https://github.com/knight42/krelay/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ ivankovnatsky ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ivankovnatsky ]; mainProgram = "kubectl-relay"; }; } diff --git a/pkgs/by-name/kr/krill/package.nix b/pkgs/by-name/kr/krill/package.nix index dd0a41318895..c5330e51cc71 100644 --- a/pkgs/by-name/kr/krill/package.nix +++ b/pkgs/by-name/kr/krill/package.nix @@ -30,7 +30,7 @@ rustPlatform.buildRustPackage rec { # disable failing tests on darwin doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { + meta = { description = "RPKI Certificate Authority and Publication Server written in Rust"; longDescription = '' Krill is a free, open source RPKI Certificate Authority that lets you run @@ -40,7 +40,7 @@ rustPlatform.buildRustPackage rec { ''; homepage = "https://github.com/NLnetLabs/krill"; changelog = "https://github.com/NLnetLabs/krill/releases/tag/v${version}"; - license = licenses.mpl20; - maintainers = with maintainers; [ steamwalker ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ steamwalker ]; }; } diff --git a/pkgs/by-name/ky/kyverno/package.nix b/pkgs/by-name/ky/kyverno/package.nix index 2d6d062173b2..ec80f38bb04d 100644 --- a/pkgs/by-name/ky/kyverno/package.nix +++ b/pkgs/by-name/ky/kyverno/package.nix @@ -47,12 +47,12 @@ buildGoModule rec { version = "v${version}"; # needed because testVersion uses grep -Fw }; - meta = with lib; { + meta = { description = "Kubernetes Native Policy Management"; mainProgram = "kyverno"; homepage = "https://kyverno.io/"; changelog = "https://github.com/kyverno/kyverno/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ bryanasdev000 ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ bryanasdev000 ]; }; } diff --git a/pkgs/by-name/ld/ldapmonitor/package.nix b/pkgs/by-name/ld/ldapmonitor/package.nix index 52ded0dc99dc..1aec07adfad4 100644 --- a/pkgs/by-name/ld/ldapmonitor/package.nix +++ b/pkgs/by-name/ld/ldapmonitor/package.nix @@ -32,12 +32,12 @@ python3.pkgs.buildPythonApplication rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Tool to monitor creation, deletion and changes to LDAP objects"; mainProgram = "ldapmonitor"; homepage = "https://github.com/p0dalirius/LDAPmonitor"; changelog = "https://github.com/p0dalirius/LDAPmonitor/releases/tag/${version}"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ld/ldapnomnom/package.nix b/pkgs/by-name/ld/ldapnomnom/package.nix index 2d9557ed0ceb..7fc161682d1f 100644 --- a/pkgs/by-name/ld/ldapnomnom/package.nix +++ b/pkgs/by-name/ld/ldapnomnom/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-s" ]; - meta = with lib; { + meta = { description = "Tool to anonymously bruteforce usernames from Domain controllers"; homepage = "https://github.com/lkarlslund/ldapnomnom"; changelog = "https://github.com/lkarlslund/ldapnomnom/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "ldapnomnom"; }; } diff --git a/pkgs/by-name/ld/ldmud/package.nix b/pkgs/by-name/ld/ldmud/package.nix index 71ba320bd654..fa85bacb6c23 100644 --- a/pkgs/by-name/ld/ldmud/package.nix +++ b/pkgs/by-name/ld/ldmud/package.nix @@ -102,7 +102,7 @@ stdenv.mkDerivation rec { cp -v ../COPYRIGHT $out/share/ ''; - meta = with lib; { + meta = { description = "Gamedriver for LPMuds including a LPC compiler, interpreter and runtime"; homepage = "https://ldmud.eu"; changelog = "https://github.com/ldmud/ldmud/blob/${version}/HISTORY"; @@ -116,8 +116,8 @@ stdenv.mkDerivation rec { a driver in its own right. ''; # See https://github.com/ldmud/ldmud/blob/master/COPYRIGHT - license = licenses.unfreeRedistributable; - platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ cpu ]; + license = lib.licenses.unfreeRedistributable; + platforms = with lib.platforms; linux ++ darwin; + maintainers = with lib.maintainers; [ cpu ]; }; } diff --git a/pkgs/by-name/ld/ldproxy/package.nix b/pkgs/by-name/ld/ldproxy/package.nix index a1816eccef18..db31f5254b19 100644 --- a/pkgs/by-name/ld/ldproxy/package.nix +++ b/pkgs/by-name/ld/ldproxy/package.nix @@ -24,14 +24,14 @@ rustPlatform.buildRustPackage rec { # cf: https://github.com/esp-rs/embuild/tree/v0.31.4/ldproxy buildAndTestSubdir = "ldproxy"; - meta = with lib; { + meta = { description = "Linker Proxy: a simple tool to forward linker arguments to the actual linker executable"; homepage = "https://github.com/esp-rs/embuild"; changelog = "https://github.com/esp-rs/embuild/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; - maintainers = with maintainers; [ vpochapuis ]; + maintainers = with lib.maintainers; [ vpochapuis ]; }; } diff --git a/pkgs/by-name/lf/lf/package.nix b/pkgs/by-name/lf/lf/package.nix index 10c678e7604d..114415680312 100644 --- a/pkgs/by-name/lf/lf/package.nix +++ b/pkgs/by-name/lf/lf/package.nix @@ -37,7 +37,7 @@ buildGoModule rec { installShellCompletion etc/lf.{bash,zsh,fish} ''; - meta = with lib; { + meta = { description = "Terminal file manager written in Go and heavily inspired by ranger"; longDescription = '' lf (as in "list files") is a terminal file manager written in Go. It is @@ -47,8 +47,8 @@ buildGoModule rec { ''; homepage = "https://godoc.org/github.com/gokcehan/lf"; changelog = "https://github.com/gokcehan/lf/releases/tag/r${version}"; - license = licenses.mit; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dotlambda ]; mainProgram = "lf"; }; } diff --git a/pkgs/by-name/lm/lmdb/package.nix b/pkgs/by-name/lm/lmdb/package.nix index e7ec894cf95b..dcb05051d155 100644 --- a/pkgs/by-name/lm/lmdb/package.nix +++ b/pkgs/by-name/lm/lmdb/package.nix @@ -73,7 +73,7 @@ stdenv.mkDerivation rec { ln -s lmdb.pc "$dev/lib/pkgconfig/liblmdb.pc" ''; - meta = with lib; { + meta = { description = "Lightning memory-mapped database"; longDescription = '' LMDB is an ultra-fast, ultra-compact key-value embedded data store @@ -84,11 +84,11 @@ stdenv.mkDerivation rec { ''; homepage = "https://symas.com/lmdb/"; changelog = "https://git.openldap.org/openldap/openldap/-/blob/LMDB_${version}/libraries/liblmdb/CHANGES"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ jb55 vcunat ]; - license = licenses.openldap; - platforms = platforms.all; + license = lib.licenses.openldap; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ls/lscolors/package.nix b/pkgs/by-name/ls/lscolors/package.nix index 2f7441b9cff4..17e9a1151480 100644 --- a/pkgs/by-name/ls/lscolors/package.nix +++ b/pkgs/by-name/ls/lscolors/package.nix @@ -21,15 +21,15 @@ rustPlatform.buildRustPackage rec { # setid is not allowed in the sandbox checkFlags = [ "--skip=tests::style_for_setid" ]; - meta = with lib; { + meta = { description = "Rust library and tool to colorize paths using LS_COLORS"; homepage = "https://github.com/sharkdp/lscolors"; changelog = "https://github.com/sharkdp/lscolors/releases/tag/v${version}"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ SuperSandro2000 ]; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; mainProgram = "lscolors"; }; } diff --git a/pkgs/by-name/ls/lse/package.nix b/pkgs/by-name/ls/lse/package.nix index 6d9c8caa9135..f46959a34679 100644 --- a/pkgs/by-name/ls/lse/package.nix +++ b/pkgs/by-name/ls/lse/package.nix @@ -28,13 +28,13 @@ stdenv.mkDerivation rec { --prefix PATH : ${lib.makeBinPath [ bash ]} ''; - meta = with lib; { + meta = { description = "Linux enumeration tool with verbosity levels"; homepage = "https://github.com/diego-treitos/linux-smart-enumeration"; changelog = "https://github.com/diego-treitos/linux-smart-enumeration/releases/tag/${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "lse.sh"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ls/lsh/package.nix b/pkgs/by-name/ls/lsh/package.nix index bfa38767ab47..7e53904476f1 100644 --- a/pkgs/by-name/ls/lsh/package.nix +++ b/pkgs/by-name/ls/lsh/package.nix @@ -14,11 +14,11 @@ buildGoModule rec { }; vendorHash = "sha256-ogdyzfayleka4Y8x74ZtttD7MaeCl1qP/rQi9x0tMto="; subPackages = [ "." ]; - meta = with lib; { + meta = { changelog = "https://github.com/latitudesh/lsh/releases/tag/v${version}"; description = "Command-Line Interface for Latitude.sh"; homepage = "https://github.com/latitudesh/lsh"; - license = licenses.mit; + license = lib.licenses.mit; maintainers = [ lib.maintainers.dzmitry-lahoda ]; }; } diff --git a/pkgs/by-name/lt/lttoolbox/package.nix b/pkgs/by-name/lt/lttoolbox/package.nix index 48db7dcea516..dd4e74203b78 100644 --- a/pkgs/by-name/lt/lttoolbox/package.nix +++ b/pkgs/by-name/lt/lttoolbox/package.nix @@ -47,12 +47,12 @@ stdenv.mkDerivation rec { python3 tests/run_tests.py ''; - meta = with lib; { + meta = { description = "Finite state compiler, processor and helper tools used by apertium"; homepage = "https://github.com/apertium/lttoolbox"; - maintainers = with maintainers; [ onthestairs ]; + maintainers = with lib.maintainers; [ onthestairs ]; changelog = "https://github.com/apertium/lttoolbox/releases/tag/v${version}"; - license = licenses.gpl2; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/lx/lx-music-desktop/package.nix b/pkgs/by-name/lx/lx-music-desktop/package.nix index 6be8e51cc2d2..1c7805b92fcb 100644 --- a/pkgs/by-name/lx/lx-music-desktop/package.nix +++ b/pkgs/by-name/lx/lx-music-desktop/package.nix @@ -86,15 +86,15 @@ buildNpmPackage rec { --add-flags ${lib.escapeShellArg commandLineArgs} ''; - meta = with lib; { + meta = { broken = stdenv.hostPlatform.isDarwin; description = "Music software based on Electron and Vue"; homepage = "https://github.com/lyswhut/lx-music-desktop"; changelog = "https://github.com/lyswhut/lx-music-desktop/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; platforms = electron.meta.platforms; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; mainProgram = "lx-music-desktop"; - maintainers = with maintainers; [ oosquare ]; + maintainers = with lib.maintainers; [ oosquare ]; }; } diff --git a/pkgs/by-name/lx/lxd-unwrapped-lts/package.nix b/pkgs/by-name/lx/lxd-unwrapped-lts/package.nix index f1cf3561ea2a..c924b449db26 100644 --- a/pkgs/by-name/lx/lxd-unwrapped-lts/package.nix +++ b/pkgs/by-name/lx/lxd-unwrapped-lts/package.nix @@ -100,15 +100,15 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Daemon based on liblxc offering a REST API to manage containers"; homepage = "https://ubuntu.com/lxd"; changelog = "https://github.com/canonical/lxd/releases/tag/lxd-${version}"; - license = with licenses; [ + license = with lib.licenses; [ asl20 agpl3Plus ]; - maintainers = [ ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mb/mbtileserver/package.nix b/pkgs/by-name/mb/mbtileserver/package.nix index 0cfdf7ac133b..4bd5f60252f0 100644 --- a/pkgs/by-name/mb/mbtileserver/package.nix +++ b/pkgs/by-name/mb/mbtileserver/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-yn7LcR/DvHDSRicUnWLrFZKqZti+YQoLSk3mZkDIj10="; - meta = with lib; { + meta = { description = "Simple Go-based server for map tiles stored in mbtiles format"; mainProgram = "mbtileserver"; homepage = "https://github.com/consbio/mbtileserver"; changelog = "https://github.com/consbio/mbtileserver/blob/v${version}/CHANGELOG.md"; - license = licenses.isc; - teams = [ teams.geospatial ]; + license = lib.licenses.isc; + teams = [ lib.teams.geospatial ]; }; } diff --git a/pkgs/by-name/mb/mbusd/package.nix b/pkgs/by-name/mb/mbusd/package.nix index d3331da67f47..baba9df86a83 100644 --- a/pkgs/by-name/mb/mbusd/package.nix +++ b/pkgs/by-name/mb/mbusd/package.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation rec { pkg-config ]; - meta = with lib; { + meta = { description = "Modbus TCP to Modbus RTU (RS-232/485) gateway"; homepage = "https://github.com/3cky/mbusd"; changelog = "https://github.com/3cky/mbusd/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; mainProgram = "mbusd"; }; } diff --git a/pkgs/by-name/md/mdbook-emojicodes/package.nix b/pkgs/by-name/md/mdbook-emojicodes/package.nix index 5de989c1176a..1449b7bccff4 100644 --- a/pkgs/by-name/md/mdbook-emojicodes/package.nix +++ b/pkgs/by-name/md/mdbook-emojicodes/package.nix @@ -18,13 +18,13 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; cargoHash = "sha256-+VVkrXvsqtizeVhfuO0U8ADfSkmovpT7DVwrz7QljU0="; - meta = with lib; { + meta = { description = "MDBook preprocessor for converting emojicodes (e.g. `: cat :`) into emojis 🐱"; mainProgram = "mdbook-emojicodes"; homepage = "https://github.com/blyxyas/mdbook-emojicodes"; changelog = "https://github.com/blyxyas/mdbook-emojicodes/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ matthiasbeyer ]; }; diff --git a/pkgs/by-name/md/mdbook-i18n-helpers/package.nix b/pkgs/by-name/md/mdbook-i18n-helpers/package.nix index c790d9bff40b..0049b257893c 100644 --- a/pkgs/by-name/md/mdbook-i18n-helpers/package.nix +++ b/pkgs/by-name/md/mdbook-i18n-helpers/package.nix @@ -19,12 +19,12 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; cargoHash = "sha256-ZBGMfJA2diPvvoIXPosUs4ngXU9/GMGa4GAlKIjwm8s="; - meta = with lib; { + meta = { description = "Helpers for a mdbook i18n workflow based on Gettext"; homepage = "https://github.com/google/mdbook-i18n-helpers"; changelog = "https://github.com/google/mdbook-i18n-helpers/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ teutat3s matthiasbeyer ]; diff --git a/pkgs/by-name/mm/mmseqs2/package.nix b/pkgs/by-name/mm/mmseqs2/package.nix index dfbfc21be257..e4e558124f97 100644 --- a/pkgs/by-name/mm/mmseqs2/package.nix +++ b/pkgs/by-name/mm/mmseqs2/package.nix @@ -85,13 +85,13 @@ stdenv.mkDerivation (finalAttrs: { ''; }; - meta = with lib; { + meta = { description = "Ultra fast and sensitive sequence search and clustering suite"; mainProgram = "mmseqs"; homepage = "https://mmseqs.com/"; - changelog = "https://github.com/soedinglab/MMseqs2/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ natsukium ]; - platforms = platforms.unix; + changelog = "https://github.com/soedinglab/MMseqs2/releases/tag/${finalAttrs.version}"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ natsukium ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/mm/mmtc/package.nix b/pkgs/by-name/mm/mmtc/package.nix index b7fbabd2f3f8..978efda99512 100644 --- a/pkgs/by-name/mm/mmtc/package.nix +++ b/pkgs/by-name/mm/mmtc/package.nix @@ -28,12 +28,12 @@ rustPlatform.buildRustPackage rec { GEN_ARTIFACTS = "artifacts"; - meta = with lib; { + meta = { description = "Minimal mpd terminal client that aims to be simple yet highly configurable"; homepage = "https://github.com/figsoda/mmtc"; changelog = "https://github.com/figsoda/mmtc/blob/v${version}/CHANGELOG.md"; - license = licenses.mpl20; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "mmtc"; }; } diff --git a/pkgs/by-name/mq/mqtt-benchmark/package.nix b/pkgs/by-name/mq/mqtt-benchmark/package.nix index b7dbca6aa693..85bee9c107e9 100644 --- a/pkgs/by-name/mq/mqtt-benchmark/package.nix +++ b/pkgs/by-name/mq/mqtt-benchmark/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-ZN5tNDIisbhMMOA2bVJnE96GPdZ54HXTneFQewwJmHI="; - meta = with lib; { + meta = { description = "MQTT broker benchmarking tool"; homepage = "https://github.com/krylovsk/mqtt-benchmark"; changelog = "https://github.com/krylovsk/mqtt-benchmark/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "mqtt-benchmark"; }; } diff --git a/pkgs/by-name/mq/mqtt-explorer/package.nix b/pkgs/by-name/mq/mqtt-explorer/package.nix index d9f8293dc1ad..c83aee844f79 100644 --- a/pkgs/by-name/mq/mqtt-explorer/package.nix +++ b/pkgs/by-name/mq/mqtt-explorer/package.nix @@ -168,12 +168,12 @@ stdenv.mkDerivation rec { }) ]; - meta = with lib; { + meta = { description = "All-round MQTT client that provides a structured topic overview"; homepage = "https://github.com/thomasnordquist/MQTT-Explorer"; changelog = "https://github.com/thomasnordquist/MQTT-Explorer/releases/tag/v${version}"; - license = licenses.cc-by-nd-40; - maintainers = with maintainers; [ tsandrini ]; + license = lib.licenses.cc-by-nd-40; + maintainers = with lib.maintainers; [ tsandrini ]; platforms = electron.meta.platforms; mainProgram = "mqtt-explorer"; }; diff --git a/pkgs/by-name/mq/mqttx/package.nix b/pkgs/by-name/mq/mqttx/package.nix index a7fdd5940e1f..7c9328425f5d 100644 --- a/pkgs/by-name/mq/mqttx/package.nix +++ b/pkgs/by-name/mq/mqttx/package.nix @@ -48,13 +48,13 @@ appimageTools.wrapType2 { --replace-fail 'Exec=AppRun' 'Exec=${pname}' ''; - meta = with lib; { + meta = { description = "Powerful cross-platform MQTT 5.0 Desktop, CLI, and WebSocket client tools"; homepage = "https://mqttx.app/"; changelog = "https://github.com/emqx/MQTTX/releases/tag/v${version}"; - license = licenses.asl20; - platforms = platforms.linux; - maintainers = with maintainers; [ gaelreyrol ]; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ gaelreyrol ]; mainProgram = "mqttx"; }; } diff --git a/pkgs/by-name/mu/mu/package.nix b/pkgs/by-name/mu/mu/package.nix index 26193a8a1246..50e8a88825b6 100644 --- a/pkgs/by-name/mu/mu/package.nix +++ b/pkgs/by-name/mu/mu/package.nix @@ -89,17 +89,17 @@ stdenv.mkDerivation rec { # Tests need a UTF-8 aware locale configured env.LANG = "C.UTF-8"; - meta = with lib; { + meta = { description = "Collection of utilities for indexing and searching Maildirs"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; homepage = "https://www.djcbsoftware.nl/code/mu/"; changelog = "https://github.com/djcb/mu/releases/tag/v${version}"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ antono chvp peterhoeg ]; mainProgram = "mu"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/mu/mubeng/package.nix b/pkgs/by-name/mu/mubeng/package.nix index 4a3f8e010157..35fb5632b894 100644 --- a/pkgs/by-name/mu/mubeng/package.nix +++ b/pkgs/by-name/mu/mubeng/package.nix @@ -23,12 +23,12 @@ buildGoModule rec { "-X=ktbs.dev/mubeng/common.Version=${version}" ]; - meta = with lib; { + meta = { description = "Proxy checker and IP rotator"; homepage = "https://github.com/kitabisa/mubeng"; changelog = "https://github.com/kitabisa/mubeng/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "mubeng"; }; } diff --git a/pkgs/by-name/mu/muffet/package.nix b/pkgs/by-name/mu/muffet/package.nix index 3723c584bff7..b746678f57bc 100644 --- a/pkgs/by-name/mu/muffet/package.nix +++ b/pkgs/by-name/mu/muffet/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-scma8hrm8e/KU2x+TIGOvaUk6nYxKIZ1eaGqs/W2I0I="; - meta = with lib; { + meta = { description = "Website link checker which scrapes and inspects all pages in a website recursively"; homepage = "https://github.com/raviqqe/muffet"; changelog = "https://github.com/raviqqe/muffet/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "muffet"; }; } diff --git a/pkgs/by-name/mu/mupdf/package.nix b/pkgs/by-name/mu/mupdf/package.nix index 50344eb22589..3edd5e8d23e9 100644 --- a/pkgs/by-name/mu/mupdf/package.nix +++ b/pkgs/by-name/mu/mupdf/package.nix @@ -278,13 +278,13 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://mupdf.com"; description = "Lightweight PDF, XPS, and E-book viewer and toolkit written in portable C"; changelog = "https://git.ghostscript.com/?p=mupdf.git;a=blob_plain;f=CHANGES;hb=${version}"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ fpletz ]; - platforms = platforms.unix; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ fpletz ]; + platforms = lib.platforms.unix; mainProgram = "mupdf"; }; } diff --git a/pkgs/by-name/mu/music-assistant/frontend.nix b/pkgs/by-name/mu/music-assistant/frontend.nix index 23f91c042213..ef056f3033b2 100644 --- a/pkgs/by-name/mu/music-assistant/frontend.nix +++ b/pkgs/by-name/mu/music-assistant/frontend.nix @@ -26,11 +26,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "music_assistant_frontend" ]; - meta = with lib; { + meta = { changelog = "https://github.com/music-assistant/frontend/releases/tag/${version}"; description = "Music Assistant frontend"; homepage = "https://github.com/music-assistant/frontend"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; }; } diff --git a/pkgs/by-name/mu/music-assistant/package.nix b/pkgs/by-name/mu/music-assistant/package.nix index f62bcbcd930c..f56a60fc09d3 100644 --- a/pkgs/by-name/mu/music-assistant/package.nix +++ b/pkgs/by-name/mu/music-assistant/package.nix @@ -173,7 +173,7 @@ python.pkgs.buildPythonApplication rec { tests = nixosTests.music-assistant; }; - meta = with lib; { + meta = { changelog = "https://github.com/music-assistant/server/releases/tag/${version}"; description = "Music Assistant is a music library manager for various music sources which can easily stream to a wide range of supported players"; longDescription = '' @@ -182,8 +182,8 @@ python.pkgs.buildPythonApplication rec { always-on device like a Raspberry Pi, a NAS or an Intel NUC or alike. ''; homepage = "https://github.com/music-assistant/server"; - license = licenses.asl20; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; mainProgram = "mass"; }; } diff --git a/pkgs/by-name/mu/musl/package.nix b/pkgs/by-name/mu/musl/package.nix index d2227dd12a49..97a61412aa49 100644 --- a/pkgs/by-name/mu/musl/package.nix +++ b/pkgs/by-name/mu/musl/package.nix @@ -163,11 +163,11 @@ stdenv.mkDerivation rec { passthru.linuxHeaders = linuxHeaders; - meta = with lib; { + meta = { description = "Efficient, small, quality libc implementation"; homepage = "https://musl.libc.org/"; changelog = "https://git.musl-libc.org/cgit/musl/tree/WHATSNEW?h=v${version}"; - license = licenses.mit; + license = lib.licenses.mit; platforms = [ "aarch64-linux" "armv5tel-linux" @@ -190,7 +190,7 @@ stdenv.mkDerivation rec { "s390x-linux" "x86_64-linux" ]; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ thoughtpolice dtzWill ]; diff --git a/pkgs/by-name/mu/mutagen-compose/package.nix b/pkgs/by-name/mu/mutagen-compose/package.nix index 73c85bbfd420..567d43d5a5df 100644 --- a/pkgs/by-name/mu/mutagen-compose/package.nix +++ b/pkgs/by-name/mu/mutagen-compose/package.nix @@ -23,12 +23,12 @@ buildGoModule rec { tags = [ "mutagencompose" ]; - meta = with lib; { + meta = { description = "Compose with Mutagen integration"; homepage = "https://mutagen.io/"; changelog = "https://github.com/mutagen-io/mutagen-compose/releases/tag/v${version}"; - maintainers = [ maintainers.matthewpi ]; - license = licenses.mit; + maintainers = [ lib.maintainers.matthewpi ]; + license = lib.licenses.mit; mainProgram = "mutagen-compose"; }; } diff --git a/pkgs/by-name/mu/mutagen/package.nix b/pkgs/by-name/mu/mutagen/package.nix index 7f1177ad06b7..fdc14fa7f14e 100644 --- a/pkgs/by-name/mu/mutagen/package.nix +++ b/pkgs/by-name/mu/mutagen/package.nix @@ -60,12 +60,12 @@ buildGoModule rec { --zsh mutagen.zsh ''; - meta = with lib; { + meta = { description = "Make remote development work with your local tools"; homepage = "https://mutagen.io/"; changelog = "https://github.com/mutagen-io/mutagen/releases/tag/v${version}"; - maintainers = [ ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/mu/mutmut/package.nix b/pkgs/by-name/mu/mutmut/package.nix index caaa5438d9ab..7d05a0215d94 100644 --- a/pkgs/by-name/mu/mutmut/package.nix +++ b/pkgs/by-name/mu/mutmut/package.nix @@ -31,13 +31,13 @@ python3Packages.buildPythonApplication rec { textual ]; - meta = with lib; { + meta = { description = "mutation testing system for Python, with a strong focus on ease of use"; mainProgram = "mutmut"; homepage = "https://github.com/boxed/mutmut"; changelog = "https://github.com/boxed/mutmut/blob/${version}/HISTORY.rst"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ l0b0 synthetica ]; diff --git a/pkgs/by-name/nb/nbtscanner/package.nix b/pkgs/by-name/nb/nbtscanner/package.nix index 7700a16fe628..ef287641bf82 100644 --- a/pkgs/by-name/nb/nbtscanner/package.nix +++ b/pkgs/by-name/nb/nbtscanner/package.nix @@ -35,12 +35,12 @@ rustPlatform.buildRustPackage rec { versionCheckProgramArg = "--version"; - meta = with lib; { + meta = { description = "NetBIOS scanner written in Rust"; homepage = "https://github.com/jonkgrimes/nbtscanner"; changelog = "https://github.com/jonkgrimes/nbtscanner/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "nbtscanner"; }; } diff --git a/pkgs/by-name/ng/nghttp2/package.nix b/pkgs/by-name/ng/nghttp2/package.nix index 057aa9e93aff..c4558c101191 100644 --- a/pkgs/by-name/ng/nghttp2/package.nix +++ b/pkgs/by-name/ng/nghttp2/package.nix @@ -122,7 +122,7 @@ stdenv.mkDerivation rec { inherit curl libsoup_3; }; - meta = with lib; { + meta = { description = "HTTP/2 C library and tools"; longDescription = '' nghttp2 is an implementation of the HyperText Transfer Protocol version 2 in C. @@ -137,8 +137,8 @@ stdenv.mkDerivation rec { homepage = "https://nghttp2.org/"; changelog = "https://github.com/nghttp2/nghttp2/releases/tag/v${version}"; # News articles with changes summary can be found here: https://nghttp2.org/blog/archives/ - license = licenses.mit; - maintainers = with maintainers; [ c0bw3b ]; - platforms = platforms.all; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ c0bw3b ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/nk/nkeys/package.nix b/pkgs/by-name/nk/nkeys/package.nix index 2495bfee0241..e11b48b54c66 100644 --- a/pkgs/by-name/nk/nkeys/package.nix +++ b/pkgs/by-name/nk/nkeys/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-89DGLTkt9c8jJhAX3Uo8BBtLcBbnYE0q4mCqq/RGXM4="; - meta = with lib; { + meta = { description = "Public-key signature system for NATS"; homepage = "https://github.com/nats-io/nkeys"; changelog = "https://github.com/nats-io/nkeys/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "nk"; }; } diff --git a/pkgs/by-name/nm/nmap-formatter/package.nix b/pkgs/by-name/nm/nmap-formatter/package.nix index eedcf3690869..7a5cc79679f9 100644 --- a/pkgs/by-name/nm/nmap-formatter/package.nix +++ b/pkgs/by-name/nm/nmap-formatter/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-xOS59co6FE2lJae2VtsBKcGjvmMRiGlmZKbqH++mEYk="; - meta = with lib; { + meta = { description = "Tool that allows you to convert nmap output"; mainProgram = "nmap-formatter"; homepage = "https://github.com/vdjagilev/nmap-formatter"; changelog = "https://github.com/vdjagilev/nmap-formatter/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/np/np/package.nix b/pkgs/by-name/np/np/package.nix index 2cd7e5178eaf..9057b7f939b4 100644 --- a/pkgs/by-name/np/np/package.nix +++ b/pkgs/by-name/np/np/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Tool to parse, deduplicate, and query multiple port scans"; homepage = "https://github.com/leesoh/np"; changelog = "https://github.com/leesoh/np/releases/tag/v${version}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "np"; }; } diff --git a/pkgs/by-name/np/npm-check/package.nix b/pkgs/by-name/np/npm-check/package.nix index 2c4387a9dcd1..5f75bc5735d4 100644 --- a/pkgs/by-name/np/npm-check/package.nix +++ b/pkgs/by-name/np/npm-check/package.nix @@ -21,12 +21,12 @@ buildNpmPackage rec { dontNpmBuild = true; - meta = with lib; { + meta = { description = "Check for outdated, incorrect, and unused dependencies"; mainProgram = "npm-check"; homepage = "https://github.com/dylang/npm-check"; changelog = "https://github.com/dylang/npm-check/releases/tag/v${version}"; - license = licenses.mit; - maintainers = [ maintainers.thomasjm ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.thomasjm ]; }; } diff --git a/pkgs/by-name/nr/nray/package.nix b/pkgs/by-name/nr/nray/package.nix index 475ac85dba52..5a0dca344f49 100644 --- a/pkgs/by-name/nr/nray/package.nix +++ b/pkgs/by-name/nr/nray/package.nix @@ -22,13 +22,13 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Distributed port scanner"; homepage = "https://github.com/nray-scanner/nray"; changelog = "https://github.com/nray-scanner/nray/releases/tag/v${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "nray"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/nt/ntlmrecon/package.nix b/pkgs/by-name/nt/ntlmrecon/package.nix index 539d55e74fbf..94f47b691f32 100644 --- a/pkgs/by-name/nt/ntlmrecon/package.nix +++ b/pkgs/by-name/nt/ntlmrecon/package.nix @@ -30,12 +30,12 @@ python3.pkgs.buildPythonApplication rec { "ntlmrecon" ]; - meta = with lib; { + meta = { description = "Information enumerator for NTLM authentication enabled web endpoints"; mainProgram = "ntlmrecon"; homepage = "https://github.com/pwnfoo/NTLMRecon"; changelog = "https://github.com/pwnfoo/NTLMRecon/releases/tag/v-${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/nv/nvdtools/package.nix b/pkgs/by-name/nv/nvdtools/package.nix index c703af25a703..b0ae310dcd2e 100644 --- a/pkgs/by-name/nv/nvdtools/package.nix +++ b/pkgs/by-name/nv/nvdtools/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Tools to work with the feeds (vulnerabilities, CPE dictionary etc.) distributed by National Vulnerability Database"; homepage = "https://github.com/facebookincubator/nvdtools"; changelog = "https://github.com/facebookincubator/nvdtools/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/ob/obs-cli/package.nix b/pkgs/by-name/ob/obs-cli/package.nix index cece45f3bf3f..53d52131ade8 100644 --- a/pkgs/by-name/ob/obs-cli/package.nix +++ b/pkgs/by-name/ob/obs-cli/package.nix @@ -29,13 +29,13 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "OBS-cli is a command-line remote control for OBS"; homepage = "https://github.com/muesli/obs-cli"; changelog = "https://github.com/muesli/obs-cli/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ flexiondotorg ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flexiondotorg ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "obs-cli"; }; } diff --git a/pkgs/by-name/od/odo/package.nix b/pkgs/by-name/od/odo/package.nix index 2ebfc08a7669..0eecb5d228ba 100644 --- a/pkgs/by-name/od/odo/package.nix +++ b/pkgs/by-name/od/odo/package.nix @@ -34,12 +34,12 @@ buildGoModule rec { version = "v${version}"; }; - meta = with lib; { + meta = { description = "Developer-focused CLI for OpenShift and Kubernetes"; mainProgram = "odo"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://odo.dev"; changelog = "https://github.com/redhat-developer/odo/releases/v${version}"; - maintainers = with maintainers; [ stehessel ]; + maintainers = with lib.maintainers; [ stehessel ]; }; } diff --git a/pkgs/by-name/oh/oha/package.nix b/pkgs/by-name/oh/oha/package.nix index e0443aa161ab..bf49a3478d1b 100644 --- a/pkgs/by-name/oh/oha/package.nix +++ b/pkgs/by-name/oh/oha/package.nix @@ -34,12 +34,12 @@ rustPlatform.buildRustPackage rec { # tests don't work inside the sandbox doCheck = false; - meta = with lib; { + meta = { description = "HTTP load generator inspired by rakyll/hey with tui animation"; homepage = "https://github.com/hatoo/oha"; changelog = "https://github.com/hatoo/oha/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "oha"; }; } diff --git a/pkgs/by-name/ol/olaris-server/package.nix b/pkgs/by-name/ol/olaris-server/package.nix index 5449ea448ac3..bd7015506693 100644 --- a/pkgs/by-name/ol/olaris-server/package.nix +++ b/pkgs/by-name/ol/olaris-server/package.nix @@ -57,11 +57,11 @@ buildGoModule rec { wrapProgram $out/bin/olaris-server --prefix PATH : ${lib.makeBinPath [ ffmpeg ]} ''; - meta = with lib; { + meta = { description = "Media manager and transcoding server"; homepage = "https://gitlab.com/olaris/olaris-server"; changelog = "https://gitlab.com/olaris/olaris-server/-/releases/v${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ urandom ]; }; } diff --git a/pkgs/by-name/os/osinfo-db/package.nix b/pkgs/by-name/os/osinfo-db/package.nix index 121d051761de..5e39efb7c50e 100644 --- a/pkgs/by-name/os/osinfo-db/package.nix +++ b/pkgs/by-name/os/osinfo-db/package.nix @@ -26,12 +26,12 @@ stdenv.mkDerivation rec { osinfo-db-import --dir "$out/share/osinfo" "${src}" ''; - meta = with lib; { + meta = { description = "Osinfo database of information about operating systems for virtualization provisioning tools"; homepage = "https://gitlab.com/libosinfo/osinfo-db/"; changelog = "https://gitlab.com/libosinfo/osinfo-db/-/commits/v${version}"; - license = licenses.gpl2Plus; - platforms = platforms.unix; - maintainers = [ maintainers.bjornfor ]; + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.bjornfor ]; }; } diff --git a/pkgs/by-name/os/ossutil/package.nix b/pkgs/by-name/os/ossutil/package.nix index 80f5b13a7803..58ff83fd85c7 100644 --- a/pkgs/by-name/os/ossutil/package.nix +++ b/pkgs/by-name/os/ossutil/package.nix @@ -20,12 +20,12 @@ buildGoModule rec { # don't run tests as they require secret access keys that only travis has doCheck = false; - meta = with lib; { + meta = { description = "User friendly command line tool to access Alibaba Cloud OSS"; homepage = "https://github.com/aliyun/ossutil"; changelog = "https://github.com/aliyun/ossutil/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ jpetrucciani ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jpetrucciani ]; mainProgram = "ossutil"; }; } diff --git a/pkgs/by-name/os/osv-detector/package.nix b/pkgs/by-name/os/osv-detector/package.nix index 76fb133961d0..ea2b3973ab17 100644 --- a/pkgs/by-name/os/osv-detector/package.nix +++ b/pkgs/by-name/os/osv-detector/package.nix @@ -50,12 +50,12 @@ buildGoModule rec { version = "osv-detector ${version} (unknown, commit none)"; }; - meta = with lib; { + meta = { description = "Auditing tool for detecting vulnerabilities"; mainProgram = "osv-detector"; homepage = "https://github.com/G-Rath/osv-detector"; changelog = "https://github.com/G-Rath/osv-detector/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/os/osv-scanner/package.nix b/pkgs/by-name/os/osv-scanner/package.nix index 761c89ca810b..b6a1dbd7ce05 100644 --- a/pkgs/by-name/os/osv-scanner/package.nix +++ b/pkgs/by-name/os/osv-scanner/package.nix @@ -38,13 +38,13 @@ buildGoModule rec { package = osv-scanner; }; - meta = with lib; { + meta = { description = "Vulnerability scanner written in Go which uses the data provided by https://osv.dev"; mainProgram = "osv-scanner"; homepage = "https://github.com/google/osv-scanner"; changelog = "https://github.com/google/osv-scanner/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ stehessel urandom ]; diff --git a/pkgs/by-name/ot/otel-cli/package.nix b/pkgs/by-name/ot/otel-cli/package.nix index 0ed768400d9d..274a3b48e395 100644 --- a/pkgs/by-name/ot/otel-cli/package.nix +++ b/pkgs/by-name/ot/otel-cli/package.nix @@ -39,11 +39,11 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://github.com/equinix-labs/otel-cli"; description = "Command-line tool for sending OpenTelemetry traces"; changelog = "https://github.com/equinix-labs/otel-cli/releases/tag/v${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; maintainers = with lib.maintainers; [ emattiza urandom diff --git a/pkgs/by-name/ot/otel-desktop-viewer/package.nix b/pkgs/by-name/ot/otel-desktop-viewer/package.nix index 16dc72a29d76..7eb7e5778385 100644 --- a/pkgs/by-name/ot/otel-desktop-viewer/package.nix +++ b/pkgs/by-name/ot/otel-desktop-viewer/package.nix @@ -39,12 +39,12 @@ buildGoModule rec { command = "otel-desktop-viewer --version"; }; - meta = with lib; { + meta = { changelog = "https://github.com/CtrlSpice/otel-desktop-viewer/releases/tag/v${version}"; description = "Receive & visualize OpenTelemtry traces locally within one CLI tool"; homepage = "https://github.com/CtrlSpice/otel-desktop-viewer"; - license = licenses.asl20; - maintainers = with maintainers; [ gaelreyrol ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ gaelreyrol ]; mainProgram = "otel-desktop-viewer"; }; } diff --git a/pkgs/by-name/ot/otpclient/package.nix b/pkgs/by-name/ot/otpclient/package.nix index 663366299cef..e286f04ffbab 100644 --- a/pkgs/by-name/ot/otpclient/package.nix +++ b/pkgs/by-name/ot/otpclient/package.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { zbar ]; - meta = with lib; { + meta = { description = "Highly secure and easy to use OTP client written in C/GTK that supports both TOTP and HOTP"; homepage = "https://github.com/paolostivanin/OTPClient"; changelog = "https://github.com/paolostivanin/OTPClient/releases/tag/v${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ alexbakker ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ alexbakker ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ot/ots/package.nix b/pkgs/by-name/ot/ots/package.nix index e370123c6f71..861c632dbd9f 100644 --- a/pkgs/by-name/ot/ots/package.nix +++ b/pkgs/by-name/ot/ots/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-X main.buildSource=nix" ]; - meta = with lib; { + meta = { description = "Share end-to-end encrypted secrets with others via a one-time URL"; mainProgram = "ots"; homepage = "https://ots.sniptt.com"; changelog = "https://github.com/sniptt-official/ots/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ elliot ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ elliot ]; }; } diff --git a/pkgs/by-name/ov/ov/package.nix b/pkgs/by-name/ov/ov/package.nix index c181967c0f70..ca8d6a5b2b63 100644 --- a/pkgs/by-name/ov/ov/package.nix +++ b/pkgs/by-name/ov/ov/package.nix @@ -68,12 +68,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Feature-rich terminal-based text viewer"; homepage = "https://noborus.github.io/ov"; changelog = "https://github.com/noborus/ov/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ farcaller figsoda ]; diff --git a/pkgs/by-name/ov/overskride/package.nix b/pkgs/by-name/ov/overskride/package.nix index 063484dc32d4..df9cef98e404 100644 --- a/pkgs/by-name/ov/overskride/package.nix +++ b/pkgs/by-name/ov/overskride/package.nix @@ -77,14 +77,14 @@ rustPlatform.buildRustPackage { glib-compile-schemas $out/share/gsettings-schemas/${name}-${version}/glib-2.0/schemas ''; - meta = with lib; { + meta = { description = "Bluetooth and Obex client that is straight to the point, DE/WM agnostic, and beautiful"; homepage = "https://github.com/${owner}/${name}"; changelog = "https://github.com/${owner}/${name}/blob/v${version}/CHANGELOG.md"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = name; - maintainers = with maintainers; [ mrcjkb ]; - platforms = platforms.linux; + maintainers = with lib.maintainers; [ mrcjkb ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ov/oversteer/package.nix b/pkgs/by-name/ov/oversteer/package.nix index f172c3196292..81a8c2368ccc 100644 --- a/pkgs/by-name/ov/oversteer/package.nix +++ b/pkgs/by-name/ov/oversteer/package.nix @@ -95,13 +95,13 @@ stdenv.mkDerivation { patches = [ ]; - meta = with lib; { + meta = { homepage = "https://github.com/berarma/oversteer"; changelog = "https://github.com/berarma/oversteer/releases/tag/${version}"; description = "Steering Wheel Manager for Linux"; mainProgram = "oversteer"; - license = licenses.gpl3Plus; - maintainers = [ maintainers.srounce ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.srounce ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ox/ox/package.nix b/pkgs/by-name/ox/ox/package.nix index 93980b2e1bf2..092a8b8a1fe5 100644 --- a/pkgs/by-name/ox/ox/package.nix +++ b/pkgs/by-name/ox/ox/package.nix @@ -31,12 +31,12 @@ rustPlatform.buildRustPackage rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Independent Rust text editor that runs in your terminal"; homepage = "https://github.com/curlpipe/ox"; changelog = "https://github.com/curlpipe/ox/releases/tag/${version}"; - license = licenses.gpl2Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ moni kachick ]; diff --git a/pkgs/by-name/pf/pfetch-rs/package.nix b/pkgs/by-name/pf/pfetch-rs/package.nix index b01632e6a4fb..cdb0e725d122 100644 --- a/pkgs/by-name/pf/pfetch-rs/package.nix +++ b/pkgs/by-name/pf/pfetch-rs/package.nix @@ -18,12 +18,12 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; cargoHash = "sha256-36MjBzSzEOVaSnd6dTqYnV+Pi+5EDoUskkYsvYMGrgg="; - meta = with lib; { + meta = { description = "Rewrite of the pfetch system information tool in Rust"; homepage = "https://github.com/Gobidev/pfetch-rs"; changelog = "https://github.com/Gobidev/pfetch-rs/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ gobidev ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ gobidev ]; mainProgram = "pfetch"; }; } diff --git a/pkgs/by-name/pk/pkger/package.nix b/pkgs/by-name/pk/pkger/package.nix index 5dbad7a889ca..f432e341d8c2 100644 --- a/pkgs/by-name/pk/pkger/package.nix +++ b/pkgs/by-name/pk/pkger/package.nix @@ -20,12 +20,12 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Embed static files in Go binaries (replacement for gobuffalo/packr)"; mainProgram = "pkger"; homepage = "https://github.com/markbates/pkger"; changelog = "https://github.com/markbates/pkger/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ flokli ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ flokli ]; }; } diff --git a/pkgs/by-name/pk/pkgtop/package.nix b/pkgs/by-name/pk/pkgtop/package.nix index c730478d8410..09f4eff0fbb2 100644 --- a/pkgs/by-name/pk/pkgtop/package.nix +++ b/pkgs/by-name/pk/pkgtop/package.nix @@ -21,12 +21,12 @@ buildGoModule rec { mv $out/bin/{cmd,pkgtop} ''; - meta = with lib; { + meta = { description = "Interactive package manager and resource monitor designed for the GNU/Linux"; homepage = "https://github.com/orhun/pkgtop"; changelog = "https://github.com/orhun/pkgtop/releases/tag/${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "pkgtop"; }; } diff --git a/pkgs/by-name/pm/pmacct/package.nix b/pkgs/by-name/pm/pmacct/package.nix index b00ffe4196a6..ab19c7cae498 100644 --- a/pkgs/by-name/pm/pmacct/package.nix +++ b/pkgs/by-name/pm/pmacct/package.nix @@ -77,16 +77,16 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Small set of multi-purpose passive network monitoring tools"; longDescription = '' pmacct is a small set of multi-purpose passive network monitoring tools [NetFlow IPFIX sFlow libpcap BGP BMP RPKI IGP Streaming Telemetry] ''; homepage = "http://www.pmacct.net/"; - changelog = "https://github.com/pmacct/pmacct/blob/v${version}/ChangeLog"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ _0x4A6F ]; - platforms = platforms.unix; + changelog = "https://github.com/pmacct/pmacct/blob/v${finalAttrs.version}/ChangeLog"; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ _0x4A6F ]; + platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/pn/pngpaste/package.nix b/pkgs/by-name/pn/pngpaste/package.nix index 2360b9de8d26..eb558b1bb6e8 100644 --- a/pkgs/by-name/pn/pngpaste/package.nix +++ b/pkgs/by-name/pn/pngpaste/package.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation { cp pngpaste $out/bin ''; - meta = with lib; { + meta = { description = "Paste image files from clipboard to file on MacOS"; longDescription = '' Paste PNG into files on MacOS, much like pbpaste does for text. @@ -33,8 +33,8 @@ stdenv.mkDerivation { ''; homepage = "https://github.com/jcsalterego/pngpaste"; changelog = "https://github.com/jcsalterego/pngpaste/raw/${version}/CHANGELOG.md"; - platforms = platforms.darwin; - license = licenses.bsd2; - maintainers = with maintainers; [ samw ]; + platforms = lib.platforms.darwin; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ samw ]; }; } diff --git a/pkgs/by-name/pn/pngquant/package.nix b/pkgs/by-name/pn/pngquant/package.nix index 2c70fa3032e4..1473653a77d1 100644 --- a/pkgs/by-name/pn/pngquant/package.nix +++ b/pkgs/by-name/pn/pngquant/package.nix @@ -45,17 +45,17 @@ rustPlatform.buildRustPackage rec { install -Dpm0444 pngquant.1 $man/share/man/man1/pngquant.1 ''; - meta = with lib; { + meta = { homepage = "https://pngquant.org/"; description = "Tool to convert 24/32-bit RGBA PNGs to 8-bit palette with alpha channel preserved"; changelog = "https://github.com/kornelski/pngquant/raw/${version}/CHANGELOG"; - platforms = platforms.unix; - license = with licenses; [ + platforms = lib.platforms.unix; + license = with lib.licenses; [ gpl3Plus hpnd bsd2 ]; mainProgram = "pngquant"; - maintainers = [ ]; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/by-name/ps/pscale/package.nix b/pkgs/by-name/ps/pscale/package.nix index 58dfc057515a..bfa65a34d437 100644 --- a/pkgs/by-name/ps/pscale/package.nix +++ b/pkgs/by-name/ps/pscale/package.nix @@ -44,13 +44,13 @@ buildGoModule rec { package = pscale; }; - meta = with lib; { + meta = { description = "CLI for PlanetScale Database"; mainProgram = "pscale"; changelog = "https://github.com/planetscale/cli/releases/tag/v${version}"; homepage = "https://www.planetscale.com/"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ pimeys kashw2 ]; diff --git a/pkgs/by-name/ps/psudohash/package.nix b/pkgs/by-name/ps/psudohash/package.nix index 461e70030746..d373f631ad54 100644 --- a/pkgs/by-name/ps/psudohash/package.nix +++ b/pkgs/by-name/ps/psudohash/package.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Password list generator for orchestrating brute force attacks and cracking hashes"; homepage = "https://github.com/t3l3machus/psudohash"; changelog = "https://github.com/t3l3machus/psudohash/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ exploitoverload ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ exploitoverload ]; mainProgram = "psudohash"; }; } diff --git a/pkgs/by-name/pu/public-sans/package.nix b/pkgs/by-name/pu/public-sans/package.nix index 30b40c3f068f..4c91fc03be41 100644 --- a/pkgs/by-name/pu/public-sans/package.nix +++ b/pkgs/by-name/pu/public-sans/package.nix @@ -23,12 +23,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Strong, neutral, principles-driven, open source typeface for text or display"; homepage = "https://public-sans.digital.gov/"; changelog = "https://github.com/uswds/public-sans/raw/v${version}/FONTLOG.txt"; - license = licenses.ofl; - maintainers = [ ]; - platforms = platforms.all; + license = lib.licenses.ofl; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/pu/publii/package.nix b/pkgs/by-name/pu/publii/package.nix index b90481040830..546632649cdc 100644 --- a/pkgs/by-name/pu/publii/package.nix +++ b/pkgs/by-name/pu/publii/package.nix @@ -91,7 +91,7 @@ stdenv.mkDerivation rec { --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ udev ]} ''; - meta = with lib; { + meta = { description = "Static Site CMS with GUI to build privacy-focused SEO-friendly website"; mainProgram = "Publii"; longDescription = '' @@ -101,7 +101,7 @@ stdenv.mkDerivation rec { ''; homepage = "https://getpublii.com"; changelog = "https://github.com/getpublii/publii/releases/tag/v${version}"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ urandom sebtm diff --git a/pkgs/by-name/pu/pubs/package.nix b/pkgs/by-name/pu/pubs/package.nix index 6f8772f2ac72..0aa4e6b47430 100644 --- a/pkgs/by-name/pu/pubs/package.nix +++ b/pkgs/by-name/pu/pubs/package.nix @@ -71,13 +71,13 @@ python3.pkgs.buildPythonApplication rec { "pubs" ]; - meta = with lib; { + meta = { description = "Command-line bibliography manager"; mainProgram = "pubs"; homepage = "https://github.com/pubs/pubs"; changelog = "https://github.com/pubs/pubs/blob/v${version}/changelog.md"; - license = licenses.lgpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Only; + maintainers = with lib.maintainers; [ dotlambda ]; }; diff --git a/pkgs/by-name/pu/pueue/package.nix b/pkgs/by-name/pu/pueue/package.nix index 6412b1e21a8f..4324c882cf4a 100644 --- a/pkgs/by-name/pu/pueue/package.nix +++ b/pkgs/by-name/pu/pueue/package.nix @@ -46,7 +46,7 @@ rustPlatform.buildRustPackage rec { installShellCompletion pueue.{bash,fish} _pueue ''; - meta = with lib; { + meta = { homepage = "https://github.com/Nukesor/pueue"; description = "Daemon for managing long running shell commands"; longDescription = '' @@ -61,7 +61,7 @@ rustPlatform.buildRustPackage rec { processed, even if you no longer have any active ssh sessions. ''; changelog = "https://github.com/Nukesor/pueue/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ sarcasticadmin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sarcasticadmin ]; }; } diff --git a/pkgs/by-name/pu/pur/package.nix b/pkgs/by-name/pu/pur/package.nix index 3d1723fe119b..eebb7b1284d3 100644 --- a/pkgs/by-name/pu/pur/package.nix +++ b/pkgs/by-name/pu/pur/package.nix @@ -30,12 +30,12 @@ python3.pkgs.buildPythonApplication rec { "test_no_arguments_and_no_requirements_file" ]; - meta = with lib; { + meta = { description = "Python library for update and track the requirements"; homepage = "https://github.com/alanhamlett/pip-update-requirements"; changelog = "https://github.com/alanhamlett/pip-update-requirements/blob/${version}/HISTORY.rst"; - license = licenses.bsd2; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.bsd2; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pur"; }; } diff --git a/pkgs/by-name/pw/pw-volume/package.nix b/pkgs/by-name/pw/pw-volume/package.nix index deb28d104371..9687a37a3691 100644 --- a/pkgs/by-name/pw/pw-volume/package.nix +++ b/pkgs/by-name/pw/pw-volume/package.nix @@ -18,16 +18,16 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; cargoHash = "sha256-MQ21pM8aSA/OnxGPVSEVVM6yF0CeX1T0VYN27tqZru8="; - meta = with lib; { + meta = { description = "Basic interface to PipeWire volume controls"; homepage = "https://github.com/smasher164/pw-volume"; changelog = "https://github.com/smasher164/pw-volume/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ astro figsoda ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "pw-volume"; }; } diff --git a/pkgs/by-name/pw/pwdsafety/package.nix b/pkgs/by-name/pw/pwdsafety/package.nix index b1ea4a5e23a5..1bebac09f4d2 100644 --- a/pkgs/by-name/pw/pwdsafety/package.nix +++ b/pkgs/by-name/pw/pwdsafety/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-s" ]; - meta = with lib; { + meta = { description = "Command line tool checking password safety"; homepage = "https://github.com/edoardottt/pwdsafety"; changelog = "https://github.com/edoardottt/pwdsafety/releases/tag/v${version}"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pwdsafety"; }; } diff --git a/pkgs/by-name/pw/pwncat/package.nix b/pkgs/by-name/pw/pwncat/package.nix index 12b54f3a4738..ccc883c001e8 100644 --- a/pkgs/by-name/pw/pwncat/package.nix +++ b/pkgs/by-name/pw/pwncat/package.nix @@ -19,12 +19,12 @@ python3Packages.buildPythonApplication rec { # Tests requires to start containers doCheck = false; - meta = with lib; { + meta = { description = "TCP/UDP communication suite"; homepage = "https://pwncat.org/"; changelog = "https://github.com/cytopia/pwncat/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "pwncat"; }; } diff --git a/pkgs/by-name/qo/qovery-cli/package.nix b/pkgs/by-name/qo/qovery-cli/package.nix index f401c7e070f8..522c671f073f 100644 --- a/pkgs/by-name/qo/qovery-cli/package.nix +++ b/pkgs/by-name/qo/qovery-cli/package.nix @@ -34,12 +34,12 @@ buildGoModule rec { command = "HOME=$(mktemp -d); ${pname} version"; }; - meta = with lib; { + meta = { description = "Qovery Command Line Interface"; homepage = "https://github.com/Qovery/qovery-cli"; changelog = "https://github.com/Qovery/qovery-cli/releases/tag/v${version}"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "qovery-cli"; }; } diff --git a/pkgs/by-name/rb/rbspy/package.nix b/pkgs/by-name/rb/rbspy/package.nix index 067eeeed9db9..1dda4c0c4149 100644 --- a/pkgs/by-name/rb/rbspy/package.nix +++ b/pkgs/by-name/rb/rbspy/package.nix @@ -57,13 +57,13 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { homepage = "https://rbspy.github.io/"; description = "Sampling CPU Profiler for Ruby"; mainProgram = "rbspy"; changelog = "https://github.com/rbspy/rbspy/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ viraptor ]; - platforms = platforms.linux ++ platforms.darwin; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ viraptor ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/rb/rbw/package.nix b/pkgs/by-name/rb/rbw/package.nix index e596d75b0a59..491471bf614e 100644 --- a/pkgs/by-name/rb/rbw/package.nix +++ b/pkgs/by-name/rb/rbw/package.nix @@ -73,12 +73,12 @@ rustPlatform.buildRustPackage rec { --replace pass ${pass}/bin/pass ''; - meta = with lib; { + meta = { description = "Unofficial command line client for Bitwarden"; homepage = "https://crates.io/crates/rbw"; changelog = "https://git.tozt.net/rbw/plain/CHANGELOG.md?id=${version}"; - license = licenses.mit; - maintainers = with maintainers; [ albakham ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ albakham ]; mainProgram = "rbw"; }; } diff --git a/pkgs/by-name/rh/rhoas/package.nix b/pkgs/by-name/rh/rhoas/package.nix index 304f15e412f1..f02f571f8920 100644 --- a/pkgs/by-name/rh/rhoas/package.nix +++ b/pkgs/by-name/rh/rhoas/package.nix @@ -44,12 +44,12 @@ buildGoModule rec { command = "HOME=$TMP rhoas version"; }; - meta = with lib; { + meta = { description = "Command Line Interface for Red Hat OpenShift Application Services"; - license = licenses.asl20; + license = lib.licenses.asl20; homepage = "https://github.com/redhat-developer/app-services-cli"; changelog = "https://github.com/redhat-developer/app-services-cli/releases/v${version}"; - maintainers = with maintainers; [ stehessel ]; + maintainers = with lib.maintainers; [ stehessel ]; mainProgram = "rhoas"; }; } diff --git a/pkgs/by-name/rk/rke/package.nix b/pkgs/by-name/rk/rke/package.nix index 66d0ad91b5df..cb5ade8756ba 100644 --- a/pkgs/by-name/rk/rke/package.nix +++ b/pkgs/by-name/rk/rke/package.nix @@ -25,12 +25,12 @@ buildGoModule rec { "-X=main.VERSION=v${version}" ]; - meta = with lib; { + meta = { homepage = "https://github.com/rancher/rke"; description = "Extremely simple, lightning fast Kubernetes distribution that runs entirely within containers"; mainProgram = "rke"; changelog = "https://github.com/rancher/rke/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ urandom ]; }; } diff --git a/pkgs/by-name/rk/rkvm/package.nix b/pkgs/by-name/rk/rkvm/package.nix index 1619646431a8..57c887bc078a 100644 --- a/pkgs/by-name/rk/rkvm/package.nix +++ b/pkgs/by-name/rk/rkvm/package.nix @@ -42,12 +42,12 @@ rustPlatform.buildRustPackage rec { inherit (nixosTests) rkvm; }; - meta = with lib; { + meta = { description = "Virtual KVM switch for Linux machines"; homepage = "https://github.com/htrefil/rkvm"; changelog = "https://github.com/htrefil/rkvm/releases/tag/${version}"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = [ ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/by-name/rm/rmapi/package.nix b/pkgs/by-name/rm/rmapi/package.nix index 38b225dc94cf..b410d3bd6670 100644 --- a/pkgs/by-name/rm/rmapi/package.nix +++ b/pkgs/by-name/rm/rmapi/package.nix @@ -19,12 +19,12 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Go app that allows access to the ReMarkable Cloud API programmatically"; homepage = "https://github.com/ddvk/rmapi"; changelog = "https://github.com/ddvk/rmapi/blob/v${version}/CHANGELOG.md"; - license = licenses.agpl3Only; - maintainers = [ maintainers.nickhu ]; + license = lib.licenses.agpl3Only; + maintainers = [ lib.maintainers.nickhu ]; mainProgram = "rmapi"; }; } diff --git a/pkgs/by-name/rn/rng-tools/package.nix b/pkgs/by-name/rn/rng-tools/package.nix index 32127d5a258a..fe28dc029881 100644 --- a/pkgs/by-name/rn/rng-tools/package.nix +++ b/pkgs/by-name/rn/rng-tools/package.nix @@ -104,13 +104,13 @@ stdenv.mkDerivation rec { runHook postInstallCheck ''; - meta = with lib; { + meta = { description = "Random number generator daemon"; homepage = "https://github.com/nhorman/rng-tools"; changelog = "https://github.com/nhorman/rng-tools/releases/tag/v${version}"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ johnazoidberg c0bw3b ]; diff --git a/pkgs/by-name/rn/rnm/package.nix b/pkgs/by-name/rn/rnm/package.nix index fa07e1d68e6b..e028f5e7f6ee 100644 --- a/pkgs/by-name/rn/rnm/package.nix +++ b/pkgs/by-name/rn/rnm/package.nix @@ -24,12 +24,12 @@ stdenv.mkDerivation rec { pcre2 ]; - meta = with lib; { + meta = { homepage = "https://neurobin.org/projects/softwares/unix/rnm/"; description = "Bulk rename utility"; changelog = "https://github.com/neurobin/rnm/blob/${version}/ChangeLog"; platforms = lib.platforms.all; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "rnm"; }; } diff --git a/pkgs/by-name/rn/rnr/package.nix b/pkgs/by-name/rn/rnr/package.nix index fef4a0960a48..8341341327aa 100644 --- a/pkgs/by-name/rn/rnr/package.nix +++ b/pkgs/by-name/rn/rnr/package.nix @@ -18,12 +18,12 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; cargoHash = "sha256-lXo3BECHpiNMRMgd4XZy+b8QHbE0TZ5/P4cz+SgwqsY="; - meta = with lib; { + meta = { description = "Command-line tool to batch rename files and directories"; mainProgram = "rnr"; homepage = "https://github.com/ismaelgv/rnr"; changelog = "https://github.com/ismaelgv/rnr/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/rt/rtrtr/package.nix b/pkgs/by-name/rt/rtrtr/package.nix index 507652fe2dec..ef3e7d5f6c06 100644 --- a/pkgs/by-name/rt/rtrtr/package.nix +++ b/pkgs/by-name/rt/rtrtr/package.nix @@ -22,7 +22,7 @@ rustPlatform.buildRustPackage rec { buildNoDefaultFeatures = true; - meta = with lib; { + meta = { description = "RPKI data proxy"; longDescription = '' TRTR is an RPKI data proxy, designed to collect Validated ROA Payloads @@ -34,8 +34,8 @@ rustPlatform.buildRustPackage rec { ''; homepage = "https://github.com/NLnetLabs/rtrtr"; changelog = "https://github.com/NLnetLabs/rtrtr/blob/v${version}/Changelog.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ steamwalker ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ steamwalker ]; mainProgram = "rtrtr"; }; } diff --git a/pkgs/by-name/s3/s3fs/package.nix b/pkgs/by-name/s3/s3fs/package.nix index 4ca4d71a8f6b..c2a056a4d5f3 100644 --- a/pkgs/by-name/s3/s3fs/package.nix +++ b/pkgs/by-name/s3/s3fs/package.nix @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { ln -s $out/bin/s3fs $out/bin/mount.s3fs ''; - meta = with lib; { + meta = { description = "Mount an S3 bucket as filesystem through FUSE"; homepage = "https://github.com/s3fs-fuse/s3fs-fuse"; changelog = "https://github.com/s3fs-fuse/s3fs-fuse/raw/v${version}/ChangeLog"; - maintainers = [ ]; - license = licenses.gpl2Only; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/s3/s3proxy/package.nix b/pkgs/by-name/s3/s3proxy/package.nix index 302e6bd4c504..6b76764f01b9 100644 --- a/pkgs/by-name/s3/s3proxy/package.nix +++ b/pkgs/by-name/s3/s3proxy/package.nix @@ -33,12 +33,12 @@ maven.buildMavenPackage { --add-flags "-jar $out/share/s3proxy/s3proxy-${version}-jar-with-dependencies.jar" ''; - meta = with lib; { + meta = { description = "Access other storage backends via the S3 API"; mainProgram = "s3proxy"; homepage = "https://github.com/gaul/s3proxy"; changelog = "https://github.com/gaul/s3proxy/releases/tag/s3proxy-${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ camelpunch ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ camelpunch ]; }; } diff --git a/pkgs/by-name/s3/s3ql/package.nix b/pkgs/by-name/s3/s3ql/package.nix index 5894d776444f..386baa6f4bb3 100644 --- a/pkgs/by-name/s3/s3ql/package.nix +++ b/pkgs/by-name/s3/s3ql/package.nix @@ -59,12 +59,12 @@ python3.pkgs.buildPythonApplication rec { ]; }; - meta = with lib; { + meta = { description = "Full-featured file system for online data storage"; homepage = "https://github.com/s3ql/s3ql/"; changelog = "https://github.com/s3ql/s3ql/releases/tag/s3ql-${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ rushmorem ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ rushmorem ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sb/sbom-utility/package.nix b/pkgs/by-name/sb/sbom-utility/package.nix index 6ebfbcbfe73d..1849fb0dacaa 100644 --- a/pkgs/by-name/sb/sbom-utility/package.nix +++ b/pkgs/by-name/sb/sbom-utility/package.nix @@ -58,12 +58,12 @@ buildGoModule { done ''; - meta = with lib; { + meta = { description = "Utility that provides an API platform for validating, querying and managing BOM data"; homepage = "https://github.com/CycloneDX/sbom-utility"; changelog = "https://github.com/CycloneDX/sbom-utility/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ thillux ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ thillux ]; mainProgram = "sbom-utility"; }; } diff --git a/pkgs/by-name/sf/sfrotz/package.nix b/pkgs/by-name/sf/sfrotz/package.nix index 5a798b5f03b7..f4d234e2b767 100644 --- a/pkgs/by-name/sf/sfrotz/package.nix +++ b/pkgs/by-name/sf/sfrotz/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { buildPhase = "make sdl"; installTargets = [ "install_sfrotz" ]; - meta = with lib; { + meta = { description = "Interpreter for Infocom and other Z-Machine games (SDL interface)"; mainProgram = "sfrotz"; longDescription = '' @@ -65,8 +65,8 @@ stdenv.mkDerivation rec { ''; homepage = "https://davidgriffith.gitlab.io/frotz/"; changelog = "https://gitlab.com/DavidGriffith/frotz/-/raw/${version}/NEWS"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ ddelabru ]; - platforms = platforms.linux; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ddelabru ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sf/sftpgo/package.nix b/pkgs/by-name/sf/sftpgo/package.nix index 1ff2b8126e28..4aa8c8faddb2 100644 --- a/pkgs/by-name/sf/sftpgo/package.nix +++ b/pkgs/by-name/sf/sftpgo/package.nix @@ -48,7 +48,7 @@ buildGoModule rec { passthru.tests = nixosTests.sftpgo; - meta = with lib; { + meta = { homepage = "https://github.com/drakkan/sftpgo"; changelog = "https://github.com/drakkan/sftpgo/releases/tag/v${version}"; description = "Fully featured and highly configurable SFTP server"; @@ -59,11 +59,11 @@ buildGoModule rec { local filesystem, encrypted local filesystem, S3 (compatible) Object Storage, Google Cloud Storage, Azure Blob Storage, SFTP. ''; - license = with licenses; [ + license = with lib.licenses; [ agpl3Only unfreeRedistributable ]; # Software is AGPLv3, web UI is unfree - maintainers = with maintainers; [ thenonameguy ]; + maintainers = with lib.maintainers; [ thenonameguy ]; mainProgram = "sftpgo"; }; } diff --git a/pkgs/by-name/sk/skaffold/package.nix b/pkgs/by-name/sk/skaffold/package.nix index df747abef0e4..c81e04263d39 100644 --- a/pkgs/by-name/sk/skaffold/package.nix +++ b/pkgs/by-name/sk/skaffold/package.nix @@ -51,7 +51,7 @@ buildGoModule rec { --zsh <($out/bin/skaffold completion zsh) ''; - meta = with lib; { + meta = { homepage = "https://skaffold.dev/"; changelog = "https://github.com/GoogleContainerTools/skaffold/releases/tag/v${version}"; description = "Easy and Repeatable Kubernetes Development"; @@ -62,8 +62,8 @@ buildGoModule rec { Skaffold handles the workflow for building, pushing and deploying your application. It also provides building blocks and describe customizations for a CI/CD pipeline. ''; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ vdemeester bryanasdev000 ]; diff --git a/pkgs/by-name/sk/skjold/package.nix b/pkgs/by-name/sk/skjold/package.nix index fc96ea7cd64c..f5eeaae78539 100644 --- a/pkgs/by-name/sk/skjold/package.nix +++ b/pkgs/by-name/sk/skjold/package.nix @@ -53,11 +53,11 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "skjold" ]; - meta = with lib; { + meta = { description = "Tool to Python dependencies against security advisory databases"; homepage = "https://github.com/twu/skjold"; changelog = "https://github.com/twu/skjold/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/sk/skrive/package.nix b/pkgs/by-name/sk/skrive/package.nix index 1dab0a7ff345..9bc1352fa94e 100644 --- a/pkgs/by-name/sk/skrive/package.nix +++ b/pkgs/by-name/sk/skrive/package.nix @@ -24,13 +24,13 @@ buildGoModule rec { installManPage skrive.1 ''; - meta = with lib; { + meta = { description = "Secure and sleek dosage logging for the terminal"; homepage = "https://github.com/VanuPhantom/skrive"; changelog = "https://github.com/VanuPhantom/skrive/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ freyacodes ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ freyacodes ]; mainProgram = "skrive"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sn/sn0int/package.nix b/pkgs/by-name/sn/sn0int/package.nix index 60e876a69e43..52426cc9d075 100644 --- a/pkgs/by-name/sn/sn0int/package.nix +++ b/pkgs/by-name/sn/sn0int/package.nix @@ -50,16 +50,16 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/sn0int completions zsh) ''; - meta = with lib; { + meta = { description = "Semi-automatic OSINT framework and package manager"; homepage = "https://github.com/kpcyrd/sn0int"; changelog = "https://github.com/kpcyrd/sn0int/releases/tag/v${version}"; - license = with licenses; [ gpl3Plus ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ gpl3Plus ]; + maintainers = with lib.maintainers; [ fab xrelkd ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; mainProgram = "sn0int"; }; } diff --git a/pkgs/by-name/sn/snappymail/package.nix b/pkgs/by-name/sn/snappymail/package.nix index bb3d11ef998f..d53ffe1017b2 100644 --- a/pkgs/by-name/sn/snappymail/package.nix +++ b/pkgs/by-name/sn/snappymail/package.nix @@ -31,13 +31,13 @@ stdenv.mkDerivation rec { cp ${includeScript} $out/include.php ''; - meta = with lib; { + meta = { description = "Simple, modern & fast web-based email client"; homepage = "https://snappymail.eu"; changelog = "https://github.com/the-djmaze/snappymail/blob/v${version}/CHANGELOG.md"; downloadPage = "https://github.com/the-djmaze/snappymail/releases"; - license = licenses.agpl3Only; - platforms = platforms.all; - maintainers = with maintainers; [ mic92 ]; + license = lib.licenses.agpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mic92 ]; }; } diff --git a/pkgs/by-name/sn/sniffnet/package.nix b/pkgs/by-name/sn/sniffnet/package.nix index f8d82b213b31..4a39c56cadc7 100644 --- a/pkgs/by-name/sn/sniffnet/package.nix +++ b/pkgs/by-name/sn/sniffnet/package.nix @@ -77,15 +77,15 @@ rustPlatform.buildRustPackage rec { } ''; - meta = with lib; { + meta = { description = "Cross-platform application to monitor your network traffic with ease"; homepage = "https://github.com/gyulyvgc/sniffnet"; changelog = "https://github.com/gyulyvgc/sniffnet/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ mit # or asl20 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "sniffnet"; }; } diff --git a/pkgs/by-name/sn/snixembed/package.nix b/pkgs/by-name/sn/snixembed/package.nix index 738e2df44c16..44b5b144ff6a 100644 --- a/pkgs/by-name/sn/snixembed/package.nix +++ b/pkgs/by-name/sn/snixembed/package.nix @@ -31,13 +31,13 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; - meta = with lib; { + meta = { description = "Proxy StatusNotifierItems as XEmbedded systemtray-spec icons"; homepage = "https://git.sr.ht/~steef/snixembed"; changelog = "https://git.sr.ht/~steef/snixembed/refs/${version}"; - license = licenses.isc; - platforms = platforms.unix; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.isc; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ figsoda ]; mainProgram = "snixembed"; }; } diff --git a/pkgs/by-name/sn/snowcat/package.nix b/pkgs/by-name/sn/snowcat/package.nix index 960c7777b88d..91015235981b 100644 --- a/pkgs/by-name/sn/snowcat/package.nix +++ b/pkgs/by-name/sn/snowcat/package.nix @@ -21,7 +21,7 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/praetorian-inc/snowcat"; changelog = "https://github.com/praetorian-inc/snowcat/releases/tag/v${version}"; description = "Tool to audit the istio service mesh"; @@ -35,7 +35,7 @@ buildGoModule rec { with Istio, and begin to enumerate the required data. Optionally, you can point snowcat at a directory containing Kubernets YAML files. ''; - license = licenses.asl20; - maintainers = with maintainers; [ jk ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ jk ]; }; } diff --git a/pkgs/by-name/sn/snowflake/package.nix b/pkgs/by-name/sn/snowflake/package.nix index c59e0377f6ca..f3633fa347a3 100644 --- a/pkgs/by-name/sn/snowflake/package.nix +++ b/pkgs/by-name/sn/snowflake/package.nix @@ -19,14 +19,14 @@ buildGoModule rec { vendorHash = "sha256-vopRE4B4WhncUdBfmBTzRbZzCU20vsHoNCYcPG4BGc0="; - meta = with lib; { + meta = { description = "System to defeat internet censorship"; homepage = "https://snowflake.torproject.org/"; changelog = "https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/raw/v${version}/ChangeLog"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ bbjubjub yayayayaka ]; - license = licenses.bsd3; + license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/sq/sqlboiler/package.nix b/pkgs/by-name/sq/sqlboiler/package.nix index ab0b9eb1c47c..ed15064493c9 100644 --- a/pkgs/by-name/sq/sqlboiler/package.nix +++ b/pkgs/by-name/sq/sqlboiler/package.nix @@ -32,12 +32,12 @@ buildGoModule rec { doCheck = false; - meta = with lib; { + meta = { description = "Generate a Go ORM tailored to your database schema"; homepage = "https://github.com/volatiletech/sqlboiler"; changelog = "https://github.com/volatiletech/sqlboiler/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ mrityunjaygr8 ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ mrityunjaygr8 ]; mainProgram = "sqlboiler"; }; } diff --git a/pkgs/by-name/sq/sqlcipher/package.nix b/pkgs/by-name/sq/sqlcipher/package.nix index c102af52448b..1dc4d0c66765 100644 --- a/pkgs/by-name/sq/sqlcipher/package.nix +++ b/pkgs/by-name/sq/sqlcipher/package.nix @@ -58,13 +58,13 @@ stdenv.mkDerivation rec { installManPage sqlcipher.1 ''; - meta = with lib; { + meta = { changelog = "https://github.com/sqlcipher/sqlcipher/blob/v${version}/CHANGELOG.md"; description = "SQLite extension that provides 256 bit AES encryption of database files"; mainProgram = "sqlcipher"; homepage = "https://www.zetetic.net/sqlcipher/"; - license = licenses.bsd3; - maintainers = [ ]; - platforms = platforms.unix; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sq/sqlfluff/package.nix b/pkgs/by-name/sq/sqlfluff/package.nix index 8c5b2a38c766..4b91c874ac6f 100644 --- a/pkgs/by-name/sq/sqlfluff/package.nix +++ b/pkgs/by-name/sq/sqlfluff/package.nix @@ -68,12 +68,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "sqlfluff" ]; - meta = with lib; { + meta = { description = "SQL linter and auto-formatter"; homepage = "https://www.sqlfluff.com/"; changelog = "https://github.com/sqlfluff/sqlfluff/blob/${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "sqlfluff"; }; } diff --git a/pkgs/by-name/sq/sqlmc/package.nix b/pkgs/by-name/sq/sqlmc/package.nix index 9fbf1c49f11b..9d756d6158c5 100644 --- a/pkgs/by-name/sq/sqlmc/package.nix +++ b/pkgs/by-name/sq/sqlmc/package.nix @@ -34,12 +34,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "sqlmc" ]; - meta = with lib; { + meta = { description = "Tool to check URLs of a domain for SQL injections"; homepage = "https://github.com/malvads/sqlmc"; changelog = "https://github.com/malvads/sqlmc/releases/tag/${version}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "sqlmc"; }; } diff --git a/pkgs/by-name/sr/srisum/package.nix b/pkgs/by-name/sr/srisum/package.nix index 085d7f7011fe..d118d9c4149f 100644 --- a/pkgs/by-name/sr/srisum/package.nix +++ b/pkgs/by-name/sr/srisum/package.nix @@ -19,13 +19,13 @@ rustPlatform.buildRustPackage rec { doInstallCheck = true; - meta = with lib; { + meta = { description = "Command-line utility to compute and check subresource integrity hashes"; homepage = "https://github.com/zkat/srisum-rs"; changelog = "https://github.com/zkat/srisum-rs/raw/v${version}/CHANGELOG.md"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ pjjw ]; - platforms = platforms.all; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ pjjw ]; + platforms = lib.platforms.all; mainProgram = "srisum"; }; } diff --git a/pkgs/by-name/t-/t-rex/package.nix b/pkgs/by-name/t-/t-rex/package.nix index 997d56ada495..27feefe81bc3 100644 --- a/pkgs/by-name/t-/t-rex/package.nix +++ b/pkgs/by-name/t-/t-rex/package.nix @@ -31,14 +31,14 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "Vector tile server specialized on publishing MVT tiles"; homepage = "https://t-rex.tileserver.ch/"; changelog = "https://github.com/t-rex-tileserver/t-rex/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - teams = [ teams.geospatial ]; + license = lib.licenses.mit; + teams = [ lib.teams.geospatial ]; mainProgram = "t_rex"; - platforms = platforms.unix; + platforms = lib.platforms.unix; broken = true; # see https://github.com/t-rex-tileserver/t-rex/issues/320 }; } diff --git a/pkgs/by-name/tf/tfsec/package.nix b/pkgs/by-name/tf/tfsec/package.nix index a57e58563f83..d4bd6c1441de 100644 --- a/pkgs/by-name/tf/tfsec/package.nix +++ b/pkgs/by-name/tf/tfsec/package.nix @@ -31,12 +31,12 @@ buildGoModule rec { "cmd/tfsec-checkgen" ]; - meta = with lib; { + meta = { description = "Static analysis powered security scanner for terraform code"; homepage = "https://github.com/aquasecurity/tfsec"; changelog = "https://github.com/aquasecurity/tfsec/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab peterromfeldhk ]; diff --git a/pkgs/by-name/tf/tftui/package.nix b/pkgs/by-name/tf/tftui/package.nix index be3d08a35b3e..9090c0961b45 100644 --- a/pkgs/by-name/tf/tftui/package.nix +++ b/pkgs/by-name/tf/tftui/package.nix @@ -46,12 +46,12 @@ python3Packages.buildPythonApplication rec { --add-flags "--disable-usage-tracking" ''; - meta = with lib; { + meta = { description = "Textual UI to view and interact with Terraform state"; homepage = "https://github.com/idoavrah/terraform-tui"; changelog = "https://github.com/idoavrah/terraform-tui/releases/tag/v${version}"; - license = licenses.asl20; - teams = [ teams.bitnomial ]; + license = lib.licenses.asl20; + teams = [ lib.teams.bitnomial ]; mainProgram = "tftui"; }; } diff --git a/pkgs/by-name/to/tockloader/package.nix b/pkgs/by-name/to/tockloader/package.nix index 6fcdded82dc5..b25c57d164a9 100644 --- a/pkgs/by-name/to/tockloader/package.nix +++ b/pkgs/by-name/to/tockloader/package.nix @@ -31,12 +31,12 @@ python3.pkgs.buildPythonApplication rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Tool for programming Tock onto hardware boards"; mainProgram = "tockloader"; homepage = "https://github.com/tock/tockloader"; changelog = "https://github.com/tock/tockloader/releases/tag/v${version}"; - license = licenses.mit; - maintainers = [ ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/by-name/to/toolbox/package.nix b/pkgs/by-name/to/toolbox/package.nix index dcec72c5eb9e..36a28569ed89 100644 --- a/pkgs/by-name/to/toolbox/package.nix +++ b/pkgs/by-name/to/toolbox/package.nix @@ -51,12 +51,12 @@ buildGoModule rec { install profile.d/toolbox.sh -Dt $out/share/profile.d ''; - meta = with lib; { + meta = { homepage = "https://containertoolbx.org"; changelog = "https://github.com/containers/toolbox/releases/tag/${version}"; description = "Tool for containerized command line environments on Linux"; - license = licenses.asl20; - maintainers = with maintainers; [ urandom ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ urandom ]; mainProgram = "toolbox"; }; } diff --git a/pkgs/by-name/to/topgrade/package.nix b/pkgs/by-name/to/topgrade/package.nix index 099046b2001f..803950787fb6 100644 --- a/pkgs/by-name/to/topgrade/package.nix +++ b/pkgs/by-name/to/topgrade/package.nix @@ -41,12 +41,12 @@ rustPlatform.buildRustPackage rec { installManPage topgrade.8 ''; - meta = with lib; { + meta = { description = "Upgrade all the things"; homepage = "https://github.com/topgrade-rs/topgrade"; changelog = "https://github.com/topgrade-rs/topgrade/releases/tag/v${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ SuperSandro2000 xyenon ]; diff --git a/pkgs/by-name/to/tor-browser/package.nix b/pkgs/by-name/to/tor-browser/package.nix index 2afc14771898..8982061c2f66 100644 --- a/pkgs/by-name/to/tor-browser/package.nix +++ b/pkgs/by-name/to/tor-browser/package.nix @@ -353,13 +353,13 @@ lib.warnIf (useHardenedMalloc != null) }; }; - meta = with lib; { + meta = { description = "Privacy-focused browser routing traffic through the Tor network"; mainProgram = "tor-browser"; homepage = "https://www.torproject.org/"; changelog = "https://gitweb.torproject.org/builders/tor-browser-build.git/plain/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt?h=maint-${version}"; - platforms = attrNames sources; - maintainers = with maintainers; [ + platforms = lib.attrNames sources; + maintainers = with lib.maintainers; [ felschr panicgh joachifm @@ -368,13 +368,13 @@ lib.warnIf (useHardenedMalloc != null) # MPL2.0+, GPL+, &c. While it's not entirely clear whether # the compound is "libre" in a strict sense (some components place certain # restrictions on redistribution), it's free enough for our purposes. - license = with licenses; [ + license = with lib.licenses; [ mpl20 lgpl21Plus lgpl3Plus free ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; } ) diff --git a/pkgs/by-name/to/totem/package.nix b/pkgs/by-name/to/totem/package.nix index 5ad36ced402f..4682336189a4 100644 --- a/pkgs/by-name/to/totem/package.nix +++ b/pkgs/by-name/to/totem/package.nix @@ -108,13 +108,13 @@ stdenv.mkDerivation rec { }; }; - meta = with lib; { + meta = { homepage = "https://apps.gnome.org/Totem/"; changelog = "https://gitlab.gnome.org/GNOME/totem/-/blob/${version}/NEWS?ref_type=tags"; description = "Movie player for the GNOME desktop based on GStreamer"; - teams = [ teams.gnome ]; - license = licenses.gpl2Plus; # with exception to allow use of non-GPL compatible plug-ins - platforms = platforms.linux; + teams = [ lib.teams.gnome ]; + license = lib.licenses.gpl2Plus; # with exception to allow use of non-GPL compatible plug-ins + platforms = lib.platforms.linux; # gst-inspect-1.0 is not smart enough for cross compiling broken = stdenv.buildPlatform != stdenv.hostPlatform; }; diff --git a/pkgs/by-name/ts/tsung/package.nix b/pkgs/by-name/ts/tsung/package.nix index a23e464accc1..a67c1eb0bc83 100644 --- a/pkgs/by-name/ts/tsung/package.nix +++ b/pkgs/by-name/ts/tsung/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { --set PERL5LIB "${perlPackages.makePerlPath [ perlPackages.TemplateToolkit ]}" ''; - meta = with lib; { + meta = { homepage = "http://tsung.erlang-projects.org/"; changelog = "https://github.com/processone/tsung/blob/v${version}/CHANGELOG.md"; description = "High-performance benchmark framework for various protocols including HTTP, XMPP, LDAP, etc"; @@ -53,8 +53,8 @@ stdenv.mkDerivation rec { can currently be used to stress HTTP, WebDAV, SOAP, PostgreSQL, MySQL, AMQP, MQTT, LDAP and Jabber/XMPP servers. ''; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ uskudnik ]; - platforms = platforms.unix; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ uskudnik ]; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/tt/ttdl/package.nix b/pkgs/by-name/tt/ttdl/package.nix index a2d37d182987..168b4e394f0f 100644 --- a/pkgs/by-name/tt/ttdl/package.nix +++ b/pkgs/by-name/tt/ttdl/package.nix @@ -18,12 +18,12 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; cargoHash = "sha256-dr/hT8mVUlO0pX/OGqIqPDevflNVPD88epLZsW772Os="; - meta = with lib; { + meta = { description = "CLI tool to manage todo lists in todo.txt format"; homepage = "https://github.com/VladimirMarkelov/ttdl"; changelog = "https://github.com/VladimirMarkelov/ttdl/blob/v${version}/changelog"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ _3JlOy-PYCCKUi ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ _3JlOy-PYCCKUi ]; mainProgram = "ttdl"; }; } diff --git a/pkgs/by-name/tv/tv/package.nix b/pkgs/by-name/tv/tv/package.nix index f345d8474f24..8eee130919db 100644 --- a/pkgs/by-name/tv/tv/package.nix +++ b/pkgs/by-name/tv/tv/package.nix @@ -18,12 +18,12 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; cargoHash = "sha256-pg8u+1C68ilg0uhszQnsN1bRbniJd39yQHujerQx+mI="; - meta = with lib; { + meta = { description = "Format json into table view"; mainProgram = "tv"; homepage = "https://github.com/uzimaru0000/tv"; changelog = "https://github.com/uzimaru0000/tv/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/tw/twspace-dl/package.nix b/pkgs/by-name/tw/twspace-dl/package.nix index 32bcf6f2e21a..64c285493888 100644 --- a/pkgs/by-name/tw/twspace-dl/package.nix +++ b/pkgs/by-name/tw/twspace-dl/package.nix @@ -28,12 +28,12 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "twspace_dl" ]; - meta = with lib; { + meta = { description = "Python module to download twitter spaces"; homepage = "https://github.com/HoloArchivists/twspace-dl"; changelog = "https://github.com/HoloArchivists/twspace-dl/releases/tag/${version}"; - license = licenses.gpl2Only; - maintainers = [ ]; + license = lib.licenses.gpl2Only; + maintainers = with lib.maintainers; [ ]; mainProgram = "twspace_dl"; }; } diff --git a/pkgs/by-name/tw/twtxt/package.nix b/pkgs/by-name/tw/twtxt/package.nix index 0725ae0b53db..2f606414f252 100644 --- a/pkgs/by-name/tw/twtxt/package.nix +++ b/pkgs/by-name/tw/twtxt/package.nix @@ -35,12 +35,12 @@ python3.pkgs.buildPythonApplication rec { "test_tweet_relative_datetime" ]; - meta = with lib; { + meta = { description = "Decentralised, minimalist microblogging service for hackers"; homepage = "https://github.com/buckket/twtxt"; changelog = "https://github.com/buckket/twtxt/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ siraben ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ siraben ]; mainProgram = "twtxt"; }; } diff --git a/pkgs/by-name/ty/typeshare/package.nix b/pkgs/by-name/ty/typeshare/package.nix index e6cea0420f30..14d2260f61c5 100644 --- a/pkgs/by-name/ty/typeshare/package.nix +++ b/pkgs/by-name/ty/typeshare/package.nix @@ -31,15 +31,15 @@ rustPlatform.buildRustPackage rec { --zsh <($out/bin/typeshare completions zsh) ''; - meta = with lib; { + meta = { description = "Command Line Tool for generating language files with typeshare"; mainProgram = "typeshare"; homepage = "https://github.com/1password/typeshare"; changelog = "https://github.com/1password/typeshare/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with lib.maintainers; [ figsoda ]; }; } diff --git a/pkgs/by-name/ub/ubridge/package.nix b/pkgs/by-name/ub/ubridge/package.nix index d28cff1b1799..3ff1884291f9 100644 --- a/pkgs/by-name/ub/ubridge/package.nix +++ b/pkgs/by-name/ub/ubridge/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Bridge for UDP tunnels, Ethernet, TAP, and VMnet interfaces"; longDescription = '' uBridge is a simple application to create user-land bridges between @@ -53,12 +53,12 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/GNS3/ubridge"; changelog = "https://github.com/GNS3/ubridge/releases/tag/v${version}"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; mainProgram = "ubridge"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ primeos anthonyroussel ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/ur/uriparser/package.nix b/pkgs/by-name/ur/uriparser/package.nix index 721ea8182dc6..dbfe694b211d 100644 --- a/pkgs/by-name/ur/uriparser/package.nix +++ b/pkgs/by-name/ur/uriparser/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { nativeCheckInputs = [ gtest ]; doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; - meta = with lib; { + meta = { changelog = "https://github.com/uriparser/uriparser/blob/uriparser-${version}/ChangeLog"; description = "Strictly RFC 3986 compliant URI parsing library"; longDescription = '' @@ -33,9 +33,9 @@ stdenv.mkDerivation rec { API documentation is available on uriparser website. ''; homepage = "https://uriparser.github.io/"; - license = licenses.bsd3; - maintainers = with maintainers; [ bosu ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ bosu ]; mainProgram = "uriparse"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ur/url-parser/package.nix b/pkgs/by-name/ur/url-parser/package.nix index 5b51ff56362b..36ef2165ca4a 100644 --- a/pkgs/by-name/ur/url-parser/package.nix +++ b/pkgs/by-name/ur/url-parser/package.nix @@ -26,12 +26,12 @@ buildGoModule rec { "main.BuildDate=1970-01-01" ]; - meta = with lib; { + meta = { description = "Simple command-line URL parser"; homepage = "https://github.com/thegeeklab/url-parser"; changelog = "https://github.com/thegeeklab/url-parser/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ doronbehar ]; mainProgram = "url-parser"; }; } diff --git a/pkgs/by-name/uw/uwhoisd/package.nix b/pkgs/by-name/uw/uwhoisd/package.nix index 3eac31c31aee..c14678502250 100644 --- a/pkgs/by-name/uw/uwhoisd/package.nix +++ b/pkgs/by-name/uw/uwhoisd/package.nix @@ -38,11 +38,11 @@ python3.pkgs.buildPythonApplication rec { # Project has no tests doCheck = false; - meta = with lib; { + meta = { description = "Universal WHOIS proxy server"; homepage = "https://github.com/Lookyloo/uwhoisd"; changelog = "https://github.com/Lookyloo/uwhoisd/blob/${version}/ChangeLog"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/vc/vcsh/package.nix b/pkgs/by-name/vc/vcsh/package.nix index 7e1af72cbfd5..69bde561ce61 100644 --- a/pkgs/by-name/vc/vcsh/package.nix +++ b/pkgs/by-name/vc/vcsh/package.nix @@ -38,16 +38,16 @@ stdenv.mkDerivation rec { "man" ]; - meta = with lib; { + meta = { description = "Version Control System for $HOME"; homepage = "https://github.com/RichiH/vcsh"; changelog = "https://github.com/RichiH/vcsh/blob/v${version}/changelog"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ ttuegel alerque ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; mainProgram = "vcsh"; }; } diff --git a/pkgs/by-name/vh/vhs/package.nix b/pkgs/by-name/vh/vhs/package.nix index bfd2c5e04626..0bda86473b72 100644 --- a/pkgs/by-name/vh/vhs/package.nix +++ b/pkgs/by-name/vh/vhs/package.nix @@ -52,13 +52,13 @@ buildGoModule rec { --zsh <($out/bin/vhs completion zsh) ''; - meta = with lib; { + meta = { description = "Tool for generating terminal GIFs with code"; mainProgram = "vhs"; homepage = "https://github.com/charmbracelet/vhs"; changelog = "https://github.com/charmbracelet/vhs/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ maaslalani penguwin ]; diff --git a/pkgs/by-name/vo/vouch-proxy/package.nix b/pkgs/by-name/vo/vouch-proxy/package.nix index 1104b041708e..0eb9aeb3072b 100644 --- a/pkgs/by-name/vo/vouch-proxy/package.nix +++ b/pkgs/by-name/vo/vouch-proxy/package.nix @@ -27,16 +27,16 @@ buildGoModule rec { export VOUCH_ROOT=$PWD ''; - meta = with lib; { + meta = { homepage = "https://github.com/vouch/vouch-proxy"; description = "SSO and OAuth / OIDC login solution for NGINX using the auth_request module"; changelog = "https://github.com/vouch/vouch-proxy/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ leona erictapen ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; mainProgram = "vouch-proxy"; }; } diff --git a/pkgs/by-name/vs/vscode-js-debug/package.nix b/pkgs/by-name/vs/vscode-js-debug/package.nix index fea245a29644..aee881ac119a 100644 --- a/pkgs/by-name/vs/vscode-js-debug/package.nix +++ b/pkgs/by-name/vs/vscode-js-debug/package.nix @@ -74,7 +74,7 @@ buildNpmPackage rec { fi ''; - meta = with lib; { + meta = { description = "DAP-compatible JavaScript debugger"; longDescription = '' This is a [DAP](https://microsoft.github.io/debug-adapter-protocol/)-based @@ -86,7 +86,7 @@ buildNpmPackage rec { homepage = "https://github.com/microsoft/vscode-js-debug"; changelog = "https://github.com/microsoft/vscode-js-debug/blob/v${version}/CHANGELOG.md"; mainProgram = "js-debug"; - license = licenses.mit; - maintainers = with maintainers; [ zeorin ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zeorin ]; }; } diff --git a/pkgs/by-name/vt/vt-cli/package.nix b/pkgs/by-name/vt/vt-cli/package.nix index 0ca91305822d..e61b557d3e0e 100644 --- a/pkgs/by-name/vt/vt-cli/package.nix +++ b/pkgs/by-name/vt/vt-cli/package.nix @@ -23,12 +23,12 @@ buildGoModule rec { subPackages = [ "vt" ]; - meta = with lib; { + meta = { description = "VirusTotal Command Line Interface"; homepage = "https://github.com/VirusTotal/vt-cli"; changelog = "https://github.com/VirusTotal/vt-cli/releases/tag/${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "vt"; - maintainers = with maintainers; [ dit7ya ]; + maintainers = with lib.maintainers; [ dit7ya ]; }; } diff --git a/pkgs/by-name/vu/vultr-cli/package.nix b/pkgs/by-name/vu/vultr-cli/package.nix index 5f8c67d2a1bf..50b611abd1da 100644 --- a/pkgs/by-name/vu/vultr-cli/package.nix +++ b/pkgs/by-name/vu/vultr-cli/package.nix @@ -33,12 +33,12 @@ buildGoModule rec { --zsh <($out/bin/vultr-cli completion zsh) ''; - meta = with lib; { + meta = { description = "Official command line tool for Vultr services"; homepage = "https://github.com/vultr/vultr-cli"; changelog = "https://github.com/vultr/vultr-cli/blob/v${version}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ Br1ght0ne ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ Br1ght0ne ]; mainProgram = "vultr-cli"; }; } diff --git a/pkgs/by-name/vu/vunnel/package.nix b/pkgs/by-name/vu/vunnel/package.nix index b40a86a96d16..0661cc3cd415 100644 --- a/pkgs/by-name/vu/vunnel/package.nix +++ b/pkgs/by-name/vu/vunnel/package.nix @@ -78,12 +78,12 @@ python3.pkgs.buildPythonApplication rec { "test_parser" ]; - meta = with lib; { + meta = { description = "Tool for collecting vulnerability data from various sources"; homepage = "https://github.com/anchore/vunnel"; changelog = "https://github.com/anchore/vunnel/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "vunnel"; }; } diff --git a/pkgs/by-name/w3/w3m/package.nix b/pkgs/by-name/w3/w3m/package.nix index e20fffde7614..c589db734015 100644 --- a/pkgs/by-name/w3/w3m/package.nix +++ b/pkgs/by-name/w3/w3m/package.nix @@ -125,13 +125,13 @@ stdenv.mkDerivation rec { command = "w3m -version"; }; - meta = with lib; { + meta = { homepage = "https://w3m.sourceforge.net/"; changelog = "https://github.com/tats/w3m/blob/v${version}/ChangeLog"; description = "Text-mode web browser"; - maintainers = with maintainers; [ anthonyroussel ]; - platforms = platforms.unix; - license = licenses.mit; + maintainers = with lib.maintainers; [ anthonyroussel ]; + platforms = lib.platforms.unix; + license = lib.licenses.mit; mainProgram = "w3m"; }; } diff --git a/pkgs/by-name/wb/wbg/package.nix b/pkgs/by-name/wb/wbg/package.nix index 47f8ac7844d4..c20f6ecbc9ac 100644 --- a/pkgs/by-name/wb/wbg/package.nix +++ b/pkgs/by-name/wb/wbg/package.nix @@ -61,13 +61,13 @@ stdenv.mkDerivation rec { "-Wno-error=maybe-uninitialized" ]; - meta = with lib; { + meta = { description = "Wallpaper application for Wayland compositors"; homepage = "https://codeberg.org/dnkl/wbg"; changelog = "https://codeberg.org/dnkl/wbg/releases/tag/${version}"; - license = licenses.isc; - maintainers = with maintainers; [ ]; - platforms = with platforms; linux; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ ]; + platforms = with lib.platforms; linux; mainProgram = "wbg"; }; } diff --git a/pkgs/by-name/we/webanalyze/package.nix b/pkgs/by-name/we/webanalyze/package.nix index 906a94e6cc42..ecd0525d747a 100644 --- a/pkgs/by-name/we/webanalyze/package.nix +++ b/pkgs/by-name/we/webanalyze/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-XPOsC+HoLytgv1fhAaO5HYSvuOP6OhjLyOYTfiD64QI="; - meta = with lib; { + meta = { description = "Tool to uncover technologies used on websites"; homepage = "https://github.com/rverton/webanalyze"; changelog = "https://github.com/rverton/webanalyze/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "webanalyze"; }; } diff --git a/pkgs/by-name/we/websecprobe/package.nix b/pkgs/by-name/we/websecprobe/package.nix index 893954cd77db..8b9a59dfd1ed 100644 --- a/pkgs/by-name/we/websecprobe/package.nix +++ b/pkgs/by-name/we/websecprobe/package.nix @@ -28,13 +28,13 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "WebSecProbe" ]; - meta = with lib; { + meta = { description = "Web Security Assessment Tool"; homepage = "https://github.com/spyboy-productions/WebSecProbe/"; changelog = "https://github.com/spyboy-productions/WebSecProbe/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "websecprobe"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/we/websocat/package.nix b/pkgs/by-name/we/websocat/package.nix index f00d2aef05f3..f0cb9eea6b99 100644 --- a/pkgs/by-name/we/websocat/package.nix +++ b/pkgs/by-name/we/websocat/package.nix @@ -53,12 +53,12 @@ rustPlatform.buildRustPackage rec { doInstallCheck = true; - meta = with lib; { + meta = { description = "Command-line client for WebSockets (like netcat/socat)"; homepage = "https://github.com/vi/websocat"; changelog = "https://github.com/vi/websocat/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ thoughtpolice Br1ght0ne ]; diff --git a/pkgs/by-name/we/websploit/package.nix b/pkgs/by-name/we/websploit/package.nix index aafccf28a69e..f6f7cb1e79c2 100644 --- a/pkgs/by-name/we/websploit/package.nix +++ b/pkgs/by-name/we/websploit/package.nix @@ -32,12 +32,12 @@ python3.pkgs.buildPythonApplication rec { "websploit" ]; - meta = with lib; { + meta = { description = "High level MITM framework"; homepage = "https://github.com/f4rih/websploit"; changelog = "https://github.com/f4rih/websploit/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ emilytrau ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ emilytrau ]; mainProgram = "websploit"; }; } diff --git a/pkgs/by-name/we/weggli/package.nix b/pkgs/by-name/we/weggli/package.nix index 2f12a878274e..4ba092e2ac1e 100644 --- a/pkgs/by-name/we/weggli/package.nix +++ b/pkgs/by-name/we/weggli/package.nix @@ -26,13 +26,13 @@ rustPlatform.buildRustPackage rec { version = "weggli ${version}"; }; - meta = with lib; { + meta = { description = "Weggli is a fast and robust semantic search tool for C and C++ codebases"; homepage = "https://github.com/weggli-rs/weggli"; changelog = "https://github.com/weggli-rs/weggli/releases/tag/v${version}"; mainProgram = "weggli"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arturcygan mfrw ]; diff --git a/pkgs/by-name/wf/wf-recorder/package.nix b/pkgs/by-name/wf/wf-recorder/package.nix index c52dc85fa9a5..94957e0b341b 100644 --- a/pkgs/by-name/wf/wf-recorder/package.nix +++ b/pkgs/by-name/wf/wf-recorder/package.nix @@ -53,13 +53,13 @@ stdenv.mkDerivation rec { libgbm ]; - meta = with lib; { + meta = { description = "Utility program for screen recording of wlroots-based compositors"; inherit (src.meta) homepage; changelog = "https://github.com/ammen99/wf-recorder/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ dywedir ]; - platforms = platforms.linux; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dywedir ]; + platforms = lib.platforms.linux; mainProgram = "wf-recorder"; }; } diff --git a/pkgs/by-name/wh/whatsapp-chat-exporter/package.nix b/pkgs/by-name/wh/whatsapp-chat-exporter/package.nix index 8577be591b41..e21a419b5206 100644 --- a/pkgs/by-name/wh/whatsapp-chat-exporter/package.nix +++ b/pkgs/by-name/wh/whatsapp-chat-exporter/package.nix @@ -27,7 +27,7 @@ python3Packages.buildPythonApplication { vobject ]; - meta = with lib; { + meta = { homepage = "https://github.com/KnugiHK/Whatsapp-Chat-Exporter"; description = "WhatsApp database parser"; changelog = "https://github.com/KnugiHK/Whatsapp-Chat-Exporter/releases/tag/${version}"; @@ -36,9 +36,9 @@ python3Packages.buildPythonApplication { you the history of your WhatsApp conversations inHTML and JSON. Android Backup Crypt12, Crypt14 and Crypt15 supported. ''; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "wtsexporter"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ bbenno EstebanMacanek ]; diff --git a/pkgs/by-name/wi/widelands/package.nix b/pkgs/by-name/wi/widelands/package.nix index e91f348c20f9..8a7bb56adeb9 100644 --- a/pkgs/by-name/wi/widelands/package.nix +++ b/pkgs/by-name/wi/widelands/package.nix @@ -92,7 +92,7 @@ stdenv.mkDerivation rec { installManPage ../xdg/widelands.6 ''; - meta = with lib; { + meta = { description = "RTS with multiple-goods economy"; homepage = "https://widelands.org/"; longDescription = '' @@ -102,12 +102,12 @@ stdenv.mkDerivation rec { ''; changelog = "https://github.com/widelands/widelands/releases/tag/v${version}"; mainProgram = "widelands"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ raskin jcumming ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; hydraPlatforms = [ ]; }; } diff --git a/pkgs/by-name/wi/wiki-tui/package.nix b/pkgs/by-name/wi/wiki-tui/package.nix index 7257c65b558e..fbe5e76b571d 100644 --- a/pkgs/by-name/wi/wiki-tui/package.nix +++ b/pkgs/by-name/wi/wiki-tui/package.nix @@ -27,12 +27,12 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; cargoHash = "sha256-Pe6mNbn4GFjhpFZeWMlaRt7Bj5BLiIy789hXWkII2ps="; - meta = with lib; { + meta = { description = "Simple and easy to use Wikipedia Text User Interface"; homepage = "https://github.com/builditluc/wiki-tui"; changelog = "https://github.com/Builditluc/wiki-tui/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ lom builditluc matthiasbeyer diff --git a/pkgs/by-name/wi/win2xcur/package.nix b/pkgs/by-name/wi/win2xcur/package.nix index f93b064d00e6..1cd7486439c6 100644 --- a/pkgs/by-name/wi/win2xcur/package.nix +++ b/pkgs/by-name/wi/win2xcur/package.nix @@ -20,11 +20,11 @@ python3Packages.buildPythonPackage rec { wand ]; - meta = with lib; { + meta = { description = "Tools that convert cursors between the Windows (*.cur, *.ani) and Xcursor format"; homepage = "https://github.com/quantum5/win2xcur"; changelog = "https://github.com/quantum5/win2xcur/releases/tag/v${version}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ teatwig ]; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ teatwig ]; }; } diff --git a/pkgs/by-name/wi/wishlist/package.nix b/pkgs/by-name/wi/wishlist/package.nix index cbb5a316614f..70e6459f27f1 100644 --- a/pkgs/by-name/wi/wishlist/package.nix +++ b/pkgs/by-name/wi/wishlist/package.nix @@ -25,12 +25,12 @@ buildGoModule rec { "-X=main.Version=${version}" ]; - meta = with lib; { + meta = { description = "Single entrypoint for multiple SSH endpoints"; homepage = "https://github.com/charmbracelet/wishlist"; changelog = "https://github.com/charmbracelet/wishlist/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ caarlos0 penguwin ]; diff --git a/pkgs/by-name/wi/witness/package.nix b/pkgs/by-name/wi/witness/package.nix index 39e7cb72aae3..51bb59b5cc35 100644 --- a/pkgs/by-name/wi/witness/package.nix +++ b/pkgs/by-name/wi/witness/package.nix @@ -52,7 +52,7 @@ buildGoModule rec { version = "v${version}"; }; - meta = with lib; { + meta = { description = "Pluggable framework for software supply chain security. Witness prevents tampering of build materials and verifies the integrity of the build process from source to target"; longDescription = '' Witness prevents tampering of build materials and verifies the integrity @@ -66,8 +66,8 @@ buildGoModule rec { mainProgram = "witness"; homepage = "https://github.com/testifysec/witness"; changelog = "https://github.com/testifysec/witness/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fkautz jk ]; diff --git a/pkgs/by-name/wl/wl-clipboard-rs/package.nix b/pkgs/by-name/wl/wl-clipboard-rs/package.nix index 2fc26e2c3836..29f59538cc6d 100644 --- a/pkgs/by-name/wl/wl-clipboard-rs/package.nix +++ b/pkgs/by-name/wl/wl-clipboard-rs/package.nix @@ -75,17 +75,17 @@ rustPlatform.buildRustPackage rec { --zsh target/completions/_wl-paste ''; - meta = with lib; { + meta = { description = "Command-line copy/paste utilities for Wayland, written in Rust"; homepage = "https://github.com/YaLTeR/wl-clipboard-rs"; changelog = "https://github.com/YaLTeR/wl-clipboard-rs/blob/v${version}/CHANGELOG.md"; - platforms = platforms.linux; - license = with licenses; [ + platforms = lib.platforms.linux; + license = with lib.licenses; [ asl20 mit ]; mainProgram = "wl-clip"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ thiagokokada donovanglover ]; diff --git a/pkgs/by-name/wl/wlsunset/package.nix b/pkgs/by-name/wl/wlsunset/package.nix index c79382a36a4e..e46433eb715d 100644 --- a/pkgs/by-name/wl/wlsunset/package.nix +++ b/pkgs/by-name/wl/wlsunset/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { wayland-protocols ]; - meta = with lib; { + meta = { description = "Day/night gamma adjustments for Wayland"; longDescription = '' Day/night gamma adjustments for Wayland compositors supporting @@ -46,9 +46,9 @@ stdenv.mkDerivation rec { ''; homepage = "https://sr.ht/~kennylevinsen/wlsunset/"; changelog = "https://git.sr.ht/~kennylevinsen/wlsunset/refs/${version}"; - license = licenses.mit; - platforms = platforms.linux; - maintainers = with maintainers; [ primeos ]; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ primeos ]; mainProgram = "wlsunset"; }; } diff --git a/pkgs/by-name/wo/wob/package.nix b/pkgs/by-name/wo/wob/package.nix index 9c1ab6114cf3..dd01c61248aa 100644 --- a/pkgs/by-name/wo/wob/package.nix +++ b/pkgs/by-name/wo/wob/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { mesonFlags = lib.optional stdenv.hostPlatform.isLinux "-Dseccomp=enabled"; - meta = with lib; { + meta = { inherit (src.meta) homepage; description = "Lightweight overlay bar for Wayland"; longDescription = '' @@ -53,9 +53,9 @@ stdenv.mkDerivation rec { inspired by xob. ''; changelog = "https://github.com/francma/wob/releases/tag/${version}"; - license = licenses.isc; - maintainers = with maintainers; [ primeos ]; - platforms = platforms.linux; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ primeos ]; + platforms = lib.platforms.linux; mainProgram = "wob"; }; } diff --git a/pkgs/by-name/wo/woodpecker-plugin-git/package.nix b/pkgs/by-name/wo/woodpecker-plugin-git/package.nix index 31f5d450ff34..73e5abc30e12 100644 --- a/pkgs/by-name/wo/woodpecker-plugin-git/package.nix +++ b/pkgs/by-name/wo/woodpecker-plugin-git/package.nix @@ -32,12 +32,12 @@ buildGoModule rec { passthru.tests.version = testers.testVersion { package = woodpecker-plugin-git; }; - meta = with lib; { + meta = { description = "Woodpecker plugin for cloning Git repositories"; homepage = "https://woodpecker-ci.org/"; changelog = "https://github.com/woodpecker-ci/plugin-git/releases/tag/${version}"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "plugin-git"; - maintainers = with maintainers; [ ambroisie ]; + maintainers = with lib.maintainers; [ ambroisie ]; }; } diff --git a/pkgs/by-name/wo/wormhole-william/package.nix b/pkgs/by-name/wo/wormhole-william/package.nix index aedb6c88177a..042627610880 100644 --- a/pkgs/by-name/wo/wormhole-william/package.nix +++ b/pkgs/by-name/wo/wormhole-william/package.nix @@ -37,12 +37,12 @@ buildGoModule rec { --zsh <($out/bin/wormhole-william shell-completion zsh) ''; - meta = with lib; { + meta = { homepage = "https://github.com/psanford/wormhole-william"; description = "End-to-end encrypted file transfers"; changelog = "https://github.com/psanford/wormhole-william/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ psanford ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ psanford ]; mainProgram = "wormhole-william"; }; } diff --git a/pkgs/by-name/wp/wp-cli/package.nix b/pkgs/by-name/wp/wp-cli/package.nix index c2ce0e6a9d3f..cdd3f8eb5f00 100644 --- a/pkgs/by-name/wp/wp-cli/package.nix +++ b/pkgs/by-name/wp/wp-cli/package.nix @@ -75,13 +75,13 @@ stdenv.mkDerivation (finalAttrs: { $out/bin/wp --info ''; - meta = with lib; { + meta = { description = "Command line interface for WordPress"; homepage = "https://wp-cli.org"; - changelog = "https://github.com/wp-cli/wp-cli/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ peterhoeg ]; - platforms = platforms.all; + changelog = "https://github.com/wp-cli/wp-cli/releases/tag/v${finalAttrs.version}"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ peterhoeg ]; + platforms = lib.platforms.all; mainProgram = "wp"; }; }) diff --git a/pkgs/by-name/ws/wsl-vpnkit/package.nix b/pkgs/by-name/ws/wsl-vpnkit/package.nix index 22d4b341d496..ee3eeb5a39cb 100644 --- a/pkgs/by-name/ws/wsl-vpnkit/package.nix +++ b/pkgs/by-name/ws/wsl-vpnkit/package.nix @@ -75,12 +75,12 @@ resholve.mkDerivation { }; }; - meta = with lib; { + meta = { description = "Provides network connectivity to Windows Subsystem for Linux (WSL) when blocked by VPN"; homepage = "https://github.com/sakai135/wsl-vpnkit"; changelog = "https://github.com/sakai135/wsl-vpnkit/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ terlar ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ terlar ]; mainProgram = "wsl-vpnkit"; }; } diff --git a/pkgs/by-name/ws/wslu/package.nix b/pkgs/by-name/ws/wslu/package.nix index 43fb9cbbfafc..ecd287cf3873 100644 --- a/pkgs/by-name/ws/wslu/package.nix +++ b/pkgs/by-name/ws/wslu/package.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation rec { "PREFIX=" ]; - meta = with lib; { + meta = { description = "Collection of utilities for Windows Subsystem for Linux"; homepage = "https://github.com/wslutilities/wslu"; changelog = "https://github.com/wslutilities/wslu/releases/tag/v${version}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ jamiemagee ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ jamiemagee ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wt/wtfutil/package.nix b/pkgs/by-name/wt/wtfutil/package.nix index d4f638264b13..49066e647a2b 100644 --- a/pkgs/by-name/wt/wtfutil/package.nix +++ b/pkgs/by-name/wt/wtfutil/package.nix @@ -50,16 +50,16 @@ buildGoModule rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Personal information dashboard for your terminal"; homepage = "https://wtfutil.com/"; changelog = "https://github.com/wtfutil/wtf/raw/v${version}/CHANGELOG.md"; - license = licenses.mpl20; - maintainers = with maintainers; [ + license = lib.licenses.mpl20; + maintainers = with lib.maintainers; [ xiaoxiangmoe kalbasit ]; mainProgram = "wtfutil"; - platforms = platforms.linux ++ platforms.darwin; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/wu/wush/package.nix b/pkgs/by-name/wu/wush/package.nix index 884c0e590143..9990bd6ed676 100644 --- a/pkgs/by-name/wu/wush/package.nix +++ b/pkgs/by-name/wu/wush/package.nix @@ -25,12 +25,12 @@ buildGoModule { env.CGO_ENABLED = 0; - meta = with lib; { + meta = { homepage = "https://github.com/coder/wush"; description = "Transfer files between computers via WireGuard"; changelog = "https://github.com/coder/wush/releases/tag/v${version}"; - license = licenses.cc0; + license = lib.licenses.cc0; mainProgram = "wush"; - maintainers = with maintainers; [ abbe ]; + maintainers = with lib.maintainers; [ abbe ]; }; } diff --git a/pkgs/by-name/wy/wyoming-faster-whisper/package.nix b/pkgs/by-name/wy/wyoming-faster-whisper/package.nix index eed7fed90f28..654491f0bbba 100644 --- a/pkgs/by-name/wy/wyoming-faster-whisper/package.nix +++ b/pkgs/by-name/wy/wyoming-faster-whisper/package.nix @@ -37,12 +37,12 @@ python3Packages.buildPythonApplication rec { # no tests doCheck = false; - meta = with lib; { + meta = { changelog = "https://github.com/rhasspy/wyoming-faster-whisper/releases/tag/v${version}"; description = "Wyoming Server for Faster Whisper"; homepage = "https://github.com/rhasspy/wyoming-faster-whisper"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; mainProgram = "wyoming-faster-whisper"; }; } diff --git a/pkgs/by-name/wy/wyoming-openwakeword/package.nix b/pkgs/by-name/wy/wyoming-openwakeword/package.nix index 83339d62cee5..3bd4d66c7431 100644 --- a/pkgs/by-name/wy/wyoming-openwakeword/package.nix +++ b/pkgs/by-name/wy/wyoming-openwakeword/package.nix @@ -37,12 +37,12 @@ python3Packages.buildPythonApplication rec { "wyoming_openwakeword" ]; - meta = with lib; { + meta = { changelog = "https://github.com/rhasspy/wyoming-openwakeword/blob/v${version}/CHANGELOG.md"; description = "Open source voice assistant toolkit for many human languages"; homepage = "https://github.com/rhasspy/wyoming-openwakeword"; - license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ hexa ]; mainProgram = "wyoming-openwakeword"; }; } diff --git a/pkgs/by-name/xa/xandikos/package.nix b/pkgs/by-name/xa/xandikos/package.nix index 0a686691caa3..e522d56bee4e 100644 --- a/pkgs/by-name/xa/xandikos/package.nix +++ b/pkgs/by-name/xa/xandikos/package.nix @@ -39,12 +39,12 @@ python3Packages.buildPythonApplication rec { nativeCheckInputs = with python3Packages; [ pytestCheckHook ]; - meta = with lib; { + meta = { description = "Lightweight CalDAV/CardDAV server"; homepage = "https://github.com/jelmer/xandikos"; - license = licenses.gpl3Plus; + license = lib.licenses.gpl3Plus; changelog = "https://github.com/jelmer/xandikos/blob/v${version}/NEWS"; - maintainers = with maintainers; [ _0x4A6F ]; + maintainers = with lib.maintainers; [ _0x4A6F ]; mainProgram = "xandikos"; }; } diff --git a/pkgs/by-name/xc/xcat/package.nix b/pkgs/by-name/xc/xcat/package.nix index 085b9f874f7b..4c55b587b193 100644 --- a/pkgs/by-name/xc/xcat/package.nix +++ b/pkgs/by-name/xc/xcat/package.nix @@ -36,7 +36,7 @@ python3.pkgs.buildPythonApplication rec { doCheck = false; pythonImportsCheck = [ "xcat" ]; - meta = with lib; { + meta = { description = "XPath injection tool"; mainProgram = "xcat"; longDescription = '' @@ -47,7 +47,7 @@ python3.pkgs.buildPythonApplication rec { ''; homepage = "https://github.com/orf/xcat"; changelog = "https://github.com/orf/xcat/releases/tag/v${version}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/xc/xcrawl3r/package.nix b/pkgs/by-name/xc/xcrawl3r/package.nix index 90dabee0168c..c81aba9fd2d5 100644 --- a/pkgs/by-name/xc/xcrawl3r/package.nix +++ b/pkgs/by-name/xc/xcrawl3r/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "CLI utility to recursively crawl webpages"; homepage = "https://github.com/hueristiq/xcrawl3r"; changelog = "https://github.com/hueristiq/xcrawl3r/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "xcrawl3r"; }; } diff --git a/pkgs/by-name/xe/xeol/package.nix b/pkgs/by-name/xe/xeol/package.nix index 33d5ee2ff070..4ae000b5cb52 100644 --- a/pkgs/by-name/xe/xeol/package.nix +++ b/pkgs/by-name/xe/xeol/package.nix @@ -29,12 +29,12 @@ buildGoModule rec { "-X=main.gitDescription=${src.rev}" ]; - meta = with lib; { + meta = { description = "Scanner for end-of-life (EOL) software and dependencies in container images, filesystems, and SBOMs"; homepage = "https://github.com/xeol-io/xeol"; changelog = "https://github.com/xeol-io/xeol/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "xeol"; }; } diff --git a/pkgs/by-name/xf/xfig/package.nix b/pkgs/by-name/xf/xfig/package.nix index f53ccd161b1f..f88b70103928 100644 --- a/pkgs/by-name/xf/xfig/package.nix +++ b/pkgs/by-name/xf/xfig/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with lib; { + meta = { changelog = "https://sourceforge.net/p/mcj/xfig/ci/${version}/tree/CHANGES"; description = "Interactive drawing tool for X11"; mainProgram = "xfig"; diff --git a/pkgs/by-name/xi/xiu/package.nix b/pkgs/by-name/xi/xiu/package.nix index 73e497710209..f4eb72204ff7 100644 --- a/pkgs/by-name/xi/xiu/package.nix +++ b/pkgs/by-name/xi/xiu/package.nix @@ -38,12 +38,12 @@ rustPlatform.buildRustPackage rec { OPENSSL_NO_VENDOR = 1; - meta = with lib; { + meta = { description = "Simple, high performance and secure live media server in pure Rust (RTMP[cluster]/RTSP/WebRTC[whip/whep]/HTTP-FLV/HLS"; homepage = "https://github.com/harlanc/xiu"; changelog = "https://github.com/harlanc/xiu/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ cafkafk ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ cafkafk ]; mainProgram = "xiu"; }; } diff --git a/pkgs/by-name/xn/xnlinkfinder/package.nix b/pkgs/by-name/xn/xnlinkfinder/package.nix index 663f659aadd3..3aae5a3ad5c2 100644 --- a/pkgs/by-name/xn/xnlinkfinder/package.nix +++ b/pkgs/by-name/xn/xnlinkfinder/package.nix @@ -44,12 +44,12 @@ python3.pkgs.buildPythonApplication rec { pythonImportsCheck = [ "xnLinkFinder" ]; - meta = with lib; { + meta = { description = "Tool to discover endpoints, potential parameters, and a target specific wordlist for a given target"; homepage = "https://github.com/xnl-h4ck3r/xnLinkFinder"; changelog = "https://github.com/xnl-h4ck3r/xnLinkFinder/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "xnLinkFinder"; }; } diff --git a/pkgs/by-name/xo/xortool/package.nix b/pkgs/by-name/xo/xortool/package.nix index b570a909e5f0..4ff1df19365c 100644 --- a/pkgs/by-name/xo/xortool/package.nix +++ b/pkgs/by-name/xo/xortool/package.nix @@ -28,11 +28,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "xortool" ]; - meta = with lib; { + meta = { description = "Tool to analyze multi-byte XOR cipher"; homepage = "https://github.com/hellman/xortool"; changelog = "https://github.com/hellman/xortool/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; } diff --git a/pkgs/by-name/xp/xpano/package.nix b/pkgs/by-name/xp/xpano/package.nix index 423d2cd20a87..5eb825e97099 100644 --- a/pkgs/by-name/xp/xpano/package.nix +++ b/pkgs/by-name/xp/xpano/package.nix @@ -52,13 +52,13 @@ stdenv.mkDerivation rec { "-DXPANO_INSTALL_DESKTOP_FILES=ON" ]; - meta = with lib; { + meta = { description = "Panorama stitching tool"; mainProgram = "Xpano"; homepage = "https://krupkat.github.io/xpano/"; changelog = "https://github.com/krupkat/xpano/releases/tag/v${version}"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ krupkat ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ krupkat ]; + platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xp/xpipe/package.nix b/pkgs/by-name/xp/xpipe/package.nix index 67c153fb2983..ceca00e58643 100644 --- a/pkgs/by-name/xp/xpipe/package.nix +++ b/pkgs/by-name/xp/xpipe/package.nix @@ -141,17 +141,17 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Cross-platform shell connection hub and remote file manager"; homepage = "https://github.com/xpipe-io/${pname}"; downloadPage = "https://github.com/xpipe-io/${pname}/releases/latest"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; changelog = "https://github.com/xpipe-io/${pname}/releases/tag/${version}"; license = [ - licenses.asl20 - licenses.unfree + lib.licenses.asl20 + lib.licenses.unfree ]; - maintainers = with maintainers; [ crschnick ]; + maintainers = with lib.maintainers; [ crschnick ]; platforms = [ "x86_64-linux" ]; mainProgram = pname; }; diff --git a/pkgs/by-name/xs/xsubfind3r/package.nix b/pkgs/by-name/xs/xsubfind3r/package.nix index c70444ee16c6..69262896eec8 100644 --- a/pkgs/by-name/xs/xsubfind3r/package.nix +++ b/pkgs/by-name/xs/xsubfind3r/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "CLI utility to find subdomains from curated passive online sources"; homepage = "https://github.com/hueristiq/xsubfind3r"; changelog = "https://github.com/hueristiq/xsubfind3r/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "xsubfind3r"; }; } diff --git a/pkgs/by-name/ya/yamlfmt/package.nix b/pkgs/by-name/ya/yamlfmt/package.nix index cadab5c8ba7d..937b4c764616 100644 --- a/pkgs/by-name/ya/yamlfmt/package.nix +++ b/pkgs/by-name/ya/yamlfmt/package.nix @@ -30,12 +30,12 @@ buildGoModule rec { package = yamlfmt; }; - meta = with lib; { + meta = { description = "Extensible command line tool or library to format yaml files"; homepage = "https://github.com/google/yamlfmt"; changelog = "https://github.com/google/yamlfmt/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ sno2wman ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sno2wman ]; mainProgram = "yamlfmt"; }; } diff --git a/pkgs/by-name/ya/yamlpath/package.nix b/pkgs/by-name/ya/yamlpath/package.nix index 9f5fa770d681..36d46665e8a1 100644 --- a/pkgs/by-name/ya/yamlpath/package.nix +++ b/pkgs/by-name/ya/yamlpath/package.nix @@ -37,7 +37,7 @@ python3.pkgs.buildPythonApplication rec { "yamlpath" ]; - meta = with lib; { + meta = { description = "Command-line processors for YAML/JSON/Compatible data"; homepage = "https://github.com/wwkimball/yamlpath"; changelog = "https://github.com/wwkimball/yamlpath/releases/tag/v${version}"; @@ -45,8 +45,8 @@ python3.pkgs.buildPythonApplication rec { Command-line get/set/merge/validate/scan/convert/diff processors for YAML/JSON/Compatible data using powerful, intuitive, command-line friendly syntax ''; - license = licenses.isc; - maintainers = with maintainers; [ Flakebi ]; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ Flakebi ]; # No support for ruamel.yaml > 0.17.21 # https://github.com/wwkimball/yamlpath/issues/217 diff --git a/pkgs/by-name/ya/yara/package.nix b/pkgs/by-name/ya/yara/package.nix index 34574c744c14..2e9417d235b5 100644 --- a/pkgs/by-name/ya/yara/package.nix +++ b/pkgs/by-name/ya/yara/package.nix @@ -55,13 +55,13 @@ stdenv.mkDerivation rec { doCheck = enableStatic; - meta = with lib; { + meta = { description = "Tool to perform pattern matching for malware-related tasks"; homepage = "http://Virustotal.github.io/yara/"; changelog = "https://github.com/VirusTotal/yara/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "yara"; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ya/yarr/package.nix b/pkgs/by-name/ya/yarr/package.nix index cc3a5581b56a..1968875a61e6 100644 --- a/pkgs/by-name/ya/yarr/package.nix +++ b/pkgs/by-name/ya/yarr/package.nix @@ -42,13 +42,13 @@ buildGoModule rec { tests = lib.optionalAttrs stdenv.hostPlatform.isLinux nixosTests.yarr; }; - meta = with lib; { + meta = { description = "Yet another rss reader"; mainProgram = "yarr"; homepage = "https://github.com/nkanaev/yarr"; changelog = "https://github.com/nkanaev/yarr/blob/v${version}/doc/changelog.txt"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir christoph-heiss ]; diff --git a/pkgs/by-name/ya/yatas/package.nix b/pkgs/by-name/ya/yatas/package.nix index bd3e776c0cec..d9b9b23854e8 100644 --- a/pkgs/by-name/ya/yatas/package.nix +++ b/pkgs/by-name/ya/yatas/package.nix @@ -17,12 +17,12 @@ buildGoModule rec { vendorHash = "sha256-zp5EVJe5Q6o6C0CZ8u+oEFEOy0NU5SgVN+cSc6A/jZ4="; - meta = with lib; { + meta = { description = "Tool to audit AWS infrastructure for misconfiguration or potential security issues"; homepage = "https://github.com/padok-team/YATAS"; changelog = "https://github.com/padok-team/YATAS/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "yatas"; }; } diff --git a/pkgs/by-name/yl/yle-dl/package.nix b/pkgs/by-name/yl/yle-dl/package.nix index 25579121bce6..d2b258ae75f1 100644 --- a/pkgs/by-name/yl/yle-dl/package.nix +++ b/pkgs/by-name/yl/yle-dl/package.nix @@ -48,13 +48,13 @@ python3Packages.buildPythonApplication rec { command = "yle-dl -h"; }; - meta = with lib; { + meta = { description = "Downloads videos from Yle (Finnish Broadcasting Company) servers"; homepage = "https://aajanki.github.io/yle-dl/"; changelog = "https://github.com/aajanki/yle-dl/blob/${version}/ChangeLog"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ dezgeg ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ dezgeg ]; + platforms = lib.platforms.unix; mainProgram = "yle-dl"; }; } diff --git a/pkgs/by-name/yo/yor/package.nix b/pkgs/by-name/yo/yor/package.nix index 84f5eb42427b..8025137a2bc1 100644 --- a/pkgs/by-name/yo/yor/package.nix +++ b/pkgs/by-name/yo/yor/package.nix @@ -33,11 +33,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Extensible auto-tagger for your IaC files. The ultimate way to link entities in the cloud back to the codified resource which created it"; homepage = "https://github.com/bridgecrewio/yor"; changelog = "https://github.com/bridgecrewio/yor/releases/tag/${version}"; - license = licenses.asl20; - maintainers = [ maintainers.ivankovnatsky ]; + license = lib.licenses.asl20; + maintainers = [ lib.maintainers.ivankovnatsky ]; }; } diff --git a/pkgs/by-name/yo/you-get/package.nix b/pkgs/by-name/yo/you-get/package.nix index 2e4b9087713b..c9a32a82e0db 100644 --- a/pkgs/by-name/yo/you-get/package.nix +++ b/pkgs/by-name/yo/you-get/package.nix @@ -42,12 +42,12 @@ python3.pkgs.buildPythonApplication rec { "you_get" ]; - meta = with lib; { + meta = { description = "Tiny command line utility to download media contents from the web"; homepage = "https://you-get.org"; changelog = "https://github.com/soimort/you-get/raw/v${version}/CHANGELOG.rst"; - license = licenses.mit; - maintainers = with maintainers; [ ryneeverett ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ryneeverett ]; mainProgram = "you-get"; }; } diff --git a/pkgs/by-name/yo/youki/package.nix b/pkgs/by-name/yo/youki/package.nix index 66aa0c0940cd..8c8d1994fc60 100644 --- a/pkgs/by-name/yo/youki/package.nix +++ b/pkgs/by-name/yo/youki/package.nix @@ -56,13 +56,13 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; cargoHash = "sha256-nRlvvr73glmpFsWb2Pi1icZl7d85/8iX2rHnNXv4ep8="; - meta = with lib; { + meta = { description = "Container runtime written in Rust"; homepage = "https://containers.github.io/youki/"; changelog = "https://github.com/containers/youki/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ builditluc ]; - platforms = platforms.linux; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ builditluc ]; + platforms = lib.platforms.linux; mainProgram = "youki"; }; } diff --git a/pkgs/by-name/zb/zbctl/package.nix b/pkgs/by-name/zb/zbctl/package.nix index f5c72fb60ffc..4e04d7b42474 100644 --- a/pkgs/by-name/zb/zbctl/package.nix +++ b/pkgs/by-name/zb/zbctl/package.nix @@ -34,18 +34,18 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Command line interface to interact with Camunda 8 and Zeebe"; homepage = "https://docs.camunda.io/docs/apis-clients/cli-client/"; downloadPage = "https://github.com/camunda/zeebe/releases"; changelog = "https://github.com/camunda/zeebe/releases/tag/${version}"; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.asl20; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + license = lib.licenses.asl20; platforms = [ "x86_64-darwin" "x86_64-linux" ]; - maintainers = with maintainers; [ thetallestjj ]; + maintainers = with lib.maintainers; [ thetallestjj ]; longDescription = '' A command line interface for Camunda Platform 8 designed to create and read resources inside a Zeebe broker. It can be used for regular development and maintenance tasks such as: diff --git a/pkgs/by-name/ze/zed/package.nix b/pkgs/by-name/ze/zed/package.nix index 72db6bcb5d4c..fc0e86e9647c 100644 --- a/pkgs/by-name/ze/zed/package.nix +++ b/pkgs/by-name/ze/zed/package.nix @@ -40,12 +40,12 @@ buildGoModule rec { }; }; - meta = with lib; { + meta = { description = "Novel data lake based on super-structured data"; homepage = "https://zed.brimdata.io"; changelog = "https://github.com/brimdata/zed/blob/v${version}/CHANGELOG.md"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ dit7ya knl ]; diff --git a/pkgs/by-name/ze/zeek/package.nix b/pkgs/by-name/ze/zeek/package.nix index 67bf7bbb9b1f..95ae96c323f6 100644 --- a/pkgs/by-name/ze/zeek/package.nix +++ b/pkgs/by-name/ze/zeek/package.nix @@ -107,15 +107,15 @@ stdenv.mkDerivation rec { inherit broker; }; - meta = with lib; { + meta = { description = "Network analysis framework much different from a typical IDS"; homepage = "https://www.zeek.org"; changelog = "https://github.com/zeek/zeek/blob/v${version}/CHANGES"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ pSub tobim ]; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ze/zeekscript/package.nix b/pkgs/by-name/ze/zeekscript/package.nix index 476fc11018a7..fc81ec1b707c 100644 --- a/pkgs/by-name/ze/zeekscript/package.nix +++ b/pkgs/by-name/ze/zeekscript/package.nix @@ -31,12 +31,12 @@ python3.pkgs.buildPythonApplication rec { "zeekscript" ]; - meta = with lib; { + meta = { description = "Zeek script formatter and analyzer"; homepage = "https://github.com/zeek/zeekscript"; changelog = "https://github.com/zeek/zeekscript/blob/v${version}/CHANGES"; - license = licenses.bsd3; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ fab tobim ]; diff --git a/pkgs/by-name/zf/zfind/package.nix b/pkgs/by-name/zf/zfind/package.nix index f0017eb84c8c..e14026cb1347 100644 --- a/pkgs/by-name/zf/zfind/package.nix +++ b/pkgs/by-name/zf/zfind/package.nix @@ -22,7 +22,7 @@ buildGoModule rec { "main.appVersion=${version}" ]; - meta = with lib; { + meta = { description = "CLI for file search with SQL like syntax."; longDescription = '' zfind allows you to search for files, including inside tar, zip, 7z and rar archives. @@ -30,8 +30,8 @@ buildGoModule rec { ''; homepage = "https://github.com/laktak/zfind"; changelog = "https://github.com/laktak/zfind/releases/tag/v${version}"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "zfind"; - maintainers = with maintainers; [ eeedean ]; + maintainers = with lib.maintainers; [ eeedean ]; }; } diff --git a/pkgs/by-name/zf/zfs-autobackup/package.nix b/pkgs/by-name/zf/zfs-autobackup/package.nix index cb5962321e37..fd1b5e60675d 100644 --- a/pkgs/by-name/zf/zfs-autobackup/package.nix +++ b/pkgs/by-name/zf/zfs-autobackup/package.nix @@ -23,11 +23,11 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "zfs_autobackup" ]; - meta = with lib; { + meta = { description = "ZFS backup, replicationand snapshot tool"; homepage = "https://github.com/psy0rz/zfs_autobackup"; changelog = "https://github.com/psy0rz/zfs_autobackup/releases/tag/v${version}"; - license = licenses.gpl3Only; - maintainers = [ ]; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ ]; }; } diff --git a/pkgs/by-name/zi/zigbee2mqtt_1/package.nix b/pkgs/by-name/zi/zigbee2mqtt_1/package.nix index 91485153133b..235a25af498e 100644 --- a/pkgs/by-name/zi/zigbee2mqtt_1/package.nix +++ b/pkgs/by-name/zi/zigbee2mqtt_1/package.nix @@ -31,18 +31,18 @@ buildNpmPackage rec { passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt_1; passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { changelog = "https://github.com/Koenkk/zigbee2mqtt/releases/tag/${version}"; description = "Zigbee to MQTT bridge using zigbee-shepherd"; homepage = "https://github.com/Koenkk/zigbee2mqtt"; - license = licenses.gpl3; + license = lib.licenses.gpl3; longDescription = '' Allows you to use your Zigbee devices without the vendor's bridge or gateway. It bridges events and allows you to control your Zigbee devices via MQTT. In this way you can integrate your Zigbee devices with whatever smart home infrastructure you are using. ''; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ sweber hexa ]; diff --git a/pkgs/by-name/zi/zile/package.nix b/pkgs/by-name/zi/zile/package.nix index c90fdfba6c5a..9cf7036183ab 100644 --- a/pkgs/by-name/zi/zile/package.nix +++ b/pkgs/by-name/zi/zile/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { # XXX: Work around cross-compilation-unfriendly `gl_FUNC_FSTATAT' macro. gl_cv_func_fstatat_zero_flag = "yes"; - meta = with lib; { + meta = { homepage = "https://www.gnu.org/software/zile/"; changelog = "https://git.savannah.gnu.org/cgit/zile.git/plain/NEWS?h=v${version}"; description = "Zile Implements Lua Editors"; @@ -78,9 +78,9 @@ stdenv.mkDerivation rec { Lossy Emacs. Zile has been written to be as similar as possible to Emacs; every Emacs user should feel at home. ''; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ pSub ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ pSub ]; + platforms = lib.platforms.unix; mainProgram = "zile"; }; } diff --git a/pkgs/by-name/zi/zim/package.nix b/pkgs/by-name/zi/zim/package.nix index 63d15210ffb2..8330816d8e55 100644 --- a/pkgs/by-name/zi/zim/package.nix +++ b/pkgs/by-name/zi/zim/package.nix @@ -66,12 +66,12 @@ python3Packages.buildPythonApplication rec { ${python3Packages.python.interpreter} test.py ''; - meta = with lib; { + meta = { description = "Desktop wiki"; homepage = "https://zim-wiki.org/"; changelog = "https://github.com/zim-desktop-wiki/zim-desktop-wiki/blob/${version}/CHANGELOG.md"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ pSub ]; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ pSub ]; mainProgram = "zim"; broken = stdenv.hostPlatform.isDarwin; # https://github.com/NixOS/nixpkgs/pull/52658#issuecomment-449565790 }; diff --git a/pkgs/by-name/zi/zine/package.nix b/pkgs/by-name/zi/zine/package.nix index d592b14611f7..fb9ebf1f2cd3 100644 --- a/pkgs/by-name/zi/zine/package.nix +++ b/pkgs/by-name/zi/zine/package.nix @@ -31,12 +31,12 @@ rustPlatform.buildRustPackage rec { openssl ]; - meta = with lib; { + meta = { description = "Simple and opinionated tool to build your own magazine"; homepage = "https://github.com/zineland/zine"; changelog = "https://github.com/zineland/zine/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dit7ya figsoda ]; diff --git a/pkgs/by-name/zk/zkar/package.nix b/pkgs/by-name/zk/zkar/package.nix index c541c980dc4a..a31fde198a15 100644 --- a/pkgs/by-name/zk/zkar/package.nix +++ b/pkgs/by-name/zk/zkar/package.nix @@ -22,12 +22,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Java serialization protocol analysis tool"; homepage = "https://github.com/phith0n/zkar"; changelog = "https://github.com/phith0n/zkar/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; mainProgram = "zkar"; }; } diff --git a/pkgs/by-name/zo/zola/package.nix b/pkgs/by-name/zo/zola/package.nix index 9014dec615c5..2d59b4a35f00 100644 --- a/pkgs/by-name/zo/zola/package.nix +++ b/pkgs/by-name/zo/zola/package.nix @@ -44,13 +44,13 @@ rustPlatform.buildRustPackage rec { passthru.tests.version = testers.testVersion { package = zola; }; - meta = with lib; { + meta = { description = "Fast static site generator with everything built-in"; mainProgram = "zola"; homepage = "https://www.getzola.org/"; changelog = "https://github.com/getzola/zola/raw/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ dandellion dywedir _0x4A6F diff --git a/pkgs/by-name/zo/zookeeper/package.nix b/pkgs/by-name/zo/zookeeper/package.nix index 192cba33efcd..7e0cad01d7e3 100644 --- a/pkgs/by-name/zo/zookeeper/package.nix +++ b/pkgs/by-name/zo/zookeeper/package.nix @@ -50,17 +50,17 @@ stdenv.mkDerivation rec { inherit jre; }; - meta = with lib; { + meta = { homepage = "https://zookeeper.apache.org"; description = "Apache Zookeeper"; changelog = "https://zookeeper.apache.org/doc/r${version}/releasenotes.html"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nathan-gs pradeepchhetri ztzg ]; - platforms = platforms.unix; - sourceProvenance = with sourceTypes; [ binaryBytecode ]; + platforms = lib.platforms.unix; + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; }; } diff --git a/pkgs/by-name/zo/zoxide/package.nix b/pkgs/by-name/zo/zoxide/package.nix index 6d59e9786ea5..bcd33cc1d65f 100644 --- a/pkgs/by-name/zo/zoxide/package.nix +++ b/pkgs/by-name/zo/zoxide/package.nix @@ -40,12 +40,12 @@ rustPlatform.buildRustPackage rec { --zsh contrib/completions/_zoxide ''; - meta = with lib; { + meta = { description = "Fast cd command that learns your habits"; homepage = "https://github.com/ajeetdsouza/zoxide"; changelog = "https://github.com/ajeetdsouza/zoxide/blob/v${version}/CHANGELOG.md"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ ysndr cole-h SuperSandro2000 diff --git a/pkgs/by-name/zp/zps/package.nix b/pkgs/by-name/zp/zps/package.nix index 9408d844e349..065642d495db 100644 --- a/pkgs/by-name/zp/zps/package.nix +++ b/pkgs/by-name/zp/zps/package.nix @@ -26,13 +26,13 @@ stdenv.mkDerivation rec { --replace Exec=zps Exec=$out/zps \ ''; - meta = with lib; { + meta = { description = "Small utility for listing and reaping zombie processes on GNU/Linux"; homepage = "https://github.com/orhun/zps"; changelog = "https://github.com/orhun/zps/releases/tag/${version}"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ figsoda ]; - platforms = platforms.linux; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ figsoda ]; + platforms = lib.platforms.linux; mainProgram = "zps"; }; } diff --git a/pkgs/by-name/zs/zs/package.nix b/pkgs/by-name/zs/zs/package.nix index 9f6a293f0381..84e49f4e4db3 100644 --- a/pkgs/by-name/zs/zs/package.nix +++ b/pkgs/by-name/zs/zs/package.nix @@ -35,12 +35,12 @@ buildGoModule rec { --zsh <($out/bin/zs completion zsh) ''; - meta = with lib; { + meta = { description = "Extremely minimal static site generator written in Go"; homepage = "https://git.mills.io/prologic/zs"; changelog = "https://git.mills.io/prologic/zs/releases/tag/${version}"; - license = licenses.mit; - maintainers = with maintainers; [ adtya ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ adtya ]; mainProgram = "zs"; }; } diff --git a/pkgs/by-name/zs/zsh-wd/package.nix b/pkgs/by-name/zs/zsh-wd/package.nix index 07569ac9ce9f..e55aedc79ee2 100644 --- a/pkgs/by-name/zs/zsh-wd/package.nix +++ b/pkgs/by-name/zs/zsh-wd/package.nix @@ -25,7 +25,7 @@ stdenvNoCC.mkDerivation rec { installShellCompletion --zsh _wd.sh ''; - meta = with lib; { + meta = { description = "Jump to custom directories in zsh"; longDescription = '' `wd` (warp directory) lets you jump to custom directories in zsh, without @@ -34,9 +34,9 @@ stdenvNoCC.mkDerivation rec { ''; homepage = "https://github.com/mfaerevaag/wd"; changelog = "https://github.com/mfaerevaag/wd/releases/tag/v${version}"; - license = licenses.mit; - maintainers = [ maintainers.zimeg ]; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.zimeg ]; mainProgram = "wd"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/zu/zulip-term/package.nix b/pkgs/by-name/zu/zulip-term/package.nix index 45b1a8a565da..d8e3da694844 100644 --- a/pkgs/by-name/zu/zulip-term/package.nix +++ b/pkgs/by-name/zu/zulip-term/package.nix @@ -78,11 +78,11 @@ buildPythonApplication rec { (lib.makeBinPath [ libnotify ]) ]; - meta = with lib; { + meta = { description = "Zulip's official terminal client"; homepage = "https://github.com/zulip/zulip-terminal"; changelog = "https://github.com/zulip/zulip-terminal/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; } diff --git a/pkgs/by-name/zx/zxfer/package.nix b/pkgs/by-name/zx/zxfer/package.nix index d44eb8947779..621e4455df13 100644 --- a/pkgs/by-name/zx/zxfer/package.nix +++ b/pkgs/by-name/zx/zxfer/package.nix @@ -77,11 +77,11 @@ resholve.mkDerivation rec { execer = [ "cannot:${rsync}/bin/rsync" ]; }; - meta = with lib; { + meta = { description = "Popular script for managing ZFS snapshot replication"; homepage = "https://github.com/allanjude/zxfer"; changelog = "https://github.com/allanjude/zxfer/releases/tag/v${version}"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = with lib.maintainers; [ urandom ]; mainProgram = "zxfer"; }; diff --git a/pkgs/by-name/zy/zydis/package.nix b/pkgs/by-name/zy/zydis/package.nix index f02b1e6b1713..e358c8b9a1d3 100644 --- a/pkgs/by-name/zy/zydis/package.nix +++ b/pkgs/by-name/zy/zydis/package.nix @@ -34,15 +34,15 @@ stdenv.mkDerivation rec { nativeCheckInputs = [ python3 ]; passthru = { inherit zycore; }; - meta = with lib; { + meta = { homepage = "https://zydis.re/"; changelog = "https://github.com/zyantific/zydis/releases/tag/v${version}"; description = "Fast and lightweight x86/x86-64 disassembler library"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jbcrail athre0z ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/zz/zziplib/package.nix b/pkgs/by-name/zz/zziplib/package.nix index 867c3a3e890f..effdb4b4bd4e 100644 --- a/pkgs/by-name/zz/zziplib/package.nix +++ b/pkgs/by-name/zz/zziplib/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { "-DBUILDTESTS=OFF" ]; - meta = with lib; { + meta = { homepage = "https://github.com/gdraheim/zziplib"; changelog = "https://github.com/gdraheim/zziplib/blob/${version}/ChangeLog"; description = "Library to extract data from files archived in a zip file"; @@ -59,11 +59,11 @@ stdenv.mkDerivation rec { The implementation is based only on the (free) subset of compression with the zlib algorithm which is actually used by the zip/unzip tools. ''; - license = with licenses; [ + license = with lib.licenses; [ lgpl2Plus mpl11 ]; - maintainers = with maintainers; [ ]; - platforms = platforms.unix; + maintainers = with lib.maintainers; [ ]; + platforms = lib.platforms.unix; }; }