atlas: 0.28.0 -> 0.28.1
This commit is contained in:
parent
a8f84a9dff
commit
ef18a2aa00
@ -1,14 +1,21 @@
|
|||||||
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, atlas }:
|
{
|
||||||
|
lib,
|
||||||
|
buildGoModule,
|
||||||
|
fetchFromGitHub,
|
||||||
|
installShellFiles,
|
||||||
|
testers,
|
||||||
|
atlas,
|
||||||
|
}:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "atlas";
|
pname = "atlas";
|
||||||
version = "0.28.0";
|
version = "0.28.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ariga";
|
owner = "ariga";
|
||||||
repo = "atlas";
|
repo = "atlas";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-D6dHHTxD2eObmXwYntIOtcPsU1vP+K289n+XVoaGUVc=";
|
hash = "sha256-OPGPYCp878nYYujR1jiMpOg1cdLSwa3OZEIxL6JltD4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
modRoot = "cmd/atlas";
|
modRoot = "cmd/atlas";
|
||||||
@ -18,7 +25,11 @@ buildGoModule rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
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 = [ "." ];
|
subPackages = [ "." ];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user