1
1
mirror of https://github.com/nmattia/snack.git synced 2024-10-11 02:47:39 +03:00
snack/shell.nix
zimbatm 135f8cb578 nix: introduce an overlay
use ./default.nix to get a pinned release
use ./nix/default.nix to just inject a different nixpkgs version
use ./nix/overlay.nix to mix snack with your project
2018-06-08 13:44:49 +01:00

6 lines
82 B
Nix

{ pkgs ? import ./nix {} }:
with pkgs;
mkShell {
buildInputs = [ snack-exe ];
}