The open source OpenXR runtime

flake: Clean up comments, trailing space

+1 -3
+1 -3
flake.nix
··· 28 28 nativeBuildInputsToUpstream = with pkgs; [ 29 29 # If there are any nativeBuildInputs that are not in nixpkgs, add them here 30 30 # nativeBuildInputs are packages that are needed to develop and/or build the project (i.e. tooling) 31 - # Once they are upstreamed to nixpkgs master, remove them from this list 32 31 ]; 33 32 34 33 buildInputsToUpstream = with pkgs; [ 35 34 # If there are any buildInputs that are not in nixpkgs, add them here 36 35 # buildInputs are any packages that are needed at runtime (i.e. dependencies) 37 - # Once they are upstreamed to nixpkgs master, remove them from this list 38 36 ]; 39 - 37 + 40 38 package = pkgs.monado.overrideAttrs (oldAttrs: { 41 39 src = ./.; 42 40