imsh-clients

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

default.nix (328B)


      1 {
      2   writeShellApplication,
      3 
      4   coreutils,
      5   curl,
      6   grimblast,
      7   jq,
      8   wl-clipboard,
      9   ...
     10 }:
     11 writeShellApplication {
     12   name = "imsh-shot";
     13   runtimeInputs = [
     14     coreutils
     15     curl
     16     grimblast
     17     jq
     18     wl-clipboard
     19   ];
     20   bashOptions = [ ];
     21   excludeShellChecks = [ "SC2194" ];
     22   text = builtins.readFile ./imsh-shot.sh;
     23 }