about summary refs log tree commit diff
path: root/pkgs/development/tools/tabnine
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2023-08-10 12:11:22 +0000
committerJan Malakhovski <oxij@oxij.org>2023-08-12 08:29:55 +0000
commitb358ebd870d409ed098e27b681d31000cb1121c9 (patch)
tree782cf678466e76459fa741ba21a1e3342968cc07 /pkgs/development/tools/tabnine
parent7ad1b2d4e1eb8f7b127271f2540db60eee0c6be0 (diff)
treewide: replace `setSourceRoot = "sourceRoot=$PWD"` and similar with `sourceRoot = "."`
Diffstat (limited to 'pkgs/development/tools/tabnine')
-rw-r--r--pkgs/development/tools/tabnine/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/tabnine/default.nix b/pkgs/development/tools/tabnine/default.nix
index fcd00726ba775..4426e2bbf81fc 100644
--- a/pkgs/development/tools/tabnine/default.nix
+++ b/pkgs/development/tools/tabnine/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
 
   # Work around the "unpacker appears to have produced no directories"
   # case that happens when the archive doesn't have a subdirectory.
-  setSourceRoot = "sourceRoot=`pwd`";
+  sourceRoot = ".";
 
   nativeBuildInputs = [ unzip ];