diagrams-builder: remove with statements

This commit is contained in:
Philip Taron
2024-08-18 06:32:22 -07:00
parent 092a9b8df1
commit ebdb16362d
@@ -35,8 +35,7 @@ stdenv.mkDerivation {
nativeBuildInputs = [ makeWrapper ];
buildCommand = with lib;
concatStringsSep "\n" (map exeWrapper backends);
buildCommand = lib.concatStringsSep "\n" (map exeWrapper backends);
# Will be faster to build the wrapper locally then to fetch it from a binary cache.
preferLocalBuild = true;