mirror of https://github.com/bitcoin/bitcoin.git
68 lines
2.9 KiB
Nix
68 lines
2.9 KiB
Nix
{ pkgs ? import <nixpkgs> {}
|
|
, crossPkgs ? import <nixpkgs> {}
|
|
, enableLibcxx ? false # Whether to use libc++ toolchain and libraries instead of libstdc++
|
|
, minimal ? false # Whether to create minimal shell without extra tools (faster when cross compiling)
|
|
, capnprotoVersion ? null
|
|
, cmakeVersion ? null
|
|
}:
|
|
|
|
let
|
|
lib = pkgs.lib;
|
|
llvm = crossPkgs.llvmPackages_20;
|
|
capnprotoHashes = {
|
|
"0.7.0" = "sha256-Y/7dUOQPDHjniuKNRw3j8dG1NI9f/aRWpf8V0WzV9k8=";
|
|
"0.7.1" = "sha256-3cBpVmpvCXyqPUXDp12vCFCk32ZXWpkdOliNH37UwWE=";
|
|
"0.8.0" = "sha256-rfiqN83begjJ9eYjtr21/tk1GJBjmeVfa3C3dZBJ93w=";
|
|
"0.8.1" = "sha256-OZqNVYdyszro5rIe+w6YN00g6y8U/1b8dKYc214q/2o=";
|
|
"0.9.0" = "sha256-yhbDcWUe6jp5PbIXzn5EoKabXiWN8lnS08hyfxUgEQ0=";
|
|
"0.9.2" = "sha256-BspWOPZcP5nCTvmsDE62Zutox+aY5pw42d6hpH3v4cM=";
|
|
"0.10.0" = "sha256-++F4l54OMTDnJ+FO3kV/Y/VLobKVRk461dopanuU3IQ=";
|
|
"0.10.4" = "sha256-45sxnVyyYIw9i3sbFZ1naBMoUzkpP21WarzR5crg4X8=";
|
|
"1.0.0" = "sha256-NLTFJdeOzqhk4ATvkc17Sh6g/junzqYBBEoXYGH/czo=";
|
|
"1.0.2" = "sha256-LVdkqVBTeh8JZ1McdVNtRcnFVwEJRNjt0JV2l7RkuO8=";
|
|
"1.1.0" = "sha256-gxkko7LFyJNlxpTS+CWOd/p9x/778/kNIXfpDGiKM2A=";
|
|
"1.2.0" = "sha256-aDcn4bLZGq8915/NPPQsN5Jv8FRWd8cAspkG3078psc=";
|
|
};
|
|
capnprotoBase = if capnprotoVersion == null then crossPkgs.capnproto else crossPkgs.capnproto.overrideAttrs (old: {
|
|
version = capnprotoVersion;
|
|
src = crossPkgs.fetchFromGitHub {
|
|
owner = "capnproto";
|
|
repo = "capnproto";
|
|
rev = "v${capnprotoVersion}";
|
|
hash = lib.attrByPath [capnprotoVersion] "" capnprotoHashes;
|
|
};
|
|
patches = lib.optionals (lib.versionAtLeast capnprotoVersion "0.9.0" && lib.versionOlder capnprotoVersion "0.10.4") [ ./ci/patches/spaceship.patch ];
|
|
} // (lib.optionalAttrs (lib.versionOlder capnprotoVersion "0.10") {
|
|
env = { }; # Drop -std=c++20 flag forced by nixpkgs
|
|
}));
|
|
capnproto = capnprotoBase.override (lib.optionalAttrs enableLibcxx { clangStdenv = llvm.libcxxStdenv; });
|
|
clang = if enableLibcxx then llvm.libcxxClang else llvm.clang;
|
|
clang-tools = llvm.clang-tools.override { inherit enableLibcxx; };
|
|
cmakeHashes = {
|
|
"3.12.4" = "sha256-UlVYS/0EPrcXViz/iULUcvHA5GecSUHYS6raqbKOMZQ=";
|
|
};
|
|
cmakeBuild = if cmakeVersion == null then pkgs.cmake else (pkgs.cmake.overrideAttrs (old: {
|
|
version = cmakeVersion;
|
|
src = pkgs.fetchurl {
|
|
url = "https://cmake.org/files/v${lib.versions.majorMinor cmakeVersion}/cmake-${cmakeVersion}.tar.gz";
|
|
hash = lib.attrByPath [cmakeVersion] "" cmakeHashes;
|
|
};
|
|
patches = [];
|
|
})).override { isMinimalBuild = true; };
|
|
in crossPkgs.mkShell {
|
|
buildInputs = [
|
|
capnproto
|
|
];
|
|
nativeBuildInputs = with pkgs; [
|
|
cmakeBuild
|
|
include-what-you-use
|
|
ninja
|
|
] ++ lib.optionals (!minimal) [
|
|
clang
|
|
clang-tools
|
|
];
|
|
|
|
# Tell IWYU where its libc++ mapping lives
|
|
IWYU_MAPPING_FILE = if enableLibcxx then "${llvm.libcxx.dev}/include/c++/v1/libcxx.imp" else null;
|
|
}
|