diff options
| author | Rutherther <rutherther@ditigal.xyz> | 2025-12-16 12:12:37 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2025-12-22 23:00:44 +0100 |
| commit | d226cc49339df6c2c13fdb9c2149051f418212ee (patch) | |
| tree | 61303a98899aca63f41451bddcd06fd1f943f4ba /gnu/system | |
| parent | 86a6006f41141fcd78cec25e31f93ea85e363c73 (diff) | |
image: system-iso9660-image: Propagate image-name to derivation name.
* gnu/system/image.scm (system-iso9660-image): Use name from image-name
instead of hardcoded image.iso.
Change-Id: I3cea3857729c2eb7d6728f650db7fb33cf4c8c8a
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/system')
| -rw-r--r-- | gnu/system/image.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/system/image.scm b/gnu/system/image.scm index df7fa2c3905..7be6a796880 100644 --- a/gnu/system/image.scm +++ b/gnu/system/image.scm | |||
| @@ -674,6 +674,10 @@ used in the image. " | |||
| 674 | (uuid-bytevector (partition-uuid partition))))) | 674 | (uuid-bytevector (partition-uuid partition))))) |
| 675 | 675 | ||
| 676 | (let* ((os (image-operating-system image)) | 676 | (let* ((os (image-operating-system image)) |
| 677 | (image-name (image-name image)) | ||
| 678 | (name (if image-name | ||
| 679 | (symbol->string image-name) | ||
| 680 | name)) | ||
| 677 | (bootloader (bootloader-package bootloader)) | 681 | (bootloader (bootloader-package bootloader)) |
| 678 | (compression? (image-compression? image)) | 682 | (compression? (image-compression? image)) |
| 679 | (substitutable? (image-substitutable? image)) | 683 | (substitutable? (image-substitutable? image)) |
