diff options
| author | Ihar Hrachyshka <ihar.hrachyshka@gmail.com> | 2025-12-10 17:44:00 +0100 |
|---|---|---|
| committer | Wolfgang Walther <walther@technowledgy.de> | 2025-12-10 18:09:49 +0100 |
| commit | 567e8dfd8eddc5468e6380fc563ab8a27422ab1d (patch) | |
| tree | 45e3f2c93ca5f9eb36a27cf219ae114638af0fd4 /pkgs/by-name/he/hermitcli/package.nix | |
| parent | nixos/scrutiny: conform to shellcheck (#469204) (diff) | |
| download | nixpkgs-567e8dfd8eddc5468e6380fc563ab8a27422ab1d.tar.gz | |
treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.
Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
Diffstat (limited to 'pkgs/by-name/he/hermitcli/package.nix')
| -rw-r--r-- | pkgs/by-name/he/hermitcli/package.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/by-name/he/hermitcli/package.nix b/pkgs/by-name/he/hermitcli/package.nix index fbe73c99450a..20124ae210ca 100644 --- a/pkgs/by-name/he/hermitcli/package.nix +++ b/pkgs/by-name/he/hermitcli/package.nix @@ -24,12 +24,12 @@ buildGoModule rec { "-X main.channel=stable" ]; - meta = with lib; { + meta = { homepage = "https://cashapp.github.io/hermit"; description = "Manages isolated, self-bootstrapping sets of tools in software projects"; - license = licenses.asl20; - maintainers = with maintainers; [ cbrewster ]; - platforms = platforms.unix; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ cbrewster ]; + platforms = lib.platforms.unix; mainProgram = "hermit"; }; } |
