nixpkgs/pkgs/applications/editors/texmacs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.3 KiB
Nix
Raw Normal View History

2021-01-27 12:06:32 +00:00
{ lib, mkDerivation, callPackage, fetchurl,
2020-04-09 14:05:11 +00:00
guile_1_8, qtbase, xmodmap, which, freetype,
libjpeg,
sqlite,
2017-11-20 22:29:37 +00:00
tex ? null,
aspell ? null,
git ? null,
python3 ? null,
cmake,
pkg-config,
2017-11-20 22:29:37 +00:00
ghostscriptX ? null,
extraFonts ? false,
chineseFonts ? false,
japaneseFonts ? false,
koreanFonts ? false }:
let
pname = "TeXmacs";
2021-07-07 16:00:15 +00:00
version = "2.1";
2017-11-20 22:29:37 +00:00
common = callPackage ./common.nix {
inherit tex extraFonts chineseFonts japaneseFonts koreanFonts;
};
in
2020-04-09 14:05:11 +00:00
mkDerivation {
2021-01-27 12:06:32 +00:00
inherit pname version;
2021-01-27 12:06:32 +00:00
src = fetchurl {
url = "https://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${version}-src.tar.gz";
2021-07-07 16:00:15 +00:00
sha256 = "1gl6k1bwrk1y7hjyl4xvlqvmk5crl4jvsk8wrfp7ynbdin6n2i48";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
guile_1_8
2020-04-09 14:05:11 +00:00
qtbase
ghostscriptX
freetype
libjpeg
sqlite
git
python3
];
2019-10-30 11:34:47 +00:00
NIX_LDFLAGS = "-lz";
2020-04-09 14:05:11 +00:00
qtWrapperArgs = [
"--suffix" "PATH" ":" (lib.makeBinPath [
xmodmap
which
ghostscriptX
aspell
tex
git
python3
])
];
postFixup = ''
wrapQtApp $out/bin/texmacs
'';
2017-11-20 22:29:37 +00:00
inherit (common) postPatch;
meta = common.meta // {
2020-04-09 14:05:11 +00:00
maintainers = [ lib.maintainers.roconnor ];
platforms = lib.platforms.gnu ++ lib.platforms.linux; # arbitrary choice
};
}