587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
32 lines
907 B
Nix
32 lines
907 B
Nix
{ lib, fetchFromGitHub, installShellFiles, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "autorestic";
|
|
version = "1.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cupcakearmy";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-g7P/q29LMZEibEP6Pmve2WwuxdmSpdqQpwG6/RPDMAM=";
|
|
};
|
|
|
|
vendorHash = "sha256-1ya1h/v5uEVoZpPVugxXQC3FCH5GKPhcHIDm8rSY9OU=";
|
|
|
|
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";
|
|
};
|
|
}
|