mirror of
https://github.com/mrfluffy-dev/assignment.git
synced 2026-01-17 05:40:34 +00:00
initial commit
This commit is contained in:
25
shell.nix
Normal file
25
shell.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
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"
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user