Add shell.nix for comfy development on NixOS

This commit is contained in:
baldo 2019-03-29 20:55:20 +01:00
parent 21fc4d89d0
commit acdca6641b

18
shell.nix Normal file
View file

@ -0,0 +1,18 @@
with import <nixpkgs> {};
with pkgs;
stdenv.mkDerivation rec {
name = "ffffng";
version = "dev";
buildInputs = [
compass
git
nasm
nodejs-10_x
sqlite
zlib
];
nativeBuildInputs = [ autoreconfHook ];
}