rangefs 0.4.4

A fuse-based filesystem to map ranges in file to individual files.
{
  description = "rangefs";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    flake-parts.url = "github:hercules-ci/flake-parts";
  };

  outputs = inputs@{ nixpkgs, flake-parts, ... }:
    flake-parts.lib.mkFlake { inherit inputs; } {
      systems = [ "x86_64-linux" "aarch64-linux" ];

      perSystem = { pkgs, ... }: {
        devShells = {
          default = pkgs.mkShell {
            packages = with pkgs; [
		          pkg-config
		          fuse3
            ];
          };
        };
      };
    };
}