mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 09:23:37 +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.
38 lines
990 B
Nix
38 lines
990 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "rqlite";
|
|
version = "8.31.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rqlite";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-qxv7HuT7nV0Kr95WH1o02qbtn+oA85b4ZHm/rHGq25A=";
|
|
};
|
|
|
|
vendorHash = "sha256-P8v0vqxOfN9JjwsdoM6JmqGujGP5V68OAUc3KB/YU+k=";
|
|
|
|
subPackages = [ "cmd/rqlite" "cmd/rqlited" "cmd/rqbench" ];
|
|
|
|
# Leaving other flags from https://github.com/rqlite/rqlite/blob/master/package.sh
|
|
# since automatically retriving those is nontrivial and inessential
|
|
ldflags = [
|
|
"-s" "-w"
|
|
"-X github.com/rqlite/rqlite/cmd.Version=${src.rev}"
|
|
];
|
|
|
|
# Tests are in a different subPackage which fails trying to access the network
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight, distributed relational database built on SQLite";
|
|
homepage = "https://github.com/rqlite/rqlite";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dit7ya ];
|
|
};
|
|
}
|