blob: 1aeaeb9912eb7b7e9367ee29a63967a8d26f3e28 (
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
pkg-config
postgresql.lib
curl
];
}
|