This commit is contained in:
Nathan Tien You
2025-12-03 16:43:39 +01:00
parent 4eed10da17
commit b86faabc79
17 changed files with 5196 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.callPackage (
{
mkShell,
pkg-config,
openssl,
}:
mkShell {
strictDeps = true;
# host/target agnostic programs
depsBuildBuild = [
pkgs.nodejs_24
];
}
) { }