├── .envrc ├── .gitignore ├── INTERNALS.md ├── LICENSE ├── README.md ├── default.nix ├── flake.lock ├── flake.nix ├── shell.nix ├── src ├── nixglhost.py └── nixglhost_test.py └── tests └── fixtures └── json_permut ├── 1.json ├── 2.json └── not-equal.json /.envrc: -------------------------------------------------------------------------------- 1 | use nix 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .direnv/ 2 | -------------------------------------------------------------------------------- /INTERNALS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nix-gl-host/HEAD/INTERNALS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nix-gl-host/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nix-gl-host/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nix-gl-host/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nix-gl-host/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nix-gl-host/HEAD/flake.nix -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nix-gl-host/HEAD/shell.nix -------------------------------------------------------------------------------- /src/nixglhost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nix-gl-host/HEAD/src/nixglhost.py -------------------------------------------------------------------------------- /src/nixglhost_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nix-gl-host/HEAD/src/nixglhost_test.py -------------------------------------------------------------------------------- /tests/fixtures/json_permut/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nix-gl-host/HEAD/tests/fixtures/json_permut/1.json -------------------------------------------------------------------------------- /tests/fixtures/json_permut/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nix-gl-host/HEAD/tests/fixtures/json_permut/2.json -------------------------------------------------------------------------------- /tests/fixtures/json_permut/not-equal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numtide/nix-gl-host/HEAD/tests/fixtures/json_permut/not-equal.json --------------------------------------------------------------------------------