treewide: no 'with lib' (#366969)

authored by Thiago Kenji Okada and committed by GitHub 327580e1 ac5066c5

+52 -52
+3 -3
pkgs/by-name/am/amqpcat/package.nix
··· 30 30 package = amqpcat; 31 31 }; 32 32 33 - meta = with lib; { 33 + meta = { 34 34 description = "CLI tool for publishing to and consuming from AMQP servers"; 35 35 mainProgram = "amqpcat"; 36 36 homepage = "https://github.com/cloudamqp/amqpcat"; 37 - license = licenses.mit; 38 - maintainers = with maintainers; [ aaronjheng ]; 37 + license = lib.licenses.mit; 38 + maintainers = with lib.maintainers; [ aaronjheng ]; 39 39 }; 40 40 }
+3 -3
pkgs/by-name/at/atlas/package.nix
··· 46 46 version = "v${version}"; 47 47 }; 48 48 49 - meta = with lib; { 49 + meta = { 50 50 description = "Modern tool for managing database schemas"; 51 51 homepage = "https://atlasgo.io/"; 52 52 changelog = "https://github.com/ariga/atlas/releases/tag/v${version}"; 53 - license = licenses.asl20; 54 - maintainers = with maintainers; [ aaronjheng ]; 53 + license = lib.licenses.asl20; 54 + maintainers = with lib.maintainers; [ aaronjheng ]; 55 55 mainProgram = "atlas"; 56 56 }; 57 57 }
+3 -3
pkgs/by-name/bi/bingo/package.nix
··· 21 21 22 22 ldflags = [ "-s" "-w" ]; 23 23 24 - meta = with lib; { 24 + meta = { 25 25 description = "Like `go get` but for Go tools! CI Automating versioning of Go binaries in a nested, isolated Go modules"; 26 26 mainProgram = "bingo"; 27 27 homepage = "https://github.com/bwplotka/bingo"; 28 - license = licenses.asl20; 29 - maintainers = with maintainers; [ aaronjheng ]; 28 + license = lib.licenses.asl20; 29 + maintainers = with lib.maintainers; [ aaronjheng ]; 30 30 }; 31 31 }
+3 -3
pkgs/by-name/bu/bufisk/package.nix
··· 22 22 "-w" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 homepage = "https://github.com/bufbuild/bufisk"; 27 27 description = "User-friendly launcher for Buf"; 28 - license = licenses.asl20; 29 - maintainers = with maintainers; [ aaronjheng ]; 28 + license = lib.licenses.asl20; 29 + maintainers = with lib.maintainers; [ aaronjheng ]; 30 30 mainProgram = "bufisk"; 31 31 }; 32 32 }
+4 -4
pkgs/by-name/ds/dsp/package.nix
··· 53 53 libpulseaudio 54 54 ]; 55 55 56 - meta = with lib; { 56 + meta = { 57 57 homepage = "https://github.com/bmc0/dsp"; 58 58 description = "Audio processing program with an interactive mode"; 59 - license = licenses.isc; 60 - maintainers = with maintainers; [ aaronjheng ]; 61 - platforms = platforms.linux; 59 + license = lib.licenses.isc; 60 + maintainers = with lib.maintainers; [ aaronjheng ]; 61 + platforms = lib.platforms.linux; 62 62 mainProgram = "dsp"; 63 63 }; 64 64 })
+3 -3
pkgs/by-name/du/dust/package.nix
··· 39 39 installShellCompletion completions/dust.{bash,fish} --zsh completions/_dust 40 40 ''; 41 41 42 - meta = with lib; { 42 + meta = { 43 43 description = "du + rust = dust. Like du but more intuitive"; 44 44 homepage = "https://github.com/bootandy/dust"; 45 - license = licenses.asl20; 46 - maintainers = with maintainers; [ aaronjheng ]; 45 + license = lib.licenses.asl20; 46 + maintainers = with lib.maintainers; [ aaronjheng ]; 47 47 mainProgram = "dust"; 48 48 }; 49 49 }
+3 -3
pkgs/by-name/go/go-jsonnet/package.nix
··· 26 26 version = "v${version}"; 27 27 }; 28 28 29 - meta = with lib; { 29 + meta = { 30 30 description = "Implementation of Jsonnet in pure Go"; 31 31 homepage = "https://github.com/google/go-jsonnet"; 32 - license = licenses.asl20; 33 - maintainers = with maintainers; [ 32 + license = lib.licenses.asl20; 33 + maintainers = with lib.maintainers; [ 34 34 nshalman 35 35 aaronjheng 36 36 ];
+3 -3
pkgs/by-name/go/gojq/package.nix
··· 28 28 package = gojq; 29 29 }; 30 30 31 - meta = with lib; { 31 + meta = { 32 32 description = "Pure Go implementation of jq"; 33 33 homepage = "https://github.com/itchyny/gojq"; 34 34 changelog = "https://github.com/itchyny/gojq/blob/v${version}/CHANGELOG.md"; 35 - license = licenses.mit; 36 - maintainers = with maintainers; [ aaronjheng ]; 35 + license = lib.licenses.mit; 36 + maintainers = with lib.maintainers; [ aaronjheng ]; 37 37 mainProgram = "gojq"; 38 38 }; 39 39 }
+3 -3
pkgs/by-name/ki/kitex/package.nix
··· 36 36 version = "v${version}"; 37 37 }; 38 38 39 - meta = with lib; { 39 + meta = { 40 40 description = "A high-performance and strong-extensibility Golang RPC framework"; 41 41 homepage = "https://github.com/cloudwego/kitex"; 42 - license = licenses.asl20; 43 - maintainers = with maintainers; [ aaronjheng ]; 42 + license = lib.licenses.asl20; 43 + maintainers = with lib.maintainers; [ aaronjheng ]; 44 44 mainProgram = "kitex"; 45 45 }; 46 46 }
+3 -3
pkgs/by-name/me/mesos-dns/package.nix
··· 24 24 "-w" 25 25 ]; 26 26 27 - meta = with lib; { 27 + meta = { 28 28 homepage = "https://m3scluster.github.io/mesos-dns/"; 29 29 changelog = "https://github.com/m3scluster/mesos-dns/releases/tag/v${version}"; 30 30 description = "DNS-based service discovery for Mesos"; 31 - license = licenses.asl20; 32 - maintainers = with maintainers; [ aaronjheng ]; 31 + license = lib.licenses.asl20; 32 + maintainers = with lib.maintainers; [ aaronjheng ]; 33 33 mainProgram = "mesos-dns"; 34 34 }; 35 35 }
+3 -3
pkgs/by-name/no/notation/package.nix
··· 46 46 command = "notation version"; 47 47 }; 48 48 49 - meta = with lib; { 49 + meta = { 50 50 description = "CLI tool to sign and verify OCI artifacts and container images"; 51 51 homepage = "https://notaryproject.dev/"; 52 - license = licenses.asl20; 53 - maintainers = with maintainers; [ aaronjheng ]; 52 + license = lib.licenses.asl20; 53 + maintainers = with lib.maintainers; [ aaronjheng ]; 54 54 mainProgram = "notation"; 55 55 }; 56 56 }
+3 -3
pkgs/by-name/pb/pb/package.nix
··· 32 32 command = "pb version"; 33 33 }; 34 34 35 - meta = with lib; { 35 + meta = { 36 36 homepage = "https://github.com/parseablehq/pb"; 37 37 changelog = "https://github.com/parseablehq/pb/releases/tag/v${version}"; 38 38 description = "CLI client for Parseable server"; 39 - license = licenses.agpl3Plus; 40 - maintainers = with maintainers; [ aaronjheng ]; 39 + license = lib.licenses.agpl3Plus; 40 + maintainers = with lib.maintainers; [ aaronjheng ]; 41 41 mainProgram = "pb"; 42 42 }; 43 43 }
+3 -3
pkgs/by-name/po/podman-tui/package.nix
··· 41 41 version = "v${version}"; 42 42 }; 43 43 44 - meta = with lib; { 44 + meta = { 45 45 homepage = "https://github.com/containers/podman-tui"; 46 46 description = "Podman Terminal UI"; 47 - license = licenses.asl20; 48 - maintainers = with maintainers; [ aaronjheng ]; 47 + license = lib.licenses.asl20; 48 + maintainers = with lib.maintainers; [ aaronjheng ]; 49 49 mainProgram = "podman-tui"; 50 50 }; 51 51 }
+3 -3
pkgs/by-name/pr/protoscope/package.nix
··· 22 22 "-w" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "Simple, human-editable language for representing and emitting the Protobuf wire format"; 27 27 mainProgram = "protoscope"; 28 28 homepage = "https://github.com/protocolbuffers/protoscope"; 29 - license = licenses.asl20; 30 - maintainers = with maintainers; [ aaronjheng ]; 29 + license = lib.licenses.asl20; 30 + maintainers = with lib.maintainers; [ aaronjheng ]; 31 31 }; 32 32 }
+3 -3
pkgs/by-name/sp/spirit/package.nix
··· 24 24 "-w" 25 25 ]; 26 26 27 - meta = with lib; { 27 + meta = { 28 28 homepage = "https://github.com/cashapp/spirit"; 29 29 description = "Online schema change tool for MySQL"; 30 - license = licenses.asl20; 31 - maintainers = with maintainers; [ aaronjheng ]; 30 + license = lib.licenses.asl20; 31 + maintainers = with lib.maintainers; [ aaronjheng ]; 32 32 mainProgram = "spirit"; 33 33 }; 34 34 }
+3 -3
pkgs/development/tools/mysql-shell/8.nix
··· 139 139 wrapProgram $out/bin/mysqlsh --set PYTHONPATH "${lib.makeSearchPath python3.sitePackages pythonDeps}" 140 140 ''; 141 141 142 - meta = with lib; { 142 + meta = { 143 143 homepage = "https://dev.mysql.com/doc/mysql-shell/${lib.versions.majorMinor finalAttrs.version}/en/"; 144 144 description = "New command line scriptable shell for MySQL"; 145 - license = licenses.gpl2; 146 - maintainers = with maintainers; [ aaronjheng ]; 145 + license = lib.licenses.gpl2; 146 + maintainers = with lib.maintainers; [ aaronjheng ]; 147 147 mainProgram = "mysqlsh"; 148 148 }; 149 149 })
+3 -3
pkgs/development/tools/mysql-shell/innovation.nix
··· 139 139 wrapProgram $out/bin/mysqlsh --set PYTHONPATH "${lib.makeSearchPath python3.sitePackages pythonDeps}" 140 140 ''; 141 141 142 - meta = with lib; { 142 + meta = { 143 143 homepage = "https://dev.mysql.com/doc/mysql-shell/${lib.versions.majorMinor finalAttrs.version}/en/"; 144 144 description = "New command line scriptable shell for MySQL"; 145 - license = licenses.gpl2; 146 - maintainers = with maintainers; [ aaronjheng ]; 145 + license = lib.licenses.gpl2; 146 + maintainers = with lib.maintainers; [ aaronjheng ]; 147 147 mainProgram = "mysqlsh"; 148 148 }; 149 149 })