mirror of
https://github.com/mrfluffy-dev/assignment.git
synced 2026-01-16 21:30:33 +00:00
26 lines
495 B
Nix
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"
|
|
'';
|
|
}
|