tildefriends/shell.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
173 B
Nix
Raw Normal View History

2024-03-22 05:12:21 -04:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "env";
nativeBuildInputs = [
cmake
openssl
nodePackages.npm
2024-03-22 15:25:32 -04:00
jdk11
2024-03-22 05:12:21 -04:00
];
buildInputs = [
];
}