mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
nix-generate-from-cpan: quote homepage, stdenv.lib -> lib
This commit is contained in:
parent
9f8b7cb4a8
commit
f12ad54760
@ -309,7 +309,7 @@ sub render_license {
|
|||||||
# "GPL v2" or to "GPL v2 or later".
|
# "GPL v2" or to "GPL v2 or later".
|
||||||
my $amb = 0;
|
my $amb = 0;
|
||||||
|
|
||||||
# Whether the license is available inside `stdenv.lib.licenses`.
|
# Whether the license is available inside `lib.licenses`.
|
||||||
my $in_set = 1;
|
my $in_set = 1;
|
||||||
|
|
||||||
my $nix_license = $LICENSE_MAP{$cpan_license};
|
my $nix_license = $LICENSE_MAP{$cpan_license};
|
||||||
@ -331,7 +331,7 @@ sub render_license {
|
|||||||
# Avoid defining the license line.
|
# Avoid defining the license line.
|
||||||
}
|
}
|
||||||
elsif ($in_set) {
|
elsif ($in_set) {
|
||||||
my $lic = 'stdenv.lib.licenses';
|
my $lic = 'lib.licenses';
|
||||||
if ( @$licenses == 1 ) {
|
if ( @$licenses == 1 ) {
|
||||||
$license_line = "$lic.$licenses->[0]";
|
$license_line = "$lic.$licenses->[0]";
|
||||||
}
|
}
|
||||||
@ -449,7 +449,7 @@ print <<EOF;
|
|||||||
meta = {
|
meta = {
|
||||||
EOF
|
EOF
|
||||||
print <<EOF if defined $homepage;
|
print <<EOF if defined $homepage;
|
||||||
homepage = $homepage;
|
homepage = "$homepage";
|
||||||
EOF
|
EOF
|
||||||
print <<EOF if defined $description && $description ne "Unknown";
|
print <<EOF if defined $description && $description ne "Unknown";
|
||||||
description = "$description";
|
description = "$description";
|
||||||
|
Loading…
Reference in New Issue
Block a user