about summary refs log tree commit diff
path: root/pkgs/servers/search
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/servers/search
parent7ad1b2d4e1eb8f7b127271f2540db60eee0c6be0 (diff)
downloadnixlib-b358ebd870d409ed098e27b681d31000cb1121c9.tar
nixlib-b358ebd870d409ed098e27b681d31000cb1121c9.tar.gz
nixlib-b358ebd870d409ed098e27b681d31000cb1121c9.tar.bz2
nixlib-b358ebd870d409ed098e27b681d31000cb1121c9.tar.lz
nixlib-b358ebd870d409ed098e27b681d31000cb1121c9.tar.xz
nixlib-b358ebd870d409ed098e27b681d31000cb1121c9.tar.zst
nixlib-b358ebd870d409ed098e27b681d31000cb1121c9.zip
treewide: replace `setSourceRoot = "sourceRoot=$PWD"` and similar with `sourceRoot = "."`
Diffstat (limited to 'pkgs/servers/search')
-rw-r--r--pkgs/servers/search/elasticsearch/plugins.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/search/elasticsearch/plugins.nix b/pkgs/servers/search/elasticsearch/plugins.nix
index 8c2ff568df31..c23b5ad7a2bd 100644
--- a/pkgs/servers/search/elasticsearch/plugins.nix
+++ b/pkgs/servers/search/elasticsearch/plugins.nix
@@ -21,7 +21,7 @@ let
       dontUnpack = true;
       # 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 ];
       meta = a.meta // {
         platforms = elasticsearch.meta.platforms;