Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

nixos: use nativeBuildInputs in make- iso9660-image and system-tarball

The tools used to create iso9660 images and tarballs are independent of
the platform of the closure contained within.

+2 -2
+1 -1
nixos/lib/make-iso9660-image.nix
··· 48 48 stdenv.mkDerivation { 49 49 name = isoName; 50 50 builder = ./make-iso9660-image.sh; 51 - buildInputs = [ xorriso syslinux zstd libossp_uuid ]; 51 + nativeBuildInputs = [ xorriso syslinux zstd libossp_uuid ]; 52 52 53 53 inherit isoName bootable bootImage compressImage volumeID efiBootImage efiBootable isohybridMbrImage usbBootable; 54 54
+1 -1
nixos/lib/make-system-tarball.nix
··· 37 37 stdenv.mkDerivation { 38 38 name = "tarball"; 39 39 builder = ./make-system-tarball.sh; 40 - buildInputs = extraInputs; 40 + nativeBuildInputs = extraInputs; 41 41 42 42 inherit fileName extraArgs extraCommands compressCommand; 43 43