Commit c45c1e45 authored by OPNA2608's avatar OPNA2608
Browse files

furnace: 0.6.5 -> 0.6.6

parent 1e2ad801
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -28,14 +28,14 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "furnace";
  version = "0.6.5";
  version = "0.6.6";

  src = fetchFromGitHub {
    owner = "tildearrow";
    repo = "furnace";
    rev = "v${finalAttrs.version}";
    fetchSubmodules = true;
    hash = "sha256-szDRaujlstRHbvuddi8HdYb00uHNyvAz+/Ex1mKfMXY=";
    hash = "sha256-op1AIJ5xnjv+SZEYR0Cvy+NbC7ll1NJlmx69FOnea+I=";
  };

  postPatch = lib.optionalString stdenv.hostPlatform.isLinux ''
@@ -88,8 +88,6 @@ stdenv.mkDerivation (finalAttrs: {
    (lib.cmakeBool "USE_GLES" (withGL && preferGLES))
    (lib.cmakeBool "WITH_RENDER_METAL" false) # fails to build
    (lib.cmakeBool "WITH_RENDER_OPENGL1" (withGL && !preferGLES))
    # New l10n code still has some fortify bugs
    (lib.cmakeBool "WARNINGS_ARE_ERRORS" false)
    (lib.cmakeBool "FORCE_APPLE_BIN" true)
  ];