2017-11-20 23:29:37 +01:00
|
|
|
{ stdenv, callPackage,
|
2019-06-16 21:59:06 +02:00
|
|
|
fetchurl, guile_1_8, qt4, xmodmap, which, makeWrapper, freetype,
|
2017-11-20 23:29:37 +01:00
|
|
|
tex ? null,
|
|
|
|
aspell ? null,
|
|
|
|
ghostscriptX ? null,
|
|
|
|
extraFonts ? false,
|
|
|
|
chineseFonts ? false,
|
|
|
|
japaneseFonts ? false,
|
|
|
|
koreanFonts ? false }:
|
|
|
|
|
|
|
|
let
|
2010-10-04 17:07:38 +02:00
|
|
|
pname = "TeXmacs";
|
2015-07-25 19:38:45 +02:00
|
|
|
version = "1.99.2";
|
2017-11-20 23:29:37 +01:00
|
|
|
common = callPackage ./common.nix {
|
|
|
|
inherit tex extraFonts chineseFonts japaneseFonts koreanFonts;
|
2010-10-04 17:07:38 +02:00
|
|
|
};
|
|
|
|
in
|
2017-11-20 23:29:37 +01:00
|
|
|
stdenv.mkDerivation {
|
2010-10-04 17:07:38 +02:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2015-07-25 19:38:45 +02:00
|
|
|
url = "http://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${version}-src.tar.gz";
|
|
|
|
sha256 = "0l48g9746igiaxw657shm8g3xxk565vzsviajlrxqyljbh6py0fs";
|
2010-10-04 17:07:38 +02:00
|
|
|
};
|
|
|
|
|
2015-07-25 19:38:45 +02:00
|
|
|
buildInputs = [ guile_1_8 qt4 makeWrapper ghostscriptX freetype ];
|
2019-01-04 20:33:51 +01:00
|
|
|
NIX_LDFLAGS = [ "-lz" ];
|
2010-10-04 17:07:38 +02:00
|
|
|
|
|
|
|
postInstall = "wrapProgram $out/bin/texmacs --suffix PATH : " +
|
|
|
|
(if ghostscriptX == null then "" else "${ghostscriptX}/bin:") +
|
|
|
|
(if aspell == null then "" else "${aspell}/bin:") +
|
|
|
|
(if tex == null then "" else "${tex}/bin:") +
|
|
|
|
"${xmodmap}/bin:${which}/bin";
|
|
|
|
|
2017-11-20 23:29:37 +01:00
|
|
|
inherit (common) postPatch;
|
|
|
|
|
|
|
|
meta = common.meta // {
|
2013-08-16 23:44:33 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.roconnor ];
|
2018-05-01 00:47:47 +02:00
|
|
|
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
|
2010-10-04 17:07:38 +02:00
|
|
|
};
|
|
|
|
}
|