mirror of
https://github.com/Noratrieb/libuwuc.git
synced 2026-01-14 11:45:05 +01:00
19 lines
304 B
Nix
19 lines
304 B
Nix
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
rustup
|
|
gcc
|
|
clang_16
|
|
|
|
|
|
# for building things
|
|
gnumake
|
|
];
|
|
shellHook = ''
|
|
export PATH=$PATH:''${CARGO_HOME:-~/.cargo}/bin
|
|
'';
|
|
packages = (with pkgs; [
|
|
gef
|
|
rust-bindgen
|
|
shellcheck
|
|
]);
|
|
}
|