Merge pull request #148590 from yoctocell/terminal-typeracer-update

This commit is contained in:
Sandro 2021-12-05 06:05:40 +01:00 committed by GitHub
commit ab202561ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,16 +10,16 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "terminal-typeracer"; pname = "terminal-typeracer";
version = "2.0.4"; version = "2.0.8";
src = fetchFromGitLab { src = fetchFromGitLab {
owner = "ttyperacer"; owner = "ttyperacer";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "RjGHY6KN6thxbg9W5FRwaAmUeD+5/WCeMCvzFHqZ+J4="; sha256 = "Fb2MCQaQaJseXa8Csesz1s5Yel4wcSMxfMeKSW7rlU4=";
}; };
cargoSha256 = "sha256-A7O/e8PAcW36i8pT71SkWoWDIiMuEhSS9SmASNzNCjk="; cargoSha256 = "sha256-SAVDSUm2jpDwTfwo4L6MVUKzBxZvCfjn4UNIGUJziSY=";
buildInputs = [ openssl sqlite ] ++ lib.optionals stdenv.isDarwin [ libiconv Security ]; buildInputs = [ openssl sqlite ] ++ lib.optionals stdenv.isDarwin [ libiconv Security ];
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
@ -29,6 +29,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://gitlab.com/ttyperacer/terminal-typeracer"; homepage = "https://gitlab.com/ttyperacer/terminal-typeracer";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ yoctocell ]; maintainers = with maintainers; [ yoctocell ];
platforms = platforms.x86_64; platforms = platforms.unix;
}; };
} }