about summary refs log blame commit diff
path: root/fun/paroxysm/default.nix
blob: 1aeaeb9912eb7b7e9367ee29a63967a8d26f3e28 (plain) (tree)
1
2
3
4
5
6
7
8
9
                     
 
                                       
                    
                    
            


                            
              
                  
        
    
 
{ depot, pkgs, ... }:

depot.third_party.naersk.buildPackage {
  name = "paroxysm";
  version = "0.0.2";
  src = ./.;

  buildInputs = with pkgs; [
    openssl
    pkg-config
    postgresql.lib
    curl
  ];
}