1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

all-packages: use go 1.12 for restic

This commit is contained in:
Roman Volosatovs 2019-09-16 23:46:42 +02:00
parent b63b95f141
commit a3341e8499
No known key found for this signature in database
GPG key ID: 2660C5FDCEBE6F87

View file

@ -15198,7 +15198,11 @@ in
redstore = callPackage ../servers/http/redstore { };
restic = callPackage ../tools/backup/restic { };
restic = callPackage ../tools/backup/restic {
# Version 0.9.5 fails to build with go 1.13 due to dependency:
# go: bazil.org/fuse@v0.0.0-20180421153158-65cc252bf669: Get https://proxy.golang.org/bazil.org/fuse/@v/v0.0.0-20180421153158-65cc252bf669.mod: dial tcp: lookup proxy.golang.org on [::1]:53: read udp [::1]:56450->[::1]:53: read: connection refused
buildGoPackage = buildGo112Package;
};
restic-rest-server = callPackage ../tools/backup/restic/rest-server.nix { };