jocker 0.4.0

Run your monorepo binaries locally with ease !
1
2
3
4
5
6
7
8
9
10
{ pkgs ? import (fetchTarball {
  name = "nixos-unstable-2024-11-03";
  url = "https://github.com/nixos/nixpkgs/archive/a86d06940e17a4c236d9ea3cefdd323cad362679.tar.gz";
}) {} }:
pkgs.mkShell {
  packages = with pkgs; [
    clang
    lld
  ];
}