1
0

Add build step to flake.nix

This commit is contained in:
2023-08-02 17:18:20 -04:00
parent e6e53be35b
commit 36394395c0

View File

@@ -19,11 +19,17 @@
in
{
devShells.default = pkgs.mkShell {
name = "seal-generator-shell";
buildInputs = with pkgs.haskellPackages;
[
ghc'
hlint
haskell-language-server
(pkgs.writeShellScriptBin "build-seal-generator" ''
${ghc'}/bin/ghc -outputdir dist -O2 -static generateSealPosts.hs
'')
];
};
});