b5f92a349c
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
42 lines
1.3 KiB
Nix
42 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchzip
|
|
, buildFHSEnv
|
|
}:
|
|
|
|
let
|
|
version = "23.1.7";
|
|
pname = "cockroachdb";
|
|
|
|
# For several reasons building cockroach from source has become
|
|
# nearly impossible. See https://github.com/NixOS/nixpkgs/pull/152626
|
|
# Therefore we use the pre-build release binary and wrap it with buildFHSUserEnv to
|
|
# work on nix.
|
|
# You can generate the hashes with
|
|
# nix flake prefetch <url>
|
|
srcs = {
|
|
aarch64-linux = fetchzip {
|
|
url = "https://binaries.cockroachdb.com/cockroach-v${version}.linux-arm64.tgz";
|
|
hash = "sha256-73qJL3o328NckH6POXv+AUvlAJextb31Vs8NGdc8dwE=";
|
|
};
|
|
x86_64-linux = fetchzip {
|
|
url = "https://binaries.cockroachdb.com/cockroach-v${version}.linux-amd64.tgz";
|
|
hash = "sha256-FL/zDrl+QstBp54LE9/SbIfSPorneGZSef6dcOQJbSo=";
|
|
};
|
|
};
|
|
src = srcs.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
|
|
|
in
|
|
buildFHSEnv {
|
|
inherit pname version;
|
|
|
|
runScript = "${src}/cockroach";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.cockroachlabs.com";
|
|
description = "A scalable, survivable, strongly-consistent SQL database";
|
|
license = licenses.bsl11;
|
|
platforms = [ "aarch64-linux" "x86_64-linux" ];
|
|
maintainers = with maintainers; [ rushmorem thoughtpolice neosimsim ];
|
|
};
|
|
}
|