mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-06 04:03:04 +00:00
63 lines
1.3 KiB
Nix
63 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
fixDarwinDylibNames,
|
|
vulkan-loader,
|
|
nix-update-script,
|
|
callPackage,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wgpu-native";
|
|
version = "22.1.0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gfx-rs";
|
|
repo = "wgpu-native";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-lEUHRU7+sFWtEYTOB2F+SmMNG8nrjro3IL7BgYuIGgM=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
useFetchCargoVendor = true;
|
|
cargoHash = "sha256-frlGlUqyKa3PTRbpLhcnUvu+SX64V/CnZGa6+ADxKCo=";
|
|
|
|
nativeBuildInputs = [
|
|
rustPlatform.bindgenHook
|
|
] ++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
|
|
vulkan-loader
|
|
];
|
|
|
|
postInstall = ''
|
|
rm $out/lib/libwgpu_native.a
|
|
install -Dm644 ./ffi/wgpu.h -t $dev/include/webgpu
|
|
install -Dm644 ./ffi/webgpu-headers/webgpu.h -t $dev/include/webgpu
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
examples = callPackage ./examples.nix {
|
|
inherit version src;
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
description = "Native WebGPU implementation based on wgpu-core";
|
|
homepage = "https://github.com/gfx-rs/wgpu-native";
|
|
license = with lib.licenses; [
|
|
mit
|
|
asl20
|
|
];
|
|
maintainers = with lib.maintainers; [ niklaskorz ];
|
|
};
|
|
}
|