blob: 0eba4265bbb3ce3698e8899e9703227e36c65f2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
lib,
fetchFromGitHub,
rustPlatform,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "otree";
version = "0.7.1";
src = fetchFromGitHub {
owner = "fioncat";
repo = "otree";
tag = "v${finalAttrs.version}";
hash = "sha256-Kcdhppc1hdPCQ+Q0ogmGSS9skC+ql96WQgCgKMBKcss=";
};
cargoHash = "sha256-B72PRaCMF4jEvsoUJyGFRNnA0ok3UYZfIwU/MAiWMJo=";
meta = {
description = "Command line tool to view objects (JSON/YAML/TOML/XML) in TUI tree widget";
homepage = "https://github.com/fioncat/otree";
changelog = "https://github.com/fioncat/otree/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
mainProgram = "otree";
maintainers = with lib.maintainers; [
anas
kiara
];
};
})
|