stratis-cli: init at 3.2.0
This commit is contained in:
parent
91dee8a456
commit
bb307c917d
2 changed files with 35 additions and 0 deletions
33
pkgs/tools/filesystems/stratis-cli/default.nix
Normal file
33
pkgs/tools/filesystems/stratis-cli/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ lib
|
||||
, python3Packages
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "stratis-cli";
|
||||
version = "3.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "stratis-storage";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-JQXTzvm4l/pl2T4djZ3HEdDQJdFE+I9doe8Iv5q34kw=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
psutil
|
||||
python-dateutil
|
||||
wcwidth
|
||||
justbytes
|
||||
dbus-client-gen
|
||||
dbus-python-client-gen
|
||||
packaging
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "CLI for the Stratis project";
|
||||
homepage = "https://stratis-storage.github.io";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ nickcao ];
|
||||
};
|
||||
}
|
|
@ -5918,6 +5918,8 @@ with pkgs;
|
|||
|
||||
stratisd = callPackage ../tools/filesystems/stratisd { };
|
||||
|
||||
stratis-cli = callPackage ../tools/filesystems/stratis-cli { };
|
||||
|
||||
strawberry = libsForQt5.callPackage ../applications/audio/strawberry { };
|
||||
|
||||
schildichat-desktop = callPackage ../applications/networking/instant-messengers/schildichat/schildichat-desktop.nix {
|
||||
|
|
Loading…
Reference in a new issue