My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/lemmeknow/default.nix

20 lines
521 B

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