about summary refs log tree commit diff
path: root/pkgs/tools/wayland/wshowkeys
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2020-10-27 13:44:13 +0100
committerMichael Weiss <dev.primeos@gmail.com>2020-10-27 13:45:51 +0100
commit8a1fdce8d3482b60ac13678a8eab838777b51549 (patch)
treec190d4788ea46d60d82198bb5cd6c6ae3bc5bb10 /pkgs/tools/wayland/wshowkeys
parent7298f524e5800b8969e401fb6a69e04d724f8c4f (diff)
downloadnixlib-8a1fdce8d3482b60ac13678a8eab838777b51549.tar
nixlib-8a1fdce8d3482b60ac13678a8eab838777b51549.tar.gz
nixlib-8a1fdce8d3482b60ac13678a8eab838777b51549.tar.bz2
nixlib-8a1fdce8d3482b60ac13678a8eab838777b51549.tar.lz
nixlib-8a1fdce8d3482b60ac13678a8eab838777b51549.tar.xz
nixlib-8a1fdce8d3482b60ac13678a8eab838777b51549.tar.zst
nixlib-8a1fdce8d3482b60ac13678a8eab838777b51549.zip
wshowkeys: Fix the license
The project license is the GPL3 and only portions are MIT licensed.
Diffstat (limited to 'pkgs/tools/wayland/wshowkeys')
-rw-r--r--pkgs/tools/wayland/wshowkeys/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/wayland/wshowkeys/default.nix b/pkgs/tools/wayland/wshowkeys/default.nix
index f2519725594c..0db02990c036 100644
--- a/pkgs/tools/wayland/wshowkeys/default.nix
+++ b/pkgs/tools/wayland/wshowkeys/default.nix
@@ -28,7 +28,9 @@ in stdenv.mkDerivation rec {
       setuid binary (use "programs.wshowkeys.enable = true;").
     '';
     homepage = "https://git.sr.ht/~sircmpwn/wshowkeys";
-    license = licenses.mit;
+    license = with licenses; [ gpl3Only mit ];
+    # Some portions of the code are taken from Sway which is MIT licensed.
+    # TODO: gpl3Only or gpl3Plus (ask upstream)?
     platforms = platforms.unix;
     maintainers = with maintainers; [ primeos berbiche ];
   };