1
Fork 0
mirror of https://github.com/RGBCube/alejandra synced 2025-07-31 20:47:46 +00:00

feat: update dependencies

This commit is contained in:
Kevin Amado 2022-02-17 01:12:12 -05:00
parent cc6c15079b
commit 4aa0d7cf62
No known key found for this signature in database
GPG key ID: FFF341057F503148
10 changed files with 371 additions and 348 deletions

View file

@ -11,24 +11,26 @@
fenix = inputs.fenix.packages.${system};
nixpkgs = import inputs.nixpkgs { inherit system; };
in
{
devShell.${system} = nixpkgs.mkShell {
name = "alejandra";
packages = [
(
fenix.combine [
fenix.latest.rustc
fenix.latest.toolchain
fenix.targets."wasm32-unknown-unknown".latest.rust-std
]
)
nixpkgs.binaryen
nixpkgs.pkg-config
nixpkgs.openssl
nixpkgs.yarn
nixpkgs.wasm-pack
];
};
in {
devShell.${system} = nixpkgs.mkShell {
name = "alejandra";
packages = [
(
fenix.combine [
fenix.latest.rustc
fenix.latest.toolchain
fenix.targets."wasm32-unknown-unknown".latest.rust-std
]
)
nixpkgs.binaryen
nixpkgs.pkg-config
nixpkgs.openssl
nixpkgs.yarn
nixpkgs.wasm-pack
];
shellHook = ''
export LD_LIBRARY_PATH=${nixpkgs.gcc.cc.lib}/lib:$LD_LIBRARY_PATH
'';
};
};
}