about summary refs log tree commit diff
path: root/users/tazjin/tgsa/default.nix
blob: ef8842ea26be5a041631049181f1f8b12bd876e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ depot, pkgs, ... }:

depot.third_party.naersk.buildPackage {
  src = ./.;

  buildInputs = with pkgs; [
    pkgconfig
    openssl
  ];
}