From ef18a2aa00a556f84121697511925745b4fe82f4 Mon Sep 17 00:00:00 2001 From: Aaron Jheng Date: Fri, 18 Oct 2024 09:10:21 +0000 Subject: [PATCH] atlas: 0.28.0 -> 0.28.1 --- pkgs/by-name/at/atlas/package.nix | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/at/atlas/package.nix b/pkgs/by-name/at/atlas/package.nix index d19454e84ce5..22250150de5c 100644 --- a/pkgs/by-name/at/atlas/package.nix +++ b/pkgs/by-name/at/atlas/package.nix @@ -1,14 +1,21 @@ -{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, atlas }: +{ + lib, + buildGoModule, + fetchFromGitHub, + installShellFiles, + testers, + atlas, +}: buildGoModule rec { pname = "atlas"; - version = "0.28.0"; + version = "0.28.1"; src = fetchFromGitHub { owner = "ariga"; repo = "atlas"; rev = "v${version}"; - hash = "sha256-D6dHHTxD2eObmXwYntIOtcPsU1vP+K289n+XVoaGUVc="; + hash = "sha256-OPGPYCp878nYYujR1jiMpOg1cdLSwa3OZEIxL6JltD4="; }; modRoot = "cmd/atlas"; @@ -18,7 +25,11 @@ buildGoModule rec { nativeBuildInputs = [ installShellFiles ]; - ldflags = [ "-s" "-w" "-X ariga.io/atlas/cmd/atlas/internal/cmdapi.version=v${version}" ]; + ldflags = [ + "-s" + "-w" + "-X ariga.io/atlas/cmd/atlas/internal/cmdapi.version=v${version}" + ]; subPackages = [ "." ];