added reqwest and openssl

This commit is contained in:
Nickiel12 2023-08-20 18:49:58 -07:00
parent dacaa770cc
commit cdaf8bd130
6 changed files with 1151 additions and 5 deletions

View file

@ -40,8 +40,8 @@ rust-project TODO: write shell script for automatically updating `cargoHash`
};
rustSettings = with pkgs; {
src = ./.;
#nativeBuildInputs = [ pkg-config ];
#buildInputs = [ openssl ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
cargoHash = nixpkgs.lib.fakeHash;
};
meta = with nixpkgs.lib; {
@ -56,6 +56,7 @@ rust-project TODO: write shell script for automatically updating `cargoHash`
(pkgs.rust-bin.stable.latest.default.override {
extensions = [ "rust-src" ];
})
openssl
bacon
];
inputsFrom = with self.packages.${system}; [ helloworld ];