summaryrefslogtreecommitdiff
path: root/shell.nix
blob: 5410111fcaf8203ecffa318c4593deae6308770f (plain)
1
2
3
4
5
6
7
8
9
10
11
let 
  sources = import ./nix/sources.nix;
  pkgs = import sources.nixpkgs {};
in
  with pkgs;
mkShell {
  buildInputs = [
    guile
    guileLint
  ];
}