8 lines
196 B
Nix
8 lines
196 B
Nix
{ python3, rustPlatform }:
|
|
|
|
python3.pkgs.callPackage ./generic.nix {
|
|
buildAndTestSubdir = "examples/word-count";
|
|
|
|
nativeBuildInputs = with rustPlatform; [ cargoSetupHook maturinBuildHook ];
|
|
}
|