at 22.05-pre 26 lines 699 B view raw
1{ fetchFromGitHub, lib, buildGoModule }: 2 3buildGoModule rec { 4 pname = "dolt"; 5 version = "0.32.1"; 6 7 src = fetchFromGitHub { 8 owner = "liquidata-inc"; 9 repo = "dolt"; 10 rev = "v${version}"; 11 sha256 = "sha256-03cWsZEPjsUPyrGoU+RFkPb/BjYfLgO5sE50k9U1GjQ="; 12 }; 13 14 modRoot = "./go"; 15 subPackages = [ "cmd/dolt" "cmd/git-dolt" "cmd/git-dolt-smudge" ]; 16 vendorSha256 = "sha256-7nmpsmisrtBxdLgC9mwSDYbjtbCrGl564+deC9CaYps="; 17 18 doCheck = false; 19 20 meta = with lib; { 21 description = "Relational database with version control and CLI a-la Git"; 22 homepage = "https://github.com/liquidata-inc/dolt"; 23 license = licenses.asl20; 24 maintainers = with maintainers; [ danbst ]; 25 }; 26}