about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrey Golovizin <ag@sologoc.com>2021-08-03 11:59:48 +0200
committerAndrey Golovizin <ag@sologoc.com>2021-08-04 10:10:17 +0200
commitca06b2e124a900cd0efa2381fa20c575447c5883 (patch)
tree95b46955e5825b4d39d25b76ba8551ac8f142511
parent9b06d00d8b586157cd24eee88aa7fd23d9ba56af (diff)
dictd-dbs: add dontUnpack = true
Fixes the "variable $src or $srcs should point to the source" error.
-rw-r--r--pkgs/servers/dict/dictd-db-collector.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/servers/dict/dictd-db-collector.nix b/pkgs/servers/dict/dictd-db-collector.nix
index faf0fd24831cc..a0ad507c46644 100644
--- a/pkgs/servers/dict/dictd-db-collector.nix
+++ b/pkgs/servers/dict/dictd-db-collector.nix
@@ -78,5 +78,6 @@ stdenv.mkDerivation {
 
   buildInputs = [ dict ];
 
+  dontUnpack = true;
   inherit installPhase;
 })