jot: init at 0.1.1 (#193732)

Co-authored-by: figsoda <figsoda@pm.me>
This commit is contained in:
Mostly Void 2022-10-01 22:15:04 +05:30 committed by GitHub
parent cb81a9ca94
commit 85106f3741
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ 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";
};
}

View File

@ -7979,6 +7979,8 @@ with pkgs;
joplin-desktop = callPackage ../applications/misc/joplin-desktop { };
jot = callPackage ../applications/misc/jot { };
journaldriver = callPackage ../tools/misc/journaldriver {
openssl = openssl_1_1;
};