bakare/shell.nix

21 lines
623 B
Nix
Raw Normal View History

2020-11-07 10:19:54 +00:00
let
moz_overlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz);
nixpkgs = import <nixpkgs> { overlays = [ moz_overlay ]; };
channel = (nixpkgs.rustChannelOf { rustToolchain = ./rust-toolchain; });
in
with nixpkgs;
stdenv.mkDerivation {
name = "bakare_shell";
2020-11-07 10:19:54 +00:00
buildInputs = [
channel.rust
2020-11-28 13:28:00 +00:00
linuxPackages.perf flamegraph cargo-flamegraph geeqie
2020-11-28 14:14:35 +00:00
cargo-edit
2020-11-07 10:19:54 +00:00
cacert openssl openssh zlib
pkgconfig clang llvm
git
2020-11-07 10:19:54 +00:00
];
shellHook = ''
export RUST_SRC_PATH="${channel.rust-src}/lib/rustlib/src/rust/src"
'';
2020-11-07 10:19:54 +00:00
}