summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-28 15:31:32 +0100
committerGitHub <noreply@github.com>2021-01-28 15:31:32 +0100
commitff937db1f64aa1bfdcbfde0500fe4daa19b30178 (patch)
tree90e38a0de9d3cd0081ce1b2af5840c32410b9360
parent8d2a780501b0b94e6775dcd2410e7cd2bae34883 (diff)
parent7b1244864e226d1255f5dd40c608f6b1642dceeb (diff)
Merge pull request #110928 from FlorianFranzen/texmacs-1.99.18
texmacs: 1.99.15 -> 1.99.18
-rw-r--r--pkgs/applications/editors/texmacs/default.nix14
1 files changed, 6 insertions, 8 deletions
diff --git a/pkgs/applications/editors/texmacs/default.nix b/pkgs/applications/editors/texmacs/default.nix
index 6046a3aa313d..dd5e5e61b29c 100644
--- a/pkgs/applications/editors/texmacs/default.nix
+++ b/pkgs/applications/editors/texmacs/default.nix
@@ -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 ];