13 lines
179 B
Nix
13 lines
179 B
Nix
|
{
|
||
|
src,
|
||
|
rustPlatform,
|
||
|
version,
|
||
|
cargoHash,
|
||
|
}:
|
||
|
|
||
|
rustPlatform.buildRustPackage {
|
||
|
pname = "lix-doc";
|
||
|
sourceRoot = "${src.name}/lix-doc";
|
||
|
inherit version src cargoHash;
|
||
|
}
|