mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
20 lines
331 B
Nix
20 lines
331 B
Nix
with import /home/leroy/nixpkgs { overlays = [ (import ./overlay.nix) ]; };
|
|
stdenv.mkDerivation rec {
|
|
name = "systemnauts";
|
|
|
|
buildInputs = [
|
|
gcc
|
|
scons
|
|
libaudit
|
|
libvterm
|
|
libtsm
|
|
];
|
|
|
|
enablePrallelBuilding = true;
|
|
|
|
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [
|
|
libaudit
|
|
libvterm
|
|
libtsm
|
|
];
|
|
}
|