about summary refs log tree commit diff
path: root/tools
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-12-20T20·03+0000
committerVincent Ambo <tazjin@google.com>2019-12-20T20·03+0000
commite900c4279bbb868e30216830e87dc25cd5d6d489 (patch)
tree3e29ff2630ad5dcb061d59b4ad57d4b4bfff9bc5 /tools
parentc9c27e833cdae4c08cffb64de0c6af2532785d38 (diff)
feat(journaldriver): Add Naersk-based build configuration r/235
Diffstat (limited to 'tools')
-rw-r--r--tools/journaldriver/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/journaldriver/default.nix b/tools/journaldriver/default.nix
new file mode 100644
index 0000000000..2df5e58fc8
--- /dev/null
+++ b/tools/journaldriver/default.nix
@@ -0,0 +1,9 @@
+{ pkgs, ... }:
+
+pkgs.third_party.naersk.buildPackage {
+  src = ./.;
+
+  buildInputs = with pkgs.third_party; [
+    pkgconfig openssl systemd.dev    
+  ];
+}