From 94f9f61f64cec4cdb628ce633e7eea2a5cf83922 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 9 Feb 2021 19:02:58 +0000 Subject: [PATCH 1/2] wxsqlite3: 4.6.2 -> 4.6.4 Update license. --- pkgs/development/libraries/wxsqlite3/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/wxsqlite3/default.nix b/pkgs/development/libraries/wxsqlite3/default.nix index 8acd4e99636..5fdac25eb97 100644 --- a/pkgs/development/libraries/wxsqlite3/default.nix +++ b/pkgs/development/libraries/wxsqlite3/default.nix @@ -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 ]; }; } From 40e4d4d50df435e6c26f8b6d88f31551d544ee9f Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 9 Aug 2021 09:01:01 +0300 Subject: [PATCH 2/2] lenmus: mark as broken for aarch64 --- pkgs/applications/misc/lenmus/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/misc/lenmus/default.nix b/pkgs/applications/misc/lenmus/default.nix index a9aef85753e..1dac72bd0d7 100644 --- a/pkgs/applications/misc/lenmus/default.nix +++ b/pkgs/applications/misc/lenmus/default.nix @@ -46,5 +46,6 @@ stdenv.mkDerivation rec { license = licenses.gpl3Plus; maintainers = with maintainers; [ ramkromberg ]; platforms = with platforms; linux; + broken = stdenv.hostPlatform.isAarch64; }; }