1
1
mirror of https://github.com/nmattia/snack.git synced 2024-09-21 08:37:09 +03:00
snack/shell.nix
2018-05-31 23:25:21 +02:00

8 lines
154 B
Nix

{ pkgs ? import ./nix {} }:
let
snack = (pkgs.callPackage ./. {}).snack-exe;
in pkgs.mkShell
{ name = "snack-shell";
buildInputs = [ snack ];
}