Unverified Commit 63a7d5b3 authored by Arthur Gautier's avatar Arthur Gautier Committed by GitHub
Browse files

gmp: fixup license of v6 (#199052)

* gmp: fixup license of v6

As per https://gmplib.org/:
```
Since version 6, GMP is distributed under the dual licenses, GNU LGPL v3 and GNU GPL v2. These licenses make the library free to use, share, and improve, and allow you to pass on the result. The GNU licenses give freedoms, but also set firm restrictions on the use with non-free programs.
```

The license changed in GMP v6.

* Fixup license versions
parent decf24d6
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -61,7 +61,10 @@ let self = stdenv.mkDerivation rec {
  meta = with lib; {
    homepage = "https://gmplib.org/";
    description = "GNU multiple precision arithmetic library";
    license = licenses.gpl3Plus;
    license = with licenses; [
      lgpl3Only
      gpl2Only
    ];

    longDescription =
      '' GMP is a free library for arbitrary precision arithmetic, operating