bluetuith: 0.2.3 -> 0.2.5 (#436681)

This commit is contained in:
dish
2025-08-25 09:25:15 -04:00
committed by GitHub
+6 -6
View File
@@ -1,28 +1,28 @@
{
lib,
buildGoModule,
# Module requires Go 1.25, drop pin once buildGoModule uses Go >= 1.25.
buildGo125Module,
fetchFromGitHub,
nix-update-script,
}:
buildGoModule (finalAttrs: {
buildGo125Module (finalAttrs: {
pname = "bluetuith";
version = "0.2.3";
version = "0.2.5";
src = fetchFromGitHub {
owner = "darkhz";
repo = "bluetuith";
tag = "v${finalAttrs.version}";
hash = "sha256-yXH/koNT4ec/SOZhSU01iPNAfD1MdMjM2+wNmjXWsrk=";
hash = "sha256-h7SMGI8wIiu4i2kcKRsmLHM4tu7ZZK0usBXh5zFu94E=";
};
vendorHash = "sha256-tEVzuhE0Di7edGa5eJHLLqOecCuoj02h91TsZiZU1PM=";
vendorHash = null;
env.CGO_ENABLED = 0;
ldflags = [
"-s"
"-w"
"-X github.com/darkhz/bluetuith/cmd.Version=${finalAttrs.version}@nixpkgs"
];