This commit is contained in:
Nathan Tien You
2026-04-10 15:50:19 +02:00
parent 8326ee5ea6
commit b47ab39d5a
17 changed files with 89429 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.callPackage (
{
mkShell,
pkg-config,
openssl,
}:
mkShell {
strictDeps = true;
# host/target agnostic programs
# compilers & linkers & dependency finding programs
nativeBuildInputs = with pkgs; [
nodejs_22
];
}
) { }