Permalink
Cannot retrieve contributors at this time
26 lines (20 sloc)
868 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
rust-gpu/default.nix
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let | |
pkgs = import <nixpkgs> {}; | |
in with pkgs; stdenv.mkDerivation rec { | |
name = "rust-gpu"; | |
# Workaround for https://github.com/NixOS/nixpkgs/issues/60919. | |
# NOTE(eddyb) needed only in debug mode (warnings about needing optimizations | |
# turn into errors due to `-Werror`, for at least `spirv-tools-sys`). | |
hardeningDisable = [ "fortify" ]; | |
# Allow cargo to download crates (even inside `nix-shell --pure`). | |
SSL_CERT_FILE = "${cacert}/etc/ssl/certs/ca-bundle.crt"; | |
nativeBuildInputs = [ rustup ]; | |
# Runtime dependencies (for the example runners). | |
LD_LIBRARY_PATH = with xorg; lib.makeLibraryPath [ | |
vulkan-loader | |
# NOTE(eddyb) winit really wants `libxkbcommon` on Wayland for some reason | |
# (see https://github.com/rust-windowing/winit/issues/1760 for more info). | |
wayland libxkbcommon | |
libX11 libXcursor libXi libXrandr | |
]; | |
} |