chore: moved zookeeper and website to packages

This commit is contained in:
Nick 2025-11-28 00:44:38 -06:00
parent cc288ad959
commit cf8516c54f
976 changed files with 40485 additions and 0 deletions

25
packages/zookeeper/default.nix Executable file
View file

@ -0,0 +1,25 @@
{
perSystem =
{ pkgs, ... }:
let
hp = pkgs.haskellPackages;
zookeeper = hp.callCabal2nix "zookeeper" ./. { };
in
{
devShells.zookeeper = hp.shellFor {
nativeBuildInputs = builtins.attrValues {
inherit (pkgs)
nil
stylish-haskell
;
inherit (hp)
cabal-install
cabal-gild
haskell-language-server
;
};
packages = _: [ zookeeper ];
};
packages = { inherit zookeeper; };
};
}