about summary refs log tree commit diff
path: root/pkgs/tools/typesetting/tectonic/default.nix
diff options
context:
space:
mode:
authorLukas Werling <lukas.werling@gmail.com>2017-08-21 22:49:10 +0200
committerLukas Werling <lukas.werling@gmail.com>2017-08-21 22:49:10 +0200
commit6922a48fe13e7a79ff684cc89d5e0766062100de (patch)
tree0d9f81e9164ccb86d2d8ee3c1175297c418754fa /pkgs/tools/typesetting/tectonic/default.nix
parent50a9f98c42b64ad084853db312b7fb265de4a157 (diff)
downloadnixlib-6922a48fe13e7a79ff684cc89d5e0766062100de.tar
nixlib-6922a48fe13e7a79ff684cc89d5e0766062100de.tar.gz
nixlib-6922a48fe13e7a79ff684cc89d5e0766062100de.tar.bz2
nixlib-6922a48fe13e7a79ff684cc89d5e0766062100de.tar.lz
nixlib-6922a48fe13e7a79ff684cc89d5e0766062100de.tar.xz
nixlib-6922a48fe13e7a79ff684cc89d5e0766062100de.tar.zst
nixlib-6922a48fe13e7a79ff684cc89d5e0766062100de.zip
tectonic: init at 0.1.6
Diffstat (limited to 'pkgs/tools/typesetting/tectonic/default.nix')
-rw-r--r--pkgs/tools/typesetting/tectonic/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/tools/typesetting/tectonic/default.nix b/pkgs/tools/typesetting/tectonic/default.nix
new file mode 100644
index 000000000000..f6c3be63e033
--- /dev/null
+++ b/pkgs/tools/typesetting/tectonic/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchFromGitHub, rustPlatform, makeWrapper
+, fontconfig, harfbuzz-icu, openssl, pkgconfig }:
+
+with rustPlatform;
+
+buildRustPackage rec {
+  name = "tectonic-${version}";
+  version = "0.1.6";
+
+  src = fetchFromGitHub {
+    owner = "tectonic-typesetting";
+    repo = "tectonic";
+    rev = "v${version}";
+    sha256 = "0k5vkn112bjwh4wnxryzqz79dlja64k7s105mf3yaik136hqnmqv";
+  };
+
+  depsSha256 = "1vxvkh1v9x6j4ggbh6sysi5i3089hrs0mjbp910a1jljiav7l8nj";
+
+  nativeBuildInputs = [ pkgconfig ];
+
+  buildInputs = [ fontconfig harfbuzz-icu openssl ];
+
+  # tests fail due to read-only nix store
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "Modernized, complete, self-contained TeX/LaTeX engine, powered by XeTeX and TeXLive";
+    homepage = https://tectonic-typesetting.github.io/;
+    license = with licenses; [ mit ];
+    maintainers = [ maintainers.lluchs ];
+    platforms = platforms.all;
+  };
+}