mirror of
https://github.com/Mic92/nix-update.git
synced 2024-11-03 21:04:49 +03:00
19 lines
373 B
Nix
19 lines
373 B
Nix
{ rustPlatform, fetchCrate, hello }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "fd-find";
|
|
version = "8.0.0";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
sha256 = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB=";
|
|
|
|
passthru.tests = {
|
|
foo = hello;
|
|
bar = hello;
|
|
};
|
|
}
|