mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
thokr: init at 0.3.0
This commit is contained in:
parent
6bb5c8789e
commit
af830975ea
@ -42,6 +42,7 @@ let
|
||||
skeuowaita-icon-theme = callPackage ./skeuowaita-icon-theme.nix { };
|
||||
text-engine = callPackage ./text-engine.nix { };
|
||||
tic-80 = callPackage ./tic-80 { };
|
||||
thokr = callPackage ./thokr.nix { };
|
||||
segno = libsForQt5.callPackage ./segno.nix { };
|
||||
vpaint = libsForQt5.callPackage ./vpaint.nix { };
|
||||
wayback = libsForQt5.callPackage ./wayback.nix { };
|
||||
|
21
pkgs/thokr.nix
Normal file
21
pkgs/thokr.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv, lib, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "thokr";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "coloradocolby";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-iIa8hALRTEHQe/OKTR1a6yvEw+2o8aQX95l43k2LbXo=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-3oeQeJn7KHytDg1y2X6L5NCZdCLmgEjL3u2UC3Q4fZ8=";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/coloradocolby/thokr";
|
||||
description = "Sleek typing TUI written in Rust.";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user