Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
28 lines
675 B
Nix
28 lines
675 B
Nix
{ 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=";
|
|
};
|
|
|
|
patches = [
|
|
./bump-golang-x-sys.patch
|
|
];
|
|
|
|
deleteVendor = true;
|
|
vendorHash = "sha256-AJyxCE4DdAXRS+2sY4Zzu8NTEFKJoV1bopfOqOFKZfI=";
|
|
|
|
meta = with lib; {
|
|
description = "Merge YAML/JSON files in a in a convenient fashion";
|
|
mainProgram = "aviator";
|
|
homepage = "https://github.com/herrjulz/aviator";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ risson ];
|
|
};
|
|
}
|