summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorpiegames <git@piegames.de>2022-05-02 00:37:35 +0200
committerGitHub <noreply@github.com>2022-05-02 00:37:35 +0200
commit36563d95276f3bf4b144e6e3b355e666ca9f97f4 (patch)
treee3cc4b2688e30b238a0ce3453f070ec3215d7ed4 /pkgs
parent21c672aa41f2cc4d9000e0498db6c88c9bc3bb61 (diff)
parenta98504952fb1fe260ee70119bbb3eb23062f9ead (diff)
Merge pull request #170956: magic-wormhole-rs: fix pname
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/networking/magic-wormhole-rs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/magic-wormhole-rs/default.nix b/pkgs/tools/networking/magic-wormhole-rs/default.nix
index 951a066437640..3d9e20d14dce6 100644
--- a/pkgs/tools/networking/magic-wormhole-rs/default.nix
+++ b/pkgs/tools/networking/magic-wormhole-rs/default.nix
@@ -4,7 +4,7 @@
 , rustPlatform
 }:
 rustPlatform.buildRustPackage rec {
-  name = "magic-wormhole-rs";
+  pname = "magic-wormhole-rs";
   version = "0.3.0";
 
   src = fetchFromGitHub {
@@ -18,7 +18,7 @@ rustPlatform.buildRustPackage rec {
   # https://github.com/NixOS/nixpkgs/issues/30742
   # and can probably be removed once the issue is resolved
   cargoPatches = [ ./Cargo.toml.patch ];
-  cargoSha256 = "sha256-DG1kyukgzDbolX9Mg9hK1TRyzIWbAX6f54jSM8clj/c=";
+  cargoSha256 = "sha256-ujwvwr4GR/rQWnXFfL8sqPyz4QvGeOxwBrT+gf+vjsI=";
 
   # all tests involve networking and are bound fail
   doCheck = false;