1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

diagrams-builder: remove with statements

This commit is contained in:
Philip Taron 2024-08-16 14:16:33 -07:00
parent 092a9b8df1
commit ebdb16362d
No known key found for this signature in database

View file

@ -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;