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

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

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