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