nixpkgs/pkgs/tools/backup/rustic-rs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1.1 KiB
Nix
Raw Normal View History

2022-11-23 15:06:11 +00:00
{ lib, fetchFromGitHub, rustPlatform, stdenv, Security, installShellFiles }:
2022-11-14 06:39:25 +00:00
rustPlatform.buildRustPackage rec {
pname = "rustic-rs";
2022-12-04 15:09:27 +00:00
version = "0.4.1";
2022-11-14 06:39:25 +00:00
src = fetchFromGitHub {
owner = "rustic-rs";
repo = "rustic";
rev = "v${version}";
2022-12-04 15:09:27 +00:00
hash = "sha256-/G79BBSXFe/BqgoE76anXY/kWagSVIhEmdfzI+AE1Ok=";
2022-11-14 06:39:25 +00:00
};
2022-12-04 15:09:27 +00:00
cargoHash = "sha256-TQqp+DSJoBvMgysRmmqyYq80dM+9M0mFkAl4bhTZfNk=";
2022-11-14 06:39:25 +00:00
nativeBuildInputs = [ installShellFiles ];
2022-11-23 15:06:11 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
2022-11-14 06:39:25 +00:00
postInstall = ''
for shell in {ba,fi,z}sh; do
$out/bin/rustic completions $shell > rustic.$shell
done
installShellCompletion rustic.{ba,fi,z}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";
2022-11-23 15:06:11 +00:00
mainProgram = "rustic";
2022-11-14 06:39:25 +00:00
platforms = lib.platforms.linux ++ lib.platforms.darwin;
license = [ lib.licenses.mit lib.licenses.asl20 ];
maintainers = [ lib.maintainers.nobbz ];
};
}