Merge pull request #164 from sage-michaels/nix

Add a nix file
This commit is contained in:
Mischa Spiegelmock
2019-02-10 10:45:13 +02:00
committed by GitHub

11
nix/shell.nix Normal file
View File

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs; stdenv.mkDerivation {
name = "projectm-shell";
buildInputs = [
glm
libGLU_combined
SDL2
darwin.apple_sdk.frameworks.Carbon
];
}