Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
125 lines
2.3 KiB
Nix
125 lines
2.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
callPackage,
|
|
fetchurl,
|
|
guile_1_8,
|
|
xmodmap,
|
|
which,
|
|
freetype,
|
|
libjpeg,
|
|
sqlite,
|
|
texliveSmall ? null,
|
|
aspell ? null,
|
|
git ? null,
|
|
python3 ? null,
|
|
cmake,
|
|
pkg-config,
|
|
wrapQtAppsHook,
|
|
xdg-utils,
|
|
qtbase,
|
|
qtsvg,
|
|
qtmacextras,
|
|
fetchpatch,
|
|
ghostscriptX ? null,
|
|
extraFonts ? false,
|
|
chineseFonts ? false,
|
|
japaneseFonts ? false,
|
|
koreanFonts ? false,
|
|
}:
|
|
|
|
let
|
|
pname = "texmacs";
|
|
version = "2.1.4";
|
|
common = callPackage ./common.nix {
|
|
inherit
|
|
extraFonts
|
|
chineseFonts
|
|
japaneseFonts
|
|
koreanFonts
|
|
;
|
|
tex = texliveSmall;
|
|
};
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit pname version;
|
|
|
|
src = fetchurl {
|
|
url = "https://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${version}-src.tar.gz";
|
|
hash = "sha256-h6aSLuDdrAtVzOnNVPqMEWX9WLDHtkCjPy9JXWnBgYY=";
|
|
};
|
|
|
|
postPatch = common.postPatch + ''
|
|
substituteInPlace configure \
|
|
--replace "-mfpmath=sse -msse2" ""
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
guile_1_8
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
xdg-utils
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
guile_1_8
|
|
qtbase
|
|
qtsvg
|
|
ghostscriptX
|
|
freetype
|
|
libjpeg
|
|
sqlite
|
|
git
|
|
python3
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
qtmacextras
|
|
];
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "fix-compile-clang-19.5.patch";
|
|
url = "https://github.com/texmacs/texmacs/commit/e72783b023f22eaa0456d2e4cc76ae509d963672.patch";
|
|
hash = "sha256-oJCiXWTY89BdxwbgtFvfThid0WM83+TAUThSihfr0oA=";
|
|
})
|
|
];
|
|
|
|
cmakeFlags = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
(lib.cmakeFeature "TEXMACS_GUI" "Qt")
|
|
(lib.cmakeFeature "CMAKE_INSTALL_PREFIX" "./TeXmacs.app/Contents/Resources")
|
|
];
|
|
|
|
env.NIX_LDFLAGS = "-lz";
|
|
|
|
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
mkdir -p $out/{Applications,bin}
|
|
mv TeXmacs.app $out/Applications/
|
|
makeWrapper $out/Applications/TeXmacs.app/Contents/MacOS/TeXmacs $out/bin/texmacs
|
|
'';
|
|
|
|
qtWrapperArgs = [
|
|
"--suffix"
|
|
"PATH"
|
|
":"
|
|
(lib.makeBinPath [
|
|
xmodmap
|
|
which
|
|
ghostscriptX
|
|
aspell
|
|
texliveSmall
|
|
git
|
|
python3
|
|
])
|
|
];
|
|
|
|
postFixup = lib.optionalString (!stdenv.hostPlatform.isDarwin) ''
|
|
wrapQtApp $out/bin/texmacs
|
|
'';
|
|
|
|
meta = common.meta // {
|
|
maintainers = [ lib.maintainers.roconnor ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|