graph-trace/shell.nix
2021-12-02 20:26:04 -06:00

12 lines
176 B
Nix

{ system ? builtins.currentSystem }:
with import <nixpkgs> { inherit system; };
mkShell {
buildInputs = [
haskell.compiler.ghc921
cabal-install
graphviz
];
}