commit
58368100f3
2 changed files with 24 additions and 0 deletions
22
pkgs/applications/misc/thokr/default.nix
Normal file
22
pkgs/applications/misc/thokr/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ lib, rustPlatform, fetchFromGitHub }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "thokr";
|
||||||
|
version = "0.4.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "thatvegandev";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0aryfx9qlnjdq3iq2d823c82fhkafvibmbz58g48b8ah5x5fv3ir";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "sha256-gEpmXyLmw6bX3enA3gNVtXNMlkQl6J/8AwJQSY0RtFw=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A typing tui with visualized results and historical logging";
|
||||||
|
homepage = "https://github.com/thatvegandev/thokr";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ figsoda ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -31680,6 +31680,8 @@ with pkgs;
|
||||||
|
|
||||||
thinkingRock = callPackage ../applications/misc/thinking-rock { };
|
thinkingRock = callPackage ../applications/misc/thinking-rock { };
|
||||||
|
|
||||||
|
thokr = callPackage ../applications/misc/thokr { };
|
||||||
|
|
||||||
thonny = callPackage ../applications/editors/thonny { };
|
thonny = callPackage ../applications/editors/thonny { };
|
||||||
|
|
||||||
thunderbirdPackages = recurseIntoAttrs (callPackage ../applications/networking/mailreaders/thunderbird/packages.nix {
|
thunderbirdPackages = recurseIntoAttrs (callPackage ../applications/networking/mailreaders/thunderbird/packages.nix {
|
||||||
|
|
Loading…
Reference in a new issue