lol

qcoro: 0.4.0 -> 0.6.0

And fix compilation on aarch64 by using gcc11Stdenv.

Co-authored-by: Samuel Dionne-Riel <samuel@dionne-riel>

authored by

Brian McKenna
Samuel Dionne-Riel
and committed by
Samuel Dionne-Riel
28cbbb8b 94716867

+10 -6
+10 -6
pkgs/development/libraries/qcoro/default.nix
··· 1 - { lib 2 - , mkDerivation 1 + { stdenv 2 + , gcc11Stdenv 3 + , lib 3 4 , fetchFromGitHub 4 5 , cmake 5 6 , libpthreadstubs 6 7 , qtbase 8 + , qtwebsockets 9 + , wrapQtAppsHook 7 10 }: 8 11 9 - mkDerivation rec { 12 + gcc11Stdenv.mkDerivation rec { 10 13 pname = "qcoro"; 11 - version = "0.4.0"; 14 + version = "0.6.0"; 12 15 13 16 src = fetchFromGitHub { 14 17 owner = "danvratil"; 15 18 repo = "qcoro"; 16 19 rev = "v${version}"; 17 - sha256 = "sha256-RVpyL+BklX8Wyk9Xj9UyuvNK5Vev8ZsrOSMxX1HtcHU="; 20 + sha256 = "sha256-6kRWBzspwsO0Q6/8gQUr69DJjmkPa3lWrKTmSgVn6V4="; 18 21 }; 19 22 20 23 outputs = [ "out" "dev" ]; 21 24 22 25 nativeBuildInputs = [ 26 + wrapQtAppsHook 23 27 cmake 24 28 ]; 25 29 26 30 buildInputs = [ 27 31 qtbase 32 + qtwebsockets 28 33 libpthreadstubs 29 34 ]; 30 35 ··· 34 39 license = licenses.mit; 35 40 maintainers = with maintainers; [ smitop ]; 36 41 platforms = platforms.linux; 37 - badPlatforms = platforms.aarch64; 38 42 }; 39 43 }