tildefriends/shell.nix

12 lines
163 B
Nix

with import <nixpkgs> {};
stdenv.mkDerivation {
name = "env";
nativeBuildInputs = [
cmake
openssl
nodePackages.npm
];
buildInputs = [
];
}