The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add `shell.nix`

+16
+16
shell.nix
··· 1 + { pkgs ? import (builtins.fetchTarball { 2 + url = "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz"; 3 + }) {} 4 + }: 5 + 6 + pkgs.mkShell { 7 + nativeBuildInputs = with pkgs.ocamlPackages; [ 8 + dune_3 9 + findlib 10 + ocaml 11 + lablgtk 12 + ]; 13 + buildInputs = with pkgs.ocamlPackages; [ 14 + graphics 15 + ]; 16 + }