-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: request for the fingerprint anytime an http url is passed
- Loading branch information
1 parent
3453eb2
commit 71c9ac1
Showing
7 changed files
with
104 additions
and
32 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,41 @@ | ||
{ self, nixpkgs, flake-utils, ... }: | ||
{ self, nixpkgs, flake-utils, fenix, ... }: | ||
flake-utils.lib.eachDefaultSystem (system: | ||
let | ||
pkgs = nixpkgs.legacyPackages.${system}; | ||
in | ||
with pkgs; | ||
{ | ||
devShells.default = mkShell { | ||
nativeBuildInputs = [ | ||
pkg-config | ||
libressl | ||
cargo | ||
ffmpeg | ||
]; | ||
LIBCLANG_PATH = "${pkgs.libclang.lib}/lib"; | ||
devShells = { | ||
default = with pkgs; mkShell { | ||
nativeBuildInputs = [ | ||
pkg-config | ||
libressl | ||
cargo | ||
rustfmt | ||
ffmpeg | ||
]; | ||
LIBCLANG_PATH = "${pkgs.libclang.lib}/lib"; | ||
}; | ||
|
||
web = | ||
let | ||
rustToolchain = with fenix.packages.${system}; | ||
combine [ | ||
latest.rustc | ||
latest.cargo | ||
targets.wasm32-unknown-unknown.latest.rust-std | ||
]; | ||
in | ||
with pkgs; | ||
mkShell { | ||
nativeBuildInputs = [ | ||
bun | ||
go | ||
nodejs_23 | ||
biome | ||
rustToolchain | ||
wasm-pack | ||
]; | ||
}; | ||
}; | ||
} | ||
) |