mirror of
https://github.com/ipetkov/crane.git
synced 2024-11-25 21:42:20 +03:00
13 lines
241 B
Nix
13 lines
241 B
Nix
{ lib
|
|
, rustPlatform
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "crane-utils";
|
|
version = "0.0.1";
|
|
|
|
src = lib.sourceFilesBySuffices ./. [ ".rs" ".toml" ".lock" ];
|
|
|
|
cargoHash = "sha256-TsfXO0cCR52xnNoxQbyH0kulth2XbT08M4dwSU4OM6M=";
|
|
}
|