nix_for_rustaceans/examples/nci/crates.nix

13 lines
189 B
Nix
Raw Normal View History

2024-07-09 20:55:42 +02:00
{ ... }:
{
perSystem =
{ pkgs, config, ... }:
let
crateName = "my-crate";
in
{
nci.projects."simple".path = ./.;
nci.crates.${crateName} = { };
};
}