nixpkgs/pkgs/tools/backup/restic/default.nix
Marius Bergmann 8154f9ebd5 restic: update project website (#36408)
* restic: update project website

The project website has changed, so I updated it.

* restic: no trailing slash
2018-03-07 08:10:02 +00:00

42 lines
1 KiB
Nix

{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "restic-${version}";
version = "0.8.3";
goPackagePath = "github.com/restic/restic";
src = fetchFromGitHub {
owner = "restic";
repo = "restic";
rev = "v${version}";
sha256 = "0vbwbxly3p1wj25ai1xak1bmhibh2ilxl55gsbnaaq7pcznc3ad9";
};
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
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
'';
meta = with stdenv.lib; {
homepage = https://restic.net;
description = "A backup program that is fast, efficient and secure";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.bsd2;
maintainers = [ maintainers.mbrgm ];
};
}