3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/sql/cockroachdb/default.nix

65 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchurl
, cmake, xz, which, autoconf
, ncurses6, libedit, libunwind
}:
2016-09-20 12:31:54 +01:00
let
darwinDeps = [ libunwind libedit ];
linuxDeps = [ ncurses6 ];
buildInputs = if stdenv.isDarwin then darwinDeps else linuxDeps;
nativeBuildInputs = [ cmake xz which autoconf ];
in
2016-09-20 12:31:54 +01:00
buildGoPackage rec {
pname = "cockroach";
2019-11-03 13:08:54 +00:00
version = "19.1.5";
2016-09-20 12:31:54 +01:00
goPackagePath = "github.com/cockroachdb/cockroach";
2016-09-30 21:46:42 +01:00
src = fetchurl {
url = "https://binaries.cockroachdb.com/cockroach-v${version}.src.tgz";
2019-11-03 13:08:54 +00:00
sha256 = "1pnzzmxxb7qxiiy8qpl2sifk4qrijjbhmzy47bnjj5ssdsjjjcqy";
2016-09-20 12:31:54 +01:00
};
inherit nativeBuildInputs buildInputs;
2016-09-20 18:02:26 +01:00
buildPhase = ''
runHook preBuild
cd $NIX_BUILD_TOP/go/src/${goPackagePath}
patchShebangs .
make buildoss
cd src/${goPackagePath}
for asset in man autocomplete; do
./cockroachoss gen $asset
done
runHook postBuild
'';
installPhase = ''
runHook preInstall
install -D cockroachoss $bin/bin/cockroach
install -D cockroach.bash $bin/share/bash-completion/completions/cockroach.bash
mkdir -p $man/share/man
cp -r man $man/share/man
runHook postInstall
'';
2016-09-20 12:31:54 +01:00
# Unfortunately we have to keep an empty reference to $out, because it seems
# buildGoPackages only nukes references to the go compiler under $bin, effectively
# making all binary output under $bin mandatory. Ideally, we would just use
# $out and $man and remove $bin since there's no point in an empty path. :(
outputs = [ "bin" "man" "out" ];
2016-09-20 12:31:54 +01:00
meta = with stdenv.lib; {
homepage = https://www.cockroachlabs.com;
2016-09-20 12:31:54 +01:00
description = "A scalable, survivable, strongly-consistent SQL database";
license = licenses.asl20;
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
2019-06-03 11:54:31 +01:00
maintainers = with maintainers; [ rushmorem thoughtpolice rvolosatovs ];
2016-09-20 12:31:54 +01:00
};
}