diff options
author | Vincent Ambo <mail@tazj.in> | 2021-12-24T16·02+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2021-12-24T16·05+0000 |
commit | 59755aa1ea16459c85c3086d51b3467f8948a705 (patch) | |
tree | 6186df9bdb25fcb554810afea74dccf25008567a /third_party | |
parent | f8f5804c50a94f10545d95bd25ab113e67cda521 (diff) |
chore(3p/litestream): Remove derivation, it's now in nixpkgs r/3347
Change-Id: Ib02b37f8b5a1227b0b023a0c9180b0ef2aa5b691 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4559 Autosubmit: tazjin <mail@tazj.in> Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/litestream/default.nix | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/third_party/litestream/default.nix b/third_party/litestream/default.nix deleted file mode 100644 index 20b094ee84ba..000000000000 --- a/third_party/litestream/default.nix +++ /dev/null @@ -1,23 +0,0 @@ -# TODO(tazjin): Upstream this derivation if litestream is good. -{ pkgs, lib, ... }: - -let inherit (pkgs) buildGoModule fetchFromGitHub; -in pkgs.buildGoModule rec { - pname = "litestream"; - version = "0.3.4"; - vendorSha256 = "1dcb5f06cq484i9m9pi5l4banygh3s4bz5964hy7ypmm1z2pcmrv"; - - src = pkgs.fetchFromGitHub { - owner = "benbjohnson"; - repo = "litestream"; - rev = "v${version}"; - sha256 = "1ivyxgmbysir9qsbsz6nksjqzw6ba0zrymacsw12ab9bvbldjxv7"; - }; - - meta = { - description = "Streaming S3 replication for SQLite"; - homepage = "https://litestream.io/"; - license = lib.licenses.asl20; - maintainers = [ lib.maintainers.tazjin ]; - }; -} |