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

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

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