Avoid top-level with ...;
in pkgs/build-support/release/default.nix
This commit is contained in:
parent
7c4a71081c
commit
f36441dbd8
1 changed files with 20 additions and 2 deletions
|
@ -1,6 +1,24 @@
|
|||
{ lib, pkgs }:
|
||||
|
||||
with pkgs;
|
||||
let
|
||||
inherit (lib) optionalString;
|
||||
|
||||
inherit (pkgs)
|
||||
autoconf
|
||||
automake
|
||||
checkinstall
|
||||
clang-analyzer
|
||||
cov-build
|
||||
enableGCOVInstrumentation
|
||||
lcov
|
||||
libtool
|
||||
makeGCOVReport
|
||||
runCommand
|
||||
stdenv
|
||||
vmTools
|
||||
xz
|
||||
;
|
||||
in
|
||||
|
||||
rec {
|
||||
|
||||
|
@ -91,7 +109,7 @@ rec {
|
|||
dontConfigure = true;
|
||||
dontBuild = true;
|
||||
|
||||
patchPhase = lib.optionalString isNixOS ''
|
||||
patchPhase = optionalString isNixOS ''
|
||||
touch .update-on-nixos-rebuild
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue