mirror of
https://github.com/tsoding/boomer
synced 2024-11-16 12:12:47 +00:00
17 lines
522 B
Nix
17 lines
522 B
Nix
with import <nixpkgs> {}; {
|
|
boomerEnv = stdenv.mkDerivation {
|
|
name = "boomer-env";
|
|
buildInputs = [ stdenv
|
|
gcc
|
|
gdb
|
|
pkgconfig
|
|
nim
|
|
xorg.libX11
|
|
libGL
|
|
libGLU
|
|
freeglut
|
|
];
|
|
LD_LIBRARY_PATH="/run/opengl-driver/lib;${xorg.libX11}/lib/;${libGL}/lib/;${libGLU}/lib;${freeglut}/lib";
|
|
};
|
|
}
|