holey-toys/shell.nix
Able ea7d4bc02f Add in nix packaging (#1)
* Add in nix packaging

* include stdint

* Fixes the PRs
2024-03-07 18:05:17 +02:00

10 lines
141 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell rec {
buildInputs = with pkgs; [
clang
];
shellHook = ''
export CC=clang
'';
}