obsidian-export: init at 23.12.0
This commit is contained in:
parent
771b079bb8
commit
46e5e576b8
1 changed files with 27 additions and 0 deletions
27
pkgs/by-name/ob/obsidian-export/package.nix
Normal file
27
pkgs/by-name/ob/obsidian-export/package.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "obsidian-export";
|
||||
version = "23.12.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "zoni";
|
||||
repo = "obsidian-export";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-r5G2XVV2F/Bt29gxuTZKX+KxH6RFa1hJNH3gSTi7yCU=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-lkqoMFasHpfhmVd3dlYd/TKIBIDzqMbsxfigpeJq0w8=";
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/zoni/obsidian-export/blob/${src.rev}/CHANGELOG.md";
|
||||
description = "Rust library and CLI to export an Obsidian vault to regular Markdown";
|
||||
homepage = "https://github.com/zoni/obsidian-export";
|
||||
license = lib.licenses.bsd2Patent;
|
||||
mainProgram = "obsidian-export";
|
||||
maintainers = with lib.maintainers; [ tomasajt ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue