pkgs/jellysearch: init at 0.0.1
All checks were successful
Check flake / build-amd64-linux (push) Successful in 1m16s
All checks were successful
Check flake / build-amd64-linux (push) Successful in 1m16s
This commit is contained in:
32
pkgs/jellysearch/package.nix
Normal file
32
pkgs/jellysearch/package.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitLab,
|
||||
buildDotnetModule,
|
||||
dotnetCorePackages,
|
||||
}:
|
||||
|
||||
buildDotnetModule rec {
|
||||
pname = "jellysearch";
|
||||
version = "0.0.1";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "DomiStyle";
|
||||
repo = "JellySearch";
|
||||
rev = "7397e3f8c7daa6f0d30b22dda7c5159a913ca6b8";
|
||||
hash = "sha256-7t0j4S5A9yvRN8zjToMNsxJ72OjU3j++EAqq9CKcPaI=";
|
||||
};
|
||||
|
||||
projectFile = "src/JellySearch/JellySearch.csproj";
|
||||
executables = [ "jellysearch" ];
|
||||
nugetDeps = ./nuget-deps.json;
|
||||
dotnet-sdk = dotnetCorePackages.sdk_8_0;
|
||||
dotnet-runtime = dotnetCorePackages.aspnetcore_8_0;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A fast full-text search proxy for Jellyfin";
|
||||
homepage = "https://gitlab.com/DomiStyle/jellysearch";
|
||||
license = licenses.mit;
|
||||
mainProgram = "JellySearch";
|
||||
platforms = dotnet-runtime.meta.platforms;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user