nuspell: 3.1.2 -> 4.0.0, fix license

The license of Nuspell is not GPL-3.0-only but LGPL-3.0-or-later.

Signed-off-by: Masanori Ogino <167209+omasanori@users.noreply.github.com>
This commit is contained in:
Masanori Ogino 2020-10-24 08:23:20 +09:00
parent 50a2f50acb
commit 0075ec3ffa

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "nuspell"; pname = "nuspell";
version = "3.1.2"; version = "4.0.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "nuspell"; owner = "nuspell";
repo = "nuspell"; repo = "nuspell";
rev = "v${version}"; rev = "v${version}";
sha256 = "0wbb6dwmzlsyy224y0liis0azgzwbjdvcyzc31pw1aw6vbp36na6"; sha256 = "1jfnwva2i67i9pyh123a5h2zs5p7gw77qh4w7qkx61jigsyxc5v7";
}; };
nativeBuildInputs = [ cmake pkgconfig ronn ]; nativeBuildInputs = [ cmake pkgconfig ronn ];
@ -31,6 +31,6 @@ stdenv.mkDerivation rec {
description = "Free and open source C++ spell checking library"; description = "Free and open source C++ spell checking library";
homepage = "https://nuspell.github.io/"; homepage = "https://nuspell.github.io/";
maintainers = with maintainers; [ fpletz ]; maintainers = with maintainers; [ fpletz ];
license = licenses.gpl3; license = licenses.lgpl3Plus;
}; };
} }