Merge pull request #131904 from rissson/aviator

aviator: init at 1.8.1
This commit is contained in:
Sandro 2021-07-29 11:20:07 +00:00 committed by GitHub
commit 5e016bba67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "aviator";
version = "1.8.1";
src = fetchFromGitHub {
owner = "herrjulz";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Oa4z8n+q7LKWMnwk+xj9UunzOa3ChaPBCTo828yYJGQ=";
};
deleteVendor = true;
vendorSha256 = "sha256-rYOphvI1ZE8X5UExfgxHnWBn697SDkNnmxeY7ihIZ1s=";
meta = with lib; {
description = "Merge YAML/JSON files in a in a convenient fashion";
homepage = "https://github.com/herrjulz/aviator";
license = licenses.mit;
maintainers = with maintainers; [ risson ];
};
}

View file

@ -13093,6 +13093,8 @@ in
automaticcomponenttoolkit = callPackage ../development/tools/misc/automaticcomponenttoolkit { };
aviator = callPackage ../development/tools/misc/aviator { };
awf = callPackage ../development/tools/misc/awf { };
aws-adfs = with python3Packages; toPythonApplication aws-adfs;