8 lines
126 B
Nix
8 lines
126 B
Nix
|
let
|
||
|
pkgs = import <nixpkgs> {};
|
||
|
in with pkgs; mkShell {
|
||
|
nativeBuildInputs = [
|
||
|
ruby bundler libxml2 nodejs yarn
|
||
|
];
|
||
|
}
|