wxsqlite3: 4.6.2 -> 4.6.4

Update license.

authored by

R. RyanTM and committed by
Doron Behar
94f9f61f 50d34017

+3 -3
+3 -3
pkgs/development/libraries/wxsqlite3/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "wxsqlite3"; 11 - version = "4.6.2"; 11 + version = "4.6.4"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "utelle"; 15 15 repo = "wxsqlite3"; 16 16 rev = "v${version}"; 17 - sha256 = "10jlb4p3ahck9apcy2c2mrrjynv4c1dfwwbf1vwd8dl17pgv4kgs"; 17 + sha256 = "sha256-fIm8xbNP7pjzvfBn7NgYmUtbVVh2aiaXQVANJQnrWCs="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ autoreconfHook ]; ··· 27 27 description = "A C++ wrapper around the public domain SQLite 3.x for wxWidgets"; 28 28 platforms = platforms.unix; 29 29 maintainers = with maintainers; [ vrthra ]; 30 - license = [ licenses.lgpl2 ]; 30 + license = [ licenses.lgpl3Plus licenses.gpl3Plus ]; 31 31 }; 32 32 }