Merge pull request #316082 from JoaquinTrinanes/fix_nu_plugins_license

nushellPlugins: fix incorrect license
This commit is contained in:
Yt 2024-06-01 22:23:14 +00:00 committed by GitHub
commit 28f30464c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ rustPlatform.buildRustPackage rec {
description = "A formats plugin for Nushell"; description = "A formats plugin for Nushell";
mainProgram = "nu_plugin_formats"; mainProgram = "nu_plugin_formats";
homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_formats"; homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_formats";
license = licenses.mpl20; license = licenses.mit;
maintainers = with maintainers; [ viraptor aidalgol ]; maintainers = with maintainers; [ viraptor aidalgol ];
platforms = with platforms; all; platforms = with platforms; all;
}; };

View File

@ -31,7 +31,7 @@ rustPlatform.buildRustPackage rec {
description = "A git status plugin for Nushell"; description = "A git status plugin for Nushell";
mainProgram = "nu_plugin_gstat"; mainProgram = "nu_plugin_gstat";
homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_gstat"; homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_gstat";
license = licenses.mpl20; license = licenses.mit;
maintainers = with maintainers; [ mrkkrp aidalgol ]; maintainers = with maintainers; [ mrkkrp aidalgol ];
platforms = with platforms; all; platforms = with platforms; all;
}; };

View File

@ -29,7 +29,7 @@ rustPlatform.buildRustPackage {
description = "A Nushell plugin to query JSON, XML, and various web data"; description = "A Nushell plugin to query JSON, XML, and various web data";
mainProgram = "nu_plugin_query"; mainProgram = "nu_plugin_query";
homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_query"; homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_query";
license = licenses.mpl20; license = licenses.mit;
maintainers = with maintainers; [ happysalada aidalgol ]; maintainers = with maintainers; [ happysalada aidalgol ];
platforms = with platforms; all; platforms = with platforms; all;
}; };