= Access to a Haskell package defined in a flake //// $ mkdir tempwork $ cd tempwork $ cp ../flake.nix . $ git add flake.nix $ nix develop $ git add flake.lock $ git commit -a -m temp //// In this example we will access three Haskell packages (`pandoc-linear-table`, `pandoc-logic-proof`, and `pandoc-columns`) that are defined as flakes on my hard drive. We are using `haskell-flake`, so the development environment is set up automatically; no need to define `devShells`. [source,nix,linenums] .flake.nix .... include::flake.nix[] .... Here's a demonstration using the shell. .... $# ../../../../../start-shell nix develop <