Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 9e2d4286 6234dd88

+16 -12
+2 -2
pkgs/applications/networking/instant-messengers/cinny/default.nix
··· 4 4 configOverrides = writeText "cinny-config-overrides.json" (builtins.toJSON conf); 5 5 in stdenv.mkDerivation rec { 6 6 pname = "cinny"; 7 - version = "2.0.4"; 7 + version = "2.1.1"; 8 8 9 9 src = fetchurl { 10 10 url = "https://github.com/ajbura/cinny/releases/download/v${version}/cinny-v${version}.tar.gz"; 11 - sha256 = "0p5s25nkjs9514a16c7kl0m78vn5f14mv6nbi79yz0sxb7hc12qg"; 11 + sha256 = "0qzg790yd23ja3a782ga085vgd5vvh7rgmdy8kpvc3wf8plvw5nm"; 12 12 }; 13 13 14 14 installPhase = ''
+2 -2
pkgs/applications/networking/remote/freerdp/default.nix
··· 52 52 in 53 53 stdenv.mkDerivation rec { 54 54 pname = "freerdp"; 55 - version = "2.7.0"; 55 + version = "2.8.0"; 56 56 57 57 src = fetchFromGitHub { 58 58 owner = "FreeRDP"; 59 59 repo = "FreeRDP"; 60 60 rev = version; 61 - sha256 = "sha256-XBYRhbwknVa8eXxk31b7n9gMWBcTjCecDN+j2FGcpw0="; 61 + sha256 = "sha256-bVq/99jMkxTjckMjWoK4pBa0jD/AYezgKUPJziNSqI0="; 62 62 }; 63 63 64 64 postPatch = ''
+12 -8
pkgs/development/tools/build-managers/bmake/default.nix
··· 8 8 , pkgsMusl # for passthru.tests 9 9 }: 10 10 11 - stdenv.mkDerivation rec { 11 + stdenv.mkDerivation (finalAttrs: { 12 12 pname = "bmake"; 13 - version = "20220208"; 13 + version = "20220726"; 14 14 15 15 src = fetchurl { 16 - url = "http://www.crufty.net/ftp/pub/sjg/${pname}-${version}.tar.gz"; 17 - hash = "sha256-ewDB4UYrLh5Upk2ND88n/HfursPxOSDv+NlST/BZ1to="; 16 + url = "http://www.crufty.net/ftp/pub/sjg/${finalAttrs.pname}-${finalAttrs.version}.tar.gz"; 17 + hash = "sha256-G/N3B4lyJyHcp7C/+K/EqVINog8CGbt7xSNQrwEz8KA="; 18 18 }; 19 19 20 20 # Make tests work with musl ··· 60 60 ]; 61 61 62 62 # Disabled tests: 63 + # opt-chdir: ofborg complains about it somehow 64 + # opt-keep-going-indirect: not yet known 63 65 # varmod-localtime: musl doesn't support TZDIR and this test relies on impure, 64 66 # implicit paths 65 - # opt-chdir: ofborg complains about it somehow 66 - BROKEN_TESTS = "varmod-localtime opt-chdir"; 67 + BROKEN_TESTS = builtins.concatStringsSep " " [ 68 + "opt-chdir" 69 + "opt-keep-going-indirect" 70 + "varmod-localtime" 71 + ]; 67 72 68 73 buildPhase = '' 69 74 runHook preBuild ··· 105 110 license = licenses.bsd3; 106 111 maintainers = with maintainers; [ thoughtpolice AndersonTorres ]; 107 112 platforms = platforms.unix; 108 - broken = with stdenv; isAarch64 && !isDarwin; # ofborg complains 109 113 }; 110 114 111 115 passthru.tests.bmakeMusl = pkgsMusl.bmake; 112 - } 116 + }) 113 117 # TODO: report the quirks and patches to bmake devteam (especially the Musl one)