{ lib, stdenv, buildGoModule, pkg-config, }: buildGoModule { pname = "nix-tool"; version = "0.1.4"; src = ./.; vendorHash = "sha256-z07S4eulIujnFR5Sn2tpg8gxl+lh0zKcLQwPBg8gKsI="; ldflags = [ "-s -w" ] ++ lib.optionals stdenv.hostPlatform.isStatic [ "-linkmode external" "-extldflags \"-static\"" ]; nativeBuildInputs = [ pkg-config ]; }