about summary refs log blame commit diff
path: root/users/wpcarro/zoo/default.nix
blob: 312a6cbd7689fb3dba09cf04563b56e8d84764a9 (plain) (tree)
1
2
3
4
5
6
7
               
 
                                          
               

                        
                     









                             
        
       

    
{ depot, ... }:

depot.users.wpcarro.buildHaskell.program {
  name = "zoo";
  srcs = builtins.path {
    path = ./.;
    name = "zoo-src";
  };
  ghcExtensions = [
    "OverloadedStrings"
    "NoImplicitPrelude"
    "RecordWildCards"
    "TypeApplications"
  ];
  deps = hpkgs: with hpkgs; [
    servant-server
    aeson
    warp
    rio
  ];
}