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

Fixes the build with the default GCC.
This commit is contained in:
Emily 2025-08-08 18:22:54 +01:00
parent 5b6ae0b1b4
commit 3d3e80e330
2 changed files with 5 additions and 10 deletions

View File

@ -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;
};
}

View File

@ -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 { });