typst-live: unstable-2023-05-27 -> 0.6.0

https://github.com/ItsEthra/typst-live/compare/10a2da57b93f8d6e4eaa0bfcec1e68e46b916868...ae652364cadcc16719d7c52a771d21b93591e1fa

figsoda 153e573a ec436657

+8 -9
+8 -9
pkgs/tools/typesetting/typst-live/default.nix
··· 1 { lib 2 , rustPlatform 3 - , fetchFromGitHub 4 , stdenv 5 , darwin 6 , makeWrapper 7 , typst 8 }: 9 10 - rustPlatform.buildRustPackage { 11 pname = "typst-live"; 12 - version = "unstable-2023-05-27"; 13 14 - src = fetchFromGitHub { 15 - owner = "ItsEthra"; 16 - repo = "typst-live"; 17 - rev = "10a2da57b93f8d6e4eaa0bfcec1e68e46b916868"; 18 - hash = "sha256-42QzqbyIjPn0C4coCU81gtlI7v5XJStlsDZvnLlwpYs="; 19 }; 20 21 - cargoHash = "sha256-M5jYSLw5oquAq2gGWZOJvx5/CGAl2Rg+G94V6ivAOzc="; 22 23 nativeBuildInputs = [ 24 makeWrapper ··· 38 homepage = "https://github.com/ItsEthra/typst-live"; 39 license = licenses.mit; 40 maintainers = with maintainers; [ figsoda ]; 41 }; 42 }
··· 1 { lib 2 , rustPlatform 3 + , fetchCrate 4 , stdenv 5 , darwin 6 , makeWrapper 7 , typst 8 }: 9 10 + rustPlatform.buildRustPackage rec { 11 pname = "typst-live"; 12 + version = "0.6.0"; 13 14 + src = fetchCrate { 15 + inherit pname version; 16 + hash = "sha256-8YndEqhIESC3Cbe4klQfkVqesNFeZ2g1oRd1VoVrMnE="; 17 }; 18 19 + cargoHash = "sha256-62tBefXek6W01RfdPczXBuYhrLK+wG1YQ7va7FQmAhA="; 20 21 nativeBuildInputs = [ 22 makeWrapper ··· 36 homepage = "https://github.com/ItsEthra/typst-live"; 37 license = licenses.mit; 38 maintainers = with maintainers; [ figsoda ]; 39 + mainProgram = "typst-live"; 40 }; 41 }