abctl: init at 0.13.1 (#337569)

This commit is contained in:
Peder Bergebakken Sundt 2024-09-17 00:10:39 +02:00 committed by GitHub
commit 55bcf5fcac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 38 additions and 0 deletions

View File

@ -22845,6 +22845,12 @@
githubId = 36407913;
name = "Uli Baum";
};
xelden = {
email = "anpiz@protonmail.com";
github = "Xelden";
githubId = 117323435;
name = "Andrés Pico";
};
xfnw = {
email = "xfnw+nixos@riseup.net";
github = "xfnw";

View File

@ -0,0 +1,32 @@
{
lib,
buildGoModule,
fetchFromGitHub,
stdenv,
}:
let
pname = "abctl";
version = "0.13.1";
in
buildGoModule {
inherit pname version;
src = fetchFromGitHub {
owner = "airbytehq";
repo = pname;
rev = "v${version}";
hash = "sha256-ZZP5wXsPtqkZd/sdj/LU8M/DYv0gjIWRspAFrp3ETH8=";
};
vendorHash = "sha256-uvOKH/MLIoIwYClpTIj010os9dGkkZPAVV0RYBjjzVk=";
meta = {
description = "Airbyte's CLI for managing local Airbyte installations";
homepage = "https://airbyte.com/";
changelog = "https://github.com/airbytehq/abctl/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ xelden ];
mainProgram = "abctl";
broken = stdenv.isDarwin;
};
}