8 lines
147 B
Nix
8 lines
147 B
Nix
with import <nixpkgs> { };
|
|
mkShell rec {
|
|
name = "heyarne.all-my-friends.server";
|
|
buildInputs = with pkgs; [
|
|
clojure
|
|
nodejs-14_x
|
|
];
|
|
}
|