jotdown: init at 0.3.0

https://github.com/hellux/jotdown
This commit is contained in:
figsoda 2023-06-05 14:02:44 -04:00
parent 31bd7e57ac
commit 66cd9e425d
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "jotdown";
version = "0.3.0";
src = fetchFromGitHub {
owner = "hellux";
repo = "jotdown";
rev = version;
hash = "sha256-SdMj2/r/QhmgS1T3Ve4ypQ2nDjoSRkEtWzQCcbFWP5A=";
};
cargoHash = "sha256-OzLPlWZwDEO8TPk79LHCRLtMFxZigaIAbLM75KDqyj4=";
meta = with lib; {
description = "A minimal Djot CLI";
homepage = "https://github.com/hellux/jotdown";
changelog = "https://github.com/hellux/jotdown/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}

View File

@ -9003,6 +9003,8 @@ with pkgs;
jot = callPackage ../applications/misc/jot { };
jotdown = callPackage ../tools/text/jotdown { };
journaldriver = callPackage ../tools/misc/journaldriver { };
jp = callPackage ../development/tools/jp { };