add shell.nix

This commit is contained in:
Felix Suchert 2022-12-28 12:05:16 +01:00
parent d269b05042
commit e24fecea52
Signed by: feliix42
GPG key ID: 24363525EA0E8A99

11
shell.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
propagatedNativeBuildInputs = with pkgs; [
flex
bison
clang
];
}