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 {
pname = "restic";
version = "0.13.0";
version = "0.13.1";
src = fetchFromGitHub {
owner = "restic";
repo = "restic";
rev = "v${version}";
sha256 = "sha256-pbCN262gyS5BSUTN9QU+x2Nnrc8mmCSQH6Inng4OS8c=";
sha256 = "sha256-jQgUPZumcIDkZ4s7R8o5F/p/b4ilPJGMPFKvUU30WaY=";
};
patches = [
@ -42,9 +42,10 @@ buildGoModule rec {
meta = with lib; {
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";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.bsd2;
maintainers = [ maintainers.mbrgm ];
maintainers = [ maintainers.mbrgm maintainers.dotlambda ];
};
}