zfsbackup: unstable-2020-09-30 -> unstable-2021-05-26
This commit is contained in:
parent
c1d92e633d
commit
8a40b9f1e6
2 changed files with 17 additions and 1335 deletions
|
@ -1,26 +1,34 @@
|
|||
{ lib, buildGoPackage, fetchFromGitHub }:
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, zfs
|
||||
}:
|
||||
|
||||
buildGoPackage rec {
|
||||
buildGoModule rec {
|
||||
pname = "zfsbackup";
|
||||
version = "unstable-2020-09-30";
|
||||
rev = "092f80846b23e02f99d2aa72d9d889eabfdcb053";
|
||||
|
||||
goPackagePath = "github.com/someone1/zfsbackup-go";
|
||||
version = "unstable-2021-05-26";
|
||||
rev = "2d4534b920d3c57552667e1c6da9978b3a9278f0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "someone1";
|
||||
repo = "zfsbackup-go";
|
||||
inherit rev;
|
||||
sha256 = "1xiacaf4r9jkx0m8wjfis14cq622yhljldwkflh9ni3khax7dlgi";
|
||||
sha256 = "sha256-slVwXXGLvq+eAlqzD8p1fnc17CGUBY0Z68SURBBuf2k=";
|
||||
};
|
||||
|
||||
goDeps = ./deps.nix;
|
||||
vendorSha256 = "sha256-jpxp8RKDBrkBBaY89QnKYGWFI/DUURUVX8cPJ/qoLrg=";
|
||||
|
||||
ldflags = [ "-w" "-s" ];
|
||||
|
||||
# Tests require loading the zfs kernel module.
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Backup ZFS snapshots to cloud storage such as Google, Amazon, Azure, etc";
|
||||
homepage = "https://github.com/someone1/zfsbackup-go";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.xfix ];
|
||||
maintainers = with maintainers; [ xfix ];
|
||||
platforms = platforms.linux;
|
||||
mainProgram = "zfsbackup-go";
|
||||
};
|
||||
}
|
||||
|
|
1326
pkgs/tools/backup/zfsbackup/deps.nix
generated
1326
pkgs/tools/backup/zfsbackup/deps.nix
generated
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue