summary refs log tree commit diff
diff options
context:
space:
mode:
authorIcy-Thought <53710398+Icy-Thought@users.noreply.github.com>2022-04-29 12:30:06 +0200
committerGitHub <noreply@github.com>2022-04-29 10:30:06 +0000
commitb896b1879bd57a4a932ccc1594e9b575f0a28d4d (patch)
treec7dbdfe75e3e2213cfa0dd5bc3d4756786bd0c76
parent107e97d3dfada44411a7ade0674a3a62dea684f4 (diff)
downloadnixpkgs-b896b1879bd57a4a932ccc1594e9b575f0a28d4d.tar
nixpkgs-b896b1879bd57a4a932ccc1594e9b575f0a28d4d.tar.gz
nixpkgs-b896b1879bd57a4a932ccc1594e9b575f0a28d4d.tar.bz2
nixpkgs-b896b1879bd57a4a932ccc1594e9b575f0a28d4d.tar.lz
nixpkgs-b896b1879bd57a4a932ccc1594e9b575f0a28d4d.tar.xz
nixpkgs-b896b1879bd57a4a932ccc1594e9b575f0a28d4d.tar.zst
nixpkgs-b896b1879bd57a4a932ccc1594e9b575f0a28d4d.zip
tectonic: 0.8.2 -> 0.9.0 (#170849)
-rw-r--r--pkgs/tools/typesetting/tectonic/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/tools/typesetting/tectonic/default.nix b/pkgs/tools/typesetting/tectonic/default.nix
index 4b4ec194a97..ecab3c4a8fa 100644
--- a/pkgs/tools/typesetting/tectonic/default.nix
+++ b/pkgs/tools/typesetting/tectonic/default.nix
@@ -9,25 +9,26 @@
 , pkg-config
 , makeWrapper
 , biber
+, icu
 }:
 
 rustPlatform.buildRustPackage rec {
   pname = "tectonic";
-  version = "0.8.2";
+  version = "0.9.0";
 
   src = fetchFromGitHub {
     owner = "tectonic-typesetting";
     repo = "tectonic";
     rev = "tectonic@${version}";
     fetchSubmodules = true;
-    sha256 = "sha256-Xw/Rs30mH81b8qqdpmbXjSSYIG08wwRvykzhPpF94uk=";
+    sha256 = "mfIEfue64kG4NmIEdTPRAqt6y22XfcgH6GtvJxuH6TU=";
   };
 
-  cargoSha256 = "sha256-JzYCxsaBuQ5I+FgHVRQPNM32bJlE4H9Fd+48/jXDcr0=";
+  cargoSha256 = "CH1FdZ7cPrE0V0yjauOjDKrRNioC3MjtcnZaOTkMptc=";
 
   nativeBuildInputs = [ pkg-config makeWrapper ];
 
-  buildInputs = [ fontconfig harfbuzz openssl ]
+  buildInputs = [ icu fontconfig harfbuzz openssl ]
     ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ ApplicationServices Cocoa Foundation ]);
 
   # Tectonic runs biber when it detects it needs to run it, see:
@@ -51,6 +52,6 @@ rustPlatform.buildRustPackage rec {
     homepage = "https://tectonic-typesetting.github.io/";
     changelog = "https://github.com/tectonic-typesetting/tectonic/blob/tectonic@${version}/CHANGELOG.md";
     license = with licenses; [ mit ];
-    maintainers = [ maintainers.lluchs maintainers.doronbehar ];
+    maintainers = with maintainers; [ lluchs doronbehar ];
   };
 }