forked from mirrors/nixpkgs
wxwidgets: add wxWindows license
all wx{GTK,widgets,windows,mac,etc}* packages use the wxWindows license.
This commit is contained in:
parent
3cc4bfa7a3
commit
6f3085d572
|
@ -531,6 +531,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
|
||||||
fullName = "Do What The F*ck You Want To Public License";
|
fullName = "Do What The F*ck You Want To Public License";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
wxWindows = spdx {
|
||||||
|
spdxId = "WXwindows";
|
||||||
|
fullName = "wxWindows Library Licence, Version 3.1";
|
||||||
|
};
|
||||||
|
|
||||||
zlib = spdx {
|
zlib = spdx {
|
||||||
spdxId = "Zlib";
|
spdxId = "Zlib";
|
||||||
fullName = "zlib License";
|
fullName = "zlib License";
|
||||||
|
|
|
@ -66,5 +66,6 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
license = licenses.wxWindows;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -67,6 +67,7 @@ stdenv.mkDerivation {
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
platforms = with stdenv.lib.platforms; darwin ++ linux;
|
platforms = with platforms; darwin ++ linux;
|
||||||
|
license = licenses.wxWindows;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -78,6 +78,7 @@ stdenv.mkDerivation {
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
platforms = with stdenv.lib.platforms; darwin ++ linux;
|
platforms = with platforms; darwin ++ linux;
|
||||||
|
license = licenses.wxWindows;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -100,6 +100,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
platforms = platforms.darwin;
|
platforms = platforms.darwin;
|
||||||
|
license = licenses.wxWindows;
|
||||||
maintainers = [ maintainers.lnl7 ];
|
maintainers = [ maintainers.lnl7 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue