tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
stratis-cli: init at 3.2.0
Nick Cao
3 years ago
bb307c91
91dee8a4
+35
2 changed files
expand all
collapse all
unified
split
pkgs
tools
filesystems
stratis-cli
default.nix
top-level
all-packages.nix
+33
pkgs/tools/filesystems/stratis-cli/default.nix
···
1
1
+
{ lib
2
2
+
, python3Packages
3
3
+
, fetchFromGitHub
4
4
+
}:
5
5
+
6
6
+
python3Packages.buildPythonApplication rec {
7
7
+
pname = "stratis-cli";
8
8
+
version = "3.2.0";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "stratis-storage";
12
12
+
repo = pname;
13
13
+
rev = "v${version}";
14
14
+
hash = "sha256-JQXTzvm4l/pl2T4djZ3HEdDQJdFE+I9doe8Iv5q34kw=";
15
15
+
};
16
16
+
17
17
+
propagatedBuildInputs = with python3Packages; [
18
18
+
psutil
19
19
+
python-dateutil
20
20
+
wcwidth
21
21
+
justbytes
22
22
+
dbus-client-gen
23
23
+
dbus-python-client-gen
24
24
+
packaging
25
25
+
];
26
26
+
27
27
+
meta = with lib; {
28
28
+
description = "CLI for the Stratis project";
29
29
+
homepage = "https://stratis-storage.github.io";
30
30
+
license = licenses.asl20;
31
31
+
maintainers = with maintainers; [ nickcao ];
32
32
+
};
33
33
+
}
+2
pkgs/top-level/all-packages.nix
···
5918
5918
5919
5919
stratisd = callPackage ../tools/filesystems/stratisd { };
5920
5920
5921
5921
+
stratis-cli = callPackage ../tools/filesystems/stratis-cli { };
5922
5922
+
5921
5923
strawberry = libsForQt5.callPackage ../applications/audio/strawberry { };
5922
5924
5923
5925
schildichat-desktop = callPackage ../applications/networking/instant-messengers/schildichat/schildichat-desktop.nix {