mirror of
https://github.com/Drezil/dear-imgui.hs.git
synced 2024-11-22 16:57:00 +00:00
18 lines
505 B
Nix
18 lines
505 B
Nix
|
let
|
||
|
hsPkgs = import ./default.nix {};
|
||
|
in
|
||
|
hsPkgs.shellFor {
|
||
|
# Builds a Hoogle documentation index of all dependencies,
|
||
|
# and provides a "hoogle" command to search the index.
|
||
|
withHoogle = true;
|
||
|
|
||
|
# You might want some extra tools in the shell (optional).
|
||
|
|
||
|
# Some common tools can be added with the `tools` argument
|
||
|
tools = { cabal = "3.2.0.0"; };
|
||
|
|
||
|
# Prevents cabal from choosing alternate plans, so that
|
||
|
# *all* dependencies are provided by Nix.
|
||
|
exactDeps = true;
|
||
|
}
|