mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 17:14:00 +00:00
abctl: init at 0.13.1 (#337569)
This commit is contained in:
commit
55bcf5fcac
@ -22845,6 +22845,12 @@
|
|||||||
githubId = 36407913;
|
githubId = 36407913;
|
||||||
name = "Uli Baum";
|
name = "Uli Baum";
|
||||||
};
|
};
|
||||||
|
xelden = {
|
||||||
|
email = "anpiz@protonmail.com";
|
||||||
|
github = "Xelden";
|
||||||
|
githubId = 117323435;
|
||||||
|
name = "Andrés Pico";
|
||||||
|
};
|
||||||
xfnw = {
|
xfnw = {
|
||||||
email = "xfnw+nixos@riseup.net";
|
email = "xfnw+nixos@riseup.net";
|
||||||
github = "xfnw";
|
github = "xfnw";
|
||||||
|
32
pkgs/by-name/ab/abctl/package.nix
Normal file
32
pkgs/by-name/ab/abctl/package.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user