mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
Merge pull request #318622 from alapshin/sonarr-zlib
sonarr: add missing zlib dependency
This commit is contained in:
commit
2200358e2c
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchurl, dotnet-runtime, icu, ffmpeg, openssl, sqlite, curl, makeWrapper, nixosTests }:
|
||||
{ lib, stdenv, fetchurl, dotnet-runtime, icu, ffmpeg, openssl, sqlite, curl, makeWrapper, nixosTests, zlib }:
|
||||
|
||||
let
|
||||
os = if stdenv.isDarwin then "osx" else "linux";
|
||||
@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
|
||||
makeWrapper "${dotnet-runtime}/bin/dotnet" $out/bin/NzbDrone \
|
||||
--add-flags "$out/share/sonarr-${version}/Sonarr.dll" \
|
||||
--prefix PATH : ${lib.makeBinPath [ ffmpeg ]} \
|
||||
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ curl sqlite openssl icu ]}
|
||||
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ curl sqlite openssl icu zlib ]}
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
Loading…
Reference in New Issue
Block a user