c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
17 lines
225 B
Nix
17 lines
225 B
Nix
{ 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
|
|
];
|
|
}
|