nixpkgs/pkgs/tools/misc/lemmeknow/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
531 B
Nix
Raw Normal View History

2022-10-03 18:30:00 +00:00
{ lib, rustPlatform, fetchCrate }:
rustPlatform.buildRustPackage rec {
pname = "lemmeknow";
2022-10-19 13:00:41 +00:00
version = "0.7.0";
2022-10-03 18:30:00 +00:00
src = fetchCrate {
inherit pname version;
2022-10-19 13:00:41 +00:00
sha256 = "sha256-rSuHFVUYpL1v5ba0q15mNEuAHzFF9tWxFs3zTJt5zcc=";
2022-10-03 18:30:00 +00:00
};
2022-10-19 13:00:41 +00:00
cargoSha256 = "sha256-x//spFPlmJJAIyI5RgnYlMORi4eCXc8p7iEJQ7Ayptw=";
2022-10-03 18:30:00 +00:00
meta = with lib; {
description = "A tool to identify anything";
homepage = "https://github.com/swanandx/lemmeknow";
license = licenses.mit;
maintainers = with maintainers; [ figsoda Br1ght0ne ];
2022-10-03 18:30:00 +00:00
};
}