tangled
alpha
login
or
join now
wiro.world
/
dotfiles
2
fork
atom
yep, more dotfiles
2
fork
atom
overview
issues
1
pulls
1
pipelines
tools: use upstream otree pkg
wiro.world
4 months ago
de30c27f
8d92b85b
verified
This commit was signed with the committer's
known signature
.
wiro.world
SSH Key Fingerprint:
SHA256:SmMcWpNAnL+VAgItSawvXgdPVn7f1rsyAuB/5VNclKY=
+2
-42
3 changed files
expand all
collapse all
unified
split
home-manager
fragments
tools.nix
pkgs
default.nix
otree.nix
+2
-3
home-manager/fragments/tools.nix
···
44
44
lsof
45
45
mediainfo
46
46
openssl
47
47
+
otree
47
48
ouch
48
49
parallel
49
50
pv
···
61
62
vlock
62
63
wcurl
63
64
wormhole-rs
64
64
-
]) ++ lib.optionals (!flags.onlyCached) [
65
65
-
lpkgs.otree
66
66
-
];
65
65
+
]) ++ lib.optionals (!flags.onlyCached) [ ];
67
66
68
67
programs.fish.shellAbbrs = {
69
68
# Use newer tools
-1
pkgs/default.nix
···
8
8
ebnfer = pkgs.callPackage ./ebnfer.nix { };
9
9
find-unicode = pkgs.callPackage ./find-unicode.nix { };
10
10
names = pkgs.callPackage ./names.nix { };
11
11
-
otree = pkgs.callPackage ./otree.nix { };
12
11
probe-rs-udev-rules = pkgs.callPackage ./probe-rs-udev-rules.nix { };
13
12
14
13
# Import packages defined in foreign repositories
-38
pkgs/otree.nix
···
1
1
-
{ lib
2
2
-
3
3
-
, stdenv
4
4
-
, rustPlatform
5
5
-
, fetchFromGitHub
6
6
-
, darwin
7
7
-
}:
8
8
-
9
9
-
rustPlatform.buildRustPackage rec {
10
10
-
pname = "otree";
11
11
-
version = "0.1.0";
12
12
-
13
13
-
src = fetchFromGitHub {
14
14
-
owner = "fioncat";
15
15
-
repo = pname;
16
16
-
# rev = "v${version}";
17
17
-
rev = "bbaf9d53659e242eb7e85517c2d8aacefcac7d25";
18
18
-
hash = "sha256-xqTfNFot8wXSTxsQVwM+4hD+z0BIbblC/lpd9uBJf8I=";
19
19
-
};
20
20
-
21
21
-
cargoLock = {
22
22
-
lockFile = "${src}/Cargo.lock";
23
23
-
outputHashes = {
24
24
-
"tui-tree-widget-0.20.0" = "sha256-/uLp63J4FoMT1rMC9cv49JAX3SuPvFWPtvdS8pspsck=";
25
25
-
};
26
26
-
};
27
27
-
28
28
-
buildInputs = [ ]
29
29
-
++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.IOKit ];
30
30
-
31
31
-
meta = with lib; {
32
32
-
description = "A command line tool to view objects (JSON/YAML/TOML) in TUI tree widget";
33
33
-
homepage = "https://github.com/fioncat/otree";
34
34
-
license = licenses.mit;
35
35
-
maintainers = with maintainers; [ mrnossiom ];
36
36
-
mainProgram = "otree";
37
37
-
};
38
38
-
}