8 lines
155 B
Nix
8 lines
155 B
Nix
|
{ depot, pkgs, ... }:
|
||
|
|
||
|
depot.third_party.naersk.buildPackage {
|
||
|
src = ./.;
|
||
|
nativeBuildInputs = [ pkgs.pkg-config ];
|
||
|
buildInputs = [ pkgs.openssl ];
|
||
|
}
|