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

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

22 lines
609 B
Nix
Raw Normal View History

2022-10-03 18:30:00 +00:00
{ lib, rustPlatform, fetchCrate }:
rustPlatform.buildRustPackage rec {
pname = "lemmeknow";
version = "0.8.0";
2022-10-03 18:30:00 +00:00
src = fetchCrate {
inherit pname version;
hash = "sha256-Q82tP4xNWAooFjHeJCFmuULnWlFbgca/9Y2lm8rVXKs=";
2022-10-03 18:30:00 +00:00
};
cargoHash = "sha256-slV9RxdFCEx1El7hngWGv+5CqDSQsU2ACF2nWQLOTU0=";
2022-10-03 18:30:00 +00:00
meta = with lib; {
description = "A tool to identify anything";
homepage = "https://github.com/swanandx/lemmeknow";
changelog = "https://github.com/swanandx/lemmeknow/releases/tag/v${version}";
2022-10-03 18:30:00 +00:00
license = licenses.mit;
maintainers = with maintainers; [ figsoda Br1ght0ne ];
2022-10-03 18:30:00 +00:00
};
}