nix_for_rustaceans/examples/nci/crates.nix
2024-07-09 20:55:42 +02:00

12 lines
189 B
Nix

{ ... }:
{
perSystem =
{ pkgs, config, ... }:
let
crateName = "my-crate";
in
{
nci.projects."simple".path = ./.;
nci.crates.${crateName} = { };
};
}