tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
coinlive: init at 0.2.1
Fabian Affolter
3 years ago
f3c99629
6e665c4e
+37
2 changed files
expand all
collapse all
unified
split
pkgs
tools
misc
coinlive
default.nix
top-level
all-packages.nix
+35
pkgs/tools/misc/coinlive/default.nix
···
1
1
+
{ lib
2
2
+
, fetchFromGitHub
3
3
+
, openssl
4
4
+
, pkg-config
5
5
+
, rustPlatform
6
6
+
}:
7
7
+
8
8
+
rustPlatform.buildRustPackage rec {
9
9
+
pname = "coinlive";
10
10
+
version = "0.2.1";
11
11
+
12
12
+
src = fetchFromGitHub {
13
13
+
owner = "mayeranalytics";
14
14
+
repo = pname;
15
15
+
rev = "v${version}";
16
16
+
hash = "sha256-i21C1ZSAPoUOBlnDQl40/17yRqmNx3wkjswHJeV9vko=";
17
17
+
};
18
18
+
19
19
+
cargoSha256 = "sha256-0pUXCY5rZWh26KGD2OU2+M9L0RtCIan6hmuNeIeBEHI=";
20
20
+
21
21
+
nativeBuildInputs = [
22
22
+
pkg-config
23
23
+
];
24
24
+
25
25
+
buildInputs = [
26
26
+
openssl
27
27
+
];
28
28
+
29
29
+
meta = with lib; {
30
30
+
description = "Live cryptocurrency prices CLI";
31
31
+
homepage = "https://github.com/mayeranalytics/coinlive";
32
32
+
license = licenses.gpl3Only;
33
33
+
maintainers = with maintainers; [ fab ];
34
34
+
};
35
35
+
}
+2
pkgs/top-level/all-packages.nix
···
17487
17487
17488
17488
CoinMP = callPackage ../development/libraries/CoinMP { };
17489
17489
17490
17490
+
coinlive = callPackage ../tools/misc/coinlive { };
17491
17491
+
17490
17492
cointop = callPackage ../applications/misc/cointop { };
17491
17493
17492
17494
collada-dom = callPackage ../development/libraries/collada-dom { };