aviator: init at 1.8.1

Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>

+25
+23
pkgs/development/tools/misc/aviator/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "aviator"; 5 + version = "1.8.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "herrjulz"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-Oa4z8n+q7LKWMnwk+xj9UunzOa3ChaPBCTo828yYJGQ="; 12 + }; 13 + 14 + deleteVendor = true; 15 + vendorSha256 = "sha256-rYOphvI1ZE8X5UExfgxHnWBn697SDkNnmxeY7ihIZ1s="; 16 + 17 + meta = with lib; { 18 + description = "Merge YAML/JSON files in a in a convenient fashion"; 19 + homepage = "https://github.com/herrjulz/aviator"; 20 + license = licenses.mit; 21 + maintainers = with maintainers; [ risson ]; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 13090 13090 13091 13091 automaticcomponenttoolkit = callPackage ../development/tools/misc/automaticcomponenttoolkit { }; 13092 13092 13093 + aviator = callPackage ../development/tools/misc/aviator { }; 13094 + 13093 13095 awf = callPackage ../development/tools/misc/awf { }; 13094 13096 13095 13097 aws-adfs = with python3Packages; toPythonApplication aws-adfs;