nixpkgs/pkgs/development/tools/database/litefs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
916 B
Nix
Raw Normal View History

2022-09-22 08:44:23 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "litefs";
2023-10-30 22:08:51 +00:00
version = "0.5.8";
2022-09-22 08:44:23 +00:00
src = fetchFromGitHub {
owner = "superfly";
repo = pname;
rev = "v${version}";
2023-10-30 22:08:51 +00:00
sha256 = "sha256-oF69bmWI4I/ok89Rgve4eedMR9MCcaxmQ4bGff831dI=";
2022-09-22 08:44:23 +00:00
};
2023-10-30 22:08:51 +00:00
vendorHash = "sha256-6Dg1fU4y0eUeiX9uUwJ2IUxBr81vWR6eUuCV+iPBNBk=";
2022-09-22 08:44:23 +00:00
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 ];
};
}