mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-07 05:27:13 -06:00
chore: moved zookeeper and website to packages
This commit is contained in:
parent
cc288ad959
commit
cf8516c54f
976 changed files with 40485 additions and 0 deletions
25
packages/zookeeper/default.nix
Executable file
25
packages/zookeeper/default.nix
Executable 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; };
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue