imsh-clients

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

commit be82e85582063317a686d6f59ecb4edad0411d10
parent 9fb726805a2f9ae34d80ccf8332a09343dbef709
Author: Chris <chris@echoz.io>
Date:   Fri, 21 Nov 2025 07:52:16 +0100

build: update nixpkgs and overlay updated wf-recorder

Diffstat:
Mflake.lock | 6+++---
Mflake.nix | 13++++++++++++-
2 files changed, 15 insertions(+), 4 deletions(-)

diff --git a/flake.lock b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1759381078, - "narHash": "sha256-gTrEEp5gEspIcCOx9PD8kMaF1iEmfBcTbO0Jag2QhQs=", + "lastModified": 1763421233, + "narHash": "sha256-Stk9ZYRkGrnnpyJ4eqt9eQtdFWRRIvMxpNRf4sIegnw=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "7df7ff7d8e00218376575f0acdcc5d66741351ee", + "rev": "89c2b2330e733d6cdb5eae7b899326930c2c0648", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix @@ -11,7 +11,18 @@ ]; argsFor = system: { inherit system; - pkgs = nixpkgs.legacyPackages.${system}; + pkgs = nixpkgs.legacyPackages.${system}.extend (self: super: { + # Remove when https://github.com/NixOS/nixpkgs/pull/463657 + # makes it to nixos-unstable + wf-recorder = super.wf-recorder.overrideAttrs (prev: rec { + version = "0.6.0"; + src = prev.src.override { + rev = "v${version}"; + hash = "sha256-CY0pci2LNeQiojyeES5323tN3cYfS3m4pECK85fpn5I="; + }; + patches = null; + }); + }); }; forAllSystems = f: lib.genAttrs systems (system: f (argsFor system)); in