From 4513fc6975776a0bbb40ba5b37831923bc140afa Mon Sep 17 00:00:00 2001 From: Miles Breslin Date: Sat, 18 Feb 2023 23:35:44 -0800 Subject: [PATCH] evscript: unstable-2021-06-16 -> unstable-2022-11-20 --- pkgs/tools/inputmethods/evscript/default.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/inputmethods/evscript/default.nix b/pkgs/tools/inputmethods/evscript/default.nix index 8afd4804e0ed..e7b65f6c2147 100644 --- a/pkgs/tools/inputmethods/evscript/default.nix +++ b/pkgs/tools/inputmethods/evscript/default.nix @@ -1,20 +1,21 @@ -{ lib, rustPlatform, fetchFromGitHub }: +{ lib, rustPlatform, fetchFromGitea }: rustPlatform.buildRustPackage rec { pname = "evscript"; - version = "unstable-2021-06-16"; + version = "unstable-2022-11-20"; - src = fetchFromGitHub { - owner = "unrelentingtech"; + src = fetchFromGitea { + domain = "codeberg.org"; + owner = "valpackett"; repo = pname; - rev = "25912c0b6446f31b0f64485af3fa4aa8a93b33df"; - sha256 = "sha256-apq3kHipEX6zOTNwqpIQR46JqmeE7EKVSOGrNNSkyu8="; + rev = "ba997c9723a91717c683f08e9957d0ecea3da6cd"; + sha256 = "sha256-wuTPcBUuPK1D4VO8BXexx9AdiPM+X0TkJ3G7b7ofER8="; }; - cargoSha256 = "sha256-1aR9/fhJQ+keRIxSG2cpY1HTalE6nM+MTb1Za3Tot28="; + cargoSha256 = "sha256-5jcb/MajXV9bp0T9Og8d5TEzTwQyiyPTPHeWh8Ewr8Q="; meta = with lib; { - homepage = "https://github.com/unrelentingtech/evscript"; + homepage = "https://codeberg.org/valpackett/evscript"; description = "A tiny sandboxed Dyon scripting environment for evdev input devices"; license = licenses.unlicense; maintainers = with maintainers; [ milesbreslin ];