forked from mirrors/nixpkgs
xterm: Fix license from BSD to 'mit', don't use string
Inspecting source suggests it's MIT-X11; don't see mention of BSD licensing. https://repology.org/metapackage/xterm/information shows we're currently only one marking it as BSD.
This commit is contained in:
parent
73824f1e65
commit
9d2c5010fb
|
@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
meta = {
|
||||
homepage = http://invisible-island.net/xterm;
|
||||
license = "BSD";
|
||||
license = with stdenv.lib.licenses; [ mit ];
|
||||
maintainers = with stdenv.lib.maintainers; [viric vrthra];
|
||||
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue