about summary refs log tree commit diff
path: root/tvix/default.nix
blob: 7225bfb89e751d7f6369493f88e63a9e4d135533 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# Nix helpers for projects under //tvix
{ pkgs, ... }:

{
  # Load the crate2nix crate tree.
  crates = import ./Cargo.nix {
    inherit pkgs;
    nixpkgs = pkgs.path;
  };
}