3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #38021 from WilliButz/add-krakenx

krakenx: init at 0.0.1
This commit is contained in:
lewo 2018-04-09 19:05:34 +02:00 committed by GitHub
commit a15c57875f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View 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;
};
}

View file

@ -3182,6 +3182,8 @@ with pkgs;
kore = callPackage ../development/web/kore { };
krakenx = callPackage ../tools/system/krakenx { };
partition-manager = libsForQt5.callPackage ../tools/misc/partition-manager { };
kpcli = callPackage ../tools/security/kpcli { };