sk_extract/nix/devshell.nix

19 lines
No EOL
329 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
# Get dependencies from the main package
inputsFrom = [ (pkgs.callPackage ./default.nix { }) ];
# Additional tooling
buildInputs = with pkgs; [
cargo
cargo-watch
rustc
just
rustup
clippy
rust-analyzer
xz
zip
rar
pkg-config
];
}