45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  lib,
 | 
						|
  stdenv,
 | 
						|
  buildGoModule,
 | 
						|
  fetchFromGitHub,
 | 
						|
  installShellFiles,
 | 
						|
  buildPackages,
 | 
						|
}:
 | 
						|
 | 
						|
buildGoModule rec {
 | 
						|
  pname = "spacectl";
 | 
						|
  version = "1.9.0";
 | 
						|
 | 
						|
  src = fetchFromGitHub {
 | 
						|
    owner = "spacelift-io";
 | 
						|
    repo = "spacectl";
 | 
						|
    rev = "v${version}";
 | 
						|
    hash = "sha256-24aw5ooN6ru9p+/21M64VlZdzcep0S76XA27wtZ0xyA=";
 | 
						|
  };
 | 
						|
 | 
						|
  vendorHash = "sha256-VfhbwbKQOmXzLjS/O8BDdYHtZT2kBuxRcAPpHMlenUc=";
 | 
						|
 | 
						|
  nativeBuildInputs = [ installShellFiles ];
 | 
						|
 | 
						|
  postInstall =
 | 
						|
    let
 | 
						|
      emulator = stdenv.hostPlatform.emulator buildPackages;
 | 
						|
    in
 | 
						|
    ''
 | 
						|
      installShellCompletion --cmd spacectl \
 | 
						|
        --bash <(${emulator} $out/bin/spacectl completion bash) \
 | 
						|
        --fish <(${emulator} $out/bin/spacectl completion fish) \
 | 
						|
        --zsh <(${emulator} $out/bin/spacectl completion zsh) \
 | 
						|
    '';
 | 
						|
 | 
						|
  meta = {
 | 
						|
    homepage = "https://github.com/spacelift-io/spacectl";
 | 
						|
    description = "Spacelift client and CLI";
 | 
						|
    changelog = "https://github.com/spacelift-io/spacectl/releases/tag/v${version}";
 | 
						|
    license = lib.licenses.mit;
 | 
						|
    maintainers = with lib.maintainers; [ kashw2 ];
 | 
						|
    mainProgram = "spacectl";
 | 
						|
  };
 | 
						|
}
 |