1
0
Fork 0
mirror of https://github.com/numtide/flake-utils.git synced 2025-03-06 08:56:53 +00:00
flake-utils/examples/simple-flake/shell.nix
2020-08-23 13:28:05 +00:00

4 lines
75 B
Nix

{ pkgs ? import <nixpkgs> }:
pkgs.mkShell {
buildInputs = [ pkgs.jq ];
}