1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
{ rustPlatform, openssl, pkg-config, }: rustPlatform.buildRustPackage { pname = "generate_firefox_extensions"; version = "0.1.0"; src = ./.; cargoLock = { lockFile = ./Cargo.lock; }; buildInputs = [ openssl # needed for openssl-sys crate ]; nativeBuildInputs = [ pkg-config # needed for openssl dependency ]; }