summary refs log tree commit diff
path: root/fleet/pkgs/naut/default.nix
blob: 871648ee7d140973829233c31687fba1ed3db384 (plain)
1
2
3
4
5
6
7
8
9
10
# SPDX-FileCopyrightText: V <v@unfathomable.blue>
# SPDX-License-Identifier: OSL-3.0

{ naersk, pkg-config, openssl }:

naersk.buildPackage {
  root = ./.;
  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ openssl ];
}