Unverified Commit bc990f27 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #194268 from figsoda/lemmeknow

lemmeknow: init at 0.6.0
parents 6d7136b2 3a2881ab
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
{ lib, rustPlatform, fetchCrate }:

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

  src = fetchCrate {
    inherit pname version;
    sha256 = "sha256-xDHgIo6VGBp27JMqhG4r/MZTIAA8ViAJqWJNchZywTs=";
  };

  cargoSha256 = "sha256-bPI8S2hNQnIPj8Sl0QYs6piCdWSUYFH1qcf7DL+oxIo=";

  meta = with lib; {
    description = "A tool to identify anything";
    homepage = "https://github.com/swanandx/lemmeknow";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -8635,6 +8635,8 @@ with pkgs;
  leela = callPackage ../tools/graphics/leela { };
  lemmeknow = callPackage ../tools/misc/lemmeknow { };
  lethe = callPackage ../tools/security/lethe {
    inherit (darwin.apple_sdk.frameworks) Security;
  };