atlas: 0.28.0 -> 0.28.1

This commit is contained in:
Aaron Jheng 2024-10-18 09:10:21 +00:00
parent a8f84a9dff
commit ef18a2aa00
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3

View File

@ -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 = [ "." ];