Add nix shell deps

master
Elis Hirwing 2018-12-22 21:12:04 +01:00
commit 1e2e87306e
Signed by: etu
GPG Key ID: D57EFA625C9A925F
2 changed files with 8 additions and 0 deletions

1
.envrc Normal file
View File

@ -0,0 +1 @@
use nix

7
shell.nix Normal file
View File

@ -0,0 +1,7 @@
with (import <nixpkgs> {});
mkShell {
buildInputs = [
php
];
}