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

8 lines
154 B
Nix
Raw Normal View History

2018-06-01 00:25:21 +03:00
{ pkgs ? import ./nix {} }:
let
snack = (pkgs.callPackage ./. {}).snack-exe;
in pkgs.mkShell
{ name = "snack-shell";
buildInputs = [ snack ];
}