wshowkeys: Fix the license
The project license is the GPL3 and only portions are MIT licensed.
This commit is contained in:
parent
7298f524e5
commit
8a1fdce8d3
|
@ -28,7 +28,9 @@ in stdenv.mkDerivation rec {
|
||||||
setuid binary (use "programs.wshowkeys.enable = true;").
|
setuid binary (use "programs.wshowkeys.enable = true;").
|
||||||
'';
|
'';
|
||||||
homepage = "https://git.sr.ht/~sircmpwn/wshowkeys";
|
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;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ primeos berbiche ];
|
maintainers = with maintainers; [ primeos berbiche ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue