about summary refs log tree commit diff
path: root/pkgs/development/tools/electron
diff options
context:
space:
mode:
authorYureka <yuka@yuka.dev>2023-12-20 13:27:33 +0100
committerGitHub <noreply@github.com>2023-12-20 13:27:33 +0100
commit586070ede39e676a7f569e7b8cd6f111c3bcf0ab (patch)
treec4f3e9f49c78c78087ef7ab51637834a0cfb4c31 /pkgs/development/tools/electron
parent6b25f0686e4ecd27d76cda06103453c5b875ddd4 (diff)
electron.headers: use gzip instead of xz compression (#275628)
node-gyp can't unpack XZ. Fixes https://github.com/NixOS/nixpkgs/issues/275627
Diffstat (limited to 'pkgs/development/tools/electron')
-rw-r--r--pkgs/development/tools/electron/common.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/electron/common.nix b/pkgs/development/tools/electron/common.nix
index 497a321c3f140..78ee9fee239d9 100644
--- a/pkgs/development/tools/electron/common.nix
+++ b/pkgs/development/tools/electron/common.nix
@@ -183,7 +183,7 @@ in (chromium.override { upstream-info = info.chromium; }).mkDerivation (base: {
   passthru = {
     inherit info;
     headers = stdenv.mkDerivation rec {
-      name = "node-v${info.node}-headers.tar.xz";
+      name = "node-v${info.node}-headers.tar.gz";
       nativeBuildInputs = [ python3 ];
       src = fetchdep info.deps."src/third_party/electron_node";
       buildPhase = ''