Unverified Commit a4aced8e authored by dish's avatar dish Committed by GitHub
Browse files

bluetuith: 0.2.3 -> 0.2.5 (#436681)

parents 5098a26b cca7c124
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
{
  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"
  ];