summaryrefslogtreecommitdiff
path: root/shell.nix
blob: e9b047eef6d1c2940736753012da1cf25afb9348 (plain)
1
2
3
4
5
6
7
let
  pkgs = import <nixpkgs> {};
  def = import ./default.nix;
in
pkgs.mkShell {
  buildInputs = def.buildInputs;
}