2020-02-22 09:07:19 +01:00
|
|
|
{ stdenv, lib, buildGoPackage, fetchFromGitHub, nixosTests}:
|
2017-03-15 23:44:09 +01:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "restic";
|
2019-12-17 18:38:08 +01:00
|
|
|
version = "0.9.6";
|
2017-03-15 23:44:09 +01:00
|
|
|
|
|
|
|
goPackagePath = "github.com/restic/restic";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "restic";
|
|
|
|
repo = "restic";
|
|
|
|
rev = "v${version}";
|
2019-12-17 18:38:08 +01:00
|
|
|
sha256 = "0lydll93n1lcn1fl669b9cikmzz9d6vfpc8ky3ng5fi8kj3v1dz7";
|
2017-03-15 23:44:09 +01:00
|
|
|
};
|
|
|
|
|
2020-02-07 11:39:18 +01:00
|
|
|
passthru.tests.restic = nixosTests.restic;
|
|
|
|
|
2020-02-22 09:07:19 +01:00
|
|
|
# Use a custom install phase here as by default the
|
|
|
|
# build-release-binaries and prepare-releases binaries are
|
|
|
|
# installed.
|
2017-03-15 23:44:09 +01:00
|
|
|
installPhase = ''
|
2020-02-22 09:07:19 +01:00
|
|
|
mkdir -p "$bin/bin"
|
|
|
|
cp go/bin/restic "$bin/bin"
|
|
|
|
'' + lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
2018-02-15 09:11:06 +01:00
|
|
|
mkdir -p \
|
|
|
|
$bin/etc/bash_completion.d \
|
|
|
|
$bin/share/zsh/vendor-completions \
|
|
|
|
$bin/share/man/man1
|
|
|
|
$bin/bin/restic generate \
|
|
|
|
--bash-completion $bin/etc/bash_completion.d/restic.sh \
|
2018-09-05 03:36:56 +02:00
|
|
|
--zsh-completion $bin/share/zsh/vendor-completions/_restic \
|
2018-02-15 09:11:06 +01:00
|
|
|
--man $bin/share/man/man1
|
2017-03-15 23:44:09 +01:00
|
|
|
'';
|
|
|
|
|
2018-05-21 22:15:33 +02:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://restic.net";
|
2017-03-15 23:44:09 +01:00
|
|
|
description = "A backup program that is fast, efficient and secure";
|
2017-08-03 16:37:04 +02:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2017-03-15 23:44:09 +01:00
|
|
|
license = licenses.bsd2;
|
2017-05-29 23:53:49 +02:00
|
|
|
maintainers = [ maintainers.mbrgm ];
|
2017-03-15 23:44:09 +01:00
|
|
|
};
|
|
|
|
}
|