dothttp 0.8.0

dothttp is a text-based scriptable HTTP client. It is a fork for dot-http. It is a simple language that resembles the actual HTTP protocol but with additional features to make it practical for someone who builds and tests APIs.
Documentation
{
    description = "dothttp - cli tool for text-based http requests";
    inputs = {
         nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
         fenix = {
           url = "github:nix-community/fenix";
           inputs.nixpkgs.follows = "nixpkgs";
         };
         flake-utils.url = "github:numtide/flake-utils";
   };

    outputs = {
        self,
        nixpkgs,
        fenix,
        flake-utils,
    }: flake-utils.lib.eachDefaultSystem (system: {
         packages.default =
           let
             toolchain = fenix.packages.${system}.minimal.toolchain;
             pkgs = nixpkgs.legacyPackages.${system};
           in

           (pkgs.makeRustPlatform {
             cargo = toolchain;
             rustc = toolchain;
           }).buildRustPackage {
             pname = "dothttp";
             version = "0.7.0";

             src = ./.;
             nativeBuildInputs = [];
             cargoLock.lockFile = ./Cargo.lock;
           };
       });
}