nixpkgs/pkgs/by-name/vr/vrcadvert/package.nix
Sefa Eyeoglu 6269821e6f
vrcadvert: init at 1.0.0
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-09-05 17:49:32 +02:00

31 lines
648 B
Nix

{
buildDotnetModule,
fetchFromGitHub,
lib,
}:
buildDotnetModule rec {
pname = "VrcAdvert";
version = "1.0.0";
src = fetchFromGitHub {
owner = "galister";
repo = "VrcAdvert";
rev = "v${version}";
hash = "sha256-noIu5LV0yva94Kmdr39zb0kKXDaIrQ8DIplCj3aTIbQ=";
};
nugetDeps = ./deps.nix;
executables = [ "VrcAdvert" ];
meta = {
description = "Advertise your OSC app through OSCQuery";
homepage = "https://github.com/galister/VrcAdvert";
license = lib.licenses.unlicense;
maintainers = with lib.maintainers; [ Scrumplex ];
mainProgram = "VrcAdvert";
platforms = lib.platforms.all;
};
}