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-16_x
|
|
rsync
|
|
sqlite
|
|
zlib
|
|
];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
}
|