mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ lib
|
|
, buildDotnetModule
|
|
, fetchFromGitHub
|
|
, dotnetCorePackages
|
|
}:
|
|
|
|
buildDotnetModule rec {
|
|
pname = "torrentstream";
|
|
version = "1.0.1.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "trueromanus";
|
|
repo = "TorrentStream";
|
|
rev = version;
|
|
hash = "sha256-3lmQWx00Ulp0ZyQBEhFT+djHBi84foMlWGJEp/UOGek=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/src";
|
|
|
|
dotnet-runtime = dotnetCorePackages.aspnetcore_8_0;
|
|
dotnet-sdk = dotnetCorePackages.sdk_8_0;
|
|
executables = [ "TorrentStream" ];
|
|
nugetDeps = ./deps.nix;
|
|
projectFile = "TorrentStream.csproj";
|
|
selfContainedBuild = true;
|
|
|
|
dotnetFlags = [
|
|
"-p:PublishAot=false" # untill https://github.com/NixOS/nixpkgs/issues/280923 is fixed
|
|
"-p:PublishSingleFile=true"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|