Skip to content

Commit

Permalink
flamelens: init at 0.3.1 (#382873)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Feb 18, 2025
2 parents 2131a25 + 306f443 commit 5cb0276
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2375,6 +2375,12 @@
githubId = 97070581;
name = "averagebit";
};
averdow = {
email = "aaron@verdow.com";
github = "AaronVerDow";
githubId = 2530548;
name = "Aaron VerDow";
};
averelld = {
email = "averell+nixos@rxd4.com";
github = "averelld";
Expand Down
28 changes: 28 additions & 0 deletions pkgs/by-name/fl/flamelens/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
lib,
fetchFromGitHub,
rustPlatform,
}:

rustPlatform.buildRustPackage rec {
pname = "flamelens";
version = "0.3.1";

src = fetchFromGitHub {
owner = "YS-L";
repo = "flamelens";
tag = "v${version}";
hash = "sha256-cvsBeV9pdgr8V+82Fw/XZS1Ljq/7ff4JYMHnNxqNvOM=";
};

useFetchCargoVendor = true;
cargoHash = "sha256-FIIt8RwPaPrVG3D9FoMjR4L81NzUrKZsAeW2AJkBG1o=";

meta = {
description = "Interactive flamegraph viewer in the terminal";
homepage = "https://github.com/YS-L/flamelens";
changelog = "https://github.com/YS-L/flamelens/releases/tag/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.averdow ];
};
}

0 comments on commit 5cb0276

Please sign in to comment.