summaryrefslogtreecommitdiff
path: root/trivstream.nix
blob: 2521a88896c97da124a213303238c214444e6646 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ mkDerivation, base, stdenv }:
mkDerivation {
  pname = "trivstream";
  version = "0.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [ base ];
  description = "A trivial client & server for streaming audio over udp between pulseaudio & jack";
  license = stdenv.lib.licenses.gpl3;
}