teyjus: fix build by using GCC 14

This commit is contained in:
Vincent Laporte
2026-01-19 17:25:46 +01:00
parent 2b9409dbb0
commit ee906d56db
2 changed files with 6 additions and 4 deletions
@@ -2,18 +2,19 @@
lib,
fetchFromGitHub,
buildDunePackage,
stdenv,
flex,
bison,
}:
buildDunePackage rec {
(buildDunePackage.override { inherit stdenv; }) (finalAttrs: {
pname = "teyjus";
version = "2.1.1";
src = fetchFromGitHub {
owner = "teyjus";
repo = "teyjus";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-N4XKDd0NFr501PYUdb7PM2sWh0uD1/SUFXoMr10f064=";
};
@@ -31,9 +32,9 @@ buildDunePackage rec {
meta = {
description = "Efficient implementation of the Lambda Prolog language";
homepage = "https://github.com/teyjus/teyjus";
changelog = "https://github.com/teyjus/teyjus/releases/tag/v${version}";
changelog = "https://github.com/teyjus/teyjus/releases/tag/v${finalAttrs.version}";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.bcdarwin ];
platforms = lib.platforms.unix;
};
}
})
+1
View File
@@ -5096,6 +5096,7 @@ with pkgs;
teyjus = callPackage ../development/compilers/teyjus {
inherit (ocaml-ng.ocamlPackages_4_14) buildDunePackage;
stdenv = gcc14Stdenv;
};
urweb = callPackage ../development/compilers/urweb {