nixpkgs/pkgs/servers/sql/dolt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
668 B
Nix
Raw Normal View History

{ fetchFromGitHub, lib, buildGoModule }:
buildGoModule rec {
2021-08-15 01:53:11 +02:00
pname = "dolt";
2023-06-12 03:46:51 +02:00
version = "1.3.0";
2021-08-15 01:53:11 +02:00
src = fetchFromGitHub {
owner = "dolthub";
2021-08-15 01:53:11 +02:00
repo = "dolt";
rev = "v${version}";
2023-06-12 03:46:51 +02:00
sha256 = "sha256-fgppjXg7PcUmh57HrOvxnHy3Si23JeP2QedqWcxBiTY=";
2021-08-15 01:53:11 +02:00
};
2021-08-15 01:53:11 +02:00
modRoot = "./go";
2023-06-01 17:11:12 +02:00
subPackages = [ "cmd/dolt" ];
2023-06-12 03:46:51 +02:00
vendorHash = "sha256-GbMjIoTZMJUJVU4McSayX8aWu7iFI6NBPcbQ5oj8xn0=";
2023-06-01 17:11:12 +02:00
proxyVendor = true;
doCheck = false;
2021-08-15 01:53:11 +02:00
meta = with lib; {
description = "Relational database with version control and CLI a-la Git";
homepage = "https://github.com/dolthub/dolt";
2021-08-15 01:53:11 +02:00
license = licenses.asl20;
maintainers = with maintainers; [ danbst ];
};
}