c09ecd65bf
Temporarily removed zsh shell completions, as they don't generate due to a bug. https://github.com/rustic-rs/rustic/blob/v0.5.0/changelog/0.5.0.txt https://github.com/rustic-rs/rustic/releases/tag/v0.5.0 diff: https://github.com/rustic-rs/rustic/compare/v0.4.4...v0.5.0
40 lines
1.3 KiB
Nix
40 lines
1.3 KiB
Nix
{ lib, fetchFromGitHub, rustPlatform, stdenv, Security, installShellFiles }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rustic-rs";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rustic-rs";
|
|
repo = "rustic";
|
|
rev = "v${version}";
|
|
hash = "sha256-r4hOjX/LKv2wX720FMEztUo9rf2hDBLfcHtENSZNA3U=";
|
|
};
|
|
|
|
cargoHash = "sha256-sNxD8rDkfUw5aVhRYpYftpPMiWhiTYDdShlVZvx2BHk=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
## v0.5.0 panics when trying to generate zsh completions due to a bug.
|
|
## See https://github.com/rustic-rs/rustic/issues/533
|
|
## and https://github.com/rustic-rs/rustic/pull/536
|
|
postInstall = ''
|
|
for shell in {ba,fi}sh; do
|
|
$out/bin/rustic completions $shell > rustic.$shell
|
|
done
|
|
|
|
installShellCompletion rustic.{ba,fi}sh
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/rustic-rs/rustic";
|
|
changelog = "https://github.com/rustic-rs/rustic/blob/${src.rev}/changelog/${version}.txt";
|
|
description = "fast, encrypted, deduplicated backups powered by pure Rust";
|
|
mainProgram = "rustic";
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
license = [ lib.licenses.mit lib.licenses.asl20 ];
|
|
maintainers = [ lib.maintainers.nobbz ];
|
|
};
|
|
}
|