nixpkgs/pkgs/servers/bazarr/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

2021-08-01 11:38:44 +00:00
{ stdenv, lib, fetchurl, makeWrapper, unzip, python3, unrar, ffmpeg, nixosTests }:
2020-05-10 10:26:22 +00:00
stdenv.mkDerivation rec {
pname = "bazarr";
2021-07-19 21:41:57 +00:00
version = "0.9.6";
2020-05-10 10:26:22 +00:00
2021-08-01 11:38:44 +00:00
sourceRoot = ".";
2020-05-10 10:26:22 +00:00
src = fetchurl {
2021-08-01 11:38:44 +00:00
url = "https://github.com/morpheus65535/bazarr/releases/download/v${version}/bazarr.zip";
sha256 = "sha256-ZSQzDlObnv5DEra2+YgXhox583KPyGIjia0SJyTUPWo=";
2020-05-10 10:26:22 +00:00
};
2021-08-01 11:38:44 +00:00
nativeBuildInputs = [ unzip makeWrapper ];
2020-05-10 10:26:22 +00:00
installPhase = ''
2021-08-01 11:38:44 +00:00
mkdir -p $out/{bin,share/${pname}-${version}}
cp -r * $out/share/${pname}-${version}
makeWrapper "${
(python3.withPackages
(ps: [ ps.lxml ps.numpy ps.gevent ps.gevent-websocket ])).interpreter
}" \
2020-05-10 10:26:22 +00:00
$out/bin/bazarr \
2021-08-01 11:38:44 +00:00
--add-flags "$out/share/${pname}-${version}/bazarr.py" \
--suffix PATH : ${lib.makeBinPath [ unrar ffmpeg ]}
2020-05-10 10:26:22 +00:00
'';
passthru.tests = {
smoke-test = nixosTests.bazarr;
};
meta = with lib; {
description = "Subtitle manager for Sonarr and Radarr";
homepage = "https://www.bazarr.media/";
2021-03-25 10:17:59 +00:00
license = licenses.gpl3Only;
2021-08-08 17:11:45 +00:00
maintainers = with maintainers; [ d-xo ];
2020-05-10 10:26:22 +00:00
platforms = platforms.all;
};
}