restic: 0.8.3 -> 0.9.0

This commit is contained in:
Robert Schütz 2018-05-21 22:15:33 +02:00
parent e92d68e3ab
commit 3709e30d06

View File

@ -1,8 +1,8 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub }: { lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec { buildGoPackage rec {
name = "restic-${version}"; name = "restic-${version}";
version = "0.8.3"; version = "0.9.0";
goPackagePath = "github.com/restic/restic"; goPackagePath = "github.com/restic/restic";
@ -10,7 +10,7 @@ buildGoPackage rec {
owner = "restic"; owner = "restic";
repo = "restic"; repo = "restic";
rev = "v${version}"; rev = "v${version}";
sha256 = "0vbwbxly3p1wj25ai1xak1bmhibh2ilxl55gsbnaaq7pcznc3ad9"; sha256 = "09520ggr98w7nn6kl3yx0nrx4f79q4vhg4q1hiv2nlwxd0jz1p6y";
}; };
buildPhase = '' buildPhase = ''
@ -31,7 +31,7 @@ buildGoPackage rec {
--man $bin/share/man/man1 --man $bin/share/man/man1
''; '';
meta = with stdenv.lib; { meta = with lib; {
homepage = https://restic.net; homepage = https://restic.net;
description = "A backup program that is fast, efficient and secure"; description = "A backup program that is fast, efficient and secure";
platforms = platforms.linux ++ platforms.darwin; platforms = platforms.linux ++ platforms.darwin;