summary refs log tree commit diff
path: root/pkgs/applications/misc/terminal-typeracer
diff options
context:
space:
mode:
authoryoctocell <attocell.name@protonmail.com>2020-07-23 11:49:53 +0200
committeryoctocell <yoctocell@disroot.org>2020-12-01 14:17:04 +0100
commitf3f65a58b164e99e0ac1e666716e821cffc05d97 (patch)
tree4d6f0e40602c8a1521f8c9dfea6d19588163e2aa /pkgs/applications/misc/terminal-typeracer
parent8635793fceeb6e4b5cf74e63b2dfde4093d7b9cc (diff)
downloadnixpkgs-f3f65a58b164e99e0ac1e666716e821cffc05d97.tar
nixpkgs-f3f65a58b164e99e0ac1e666716e821cffc05d97.tar.gz
nixpkgs-f3f65a58b164e99e0ac1e666716e821cffc05d97.tar.bz2
nixpkgs-f3f65a58b164e99e0ac1e666716e821cffc05d97.tar.lz
nixpkgs-f3f65a58b164e99e0ac1e666716e821cffc05d97.tar.xz
nixpkgs-f3f65a58b164e99e0ac1e666716e821cffc05d97.tar.zst
nixpkgs-f3f65a58b164e99e0ac1e666716e821cffc05d97.zip
terminal-typeracer: init at 2.0.2
Diffstat (limited to 'pkgs/applications/misc/terminal-typeracer')
-rw-r--r--pkgs/applications/misc/terminal-typeracer/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/applications/misc/terminal-typeracer/default.nix b/pkgs/applications/misc/terminal-typeracer/default.nix
new file mode 100644
index 00000000000..fa68703e8c0
--- /dev/null
+++ b/pkgs/applications/misc/terminal-typeracer/default.nix
@@ -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;
+  };
+}