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




                            
        
    
 
{ depot, pkgs, ... }:

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

  buildInputs = with pkgs; [
    openssl
    pkgconfig
    postgresql.lib
    curl
  ];
}