summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2018-05-22 00:05:41 +0200
committerGitHub <noreply@github.com>2018-05-22 00:05:41 +0200
commitf763f8cdfe5441e7bc2f09c0276ff57801b5a474 (patch)
tree67b02a59d5fe4653797376bd009c401bfd8b92db /pkgs/tools
parent527405a2f0b819d7b31f38a7fd42b604e558c3e1 (diff)
parent3709e30d067675956bce99a70bb4c55c10b3711a (diff)
downloadnixlib-f763f8cdfe5441e7bc2f09c0276ff57801b5a474.tar
nixlib-f763f8cdfe5441e7bc2f09c0276ff57801b5a474.tar.gz
nixlib-f763f8cdfe5441e7bc2f09c0276ff57801b5a474.tar.bz2
nixlib-f763f8cdfe5441e7bc2f09c0276ff57801b5a474.tar.lz
nixlib-f763f8cdfe5441e7bc2f09c0276ff57801b5a474.tar.xz
nixlib-f763f8cdfe5441e7bc2f09c0276ff57801b5a474.tar.zst
nixlib-f763f8cdfe5441e7bc2f09c0276ff57801b5a474.zip
Merge pull request #40890 from dotlambda/restic-0.9.0
restic: 0.8.3 -> 0.9.0
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/backup/restic/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/backup/restic/default.nix b/pkgs/tools/backup/restic/default.nix
index 158d7f1d2cf1..9f9714e6d99a 100644
--- a/pkgs/tools/backup/restic/default.nix
+++ b/pkgs/tools/backup/restic/default.nix
@@ -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;