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:
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;
|
||||
|
|
Loading…
Reference in a new issue