nix-update/tests/testpkgs/crate.nix
2022-12-08 12:56:47 -05:00

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;
};
}