feat(journaldriver): Add Naersk-based build configuration

This commit is contained in:
Vincent Ambo 2019-12-20 20:03:36 +00:00
parent c9c27e833c
commit e900c4279b
2 changed files with 12 additions and 1 deletions

View file

@ -0,0 +1,9 @@
{ pkgs, ... }:
pkgs.third_party.naersk.buildPackage {
src = ./.;
buildInputs = with pkgs.third_party; [
pkgconfig openssl systemd.dev
];
}