python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / database / litestream / default.nix
blob11fcaf724321ddd045ed25c0287ff8b3260fea59
1 { buildGoModule
2 , fetchFromGitHub
3 , lib
4 }:
5 buildGoModule rec {
6   pname = "litestream";
7   version = "0.3.9";
9   src = fetchFromGitHub {
10     owner = "benbjohnson";
11     repo = pname;
12     rev = "v${version}";
13     sha256 = "sha256-zs+Li8ylw+zexxuEkXX4qk7qslk23BLBcoHXRIuQNmU=";
14   };
16   ldflags = [
17     "-s"
18     "-w"
19     "-X main.Version=${version}"
20   ];
22   vendorSha256 = "sha256-GiCvifdbWz+hH6aHACzlBpppNC5p24MHRWlbtKLIFhE=";
24   meta = with lib; {
25     description = "Streaming replication for SQLite";
26     license = licenses.asl20;
27     homepage = "https://litestream.io/";
28     maintainers = with maintainers; [ fbrs ];
29   };