footfetch 2.0.1

A neofetch-like tool for those who prefer feet over faces
{
  description = "A neofetch-like tool for those who prefer feet over faces written in Rust.";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    utils.url = "github:numtide/flake-utils";
  };

  outputs = { self, nixpkgs, utils }:
    utils.lib.eachDefaultSystem (system:
      let
        pkgs = import nixpkgs { inherit system; };
      in
      {
        packages.default = pkgs.rustPlatform.buildRustPackage {
          pname = "footfetch";
          version = "2.0.1";
          src = ./.;
          
          cargoHash = ""; 

          cargoLock = {
            lockFile = ./Cargo.lock;
          };

          meta = with pkgs.lib; {
            description = "CLI utility for viewing system information, but with a twist";
            homepage = "https://github.com/adenast/footfetch";
            license = licenses.mit;
            maintainers = [ "adenast" ];
          };
        };
      }
    );
}