lol

stratis-cli: init at 3.2.0

Nick Cao bb307c91 91dee8a4

+35
+33
pkgs/tools/filesystems/stratis-cli/default.nix
··· 1 + { lib 2 + , python3Packages 3 + , fetchFromGitHub 4 + }: 5 + 6 + python3Packages.buildPythonApplication rec { 7 + pname = "stratis-cli"; 8 + version = "3.2.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "stratis-storage"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + hash = "sha256-JQXTzvm4l/pl2T4djZ3HEdDQJdFE+I9doe8Iv5q34kw="; 15 + }; 16 + 17 + propagatedBuildInputs = with python3Packages; [ 18 + psutil 19 + python-dateutil 20 + wcwidth 21 + justbytes 22 + dbus-client-gen 23 + dbus-python-client-gen 24 + packaging 25 + ]; 26 + 27 + meta = with lib; { 28 + description = "CLI for the Stratis project"; 29 + homepage = "https://stratis-storage.github.io"; 30 + license = licenses.asl20; 31 + maintainers = with maintainers; [ nickcao ]; 32 + }; 33 + }
+2
pkgs/top-level/all-packages.nix
··· 5918 5918 5919 5919 stratisd = callPackage ../tools/filesystems/stratisd { }; 5920 5920 5921 + stratis-cli = callPackage ../tools/filesystems/stratis-cli { }; 5922 + 5921 5923 strawberry = libsForQt5.callPackage ../applications/audio/strawberry { }; 5922 5924 5923 5925 schildichat-desktop = callPackage ../applications/networking/instant-messengers/schildichat/schildichat-desktop.nix {