From 6357546241fd2d41922775d3cfc49ec5d3b188a5 Mon Sep 17 00:00:00 2001 From: Victor Fuentes Date: Tue, 17 Jan 2023 13:32:45 -0500 Subject: [PATCH] Consistent license --- data/dev.vlinkz.NixSoftwareCenter.metainfo.xml.in.in | 2 +- meson.build | 2 +- src/ui/about.rs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/data/dev.vlinkz.NixSoftwareCenter.metainfo.xml.in.in b/data/dev.vlinkz.NixSoftwareCenter.metainfo.xml.in.in index f945361..bd94255 100644 --- a/data/dev.vlinkz.NixSoftwareCenter.metainfo.xml.in.in +++ b/data/dev.vlinkz.NixSoftwareCenter.metainfo.xml.in.in @@ -2,7 +2,7 @@ @app-id@ CC0-1.0 - GPL-3.0-only + GPL-3.0-or-later Nix Software Center A simple application to manage your NixOS packages. diff --git a/meson.build b/meson.build index bc8ab73..727b196 100644 --- a/meson.build +++ b/meson.build @@ -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') diff --git a/src/ui/about.rs b/src/ui/about.rs index 9251ba8..d45fced 100644 --- a/src/ui/about.rs +++ b/src/ui/about.rs @@ -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 { } } -} \ No newline at end of file +}