Merge pull request #104274 from FlorianFranzen/texmacs-1.99.15

texmacs: 1.99.14 -> 1.99.15
This commit is contained in:
Niklas Hambüchen 2020-11-19 19:04:07 +01:00 committed by GitHub
commit e3e4fc0711
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, mkDerivation, callPackage, fetchurl, fetchpatch,
{ lib, mkDerivation, callPackage, fetchFromGitHub,
guile_1_8, qtbase, xmodmap, which, freetype,
libjpeg,
sqlite,
@ -16,7 +16,7 @@
let
pname = "TeXmacs";
version = "1.99.14";
version = "1.99.15";
common = callPackage ./common.nix {
inherit tex extraFonts chineseFonts japaneseFonts koreanFonts;
};
@ -24,9 +24,11 @@ in
mkDerivation {
name = "${pname}-${version}";
src = fetchurl {
url = "https://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${version}-src.tar.gz";
sha256 = "1zbl1ddhppgnn3j213jl1b9mn8zmwnknxiqswm25p4llj0mqcgna";
src = fetchFromGitHub {
owner = "texmacs";
repo = "texmacs";
rev = "v${version}";
sha256 = "04585hdh98fvyhj4wsxf69xal2wvfa6lg76gad8pr6ww9abi5105";
};
enableParallelBuilding = true;