nixpkgs/pkgs/tools/backup/bupstash/default.nix

34 lines
882 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, installShellFiles, rustPlatform, ronn, pkg-config, libsodium }:
2021-01-07 04:03:42 +00:00
rustPlatform.buildRustPackage rec {
pname = "bupstash";
2021-03-04 13:13:42 +00:00
version = "0.7.0";
2021-01-07 04:03:42 +00:00
src = fetchFromGitHub {
owner = "andrewchambers";
repo = pname;
rev = "v${version}";
2021-03-04 13:13:42 +00:00
sha256 = "sha256-4+Ra7rNvIL4SpdCkRbPBNrZeTb1dMbuwZx+D++1qsGs=";
2021-01-07 04:03:42 +00:00
};
2021-03-04 13:13:42 +00:00
cargoSha256 = "sha256-cZSscmH3XPfH141hZhew79/UZHsqDZRN3EoNnYkW0wA=";
2021-01-07 04:03:42 +00:00
nativeBuildInputs = [ ronn pkg-config installShellFiles ];
buildInputs = [ libsodium ];
postBuild = ''
RUBYOPT="-KU -E utf-8:utf-8" ronn doc/man/*.md
'';
postInstall = ''
installManPage doc/man/*.[1-9]
'';
2021-01-15 09:19:50 +00:00
meta = with lib; {
2021-01-07 04:03:42 +00:00
description = "Easy and efficient encrypted backups";
homepage = "https://bupstash.io";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ andrewchambers ];
};
}