Merge pull request #110928 from FlorianFranzen/texmacs-1.99.18

texmacs: 1.99.15 -> 1.99.18
This commit is contained in:
Sandro 2021-01-28 15:31:32 +01:00 committed by GitHub
commit ff937db1f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ lib, mkDerivation, callPackage, fetchFromGitHub, { lib, mkDerivation, callPackage, fetchurl,
guile_1_8, qtbase, xmodmap, which, freetype, guile_1_8, qtbase, xmodmap, which, freetype,
libjpeg, libjpeg,
sqlite, sqlite,
@ -16,19 +16,17 @@
let let
pname = "TeXmacs"; pname = "TeXmacs";
version = "1.99.15"; version = "1.99.18";
common = callPackage ./common.nix { common = callPackage ./common.nix {
inherit tex extraFonts chineseFonts japaneseFonts koreanFonts; inherit tex extraFonts chineseFonts japaneseFonts koreanFonts;
}; };
in in
mkDerivation { mkDerivation {
name = "${pname}-${version}"; inherit pname version;
src = fetchFromGitHub { src = fetchurl {
owner = "texmacs"; url = "https://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${version}-src.tar.gz";
repo = "texmacs"; sha256 = "0il3fwgw20421aj90wg8kyhkwk6lbgb3bb2g5qamh5lk90yj725i";
rev = "v${version}";
sha256 = "04585hdh98fvyhj4wsxf69xal2wvfa6lg76gad8pr6ww9abi5105";
}; };
nativeBuildInputs = [ cmake pkg-config ]; nativeBuildInputs = [ cmake pkg-config ];