mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-01-30 22:53:37 +00:00
~
This commit is contained in:
parent
84ae9a41aa
commit
3d22e38d31
2 changed files with 21 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
{ ... }: final: prev: with final; {
|
||||
chibicc-uxn = callPackage ./chibicc-uxn {};
|
||||
playit-agent = callPackage ./playit-agent {};
|
||||
ynodesktop = callPackage ./ynodesktop {};
|
||||
}
|
||||
|
|
20
nixos/pkgs/playit-agent/default.nix
Normal file
20
nixos/pkgs/playit-agent/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
# 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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue