{ nixpkgs, sources, system, nvidia ? false }: with import ./common.nix { inherit nixpkgs sources system ; }; with pkgs; let nixGLPackages = ((with nixGL; [ nixGLIntel ]) ++ (lib.optional nvidia (with nixGL; [ nixGLNvidia nixGLNvidiaBumblebee ]))); getAllCratesDeps = name: (lib.concatLists (map (attrset: attrset."${name}") (lib.attrValues crateDeps))); bundleCrate = writeScriptBin "bundleCrate" '' #!${stdenv.shell} ${nix-bundle}/bin/nix-bundle "(pkgs.callPackage ./nix/veloren.nix { cratesToBuild = [ \"$1\" ]; }).$1" /bin/$1 ''; in mkShell { name = "veloren-shell"; nativeBuildInputs = [ bundleCrate cachix cargo clippy crate2nix git git-lfs nixpkgs-fmt rustc rustfmt ] ++ nixGLPackages ++ (getAllCratesDeps "nativeBuildInputs"); buildInputs = getAllCratesDeps "buildInputs"; shellHook = '' # Setup our cachix "substituter" export NIX_CONFIG=" substituters = https://cache.nixos.org https://veloren-nix.cachix.org trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= veloren-nix.cachix.org-1:zokfKJqVsNV6kI/oJdLF6TYBdNPYGSb+diMVQPn/5Rc= " # Add libraries Voxygen needs so that it runs export LD_LIBRARY_PATH=${lib.makeLibraryPath voxygenNeededLibs} # No need to install git-lfs and run fetch / checkout commands if we have it setup [ "$(${file}/bin/file --mime-type ${gitLfsCheckFile})" = "${gitLfsCheckFile}: image/png" ] || (git lfs install --local && git lfs fetch && git lfs checkout) ''; }