Files
assignment/shell.nix
Zastian Pretorius c31b86fa01 initial commit
2024-05-08 13:55:26 +01:00

26 lines
495 B
Nix

let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
dbus
openssl
cargo
rustc
rust-analyzer
rustup
gcc
rustfmt
gf
];
nativeBuildInputs = with pkgs; [
pkg-config
];
dbus = pkgs.dbus;
shellHook = ''
export TEMPDIR=/tmp
echo "run shell shit here"
echo "your mom"
'';
}