sizelint: init at 0.1.1 (#426100)

authored by lassulus and committed by GitHub c8410779 ed269f84

+28
+28
pkgs/by-name/si/sizelint/package.nix
···
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "sizelint"; 9 + version = "0.1.1"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "a-kenji"; 13 + repo = "sizelint"; 14 + tag = "v${version}"; 15 + hash = "sha256-bFOe8zrWzfIPzOn6NAHD5y943/v8cwCMzC2pTPEUi2Q="; 16 + }; 17 + 18 + useFetchCargoVendor = true; 19 + cargoHash = "sha256-h5NJXxiGe3TIFt2aa08XAxPB2rtuBva/6GEhajin4OE="; 20 + 21 + meta = { 22 + description = "Lint your file tree based on file sizes"; 23 + homepage = "https://github.com/a-kenji/sizelint"; 24 + license = lib.licenses.mit; 25 + maintainers = with lib.maintainers; [ a-kenji ]; 26 + mainProgram = "sizelint"; 27 + }; 28 + }