43 lines
1,013 B
Nix
43 lines
1,013 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "rqlite";
|
|
version = "8.34.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rqlite";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-iErUNuX0FecBeMkcJv75TxlXP4WrdOsS9T5ABsedZlg=";
|
|
};
|
|
|
|
vendorHash = "sha256-v30TFML8RBn02LaNDQ0LBbhJduQUZDEBUCSSDwW2Ixo=";
|
|
|
|
subPackages = [
|
|
"cmd/rqlite"
|
|
"cmd/rqlited"
|
|
"cmd/rqbench"
|
|
];
|
|
|
|
# Leaving other flags from https://github.com/rqlite/rqlite/blob/master/package.sh
|
|
# since automatically retriving those is nontrivial and inessential
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/rqlite/rqlite/cmd.Version=${src.rev}"
|
|
];
|
|
|
|
# Tests are in a different subPackage which fails trying to access the network
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight, distributed relational database built on SQLite";
|
|
homepage = "https://github.com/rqlite/rqlite";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dit7ya ];
|
|
};
|
|
}
|