krakenx: init at 0.0.1
This commit is contained in:
parent
8152db99d7
commit
60720eb2c0
23
pkgs/tools/system/krakenx/default.nix
Normal file
23
pkgs/tools/system/krakenx/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ lib, python3Packages }:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication rec {
|
||||||
|
pname = "krakenx";
|
||||||
|
version = "0.0.1";
|
||||||
|
|
||||||
|
src = python3Packages.fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1vxyindph81srya0pfmb3n64n8h7ghp38ak86vc2zc5nyirf5zq8";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = lib.singleton python3Packages.pyusb;
|
||||||
|
|
||||||
|
doCheck = false; # there are no tests
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python script to control NZXT cooler Kraken X52/X62";
|
||||||
|
homepage = https://github.com/KsenijaS/krakenx;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = [ maintainers.willibutz ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -3160,6 +3160,8 @@ with pkgs;
|
|||||||
|
|
||||||
kore = callPackage ../development/web/kore { };
|
kore = callPackage ../development/web/kore { };
|
||||||
|
|
||||||
|
krakenx = callPackage ../tools/system/krakenx { };
|
||||||
|
|
||||||
partition-manager = libsForQt5.callPackage ../tools/misc/partition-manager { };
|
partition-manager = libsForQt5.callPackage ../tools/misc/partition-manager { };
|
||||||
|
|
||||||
kpcli = callPackage ../tools/security/kpcli { };
|
kpcli = callPackage ../tools/security/kpcli { };
|
||||||
|
Loading…
Reference in New Issue
Block a user