about summary refs log tree commit diff
path: root/pkgs/tools/misc/lemmeknow/default.nix
blob: ccb80e247ff6907c2c1e1467f974f8ff6f436c66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, rustPlatform, fetchCrate }:

rustPlatform.buildRustPackage rec {
  pname = "lemmeknow";
  version = "0.7.0";

  src = fetchCrate {
    inherit pname version;
    sha256 = "sha256-rSuHFVUYpL1v5ba0q15mNEuAHzFF9tWxFs3zTJt5zcc=";
  };

  cargoSha256 = "sha256-x//spFPlmJJAIyI5RgnYlMORi4eCXc8p7iEJQ7Ayptw=";

  meta = with lib; {
    description = "A tool to identify anything";
    homepage = "https://github.com/swanandx/lemmeknow";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda Br1ght0ne ];
  };
}