Merge pull request #232912 from figsoda/shairport

shairport-sync: switch to openssl 3
This commit is contained in:
Nick Cao 2023-05-19 20:22:31 -06:00 committed by GitHub
commit c62e6ac41a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@
, fetchFromGitHub
, autoreconfHook
, pkg-config
, openssl_1_1
, openssl
, avahi
, alsa-lib
, libplist
@ -34,6 +34,10 @@
, enableLibdaemon ? false
}:
let
inherit (lib) optional optionals;
in
stdenv.mkDerivation rec {
version = "4.1.1";
pname = "shairport-sync";
@ -47,8 +51,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = with lib; [
openssl_1_1
buildInputs = [
openssl
avahi
popt
libconfig
@ -76,7 +80,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
configureFlags = with lib; [
configureFlags = [
"--without-configfiles"
"--sysconfdir=/etc"
"--with-ssl=openssl"