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