libuwuc/shell.nix
2023-10-01 11:35:53 +02:00

12 lines
219 B
Nix

{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
buildInputs = with pkgs; [
rustup
gcc
];
shellHook = ''
export PATH=$PATH:''${CARGO_HOME:-~/.cargo}/bin
'';
packages = (with pkgs; [
gef
]);
}