about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/lens
diff options
context:
space:
mode:
authorMartin Wurm <martin.wurm@mart-w.de>2023-02-20 22:47:02 +0100
committerAlyssa Ross <hi@alyssa.is>2023-05-22 09:46:14 +0000
commitd79d7bdbf43df9aa19f3c3234c0729c54cee6105 (patch)
tree3084b45e973755ee72ae540ec0cf90dc983975e4 /pkgs/applications/networking/cluster/lens
parenta4b25ea80898ea87ec2427719f2ec2dee427019a (diff)
lens: Change lens' listed license from MIT to their own proprietary license.
Although Lens is based on a free core component ("OpenLens"), the tarballs
provided by Mirantis include a proprietary version of Lens that requires
a subscription.

As the proprietary option offers additional features, it would not be wise
to simply rewrite the derivation and base it on the FOSS source code.
Instead, implementing a new derivation for OpenLens is likely the better
approach.
Diffstat (limited to 'pkgs/applications/networking/cluster/lens')
-rw-r--r--pkgs/applications/networking/cluster/lens/darwin.nix2
-rw-r--r--pkgs/applications/networking/cluster/lens/linux.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/cluster/lens/darwin.nix b/pkgs/applications/networking/cluster/lens/darwin.nix
index e64bcf8f95fcd..d9d46895d379d 100644
--- a/pkgs/applications/networking/cluster/lens/darwin.nix
+++ b/pkgs/applications/networking/cluster/lens/darwin.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "The Kubernetes IDE";
     homepage = "https://k8slens.dev/";
-    license = licenses.mit;
+    license = licenses.lens;
     maintainers = with maintainers; [ dbirks ];
     platforms = [ "aarch64-darwin" ];
   };
diff --git a/pkgs/applications/networking/cluster/lens/linux.nix b/pkgs/applications/networking/cluster/lens/linux.nix
index cd75bad0a0f38..503fb36860ce3 100644
--- a/pkgs/applications/networking/cluster/lens/linux.nix
+++ b/pkgs/applications/networking/cluster/lens/linux.nix
@@ -37,7 +37,7 @@ appimageTools.wrapType2 {
   meta = with lib; {
     description = "The Kubernetes IDE";
     homepage = "https://k8slens.dev/";
-    license = licenses.mit;
+    license = licenses.lens;
     maintainers = with maintainers; [ dbirks RossComputerGuy ];
     platforms = [ "x86_64-linux" ];
   };