terminal-typeracer: init at 2.0.2

This commit is contained in:
yoctocell 2020-07-23 11:49:53 +02:00 committed by yoctocell
parent 8635793fce
commit f3f65a58b1
No known key found for this signature in database
GPG key ID: 88F536725CA61EEB
3 changed files with 39 additions and 1 deletions

View file

@ -8846,7 +8846,7 @@
name = "Yochai";
};
yoctocell = {
email = "yoctocell.code@keemail.me";
email = "public@yoctocell.xyz";
github = "yoctocell";
githubId = 40352765;
name = "Yoctocell";

View file

@ -0,0 +1,34 @@
{ stdenv
, fetchFromGitLab
, rustPlatform
, pkg-config
, openssl
, sqlite
, libiconv
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "terminal-typeracer";
version = "2.0.2";
src = fetchFromGitLab {
owner = "ttyperacer";
repo = pname;
rev = "v${version}";
sha256 = "187xrqxalk2gxa22ki5q092llvliddrsc68cg4dvvy2xzq254jfy";
};
cargoSha256 = "0ky8m23fjjbv7fr9776fjczpg0d43jxwnjxjpwz56jpynwnihfkl";
buildInputs = [ openssl sqlite ] ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
nativeBuildInputs = [ pkg-config ];
meta = with stdenv.lib; {
description = "An open source terminal based version of Typeracer written in rust";
homepage = "https://gitlab.com/ttyperacer/terminal-typeracer";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ yoctocell ];
platforms = platforms.x86_64;
};
}

View file

@ -22820,6 +22820,10 @@ in
twinkle = qt5.callPackage ../applications/networking/instant-messengers/twinkle { };
terminal-typeracer = callPackage ../applications/misc/terminal-typeracer {
inherit (darwin.apple_sdk.frameworks) Security;
};
ueberzug = with python3Packages; toPythonApplication ueberzug;
umurmur = callPackage ../applications/networking/umurmur { };