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

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

  buildInputs = with pkgs; [
    pkg-config
    openssl
  ];
}