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

42 lines
1 KiB
Nix
Raw Normal View History

2017-03-15 22:44:09 +00:00
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "restic-${version}";
2018-02-27 06:43:47 +00:00
version = "0.8.3";
2017-03-15 22:44:09 +00:00
goPackagePath = "github.com/restic/restic";
src = fetchFromGitHub {
owner = "restic";
repo = "restic";
rev = "v${version}";
2018-02-27 06:43:47 +00:00
sha256 = "0vbwbxly3p1wj25ai1xak1bmhibh2ilxl55gsbnaaq7pcznc3ad9";
2017-03-15 22:44:09 +00:00
};
buildPhase = ''
cd go/src/${goPackagePath}
go run build.go
'';
installPhase = ''
mkdir -p \
$bin/bin \
$bin/etc/bash_completion.d \
$bin/share/zsh/vendor-completions \
$bin/share/man/man1
2017-03-15 22:44:09 +00:00
cp restic $bin/bin/
$bin/bin/restic generate \
--bash-completion $bin/etc/bash_completion.d/restic.sh \
--zsh-completion $bin/share/zsh/vendor-completions/restic.sh \
--man $bin/share/man/man1
2017-03-15 22:44:09 +00:00
'';
meta = with stdenv.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 14:37:04 +00:00
platforms = platforms.linux ++ platforms.darwin;
2017-03-15 22:44:09 +00:00
license = licenses.bsd2;
2017-05-29 21:53:49 +00:00
maintainers = [ maintainers.mbrgm ];
2017-03-15 22:44:09 +00:00
};
}