mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2025-12-01 12:11:20 +00:00
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'
12 lines
195 B
Nix
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
|
|
];
|
|
}
|