about summary refs log tree commit diff
path: root/pkgs/tools/misc/ent
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/tools/misc/ent
parent7ad1b2d4e1eb8f7b127271f2540db60eee0c6be0 (diff)
treewide: replace `setSourceRoot = "sourceRoot=$PWD"` and similar with `sourceRoot = "."`
Diffstat (limited to 'pkgs/tools/misc/ent')
-rw-r--r--pkgs/tools/misc/ent/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/misc/ent/default.nix b/pkgs/tools/misc/ent/default.nix
index 6904d46677214..bd9dfeafea6bd 100644
--- a/pkgs/tools/misc/ent/default.nix
+++ b/pkgs/tools/misc/ent/default.nix
@@ -11,7 +11,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 ];