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

46 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles, makeWrapper
2020-07-05 21:25:06 +01:00
, nixosTests, rclone }:
2017-03-15 22:44:09 +00:00
buildGoModule rec {
pname = "restic";
2020-11-08 05:57:56 +00:00
version = "0.11.0";
2017-03-15 22:44:09 +00:00
src = fetchFromGitHub {
owner = "restic";
repo = "restic";
rev = "v${version}";
2020-11-08 05:57:56 +00:00
sha256 = "13zmx9wzv29z0np3agx4rsz1j9pgrvlnngjsb971i1dnzwv5l3hf";
2017-03-15 22:44:09 +00:00
};
2020-11-08 05:57:56 +00:00
vendorSha256 = "09sa5jpdj73w595c063mib14132zacswh54nmjqp2n440cflmwjh";
subPackages = [ "cmd/restic" ];
2020-07-05 21:25:06 +01:00
nativeBuildInputs = [ installShellFiles makeWrapper ];
2020-02-07 10:39:18 +00:00
passthru.tests.restic = nixosTests.restic;
postPatch = ''
rm cmd/restic/integration_fuse_test.go
'';
2020-07-05 21:25:06 +01:00
postInstall = ''
wrapProgram $out/bin/restic --prefix PATH : '${rclone}/bin'
'' + lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
$out/bin/restic generate \
--bash-completion restic.bash \
--zsh-completion restic.zsh \
--man .
installShellCompletion restic.{bash,zsh}
installManPage *.1
2017-03-15 22:44:09 +00:00
'';
2018-05-21 21:15:33 +01:00
meta = with lib; {
homepage = "https://restic.net";
2017-03-15 22:44:09 +00:00
description = "A backup program that is fast, efficient and secure";
2017-08-03 15:37:04 +01:00
platforms = platforms.linux ++ platforms.darwin;
2017-03-15 22:44:09 +00:00
license = licenses.bsd2;
2017-05-29 22:53:49 +01:00
maintainers = [ maintainers.mbrgm ];
2017-03-15 22:44:09 +00:00
};
}