Skip to content

Commit

Permalink
keep-sorted: 0.5.1 -> 0.6.0 (#375017)
Browse files Browse the repository at this point in the history
  • Loading branch information
katexochen authored Jan 20, 2025
2 parents 25d6e81 + 168e0b2 commit 564ebca
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions pkgs/by-name/ke/keep-sorted/package.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
{
lib,
buildGo123Module,
buildGoModule,
fetchFromGitHub,
nix-update-script,
versionCheckHook,
}:

buildGo123Module rec {
buildGoModule rec {
pname = "keep-sorted";
version = "0.5.1";
version = "0.6.0";

src = fetchFromGitHub {
owner = "google";
repo = "keep-sorted";
rev = "v${version}";
hash = "sha256-xvSEREEOiwft3fPN+xtdMCh+z3PknjJ962Nb+pw715U=";
tag = "v${version}";
hash = "sha256-ROvj7w8YMq6+ntx0SWi+HfN4sO6d7RjKWwlb/9gfz8w=";
};

vendorHash = "sha256-HTE9vfjRmi5GpMue7lUfd0jmssPgSOljbfPbya4uGsc=";

# Inject version string instead of reading version from buildinfo.
postPatch = ''
substituteInPlace main.go \
--replace-fail 'readVersion())' '"v${version}")'
'';

env.CGO_ENABLED = "0";

ldflags = [ "-s" ];
Expand All @@ -27,6 +34,10 @@ buildGo123Module rec {
rm goldens/*_test.go
'';

nativeInstallCheckInputs = [ versionCheckHook ];

doInstallCheck = true;

passthru.updateScript = nix-update-script { };

meta = {
Expand Down

0 comments on commit 564ebca

Please sign in to comment.