glaze 0.0.1

A simple renderer developed for the Scone game engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  outputs = { self, nixpkgs }:
  let pkgs = nixpkgs.legacyPackages.x86_64-linux; in {
    devShells.x86_64-linux.default = with pkgs; pkgs.mkShell {
      buildInputs = [
        pkgconfig
        xorg.libX11
        xorg.libXcursor
        xorg.libXrandr
        xorg.libXi
      ];
    };
  };
}