1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-06-09 05:29:29 +00:00
This commit is contained in:
Rae 5e 2025-06-05 22:29:06 -04:00
parent ba9f49ea9a
commit 58e551abb2
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
14 changed files with 686 additions and 740 deletions

View file

@ -1,20 +1,21 @@
{ rustPlatform, fetchFromGitHub, lib }: rustPlatform.buildRustPackage rec {
pname = "playit-agent";
version = "0.15.26";
pname = "playit-agent";
version = "0.15.26";
src = fetchFromGitHub {
owner = "playit-cloud";
repo = "playit-agent";
rev = "v" + version;
sha256 = "12wc8am3zamjlkn61ajjw8kdvdrn9plvjnhskx56yspz9v9sys6f";
};
src = fetchFromGitHub {
owner = "playit-cloud";
repo = "playit-agent";
rev = "v" + version;
sha256 = "12wc8am3zamjlkn61ajjw8kdvdrn9plvjnhskx56yspz9v9sys6f";
};
cargoHash = "sha256-JRsmZ5D/awsIjExGTDkzYkun6oeIpL1FkZJKzZf/XF0=";
doCheck = false; # uses network tests and it also takes SO FUCKING LONG oh my god
cargoHash = "sha256-JRsmZ5D/awsIjExGTDkzYkun6oeIpL1FkZJKzZf/XF0=";
doCheck = false; # uses network tests and it also takes SO FUCKING LONG oh my god
meta = with lib; {
description = "The playit program";
homepage = "https://playit.gg/";
license = licenses.bsd2;
};
meta = with lib; {
description = "The playit program";
homepage = "https://playit.gg/";
license = licenses.bsd2;
};
}