about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2021-10-04 18:23:29 -0400
committerGitHub <noreply@github.com>2021-10-04 18:23:29 -0400
commit3a13606ef428ee146dac363449a12b2fa5e367e3 (patch)
tree8b1a1a3d6828c4ed3283f75c7daef48a621e0656 /pkgs/tools
parentd189bf92f9be23f9b0f6c444f6ae29351bb7125c (diff)
parent2e3b19b81d46ae9748d9d936c252e6e88c3157fb (diff)
Merge pull request #140508 from erictapen/wgpu-utils-init
wgpu: rename to wgpu-utils, use upstream tag
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/graphics/wgpu-utils/default.nix (renamed from pkgs/tools/graphics/wgpu/default.nix)10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/graphics/wgpu/default.nix b/pkgs/tools/graphics/wgpu-utils/default.nix
index 31933000bf96b..737f7132212c4 100644
--- a/pkgs/tools/graphics/wgpu/default.nix
+++ b/pkgs/tools/graphics/wgpu-utils/default.nix
@@ -1,17 +1,17 @@
 { lib, rustPlatform, fetchFromGitHub, pkg-config, makeWrapper, vulkan-loader }:
 
 rustPlatform.buildRustPackage rec {
-  pname = "wgpu";
+  pname = "wgpu-utils";
   version = "0.10.0";
 
   src = fetchFromGitHub {
     owner = "gfx-rs";
-    repo = pname;
-    rev = "9da5c1d3a026c275feb57606b8c8d61f82b43386";
-    sha256 = "sha256-DcIMP06tlMxI16jqpKqei32FY8h7z41Nvygap2MQC8A=";
+    repo = "wgpu";
+    rev = "utils-${version}";
+    sha256 = "sha256-bOUcLtT5iPZuUgor2d/pJQ4Y+I1LMzREgj1cwLAvd+s=";
   };
 
-  cargoSha256 = "sha256-3gtIx337IP5t4nYGysOaU7SZRJrvVjYXN7mAqGbVlo8=";
+  cargoSha256 = "sha256-SSEG8JApQrgP7RWlXqb+xuy482oQZ5frE2IaVMruuG0=";
 
   nativeBuildInputs = [
     pkg-config