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

34 lines
885 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-04-22 06:54:59 +00:00
version = "0.9.0";
2021-01-07 04:03:42 +00:00
src = fetchFromGitHub {
owner = "andrewchambers";
repo = pname;
rev = "v${version}";
2021-04-22 06:54:59 +00:00
sha256 = "sha256-uA5XEG9nvqsXg34bqw8k4Rjk5F9bPFSk1HQ4Bv6Ar+I=";
2021-01-07 04:03:42 +00:00
};
2021-04-22 06:54:59 +00:00
cargoSha256 = "sha256-4r+Ioh6Waoy/7LVF3CPz18c2bCRYym5T4za1GSKw7WQ=";
2021-01-07 04:03:42 +00:00
nativeBuildInputs = [ ronn pkg-config installShellFiles ];
buildInputs = [ libsodium ];
postBuild = ''
2021-03-24 11:31:13 +00:00
RUBYOPT="-KU -E utf-8:utf-8" ronn -r doc/man/*.md
2021-01-07 04:03:42 +00:00
'';
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 ];
};
}