forked from mirrors/nixpkgs
terminal-typeracer: init at 2.0.2
This commit is contained in:
parent
8635793fce
commit
f3f65a58b1
|
@ -8846,7 +8846,7 @@
|
|||
name = "Yochai";
|
||||
};
|
||||
yoctocell = {
|
||||
email = "yoctocell.code@keemail.me";
|
||||
email = "public@yoctocell.xyz";
|
||||
github = "yoctocell";
|
||||
githubId = 40352765;
|
||||
name = "Yoctocell";
|
||||
|
|
34
pkgs/applications/misc/terminal-typeracer/default.nix
Normal file
34
pkgs/applications/misc/terminal-typeracer/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue