chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / pr / prettypst / package.nix
blob7cccdb5a2d82e6a12f0c47318c82249de188532d
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "prettypst";
8   version = "unstable-2023-12-06";
10   src = fetchFromGitHub {
11     owner = "antonWetzel";
12     repo = "prettypst";
13     rev = "bf46317ecac4331f101b2752de5328de5981eeba";
14     hash = "sha256-wPayP/693BKIrHrRkx4uY0UuZRoCGPNW8LB3Z0oSBi4=";
15   };
17   cargoLock = {
18     lockFile = ./Cargo.lock;
19     outputHashes = {
20       "typst-syntax-0.10.0" = "sha256-qiskc0G/ZdLRZjTicoKIOztRFem59TM4ki23Rl55y9s=";
21     };
22   };
24   meta = {
25     changelog = "https://github.com/antonWetzel/prettypst/blob/${src.rev}/changelog.md";
26     description = "Formatter for Typst";
27     homepage = "https://github.com/antonWetzel/prettypst";
28     license = lib.licenses.mit;
29     mainProgram = "prettypst";
30     maintainers = with lib.maintainers; [ drupol ];
31   };