diff --git a/pkgs/by-name/am/amqpcat/package.nix b/pkgs/by-name/am/amqpcat/package.nix index 01c6237acbba..1f4d7d8dc1ca 100644 --- a/pkgs/by-name/am/amqpcat/package.nix +++ b/pkgs/by-name/am/amqpcat/package.nix @@ -30,11 +30,11 @@ crystal.buildCrystalPackage rec { package = amqpcat; }; - meta = with lib; { + meta = { description = "CLI tool for publishing to and consuming from AMQP servers"; mainProgram = "amqpcat"; homepage = "https://github.com/cloudamqp/amqpcat"; - license = licenses.mit; - maintainers = with maintainers; [ aaronjheng ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aaronjheng ]; }; } diff --git a/pkgs/by-name/at/atlas/package.nix b/pkgs/by-name/at/atlas/package.nix index a10d31e5a6c6..4dda809df479 100644 --- a/pkgs/by-name/at/atlas/package.nix +++ b/pkgs/by-name/at/atlas/package.nix @@ -46,12 +46,12 @@ buildGoModule rec { version = "v${version}"; }; - meta = with lib; { + meta = { description = "Modern tool for managing database schemas"; homepage = "https://atlasgo.io/"; changelog = "https://github.com/ariga/atlas/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ aaronjheng ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aaronjheng ]; mainProgram = "atlas"; }; } diff --git a/pkgs/by-name/bi/bingo/package.nix b/pkgs/by-name/bi/bingo/package.nix index 1a66f3d12f0b..eef064df34e9 100644 --- a/pkgs/by-name/bi/bingo/package.nix +++ b/pkgs/by-name/bi/bingo/package.nix @@ -21,11 +21,11 @@ buildGoModule rec { ldflags = [ "-s" "-w" ]; - meta = with lib; { + meta = { description = "Like `go get` but for Go tools! CI Automating versioning of Go binaries in a nested, isolated Go modules"; mainProgram = "bingo"; homepage = "https://github.com/bwplotka/bingo"; - license = licenses.asl20; - maintainers = with maintainers; [ aaronjheng ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aaronjheng ]; }; } diff --git a/pkgs/by-name/bu/bufisk/package.nix b/pkgs/by-name/bu/bufisk/package.nix index 930c15f60879..05ec70526546 100644 --- a/pkgs/by-name/bu/bufisk/package.nix +++ b/pkgs/by-name/bu/bufisk/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/bufbuild/bufisk"; description = "User-friendly launcher for Buf"; - license = licenses.asl20; - maintainers = with maintainers; [ aaronjheng ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aaronjheng ]; mainProgram = "bufisk"; }; } diff --git a/pkgs/by-name/ds/dsp/package.nix b/pkgs/by-name/ds/dsp/package.nix index b62eaa0fac12..a6a69b34d8ae 100644 --- a/pkgs/by-name/ds/dsp/package.nix +++ b/pkgs/by-name/ds/dsp/package.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation (finalAttrs: { libpulseaudio ]; - meta = with lib; { + meta = { homepage = "https://github.com/bmc0/dsp"; description = "Audio processing program with an interactive mode"; - license = licenses.isc; - maintainers = with maintainers; [ aaronjheng ]; - platforms = platforms.linux; + license = lib.licenses.isc; + maintainers = with lib.maintainers; [ aaronjheng ]; + platforms = lib.platforms.linux; mainProgram = "dsp"; }; }) diff --git a/pkgs/by-name/du/dust/package.nix b/pkgs/by-name/du/dust/package.nix index b7ce82c4995d..b72ae5ef2eb3 100644 --- a/pkgs/by-name/du/dust/package.nix +++ b/pkgs/by-name/du/dust/package.nix @@ -39,11 +39,11 @@ rustPlatform.buildRustPackage rec { installShellCompletion completions/dust.{bash,fish} --zsh completions/_dust ''; - meta = with lib; { + meta = { description = "du + rust = dust. Like du but more intuitive"; homepage = "https://github.com/bootandy/dust"; - license = licenses.asl20; - maintainers = with maintainers; [ aaronjheng ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aaronjheng ]; mainProgram = "dust"; }; } diff --git a/pkgs/by-name/go/go-jsonnet/package.nix b/pkgs/by-name/go/go-jsonnet/package.nix index 8e531e01a1d2..9e00f8d68cf1 100644 --- a/pkgs/by-name/go/go-jsonnet/package.nix +++ b/pkgs/by-name/go/go-jsonnet/package.nix @@ -26,11 +26,11 @@ buildGoModule rec { version = "v${version}"; }; - meta = with lib; { + meta = { description = "Implementation of Jsonnet in pure Go"; homepage = "https://github.com/google/go-jsonnet"; - license = licenses.asl20; - maintainers = with maintainers; [ + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ nshalman aaronjheng ]; diff --git a/pkgs/by-name/go/gojq/package.nix b/pkgs/by-name/go/gojq/package.nix index d8a141376038..bc2f9dea992c 100644 --- a/pkgs/by-name/go/gojq/package.nix +++ b/pkgs/by-name/go/gojq/package.nix @@ -28,12 +28,12 @@ buildGoModule rec { package = gojq; }; - meta = with lib; { + meta = { description = "Pure Go implementation of jq"; homepage = "https://github.com/itchyny/gojq"; changelog = "https://github.com/itchyny/gojq/blob/v${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ aaronjheng ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aaronjheng ]; mainProgram = "gojq"; }; } diff --git a/pkgs/by-name/ki/kitex/package.nix b/pkgs/by-name/ki/kitex/package.nix index 4356ce535562..6a113f61a8d4 100644 --- a/pkgs/by-name/ki/kitex/package.nix +++ b/pkgs/by-name/ki/kitex/package.nix @@ -36,11 +36,11 @@ buildGoModule rec { version = "v${version}"; }; - meta = with lib; { + meta = { description = "A high-performance and strong-extensibility Golang RPC framework"; homepage = "https://github.com/cloudwego/kitex"; - license = licenses.asl20; - maintainers = with maintainers; [ aaronjheng ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aaronjheng ]; mainProgram = "kitex"; }; } diff --git a/pkgs/by-name/me/mesos-dns/package.nix b/pkgs/by-name/me/mesos-dns/package.nix index 080a00d41acf..6286ca4f11bc 100644 --- a/pkgs/by-name/me/mesos-dns/package.nix +++ b/pkgs/by-name/me/mesos-dns/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://m3scluster.github.io/mesos-dns/"; changelog = "https://github.com/m3scluster/mesos-dns/releases/tag/v${version}"; description = "DNS-based service discovery for Mesos"; - license = licenses.asl20; - maintainers = with maintainers; [ aaronjheng ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aaronjheng ]; mainProgram = "mesos-dns"; }; } diff --git a/pkgs/by-name/no/notation/package.nix b/pkgs/by-name/no/notation/package.nix index 70f50ef4eb0e..03bee6393442 100644 --- a/pkgs/by-name/no/notation/package.nix +++ b/pkgs/by-name/no/notation/package.nix @@ -46,11 +46,11 @@ buildGoModule rec { command = "notation version"; }; - meta = with lib; { + meta = { description = "CLI tool to sign and verify OCI artifacts and container images"; homepage = "https://notaryproject.dev/"; - license = licenses.asl20; - maintainers = with maintainers; [ aaronjheng ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aaronjheng ]; mainProgram = "notation"; }; } diff --git a/pkgs/by-name/pb/pb/package.nix b/pkgs/by-name/pb/pb/package.nix index 2290e728b450..d765030fae8b 100644 --- a/pkgs/by-name/pb/pb/package.nix +++ b/pkgs/by-name/pb/pb/package.nix @@ -32,12 +32,12 @@ buildGoModule rec { command = "pb version"; }; - meta = with lib; { + meta = { homepage = "https://github.com/parseablehq/pb"; changelog = "https://github.com/parseablehq/pb/releases/tag/v${version}"; description = "CLI client for Parseable server"; - license = licenses.agpl3Plus; - maintainers = with maintainers; [ aaronjheng ]; + license = lib.licenses.agpl3Plus; + maintainers = with lib.maintainers; [ aaronjheng ]; mainProgram = "pb"; }; } diff --git a/pkgs/by-name/po/podman-tui/package.nix b/pkgs/by-name/po/podman-tui/package.nix index 1725bc29dd46..cba37b04c3be 100644 --- a/pkgs/by-name/po/podman-tui/package.nix +++ b/pkgs/by-name/po/podman-tui/package.nix @@ -41,11 +41,11 @@ buildGoModule rec { version = "v${version}"; }; - meta = with lib; { + meta = { homepage = "https://github.com/containers/podman-tui"; description = "Podman Terminal UI"; - license = licenses.asl20; - maintainers = with maintainers; [ aaronjheng ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aaronjheng ]; mainProgram = "podman-tui"; }; } diff --git a/pkgs/by-name/pr/protoscope/package.nix b/pkgs/by-name/pr/protoscope/package.nix index 28e3176a1c78..68dee6d5f4c7 100644 --- a/pkgs/by-name/pr/protoscope/package.nix +++ b/pkgs/by-name/pr/protoscope/package.nix @@ -22,11 +22,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { description = "Simple, human-editable language for representing and emitting the Protobuf wire format"; mainProgram = "protoscope"; homepage = "https://github.com/protocolbuffers/protoscope"; - license = licenses.asl20; - maintainers = with maintainers; [ aaronjheng ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aaronjheng ]; }; } diff --git a/pkgs/by-name/sp/spirit/package.nix b/pkgs/by-name/sp/spirit/package.nix index 2d251ea39e6e..cbdeae8968d2 100644 --- a/pkgs/by-name/sp/spirit/package.nix +++ b/pkgs/by-name/sp/spirit/package.nix @@ -24,11 +24,11 @@ buildGoModule rec { "-w" ]; - meta = with lib; { + meta = { homepage = "https://github.com/cashapp/spirit"; description = "Online schema change tool for MySQL"; - license = licenses.asl20; - maintainers = with maintainers; [ aaronjheng ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ aaronjheng ]; mainProgram = "spirit"; }; } diff --git a/pkgs/development/tools/mysql-shell/8.nix b/pkgs/development/tools/mysql-shell/8.nix index 702c88de4db1..0e7201106f82 100644 --- a/pkgs/development/tools/mysql-shell/8.nix +++ b/pkgs/development/tools/mysql-shell/8.nix @@ -139,11 +139,11 @@ stdenv.mkDerivation (finalAttrs: { wrapProgram $out/bin/mysqlsh --set PYTHONPATH "${lib.makeSearchPath python3.sitePackages pythonDeps}" ''; - meta = with lib; { + meta = { homepage = "https://dev.mysql.com/doc/mysql-shell/${lib.versions.majorMinor finalAttrs.version}/en/"; description = "New command line scriptable shell for MySQL"; - license = licenses.gpl2; - maintainers = with maintainers; [ aaronjheng ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ aaronjheng ]; mainProgram = "mysqlsh"; }; }) diff --git a/pkgs/development/tools/mysql-shell/innovation.nix b/pkgs/development/tools/mysql-shell/innovation.nix index 75bd98d9681a..5cde99a9a2c4 100644 --- a/pkgs/development/tools/mysql-shell/innovation.nix +++ b/pkgs/development/tools/mysql-shell/innovation.nix @@ -139,11 +139,11 @@ stdenv.mkDerivation (finalAttrs: { wrapProgram $out/bin/mysqlsh --set PYTHONPATH "${lib.makeSearchPath python3.sitePackages pythonDeps}" ''; - meta = with lib; { + meta = { homepage = "https://dev.mysql.com/doc/mysql-shell/${lib.versions.majorMinor finalAttrs.version}/en/"; description = "New command line scriptable shell for MySQL"; - license = licenses.gpl2; - maintainers = with maintainers; [ aaronjheng ]; + license = lib.licenses.gpl2; + maintainers = with lib.maintainers; [ aaronjheng ]; mainProgram = "mysqlsh"; }; })