timoni: 0.12.1 -> 0.13.1

This commit is contained in:
Jan Votava 2023-09-18 09:16:59 +00:00
parent 79b7aacb8b
commit 6bd6bd649a

View File

@ -1,21 +1,21 @@
{ lib
, buildGoModule
, buildGo121Module
, fetchFromGitHub
, installShellFiles
}:
buildGoModule rec {
buildGo121Module rec {
pname = "timoni";
version = "0.12.1";
version = "0.13.1";
src = fetchFromGitHub {
owner = "stefanprodan";
repo = "timoni";
rev = "v${version}";
hash = "sha256-GILJAaid1kSO9281HQx7NI+mjmyJbTYTkwhvX4V/Idc=";
hash = "sha256-fuDc9EMSjBE0DiZ+OiuRXTRlxnO4/2yxkDsdKpVdg5w=";
};
vendorHash = "sha256-nGYAk9dwQ/+3SmNqGzbpptqBDAO/vNT9jhlcJf4y8jg=";
vendorHash = "sha256-RdfFesMgQU+Iezg9tE3RJ0Tk6jjIWY+ByJoKqUVWHwA=";
subPackages = [ "cmd/timoni" ];
nativeBuildInputs = [ installShellFiles ];