Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 346 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 346 Bytes

__functor

Usage example:

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

  outputs = call: call {
    perSystem = { pkgs, ... }: {
      packages = { inherit (pkgs) hello; };
    };
  };
}