forked from mirrors/nixpkgs
Merge pull request #30746 from andir/update-cockroach
Update cockroachdb to v1.1.1 and enable build on darwin
This commit is contained in:
commit
4244ca78ed
|
@ -1,44 +1,43 @@
|
|||
{ stdenv, buildGoPackage, fetchurl, cmake, xz, which }:
|
||||
{ stdenv, buildGoPackage, fetchurl, cmake, xz, which, autoconf }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "cockroach-${version}";
|
||||
version = "v1.0.5";
|
||||
version = "1.1.1";
|
||||
|
||||
goPackagePath = "github.com/cockroachdb/cockroach";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://binaries.cockroachdb.com/cockroach-${version}.src.tgz";
|
||||
sha256 = "0jjl6zb8pyxws3i020h98vdr217railca8h6n3xijkvcqy9dj8wa";
|
||||
url = "https://binaries.cockroachdb.com/cockroach-v${version}.src.tgz";
|
||||
sha256 = "0d2nlm291k4x7hqi0kh76j6pj8b1dwbdww5f95brf0a9bl1n7qxr";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake xz which ];
|
||||
nativeBuildInputs = [ cmake xz which autoconf ];
|
||||
|
||||
buildPhase =
|
||||
''
|
||||
cd $NIX_BUILD_TOP/go/src/${goPackagePath}
|
||||
patchShebangs ./
|
||||
make buildoss
|
||||
cd src/${goPackagePath}
|
||||
for asset in man autocomplete; do
|
||||
./cockroach gen $asset
|
||||
done
|
||||
'';
|
||||
buildPhase = ''
|
||||
runHook preBuild
|
||||
cd $NIX_BUILD_TOP/go/src/${goPackagePath}
|
||||
patchShebangs .
|
||||
make buildoss
|
||||
cd src/${goPackagePath}
|
||||
for asset in man autocomplete; do
|
||||
./cockroach gen $asset
|
||||
done
|
||||
runHook postBuild
|
||||
'';
|
||||
|
||||
installPhase =
|
||||
''
|
||||
mkdir -p $bin/{bin,share}
|
||||
mv cockroach $bin/bin/
|
||||
mv man $bin/share/
|
||||
|
||||
mkdir -p $out/share/bash-completion/completions
|
||||
mv cockroach.bash $out/share/bash-completion/completions
|
||||
'';
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
install -D cockroach $bin/bin/cockroach
|
||||
install -D cockroach.bash $bin/share/bash-completion/completions/cockroach.bash
|
||||
cp -r man $bin/share/man
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://www.cockroachlabs.com;
|
||||
description = "A scalable, survivable, strongly-consistent SQL database";
|
||||
license = licenses.asl20;
|
||||
platforms = [ "x86_64-linux" ];
|
||||
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
||||
maintainers = [ maintainers.rushmorem ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue