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

21 lines
521 B

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