Skip to content

Commit 5cb0276

Browse files
flamelens: init at 0.3.1 (#382873)
2 parents 2131a25 + 306f443 commit 5cb0276

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

maintainers/maintainer-list.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2375,6 +2375,12 @@
23752375
githubId = 97070581;
23762376
name = "averagebit";
23772377
};
2378+
averdow = {
2379+
email = "[email protected]";
2380+
github = "AaronVerDow";
2381+
githubId = 2530548;
2382+
name = "Aaron VerDow";
2383+
};
23782384
averelld = {
23792385
email = "[email protected]";
23802386
github = "averelld";
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
lib,
3+
fetchFromGitHub,
4+
rustPlatform,
5+
}:
6+
7+
rustPlatform.buildRustPackage rec {
8+
pname = "flamelens";
9+
version = "0.3.1";
10+
11+
src = fetchFromGitHub {
12+
owner = "YS-L";
13+
repo = "flamelens";
14+
tag = "v${version}";
15+
hash = "sha256-cvsBeV9pdgr8V+82Fw/XZS1Ljq/7ff4JYMHnNxqNvOM=";
16+
};
17+
18+
useFetchCargoVendor = true;
19+
cargoHash = "sha256-FIIt8RwPaPrVG3D9FoMjR4L81NzUrKZsAeW2AJkBG1o=";
20+
21+
meta = {
22+
description = "Interactive flamegraph viewer in the terminal";
23+
homepage = "https://github.com/YS-L/flamelens";
24+
changelog = "https://github.com/YS-L/flamelens/releases/tag/v${version}/CHANGELOG.md";
25+
license = lib.licenses.mit;
26+
maintainers = [ lib.maintainers.averdow ];
27+
};
28+
}

0 commit comments

Comments
 (0)