summaryrefslogtreecommitdiff
path: root/trivstream.nix
blob: 7e8c8721342a70a8ecd24eae16b568afbee610dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ mkDerivation, base, cereal, cereal-conduit, conduit
, conduit-extra, data-default-class, gitrev, jack, lens, mtl
, network, optparse-applicative, pulse-simple, socket-activation
, stdenv, transformers
}:
mkDerivation {
  pname = "trivstream";
  version = "0.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    base cereal cereal-conduit conduit conduit-extra data-default-class
    gitrev jack lens mtl network optparse-applicative pulse-simple
    socket-activation transformers
  ];
  description = "A trivial client & server for streaming audio between pulseaudio and jack over udp/tcp";
  license = stdenv.lib.licenses.gpl3;
}