8c93a47682
* Moved copying server-build/ from grunt to package.json using rsync to make sure to copy exactly what is needed and resolve symlinks correctly.
20 lines
246 B
Nix
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 ];
|
|
}
|