Files
projectm/nix/shell.nix
sage-michaels 6e223ac4d9 Add a nix file
This makes it easy to install all the relevant depdencies
on OSX. You can then build the project with:

    nix-shell nix/shell.nix --run \
      './autogen.sh && ./configure.sh --enable-sdl && make'
2019-02-09 17:14:05 -08:00

12 lines
195 B
Nix

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