nix-haskell-template/flake.nix
2022-03-12 18:13:25 -05:00

14 lines
229 B
Nix

{
description = "A simple haskell template";
outputs = { self }: {
templates.haskell = {
description = "A haskell executable";
path = ./template;
};
defaultTemplate = self.templates.haskell;
};
}