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

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