From 94f9d8b7c22a97b616db1ca7d554d7436ca76213 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 15 Nov 2024 00:42:52 +0000 Subject: [PATCH 1/2] jsoncons: 0.176.0 -> 1.1.0 --- pkgs/by-name/js/jsoncons/package.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/js/jsoncons/package.nix b/pkgs/by-name/js/jsoncons/package.nix index cc39e4c895c6..03ac7a6163f6 100644 --- a/pkgs/by-name/js/jsoncons/package.nix +++ b/pkgs/by-name/js/jsoncons/package.nix @@ -2,23 +2,25 @@ stdenv.mkDerivation (finalAttrs: { pname = "jsoncons"; - version = "0.176.0"; + version = "1.1.0"; src = fetchFromGitHub { owner = "danielaparker"; repo = "jsoncons"; - rev = "v${finalAttrs.version}"; - hash = "sha256-RDF5HL6utM/6wna1TxCefl7X8B1qp6nsEDrguTLrtgA="; + tag = "v${finalAttrs.version}"; + hash = "sha256-3NG9Jal3+BdcFeWAIq3eFoV+1ywUCsWafe/WNu2VJU8="; }; nativeBuildInputs = [ cmake ]; - meta = with lib; { + env.NIX_CFLAGS_COMPILE = "-std=c++20 -Wno-error"; + + meta = { description = "C++, header-only library for constructing JSON and JSON-like data formats"; homepage = "https://danielaparker.github.io/jsoncons/"; - changelog = "https://github.com/danielaparker/jsoncons/blob/${finalAttrs.src.rev}/CHANGELOG.md"; - license = licenses.boost; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.all; + changelog = "https://github.com/danielaparker/jsoncons/blob/v${finalAttrs.version}/CHANGELOG.md"; + license = lib.licenses.boost; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.all; }; }) From 9466afacfe1e5ce6c1af1eced501892cad8cfbde Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Wed, 1 Jan 2025 12:03:10 +0400 Subject: [PATCH 2/2] bt-migrate: mark as broken --- pkgs/by-name/bt/bt-migrate/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/bt/bt-migrate/package.nix b/pkgs/by-name/bt/bt-migrate/package.nix index e10258e9c8c1..e5b52b10d8a8 100644 --- a/pkgs/by-name/bt/bt-migrate/package.nix +++ b/pkgs/by-name/bt/bt-migrate/package.nix @@ -61,5 +61,6 @@ stdenv.mkDerivation { maintainers = with maintainers; [ ambroisie ]; mainProgram = "BtMigrate"; platforms = platforms.all; + broken = true; # https://github.com/mikedld/bt-migrate/issues/26 }; }