diff options
Diffstat (limited to 'src/bin')
-rwxr-xr-x | src/bin/paku | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/bin/paku b/src/bin/paku index eb89c47..82e1572 100755 --- a/src/bin/paku +++ b/src/bin/paku @@ -296,7 +296,10 @@ if ($action eq 'guix') { # FIXME: parameterize license if ($version->{type} eq 'latest') { print <<~EOF; - (define-public $package->{name} $package->{name}-latest) + (define-public $package->{name} + (package + (inherit $package->{name}-latest) + (name "$package->{name}"))) EOF |