56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
rustPlatform,
|
||
|
|
fetchFromGitHub,
|
||
|
|
pkg-config,
|
||
|
|
cmake,
|
||
|
|
makeWrapper,
|
||
|
|
vulkan-loader,
|
||
|
|
freetype,
|
||
|
|
fontconfig,
|
||
|
|
}:
|
||
|
|
|
||
|
|
rustPlatform.buildRustPackage rec {
|
||
|
|
pname = "wgpu-utils";
|
||
|
|
version = "25.0.2";
|
||
|
|
|
||
|
|
src = fetchFromGitHub {
|
||
|
|
owner = "gfx-rs";
|
||
|
|
repo = "wgpu";
|
||
|
|
tag = "wgpu-v${version}";
|
||
|
|
hash = "sha256-Na8UWMEzY0mvw8YERZ86PH79Z5YlXITPdOYha7Ahn7k=";
|
||
|
|
};
|
||
|
|
|
||
|
|
cargoHash = "sha256-9o1Tb0pVTc3iWPjNlAPBQX72djcx3EPJhxuUW6xZfCs=";
|
||
|
|
|
||
|
|
nativeBuildInputs = [
|
||
|
|
pkg-config
|
||
|
|
cmake
|
||
|
|
makeWrapper
|
||
|
|
];
|
||
|
|
|
||
|
|
buildInputs = [
|
||
|
|
freetype
|
||
|
|
fontconfig
|
||
|
|
];
|
||
|
|
|
||
|
|
# Tests fail, as the Nix sandbox doesn't provide an appropriate adapter (e.g. Vulkan).
|
||
|
|
doCheck = false;
|
||
|
|
|
||
|
|
postInstall = ''
|
||
|
|
wrapProgram $out/bin/wgpu-info \
|
||
|
|
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ vulkan-loader ]}
|
||
|
|
'';
|
||
|
|
|
||
|
|
meta = with lib; {
|
||
|
|
description = "Safe and portable GPU abstraction in Rust, implementing WebGPU API";
|
||
|
|
homepage = "https://wgpu.rs/";
|
||
|
|
license = with licenses; [
|
||
|
|
asl20 # or
|
||
|
|
mit
|
||
|
|
];
|
||
|
|
maintainers = with maintainers; [ erictapen ];
|
||
|
|
mainProgram = "wgpu-info";
|
||
|
|
};
|
||
|
|
}
|