depot/third_party/nixpkgs/pkgs/development/tools/database/litefs/default.nix
Default email 6d4aeb4377 Project import generated by Copybara.
GitOrigin-RevId: 0f213d0fee84280d8c3a97f7469b988d6fe5fcdf
2023-01-11 08:51:40 +01:00

43 lines
918 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "litefs";
version = "0.3.0";
src = fetchFromGitHub {
owner = "superfly";
repo = pname;
rev = "v${version}";
sha256 = "sha256-fNZ0PtgMgCGB1b1HLJsmbm/I8wa3auHimL1ktf6wA9M=";
};
vendorSha256 = "sha256-w77JQNk1QZFJVrn9yuvKOemggV9e0FuqhVWK3d4umuY=";
subPackages = [ "cmd/litefs" ];
# following https://github.com/superfly/litefs/blob/main/Dockerfile
ldflags = [
"-s"
"-w"
"-X main.Version=${version}"
"-extldflags=-static"
];
tags = [
"osusergo"
"netgo"
"sqlite_omit_load_extension"
];
doCheck = false; # fails
meta = with lib; {
description = "FUSE-based file system for replicating SQLite databases across a cluster of machines";
homepage = "https://github.com/superfly/litefs";
license = licenses.asl20;
maintainers = with maintainers; [ dit7ya ];
};
}