atlas: 0.14.1 -> 0.15.0
This commit is contained in:
parent
5d6c732222
commit
e841a9d9f6
1 changed files with 11 additions and 6 deletions
|
@ -1,24 +1,23 @@
|
||||||
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, atlas }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "atlas";
|
pname = "atlas";
|
||||||
version = "0.14.1";
|
version = "0.15.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ariga";
|
owner = "ariga";
|
||||||
repo = "atlas";
|
repo = "atlas";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-dOqL/9sJUbaHqF3N5PEL7f6LxQQWNL0FvaH5BxQp4Xg=";
|
hash = "sha256-qEui+Y7auNFJwLSUT90jJH7IPgNW06phbJel9y3C1bk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
modRoot = "cmd/atlas";
|
modRoot = "cmd/atlas";
|
||||||
|
|
||||||
vendorHash = "sha256-1Hhl2TzJWWXk4du9nbJTPXdYuss4TWfUIOw2DaAJQis=";
|
proxyVendor = true;
|
||||||
|
vendorHash = "sha256-BJB+ZwrfZsYlyVX0G3qNQW8KexxMmc1Y9m2TRbOX6Tc=";
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
env.GOWORK = "off";
|
|
||||||
|
|
||||||
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 = [ "." ];
|
||||||
|
@ -30,6 +29,12 @@ buildGoModule rec {
|
||||||
--zsh <($out/bin/atlas completion zsh)
|
--zsh <($out/bin/atlas completion zsh)
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru.tests.version = testers.testVersion {
|
||||||
|
package = atlas;
|
||||||
|
command = "atlas version";
|
||||||
|
version = "v${version}";
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A modern tool for managing database schemas";
|
description = "A modern tool for managing database schemas";
|
||||||
homepage = "https://atlasgo.io/";
|
homepage = "https://atlasgo.io/";
|
||||||
|
|
Loading…
Reference in a new issue