mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
85106f3741
Co-authored-by: figsoda <figsoda@pm.me>
27 lines
595 B
Nix
27 lines
595 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "jot";
|
|
version = "0.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "araekiel";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-CgS9I05Om4JxAbPN0vxh2Y7dftIkVnZkRP7PY4kOfpw=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-8nRO01/hUKT6Jt7/3Sw2+aLU6hITSNl6nn9UEAvfyJY=";
|
|
|
|
meta = with lib; {
|
|
description = "Rapid note management for the terminal";
|
|
homepage = "https://github.com/araekiel/jot";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dit7ya ];
|
|
mainProgram = "jt";
|
|
};
|
|
}
|