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