Merge pull request #176308 from dotlambda/restic-0.13.1

restic: 0.13.0 -> 0.13.1
This commit is contained in:
Pascal Bach 2022-06-05 13:09:51 +02:00 committed by GitHub
commit 6218ada158
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,13 +3,13 @@
buildGoModule rec { buildGoModule rec {
pname = "restic"; pname = "restic";
version = "0.13.0"; version = "0.13.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "restic"; owner = "restic";
repo = "restic"; repo = "restic";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-pbCN262gyS5BSUTN9QU+x2Nnrc8mmCSQH6Inng4OS8c="; sha256 = "sha256-jQgUPZumcIDkZ4s7R8o5F/p/b4ilPJGMPFKvUU30WaY=";
}; };
patches = [ patches = [
@ -42,9 +42,10 @@ buildGoModule rec {
meta = with lib; { meta = with lib; {
homepage = "https://restic.net"; homepage = "https://restic.net";
changelog = "https://github.com/restic/restic/blob/${src.rev}/CHANGELOG.md";
description = "A backup program that is fast, efficient and secure"; description = "A backup program that is fast, efficient and secure";
platforms = platforms.linux ++ platforms.darwin; platforms = platforms.linux ++ platforms.darwin;
license = licenses.bsd2; license = licenses.bsd2;
maintainers = [ maintainers.mbrgm ]; maintainers = [ maintainers.mbrgm maintainers.dotlambda ];
}; };
} }