Add shell.nix for easy development with nix

This commit is contained in:
Rien Maertens 2021-03-18 00:24:58 +01:00
parent b02efd90dd
commit 6d68652170
No known key found for this signature in database
GPG key ID: AE66CE42F1AF9DEF

7
shell.nix Normal file
View file

@ -0,0 +1,7 @@
let
pkgs = import <nixpkgs> {};
in with pkgs; mkShell {
nativeBuildInputs = [
ruby bundler libxml2 nodejs yarn
];
}