python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / lemmeknow / default.nix
blobccb80e247ff6907c2c1e1467f974f8ff6f436c66
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "lemmeknow";
5   version = "0.7.0";
7   src = fetchCrate {
8     inherit pname version;
9     sha256 = "sha256-rSuHFVUYpL1v5ba0q15mNEuAHzFF9tWxFs3zTJt5zcc=";
10   };
12   cargoSha256 = "sha256-x//spFPlmJJAIyI5RgnYlMORi4eCXc8p7iEJQ7Ayptw=";
14   meta = with lib; {
15     description = "A tool to identify anything";
16     homepage = "https://github.com/swanandx/lemmeknow";
17     license = licenses.mit;
18     maintainers = with maintainers; [ figsoda Br1ght0ne ];
19   };