uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
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.3";
|
||||
|
||||
src = python3Packages.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1khw1rxra5hn7hwp16i6kgj89znq8vjsyly3r2dxx2z2bddil000";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = lib.singleton python3Packages.pyusb;
|
||||
|
||||
doCheck = false; # there are no tests
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python script to control NZXT cooler Kraken X52/X62/X72";
|
||||
homepage = "https://github.com/KsenijaS/krakenx";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.willibutz ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue