diff options
| author | 2025-12-02 14:58:58 +0100 | |
|---|---|---|
| committer | 2025-12-02 14:58:58 +0100 | |
| commit | 245cf1ebf59e9d964d48a3c3e8be8ed34deba6dd (patch) | |
| tree | 03e0b87d002a07fcf19c427dfb7bfb9b31fb86bc /flake.nix | |
| parent | fossil-archive: send stderr to logs too (diff) | |
| signature | ||
flake: add websocat, jq
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -15,7 +15,15 @@ pkgs = nixpkgs.legacyPackages.${system}; in { - devShells.default = pkgs.mkShellNoCC { packages = [ (pkgs.python3.withPackages (p: [ p.requests p.mwclient p.lxml ])) ]; }; + devShells = { + default = pkgs.mkShellNoCC { + packages = (with pkgs; [ + (python3.withPackages (p: [ p.requests p.mwclient p.lxml ])) + websocat + jq + ]); + }; + }; } ); } |
