aboutsummaryrefslogtreecommitdiff
path: root/nixos/lib/make-iso9660-image.nix
diff options
context:
space:
mode:
authorEmery Hemingway <ehmry@posteo.net>2020-11-18 13:58:24 +0100
committerEmery Hemingway <ehmry@posteo.net>2020-11-18 14:05:30 +0100
commit7e25b7113271cf80eb0f950da2e1aa7b382eb268 (patch)
treea59dcc1944a63a5a1f12e4a896786a8cf6c933c4 /nixos/lib/make-iso9660-image.nix
parent6e9e1a0c42edc544353859837398af7dde793fe8 (diff)
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.
Diffstat (limited to 'nixos/lib/make-iso9660-image.nix')
-rw-r--r--nixos/lib/make-iso9660-image.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/lib/make-iso9660-image.nix b/nixos/lib/make-iso9660-image.nix
index 6a0e0e7c635a..549530965f6e 100644
--- a/nixos/lib/make-iso9660-image.nix
+++ b/nixos/lib/make-iso9660-image.nix
@@ -48,7 +48,7 @@ assert usbBootable -> isohybridMbrImage != "";
stdenv.mkDerivation {
name = isoName;
builder = ./make-iso9660-image.sh;
- buildInputs = [ xorriso syslinux zstd libossp_uuid ];
+ nativeBuildInputs = [ xorriso syslinux zstd libossp_uuid ];
inherit isoName bootable bootImage compressImage volumeID efiBootImage efiBootable isohybridMbrImage usbBootable;