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

depot.third_party.naersk.buildPackage {
  src = depot.nix.sparseTree ./. [
    ./Cargo.lock
    ./Cargo.toml
    ./src
  ];

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