summary refs log tree commit diff stats
path: root/shell.nix
blob: 142eef85ec92760e44ab7950950e4883930053ee (plain)
1
2
3
4
5
6
7
{ pkgs ? import <nixpkgs> { } }:

pkgs.mkShell {
  buildInputs = [
    (pkgs.callPackage ./. { })
  ];
}