c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
32 lines
908 B
Nix
32 lines
908 B
Nix
{ lib, fetchFromGitHub, installShellFiles, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "autorestic";
|
|
version = "1.7.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cupcakearmy";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Uewr9WP+HtVdWnH26+zoQjTuzE7TyNR9WlYvK2kRHaU=";
|
|
};
|
|
|
|
vendorHash = "sha256-K3+5DRXcx56sJ4XHikVtmoxmpJbBeAgPkN9KtHVgvYA=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd autorestic \
|
|
--bash <($out/bin/autorestic completion bash) \
|
|
--fish <($out/bin/autorestic completion fish) \
|
|
--zsh <($out/bin/autorestic completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "High level CLI utility for restic";
|
|
homepage = "https://github.com/cupcakearmy/autorestic";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ renesat ];
|
|
mainProgram = "autorestic";
|
|
};
|
|
}
|