nixpkgs/pkgs/servers/bililiverecorder/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

53 lines
1.2 KiB
Nix

{ lib
, stdenv
, fetchzip
, makeWrapper
, dotnetCorePackages
}:
let
pname = "bililiverecorder";
dotnet = with dotnetCorePackages; combinePackages [
runtime_6_0
aspnetcore_6_0
];
version = "2.11.1";
hash = "sha256-GY6YRgebWeJtjAIm64Pf8wx6pUdZjbevNzKRdyPi1ow=";
in
stdenv.mkDerivation {
inherit pname version;
src = fetchzip {
url = "https://github.com/BililiveRecorder/BililiveRecorder/releases/download/v${version}/BililiveRecorder-CLI-any.zip";
stripRoot = false;
inherit hash;
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
mkdir -p $out/{bin,share/${pname}-${version}}
cp -r * $out/share/${pname}-${version}/.
makeWrapper "${dotnet}/bin/dotnet" $out/bin/BililiveRecorder \
--add-flags "$out/share/${pname}-${version}/BililiveRecorder.Cli.dll"
runHook postInstall
'';
meta = with lib; {
description = "Convenient free open source bilibili live recording tool";
homepage = "https://rec.danmuji.org/";
changelog = "https://github.com/BililiveRecorder/BililiveRecorder/releases/tag/${version}";
mainProgram = "BililiveRecorder";
license = licenses.gpl3Only;
maintainers = with maintainers; [ zaldnoay ];
platforms = platforms.unix;
};
}