Add shell.nix file-template

This commit is contained in:
Henrik Lissner 2019-07-08 14:36:38 +02:00
parent d45b9348c0
commit 5662b2c4b3
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = [
${0:`%`}
];
}