nix-haskell-template/flake.nix

14 lines
229 B
Nix
Raw Permalink Normal View History

2022-03-12 18:13:25 -05:00
{
description = "A simple haskell template";
outputs = { self }: {
templates.haskell = {
description = "A haskell executable";
path = ./template;
};
defaultTemplate = self.templates.haskell;
};
}