vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / applications / misc / jot / default.nix
blobabfcc8e8eca337115f627f6fe9e57ba3bfb9aff2
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "jot";
8   version = "0.1.2";
10   src = fetchFromGitHub {
11     owner = "araekiel";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-Z8szd6ArwbGiHw7SeAah0LrrzUbcQYygX7IcPUYNxvM=";
15   };
17   cargoHash = "sha256-x61lOwMOOLD3RTdy3Ji+c7zcA1PCn09u75MyrPX/NbE=";
19   meta = with lib; {
20     description = "Rapid note management for the terminal";
21     homepage = "https://github.com/araekiel/jot";
22     license = licenses.mit;
23     maintainers = with maintainers; [ dit7ya ];
24     mainProgram = "jt";
25   };