about summary refs log tree commit diff
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
parent8635793fceeb6e4b5cf74e63b2dfde4093d7b9cc (diff)
terminal-typeracer: init at 2.0.2
-rw-r--r--maintainers/maintainer-list.nix2
-rw-r--r--pkgs/applications/misc/terminal-typeracer/default.nix34
-rw-r--r--pkgs/top-level/all-packages.nix4
3 files changed, 39 insertions, 1 deletions
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index 5953f62401de4..231879935e6de 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -8846,7 +8846,7 @@
     name = "Yochai";
   };
   yoctocell = {
-    email = "yoctocell.code@keemail.me";
+    email = "public@yoctocell.xyz";
     github = "yoctocell";
     githubId = 40352765;
     name = "Yoctocell";
diff --git a/pkgs/applications/misc/terminal-typeracer/default.nix b/pkgs/applications/misc/terminal-typeracer/default.nix
new file mode 100644
index 0000000000000..fa68703e8c0f9
--- /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;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 81c0b528f9828..37dd03e42b31e 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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 { };