imsh-clients

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

overlay.nix (512B)


      1 self: super: {
      2   imsh-shot = self.callPackage ./imsh-shot { };
      3   imsh-cast = self.callPackage ./imsh-cast { };
      4   imsh-cast-monitor = self.callPackage ./imsh-cast-monitor { };
      5 
      6   # Remove when https://github.com/NixOS/nixpkgs/pull/463657
      7   # makes it to nixos-unstable
      8   wf-recorder = super.wf-recorder.overrideAttrs (prev: rec {
      9     version = "0.6.0";
     10     src = prev.src.override {
     11       rev = "v${version}";
     12       hash = "sha256-CY0pci2LNeQiojyeES5323tN3cYfS3m4pECK85fpn5I=";
     13     };
     14     patches = null;
     15   });
     16 }