about summary refs log tree commit diff
path: root/pkgs/by-name/ab/abctl/package.nix
blob: 226587b0b0056208cd5aa1afa57fd4089a0fa373 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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;
  };
}