mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
65198a9082
CockroachDB is failing to build on `x86_64-darwin` according to Hydra. I don't have a Mac or Windows machine to debug the builds on so I can't support those.
34 lines
813 B
Nix
34 lines
813 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub, gcc }:
|
|
|
|
buildGoPackage rec {
|
|
name = "cockroach-${version}";
|
|
version = "beta-20160915";
|
|
|
|
goPackagePath = "github.com/cockroachdb/cockroach";
|
|
subPackages = [ "." ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cockroachdb";
|
|
repo = "cockroach";
|
|
rev = version;
|
|
sha256 = "11camp588vsccxlc138l7x4qws2fj5wpx1177irzayqdng8dilx3";
|
|
};
|
|
|
|
buildFlagsArray = ''
|
|
-ldflags=
|
|
-X github.com/cockroachdb/cockroach/build.tag=${version}
|
|
'';
|
|
|
|
buildInputs = [ gcc ];
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.cockroachlabs.com;
|
|
description = "A scalable, survivable, strongly-consistent SQL database";
|
|
license = licenses.asl20;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = [ maintainers.rushmorem ];
|
|
};
|
|
}
|