compcert: fix license
The license of CompCert is not a generic "INRIA" license. It is "INRIA Non-Commercial Agreement for the CompCert verified compiler". As unfortunate as it may seem, this is a non-free license (clearly mentioned as such in its preamble). See also #20256.
This commit is contained in:
parent
3370615a7f
commit
8fde5790b4
@ -292,9 +292,10 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
|
|||||||
fullName = "Independent JPEG Group License";
|
fullName = "Independent JPEG Group License";
|
||||||
};
|
};
|
||||||
|
|
||||||
inria = {
|
inria-compcert = {
|
||||||
fullName = "INRIA Non-Commercial License Agreement";
|
fullName = "INRIA Non-Commercial License Agreement for the CompCert verified compiler";
|
||||||
url = "http://compcert.inria.fr/doc/LICENSE";
|
url = "http://compcert.inria.fr/doc/LICENSE";
|
||||||
|
free = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
ipa = spdx {
|
ipa = spdx {
|
||||||
|
@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
|
|||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Formally verified C compiler";
|
description = "Formally verified C compiler";
|
||||||
homepage = "http://compcert.inria.fr";
|
homepage = "http://compcert.inria.fr";
|
||||||
license = licenses.inria;
|
license = licenses.inria-compcert;
|
||||||
platforms = platforms.linux ++
|
platforms = platforms.linux ++
|
||||||
platforms.darwin;
|
platforms.darwin;
|
||||||
maintainers = with maintainers; [ thoughtpolice jwiegley vbgl ];
|
maintainers = with maintainers; [ thoughtpolice jwiegley vbgl ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user