evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / av / aviator / package.nix
blob69b076834f7ed572fd20ae72df2b433921250c51
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "aviator";
5   version = "1.8.1";
7   src = fetchFromGitHub {
8     owner = "herrjulz";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-Oa4z8n+q7LKWMnwk+xj9UunzOa3ChaPBCTo828yYJGQ=";
12   };
14   patches = [
15     ./bump-golang-x-sys.patch
16   ];
18   deleteVendor = true;
19   vendorHash = "sha256-AJyxCE4DdAXRS+2sY4Zzu8NTEFKJoV1bopfOqOFKZfI=";
21   meta = with lib; {
22     description = "Merge YAML/JSON files in a in a convenient fashion";
23     mainProgram = "aviator";
24     homepage = "https://github.com/herrjulz/aviator";
25     license = licenses.mit;
26     maintainers = with maintainers; [ risson ];
27   };