mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
system: Use a valid license as the dummy license.
* gnu/system/images/wsl2.scm (dummy-package)[license]: Do not use #F.
This commit is contained in:
parent
7c2b09f924
commit
9c97647446
1 changed files with 2 additions and 1 deletions
|
@ -33,6 +33,7 @@ (define-module (gnu system images wsl2)
|
|||
#:use-module (guix build-system trivial)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix packages)
|
||||
#:use-module ((guix licenses) #:select (fsdg-compatible))
|
||||
#:export (wsl-boot-program
|
||||
wsl-os
|
||||
wsl2-image))
|
||||
|
@ -113,7 +114,7 @@ (define dummy-package
|
|||
(home-page #f)
|
||||
(synopsis #f)
|
||||
(description #f)
|
||||
(license #f)))
|
||||
(license (fsdg-compatible "dummy"))))
|
||||
|
||||
(define dummy-bootloader
|
||||
(bootloader
|
||||
|
|
Loading…
Reference in a new issue