autorestic: 1.5.8 -> 1.7.1
This commit is contained in:
parent
807011966b
commit
493c9e0d86
2 changed files with 7 additions and 5 deletions
|
@ -2,16 +2,16 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "autorestic";
|
pname = "autorestic";
|
||||||
version = "1.5.8";
|
version = "1.7.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "cupcakearmy";
|
owner = "cupcakearmy";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-0eq2u3DCNgfxsiE4lycf+xGIoEC3sZgEMha9+40j+9s=";
|
sha256 = "sha256-UUK5C26wM8LKQ7TE6DWEfzq+uPXH09B2Nybkfuqk+1o=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-qYXdRpQT7x+Y5h8PuKGjsANXLqjNlsPKO76GQhnufTU=";
|
vendorSha256 = "sha256-eB24vCElnnk3EMKniCblmeRsFk0BQ0wFeBf0B8OPanE=";
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
@ -27,6 +27,6 @@ buildGoModule rec {
|
||||||
homepage = "https://github.com/cupcakearmy/autorestic";
|
homepage = "https://github.com/cupcakearmy/autorestic";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ renesat ];
|
maintainers = with maintainers; [ renesat ];
|
||||||
platforms = platforms.linux ++ platforms.darwin;
|
mainProgram = "autorestic";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -161,7 +161,9 @@ with pkgs;
|
||||||
autoconf = autoconf269;
|
autoconf = autoconf269;
|
||||||
};
|
};
|
||||||
|
|
||||||
autorestic = callPackage ../tools/backup/autorestic { };
|
autorestic = callPackage ../tools/backup/autorestic {
|
||||||
|
buildGoModule = buildGo118Module;
|
||||||
|
};
|
||||||
|
|
||||||
autoPatchelfHook = makeSetupHook {
|
autoPatchelfHook = makeSetupHook {
|
||||||
name = "auto-patchelf-hook";
|
name = "auto-patchelf-hook";
|
||||||
|
|
Loading…
Reference in a new issue