Merge pull request #112559 from r-ryantm/auto-update/wxsqlite3

wxsqlite3: 4.6.2 -> 4.6.4

authored by

Doron Behar and committed by
GitHub
352382da 03a7b232

+4 -3
+1
pkgs/applications/misc/lenmus/default.nix
··· 46 46 license = licenses.gpl3Plus; 47 47 maintainers = with maintainers; [ ramkromberg ]; 48 48 platforms = with platforms; linux; 49 + broken = stdenv.hostPlatform.isAarch64; 49 50 }; 50 51 }
+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 }