Files

5 lines
212 B
Nix
Raw Permalink Normal View History

2022-09-06 21:45:00 +02:00
{ writers, haskellPackages, ... }:
writers.writeHaskellBin "web-socket-sink" {
libraries = with haskellPackages; [websockets text concurrency unagi-chan optparse-applicative];
} (builtins.readFile ./Server.hs)