mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
pulseaudio-dlna: Fix build by downgrading zeroconf
This commit is contained in:
parent
e37d6efadc
commit
acbfb00352
@ -4,7 +4,7 @@
|
|||||||
, faacSupport ? false, faac ? null
|
, faacSupport ? false, faac ? null
|
||||||
, flacSupport ? true, flac ? null
|
, flacSupport ? true, flac ? null
|
||||||
, soxSupport ? true, sox ? null
|
, soxSupport ? true, sox ? null
|
||||||
, vorbisSupport ? true, vorbisTools ? null
|
, vorbisSupport ? true, vorbisTools ? null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert mp3Support -> lame != null;
|
assert mp3Support -> lame != null;
|
||||||
@ -14,7 +14,10 @@ assert flacSupport -> flac != null;
|
|||||||
assert soxSupport -> sox != null;
|
assert soxSupport -> sox != null;
|
||||||
assert vorbisSupport -> vorbisTools != null;
|
assert vorbisSupport -> vorbisTools != null;
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
let
|
||||||
|
zeroconf = pythonPackages.callPackage ./zeroconf.nix { };
|
||||||
|
|
||||||
|
in pythonPackages.buildPythonApplication rec {
|
||||||
pname = "pulseaudio-dlna";
|
pname = "pulseaudio-dlna";
|
||||||
version = "2017-11-01";
|
version = "2017-11-01";
|
||||||
|
|
||||||
@ -24,13 +27,14 @@ pythonPackages.buildPythonApplication rec {
|
|||||||
rev = "4472928dd23f274193f14289f59daec411023ab0";
|
rev = "4472928dd23f274193f14289f59daec411023ab0";
|
||||||
sha256 = "1dfn7036vrq49kxv4an7rayypnm5dlawsf02pfsldw877hzdamqk";
|
sha256 = "1dfn7036vrq49kxv4an7rayypnm5dlawsf02pfsldw877hzdamqk";
|
||||||
};
|
};
|
||||||
|
|
||||||
# pulseaudio-dlna has no tests
|
# pulseaudio-dlna has no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
propagatedBuildInputs = with pythonPackages; [
|
propagatedBuildInputs = with pythonPackages; [
|
||||||
dbus-python docopt requests setproctitle protobuf psutil futures
|
dbus-python docopt requests setproctitle protobuf psutil futures
|
||||||
chardet notify2 netifaces pyroute2 pygobject2 lxml zeroconf ]
|
chardet notify2 netifaces pyroute2 pygobject2 lxml ]
|
||||||
|
++ [ zeroconf ]
|
||||||
++ stdenv.lib.optional mp3Support lame
|
++ stdenv.lib.optional mp3Support lame
|
||||||
++ stdenv.lib.optional opusSupport opusTools
|
++ stdenv.lib.optional opusSupport opusTools
|
||||||
++ stdenv.lib.optional faacSupport faac
|
++ stdenv.lib.optional faacSupport faac
|
||||||
|
31
pkgs/applications/audio/pulseaudio-dlna/zeroconf.nix
Normal file
31
pkgs/applications/audio/pulseaudio-dlna/zeroconf.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, ifaddr
|
||||||
|
, typing
|
||||||
|
, isPy27
|
||||||
|
, pythonOlder
|
||||||
|
, netifaces
|
||||||
|
, six
|
||||||
|
, enum-compat
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "zeroconf";
|
||||||
|
version = "0.19.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0ykzg730n915qbrq9bn5pn06bv6rb5zawal4sqjyfnjjm66snkj3";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ netifaces six enum-compat ifaddr ]
|
||||||
|
++ stdenv.lib.optionals (pythonOlder "3.5") [ typing ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A pure python implementation of multicast DNS service discovery";
|
||||||
|
homepage = https://github.com/jstasiak/python-zeroconf;
|
||||||
|
license = licenses.lgpl21;
|
||||||
|
maintainers = [ ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user