nixpkgs/pkgs/by-name/jo/jot/package.nix
2025-07-26 11:39:35 +02:00

28 lines
602 B
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "jot";
version = "0.1.2";
src = fetchFromGitHub {
owner = "shashwatah";
repo = "jot";
rev = "v${version}";
sha256 = "sha256-Z8szd6ArwbGiHw7SeAah0LrrzUbcQYygX7IcPUYNxvM=";
};
cargoHash = "sha256-B3CkXoSShZTnT3OlVaqRBbGIaOKiqri6AuYVrUHB6NQ=";
meta = with lib; {
description = "Rapid note management for the terminal";
homepage = "https://github.com/shashwatah/jot";
license = licenses.mit;
maintainers = with maintainers; [ dit7ya ];
mainProgram = "jt";
};
}