summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Jheng <wentworth@outlook.com>2024-05-22 23:54:12 +0800
committerGitHub <noreply@github.com>2024-05-22 15:54:12 +0000
commitee4854e80112e51f989bd6bac53345bb402c6e6a (patch)
treeaa8f20a5cedb5ae24646949709867e3ef6f9967c
parentlunarvim: 1.3.0 -> 1.4.0 (#313451) (diff)
downloadnixpkgs-ee4854e80112e51f989bd6bac53345bb402c6e6a.tar.gz
atlas: 0.22.0 -> 0.23.0 (#313413)
-rw-r--r--pkgs/development/tools/database/atlas/default.nix6
-rw-r--r--pkgs/top-level/all-packages.nix4
2 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/development/tools/database/atlas/default.nix b/pkgs/development/tools/database/atlas/default.nix
index 8fc770f92cd7..a46ba0255924 100644
--- a/pkgs/development/tools/database/atlas/default.nix
+++ b/pkgs/development/tools/database/atlas/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "atlas";
- version = "0.22.0";
+ version = "0.23.0";
src = fetchFromGitHub {
owner = "ariga";
repo = "atlas";
rev = "v${version}";
- hash = "sha256-NsSDNeciHwlc7LZmuTOzoLNVsjAE+4YGThD/omMbjaE=";
+ hash = "sha256-eMYr+U95+xym7PZ02OmZbDG7g/kxE1Nojp3mZM6mf9Q=";
};
modRoot = "cmd/atlas";
@@ -40,7 +40,7 @@ buildGoModule rec {
homepage = "https://atlasgo.io/";
changelog = "https://github.com/ariga/atlas/releases/tag/v${version}";
license = licenses.asl20;
- maintainers = [ ];
+ maintainers = with maintainers; [ aaronjheng ];
mainProgram = "atlas";
};
}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index b9d719966b14..45af97efef2e 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -4140,9 +4140,7 @@ with pkgs;
atftp = callPackage ../tools/networking/atftp { };
- atlas = callPackage ../development/tools/database/atlas {
- buildGoModule = buildGo122Module;
- };
+ atlas = callPackage ../development/tools/database/atlas { };
authoscope = callPackage ../tools/security/authoscope {
inherit (darwin.apple_sdk.frameworks) Security;