biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / jotdown / default.nix
blobe0469e25bf8884f4eb4b602ee95e57a4f03d5907
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "jotdown";
8   version = "0.6.0";
10   src = fetchFromGitHub {
11     owner = "hellux";
12     repo = "jotdown";
13     rev = version;
14     hash = "sha256-67foqp8i5JqvtKeq8gibFhd59V8Nf8wkaINe2gd5Huk=";
15   };
17   cargoHash = "sha256-ckcjd8ZiJxfKEkpfGvTSKv3ReWn3lIK+/fBnj/kk2F0=";
19   meta = with lib; {
20     description = "Minimal Djot CLI";
21     mainProgram = "jotdown";
22     homepage = "https://github.com/hellux/jotdown";
23     changelog = "https://github.com/hellux/jotdown/blob/${src.rev}/CHANGELOG.md";
24     license = licenses.mit;
25     maintainers = with maintainers; [ figsoda ];
26   };