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