mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 13:27:57 +00:00
3ecb5306eb
* The 2022-02-10 nightly can't build some deps There's a sig that returns `impl IntoIterator<Item = (&'static str, OsString)>` and an Option is being retured but it's incorrectly not allowing a `?` in the method. * removing duplicate test * [ci] add job cargo-check-nixos * add dummy variables nix check * fix check-dependent jobs * fix check-dependent-project template Co-authored-by: alvicsam <alvicsam@gmail.com>
28 lines
826 B
Nix
28 lines
826 B
Nix
let
|
|
mozillaOverlay =
|
|
import (builtins.fetchGit {
|
|
url = "https://github.com/mozilla/nixpkgs-mozilla.git";
|
|
rev = "15b7a05f20aab51c4ffbefddb1b448e862dccb7d";
|
|
});
|
|
nixpkgs = import <nixpkgs> { overlays = [ mozillaOverlay ]; };
|
|
rust-nightly = with nixpkgs; ((rustChannelOf { date = "2022-04-20"; channel = "nightly"; }).rust.override {
|
|
extensions = [ "rust-src" ];
|
|
targets = [ "wasm32-unknown-unknown" ];
|
|
});
|
|
in
|
|
with nixpkgs; pkgs.mkShell {
|
|
buildInputs = [
|
|
clang
|
|
openssl.dev
|
|
pkg-config
|
|
rust-nightly
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.Security
|
|
];
|
|
|
|
RUST_SRC_PATH = "${rust-nightly}/lib/rustlib/src/rust/src";
|
|
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
|
PROTOC = "${protobuf}/bin/protoc";
|
|
ROCKSDB_LIB_DIR = "${rocksdb}/lib";
|
|
}
|