mirror of
https://github.com/ivabus/website
synced 2024-11-25 01:45:11 +03:00
16 lines
271 B
Nix
16 lines
271 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs.buildPackages;
|
|
with rubyPackages; [
|
|
bundler
|
|
nodejs-slim
|
|
bundix
|
|
jekyll
|
|
bundler
|
|
eventmachine
|
|
racc
|
|
em-websocket
|
|
ffi
|
|
json
|
|
];
|
|
}
|