Unverified Commit 02567d56 authored by 7c6f434c's avatar 7c6f434c Committed by GitHub
Browse files

frozen-containers: init at 1.2.0-unstable-2025-07-29; libreoffice: use system frozen (#452992)

parents 23312527 66360a4c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -156,6 +156,7 @@
  lp_solve,
  xmlsec,
  libcmis,
  frozen-containers,
}:

assert builtins.elem variant [
@@ -491,6 +492,7 @@ stdenv.mkDerivation (finalAttrs: {
      which
      xmlsec
      zlib
      frozen-containers
    ]
    ++ optionals kdeIntegration [
      qt6.qtbase
@@ -583,10 +585,10 @@ stdenv.mkDerivation (finalAttrs: {
    "--with-system-orcus"
    "--with-system-postgresql"
    "--with-system-xmlsec"
    "--with-system-frozen"

    # TODO: package these as system libraries
    "--without-system-altlinuxhyph"
    "--without-system-frozen"
    "--without-system-libeot"
    "--without-system-libfreehand"
    "--without-system-libmspub"
+35 −0
Original line number Diff line number Diff line
{
  stdenv,
  lib,
  fetchFromGitHub,
  cmake,
  nix-update-script,
}:
stdenv.mkDerivation {
  pname = "frozen-containers";
  version = "1.2.0-unstable-2025-07-29";

  src = fetchFromGitHub {
    owner = "serge-sans-paille";
    repo = "frozen";
    rev = "61dce5ae18ca59931e27675c468e64118aba8744";
    hash = "sha256-zIczBSRDWjX9hcmYWYkbWY3NAAQwQtKhMTeHlYp4BKk=";
  };

  nativeBuildInputs = [ cmake ];

  passthru.updateScript = nix-update-script {
    extraArgs = [ "--version=branch" ];
  };

  meta = {
    description = "Header-only library that provides 0 cost initialization for immutable containers, fixed-size containers, and various algorithms";
    homepage = "https://github.com/serge-sans-paille/frozen";
    maintainers = with lib.maintainers; [
      marcin-serwin
      szanko
    ];
    license = lib.licenses.asl20;
    platforms = lib.platforms.all;
  };
}