5 lines
212 B
Nix
5 lines
212 B
Nix
|
|
{ writers, haskellPackages, ... }:
|
||
|
|
writers.writeHaskellBin "web-socket-sink" {
|
||
|
|
libraries = with haskellPackages; [websockets text concurrency unagi-chan optparse-applicative];
|
||
|
|
} (builtins.readFile ./Server.hs)
|