Merge pull request #237790 from figsoda/skate

skate: 0.2.1 -> 0.2.2
This commit is contained in:
Weijia Wang 2023-06-15 00:40:46 +03:00 committed by GitHub
commit 68d3acfd99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,25 +2,25 @@
buildGoModule rec {
pname = "skate";
version = "0.2.1";
version = "0.2.2";
src = fetchFromGitHub {
owner = "charmbracelet";
repo = "skate";
rev = "v${version}";
sha256 = "sha256-7ieXQM1Z4q4f37YSEcGs7sBAZH+64OCrWp7uBP5VNqI=";
hash = "sha256-Kum8IdgvRC75RLafCac0fkNn/VKvWFW48IK5tqLH/ME=";
};
vendorSha256 = "sha256-/Q8T4/KaHglhdxMQg9v5H+mHZpuHFcLRAbh6CzaFJKU=";
doCheck = false;
proxyVendor = true;
vendorHash = "sha256-xNM4qmpv+wcoiGrQ585N3VoKW6tio0cdHmUHRl2Pvio=";
ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
meta = with lib; {
description = "A personal multi-machine syncable key value store";
homepage = "https://github.com/charmbracelet/skate";
changelog = "https://github.com/charmbracelet/skate/releases/tag/${src.rev}";
license = licenses.mit;
maintainers = with maintainers; [ penguwin ];
maintainers = with maintainers; [ figsoda penguwin ];
};
}