tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
teehee: init at 0.2.8
https://github.com/Gskartwii/teehee
figsoda
2 years ago
c4484420
8d5b2633
+29
2 changed files
expand all
collapse all
unified
split
pkgs
applications
editors
teehee
default.nix
top-level
all-packages.nix
+27
pkgs/applications/editors/teehee/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ lib
2
+
, rustPlatform
3
+
, fetchFromGitHub
4
+
}:
5
+
6
+
rustPlatform.buildRustPackage rec {
7
+
pname = "teehee";
8
+
version = "0.2.8";
9
+
10
+
src = fetchFromGitHub {
11
+
owner = "Gskartwii";
12
+
repo = "teehee";
13
+
rev = "v${version}";
14
+
hash = "sha256-yTterXAev6eOnUe1/MJV8s8dUYJcXHDKVJ6T0G/JHzI=";
15
+
};
16
+
17
+
cargoHash = "sha256-hEc7MaqTXMrKiosYacPw/b1ANnfZKdlhThOp2h14fg4=";
18
+
19
+
meta = with lib; {
20
+
description = "A modal terminal hex editor";
21
+
homepage = "https://github.com/Gskartwii/teehee";
22
+
changelog = "https://github.com/Gskartwii/teehee/releases/tag/${src.rev}";
23
+
license = licenses.asl20;
24
+
maintainers = with maintainers; [ figsoda ];
25
+
mainProgram = "teehee";
26
+
};
27
+
}
+2
pkgs/top-level/all-packages.nix
···
13670
13671
teamviewer = libsForQt5.callPackage ../applications/networking/remote/teamviewer { };
13672
0
0
13673
teip = callPackage ../tools/text/teip { };
13674
13675
telegraf = callPackage ../servers/monitoring/telegraf { };
···
13670
13671
teamviewer = libsForQt5.callPackage ../applications/networking/remote/teamviewer { };
13672
13673
+
teehee = callPackage ../applications/editors/teehee { };
13674
+
13675
teip = callPackage ../tools/text/teip { };
13676
13677
telegraf = callPackage ../servers/monitoring/telegraf { };