Merge staging-next into staging

This commit is contained in:
github-actions[bot] 2022-08-08 06:01:49 +00:00 committed by GitHub
commit 9e2d428683
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 12 deletions

View file

@ -4,11 +4,11 @@ let
configOverrides = writeText "cinny-config-overrides.json" (builtins.toJSON conf); configOverrides = writeText "cinny-config-overrides.json" (builtins.toJSON conf);
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
pname = "cinny"; pname = "cinny";
version = "2.0.4"; version = "2.1.1";
src = fetchurl { src = fetchurl {
url = "https://github.com/ajbura/cinny/releases/download/v${version}/cinny-v${version}.tar.gz"; url = "https://github.com/ajbura/cinny/releases/download/v${version}/cinny-v${version}.tar.gz";
sha256 = "0p5s25nkjs9514a16c7kl0m78vn5f14mv6nbi79yz0sxb7hc12qg"; sha256 = "0qzg790yd23ja3a782ga085vgd5vvh7rgmdy8kpvc3wf8plvw5nm";
}; };
installPhase = '' installPhase = ''

View file

@ -52,13 +52,13 @@ let
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "freerdp"; pname = "freerdp";
version = "2.7.0"; version = "2.8.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "FreeRDP"; owner = "FreeRDP";
repo = "FreeRDP"; repo = "FreeRDP";
rev = version; rev = version;
sha256 = "sha256-XBYRhbwknVa8eXxk31b7n9gMWBcTjCecDN+j2FGcpw0="; sha256 = "sha256-bVq/99jMkxTjckMjWoK4pBa0jD/AYezgKUPJziNSqI0=";
}; };
postPatch = '' postPatch = ''

View file

@ -8,13 +8,13 @@
, pkgsMusl # for passthru.tests , pkgsMusl # for passthru.tests
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "bmake"; pname = "bmake";
version = "20220208"; version = "20220726";
src = fetchurl { src = fetchurl {
url = "http://www.crufty.net/ftp/pub/sjg/${pname}-${version}.tar.gz"; url = "http://www.crufty.net/ftp/pub/sjg/${finalAttrs.pname}-${finalAttrs.version}.tar.gz";
hash = "sha256-ewDB4UYrLh5Upk2ND88n/HfursPxOSDv+NlST/BZ1to="; hash = "sha256-G/N3B4lyJyHcp7C/+K/EqVINog8CGbt7xSNQrwEz8KA=";
}; };
# Make tests work with musl # Make tests work with musl
@ -60,10 +60,15 @@ stdenv.mkDerivation rec {
]; ];
# Disabled tests: # Disabled tests:
# opt-chdir: ofborg complains about it somehow
# opt-keep-going-indirect: not yet known
# varmod-localtime: musl doesn't support TZDIR and this test relies on impure, # varmod-localtime: musl doesn't support TZDIR and this test relies on impure,
# implicit paths # implicit paths
# opt-chdir: ofborg complains about it somehow BROKEN_TESTS = builtins.concatStringsSep " " [
BROKEN_TESTS = "varmod-localtime opt-chdir"; "opt-chdir"
"opt-keep-going-indirect"
"varmod-localtime"
];
buildPhase = '' buildPhase = ''
runHook preBuild runHook preBuild
@ -105,9 +110,8 @@ stdenv.mkDerivation rec {
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ thoughtpolice AndersonTorres ]; maintainers = with maintainers; [ thoughtpolice AndersonTorres ];
platforms = platforms.unix; platforms = platforms.unix;
broken = with stdenv; isAarch64 && !isDarwin; # ofborg complains
}; };
passthru.tests.bmakeMusl = pkgsMusl.bmake; passthru.tests.bmakeMusl = pkgsMusl.bmake;
} })
# TODO: report the quirks and patches to bmake devteam (especially the Musl one) # TODO: report the quirks and patches to bmake devteam (especially the Musl one)