thokr: remove package

It is available on nixpkgs now.
This commit is contained in:
Gabriel Arazas 2023-07-12 15:12:13 +08:00
parent c6129ea634
commit cdc17c28ee
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 0 additions and 22 deletions

View File

@ -62,7 +62,6 @@ let
swh = callPackage ./software-heritage { python3Packages = python310Packages; }; swh = callPackage ./software-heritage { python3Packages = python310Packages; };
speki = callPackage ./speki { }; speki = callPackage ./speki { };
tic-80 = callPackage ./tic-80 { }; tic-80 = callPackage ./tic-80 { };
thokr = callPackage ./thokr.nix { };
segno = callPackage ./segno.nix { }; segno = callPackage ./segno.nix { };
smile = callPackage ./smile { }; smile = callPackage ./smile { };
vpaint = libsForQt5.callPackage ./vpaint.nix { }; vpaint = libsForQt5.callPackage ./vpaint.nix { };

View File

@ -1,21 +0,0 @@
{ stdenv, lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "thokr";
version = "0.4.1";
src = fetchFromGitHub {
owner = "coloradocolby";
repo = pname;
rev = "v${version}";
sha256 = "sha256-OY7tSi9QoYXIQ+WvuuJ2akInEBsCNYHjwE1ailN3Pis=";
};
cargoSha256 = "sha256-gEpmXyLmw6bX3enA3gNVtXNMlkQl6J/8AwJQSY0RtFw=";
meta = with lib; {
homepage = "https://github.com/coloradocolby/thokr";
description = "Sleek typing TUI written in Rust.";
license = licenses.mit;
};
}