Commit 3a2881ab authored by figsoda's avatar figsoda
Browse files

lemmeknow: init at 0.6.0

parent 300e2933
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
@@ -8612,6 +8612,8 @@ with pkgs;
  leela = callPackage ../tools/graphics/leela { };
  lemmeknow = callPackage ../tools/misc/lemmeknow { };
  lethe = callPackage ../tools/security/lethe {
    inherit (darwin.apple_sdk.frameworks) Security;
  };