cwab 0.6.2

A correct, efficient, and simple job processor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ pkgs ? import <nixpkgs> { } }:

with pkgs;

mkShell {
  buildInputs = [
    git
    gnupg
    openssl
    pkg-config
    redis
    nixpkgs-fmt
    rust-dev-toolchain
  ] ++ lib.lists.optionals pkgs.stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
}