ffffng/shell.nix
baldo 8c93a47682 Fix: Database migration and mail template files were not included in dist.
* Moved copying server-build/ from grunt to package.json
  using rsync to make sure to copy exactly what is needed
  and resolve symlinks correctly.
2021-02-22 21:36:40 +01:00

20 lines
246 B
Nix

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