summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorVladyslav M <dywedir@protonmail.ch>2018-02-21 00:13:42 +0200
committerVladyslav M <dywedir@protonmail.ch>2018-02-21 00:13:42 +0200
commit12e6a3b1c2c991b10463236e5fa0c37c5b9faafa (patch)
tree7adbb922fc40953e5d728a16cd6ae893c3b6b30d /pkgs/tools
parent41666918132b272a055479af02bb623a4d56ec8a (diff)
downloadnixpkgs-12e6a3b1c2c991b10463236e5fa0c37c5b9faafa.tar
nixpkgs-12e6a3b1c2c991b10463236e5fa0c37c5b9faafa.tar.gz
nixpkgs-12e6a3b1c2c991b10463236e5fa0c37c5b9faafa.tar.bz2
nixpkgs-12e6a3b1c2c991b10463236e5fa0c37c5b9faafa.tar.lz
nixpkgs-12e6a3b1c2c991b10463236e5fa0c37c5b9faafa.tar.xz
nixpkgs-12e6a3b1c2c991b10463236e5fa0c37c5b9faafa.tar.zst
nixpkgs-12e6a3b1c2c991b10463236e5fa0c37c5b9faafa.zip
tectonic: 0.1.6 -> 0.1.7
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/typesetting/tectonic/default.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/tools/typesetting/tectonic/default.nix b/pkgs/tools/typesetting/tectonic/default.nix
index 3fdebd19f3c..ad612fa18af 100644
--- a/pkgs/tools/typesetting/tectonic/default.nix
+++ b/pkgs/tools/typesetting/tectonic/default.nix
@@ -1,20 +1,18 @@
 { stdenv, fetchFromGitHub, rustPlatform, makeWrapper
 , fontconfig, harfbuzz-icu, openssl, pkgconfig }:
 
-with rustPlatform;
-
-buildRustPackage rec {
+rustPlatform.buildRustPackage rec {
   name = "tectonic-${version}";
-  version = "0.1.6";
+  version = "0.1.7";
 
   src = fetchFromGitHub {
     owner = "tectonic-typesetting";
     repo = "tectonic";
     rev = "v${version}";
-    sha256 = "0k5vkn112bjwh4wnxryzqz79dlja64k7s105mf3yaik136hqnmqv";
+    sha256 = "007l0l9xnyayiqiap22zlsp8l9afdw803064cj8inr3q7ckzfcpb";
   };
 
-  cargoSha256 = "03bqhgz8c4ipdkd3g448bcrr6d188h87vskcfcc3mqlcxg77b8q5";
+  cargoSha256 = "0kjy9zrjlrlkr2il62nz35hm1nndyym9dbnas43hzz7y8hdf859k";
 
   nativeBuildInputs = [ pkgconfig ];