We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee1cb48 commit e1c6a0cCopy full SHA for e1c6a0c
flake.nix
@@ -17,7 +17,7 @@
17
let
18
pkgs = nixpkgs.legacyPackages.${system};
19
unstable-pkgs = unstable.legacyPackages.${system};
20
- rust-pkgs = import ./nix/rust-toolchain.nix { inherit fenix system; };
+ rust-toolchain = import ./nix/rust-toolchain.nix { inherit fenix system; };
21
22
common = {
23
buildInputs = with pkgs; [
@@ -41,11 +41,11 @@
41
{
42
devShells.default = pkgs.mkShell common;
43
devShells.scraper = pkgs.mkShell {
44
- buildInputs = common.buildInputs ++ (with pkgs; [
45
- pkg-config
46
- openssl
47
- rust-pkgs
48
- ]);
+ buildInputs = common.buildInputs ++ [
+ pkgs.pkg-config
+ pkgs.openssl
+ rust-toolchain
+ ];
49
shellHook = common.shellHook;
50
};
51
});
0 commit comments