mirror of
https://github.com/Noratrieb/libuwuc.git
synced 2026-01-14 19:55:07 +01:00
11 lines
211 B
Nix
11 lines
211 B
Nix
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
rustup
|
|
gcc
|
|
];
|
|
shellHook = ''
|
|
export PATH=$PATH:''${CARGO_HOME:-~/.cargo}/bin
|
|
'';
|
|
packages = (with pkgs; [
|
|
]);
|
|
}
|