switched to AFKCommands rust rewrite

This commit is contained in:
ISnortPennies 2022-09-19 00:36:56 -04:00
parent d2113e0f50
commit d221a562f6
6 changed files with 37 additions and 9 deletions

32
pkgs/afk-cmds/default.nix Normal file
View file

@ -0,0 +1,32 @@
{ lib
, rustPlatform
, fetchFromGitHub
, xorg
}:
rustPlatform.buildRustPackage rec {
pname = "afk-cmds";
version= "1.0.0";
src = fetchFromGitHub {
owner = "ISnortPennies";
repo = "afk-cmds";
rev = "6a131c4892ea411281426d1165a48607e556f729";
sha256 = "sha256-LK6XeQc5Rc7KxwL2r2L3dCAKtbENuigbyTTuS+7JKnQ=";
};
buildInputs = [
xorg.libXScrnSaver
xorg.libX11
];
cargoSha256 = "sha256-Osxg/KuHOdnz8UYnbT69dmNFLHW6Cq1fLb32/UJeDUg=";
meta = with lib; {
homepage = "https://github.com/ISnortPennies/AFKCommands";
description = "";
license = licenses.unlicense;
maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
}