mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{ clang
|
|
, fetchFromGitHub
|
|
, lib
|
|
, llvmPackages
|
|
, protobuf
|
|
, rustPlatform
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "polkadot";
|
|
version = "0.9.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "paritytech";
|
|
repo = "polkadot";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-SCi+hpdMUTX1NLF1RUce0d/2G19sVfJ5IsmM1xcAUKo=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-ZcIsbMI96qX0LLJXmkCRS9g40ccZOH/upPbAA7XEZIw=";
|
|
|
|
nativeBuildInputs = [ clang ];
|
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
|
PROTOC = "${protobuf}/bin/protoc";
|
|
|
|
# NOTE: We don't build the WASM runtimes since this would require a more
|
|
# complicated rust environment setup and this is only needed for developer
|
|
# environments. The resulting binary is useful for end-users of live networks
|
|
# since those just use the WASM blob from the network chainspec.
|
|
SKIP_WASM_BUILD = 1;
|
|
|
|
# We can't run the test suite since we didn't compile the WASM runtimes.
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Polkadot Node Implementation";
|
|
homepage = "https://polkadot.network";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ akru andresilva asymmetric FlorianFranzen RaghavSood ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|