mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-02-13 04:32:05 +00:00
21 lines
586 B
Nix
21 lines
586 B
Nix
|
# TODO Um this is a rust package
|
||
|
{ rustPlatform, fetchFromGitHub, lib }: rustPlatform.buildRustPackage rec {
|
||
|
pname = "playit-agent";
|
||
|
version = "0.15.26";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "playit-cloud";
|
||
|
repo = "playit-agent";
|
||
|
rev = "v" + version;
|
||
|
sha256 = "12wc8am3zamjlkn61ajjw8kdvdrn9plvjnhskx56yspz9v9sys6f";
|
||
|
};
|
||
|
|
||
|
cargoHash = "sha256-JRsmZ5D/awsIjExGTDkzYkun6oeIpL1FkZJKzZf/XF0=";
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "The playit program";
|
||
|
homepage = "https://playit.gg/";
|
||
|
license = licenses.bsd2;
|
||
|
};
|
||
|
}
|