summary refs log tree commit diff
path: root/pkgs/servers/home-assistant/frontend.nix
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-01-07 00:20:39 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-01-07 13:33:10 +0100
commit8cb55de7dc8b2c618685fa4aef193f26ffc11201 (patch)
tree99c763673e26bf5c33daf1fd2e1e3a879ef55ba5 /pkgs/servers/home-assistant/frontend.nix
parent7adf9983412578d267e04ebaa73a0ba7e314300f (diff)
downloadnixpkgs-8cb55de7dc8b2c618685fa4aef193f26ffc11201.tar
nixpkgs-8cb55de7dc8b2c618685fa4aef193f26ffc11201.tar.gz
nixpkgs-8cb55de7dc8b2c618685fa4aef193f26ffc11201.tar.bz2
nixpkgs-8cb55de7dc8b2c618685fa4aef193f26ffc11201.tar.lz
nixpkgs-8cb55de7dc8b2c618685fa4aef193f26ffc11201.tar.xz
nixpkgs-8cb55de7dc8b2c618685fa4aef193f26ffc11201.tar.zst
nixpkgs-8cb55de7dc8b2c618685fa4aef193f26ffc11201.zip
home-assistant: don't strip
Neither the home-assistant nor the frontend contain strippable binaries,
but the stripping process will still iterate over 6600+ files and notice
that they're not in a strippable format.

On my 6C/12T desktop CPU this takes slightly over two minutes.
Diffstat (limited to 'pkgs/servers/home-assistant/frontend.nix')
-rw-r--r--pkgs/servers/home-assistant/frontend.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/servers/home-assistant/frontend.nix b/pkgs/servers/home-assistant/frontend.nix
index d8df190558a..9606f8645a1 100644
--- a/pkgs/servers/home-assistant/frontend.nix
+++ b/pkgs/servers/home-assistant/frontend.nix
@@ -11,6 +11,9 @@ buildPythonPackage rec {
     sha256 = "sha256-3JMWugAiVDq/NBgX8ft2Bchim2g493jy7wZvvXrX+Ws=";
   };
 
+  # there is nothing to strip in this package
+  dontStrip = true;
+
   # no Python tests implemented
   doCheck = false;