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

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

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