nixpkgs/pkgs/servers/blockbook/default.nix

76 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv
2020-04-22 21:09:47 +00:00
, buildGoModule
2019-07-06 21:08:55 +00:00
, fetchFromGitHub
, packr
, pkg-config
2020-07-18 14:48:56 +00:00
, bzip2
2019-07-06 21:08:55 +00:00
, lz4
2020-07-18 14:48:56 +00:00
, rocksdb
, snappy
, zeromq
, zlib
2019-07-06 21:08:55 +00:00
}:
2020-04-22 21:09:47 +00:00
buildGoModule rec {
2019-07-06 21:08:55 +00:00
pname = "blockbook";
2020-06-14 10:27:47 +00:00
version = "0.3.4";
commit = "eb4e10a";
2019-07-06 21:08:55 +00:00
src = fetchFromGitHub {
owner = "trezor";
repo = "blockbook";
rev = "v${version}";
2020-06-14 10:27:47 +00:00
sha256 = "0da1kav5x2xcmwvdgfk1q70l1k0sqqj3njgx2xx885d40m6qbnrs";
2019-07-06 21:08:55 +00:00
};
vendorSha256 = "1qjlvhizl8cy06cgf4phia70bgbm4lj57z5z2gyr8aglx98bnpdn";
2019-07-06 21:08:55 +00:00
2020-07-18 14:48:56 +00:00
nativeBuildInputs = [ packr pkg-config ];
2019-07-06 21:08:55 +00:00
2020-07-18 14:48:56 +00:00
buildInputs = [ bzip2 lz4 rocksdb snappy zeromq zlib ];
2019-07-06 21:08:55 +00:00
2020-04-22 21:09:47 +00:00
buildFlagsArray = ''
-ldflags=
-X github.com/trezor/blockbook/common.version=${version}
-X github.com/trezor/blockbook/common.gitcommit=${commit}
-X github.com/trezor/blockbook/common.buildDate=unknown
'';
goethereum = fetchFromGitHub {
owner = "ethereum";
repo = "go-ethereum";
rev = "v1.8.20";
sha256 = "0m2q1nz6f39pyr2rk6vflkwi4ykganzwr7wndpwr9rliw0x8jgi0";
};
overrideModAttrs = (_: {
2020-07-18 14:48:56 +00:00
postBuild = ''
rm -r vendor/github.com/ethereum/go-ethereum
cp -r --reflink=auto ${goethereum} vendor/github.com/ethereum/go-ethereum
2020-07-18 14:48:56 +00:00
'';
});
2020-07-18 14:48:56 +00:00
preBuild = stdenv.lib.optionalString stdenv.isDarwin ''
ulimit -n 8192
'' + ''
2020-07-18 14:48:56 +00:00
export CGO_LDFLAGS="-L${stdenv.cc.cc.lib}/lib -lrocksdb -lz -lbz2 -lsnappy -llz4 -lm -lstdc++"
2019-07-06 21:08:55 +00:00
packr clean && packr
'';
2020-04-27 10:16:16 +00:00
subPackages = [ "." ];
2019-07-06 21:08:55 +00:00
postInstall = ''
mkdir -p $out/share/
cp -r $src/static/templates/ $out/share/
cp -r $src/static/css/ $out/share/
'';
2020-07-18 14:48:56 +00:00
meta = with stdenv.lib; {
2019-07-06 21:08:55 +00:00
description = "Trezor address/account balance backend";
homepage = "https://github.com/trezor/blockbook";
license = licenses.agpl3;
2020-04-22 21:09:47 +00:00
maintainers = with maintainers; [ mmahut maintainers."1000101" ];
2020-07-18 14:48:56 +00:00
platforms = platforms.unix;
2019-07-06 21:08:55 +00:00
};
}