Add shell.nix for comfy development on NixOS
This commit is contained in:
parent
21fc4d89d0
commit
acdca6641b
1 changed files with 18 additions and 0 deletions
18
shell.nix
Normal file
18
shell.nix
Normal 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 ];
|
||||
}
|
Loading…
Reference in a new issue