File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed
pkgs/by-name/fl/flamelens Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 23752375 githubId = 97070581;
23762376 name = "averagebit";
23772377 };
2378+ averdow = {
2379+ 2380+ github = "AaronVerDow";
2381+ githubId = 2530548;
2382+ name = "Aaron VerDow";
2383+ };
23782384 averelld = {
2379238523802386 github = "averelld";
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments