2020-04-26 09:34:20 +01:00
|
|
|
{ stdenv, lib, buildGoPackage, fetchFromGitHub, installShellFiles, nixosTests}:
|
2017-03-15 22:44:09 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "restic";
|
2019-12-17 17:38:08 +00:00
|
|
|
version = "0.9.6";
|
2017-03-15 22:44:09 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/restic/restic";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "restic";
|
|
|
|
repo = "restic";
|
|
|
|
rev = "v${version}";
|
2019-12-17 17:38:08 +00:00
|
|
|
sha256 = "0lydll93n1lcn1fl669b9cikmzz9d6vfpc8ky3ng5fi8kj3v1dz7";
|
2017-03-15 22:44:09 +00:00
|
|
|
};
|
|
|
|
|
2020-04-26 09:34:20 +01:00
|
|
|
subPackages = [ "cmd/restic" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2020-02-07 10:39:18 +00:00
|
|
|
passthru.tests.restic = nixosTests.restic;
|
|
|
|
|
2020-04-26 09:34:20 +01:00
|
|
|
postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
2020-04-28 02:50:57 +01:00
|
|
|
$out/bin/restic generate \
|
2020-04-26 09:34:20 +01:00
|
|
|
--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; {
|
2020-04-01 02:11:51 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|