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

wxsqlite3: 4.6.2 -> 4.6.4
This commit is contained in:
Doron Behar 2021-08-09 06:23:44 +00:00 committed by GitHub
commit 352382dad3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View file

@ -46,5 +46,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus;
maintainers = with maintainers; [ ramkromberg ];
platforms = with platforms; linux;
broken = stdenv.hostPlatform.isAarch64;
};
}

View file

@ -8,13 +8,13 @@
stdenv.mkDerivation rec {
pname = "wxsqlite3";
version = "4.6.2";
version = "4.6.4";
src = fetchFromGitHub {
owner = "utelle";
repo = "wxsqlite3";
rev = "v${version}";
sha256 = "10jlb4p3ahck9apcy2c2mrrjynv4c1dfwwbf1vwd8dl17pgv4kgs";
sha256 = "sha256-fIm8xbNP7pjzvfBn7NgYmUtbVVh2aiaXQVANJQnrWCs=";
};
nativeBuildInputs = [ autoreconfHook ];
@ -27,6 +27,6 @@ stdenv.mkDerivation rec {
description = "A C++ wrapper around the public domain SQLite 3.x for wxWidgets";
platforms = platforms.unix;
maintainers = with maintainers; [ vrthra ];
license = [ licenses.lgpl2 ];
license = [ licenses.lgpl3Plus licenses.gpl3Plus ];
};
}