This commit is contained in:
Hunter 2023-05-27 10:08:01 -04:00
commit 2f372ede93
212 changed files with 50289 additions and 0 deletions

17
shell.nix Normal file
View file

@ -0,0 +1,17 @@
{ pkgs ? import <nixpkgs> { }, lib ? pkgs.lib }:
let
mcc-env = (pkgs.callPackage ./vendor/compilecommands {}).wrap pkgs.stdenv;
in
(pkgs.mkShell.override { stdenv = mcc-env; }) rec {
name = "sodium-env";
buildInputs = with pkgs; [
cmake
gnumake
assimp
SDL2
SDL2_ttf
SDL2_image
mangohud
];
}