1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-24 10:56:56 +00:00
nixpkgs/pkgs/servers/sql/dolt/default.nix

27 lines
699 B
Nix
Raw Normal View History

{ fetchFromGitHub, lib, buildGoModule }:
buildGoModule rec {
2021-08-15 00:53:11 +01:00
pname = "dolt";
2021-09-22 06:08:29 +01:00
version = "0.28.4";
2021-08-15 00:53:11 +01:00
src = fetchFromGitHub {
owner = "liquidata-inc";
repo = "dolt";
rev = "v${version}";
2021-09-22 06:08:29 +01:00
sha256 = "sha256-J/4YEiSmoWhs+pnJN21CwNwpujZ1cldLmgwajBB+IRU=";
2021-08-15 00:53:11 +01:00
};
2021-08-15 00:53:11 +01:00
modRoot = "./go";
subPackages = [ "cmd/dolt" "cmd/git-dolt" "cmd/git-dolt-smudge" ];
2021-09-22 06:08:29 +01:00
vendorSha256 = "sha256-l3jRQ4Z7xku1nMfYfc6nJ3qF6A1maY0tRfZpHCtsujI=";
doCheck = false;
2021-08-15 00:53:11 +01:00
meta = with lib; {
description = "Relational database with version control and CLI a-la Git";
homepage = "https://github.com/liquidata-inc/dolt";
license = licenses.asl20;
maintainers = with maintainers; [ danbst ];
};
}