adding haskell template providing dev/prod environments

This commit is contained in:
2025-05-29 23:29:55 +01:00
parent b1a69189d3
commit cf6611087a

View File

@@ -53,7 +53,6 @@
packages.default = callPackage ./. { };
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
go
@@ -71,11 +70,12 @@
bindings = bindingsOverlay;
};
templates.default = {
hs-bindings = ./nix/templates/haskell;
description = "Haskell Bindings to p2prc protocol";
};
}
));
)) //
{
templates.haskell = {
bindings = ./nix/templates/haskell;
description = "Haskell Bindings to p2prc protocol";
};
};
}