Merge pull request #111685 from humancalico/dotenv-linter

authored by

Sandro and committed by
GitHub
5c7a370a 9a15b4dd

+33
+6
maintainers/maintainer-list.nix
··· 3723 3723 fingerprint = "78C2 E81C 828A 420B 269A EBC1 49FA 39F8 A7F7 35F9"; 3724 3724 }]; 3725 3725 }; 3726 + humancalico = { 3727 + email = "humancalico@disroot.org"; 3728 + github = "humancalico"; 3729 + githubId = 51334444; 3730 + name = "Akshat Agarwal"; 3731 + }; 3726 3732 hodapp = { 3727 3733 email = "hodapp87@gmail.com"; 3728 3734 github = "Hodapp87";
+25
pkgs/development/tools/analysis/dotenv-linter/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "dotenv-linter"; 8 + version = "3.0.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "dotenv-linter"; 12 + repo = "dotenv-linter"; 13 + rev = "v${version}"; 14 + sha256 = "sha256-3Lj5GtWGyWDkZPhxYQu7UWzmh7TO5wk1UJ0lek1jTto="; 15 + }; 16 + 17 + cargoSha256 = "sha256-zdvIC+VUASjhrlyRts+JJeh5xdcdpX6Ixle6HhbMJJU="; 18 + 19 + meta = with lib; { 20 + description = "Lightning-fast linter for .env files. Written in Rust"; 21 + homepage = "https://dotenv-linter.github.io"; 22 + license = licenses.mit; 23 + maintainers = with maintainers; [ humancalico ]; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 2128 2128 2129 2129 dosage = callPackage ../applications/graphics/dosage { }; 2130 2130 2131 + dotenv-linter = callPackage ../development/tools/analysis/dotenv-linter { }; 2132 + 2131 2133 dot-merlin-reader = callPackage ../development/tools/ocaml/merlin/dot-merlin-reader.nix { }; 2132 2134 2133 2135 dozenal = callPackage ../applications/misc/dozenal { };