mirror of
https://gricad-gitlab.univ-grenoble-alpes.fr/tienyoun/presentations.git
synced 2026-09-26 21:41:08 +00:00
20 lines
304 B
Nix
20 lines
304 B
Nix
{
|
|
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
|
|
];
|
|
}
|
|
) { }
|