parent
31bd7e57ac
commit
66cd9e425d
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/text/jotdown/default.nix
Normal file
26
pkgs/tools/text/jotdown/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -9003,6 +9003,8 @@ with pkgs;
|
||||||
|
|
||||||
jot = callPackage ../applications/misc/jot { };
|
jot = callPackage ../applications/misc/jot { };
|
||||||
|
|
||||||
|
jotdown = callPackage ../tools/text/jotdown { };
|
||||||
|
|
||||||
journaldriver = callPackage ../tools/misc/journaldriver { };
|
journaldriver = callPackage ../tools/misc/journaldriver { };
|
||||||
|
|
||||||
jp = callPackage ../development/tools/jp { };
|
jp = callPackage ../development/tools/jp { };
|
||||||
|
|
Loading…
Reference in a new issue