mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 01:33:10 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
45 lines
945 B
Nix
45 lines
945 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "litefs";
|
|
version = "0.5.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "superfly";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-I12bKImZkvAMyfwb6r/NxE+BcUk+SalN+cIDXP0q4xA=";
|
|
};
|
|
|
|
vendorHash = "sha256-FcYPe4arb+jbxj4Tl6bRRAnkEvw0rkECIo8/zC79lOA=";
|
|
|
|
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 ];
|
|
mainProgram = "litefs";
|
|
};
|
|
}
|