Consistent license

This commit is contained in:
Victor Fuentes 2023-01-17 13:32:45 -05:00
parent 50956ce8cc
commit 6357546241
No known key found for this signature in database
GPG Key ID: 0A88B68D6A9ACAE0
3 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
<component type="desktop-application">
<id>@app-id@</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0-only</project_license>
<project_license>GPL-3.0-or-later</project_license>
<name>Nix Software Center</name>
<summary>A simple application to manage your NixOS packages.</summary>
<description>

View File

@ -3,7 +3,7 @@ project(
'rust',
version: '0.1.0',
meson_version: '>= 0.59',
license: 'GPL-3.0-only',
license: 'GPL-3.0',
)
i18n = import('i18n')

View File

@ -32,7 +32,7 @@ impl SimpleComponent for AboutPageModel {
set_developer_name: "Victor Fuentes",
set_version: config::VERSION,
set_issue_url: "https://github.com/vlinkz/nix-software-center/issues",
set_license_type: gtk::License::Gpl30Only,
set_license_type: gtk::License::Gpl30,
set_website: "https://github.com/vlinkz/nix-software-center",
set_developers: &["Victor Fuentes https://github.com/vlinkz"],
}
@ -60,4 +60,4 @@ impl SimpleComponent for AboutPageModel {
}
}
}
}