{"id":14967992,"url":"https://github.com/nix-community/nixpkgs-xr","last_synced_at":"2025-10-05T19:20:26.794Z","repository":{"id":214964550,"uuid":"737790546","full_name":"nix-community/nixpkgs-xr","owner":"nix-community","description":"Automated packages for XR/AR/VR tools and apps for NixOS [maintainer=@Scrumplex]","archived":false,"fork":false,"pushed_at":"2025-09-30T20:01:29.000Z","size":1745,"stargazers_count":70,"open_issues_count":7,"forks_count":10,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-09-30T22:06:59.303Z","etag":null,"topics":["monado","nix","nix-community-buildbot","nixpkgs","opencomposite","openvr","openxr","virtual-reality","vr"],"latest_commit_sha":null,"homepage":"","language":"Nix","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nix-community.png","metadata":{"files":{"readme":"README-template.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSES/CC0-1.0.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"open_collective":"nix-community"}},"created_at":"2024-01-01T14:10:58.000Z","updated_at":"2025-09-30T20:01:33.000Z","dependencies_parsed_at":"2024-01-16T02:47:33.022Z","dependency_job_id":"d846155b-de04-4e9b-8e12-cfb147cd67d0","html_url":"https://github.com/nix-community/nixpkgs-xr","commit_stats":{"total_commits":366,"total_committers":4,"mean_commits":91.5,"dds":"0.20491803278688525","last_synced_commit":"2eea92727033be353c4da7548f00bf5cd68508de"},"previous_names":["scrumplex/nixpkgs-xr"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nix-community/nixpkgs-xr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nix-community%2Fnixpkgs-xr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nix-community%2Fnixpkgs-xr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nix-community%2Fnixpkgs-xr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nix-community%2Fnixpkgs-xr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nix-community","download_url":"https://codeload.github.com/nix-community/nixpkgs-xr/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nix-community%2Fnixpkgs-xr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278505526,"owners_count":25998149,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-05T02:00:06.059Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["monado","nix","nix-community-buildbot","nixpkgs","opencomposite","openvr","openxr","virtual-reality","vr"],"created_at":"2024-09-24T13:39:04.626Z","updated_at":"2025-10-05T19:20:26.781Z","avatar_url":"https://github.com/nix-community.png","language":"Nix","funding_links":["https://opencollective.com/nix-community"],"categories":["virtual-reality","Overlays"],"sub_categories":[],"readme":"\u003c!--\nSPDX-FileCopyrightText: 2024 Sefa Eyeoglu \u003ccontact@scrumplex.net\u003e\n\nSPDX-License-Identifier: CC0-1.0\n--\u003e\n\n# nixpkgs-xr\n\nThis repository provides Nix packages as well as a Nixpkgs overlay for unstable versions of XR/AR/VR packages for NixOS.\nThe packages are automatically updated, built and cached regularly.\nA list of packages in provided down in the [Packages section](#packages).\n\nSee [Usage](#usage) for information on how to set this up on your machine.\n\nA community chat is available on Matrix: [#nixpkgs-xr:matrix.org](https://matrix.to/#/#nixpkgs-xr:matrix.org)\n\n## Usage\n\nThis repository provides a [Nixpkgs overlay](https://ryantm.github.io/nixpkgs/using/overlays/)\nas well as the individual packages from that overlay.\nWhile a Flake-based setup is the preferred way of using this repository,\nyou can also use itw without Flakes.\n\n### Flake-based Setup\n\nAll you have to do, to apply this overlay to your NixOS configuration,\nis to add the input `github:nix-community/nixpkgs-xr` to your flake\nand import the convenient NixOS module `nixpkgs-xr.nixosModules.nixpkgs-xr`.\nSee the example below.\n\n\u003e [!IMPORTANT]\n\u003e This module adds the Nixpkgs overlay as well as [the binary cache][binary-cache] for this repository.\n\u003e If you don't want the binary cache see [manual setup](#manually-setup-flake-overlay) below.\n\n```nix\n{\n  inputs = {\n    # ...\n    nixpkgs-xr.url = \"github:nix-community/nixpkgs-xr\";\n  };\n\n  outputs = { nixpkgs, nixpkgs-xr, ... }: {\n    nixosConfigurations.foo = nixpkgs.lib.nixosSystem {\n      # ...\n      modules = [\n        # ...\n        nixpkgs-xr.nixosModules.nixpkgs-xr\n      ];\n    };\n  };\n}\n```\n\n#### Manually setup Flake overlay\n\nIn case you want to have more control over the configuration, you can also choose to configure this manually.\nAssuming your NixOS configuration is right in your `flake.nix`, you can write the following module:\n\n```nix\n{\n  inputs = {\n    # ...\n    nixpkgs-xr.url = \"github:nix-community/nixpkgs-xr\";\n  };\n\n  outputs = { nixpkgs, nixpkgs-xr, ... }: {\n    nixosConfigurations.foo = nixpkgs.lib.nixosSystem {\n      # ...\n      modules = [\n        # ...\n        {\n          nixpkgs.overlays = [ nixpkgs-xr.overlays.default ];\n\n          #nix.settings = {\n          #  substituters = [ \"https://nix-community.cachix.org\" ];\n          #  trusted-public-keys = [ \"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=\" ];\n          #};\n        }\n      ];\n    };\n  };\n}\n```\n\n### Traditional setup\n\nCompatibility for traditional NixOS setups is provided using [flake-compat].\nYou can just add the following snippet to your configuration:\n\n```nix\n{ ... }:\nlet\n  nixpkgs-xr = import (builtins.fetchTarball \"https://github.com/nix-community/nixpkgs-xr/archive/main.tar.gz\");\nin\n  {\n    nixpkgs.overlays = [ nixpkgs-xr.overlays.default ];\n\n    #nix.settings = {\n    #  substituters = [ \"https://nix-community.cachix.org\" ];\n    #  trusted-public-keys = [ \"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=\" ];\n    #};\n  }\n```\n\nYou can also pin the tarball url using tools like [niv].\n\n## Packages\n\nThis overlay provides the following packages:\n\n@packageNames@\n\n[binary-cache]: https://app.cachix.org/cache/nix-community\n[flake-compat]: https://github.com/edolstra/flake-compat\n[niv]: https://github.com/nmattia/niv\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnix-community%2Fnixpkgs-xr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnix-community%2Fnixpkgs-xr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnix-community%2Fnixpkgs-xr/lists"}