imsh-clients

Clients for imsh screenshot/screencast sharing service
git clone https://git.echoz.io/imsh-clients.git
Log | Files | Refs

default.nix (265B)


      1 {
      2   writeShellApplication,
      3 
      4   coreutils,
      5   inotify-tools,
      6   jq,
      7   ...
      8 }:
      9 writeShellApplication {
     10   name = "imsh-cast-monitor";
     11   runtimeInputs = [
     12     coreutils
     13     inotify-tools
     14     jq
     15   ];
     16   bashOptions = [ ];
     17   text = builtins.readFile ./imsh-cast-monitor.sh;
     18 }