diff options
Diffstat (limited to '')
-rwxr-xr-x | src/bin/paku | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bin/paku b/src/bin/paku index 1e7753e..67d92f3 100755 --- a/src/bin/paku +++ b/src/bin/paku @@ -258,6 +258,7 @@ sub emit_guix() { for my $pkg (@{$json->{packages}}) { my $long = $pkg->{'long-description'}; $long =~ s/^(.)/ $1/gm; + my $ver = $pkg->{version} =~ s/^v//r; my $name = $pkg->{name} . ( $pkg->{label} eq 'latest' ? '' : "-$pkg->{label}" @@ -266,8 +267,8 @@ sub emit_guix() { print <<~EOF; (define-public $name (package - (name "$name") - (version "$pkg->{version}") + (name "$pkg->{name}") + (version "$ver") (source (origin (method url-fetch) |