nixpkgs/pkgs/development/tools/database/litestream/default.nix
2022-03-12 13:51:07 +00:00

31 lines
622 B
Nix

{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "litestream";
version = "0.3.8";
src = fetchFromGitHub {
owner = "benbjohnson";
repo = pname;
rev = "v${version}";
sha256 = "sha256-0Yyx8kbpu3T868hI9tJkBIjplAoQDA4XzhraHhOp61Q=";
};
ldflags = [
"-s"
"-w"
"-X main.Version=${version}"
];
vendorSha256 = "sha256-zCz9dki87dpZCo+/KuFzwtv/0TlBcvQDTxTuLN2FiHY=";
meta = with lib; {
description = "Streaming replication for SQLite";
license = licenses.asl20;
homepage = "https://litestream.io/";
maintainers = with maintainers; [ fbrs ];
};
}