tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
hoard: init at 1.0.1
Builditluc
3 years ago
e329b995
ef103337
+29
2 changed files
expand all
collapse all
unified
split
pkgs
tools
misc
hoard
default.nix
top-level
all-packages.nix
+27
pkgs/tools/misc/hoard/default.nix
···
1
1
+
{ lib, rustPlatform, fetchFromGitHub, ncurses, openssl, pkg-config, stdenv, Security }:
2
2
+
3
3
+
rustPlatform.buildRustPackage rec {
4
4
+
pname = "hoard";
5
5
+
version = "1.0.1";
6
6
+
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "Hyde46";
9
9
+
repo = pname;
10
10
+
rev = "v${version}";
11
11
+
sha256 = "sha256-xXZ1bbCRhS8/rb1eIErvw2wEWF1unLXSP/YKn5Z4Vwo=";
12
12
+
};
13
13
+
14
14
+
buildInputs = [ ncurses openssl ]
15
15
+
++ lib.optional stdenv.isDarwin Security;
16
16
+
17
17
+
nativeBuildInputs = [ pkg-config ];
18
18
+
19
19
+
cargoSha256 = "sha256-c60yxbZG258R5iH6x0LhipbyXal/kDxddEzTfl82hCE=";
20
20
+
21
21
+
meta = with lib; {
22
22
+
description = "CLI command organizer written in rust";
23
23
+
homepage = "https://github.com/hyde46/hoard";
24
24
+
license = licenses.mit;
25
25
+
maintainers = with maintainers; [ builditluc ];
26
26
+
};
27
27
+
}
+2
pkgs/top-level/all-packages.nix
···
21844
21844
21845
21845
hiawatha = callPackage ../servers/http/hiawatha {};
21846
21846
21847
21847
+
hoard = callPackage ../tools/misc/hoard { inherit (darwin) Security; };
21848
21848
+
21847
21849
home-assistant = callPackage ../servers/home-assistant { };
21848
21850
21849
21851
home-assistant-cli = callPackage ../servers/home-assistant/cli.nix { };