nixpkgs/pkgs/development/tools/fblog/default.nix

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

23 lines
568 B
Nix
Raw Normal View History

2022-10-01 00:43:02 +00:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "fblog";
2023-12-22 03:57:23 +00:00
version = "4.8.0";
2022-10-01 00:43:02 +00:00
src = fetchFromGitHub {
owner = "brocode";
repo = pname;
rev = "v${version}";
2023-12-22 03:57:23 +00:00
hash = "sha256-ByojMOkdE3B9KrApOWPihg6vJHpLQy0gsIlKPd5xJog=";
2022-10-01 00:43:02 +00:00
};
2023-12-22 03:57:23 +00:00
cargoHash = "sha256-R7FLZ+yLvDltETphfqRLrcQZNt+rkJBFdmGL3pY0G04=";
2022-10-01 00:43:02 +00:00
meta = with lib; {
description = "A small command-line JSON log viewer";
homepage = "https://github.com/brocode/fblog";
license = licenses.wtfpl;
maintainers = with maintainers; [ figsoda ];
};
}