summaryrefslogtreecommitdiff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorJoaquín Triñanes <hi@joaquint.io>2024-05-31 08:49:55 +0200
committerJoaquín Triñanes <hi@joaquint.io>2024-05-31 08:55:59 +0200
commit5ff8d5cbe7800a81ab893c6f3efe71a329b035be (patch)
tree5f2ab00bab975f8b8d82835300bd1855fe1b5af2 /pkgs/shells
parentMerge pull request #316043 from r-ryantm/auto-update/open-policy-agent (diff)
downloadnixpkgs-5ff8d5cbe7800a81ab893c6f3efe71a329b035be.tar.gz
nushellPlugins: fix incorrect license
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/nushell/plugins/formats.nix2
-rw-r--r--pkgs/shells/nushell/plugins/gstat.nix2
-rw-r--r--pkgs/shells/nushell/plugins/query.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/shells/nushell/plugins/formats.nix b/pkgs/shells/nushell/plugins/formats.nix
index 7cca0840f47a..b108c633840e 100644
--- a/pkgs/shells/nushell/plugins/formats.nix
+++ b/pkgs/shells/nushell/plugins/formats.nix
@@ -31,7 +31,7 @@ rustPlatform.buildRustPackage rec {
description = "A formats plugin for Nushell";
mainProgram = "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 ];
platforms = with platforms; all;
};
diff --git a/pkgs/shells/nushell/plugins/gstat.nix b/pkgs/shells/nushell/plugins/gstat.nix
index b05a000d5785..32b93ba76535 100644
--- a/pkgs/shells/nushell/plugins/gstat.nix
+++ b/pkgs/shells/nushell/plugins/gstat.nix
@@ -31,7 +31,7 @@ rustPlatform.buildRustPackage rec {
description = "A git status plugin for Nushell";
mainProgram = "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 ];
platforms = with platforms; all;
};
diff --git a/pkgs/shells/nushell/plugins/query.nix b/pkgs/shells/nushell/plugins/query.nix
index b20af7bbd3b8..b6792d42ceab 100644
--- a/pkgs/shells/nushell/plugins/query.nix
+++ b/pkgs/shells/nushell/plugins/query.nix
@@ -29,7 +29,7 @@ rustPlatform.buildRustPackage {
description = "A Nushell plugin to query JSON, XML, and various web data";
mainProgram = "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 ];
platforms = with platforms; all;
};