Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.1 KiB
Nix
Raw Normal View History

2023-10-17 02:27:26 +03:00
{
lib,
buildDotnetModule,
fetchFromGitHub,
dotnetCorePackages,
}:
buildDotnetModule rec {
pname = "torrentstream";
version = "1.0.1.11";
2023-10-17 02:27:26 +03:00
src = fetchFromGitHub {
owner = "trueromanus";
repo = "TorrentStream";
rev = version;
hash = "sha256-3lmQWx00Ulp0ZyQBEhFT+djHBi84foMlWGJEp/UOGek=";
2023-10-17 02:27:26 +03:00
};
sourceRoot = "${src.name}/src";
2023-10-17 02:27:26 +03:00
dotnet-runtime = dotnetCorePackages.aspnetcore_8_0;
dotnet-sdk = dotnetCorePackages.sdk_8_0;
2023-10-17 02:27:26 +03:00
executables = [ "TorrentStream" ];
nugetDeps = ./deps.json;
projectFile = "TorrentStream.csproj";
selfContainedBuild = true;
dotnetFlags = [
"-p:PublishAot=false" # untill https://github.com/NixOS/nixpkgs/issues/280923 is fixed
"-p:PublishSingleFile=true"
];
2023-10-17 02:27:26 +03:00
patches = [
./0001-display-the-message-of-caught-exceptions.patch
];
meta = {
homepage = "https://github.com/trueromanus/TorrentStream";
description = "Simple web server for streaming torrent files in video players";
license = lib.licenses.bsd2;
platforms = lib.platforms.all;
mainProgram = "TorrentStream";
maintainers = with lib.maintainers; [ _3JlOy-PYCCKUi ];
};
}