type-theory/flake.nix
2025-01-14 09:03:50 +00:00

12 lines
323 B
Nix

{
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
flakePkgs = rec {
gerby = pkgs.callPackage ./nix/gerby.nix {};
};
in {
packages = flake-utils.lib.flattenTree flakePkgs;
devShell = pkgs.mkShell {};
});
}