bakare/shell.nix

21 lines
649 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
2021-05-16 10:46:48 +01:00
cargo-edit cargo-udeps
2020-11-07 10:19:54 +00:00
cacert openssl openssh zlib
2021-02-06 16:32:11 +00:00
pkgconfig clang llvm kdbg lldb gdb
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
}