mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
76 lines
1.6 KiB
Nix
76 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
pkgs,
|
|
fetchFromGitHub,
|
|
runCommand,
|
|
buildNpmPackage,
|
|
nodejs_18,
|
|
tone,
|
|
ffmpeg-full,
|
|
util-linux,
|
|
python3,
|
|
getopt
|
|
}:
|
|
|
|
let
|
|
nodejs = nodejs_18;
|
|
|
|
pname = "audiobookshelf";
|
|
version = "2.4.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "advplyr";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Eqi6QVX8ZxX87IJcDNlDEzWYH7FBvYMs/iBAopLGYl4=";
|
|
};
|
|
|
|
client = buildNpmPackage {
|
|
pname = "${pname}-client";
|
|
inherit version;
|
|
|
|
src = runCommand "cp-source" {} ''
|
|
cp -r ${src}/client $out
|
|
'';
|
|
|
|
NODE_OPTIONS = "--openssl-legacy-provider";
|
|
|
|
npmBuildScript = "generate";
|
|
npmDepsHash = "sha256-j6Q3i3ktvBUMQxCMNIqRjSMly6UMzewaF1EfAmNF8mQ=";
|
|
};
|
|
|
|
wrapper = import ./wrapper.nix {
|
|
inherit stdenv ffmpeg-full tone pname nodejs getopt;
|
|
};
|
|
|
|
in buildNpmPackage {
|
|
inherit pname version src;
|
|
|
|
buildInputs = [ util-linux ];
|
|
nativeBuildInputs = [ python3 ];
|
|
|
|
dontNpmBuild = true;
|
|
npmInstallFlags = [ "--only-production" ];
|
|
npmDepsHash = "sha256-fxXetf6KVK8hEwYZsER/rmt5tDagEOiyh+dJJE8FOXY=";
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/opt/client
|
|
cp -r index.js server package* node_modules $out/opt/
|
|
cp -r ${client}/lib/node_modules/${pname}-client/dist $out/opt/client/dist
|
|
mkdir $out/bin
|
|
|
|
echo '${wrapper}' > $out/bin/${pname}
|
|
echo " exec ${nodejs}/bin/node $out/opt/index.js" >> $out/bin/${pname}
|
|
|
|
chmod +x $out/bin/${pname}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.audiobookshelf.org/";
|
|
description = "Self-hosted audiobook and podcast server";
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.jvanbruegge ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|