summaryrefslogtreecommitdiff
path: root/nixos/packages/pulseaudio-dlna/default.nix
blob: 509920fb79bc3991f68001bf4a1147fc8f50e9c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchFromGitHub, python27Packages }:

python27Packages.buildPythonApplication rec {
  name = "pulseaudio-dlna-${version}";
  version = "0.5.2";

  src = fetchFromGitHub {
    owner = "masmu";
    repo = "pulseaudio-dlna";
    rev = version;
    sha256 = "1y8mhd537x0nfippy8mn9a0iq9xdisixign0372ldp9pwy8w7fd4";
  };

  propagatedBuildInputs = with python27Packages; [
    docopt requests2 setproctitle protobuf notify2 psutil futures chardet
    netaddr netifaces lxml zeroconf pygobject2
  ];

  meta = with stdenv.lib; {
    homepage = https://github.com/masmu/pulseaudio-dlna;
    description = "A DLNA server which brings DLNA / UPNP support to PulseAudio";
    license = licenses.gpl3;
    maintainers = with maintainers; [ orbekk ];
    platforms = platforms.linux;
  };
}