Commit 3d3e80e3 authored by Emily's avatar Emily
Browse files

falcon: unstable-2018-10-23 -> 0-unstable-2023-11-19

Fixes the build with the default GCC.
parent 5b6ae0b1
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
@@ -11,19 +11,15 @@

stdenv.mkDerivation {
  pname = "falcon";
  version = "unstable-2018-10-23";
  version = "0-unstable-2023-11-19";

  src = fetchFromGitHub {
    owner = "falconpl";
    repo = "falcon";
    rev = "637e2d5cd950a874496042993c02ab7d17c1b688";
    sha256 = "iCyvvZJjXb1CR396EJ6GiP6d4e7iAc6QQlAOQoAfehg=";
    rev = "fc403c6e8c1f3d8c2a5a6ebce5db6f1b3e355808";
    hash = "sha256-0yLhwDVFNbfiW23hNxrvItCCkyaOvEbFSg1ZQuJvhIs=";
  };

  # -Wnarrowing is enabled by default in recent GCC versions,
  # causing compilation to fail.
  env.NIX_CFLAGS_COMPILE = "-Wno-narrowing";

  nativeBuildInputs = [
    cmake
    pkg-config
@@ -39,5 +35,6 @@ stdenv.mkDerivation {
    license = licenses.gpl2Only;
    maintainers = with maintainers; [ pSub ];
    platforms = with platforms; unix;
    broken = stdenv.cc.isClang;
  };
}
+1 −3
Original line number Diff line number Diff line
@@ -5475,9 +5475,7 @@ with pkgs;
  haxePackages = recurseIntoAttrs (callPackage ./haxe-packages.nix { });
  inherit (haxePackages) hxcpp;

  falcon = callPackage ../development/interpreters/falcon {
    stdenv = gcc10Stdenv;
  };
  falcon = callPackage ../development/interpreters/falcon { };

  dotnetPackages = recurseIntoAttrs (callPackage ./dotnet-packages.nix { });